From 0be67c8396240012761dab0fc6923489c7ddf313 Mon Sep 17 00:00:00 2001 From: sysadmin Date: Sun, 1 Feb 2026 11:37:32 -0700 Subject: [PATCH] Initial commit: ReclassX structured binary editor --- .gitignore | 13 + CMakeLists.txt | 93 + cmake/FindQScintilla.cmake | 32 + scripts/build_qscintilla.bat | 13 + src/compose.cpp | 323 + src/controller.cpp | 565 + src/controller.h | 99 + src/core.h | 521 + src/editor.cpp | 982 + src/editor.h | 109 + src/format.cpp | 364 + src/icons.qrc | 6 + src/icons/chevron-down.png | Bin 0 -> 181 bytes src/icons/chevron-right.png | Bin 0 -> 174 bytes src/icons/close.png | Bin 0 -> 169 bytes src/main.cpp | 636 + tests/test_compose.cpp | 674 + tests/test_core.cpp | 557 + tests/test_editor.cpp | 442 + tests/test_format.cpp | 248 + third_party/QScintilla_src.tar.gz | Bin 0 -> 3233610 bytes third_party/qscintilla/ChangeLog | 6853 +++++ third_party/qscintilla/LICENSE | 674 + third_party/qscintilla/NEWS | 604 + third_party/qscintilla/Python/README | 50 + .../Python/config-tests/cfgtest_Qsci.cpp | 22 + third_party/qscintilla/Python/project.py | 212 + .../qscintilla/Python/pyproject-qt5.toml | 16 + .../qscintilla/Python/pyproject-qt6.toml | 16 + .../Python/sip/qsciabstractapis.sip | 42 + .../qscintilla/Python/sip/qsciapis.sip | 58 + .../qscintilla/Python/sip/qscicommand.sip | 143 + .../qscintilla/Python/sip/qscicommandset.sip | 44 + .../qscintilla/Python/sip/qscidocument.sip | 32 + .../qscintilla/Python/sip/qscilexer.sip | 90 + .../qscintilla/Python/sip/qscilexerasm.sip | 74 + .../qscintilla/Python/sip/qscilexeravs.sip | 73 + .../qscintilla/Python/sip/qscilexerbash.sip | 74 + .../qscintilla/Python/sip/qscilexerbatch.sip | 56 + .../qscintilla/Python/sip/qscilexercmake.sip | 69 + .../Python/sip/qscilexercoffeescript.sip | 90 + .../qscintilla/Python/sip/qscilexercpp.sip | 138 + .../qscintilla/Python/sip/qscilexercsharp.sip | 41 + .../qscintilla/Python/sip/qscilexercss.sip | 88 + .../qscintilla/Python/sip/qscilexercustom.sip | 42 + .../qscintilla/Python/sip/qscilexerd.sip | 88 + .../qscintilla/Python/sip/qscilexerdiff.sip | 54 + .../Python/sip/qscilexeredifact.sip | 50 + .../Python/sip/qscilexerfortran.sip | 36 + .../Python/sip/qscilexerfortran77.sip | 71 + .../qscintilla/Python/sip/qscilexerhex.sip | 58 + .../qscintilla/Python/sip/qscilexerhtml.sip | 181 + .../qscintilla/Python/sip/qscilexeridl.sip | 38 + .../Python/sip/qscilexerintelhex.sip | 37 + .../qscintilla/Python/sip/qscilexerjava.sip | 36 + .../Python/sip/qscilexerjavascript.sip | 41 + .../qscintilla/Python/sip/qscilexerjson.sip | 71 + .../qscintilla/Python/sip/qscilexerlua.sip | 79 + .../Python/sip/qscilexermakefile.sip | 52 + .../Python/sip/qscilexermarkdown.sip | 65 + .../qscintilla/Python/sip/qscilexermasm.sip | 36 + .../qscintilla/Python/sip/qscilexermatlab.sip | 52 + .../qscintilla/Python/sip/qscilexernasm.sip | 36 + .../qscintilla/Python/sip/qscilexeroctave.sip | 37 + .../qscintilla/Python/sip/qscilexerpascal.sip | 82 + .../qscintilla/Python/sip/qscilexerperl.sip | 111 + .../qscintilla/Python/sip/qscilexerpo.sip | 69 + .../Python/sip/qscilexerpostscript.sip | 78 + .../qscintilla/Python/sip/qscilexerpov.sip | 79 + .../Python/sip/qscilexerproperties.sip | 63 + .../qscintilla/Python/sip/qscilexerpython.sip | 105 + .../qscintilla/Python/sip/qscilexerruby.sip | 91 + .../qscintilla/Python/sip/qscilexerspice.sip | 54 + .../qscintilla/Python/sip/qscilexersql.sip | 93 + .../qscintilla/Python/sip/qscilexersrec.sip | 37 + .../qscintilla/Python/sip/qscilexertcl.sip | 77 + .../qscintilla/Python/sip/qscilexertekhex.sip | 37 + .../qscintilla/Python/sip/qscilexertex.sip | 63 + .../Python/sip/qscilexerverilog.sip | 106 + .../qscintilla/Python/sip/qscilexervhdl.sip | 81 + .../qscintilla/Python/sip/qscilexerxml.sip | 49 + .../qscintilla/Python/sip/qscilexeryaml.sip | 65 + .../qscintilla/Python/sip/qscimacro.sip | 44 + .../qscintilla/Python/sip/qscimod5.sip | 23 + .../qscintilla/Python/sip/qscimod6.sip | 23 + .../qscintilla/Python/sip/qscimodcommon.sip | 112 + .../qscintilla/Python/sip/qsciprinter.sip | 47 + .../qscintilla/Python/sip/qsciscintilla.sip | 557 + .../Python/sip/qsciscintillabase.sip | 1611 ++ .../qscintilla/Python/sip/qscistyle.sip | 69 + .../qscintilla/Python/sip/qscistyledtext.sip | 33 + third_party/qscintilla/designer/designer.pro | 22 + .../qscintilla/designer/qscintillaplugin.cpp | 167 + .../qscintilla/designer/qscintillaplugin.h | 38 + third_party/qscintilla/doc/README.doc | 204 + .../qscintilla/doc/Scintilla/Design.html | 246 + .../qscintilla/doc/Scintilla/Icons.html | 57 + .../qscintilla/doc/Scintilla/LPegLexer.html | 2608 ++ .../qscintilla/doc/Scintilla/Lexer.txt | 226 + .../qscintilla/doc/Scintilla/Privacy.html | 70 + .../qscintilla/doc/Scintilla/SciBreak.jpg | Bin 0 -> 33592 bytes .../qscintilla/doc/Scintilla/SciCoding.html | 294 + .../qscintilla/doc/Scintilla/SciRest.jpg | Bin 0 -> 16680 bytes .../qscintilla/doc/Scintilla/SciTEIco.png | Bin 0 -> 10091 bytes .../qscintilla/doc/Scintilla/SciWord.jpg | Bin 0 -> 6164 bytes .../doc/Scintilla/ScintillaDoc.html | 8483 +++++++ .../doc/Scintilla/ScintillaDownload.html | 71 + .../doc/Scintilla/ScintillaHistory.html | 12065 +++++++++ .../doc/Scintilla/ScintillaRelated.html | 533 + .../doc/Scintilla/ScintillaToDo.html | 128 + .../doc/Scintilla/ScintillaUsage.html | 376 + .../qscintilla/doc/Scintilla/Steps.html | 142 + .../doc/Scintilla/StyleMetadata.html | 204 + .../qscintilla/doc/Scintilla/annotations.png | Bin 0 -> 33549 bytes .../qscintilla/doc/Scintilla/index.html | 192 + .../qscintilla/doc/Scintilla/styledmargin.png | Bin 0 -> 17138 bytes .../qscintilla/doc/html/annotated.html | 115 + third_party/qscintilla/doc/html/bc_s.png | Bin 0 -> 676 bytes third_party/qscintilla/doc/html/bdwn.png | Bin 0 -> 147 bytes .../doc/html/classQsciAPIs-members.html | 78 + .../qscintilla/doc/html/classQsciAPIs.html | 440 + .../html/classQsciAbstractAPIs-members.html | 61 + .../doc/html/classQsciAbstractAPIs.html | 1575 ++ .../doc/html/classQsciCommand-members.html | 163 + .../qscintilla/doc/html/classQsciCommand.html | 539 + .../doc/html/classQsciCommandSet-members.html | 62 + .../doc/html/classQsciCommandSet.html | 144 + .../doc/html/classQsciDocument-members.html | 59 + .../doc/html/classQsciDocument.html | 73 + .../doc/html/classQsciLexer-members.html | 110 + .../qscintilla/doc/html/classQsciLexer.html | 1461 ++ .../doc/html/classQsciLexerAVS-members.html | 131 + .../doc/html/classQsciLexerAVS.html | 627 + .../doc/html/classQsciLexerAsm-members.html | 136 + .../doc/html/classQsciLexerAsm.html | 706 + .../doc/html/classQsciLexerBash-members.html | 130 + .../doc/html/classQsciLexerBash.html | 654 + .../doc/html/classQsciLexerBatch-members.html | 120 + .../doc/html/classQsciLexerBatch.html | 418 + .../doc/html/classQsciLexerCMake-members.html | 129 + .../doc/html/classQsciLexerCMake.html | 604 + .../doc/html/classQsciLexerCPP-members.html | 190 + .../doc/html/classQsciLexerCPP.html | 1374 + .../doc/html/classQsciLexerCSS-members.html | 146 + .../doc/html/classQsciLexerCSS.html | 839 + .../html/classQsciLexerCSharp-members.html | 192 + .../doc/html/classQsciLexerCSharp.html | 469 + .../classQsciLexerCoffeeScript-members.html | 144 + .../doc/html/classQsciLexerCoffeeScript.html | 902 + .../html/classQsciLexerCustom-members.html | 116 + .../doc/html/classQsciLexerCustom.html | 385 + .../doc/html/classQsciLexerD-members.html | 141 + .../qscintilla/doc/html/classQsciLexerD.html | 852 + .../doc/html/classQsciLexerDiff-members.html | 124 + .../doc/html/classQsciLexerDiff.html | 343 + .../html/classQsciLexerEDIFACT-members.html | 121 + .../doc/html/classQsciLexerEDIFACT.html | 361 + .../html/classQsciLexerFortran-members.html | 131 + .../doc/html/classQsciLexerFortran.html | 319 + .../html/classQsciLexerFortran77-members.html | 129 + .../doc/html/classQsciLexerFortran77.html | 609 + .../doc/html/classQsciLexerHTML-members.html | 236 + .../doc/html/classQsciLexerHTML.html | 1269 + .../doc/html/classQsciLexerHex-members.html | 129 + .../doc/html/classQsciLexerHex.html | 363 + .../doc/html/classQsciLexerIDL-members.html | 192 + .../doc/html/classQsciLexerIDL.html | 410 + .../html/classQsciLexerIntelHex-members.html | 131 + .../doc/html/classQsciLexerIntelHex.html | 282 + .../doc/html/classQsciLexerJSON-members.html | 132 + .../doc/html/classQsciLexerJSON.html | 700 + .../doc/html/classQsciLexerJava-members.html | 192 + .../doc/html/classQsciLexerJava.html | 380 + .../classQsciLexerJavaScript-members.html | 192 + .../doc/html/classQsciLexerJavaScript.html | 469 + .../doc/html/classQsciLexerLua-members.html | 134 + .../doc/html/classQsciLexerLua.html | 679 + .../doc/html/classQsciLexerMASM-members.html | 138 + .../doc/html/classQsciLexerMASM.html | 270 + .../html/classQsciLexerMakefile-members.html | 119 + .../doc/html/classQsciLexerMakefile.html | 386 + .../html/classQsciLexerMarkdown-members.html | 134 + .../doc/html/classQsciLexerMarkdown.html | 434 + .../html/classQsciLexerMatlab-members.html | 121 + .../doc/html/classQsciLexerMatlab.html | 396 + .../doc/html/classQsciLexerNASM-members.html | 138 + .../doc/html/classQsciLexerNASM.html | 270 + .../html/classQsciLexerOctave-members.html | 123 + .../doc/html/classQsciLexerOctave.html | 298 + .../doc/html/classQsciLexerPO-members.html | 131 + .../qscintilla/doc/html/classQsciLexerPO.html | 597 + .../doc/html/classQsciLexerPOV-members.html | 135 + .../doc/html/classQsciLexerPOV.html | 715 + .../html/classQsciLexerPascal-members.html | 135 + .../doc/html/classQsciLexerPascal.html | 867 + .../doc/html/classQsciLexerPerl-members.html | 163 + .../doc/html/classQsciLexerPerl.html | 967 + .../classQsciLexerPostScript-members.html | 136 + .../doc/html/classQsciLexerPostScript.html | 761 + .../classQsciLexerProperties-members.html | 122 + .../doc/html/classQsciLexerProperties.html | 608 + .../html/classQsciLexerPython-members.html | 156 + .../doc/html/classQsciLexerPython.html | 1178 + .../doc/html/classQsciLexerRuby-members.html | 147 + .../doc/html/classQsciLexerRuby.html | 793 + .../doc/html/classQsciLexerSQL-members.html | 150 + .../doc/html/classQsciLexerSQL.html | 1010 + .../doc/html/classQsciLexerSRec-members.html | 131 + .../doc/html/classQsciLexerSRec.html | 282 + .../doc/html/classQsciLexerSpice-members.html | 121 + .../doc/html/classQsciLexerSpice.html | 390 + .../doc/html/classQsciLexerTCL-members.html | 136 + .../doc/html/classQsciLexerTCL.html | 625 + .../doc/html/classQsciLexerTeX-members.html | 126 + .../doc/html/classQsciLexerTeX.html | 666 + .../html/classQsciLexerTekHex-members.html | 131 + .../doc/html/classQsciLexerTekHex.html | 282 + .../doc/html/classQsciLexerVHDL-members.html | 138 + .../doc/html/classQsciLexerVHDL.html | 813 + .../html/classQsciLexerVerilog-members.html | 160 + .../doc/html/classQsciLexerVerilog.html | 847 + .../doc/html/classQsciLexerXML-members.html | 240 + .../doc/html/classQsciLexerXML.html | 676 + .../doc/html/classQsciLexerYAML-members.html | 124 + .../doc/html/classQsciLexerYAML.html | 589 + .../doc/html/classQsciMacro-members.html | 64 + .../qscintilla/doc/html/classQsciMacro.html | 165 + .../doc/html/classQsciPrinter-members.html | 64 + .../qscintilla/doc/html/classQsciPrinter.html | 338 + .../doc/html/classQsciScintilla-members.html | 1711 ++ .../doc/html/classQsciScintilla.html | 9942 ++++++++ .../html/classQsciScintillaBase-members.html | 1303 + .../doc/html/classQsciScintillaBase.html | 3783 +++ .../doc/html/classQsciStyle-members.html | 83 + .../qscintilla/doc/html/classQsciStyle.html | 709 + .../doc/html/classQsciStyledText-members.html | 60 + .../doc/html/classQsciStyledText.html | 135 + third_party/qscintilla/doc/html/classes.html | 145 + third_party/qscintilla/doc/html/closed.png | Bin 0 -> 132 bytes .../dir_68267d1309a1af8e8297ef4c3efbcdba.html | 60 + .../dir_e7e7b0b6fe362def31d601fa026bbeed.html | 56 + third_party/qscintilla/doc/html/doc.png | Bin 0 -> 746 bytes third_party/qscintilla/doc/html/doxygen.css | 1732 ++ third_party/qscintilla/doc/html/doxygen.svg | 26 + .../qscintilla/doc/html/dynsections.js | 121 + .../qscintilla/doc/html/folderclosed.png | Bin 0 -> 616 bytes .../qscintilla/doc/html/folderopen.png | Bin 0 -> 597 bytes .../qscintilla/doc/html/functions.html | 336 + .../qscintilla/doc/html/functions_b.html | 218 + .../qscintilla/doc/html/functions_c.html | 390 + .../qscintilla/doc/html/functions_d.html | 431 + .../qscintilla/doc/html/functions_e.html | 181 + .../qscintilla/doc/html/functions_enum.html | 110 + .../qscintilla/doc/html/functions_eval.html | 231 + .../qscintilla/doc/html/functions_eval_b.html | 145 + .../qscintilla/doc/html/functions_eval_c.html | 267 + .../qscintilla/doc/html/functions_eval_d.html | 214 + .../qscintilla/doc/html/functions_eval_e.html | 126 + .../qscintilla/doc/html/functions_eval_f.html | 88 + .../qscintilla/doc/html/functions_eval_g.html | 65 + .../qscintilla/doc/html/functions_eval_h.html | 141 + .../qscintilla/doc/html/functions_eval_i.html | 113 + .../qscintilla/doc/html/functions_eval_j.html | 91 + .../qscintilla/doc/html/functions_eval_k.html | 123 + .../qscintilla/doc/html/functions_eval_l.html | 152 + .../qscintilla/doc/html/functions_eval_m.html | 103 + .../qscintilla/doc/html/functions_eval_n.html | 101 + .../qscintilla/doc/html/functions_eval_o.html | 92 + .../qscintilla/doc/html/functions_eval_p.html | 260 + .../qscintilla/doc/html/functions_eval_q.html | 88 + .../qscintilla/doc/html/functions_eval_r.html | 111 + .../qscintilla/doc/html/functions_eval_s.html | 957 + .../qscintilla/doc/html/functions_eval_t.html | 153 + .../qscintilla/doc/html/functions_eval_u.html | 112 + .../qscintilla/doc/html/functions_eval_v.html | 111 + .../qscintilla/doc/html/functions_eval_w.html | 136 + .../qscintilla/doc/html/functions_eval_x.html | 61 + .../qscintilla/doc/html/functions_eval_z.html | 58 + .../qscintilla/doc/html/functions_f.html | 235 + .../qscintilla/doc/html/functions_func.html | 148 + .../qscintilla/doc/html/functions_func_b.html | 122 + .../qscintilla/doc/html/functions_func_c.html | 166 + .../qscintilla/doc/html/functions_func_d.html | 269 + .../qscintilla/doc/html/functions_func_e.html | 101 + .../qscintilla/doc/html/functions_func_f.html | 196 + .../qscintilla/doc/html/functions_func_g.html | 58 + .../qscintilla/doc/html/functions_func_h.html | 83 + .../qscintilla/doc/html/functions_func_i.html | 128 + .../qscintilla/doc/html/functions_func_k.html | 95 + .../qscintilla/doc/html/functions_func_l.html | 322 + .../qscintilla/doc/html/functions_func_m.html | 139 + .../qscintilla/doc/html/functions_func_o.html | 55 + .../qscintilla/doc/html/functions_func_p.html | 93 + .../qscintilla/doc/html/functions_func_q.html | 58 + .../qscintilla/doc/html/functions_func_r.html | 173 + .../qscintilla/doc/html/functions_func_s.html | 767 + .../qscintilla/doc/html/functions_func_t.html | 80 + .../qscintilla/doc/html/functions_func_u.html | 65 + .../qscintilla/doc/html/functions_func_v.html | 70 + .../qscintilla/doc/html/functions_func_w.html | 130 + .../qscintilla/doc/html/functions_func_z.html | 61 + .../qscintilla/doc/html/functions_func_~.html | 214 + .../qscintilla/doc/html/functions_g.html | 71 + .../qscintilla/doc/html/functions_h.html | 172 + .../qscintilla/doc/html/functions_i.html | 195 + .../qscintilla/doc/html/functions_j.html | 91 + .../qscintilla/doc/html/functions_k.html | 166 + .../qscintilla/doc/html/functions_l.html | 422 + .../qscintilla/doc/html/functions_m.html | 196 + .../qscintilla/doc/html/functions_n.html | 101 + .../qscintilla/doc/html/functions_o.html | 95 + .../qscintilla/doc/html/functions_p.html | 301 + .../qscintilla/doc/html/functions_q.html | 94 + .../qscintilla/doc/html/functions_r.html | 232 + .../qscintilla/doc/html/functions_s.html | 1672 ++ .../qscintilla/doc/html/functions_t.html | 187 + .../qscintilla/doc/html/functions_u.html | 125 + .../qscintilla/doc/html/functions_v.html | 129 + .../qscintilla/doc/html/functions_w.html | 228 + .../qscintilla/doc/html/functions_x.html | 61 + .../qscintilla/doc/html/functions_z.html | 67 + .../qscintilla/doc/html/functions_~.html | 214 + .../qscintilla/doc/html/hierarchy.html | 118 + third_party/qscintilla/doc/html/index.html | 148 + third_party/qscintilla/doc/html/jquery.js | 35 + third_party/qscintilla/doc/html/menu.js | 51 + third_party/qscintilla/doc/html/menudata.js | 108 + third_party/qscintilla/doc/html/nav_f.png | Bin 0 -> 153 bytes third_party/qscintilla/doc/html/nav_g.png | Bin 0 -> 95 bytes third_party/qscintilla/doc/html/nav_h.png | Bin 0 -> 98 bytes third_party/qscintilla/doc/html/open.png | Bin 0 -> 123 bytes third_party/qscintilla/doc/html/splitbar.png | Bin 0 -> 314 bytes third_party/qscintilla/doc/html/sync_off.png | Bin 0 -> 853 bytes third_party/qscintilla/doc/html/sync_on.png | Bin 0 -> 845 bytes third_party/qscintilla/doc/html/tab_a.png | Bin 0 -> 142 bytes third_party/qscintilla/doc/html/tab_b.png | Bin 0 -> 169 bytes third_party/qscintilla/doc/html/tab_h.png | Bin 0 -> 177 bytes third_party/qscintilla/doc/html/tab_s.png | Bin 0 -> 184 bytes third_party/qscintilla/doc/html/tabs.css | 1 + third_party/qscintilla/doc/qscintilla.dxy | 1514 ++ .../qscintilla/example/application.pro | 9 + .../qscintilla/example/application.qrc | 10 + .../qscintilla/example/images/copy.png | Bin 0 -> 1339 bytes third_party/qscintilla/example/images/cut.png | Bin 0 -> 1323 bytes third_party/qscintilla/example/images/new.png | Bin 0 -> 852 bytes .../qscintilla/example/images/open.png | Bin 0 -> 2073 bytes .../qscintilla/example/images/paste.png | Bin 0 -> 1745 bytes .../qscintilla/example/images/save.png | Bin 0 -> 1187 bytes third_party/qscintilla/example/main.cpp | 62 + third_party/qscintilla/example/mainwindow.cpp | 339 + third_party/qscintilla/example/mainwindow.h | 110 + .../qscintilla/qsci/api/python/Python-2.4.api | 7663 ++++++ .../qscintilla/qsci/api/python/Python-2.5.api | 8539 +++++++ .../qscintilla/qsci/api/python/Python-2.6.api | 8216 ++++++ .../qscintilla/qsci/api/python/Python-2.7.api | 8270 ++++++ .../qscintilla/qsci/api/python/Python-3.1.api | 7235 ++++++ .../qsci/api/python/Python-3.10.api | 9373 +++++++ .../qsci/api/python/Python-3.11.api | 9696 ++++++++ .../qscintilla/qsci/api/python/Python-3.2.api | 6296 +++++ .../qscintilla/qsci/api/python/Python-3.3.api | 10055 ++++++++ .../qscintilla/qsci/api/python/Python-3.4.api | 9992 ++++++++ .../qscintilla/qsci/api/python/Python-3.5.api | 9717 ++++++++ .../qscintilla/qsci/api/python/Python-3.6.api | 9359 +++++++ .../qscintilla/qsci/api/python/Python-3.7.api | 9410 +++++++ .../qscintilla/qsci/api/python/Python-3.8.api | 9553 +++++++ .../qscintilla/qsci/api/python/Python-3.9.api | 9200 +++++++ .../qscintilla/scintilla/include/ILexer.h | 90 + .../qscintilla/scintilla/include/ILoader.h | 21 + .../qscintilla/scintilla/include/License.txt | 20 + .../qscintilla/scintilla/include/Platform.h | 553 + .../qscintilla/scintilla/include/SciLexer.h | 1861 ++ .../scintilla/include/Sci_Position.h | 29 + .../qscintilla/scintilla/include/Scintilla.h | 1239 + .../scintilla/include/Scintilla.iface | 4990 ++++ .../scintilla/include/ScintillaWidget.h | 72 + .../qscintilla/scintilla/lexers/LexA68k.cpp | 345 + .../qscintilla/scintilla/lexers/LexAPDL.cpp | 257 + .../qscintilla/scintilla/lexers/LexASY.cpp | 269 + .../qscintilla/scintilla/lexers/LexAU3.cpp | 908 + .../qscintilla/scintilla/lexers/LexAVE.cpp | 229 + .../qscintilla/scintilla/lexers/LexAVS.cpp | 291 + .../qscintilla/scintilla/lexers/LexAbaqus.cpp | 603 + .../qscintilla/scintilla/lexers/LexAda.cpp | 513 + .../qscintilla/scintilla/lexers/LexAsm.cpp | 466 + .../qscintilla/scintilla/lexers/LexAsn1.cpp | 186 + .../qscintilla/scintilla/lexers/LexBaan.cpp | 988 + .../qscintilla/scintilla/lexers/LexBash.cpp | 907 + .../qscintilla/scintilla/lexers/LexBasic.cpp | 565 + .../qscintilla/scintilla/lexers/LexBatch.cpp | 498 + .../qscintilla/scintilla/lexers/LexBibTeX.cpp | 308 + .../scintilla/lexers/LexBullant.cpp | 231 + .../qscintilla/scintilla/lexers/LexCLW.cpp | 680 + .../qscintilla/scintilla/lexers/LexCOBOL.cpp | 379 + .../qscintilla/scintilla/lexers/LexCPP.cpp | 1725 ++ .../qscintilla/scintilla/lexers/LexCSS.cpp | 567 + .../qscintilla/scintilla/lexers/LexCaml.cpp | 460 + .../qscintilla/scintilla/lexers/LexCmake.cpp | 455 + .../scintilla/lexers/LexCoffeeScript.cpp | 483 + .../qscintilla/scintilla/lexers/LexConf.cpp | 190 + .../scintilla/lexers/LexCrontab.cpp | 224 + .../qscintilla/scintilla/lexers/LexCsound.cpp | 212 + .../qscintilla/scintilla/lexers/LexD.cpp | 567 + .../qscintilla/scintilla/lexers/LexDMAP.cpp | 226 + .../qscintilla/scintilla/lexers/LexDMIS.cpp | 354 + .../qscintilla/scintilla/lexers/LexDiff.cpp | 161 + .../qscintilla/scintilla/lexers/LexECL.cpp | 519 + .../scintilla/lexers/LexEDIFACT.cpp | 336 + .../scintilla/lexers/LexEScript.cpp | 274 + .../qscintilla/scintilla/lexers/LexEiffel.cpp | 239 + .../qscintilla/scintilla/lexers/LexErlang.cpp | 624 + .../scintilla/lexers/LexErrorList.cpp | 393 + .../scintilla/lexers/LexFlagship.cpp | 352 + .../qscintilla/scintilla/lexers/LexForth.cpp | 168 + .../scintilla/lexers/LexFortran.cpp | 721 + .../qscintilla/scintilla/lexers/LexGAP.cpp | 264 + .../scintilla/lexers/LexGui4Cli.cpp | 311 + .../qscintilla/scintilla/lexers/LexHTML.cpp | 2469 ++ .../scintilla/lexers/LexHaskell.cpp | 1110 + .../qscintilla/scintilla/lexers/LexHex.cpp | 1045 + .../qscintilla/scintilla/lexers/LexIndent.cpp | 71 + .../qscintilla/scintilla/lexers/LexInno.cpp | 288 + .../qscintilla/scintilla/lexers/LexJSON.cpp | 498 + .../qscintilla/scintilla/lexers/LexKVIrc.cpp | 471 + .../qscintilla/scintilla/lexers/LexKix.cpp | 134 + .../qscintilla/scintilla/lexers/LexLPeg.cpp | 799 + .../qscintilla/scintilla/lexers/LexLaTeX.cpp | 538 + .../qscintilla/scintilla/lexers/LexLisp.cpp | 283 + .../qscintilla/scintilla/lexers/LexLout.cpp | 213 + .../qscintilla/scintilla/lexers/LexLua.cpp | 502 + .../qscintilla/scintilla/lexers/LexMMIXAL.cpp | 188 + .../qscintilla/scintilla/lexers/LexMPT.cpp | 191 + .../qscintilla/scintilla/lexers/LexMSSQL.cpp | 352 + .../qscintilla/scintilla/lexers/LexMagik.cpp | 446 + .../qscintilla/scintilla/lexers/LexMake.cpp | 142 + .../scintilla/lexers/LexMarkdown.cpp | 419 + .../qscintilla/scintilla/lexers/LexMatlab.cpp | 389 + .../qscintilla/scintilla/lexers/LexMaxima.cpp | 222 + .../scintilla/lexers/LexMetapost.cpp | 400 + .../qscintilla/scintilla/lexers/LexModula.cpp | 741 + .../qscintilla/scintilla/lexers/LexMySQL.cpp | 574 + .../qscintilla/scintilla/lexers/LexNimrod.cpp | 431 + .../qscintilla/scintilla/lexers/LexNsis.cpp | 660 + .../qscintilla/scintilla/lexers/LexNull.cpp | 38 + .../scintilla/lexers/LexOScript.cpp | 546 + .../qscintilla/scintilla/lexers/LexOpal.cpp | 523 + .../qscintilla/scintilla/lexers/LexPB.cpp | 363 + .../qscintilla/scintilla/lexers/LexPLM.cpp | 199 + .../qscintilla/scintilla/lexers/LexPO.cpp | 211 + .../qscintilla/scintilla/lexers/LexPOV.cpp | 317 + .../qscintilla/scintilla/lexers/LexPS.cpp | 331 + .../qscintilla/scintilla/lexers/LexPascal.cpp | 613 + .../qscintilla/scintilla/lexers/LexPerl.cpp | 1811 ++ .../scintilla/lexers/LexPowerPro.cpp | 628 + .../scintilla/lexers/LexPowerShell.cpp | 252 + .../scintilla/lexers/LexProgress.cpp | 564 + .../qscintilla/scintilla/lexers/LexProps.cpp | 187 + .../qscintilla/scintilla/lexers/LexPython.cpp | 984 + .../qscintilla/scintilla/lexers/LexR.cpp | 214 + .../qscintilla/scintilla/lexers/LexRebol.cpp | 323 + .../scintilla/lexers/LexRegistry.cpp | 415 + .../qscintilla/scintilla/lexers/LexRuby.cpp | 1879 ++ .../qscintilla/scintilla/lexers/LexRust.cpp | 839 + .../qscintilla/scintilla/lexers/LexSAS.cpp | 220 + .../qscintilla/scintilla/lexers/LexSML.cpp | 226 + .../qscintilla/scintilla/lexers/LexSQL.cpp | 967 + .../qscintilla/scintilla/lexers/LexSTTXT.cpp | 404 + .../scintilla/lexers/LexScriptol.cpp | 379 + .../scintilla/lexers/LexSmalltalk.cpp | 324 + .../qscintilla/scintilla/lexers/LexSorcus.cpp | 206 + .../scintilla/lexers/LexSpecman.cpp | 290 + .../qscintilla/scintilla/lexers/LexSpice.cpp | 204 + .../qscintilla/scintilla/lexers/LexStata.cpp | 203 + .../qscintilla/scintilla/lexers/LexTACL.cpp | 398 + .../qscintilla/scintilla/lexers/LexTADS3.cpp | 901 + .../qscintilla/scintilla/lexers/LexTAL.cpp | 397 + .../qscintilla/scintilla/lexers/LexTCL.cpp | 368 + .../qscintilla/scintilla/lexers/LexTCMD.cpp | 504 + .../qscintilla/scintilla/lexers/LexTeX.cpp | 495 + .../scintilla/lexers/LexTxt2tags.cpp | 478 + .../qscintilla/scintilla/lexers/LexVB.cpp | 317 + .../qscintilla/scintilla/lexers/LexVHDL.cpp | 585 + .../scintilla/lexers/LexVerilog.cpp | 1077 + .../scintilla/lexers/LexVisualProlog.cpp | 510 + .../qscintilla/scintilla/lexers/LexYAML.cpp | 351 + .../qscintilla/scintilla/lexers/License.txt | 20 + .../qscintilla/scintilla/lexlib/Accessor.cpp | 73 + .../qscintilla/scintilla/lexlib/Accessor.h | 31 + .../scintilla/lexlib/CharacterCategory.cpp | 3966 +++ .../scintilla/lexlib/CharacterCategory.h | 33 + .../scintilla/lexlib/CharacterSet.cpp | 52 + .../scintilla/lexlib/CharacterSet.h | 194 + .../scintilla/lexlib/DefaultLexer.cpp | 125 + .../scintilla/lexlib/DefaultLexer.h | 51 + .../qscintilla/scintilla/lexlib/LexAccessor.h | 208 + .../qscintilla/scintilla/lexlib/LexerBase.cpp | 144 + .../qscintilla/scintilla/lexlib/LexerBase.h | 53 + .../scintilla/lexlib/LexerModule.cpp | 126 + .../qscintilla/scintilla/lexlib/LexerModule.h | 87 + .../scintilla/lexlib/LexerNoExceptions.cpp | 62 + .../scintilla/lexlib/LexerNoExceptions.h | 28 + .../scintilla/lexlib/LexerSimple.cpp | 53 + .../qscintilla/scintilla/lexlib/LexerSimple.h | 26 + .../qscintilla/scintilla/lexlib/License.txt | 20 + .../qscintilla/scintilla/lexlib/OptionSet.h | 138 + .../scintilla/lexlib/PropSetSimple.cpp | 157 + .../scintilla/lexlib/PropSetSimple.h | 28 + .../qscintilla/scintilla/lexlib/SparseState.h | 106 + .../qscintilla/scintilla/lexlib/StringCopy.h | 32 + .../scintilla/lexlib/StyleContext.cpp | 69 + .../scintilla/lexlib/StyleContext.h | 212 + .../qscintilla/scintilla/lexlib/SubStyles.h | 196 + .../qscintilla/scintilla/lexlib/WordList.cpp | 295 + .../qscintilla/scintilla/lexlib/WordList.h | 38 + .../qscintilla/scintilla/src/AutoComplete.cpp | 293 + .../qscintilla/scintilla/src/AutoComplete.h | 91 + .../qscintilla/scintilla/src/CallTip.cpp | 332 + .../qscintilla/scintilla/src/CallTip.h | 91 + .../qscintilla/scintilla/src/CaseConvert.cpp | 819 + .../qscintilla/scintilla/src/CaseConvert.h | 46 + .../qscintilla/scintilla/src/CaseFolder.cpp | 66 + .../qscintilla/scintilla/src/CaseFolder.h | 41 + .../qscintilla/scintilla/src/Catalogue.cpp | 204 + .../qscintilla/scintilla/src/Catalogue.h | 24 + .../qscintilla/scintilla/src/CellBuffer.cpp | 1204 + .../qscintilla/scintilla/src/CellBuffer.h | 215 + .../qscintilla/scintilla/src/CharClassify.cpp | 59 + .../qscintilla/scintilla/src/CharClassify.h | 31 + .../scintilla/src/ContractionState.cpp | 418 + .../scintilla/src/ContractionState.h | 52 + third_party/qscintilla/scintilla/src/DBCS.cpp | 42 + third_party/qscintilla/scintilla/src/DBCS.h | 17 + .../qscintilla/scintilla/src/Decoration.cpp | 316 + .../qscintilla/scintilla/src/Decoration.h | 59 + .../qscintilla/scintilla/src/Document.cpp | 3250 +++ .../qscintilla/scintilla/src/Document.h | 584 + .../qscintilla/scintilla/src/EditModel.cpp | 77 + .../qscintilla/scintilla/src/EditModel.h | 68 + .../qscintilla/scintilla/src/EditView.cpp | 2403 ++ .../qscintilla/scintilla/src/EditView.h | 186 + .../qscintilla/scintilla/src/Editor.cpp | 8234 ++++++ third_party/qscintilla/scintilla/src/Editor.h | 650 + .../qscintilla/scintilla/src/ElapsedPeriod.h | 35 + .../scintilla/src/ExternalLexer.cpp | 135 + .../qscintilla/scintilla/src/ExternalLexer.h | 80 + .../qscintilla/scintilla/src/FontQuality.h | 27 + .../qscintilla/scintilla/src/Indicator.cpp | 223 + .../qscintilla/scintilla/src/Indicator.h | 56 + .../scintilla/src/IntegerRectangle.h | 29 + .../qscintilla/scintilla/src/KeyMap.cpp | 164 + third_party/qscintilla/scintilla/src/KeyMap.h | 64 + .../qscintilla/scintilla/src/License.txt | 20 + .../qscintilla/scintilla/src/LineMarker.cpp | 436 + .../qscintilla/scintilla/src/LineMarker.h | 48 + .../qscintilla/scintilla/src/MarginView.cpp | 470 + .../qscintilla/scintilla/src/MarginView.h | 46 + .../qscintilla/scintilla/src/Partitioning.h | 204 + .../qscintilla/scintilla/src/PerLine.cpp | 499 + .../qscintilla/scintilla/src/PerLine.h | 164 + .../qscintilla/scintilla/src/Position.h | 31 + .../scintilla/src/PositionCache.cpp | 719 + .../qscintilla/scintilla/src/PositionCache.h | 247 + .../qscintilla/scintilla/src/RESearch.cpp | 960 + .../qscintilla/scintilla/src/RESearch.h | 70 + .../qscintilla/scintilla/src/RunStyles.cpp | 314 + .../qscintilla/scintilla/src/RunStyles.h | 64 + .../qscintilla/scintilla/src/SciTE.properties | 6 + .../scintilla/src/ScintillaBase.cpp | 1165 + .../qscintilla/scintilla/src/ScintillaBase.h | 103 + .../qscintilla/scintilla/src/Selection.cpp | 436 + .../qscintilla/scintilla/src/Selection.h | 192 + .../qscintilla/scintilla/src/SparseVector.h | 156 + .../qscintilla/scintilla/src/SplitVector.h | 332 + .../qscintilla/scintilla/src/Style.cpp | 168 + third_party/qscintilla/scintilla/src/Style.h | 92 + .../scintilla/src/UniConversion.cpp | 368 + .../qscintilla/scintilla/src/UniConversion.h | 86 + .../qscintilla/scintilla/src/UniqueString.h | 30 + .../qscintilla/scintilla/src/ViewStyle.cpp | 613 + .../qscintilla/scintilla/src/ViewStyle.h | 224 + third_party/qscintilla/scintilla/src/XPM.cpp | 448 + third_party/qscintilla/scintilla/src/XPM.h | 130 + third_party/qscintilla/src/.qmake.stash | 21 + third_party/qscintilla/src/InputMethod.cpp | 273 + third_party/qscintilla/src/ListBoxQt.cpp | 367 + third_party/qscintilla/src/ListBoxQt.h | 76 + .../qscintilla/src/MacPasteboardMime.cpp | 111 + third_party/qscintilla/src/Makefile | 448 + third_party/qscintilla/src/Makefile.Debug | 20755 ++++++++++++++++ third_party/qscintilla/src/Makefile.Release | 20755 ++++++++++++++++ third_party/qscintilla/src/PlatQt.cpp | 990 + .../qscintilla/src/Qsci/qsciabstractapis.h | 90 + third_party/qscintilla/src/Qsci/qsciapis.h | 213 + third_party/qscintilla/src/Qsci/qscicommand.h | 408 + .../qscintilla/src/Qsci/qscicommandset.h | 89 + .../qscintilla/src/Qsci/qscidocument.h | 61 + third_party/qscintilla/src/Qsci/qsciglobal.h | 54 + third_party/qscintilla/src/Qsci/qscilexer.h | 356 + .../qscintilla/src/Qsci/qscilexerasm.h | 201 + .../qscintilla/src/Qsci/qscilexeravs.h | 174 + .../qscintilla/src/Qsci/qscilexerbash.h | 178 + .../qscintilla/src/Qsci/qscilexerbatch.h | 115 + .../qscintilla/src/Qsci/qscilexercmake.h | 160 + .../src/Qsci/qscilexercoffeescript.h | 264 + .../qscintilla/src/Qsci/qscilexercpp.h | 398 + .../qscintilla/src/Qsci/qscilexercsharp.h | 77 + .../qscintilla/src/Qsci/qscilexercss.h | 252 + .../qscintilla/src/Qsci/qscilexercustom.h | 100 + third_party/qscintilla/src/Qsci/qscilexerd.h | 242 + .../qscintilla/src/Qsci/qscilexerdiff.h | 107 + .../qscintilla/src/Qsci/qscilexeredifact.h | 96 + .../qscintilla/src/Qsci/qscilexerfortran.h | 59 + .../qscintilla/src/Qsci/qscilexerfortran77.h | 168 + .../qscintilla/src/Qsci/qscilexerhex.h | 120 + .../qscintilla/src/Qsci/qscilexerhtml.h | 532 + .../qscintilla/src/Qsci/qscilexeridl.h | 64 + .../qscintilla/src/Qsci/qscilexerintelhex.h | 60 + .../qscintilla/src/Qsci/qscilexerjava.h | 55 + .../qscintilla/src/Qsci/qscilexerjavascript.h | 81 + .../qscintilla/src/Qsci/qscilexerjson.h | 184 + .../qscintilla/src/Qsci/qscilexerlua.h | 194 + .../qscintilla/src/Qsci/qscilexermakefile.h | 105 + .../qscintilla/src/Qsci/qscilexermarkdown.h | 148 + .../qscintilla/src/Qsci/qscilexermasm.h | 54 + .../qscintilla/src/Qsci/qscilexermatlab.h | 104 + .../qscintilla/src/Qsci/qscilexernasm.h | 54 + .../qscintilla/src/Qsci/qscilexeroctave.h | 60 + .../qscintilla/src/Qsci/qscilexerpascal.h | 227 + .../qscintilla/src/Qsci/qscilexerperl.h | 312 + third_party/qscintilla/src/Qsci/qscilexerpo.h | 163 + .../qscintilla/src/Qsci/qscilexerpostscript.h | 204 + .../qscintilla/src/Qsci/qscilexerpov.h | 203 + .../qscintilla/src/Qsci/qscilexerproperties.h | 150 + .../qscintilla/src/Qsci/qscilexerpython.h | 333 + .../qscintilla/src/Qsci/qscilexerruby.h | 240 + .../qscintilla/src/Qsci/qscilexerspice.h | 106 + .../qscintilla/src/Qsci/qscilexersql.h | 286 + .../qscintilla/src/Qsci/qscilexersrec.h | 59 + .../qscintilla/src/Qsci/qscilexertcl.h | 189 + .../qscintilla/src/Qsci/qscilexertekhex.h | 60 + .../qscintilla/src/Qsci/qscilexertex.h | 163 + .../qscintilla/src/Qsci/qscilexerverilog.h | 257 + .../qscintilla/src/Qsci/qscilexervhdl.h | 221 + .../qscintilla/src/Qsci/qscilexerxml.h | 106 + .../qscintilla/src/Qsci/qscilexeryaml.h | 147 + third_party/qscintilla/src/Qsci/qscimacro.h | 98 + third_party/qscintilla/src/Qsci/qsciprinter.h | 120 + .../qscintilla/src/Qsci/qsciscintilla.h | 2313 ++ .../qscintilla/src/Qsci/qsciscintillabase.h | 3888 +++ third_party/qscintilla/src/Qsci/qscistyle.h | 204 + .../qscintilla/src/Qsci/qscistyledtext.h | 61 + .../qscintilla/src/SciAccessibility.cpp | 739 + third_party/qscintilla/src/SciAccessibility.h | 119 + third_party/qscintilla/src/SciClasses.cpp | 189 + third_party/qscintilla/src/SciClasses.h | 103 + third_party/qscintilla/src/ScintillaQt.cpp | 768 + third_party/qscintilla/src/ScintillaQt.h | 151 + .../object_script.qscintilla2_qt6d.Debug | 269 + .../qscintilla/src/features/qscintilla2.prf | 25 + .../src/features_staticlib/qscintilla2.prf | 23 + .../qscintilla/src/qsciabstractapis.cpp | 51 + third_party/qscintilla/src/qsciapis.cpp | 995 + third_party/qscintilla/src/qscicommand.cpp | 143 + third_party/qscintilla/src/qscicommandset.cpp | 987 + third_party/qscintilla/src/qscidocument.cpp | 151 + third_party/qscintilla/src/qscilexer.cpp | 749 + third_party/qscintilla/src/qscilexerasm.cpp | 575 + third_party/qscintilla/src/qscilexeravs.cpp | 414 + third_party/qscintilla/src/qscilexerbash.cpp | 350 + third_party/qscintilla/src/qscilexerbatch.cpp | 212 + third_party/qscintilla/src/qscilexercmake.cpp | 304 + .../qscintilla/src/qscilexercoffeescript.cpp | 454 + third_party/qscintilla/src/qscilexercpp.cpp | 801 + .../qscintilla/src/qscilexercsharp.cpp | 118 + third_party/qscintilla/src/qscilexercss.cpp | 440 + .../qscintilla/src/qscilexercustom.cpp | 101 + third_party/qscintilla/src/qscilexerd.cpp | 450 + third_party/qscintilla/src/qscilexerdiff.cpp | 143 + .../qscintilla/src/qscilexeredifact.cpp | 122 + .../qscintilla/src/qscilexerfortran.cpp | 109 + .../qscintilla/src/qscilexerfortran77.cpp | 296 + third_party/qscintilla/src/qscilexerhex.cpp | 156 + third_party/qscintilla/src/qscilexerhtml.cpp | 1181 + third_party/qscintilla/src/qscilexeridl.cpp | 100 + .../qscintilla/src/qscilexerintelhex.cpp | 59 + third_party/qscintilla/src/qscilexerjava.cpp | 57 + .../qscintilla/src/qscilexerjavascript.cpp | 120 + third_party/qscintilla/src/qscilexerjson.cpp | 298 + third_party/qscintilla/src/qscilexerlua.cpp | 368 + .../qscintilla/src/qscilexermakefile.cpp | 158 + .../qscintilla/src/qscilexermarkdown.cpp | 289 + third_party/qscintilla/src/qscilexermasm.cpp | 48 + .../qscintilla/src/qscilexermatlab.cpp | 161 + third_party/qscintilla/src/qscilexernasm.cpp | 48 + .../qscintilla/src/qscilexeroctave.cpp | 68 + .../qscintilla/src/qscilexerpascal.cpp | 432 + third_party/qscintilla/src/qscilexerperl.cpp | 658 + third_party/qscintilla/src/qscilexerpo.cpp | 223 + .../qscintilla/src/qscilexerpostscript.cpp | 448 + third_party/qscintilla/src/qscilexerpov.cpp | 464 + .../qscintilla/src/qscilexerproperties.cpp | 213 + .../qscintilla/src/qscilexerpython.cpp | 507 + third_party/qscintilla/src/qscilexerruby.cpp | 445 + third_party/qscintilla/src/qscilexerspice.cpp | 194 + third_party/qscintilla/src/qscilexersql.cpp | 521 + third_party/qscintilla/src/qscilexersrec.cpp | 62 + third_party/qscintilla/src/qscilexertcl.cpp | 438 + .../qscintilla/src/qscilexertekhex.cpp | 59 + third_party/qscintilla/src/qscilexertex.cpp | 308 + .../qscintilla/src/qscilexerverilog.cpp | 572 + third_party/qscintilla/src/qscilexervhdl.cpp | 418 + third_party/qscintilla/src/qscilexerxml.cpp | 252 + third_party/qscintilla/src/qscilexeryaml.cpp | 269 + third_party/qscintilla/src/qscimacro.cpp | 313 + third_party/qscintilla/src/qscintilla.pro | 445 + third_party/qscintilla/src/qscintilla_cs.qm | Bin 0 -> 44424 bytes third_party/qscintilla/src/qscintilla_cs.ts | 4227 ++++ third_party/qscintilla/src/qscintilla_de.qm | Bin 0 -> 82744 bytes third_party/qscintilla/src/qscintilla_de.ts | 4227 ++++ third_party/qscintilla/src/qscintilla_es.qm | Bin 0 -> 81850 bytes third_party/qscintilla/src/qscintilla_es.ts | 4227 ++++ third_party/qscintilla/src/qscintilla_fr.qm | Bin 0 -> 53842 bytes third_party/qscintilla/src/qscintilla_fr.ts | 4227 ++++ .../qscintilla/src/qscintilla_pt_br.qm | Bin 0 -> 49459 bytes .../qscintilla/src/qscintilla_pt_br.ts | 4227 ++++ third_party/qscintilla/src/qsciprinter.cpp | 196 + third_party/qscintilla/src/qsciscintilla.cpp | 4569 ++++ .../qscintilla/src/qsciscintillabase.cpp | 867 + third_party/qscintilla/src/qscistyle.cpp | 184 + third_party/qscintilla/src/qscistyledtext.cpp | 54 + .../qscintilla/src/release/moc_SciClasses.cpp | 309 + .../src/release/moc_ScintillaQt.cpp | 158 + .../qscintilla/src/release/moc_predefs.h | 440 + .../src/release/moc_qsciabstractapis.cpp | 115 + .../qscintilla/src/release/moc_qsciapis.cpp | 206 + .../qscintilla/src/release/moc_qscilexer.cpp | 382 + .../src/release/moc_qscilexerasm.cpp | 189 + .../src/release/moc_qscilexeravs.cpp | 161 + .../src/release/moc_qscilexerbash.cpp | 161 + .../src/release/moc_qscilexerbatch.cpp | 115 + .../src/release/moc_qscilexercmake.cpp | 151 + .../src/release/moc_qscilexercoffeescript.cpp | 115 + .../src/release/moc_qscilexercpp.cpp | 195 + .../src/release/moc_qscilexercsharp.cpp | 115 + .../src/release/moc_qscilexercss.cpp | 161 + .../src/release/moc_qscilexercustom.cpp | 151 + .../qscintilla/src/release/moc_qscilexerd.cpp | 171 + .../src/release/moc_qscilexerdiff.cpp | 115 + .../src/release/moc_qscilexeredifact.cpp | 115 + .../src/release/moc_qscilexerfortran.cpp | 115 + .../src/release/moc_qscilexerfortran77.cpp | 151 + .../src/release/moc_qscilexerhex.cpp | 115 + .../src/release/moc_qscilexerhtml.cpp | 175 + .../src/release/moc_qscilexeridl.cpp | 115 + .../src/release/moc_qscilexerintelhex.cpp | 115 + .../src/release/moc_qscilexerjava.cpp | 115 + .../src/release/moc_qscilexerjavascript.cpp | 115 + .../src/release/moc_qscilexerjson.cpp | 115 + .../src/release/moc_qscilexerlua.cpp | 151 + .../src/release/moc_qscilexermakefile.cpp | 115 + .../src/release/moc_qscilexermarkdown.cpp | 115 + .../src/release/moc_qscilexermasm.cpp | 115 + .../src/release/moc_qscilexermatlab.cpp | 115 + .../src/release/moc_qscilexernasm.cpp | 115 + .../src/release/moc_qscilexeroctave.cpp | 115 + .../src/release/moc_qscilexerpascal.cpp | 171 + .../src/release/moc_qscilexerperl.cpp | 161 + .../src/release/moc_qscilexerpo.cpp | 161 + .../src/release/moc_qscilexerpostscript.cpp | 189 + .../src/release/moc_qscilexerpov.cpp | 171 + .../src/release/moc_qscilexerproperties.cpp | 151 + .../src/release/moc_qscilexerpython.cpp | 179 + .../src/release/moc_qscilexerruby.cpp | 115 + .../src/release/moc_qscilexerspice.cpp | 115 + .../src/release/moc_qscilexersql.cpp | 175 + .../src/release/moc_qscilexersrec.cpp | 115 + .../src/release/moc_qscilexertcl.cpp | 115 + .../src/release/moc_qscilexertekhex.cpp | 115 + .../src/release/moc_qscilexertex.cpp | 115 + .../src/release/moc_qscilexerverilog.cpp | 115 + .../src/release/moc_qscilexervhdl.cpp | 191 + .../src/release/moc_qscilexerxml.cpp | 115 + .../src/release/moc_qscilexeryaml.cpp | 151 + .../qscintilla/src/release/moc_qscimacro.cpp | 188 + .../src/release/moc_qsciscintilla.cpp | 1682 ++ .../src/release/moc_qsciscintillabase.cpp | 1107 + .../object_script.qscintilla2_qt6.Release | 269 + 786 files changed, 473499 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 cmake/FindQScintilla.cmake create mode 100644 scripts/build_qscintilla.bat create mode 100644 src/compose.cpp create mode 100644 src/controller.cpp create mode 100644 src/controller.h create mode 100644 src/core.h create mode 100644 src/editor.cpp create mode 100644 src/editor.h create mode 100644 src/format.cpp create mode 100644 src/icons.qrc create mode 100644 src/icons/chevron-down.png create mode 100644 src/icons/chevron-right.png create mode 100644 src/icons/close.png create mode 100644 src/main.cpp create mode 100644 tests/test_compose.cpp create mode 100644 tests/test_core.cpp create mode 100644 tests/test_editor.cpp create mode 100644 tests/test_format.cpp create mode 100644 third_party/QScintilla_src.tar.gz create mode 100644 third_party/qscintilla/ChangeLog create mode 100644 third_party/qscintilla/LICENSE create mode 100644 third_party/qscintilla/NEWS create mode 100644 third_party/qscintilla/Python/README create mode 100644 third_party/qscintilla/Python/config-tests/cfgtest_Qsci.cpp create mode 100644 third_party/qscintilla/Python/project.py create mode 100644 third_party/qscintilla/Python/pyproject-qt5.toml create mode 100644 third_party/qscintilla/Python/pyproject-qt6.toml create mode 100644 third_party/qscintilla/Python/sip/qsciabstractapis.sip create mode 100644 third_party/qscintilla/Python/sip/qsciapis.sip create mode 100644 third_party/qscintilla/Python/sip/qscicommand.sip create mode 100644 third_party/qscintilla/Python/sip/qscicommandset.sip create mode 100644 third_party/qscintilla/Python/sip/qscidocument.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexer.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerasm.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexeravs.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerbash.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerbatch.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexercmake.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexercoffeescript.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexercpp.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexercsharp.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexercss.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexercustom.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerd.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerdiff.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexeredifact.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerfortran.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerfortran77.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerhex.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerhtml.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexeridl.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerintelhex.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerjava.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerjavascript.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerjson.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerlua.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexermakefile.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexermarkdown.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexermasm.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexermatlab.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexernasm.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexeroctave.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerpascal.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerperl.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerpo.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerpostscript.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerpov.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerproperties.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerpython.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerruby.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerspice.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexersql.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexersrec.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexertcl.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexertekhex.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexertex.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerverilog.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexervhdl.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexerxml.sip create mode 100644 third_party/qscintilla/Python/sip/qscilexeryaml.sip create mode 100644 third_party/qscintilla/Python/sip/qscimacro.sip create mode 100644 third_party/qscintilla/Python/sip/qscimod5.sip create mode 100644 third_party/qscintilla/Python/sip/qscimod6.sip create mode 100644 third_party/qscintilla/Python/sip/qscimodcommon.sip create mode 100644 third_party/qscintilla/Python/sip/qsciprinter.sip create mode 100644 third_party/qscintilla/Python/sip/qsciscintilla.sip create mode 100644 third_party/qscintilla/Python/sip/qsciscintillabase.sip create mode 100644 third_party/qscintilla/Python/sip/qscistyle.sip create mode 100644 third_party/qscintilla/Python/sip/qscistyledtext.sip create mode 100644 third_party/qscintilla/designer/designer.pro create mode 100644 third_party/qscintilla/designer/qscintillaplugin.cpp create mode 100644 third_party/qscintilla/designer/qscintillaplugin.h create mode 100644 third_party/qscintilla/doc/README.doc create mode 100644 third_party/qscintilla/doc/Scintilla/Design.html create mode 100644 third_party/qscintilla/doc/Scintilla/Icons.html create mode 100644 third_party/qscintilla/doc/Scintilla/LPegLexer.html create mode 100644 third_party/qscintilla/doc/Scintilla/Lexer.txt create mode 100644 third_party/qscintilla/doc/Scintilla/Privacy.html create mode 100644 third_party/qscintilla/doc/Scintilla/SciBreak.jpg create mode 100644 third_party/qscintilla/doc/Scintilla/SciCoding.html create mode 100644 third_party/qscintilla/doc/Scintilla/SciRest.jpg create mode 100644 third_party/qscintilla/doc/Scintilla/SciTEIco.png create mode 100644 third_party/qscintilla/doc/Scintilla/SciWord.jpg create mode 100644 third_party/qscintilla/doc/Scintilla/ScintillaDoc.html create mode 100644 third_party/qscintilla/doc/Scintilla/ScintillaDownload.html create mode 100644 third_party/qscintilla/doc/Scintilla/ScintillaHistory.html create mode 100644 third_party/qscintilla/doc/Scintilla/ScintillaRelated.html create mode 100644 third_party/qscintilla/doc/Scintilla/ScintillaToDo.html create mode 100644 third_party/qscintilla/doc/Scintilla/ScintillaUsage.html create mode 100644 third_party/qscintilla/doc/Scintilla/Steps.html create mode 100644 third_party/qscintilla/doc/Scintilla/StyleMetadata.html create mode 100644 third_party/qscintilla/doc/Scintilla/annotations.png create mode 100644 third_party/qscintilla/doc/Scintilla/index.html create mode 100644 third_party/qscintilla/doc/Scintilla/styledmargin.png create mode 100644 third_party/qscintilla/doc/html/annotated.html create mode 100644 third_party/qscintilla/doc/html/bc_s.png create mode 100644 third_party/qscintilla/doc/html/bdwn.png create mode 100644 third_party/qscintilla/doc/html/classQsciAPIs-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciAPIs.html create mode 100644 third_party/qscintilla/doc/html/classQsciAbstractAPIs-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciAbstractAPIs.html create mode 100644 third_party/qscintilla/doc/html/classQsciCommand-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciCommand.html create mode 100644 third_party/qscintilla/doc/html/classQsciCommandSet-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciCommandSet.html create mode 100644 third_party/qscintilla/doc/html/classQsciDocument-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciDocument.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexer-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexer.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerAVS-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerAVS.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerAsm-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerAsm.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerBash-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerBash.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerBatch-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerBatch.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCMake-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCMake.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCPP-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCPP.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCSS-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCSS.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCSharp-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCSharp.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCoffeeScript-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCoffeeScript.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCustom-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerCustom.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerD-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerD.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerDiff-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerDiff.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerEDIFACT-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerEDIFACT.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerFortran-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerFortran.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerFortran77-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerFortran77.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerHTML-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerHTML.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerHex-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerHex.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerIDL-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerIDL.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerIntelHex-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerIntelHex.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerJSON-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerJSON.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerJava-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerJava.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerJavaScript-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerJavaScript.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerLua-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerLua.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMASM-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMASM.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMakefile-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMakefile.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMarkdown-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMarkdown.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMatlab-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerMatlab.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerNASM-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerNASM.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerOctave-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerOctave.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPO-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPO.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPOV-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPOV.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPascal-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPascal.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPerl-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPerl.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPostScript-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPostScript.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerProperties-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerProperties.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPython-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerPython.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerRuby-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerRuby.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerSQL-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerSQL.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerSRec-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerSRec.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerSpice-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerSpice.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerTCL-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerTCL.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerTeX-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerTeX.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerTekHex-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerTekHex.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerVHDL-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerVHDL.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerVerilog-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerVerilog.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerXML-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerXML.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerYAML-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciLexerYAML.html create mode 100644 third_party/qscintilla/doc/html/classQsciMacro-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciMacro.html create mode 100644 third_party/qscintilla/doc/html/classQsciPrinter-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciPrinter.html create mode 100644 third_party/qscintilla/doc/html/classQsciScintilla-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciScintilla.html create mode 100644 third_party/qscintilla/doc/html/classQsciScintillaBase-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciScintillaBase.html create mode 100644 third_party/qscintilla/doc/html/classQsciStyle-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciStyle.html create mode 100644 third_party/qscintilla/doc/html/classQsciStyledText-members.html create mode 100644 third_party/qscintilla/doc/html/classQsciStyledText.html create mode 100644 third_party/qscintilla/doc/html/classes.html create mode 100644 third_party/qscintilla/doc/html/closed.png create mode 100644 third_party/qscintilla/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html create mode 100644 third_party/qscintilla/doc/html/dir_e7e7b0b6fe362def31d601fa026bbeed.html create mode 100644 third_party/qscintilla/doc/html/doc.png create mode 100644 third_party/qscintilla/doc/html/doxygen.css create mode 100644 third_party/qscintilla/doc/html/doxygen.svg create mode 100644 third_party/qscintilla/doc/html/dynsections.js create mode 100644 third_party/qscintilla/doc/html/folderclosed.png create mode 100644 third_party/qscintilla/doc/html/folderopen.png create mode 100644 third_party/qscintilla/doc/html/functions.html create mode 100644 third_party/qscintilla/doc/html/functions_b.html create mode 100644 third_party/qscintilla/doc/html/functions_c.html create mode 100644 third_party/qscintilla/doc/html/functions_d.html create mode 100644 third_party/qscintilla/doc/html/functions_e.html create mode 100644 third_party/qscintilla/doc/html/functions_enum.html create mode 100644 third_party/qscintilla/doc/html/functions_eval.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_b.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_c.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_d.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_e.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_f.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_g.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_h.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_i.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_j.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_k.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_l.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_m.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_n.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_o.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_p.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_q.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_r.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_s.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_t.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_u.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_v.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_w.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_x.html create mode 100644 third_party/qscintilla/doc/html/functions_eval_z.html create mode 100644 third_party/qscintilla/doc/html/functions_f.html create mode 100644 third_party/qscintilla/doc/html/functions_func.html create mode 100644 third_party/qscintilla/doc/html/functions_func_b.html create mode 100644 third_party/qscintilla/doc/html/functions_func_c.html create mode 100644 third_party/qscintilla/doc/html/functions_func_d.html create mode 100644 third_party/qscintilla/doc/html/functions_func_e.html create mode 100644 third_party/qscintilla/doc/html/functions_func_f.html create mode 100644 third_party/qscintilla/doc/html/functions_func_g.html create mode 100644 third_party/qscintilla/doc/html/functions_func_h.html create mode 100644 third_party/qscintilla/doc/html/functions_func_i.html create mode 100644 third_party/qscintilla/doc/html/functions_func_k.html create mode 100644 third_party/qscintilla/doc/html/functions_func_l.html create mode 100644 third_party/qscintilla/doc/html/functions_func_m.html create mode 100644 third_party/qscintilla/doc/html/functions_func_o.html create mode 100644 third_party/qscintilla/doc/html/functions_func_p.html create mode 100644 third_party/qscintilla/doc/html/functions_func_q.html create mode 100644 third_party/qscintilla/doc/html/functions_func_r.html create mode 100644 third_party/qscintilla/doc/html/functions_func_s.html create mode 100644 third_party/qscintilla/doc/html/functions_func_t.html create mode 100644 third_party/qscintilla/doc/html/functions_func_u.html create mode 100644 third_party/qscintilla/doc/html/functions_func_v.html create mode 100644 third_party/qscintilla/doc/html/functions_func_w.html create mode 100644 third_party/qscintilla/doc/html/functions_func_z.html create mode 100644 third_party/qscintilla/doc/html/functions_func_~.html create mode 100644 third_party/qscintilla/doc/html/functions_g.html create mode 100644 third_party/qscintilla/doc/html/functions_h.html create mode 100644 third_party/qscintilla/doc/html/functions_i.html create mode 100644 third_party/qscintilla/doc/html/functions_j.html create mode 100644 third_party/qscintilla/doc/html/functions_k.html create mode 100644 third_party/qscintilla/doc/html/functions_l.html create mode 100644 third_party/qscintilla/doc/html/functions_m.html create mode 100644 third_party/qscintilla/doc/html/functions_n.html create mode 100644 third_party/qscintilla/doc/html/functions_o.html create mode 100644 third_party/qscintilla/doc/html/functions_p.html create mode 100644 third_party/qscintilla/doc/html/functions_q.html create mode 100644 third_party/qscintilla/doc/html/functions_r.html create mode 100644 third_party/qscintilla/doc/html/functions_s.html create mode 100644 third_party/qscintilla/doc/html/functions_t.html create mode 100644 third_party/qscintilla/doc/html/functions_u.html create mode 100644 third_party/qscintilla/doc/html/functions_v.html create mode 100644 third_party/qscintilla/doc/html/functions_w.html create mode 100644 third_party/qscintilla/doc/html/functions_x.html create mode 100644 third_party/qscintilla/doc/html/functions_z.html create mode 100644 third_party/qscintilla/doc/html/functions_~.html create mode 100644 third_party/qscintilla/doc/html/hierarchy.html create mode 100644 third_party/qscintilla/doc/html/index.html create mode 100644 third_party/qscintilla/doc/html/jquery.js create mode 100644 third_party/qscintilla/doc/html/menu.js create mode 100644 third_party/qscintilla/doc/html/menudata.js create mode 100644 third_party/qscintilla/doc/html/nav_f.png create mode 100644 third_party/qscintilla/doc/html/nav_g.png create mode 100644 third_party/qscintilla/doc/html/nav_h.png create mode 100644 third_party/qscintilla/doc/html/open.png create mode 100644 third_party/qscintilla/doc/html/splitbar.png create mode 100644 third_party/qscintilla/doc/html/sync_off.png create mode 100644 third_party/qscintilla/doc/html/sync_on.png create mode 100644 third_party/qscintilla/doc/html/tab_a.png create mode 100644 third_party/qscintilla/doc/html/tab_b.png create mode 100644 third_party/qscintilla/doc/html/tab_h.png create mode 100644 third_party/qscintilla/doc/html/tab_s.png create mode 100644 third_party/qscintilla/doc/html/tabs.css create mode 100644 third_party/qscintilla/doc/qscintilla.dxy create mode 100644 third_party/qscintilla/example/application.pro create mode 100644 third_party/qscintilla/example/application.qrc create mode 100644 third_party/qscintilla/example/images/copy.png create mode 100644 third_party/qscintilla/example/images/cut.png create mode 100644 third_party/qscintilla/example/images/new.png create mode 100644 third_party/qscintilla/example/images/open.png create mode 100644 third_party/qscintilla/example/images/paste.png create mode 100644 third_party/qscintilla/example/images/save.png create mode 100644 third_party/qscintilla/example/main.cpp create mode 100644 third_party/qscintilla/example/mainwindow.cpp create mode 100644 third_party/qscintilla/example/mainwindow.h create mode 100644 third_party/qscintilla/qsci/api/python/Python-2.4.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-2.5.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-2.6.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-2.7.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.1.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.10.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.11.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.2.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.3.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.4.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.5.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.6.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.7.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.8.api create mode 100644 third_party/qscintilla/qsci/api/python/Python-3.9.api create mode 100644 third_party/qscintilla/scintilla/include/ILexer.h create mode 100644 third_party/qscintilla/scintilla/include/ILoader.h create mode 100644 third_party/qscintilla/scintilla/include/License.txt create mode 100644 third_party/qscintilla/scintilla/include/Platform.h create mode 100644 third_party/qscintilla/scintilla/include/SciLexer.h create mode 100644 third_party/qscintilla/scintilla/include/Sci_Position.h create mode 100644 third_party/qscintilla/scintilla/include/Scintilla.h create mode 100644 third_party/qscintilla/scintilla/include/Scintilla.iface create mode 100644 third_party/qscintilla/scintilla/include/ScintillaWidget.h create mode 100644 third_party/qscintilla/scintilla/lexers/LexA68k.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAPDL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexASY.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAU3.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAVE.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAVS.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAbaqus.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAda.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAsm.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexAsn1.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexBaan.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexBash.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexBasic.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexBatch.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexBibTeX.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexBullant.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCLW.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCOBOL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCPP.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCSS.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCaml.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCmake.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCoffeeScript.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexConf.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCrontab.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexCsound.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexD.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexDMAP.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexDMIS.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexDiff.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexECL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexEDIFACT.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexEScript.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexEiffel.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexErlang.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexErrorList.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexFlagship.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexForth.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexFortran.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexGAP.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexGui4Cli.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexHTML.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexHaskell.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexHex.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexIndent.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexInno.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexJSON.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexKVIrc.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexKix.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexLPeg.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexLaTeX.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexLisp.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexLout.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexLua.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMMIXAL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMPT.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMSSQL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMagik.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMake.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMarkdown.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMatlab.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMaxima.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMetapost.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexModula.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexMySQL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexNimrod.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexNsis.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexNull.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexOScript.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexOpal.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPB.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPLM.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPO.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPOV.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPS.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPascal.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPerl.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPowerPro.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPowerShell.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexProgress.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexProps.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexPython.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexR.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexRebol.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexRegistry.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexRuby.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexRust.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSAS.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSML.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSQL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSTTXT.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexScriptol.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSmalltalk.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSorcus.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSpecman.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexSpice.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexStata.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexTACL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexTADS3.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexTAL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexTCL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexTCMD.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexTeX.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexTxt2tags.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexVB.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexVHDL.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexVerilog.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexVisualProlog.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/LexYAML.cpp create mode 100644 third_party/qscintilla/scintilla/lexers/License.txt create mode 100644 third_party/qscintilla/scintilla/lexlib/Accessor.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/Accessor.h create mode 100644 third_party/qscintilla/scintilla/lexlib/CharacterCategory.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/CharacterCategory.h create mode 100644 third_party/qscintilla/scintilla/lexlib/CharacterSet.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/CharacterSet.h create mode 100644 third_party/qscintilla/scintilla/lexlib/DefaultLexer.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/DefaultLexer.h create mode 100644 third_party/qscintilla/scintilla/lexlib/LexAccessor.h create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerBase.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerBase.h create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerModule.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerModule.h create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerNoExceptions.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerNoExceptions.h create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerSimple.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/LexerSimple.h create mode 100644 third_party/qscintilla/scintilla/lexlib/License.txt create mode 100644 third_party/qscintilla/scintilla/lexlib/OptionSet.h create mode 100644 third_party/qscintilla/scintilla/lexlib/PropSetSimple.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/PropSetSimple.h create mode 100644 third_party/qscintilla/scintilla/lexlib/SparseState.h create mode 100644 third_party/qscintilla/scintilla/lexlib/StringCopy.h create mode 100644 third_party/qscintilla/scintilla/lexlib/StyleContext.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/StyleContext.h create mode 100644 third_party/qscintilla/scintilla/lexlib/SubStyles.h create mode 100644 third_party/qscintilla/scintilla/lexlib/WordList.cpp create mode 100644 third_party/qscintilla/scintilla/lexlib/WordList.h create mode 100644 third_party/qscintilla/scintilla/src/AutoComplete.cpp create mode 100644 third_party/qscintilla/scintilla/src/AutoComplete.h create mode 100644 third_party/qscintilla/scintilla/src/CallTip.cpp create mode 100644 third_party/qscintilla/scintilla/src/CallTip.h create mode 100644 third_party/qscintilla/scintilla/src/CaseConvert.cpp create mode 100644 third_party/qscintilla/scintilla/src/CaseConvert.h create mode 100644 third_party/qscintilla/scintilla/src/CaseFolder.cpp create mode 100644 third_party/qscintilla/scintilla/src/CaseFolder.h create mode 100644 third_party/qscintilla/scintilla/src/Catalogue.cpp create mode 100644 third_party/qscintilla/scintilla/src/Catalogue.h create mode 100644 third_party/qscintilla/scintilla/src/CellBuffer.cpp create mode 100644 third_party/qscintilla/scintilla/src/CellBuffer.h create mode 100644 third_party/qscintilla/scintilla/src/CharClassify.cpp create mode 100644 third_party/qscintilla/scintilla/src/CharClassify.h create mode 100644 third_party/qscintilla/scintilla/src/ContractionState.cpp create mode 100644 third_party/qscintilla/scintilla/src/ContractionState.h create mode 100644 third_party/qscintilla/scintilla/src/DBCS.cpp create mode 100644 third_party/qscintilla/scintilla/src/DBCS.h create mode 100644 third_party/qscintilla/scintilla/src/Decoration.cpp create mode 100644 third_party/qscintilla/scintilla/src/Decoration.h create mode 100644 third_party/qscintilla/scintilla/src/Document.cpp create mode 100644 third_party/qscintilla/scintilla/src/Document.h create mode 100644 third_party/qscintilla/scintilla/src/EditModel.cpp create mode 100644 third_party/qscintilla/scintilla/src/EditModel.h create mode 100644 third_party/qscintilla/scintilla/src/EditView.cpp create mode 100644 third_party/qscintilla/scintilla/src/EditView.h create mode 100644 third_party/qscintilla/scintilla/src/Editor.cpp create mode 100644 third_party/qscintilla/scintilla/src/Editor.h create mode 100644 third_party/qscintilla/scintilla/src/ElapsedPeriod.h create mode 100644 third_party/qscintilla/scintilla/src/ExternalLexer.cpp create mode 100644 third_party/qscintilla/scintilla/src/ExternalLexer.h create mode 100644 third_party/qscintilla/scintilla/src/FontQuality.h create mode 100644 third_party/qscintilla/scintilla/src/Indicator.cpp create mode 100644 third_party/qscintilla/scintilla/src/Indicator.h create mode 100644 third_party/qscintilla/scintilla/src/IntegerRectangle.h create mode 100644 third_party/qscintilla/scintilla/src/KeyMap.cpp create mode 100644 third_party/qscintilla/scintilla/src/KeyMap.h create mode 100644 third_party/qscintilla/scintilla/src/License.txt create mode 100644 third_party/qscintilla/scintilla/src/LineMarker.cpp create mode 100644 third_party/qscintilla/scintilla/src/LineMarker.h create mode 100644 third_party/qscintilla/scintilla/src/MarginView.cpp create mode 100644 third_party/qscintilla/scintilla/src/MarginView.h create mode 100644 third_party/qscintilla/scintilla/src/Partitioning.h create mode 100644 third_party/qscintilla/scintilla/src/PerLine.cpp create mode 100644 third_party/qscintilla/scintilla/src/PerLine.h create mode 100644 third_party/qscintilla/scintilla/src/Position.h create mode 100644 third_party/qscintilla/scintilla/src/PositionCache.cpp create mode 100644 third_party/qscintilla/scintilla/src/PositionCache.h create mode 100644 third_party/qscintilla/scintilla/src/RESearch.cpp create mode 100644 third_party/qscintilla/scintilla/src/RESearch.h create mode 100644 third_party/qscintilla/scintilla/src/RunStyles.cpp create mode 100644 third_party/qscintilla/scintilla/src/RunStyles.h create mode 100644 third_party/qscintilla/scintilla/src/SciTE.properties create mode 100644 third_party/qscintilla/scintilla/src/ScintillaBase.cpp create mode 100644 third_party/qscintilla/scintilla/src/ScintillaBase.h create mode 100644 third_party/qscintilla/scintilla/src/Selection.cpp create mode 100644 third_party/qscintilla/scintilla/src/Selection.h create mode 100644 third_party/qscintilla/scintilla/src/SparseVector.h create mode 100644 third_party/qscintilla/scintilla/src/SplitVector.h create mode 100644 third_party/qscintilla/scintilla/src/Style.cpp create mode 100644 third_party/qscintilla/scintilla/src/Style.h create mode 100644 third_party/qscintilla/scintilla/src/UniConversion.cpp create mode 100644 third_party/qscintilla/scintilla/src/UniConversion.h create mode 100644 third_party/qscintilla/scintilla/src/UniqueString.h create mode 100644 third_party/qscintilla/scintilla/src/ViewStyle.cpp create mode 100644 third_party/qscintilla/scintilla/src/ViewStyle.h create mode 100644 third_party/qscintilla/scintilla/src/XPM.cpp create mode 100644 third_party/qscintilla/scintilla/src/XPM.h create mode 100644 third_party/qscintilla/src/.qmake.stash create mode 100644 third_party/qscintilla/src/InputMethod.cpp create mode 100644 third_party/qscintilla/src/ListBoxQt.cpp create mode 100644 third_party/qscintilla/src/ListBoxQt.h create mode 100644 third_party/qscintilla/src/MacPasteboardMime.cpp create mode 100644 third_party/qscintilla/src/Makefile create mode 100644 third_party/qscintilla/src/Makefile.Debug create mode 100644 third_party/qscintilla/src/Makefile.Release create mode 100644 third_party/qscintilla/src/PlatQt.cpp create mode 100644 third_party/qscintilla/src/Qsci/qsciabstractapis.h create mode 100644 third_party/qscintilla/src/Qsci/qsciapis.h create mode 100644 third_party/qscintilla/src/Qsci/qscicommand.h create mode 100644 third_party/qscintilla/src/Qsci/qscicommandset.h create mode 100644 third_party/qscintilla/src/Qsci/qscidocument.h create mode 100644 third_party/qscintilla/src/Qsci/qsciglobal.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexer.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerasm.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexeravs.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerbash.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerbatch.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexercmake.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexercoffeescript.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexercpp.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexercsharp.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexercss.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexercustom.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerd.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerdiff.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexeredifact.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerfortran.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerfortran77.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerhex.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerhtml.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexeridl.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerintelhex.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerjava.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerjavascript.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerjson.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerlua.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexermakefile.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexermarkdown.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexermasm.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexermatlab.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexernasm.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexeroctave.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerpascal.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerperl.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerpo.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerpostscript.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerpov.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerproperties.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerpython.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerruby.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerspice.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexersql.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexersrec.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexertcl.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexertekhex.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexertex.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerverilog.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexervhdl.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexerxml.h create mode 100644 third_party/qscintilla/src/Qsci/qscilexeryaml.h create mode 100644 third_party/qscintilla/src/Qsci/qscimacro.h create mode 100644 third_party/qscintilla/src/Qsci/qsciprinter.h create mode 100644 third_party/qscintilla/src/Qsci/qsciscintilla.h create mode 100644 third_party/qscintilla/src/Qsci/qsciscintillabase.h create mode 100644 third_party/qscintilla/src/Qsci/qscistyle.h create mode 100644 third_party/qscintilla/src/Qsci/qscistyledtext.h create mode 100644 third_party/qscintilla/src/SciAccessibility.cpp create mode 100644 third_party/qscintilla/src/SciAccessibility.h create mode 100644 third_party/qscintilla/src/SciClasses.cpp create mode 100644 third_party/qscintilla/src/SciClasses.h create mode 100644 third_party/qscintilla/src/ScintillaQt.cpp create mode 100644 third_party/qscintilla/src/ScintillaQt.h create mode 100644 third_party/qscintilla/src/debug/object_script.qscintilla2_qt6d.Debug create mode 100644 third_party/qscintilla/src/features/qscintilla2.prf create mode 100644 third_party/qscintilla/src/features_staticlib/qscintilla2.prf create mode 100644 third_party/qscintilla/src/qsciabstractapis.cpp create mode 100644 third_party/qscintilla/src/qsciapis.cpp create mode 100644 third_party/qscintilla/src/qscicommand.cpp create mode 100644 third_party/qscintilla/src/qscicommandset.cpp create mode 100644 third_party/qscintilla/src/qscidocument.cpp create mode 100644 third_party/qscintilla/src/qscilexer.cpp create mode 100644 third_party/qscintilla/src/qscilexerasm.cpp create mode 100644 third_party/qscintilla/src/qscilexeravs.cpp create mode 100644 third_party/qscintilla/src/qscilexerbash.cpp create mode 100644 third_party/qscintilla/src/qscilexerbatch.cpp create mode 100644 third_party/qscintilla/src/qscilexercmake.cpp create mode 100644 third_party/qscintilla/src/qscilexercoffeescript.cpp create mode 100644 third_party/qscintilla/src/qscilexercpp.cpp create mode 100644 third_party/qscintilla/src/qscilexercsharp.cpp create mode 100644 third_party/qscintilla/src/qscilexercss.cpp create mode 100644 third_party/qscintilla/src/qscilexercustom.cpp create mode 100644 third_party/qscintilla/src/qscilexerd.cpp create mode 100644 third_party/qscintilla/src/qscilexerdiff.cpp create mode 100644 third_party/qscintilla/src/qscilexeredifact.cpp create mode 100644 third_party/qscintilla/src/qscilexerfortran.cpp create mode 100644 third_party/qscintilla/src/qscilexerfortran77.cpp create mode 100644 third_party/qscintilla/src/qscilexerhex.cpp create mode 100644 third_party/qscintilla/src/qscilexerhtml.cpp create mode 100644 third_party/qscintilla/src/qscilexeridl.cpp create mode 100644 third_party/qscintilla/src/qscilexerintelhex.cpp create mode 100644 third_party/qscintilla/src/qscilexerjava.cpp create mode 100644 third_party/qscintilla/src/qscilexerjavascript.cpp create mode 100644 third_party/qscintilla/src/qscilexerjson.cpp create mode 100644 third_party/qscintilla/src/qscilexerlua.cpp create mode 100644 third_party/qscintilla/src/qscilexermakefile.cpp create mode 100644 third_party/qscintilla/src/qscilexermarkdown.cpp create mode 100644 third_party/qscintilla/src/qscilexermasm.cpp create mode 100644 third_party/qscintilla/src/qscilexermatlab.cpp create mode 100644 third_party/qscintilla/src/qscilexernasm.cpp create mode 100644 third_party/qscintilla/src/qscilexeroctave.cpp create mode 100644 third_party/qscintilla/src/qscilexerpascal.cpp create mode 100644 third_party/qscintilla/src/qscilexerperl.cpp create mode 100644 third_party/qscintilla/src/qscilexerpo.cpp create mode 100644 third_party/qscintilla/src/qscilexerpostscript.cpp create mode 100644 third_party/qscintilla/src/qscilexerpov.cpp create mode 100644 third_party/qscintilla/src/qscilexerproperties.cpp create mode 100644 third_party/qscintilla/src/qscilexerpython.cpp create mode 100644 third_party/qscintilla/src/qscilexerruby.cpp create mode 100644 third_party/qscintilla/src/qscilexerspice.cpp create mode 100644 third_party/qscintilla/src/qscilexersql.cpp create mode 100644 third_party/qscintilla/src/qscilexersrec.cpp create mode 100644 third_party/qscintilla/src/qscilexertcl.cpp create mode 100644 third_party/qscintilla/src/qscilexertekhex.cpp create mode 100644 third_party/qscintilla/src/qscilexertex.cpp create mode 100644 third_party/qscintilla/src/qscilexerverilog.cpp create mode 100644 third_party/qscintilla/src/qscilexervhdl.cpp create mode 100644 third_party/qscintilla/src/qscilexerxml.cpp create mode 100644 third_party/qscintilla/src/qscilexeryaml.cpp create mode 100644 third_party/qscintilla/src/qscimacro.cpp create mode 100644 third_party/qscintilla/src/qscintilla.pro create mode 100644 third_party/qscintilla/src/qscintilla_cs.qm create mode 100644 third_party/qscintilla/src/qscintilla_cs.ts create mode 100644 third_party/qscintilla/src/qscintilla_de.qm create mode 100644 third_party/qscintilla/src/qscintilla_de.ts create mode 100644 third_party/qscintilla/src/qscintilla_es.qm create mode 100644 third_party/qscintilla/src/qscintilla_es.ts create mode 100644 third_party/qscintilla/src/qscintilla_fr.qm create mode 100644 third_party/qscintilla/src/qscintilla_fr.ts create mode 100644 third_party/qscintilla/src/qscintilla_pt_br.qm create mode 100644 third_party/qscintilla/src/qscintilla_pt_br.ts create mode 100644 third_party/qscintilla/src/qsciprinter.cpp create mode 100644 third_party/qscintilla/src/qsciscintilla.cpp create mode 100644 third_party/qscintilla/src/qsciscintillabase.cpp create mode 100644 third_party/qscintilla/src/qscistyle.cpp create mode 100644 third_party/qscintilla/src/qscistyledtext.cpp create mode 100644 third_party/qscintilla/src/release/moc_SciClasses.cpp create mode 100644 third_party/qscintilla/src/release/moc_ScintillaQt.cpp create mode 100644 third_party/qscintilla/src/release/moc_predefs.h create mode 100644 third_party/qscintilla/src/release/moc_qsciabstractapis.cpp create mode 100644 third_party/qscintilla/src/release/moc_qsciapis.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexer.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerasm.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexeravs.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerbash.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerbatch.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexercmake.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexercoffeescript.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexercpp.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexercsharp.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexercss.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexercustom.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerd.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerdiff.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexeredifact.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerfortran.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerfortran77.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerhex.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerhtml.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexeridl.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerintelhex.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerjava.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerjavascript.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerjson.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerlua.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexermakefile.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexermarkdown.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexermasm.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexermatlab.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexernasm.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexeroctave.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerpascal.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerperl.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerpo.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerpostscript.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerpov.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerproperties.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerpython.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerruby.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerspice.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexersql.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexersrec.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexertcl.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexertekhex.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexertex.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerverilog.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexervhdl.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexerxml.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscilexeryaml.cpp create mode 100644 third_party/qscintilla/src/release/moc_qscimacro.cpp create mode 100644 third_party/qscintilla/src/release/moc_qsciscintilla.cpp create mode 100644 third_party/qscintilla/src/release/moc_qsciscintillabase.cpp create mode 100644 third_party/qscintilla/src/release/object_script.qscintilla2_qt6.Release diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ef40a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +build/ +*.exe +*.dll +*.obj +*.o +*.a +*.lib +*.pdb +*.ilk +*.user +*.suo +.vs/ +CMakeUserPresets.json diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..6499c1d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,93 @@ +cmake_minimum_required(VERSION 3.20) +project(ReclassX VERSION 0.1 LANGUAGES CXX) + +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) + +find_package(Qt6 REQUIRED COMPONENTS Widgets PrintSupport) + +list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") +find_package(QScintilla REQUIRED) + +add_executable(ReclassX + src/main.cpp + src/editor.h + src/editor.cpp + src/controller.h + src/controller.cpp + src/compose.cpp + src/format.cpp + src/icons.qrc +) + +target_include_directories(ReclassX PRIVATE src) + +target_link_libraries(ReclassX PRIVATE + Qt6::Widgets + Qt6::PrintSupport + QScintilla::QScintilla + dbghelp +) + +add_custom_target(screenshot + COMMAND ReclassX --screenshot ${CMAKE_BINARY_DIR}/screenshot.png + DEPENDS ReclassX + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + COMMENT "Capturing UI screenshot with class open..." +) + +set(_combine_script "${CMAKE_BINARY_DIR}/combine_sources.cmake") +file(WRITE ${_combine_script} " +set(_out \"${CMAKE_BINARY_DIR}/h_cpp_combined.txt\") +file(WRITE \${_out} \"\") +foreach(_f + \"${CMAKE_SOURCE_DIR}/src/core.h\" + \"${CMAKE_SOURCE_DIR}/src/editor.h\" + \"${CMAKE_SOURCE_DIR}/src/editor.cpp\" + \"${CMAKE_SOURCE_DIR}/src/controller.h\" + \"${CMAKE_SOURCE_DIR}/src/controller.cpp\" + \"${CMAKE_SOURCE_DIR}/src/compose.cpp\" + \"${CMAKE_SOURCE_DIR}/src/format.cpp\" + \"${CMAKE_SOURCE_DIR}/src/main.cpp\") + file(READ \${_f} _content) + file(APPEND \${_out} \${_content}) + file(APPEND \${_out} \"\\n\") +endforeach() +message(STATUS \"Combined sources -> \${_out}\") +") + +add_custom_target(combined ALL + COMMAND ${CMAKE_COMMAND} -P ${_combine_script} + DEPENDS ReclassX + COMMENT "Combining all source files into h_cpp_combined.txt" +) + +include(CTest) +if(BUILD_TESTING) + find_package(Qt6 REQUIRED COMPONENTS Test) + enable_testing() + + add_executable(test_core tests/test_core.cpp src/format.cpp src/compose.cpp) + target_include_directories(test_core PRIVATE src) + target_link_libraries(test_core PRIVATE Qt6::Core Qt6::Test) + add_test(NAME test_core COMMAND test_core) + + add_executable(test_format tests/test_format.cpp src/format.cpp) + target_include_directories(test_format PRIVATE src) + target_link_libraries(test_format PRIVATE Qt6::Core Qt6::Test) + add_test(NAME test_format COMMAND test_format) + + add_executable(test_compose tests/test_compose.cpp src/compose.cpp src/format.cpp) + target_include_directories(test_compose PRIVATE src) + target_link_libraries(test_compose PRIVATE Qt6::Core Qt6::Test) + add_test(NAME test_compose COMMAND test_compose) + + add_executable(test_editor tests/test_editor.cpp src/editor.cpp src/compose.cpp src/format.cpp) + target_include_directories(test_editor PRIVATE src) + target_link_libraries(test_editor PRIVATE + Qt6::Widgets Qt6::PrintSupport Qt6::Test + QScintilla::QScintilla) + add_test(NAME test_editor COMMAND test_editor) +endif() diff --git a/cmake/FindQScintilla.cmake b/cmake/FindQScintilla.cmake new file mode 100644 index 0000000..6ea44ba --- /dev/null +++ b/cmake/FindQScintilla.cmake @@ -0,0 +1,32 @@ +set(_QSCI_ROOT "${CMAKE_SOURCE_DIR}/third_party/qscintilla") + +find_path(QScintilla_INCLUDE_DIR + NAMES Qsci/qsciscintilla.h + PATHS "${_QSCI_ROOT}/src" "${_QSCI_ROOT}/include" + NO_DEFAULT_PATH +) + +find_library(QScintilla_LIBRARY + NAMES qscintilla2_qt6 libqscintilla2_qt6 + PATHS + "${_QSCI_ROOT}/src/release" + "${_QSCI_ROOT}/src" + "${_QSCI_ROOT}/lib" + NO_DEFAULT_PATH +) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(QScintilla DEFAULT_MSG + QScintilla_LIBRARY QScintilla_INCLUDE_DIR) + +if(QScintilla_FOUND) + set(QScintilla_INCLUDE_DIRS ${QScintilla_INCLUDE_DIR}) + set(QScintilla_LIBRARIES ${QScintilla_LIBRARY}) + if(NOT TARGET QScintilla::QScintilla) + add_library(QScintilla::QScintilla STATIC IMPORTED) + set_target_properties(QScintilla::QScintilla PROPERTIES + IMPORTED_LOCATION "${QScintilla_LIBRARY}" + INTERFACE_INCLUDE_DIRECTORIES "${QScintilla_INCLUDE_DIR}" + ) + endif() +endif() diff --git a/scripts/build_qscintilla.bat b/scripts/build_qscintilla.bat new file mode 100644 index 0000000..a008742 --- /dev/null +++ b/scripts/build_qscintilla.bat @@ -0,0 +1,13 @@ +@echo off +set "PATH=C:\Qt\Tools\mingw1120_64\bin;C:\Qt\6.5.2\mingw_64\bin;%PATH%" +cd /d "E:\game_dev\util\reclass2027-main\third_party\qscintilla\src" +echo Current dir: %cd% +echo Running qmake... +"C:\Qt\6.5.2\mingw_64\bin\qmake.exe" qscintilla.pro "CONFIG+=staticlib" +echo qmake exit code: %errorlevel% +echo Running mingw32-make... +"C:\Qt\Tools\mingw1120_64\bin\mingw32-make.exe" -j8 +echo make exit code: %errorlevel% +echo Done. Checking for .a files: +dir /b *.a 2>nul +dir /b release\*.a 2>nul diff --git a/src/compose.cpp b/src/compose.cpp new file mode 100644 index 0000000..59eb063 --- /dev/null +++ b/src/compose.cpp @@ -0,0 +1,323 @@ +#include "core.h" +#include + +namespace rcx { + +namespace { + +// Scintilla fold constants (avoid including Scintilla headers in core) +constexpr int SC_FOLDLEVELBASE = 0x400; +constexpr int SC_FOLDLEVELHEADERFLAG = 0x2000; +constexpr uint64_t kGoldenRatio = 0x9E3779B97F4A7C15ULL; + +struct ComposeState { + QString text; + QVector meta; + QSet visiting; // cycle detection for struct recursion + QSet ptrVisiting; // cycle guard for pointer expansions + int currentLine = 0; + + // Precomputed for O(1) lookups + QHash> childMap; + QVector absOffsets; // indexed by node index + + void emitLine(const QString& lineText, LineMeta lm) { + if (currentLine > 0) text += '\n'; + // 3-char fold indicator column: " - " expanded, " + " collapsed, " " other + if (lm.foldHead) + text += lm.foldCollapsed ? QStringLiteral(" + ") : QStringLiteral(" - "); + else + text += QStringLiteral(" "); + text += lineText; + meta.append(lm); + currentLine++; + } +}; + +int computeFoldLevel(int depth, bool isHead) { + int level = SC_FOLDLEVELBASE + depth; + if (isHead) level |= SC_FOLDLEVELHEADERFLAG; + return level; +} + +uint32_t computeMarkers(const Node& node, const Provider& prov, + uint64_t addr, bool isCont, int depth) { + uint32_t mask = 0; + if (isCont) mask |= (1u << M_CONT); + if (node.kind == NodeKind::Padding) mask |= (1u << M_PAD); + + if (prov.isValid()) { + int sz = node.byteSize(); + if (sz > 0 && !prov.isReadable(addr, sz)) { + mask |= (1u << M_ERR); + } else if (sz > 0) { + if (node.kind == NodeKind::Pointer32 && prov.readU32(addr) == 0) + mask |= (1u << M_PTR0); + if (node.kind == NodeKind::Pointer64 && prov.readU64(addr) == 0) + mask |= (1u << M_PTR0); + } + } + return mask; +} + +static inline uint64_t ptrToProviderAddr(const NodeTree& tree, uint64_t ptr) { + if (tree.baseAddress && ptr >= tree.baseAddress) return ptr - tree.baseAddress; + return ptr; +} + +static int64_t relOffsetFromRoot(const NodeTree& tree, int idx, uint64_t rootId) { + int64_t total = 0; + QSet visited; + int cur = idx; + while (cur >= 0 && cur < tree.nodes.size()) { + if (visited.contains(cur)) break; + visited.insert(cur); + const Node& n = tree.nodes[cur]; + if (n.id == rootId) break; + total += n.offset; + if (n.parentId == 0) break; + cur = tree.indexOfId(n.parentId); + } + return total; +} + +static inline uint64_t resolveAddr(const ComposeState& state, + const NodeTree& tree, + int nodeIdx, + uint64_t base, uint64_t rootId) { + if (rootId != 0) + return base + relOffsetFromRoot(tree, nodeIdx, rootId); + return state.absOffsets[nodeIdx]; +} + +void composeLeaf(ComposeState& state, const NodeTree& tree, + const Provider& prov, int nodeIdx, + int depth, uint64_t absAddr) { + const Node& node = tree.nodes[nodeIdx]; + + // Line count: padding wraps at 8 bytes per line + int numLines; + if (node.kind == NodeKind::Padding) { + int totalBytes = qMax(1, node.arrayLen); + numLines = (totalBytes + 7) / 8; + } else { + numLines = linesForKind(node.kind); + } + + for (int sub = 0; sub < numLines; sub++) { + bool isCont = (sub > 0); + + LineMeta lm; + lm.nodeIdx = nodeIdx; + lm.nodeId = node.id; + lm.subLine = sub; + lm.depth = depth; + lm.isContinuation = isCont; + lm.lineKind = isCont ? LineKind::Continuation : LineKind::Field; + lm.nodeKind = node.kind; + lm.offsetText = fmt::fmtOffsetMargin(absAddr, isCont); + lm.markerMask = computeMarkers(node, prov, absAddr, isCont, depth); + lm.foldLevel = computeFoldLevel(depth, false); + + QString lineText = fmt::fmtNodeLine(node, prov, absAddr, depth, sub); + state.emitLine(lineText, lm); + } +} + +// Forward declarations (base/rootId default to 0 = use precomputed offsets) +void composeNode(ComposeState& state, const NodeTree& tree, + const Provider& prov, int nodeIdx, int depth, + uint64_t base = 0, uint64_t rootId = 0); +void composeParent(ComposeState& state, const NodeTree& tree, + const Provider& prov, int nodeIdx, int depth, + uint64_t base = 0, uint64_t rootId = 0); + +void composeParent(ComposeState& state, const NodeTree& tree, + const Provider& prov, int nodeIdx, int depth, + uint64_t base, uint64_t rootId) { + const Node& node = tree.nodes[nodeIdx]; + uint64_t absAddr = resolveAddr(state, tree, nodeIdx, base, rootId); + + // Cycle detection + if (state.visiting.contains(node.id)) { + LineMeta lm; + lm.nodeIdx = nodeIdx; + lm.nodeId = node.id; + lm.depth = depth; + lm.lineKind = LineKind::Field; + lm.offsetText = fmt::fmtOffsetMargin(absAddr, false); + lm.nodeKind = node.kind; + lm.markerMask = (1u << M_CYCLE) | (1u << M_ERR); + lm.foldLevel = computeFoldLevel(depth, false); + state.emitLine(fmt::indent(depth) + QStringLiteral("/* CYCLE: ") + + node.name + QStringLiteral(" */"), lm); + return; + } + state.visiting.insert(node.id); + + // Header line + { + LineMeta lm; + lm.nodeIdx = nodeIdx; + lm.nodeId = node.id; + lm.depth = depth; + lm.lineKind = LineKind::Header; + lm.offsetText = fmt::fmtOffsetMargin(absAddr, false); + lm.nodeKind = node.kind; + lm.foldHead = true; + lm.foldCollapsed = node.collapsed; + lm.foldLevel = computeFoldLevel(depth, true); + lm.markerMask = (1u << M_STRUCT_BG); + state.emitLine(fmt::fmtStructHeader(node, depth), lm); + } + + if (!node.collapsed) { + QVector children = state.childMap.value(node.id); + std::sort(children.begin(), children.end(), [&](int a, int b) { + return tree.nodes[a].offset < tree.nodes[b].offset; + }); + + for (int childIdx : children) { + composeNode(state, tree, prov, childIdx, depth + 1, base, rootId); + } + } + + // Footer line + { + LineMeta lm; + lm.nodeIdx = nodeIdx; + lm.nodeId = node.id; + lm.depth = depth; + lm.lineKind = LineKind::Footer; + lm.nodeKind = node.kind; + lm.offsetText = QStringLiteral(" ---"); + lm.foldLevel = computeFoldLevel(depth, false); + lm.markerMask = (1u << M_STRUCT_BG); + int sz = tree.structSpan(node.id, &state.childMap); + state.emitLine(fmt::fmtStructFooter(node, depth, sz), lm); + } + + state.visiting.remove(node.id); +} + +void composeNode(ComposeState& state, const NodeTree& tree, + const Provider& prov, int nodeIdx, int depth, + uint64_t base, uint64_t rootId) { + const Node& node = tree.nodes[nodeIdx]; + uint64_t absAddr = resolveAddr(state, tree, nodeIdx, base, rootId); + + // Pointer deref expansion + if ((node.kind == NodeKind::Pointer32 || node.kind == NodeKind::Pointer64) + && node.refId != 0) { + { + LineMeta lm; + lm.nodeIdx = nodeIdx; + lm.nodeId = node.id; + lm.depth = depth; + lm.lineKind = LineKind::Field; + lm.offsetText = fmt::fmtOffsetMargin(absAddr, false); + lm.nodeKind = node.kind; + lm.foldHead = true; + lm.foldCollapsed = node.collapsed; + lm.foldLevel = computeFoldLevel(depth, true); + lm.markerMask = computeMarkers(node, prov, absAddr, false, depth); + state.emitLine(fmt::fmtNodeLine(node, prov, absAddr, depth, 0), lm); + } + if (!node.collapsed) { + int sz = node.byteSize(); + if (prov.isValid() && sz > 0 && prov.isReadable(absAddr, sz)) { + uint64_t ptrVal = (node.kind == NodeKind::Pointer32) + ? (uint64_t)prov.readU32(absAddr) : prov.readU64(absAddr); + if (ptrVal != 0) { + uint64_t pBase = ptrToProviderAddr(tree, ptrVal); + qulonglong key = pBase ^ (node.refId * kGoldenRatio); + if (!state.ptrVisiting.contains(key)) { + state.ptrVisiting.insert(key); + int refIdx = tree.indexOfId(node.refId); + if (refIdx >= 0) { + const Node& ref = tree.nodes[refIdx]; + if (ref.kind == NodeKind::Struct || ref.kind == NodeKind::Array) + composeParent(state, tree, prov, refIdx, + depth + 1, pBase, ref.id); + } + state.ptrVisiting.remove(key); + } + } + } + } + return; + } + + if (node.kind == NodeKind::Struct || node.kind == NodeKind::Array) { + composeParent(state, tree, prov, nodeIdx, depth, base, rootId); + } else { + composeLeaf(state, tree, prov, nodeIdx, depth, absAddr); + } +} + +} // anonymous namespace + +ComposeResult compose(const NodeTree& tree, const Provider& prov) { + ComposeState state; + + // Precompute parent→children map + for (int i = 0; i < tree.nodes.size(); i++) + state.childMap[tree.nodes[i].parentId].append(i); + + // Precompute absolute offsets + state.absOffsets.resize(tree.nodes.size()); + for (int i = 0; i < tree.nodes.size(); i++) + state.absOffsets[i] = tree.computeOffset(i); + + QVector roots = state.childMap.value(0); + std::sort(roots.begin(), roots.end(), [&](int a, int b) { + return tree.nodes[a].offset < tree.nodes[b].offset; + }); + + for (int idx : roots) { + composeNode(state, tree, prov, idx, 0); + } + + return { state.text, state.meta }; +} + +QSet NodeTree::normalizePreferAncestors(const QSet& ids) const { + QSet result; + for (uint64_t id : ids) { + int idx = indexOfId(id); + if (idx < 0) continue; + bool ancestorSelected = false; + uint64_t cur = nodes[idx].parentId; + QSet visited; + while (cur != 0 && !visited.contains(cur)) { + visited.insert(cur); + if (ids.contains(cur)) { ancestorSelected = true; break; } + int pi = indexOfId(cur); + if (pi < 0) break; + cur = nodes[pi].parentId; + } + if (!ancestorSelected) + result.insert(id); + } + return result; +} + +QSet NodeTree::normalizePreferDescendants(const QSet& ids) const { + QSet result; + for (uint64_t id : ids) { + QVector sub = subtreeIndices(id); + bool hasSelectedDescendant = false; + for (int si : sub) { + uint64_t sid = nodes[si].id; + if (sid != id && ids.contains(sid)) { + hasSelectedDescendant = true; + break; + } + } + if (!hasSelectedDescendant) + result.insert(id); + } + return result; +} + +} // namespace rcx diff --git a/src/controller.cpp b/src/controller.cpp new file mode 100644 index 0000000..75fdfd6 --- /dev/null +++ b/src/controller.cpp @@ -0,0 +1,565 @@ +#include "controller.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace rcx { + +// ── RcxDocument ── + +RcxDocument::RcxDocument(QObject* parent) + : QObject(parent) + , provider(std::make_unique()) +{ + connect(&undoStack, &QUndoStack::cleanChanged, this, [this](bool clean) { + modified = !clean; + }); +} + +ComposeResult RcxDocument::compose() const { + return rcx::compose(tree, *provider); +} + +bool RcxDocument::save(const QString& path) { + QJsonObject json = tree.toJson(); + QJsonDocument jdoc(json); + QFile file(path); + if (!file.open(QIODevice::WriteOnly)) + return false; + file.write(jdoc.toJson(QJsonDocument::Indented)); + filePath = path; + undoStack.setClean(); + modified = false; + return true; +} + +bool RcxDocument::load(const QString& path) { + QFile file(path); + if (!file.open(QIODevice::ReadOnly)) + return false; + undoStack.clear(); + QJsonDocument jdoc = QJsonDocument::fromJson(file.readAll()); + tree = NodeTree::fromJson(jdoc.object()); + filePath = path; + modified = false; + emit documentChanged(); + return true; +} + +void RcxDocument::loadData(const QString& binaryPath) { + QFile file(binaryPath); + if (!file.open(QIODevice::ReadOnly)) + return; + undoStack.clear(); + provider = std::make_unique(file.readAll()); + tree.baseAddress = 0; + emit documentChanged(); +} + +void RcxDocument::loadData(const QByteArray& data) { + undoStack.clear(); + provider = std::make_unique(data); + tree.baseAddress = 0; + emit documentChanged(); +} + +// ── RcxCommand ── + +RcxCommand::RcxCommand(RcxController* ctrl, Command cmd) + : m_ctrl(ctrl), m_cmd(cmd) {} + +void RcxCommand::undo() { m_ctrl->applyCommand(m_cmd, true); } +void RcxCommand::redo() { m_ctrl->applyCommand(m_cmd, false); } + +// ── RcxController ── + +RcxController::RcxController(RcxDocument* doc, QWidget* parent) + : QObject(parent), m_doc(doc) +{ + connect(m_doc, &RcxDocument::documentChanged, this, &RcxController::refresh); +} + +RcxEditor* RcxController::primaryEditor() const { + return m_editors.isEmpty() ? nullptr : m_editors.first(); +} + +RcxEditor* RcxController::addSplitEditor(QSplitter* splitter) { + auto* editor = new RcxEditor(splitter); + splitter->addWidget(editor); + m_editors.append(editor); + connectEditor(editor); + + if (!m_lastResult.text.isEmpty()) { + editor->applyDocument(m_lastResult); + } + return editor; +} + +void RcxController::removeSplitEditor(RcxEditor* editor) { + m_editors.removeOne(editor); + editor->deleteLater(); +} + +void RcxController::connectEditor(RcxEditor* editor) { + connect(editor, &RcxEditor::marginClicked, + this, [this, editor](int margin, int line, Qt::KeyboardModifiers mods) { + handleMarginClick(editor, margin, line, mods); + }); + connect(editor, &RcxEditor::contextMenuRequested, + this, [this, editor](int line, int nodeIdx, int subLine, QPoint globalPos) { + showContextMenu(editor, line, nodeIdx, subLine, globalPos); + }); + connect(editor, &RcxEditor::nodeClicked, + this, [this, editor](int line, uint64_t nodeId, Qt::KeyboardModifiers mods) { + handleNodeClick(editor, line, nodeId, mods); + }); + + // Inline editing signals + connect(editor, &RcxEditor::inlineEditCommitted, + this, [this](int nodeIdx, int subLine, EditTarget target, const QString& text) { + if (nodeIdx < 0) { refresh(); return; } + switch (target) { + case EditTarget::Name: + if (!text.isEmpty()) renameNode(nodeIdx, text); + break; + case EditTarget::Type: { + bool ok; + NodeKind k = kindFromTypeName(text, &ok); + if (ok) changeNodeKind(nodeIdx, k); + break; + } + case EditTarget::Value: + setNodeValue(nodeIdx, subLine, text); + break; + } + // Always refresh to restore canonical text (handles parse failures, no-ops, etc.) + refresh(); + }); + connect(editor, &RcxEditor::inlineEditCancelled, + this, [this]() { refresh(); }); +} + +void RcxController::refresh() { + m_lastResult = m_doc->compose(); + + // Prune stale selections (nodes removed by undo/redo/delete) + QSet valid; + for (uint64_t id : m_selIds) { + if (m_doc->tree.indexOfId(id) >= 0) + valid.insert(id); + } + m_selIds = valid; + + for (auto* editor : m_editors) { + ViewState vs = editor->saveViewState(); + editor->applyDocument(m_lastResult); + editor->restoreViewState(vs); + } + applySelectionOverlays(); +} + +void RcxController::changeNodeKind(int nodeIdx, NodeKind newKind) { + if (nodeIdx < 0 || nodeIdx >= m_doc->tree.nodes.size()) return; + auto& node = m_doc->tree.nodes[nodeIdx]; + + int oldSize = node.byteSize(); + // Compute what byteSize() would be with the new kind + Node tmp = node; + tmp.kind = newKind; + int newSize = tmp.byteSize(); + int delta = newSize - oldSize; + + QVector adjs; + if (delta != 0 && oldSize > 0 && newSize > 0) { + int oldEnd = node.offset + oldSize; + auto siblings = m_doc->tree.childrenOf(node.parentId); + for (int si : siblings) { + if (si == nodeIdx) continue; + auto& sib = m_doc->tree.nodes[si]; + if (sib.offset >= oldEnd) + adjs.append({sib.id, sib.offset, sib.offset + delta}); + } + } + + m_doc->undoStack.push(new RcxCommand(this, + cmd::ChangeKind{node.id, node.kind, newKind, adjs})); +} + +void RcxController::renameNode(int nodeIdx, const QString& newName) { + if (nodeIdx < 0 || nodeIdx >= m_doc->tree.nodes.size()) return; + auto& node = m_doc->tree.nodes[nodeIdx]; + m_doc->undoStack.push(new RcxCommand(this, + cmd::Rename{node.id, node.name, newName})); +} + +void RcxController::insertNode(uint64_t parentId, int offset, NodeKind kind, const QString& name) { + Node n; + n.kind = kind; + n.name = name; + n.parentId = parentId; + + if (offset < 0) { + // Auto-place after last sibling with alignment + int maxEnd = 0; + auto siblings = m_doc->tree.childrenOf(parentId); + for (int si : siblings) { + auto& sn = m_doc->tree.nodes[si]; + int sz = (sn.kind == NodeKind::Struct || sn.kind == NodeKind::Array) + ? m_doc->tree.structSpan(sn.id) : sn.byteSize(); + int end = sn.offset + sz; + if (end > maxEnd) maxEnd = end; + } + int align = alignmentFor(kind); + n.offset = (maxEnd + align - 1) / align * align; + } else { + n.offset = offset; + } + + // Assign ID before storing + n.id = m_doc->tree.m_nextId; + + m_doc->undoStack.push(new RcxCommand(this, cmd::Insert{n})); +} + +void RcxController::removeNode(int nodeIdx) { + if (nodeIdx < 0 || nodeIdx >= m_doc->tree.nodes.size()) return; + uint64_t nodeId = m_doc->tree.nodes[nodeIdx].id; + + QVector indices = m_doc->tree.subtreeIndices(nodeId); + QVector subtree; + for (int i : indices) + subtree.append(m_doc->tree.nodes[i]); + + m_doc->undoStack.push(new RcxCommand(this, + cmd::Remove{nodeId, subtree})); +} + +void RcxController::toggleCollapse(int nodeIdx) { + if (nodeIdx < 0 || nodeIdx >= m_doc->tree.nodes.size()) return; + auto& node = m_doc->tree.nodes[nodeIdx]; + m_doc->undoStack.push(new RcxCommand(this, + cmd::Collapse{node.id, node.collapsed, !node.collapsed})); +} + +void RcxController::applyCommand(const Command& command, bool isUndo) { + auto& tree = m_doc->tree; + + std::visit([&](auto&& c) { + using T = std::decay_t; + if constexpr (std::is_same_v) { + int idx = tree.indexOfId(c.nodeId); + if (idx >= 0) + tree.nodes[idx].kind = isUndo ? c.oldKind : c.newKind; + for (const auto& adj : c.offAdjs) { + int ai = tree.indexOfId(adj.nodeId); + if (ai >= 0) + tree.nodes[ai].offset = isUndo ? adj.oldOffset : adj.newOffset; + } + } else if constexpr (std::is_same_v) { + int idx = tree.indexOfId(c.nodeId); + if (idx >= 0) + tree.nodes[idx].name = isUndo ? c.oldName : c.newName; + } else if constexpr (std::is_same_v) { + int idx = tree.indexOfId(c.nodeId); + if (idx >= 0) + tree.nodes[idx].collapsed = isUndo ? c.oldState : c.newState; + } else if constexpr (std::is_same_v) { + if (isUndo) { + int idx = tree.indexOfId(c.node.id); + if (idx >= 0) { + tree.nodes.remove(idx); + tree.invalidateIdCache(); + } + } else { + tree.addNode(c.node); + } + } else if constexpr (std::is_same_v) { + if (isUndo) { + for (const Node& n : c.subtree) + tree.addNode(n); + } else { + QVector indices = tree.subtreeIndices(c.nodeId); + std::sort(indices.begin(), indices.end(), std::greater()); + for (int idx : indices) + tree.nodes.remove(idx); + tree.invalidateIdCache(); + } + } else if constexpr (std::is_same_v) { + tree.baseAddress = isUndo ? c.oldBase : c.newBase; + } else if constexpr (std::is_same_v) { + const QByteArray& bytes = isUndo ? c.oldBytes : c.newBytes; + m_doc->provider->writeBytes(c.addr, bytes); + } + }, command); + + refresh(); +} + +void RcxController::setNodeValue(int nodeIdx, int subLine, const QString& text) { + if (nodeIdx < 0 || nodeIdx >= m_doc->tree.nodes.size()) return; + if (!m_doc->provider->isWritable()) return; + + const Node& node = m_doc->tree.nodes[nodeIdx]; + uint64_t addr = m_doc->tree.computeOffset(nodeIdx); + + // For vector sub-components, redirect to float parsing at sub-offset + NodeKind editKind = node.kind; + if ((node.kind == NodeKind::Vec2 || node.kind == NodeKind::Vec3 || + node.kind == NodeKind::Vec4) && subLine >= 0) { + addr += subLine * 4; + editKind = NodeKind::Float; + } + + bool ok; + QByteArray newBytes = fmt::parseValue(editKind, text, &ok); + if (!ok) return; + + // For strings, pad/truncate to full buffer size + if (node.kind == NodeKind::UTF8 || node.kind == NodeKind::UTF16) { + int fullSize = node.byteSize(); + newBytes = newBytes.left(fullSize); + if (newBytes.size() < fullSize) + newBytes.append(QByteArray(fullSize - newBytes.size(), '\0')); + } + + if (newBytes.isEmpty()) return; + + int writeSize = newBytes.size(); + + // Validate write range before pushing command + if (!m_doc->provider->isReadable(addr, writeSize)) return; + + QByteArray oldBytes = m_doc->provider->readBytes(addr, writeSize); + + m_doc->undoStack.push(new RcxCommand(this, + cmd::WriteBytes{addr, oldBytes, newBytes})); +} + +void RcxController::duplicateNode(int nodeIdx) { + if (nodeIdx < 0 || nodeIdx >= m_doc->tree.nodes.size()) return; + const Node& src = m_doc->tree.nodes[nodeIdx]; + if (src.kind == NodeKind::Struct || src.kind == NodeKind::Array) return; + insertNode(src.parentId, src.offset + src.byteSize(), src.kind, src.name + "_copy"); +} + +void RcxController::showContextMenu(RcxEditor* editor, int line, int nodeIdx, + int subLine, const QPoint& globalPos) { + if (nodeIdx < 0 || nodeIdx >= m_doc->tree.nodes.size()) return; + uint64_t clickedId = m_doc->tree.nodes[nodeIdx].id; + + // Right-click selection policy: if not in selection, select only this node + if (!m_selIds.contains(clickedId)) { + m_selIds.clear(); + m_selIds.insert(clickedId); + m_anchorLine = line; + applySelectionOverlays(); + } + + // Multi-select batch menu + if (m_selIds.size() > 1) { + QMenu menu; + int count = m_selIds.size(); + QSet ids = m_selIds; + menu.addAction(QString("Delete %1 nodes").arg(count), [this, ids]() { + QVector indices; + for (uint64_t id : ids) { + int idx = m_doc->tree.indexOfId(id); + if (idx >= 0) indices.append(idx); + } + batchRemoveNodes(indices); + }); + menu.addAction(QString("Change type of %1 nodes...").arg(count), + [this, ids]() { + QStringList types; + for (const auto& e : kKindMeta) types << e.name; + bool ok; + QString sel = QInputDialog::getItem(nullptr, "Change Type", "Type:", + types, 0, false, &ok); + if (ok) { + QVector indices; + for (uint64_t id : ids) { + int idx = m_doc->tree.indexOfId(id); + if (idx >= 0) indices.append(idx); + } + batchChangeKind(indices, kindFromString(sel)); + } + }); + menu.exec(globalPos); + return; + } + + const Node& node = m_doc->tree.nodes[nodeIdx]; + uint64_t nodeId = node.id; + uint64_t parentId = node.parentId; + + QMenu menu; + + // Inline edit actions — position cursor on the right-clicked line + bool isEditable = node.kind != NodeKind::Struct && node.kind != NodeKind::Array + && node.kind != NodeKind::Padding && node.kind != NodeKind::Mat4x4 + && m_doc->provider->isWritable(); + if (isEditable) { + menu.addAction("Edit &Value", [editor, line]() { + editor->beginInlineEdit(EditTarget::Value, line); + }); + } + + menu.addAction("Re&name", [editor, line]() { + editor->beginInlineEdit(EditTarget::Name, line); + }); + + menu.addAction("Change &Type", [editor, line]() { + editor->beginInlineEdit(EditTarget::Type, line); + }); + + menu.addSeparator(); + + menu.addAction("&Add Field Below", [this, parentId]() { + insertNode(parentId, -1, NodeKind::Hex64, "newField"); + }); + + if (node.kind == NodeKind::Struct || node.kind == NodeKind::Array) { + menu.addAction("Add &Child", [this, nodeId]() { + insertNode(nodeId, 0, NodeKind::Hex64, "newField"); + }); + QString colText = node.collapsed ? "&Expand" : "&Collapse"; + menu.addAction(colText, [this, nodeId]() { + int ni = m_doc->tree.indexOfId(nodeId); + if (ni >= 0) toggleCollapse(ni); + }); + } + + menu.addAction("D&uplicate", [this, nodeId]() { + int ni = m_doc->tree.indexOfId(nodeId); + if (ni >= 0) duplicateNode(ni); + }); + menu.addAction("&Delete", [this, nodeId]() { + int ni = m_doc->tree.indexOfId(nodeId); + if (ni >= 0) removeNode(ni); + }); + + menu.addSeparator(); + + menu.addAction("Copy &Address", [this, nodeId]() { + int ni = m_doc->tree.indexOfId(nodeId); + if (ni < 0) return; + uint64_t addr = m_doc->tree.baseAddress + m_doc->tree.computeOffset(ni); + QApplication::clipboard()->setText( + QStringLiteral("0x") + QString::number(addr, 16).toUpper()); + }); + + menu.addAction("Copy &Offset", [this, nodeId]() { + int ni = m_doc->tree.indexOfId(nodeId); + if (ni < 0) return; + int off = m_doc->tree.nodes[ni].offset; + QApplication::clipboard()->setText( + QStringLiteral("+0x") + QString::number(off, 16).toUpper().rightJustified(4, '0')); + }); + + menu.exec(globalPos); +} + +void RcxController::batchRemoveNodes(const QVector& nodeIndices) { + QSet idSet; + for (int idx : nodeIndices) { + if (idx >= 0 && idx < m_doc->tree.nodes.size()) + idSet.insert(m_doc->tree.nodes[idx].id); + } + idSet = m_doc->tree.normalizePreferAncestors(idSet); + if (idSet.isEmpty()) return; + m_doc->undoStack.beginMacro(QString("Delete %1 nodes").arg(idSet.size())); + for (uint64_t id : idSet) { + int idx = m_doc->tree.indexOfId(id); + if (idx >= 0) removeNode(idx); + } + m_doc->undoStack.endMacro(); +} + +void RcxController::batchChangeKind(const QVector& nodeIndices, NodeKind newKind) { + QSet idSet; + for (int idx : nodeIndices) { + if (idx >= 0 && idx < m_doc->tree.nodes.size()) + idSet.insert(m_doc->tree.nodes[idx].id); + } + idSet = m_doc->tree.normalizePreferDescendants(idSet); + if (idSet.isEmpty()) return; + m_doc->undoStack.beginMacro(QString("Change type of %1 nodes").arg(idSet.size())); + for (uint64_t id : idSet) { + int idx = m_doc->tree.indexOfId(id); + if (idx >= 0) changeNodeKind(idx, newKind); + } + m_doc->undoStack.endMacro(); +} + +void RcxController::handleNodeClick(RcxEditor* source, int line, + uint64_t nodeId, + Qt::KeyboardModifiers mods) { + bool ctrl = mods & Qt::ControlModifier; + bool shift = mods & Qt::ShiftModifier; + + if (!ctrl && !shift) { + m_selIds.clear(); + m_selIds.insert(nodeId); + m_anchorLine = line; + } else if (ctrl && !shift) { + if (m_selIds.contains(nodeId)) + m_selIds.remove(nodeId); + else + m_selIds.insert(nodeId); + m_anchorLine = line; + } else if (shift && !ctrl) { + m_selIds.clear(); + int from = qMin(m_anchorLine, line); + int to = qMax(m_anchorLine, line); + for (int i = from; i <= to && i < m_lastResult.meta.size(); i++) { + uint64_t nid = m_lastResult.meta[i].nodeId; + if (nid != 0) m_selIds.insert(nid); + } + } else { // Ctrl+Shift + int from = qMin(m_anchorLine, line); + int to = qMax(m_anchorLine, line); + for (int i = from; i <= to && i < m_lastResult.meta.size(); i++) { + uint64_t nid = m_lastResult.meta[i].nodeId; + if (nid != 0) m_selIds.insert(nid); + } + } + + applySelectionOverlays(); + + if (m_selIds.size() == 1) { + uint64_t sid = *m_selIds.begin(); + int idx = m_doc->tree.indexOfId(sid); + if (idx >= 0) emit nodeSelected(idx); + } +} + +void RcxController::clearSelection() { + m_selIds.clear(); + m_anchorLine = -1; + applySelectionOverlays(); +} + +void RcxController::applySelectionOverlays() { + for (auto* editor : m_editors) + editor->applySelectionOverlay(m_selIds); +} + +void RcxController::handleMarginClick(RcxEditor* editor, int margin, + int line, Qt::KeyboardModifiers) { + const LineMeta* lm = editor->metaForLine(line); + if (!lm) return; + + if (lm->foldHead && (margin == 0 || margin == 1)) { + toggleCollapse(lm->nodeIdx); + } else if (margin == 0 || margin == 1) { + emit nodeSelected(lm->nodeIdx); + } +} + +} // namespace rcx diff --git a/src/controller.h b/src/controller.h new file mode 100644 index 0000000..e44234b --- /dev/null +++ b/src/controller.h @@ -0,0 +1,99 @@ +#pragma once +#include "core.h" +#include "editor.h" +#include +#include +#include +#include + +class QSplitter; + +namespace rcx { + +class RcxController; + +// ── Document ── + +class RcxDocument : public QObject { + Q_OBJECT +public: + explicit RcxDocument(QObject* parent = nullptr); + + NodeTree tree; + std::unique_ptr provider; + QUndoStack undoStack; + QString filePath; + bool modified = false; + + ComposeResult compose() const; + bool save(const QString& path); + bool load(const QString& path); + void loadData(const QString& binaryPath); + void loadData(const QByteArray& data); + +signals: + void documentChanged(); +}; + +// ── Undo command ── + +class RcxCommand : public QUndoCommand { +public: + RcxCommand(RcxController* ctrl, Command cmd); + void undo() override; + void redo() override; +private: + RcxController* m_ctrl; + Command m_cmd; +}; + +// ── Controller ── + +class RcxController : public QObject { + Q_OBJECT +public: + explicit RcxController(RcxDocument* doc, QWidget* parent = nullptr); + + RcxEditor* primaryEditor() const; + RcxEditor* addSplitEditor(QSplitter* splitter); + void removeSplitEditor(RcxEditor* editor); + QList editors() const { return m_editors; } + + void changeNodeKind(int nodeIdx, NodeKind newKind); + void renameNode(int nodeIdx, const QString& newName); + void insertNode(uint64_t parentId, int offset, NodeKind kind, const QString& name); + void removeNode(int nodeIdx); + void toggleCollapse(int nodeIdx); + void setNodeValue(int nodeIdx, int subLine, const QString& text); + void duplicateNode(int nodeIdx); + void showContextMenu(RcxEditor* editor, int line, int nodeIdx, int subLine, const QPoint& globalPos); + void batchRemoveNodes(const QVector& nodeIndices); + void batchChangeKind(const QVector& nodeIndices, NodeKind newKind); + + void applyCommand(const Command& cmd, bool isUndo); + void refresh(); + + // Selection + void handleNodeClick(RcxEditor* source, int line, uint64_t nodeId, + Qt::KeyboardModifiers mods); + void clearSelection(); + void applySelectionOverlays(); + QSet selectedIds() const { return m_selIds; } + + RcxDocument* document() const { return m_doc; } + +signals: + void nodeSelected(int nodeIdx); + +private: + RcxDocument* m_doc; + QList m_editors; + ComposeResult m_lastResult; + QSet m_selIds; + int m_anchorLine = -1; + + void connectEditor(RcxEditor* editor); + void handleMarginClick(RcxEditor* editor, int margin, int line, Qt::KeyboardModifiers mods); +}; + +} // namespace rcx diff --git a/src/core.h b/src/core.h new file mode 100644 index 0000000..457e700 --- /dev/null +++ b/src/core.h @@ -0,0 +1,521 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace rcx { + +// ── Node kind enum ── + +enum class NodeKind : uint8_t { + Hex8, Hex16, Hex32, Hex64, + Int8, Int16, Int32, Int64, + UInt8, UInt16, UInt32, UInt64, + Float, Double, Bool, + Pointer32, Pointer64, + Vec2, Vec3, Vec4, Mat4x4, + UTF8, UTF16, + Padding, + Struct, Array +}; + +// ── Unified kind metadata table (single source of truth) ── + +struct KindMeta { + NodeKind kind; + const char* name; // UI/JSON name: "Hex64", "UInt16" + const char* typeName; // display name: "Hex64", "uint16_t" + int size; // byte size (0 = dynamic: Struct/Array) + int lines; // display line count + int align; // natural alignment +}; + +inline constexpr KindMeta kKindMeta[] = { + // kind name typeName sz ln al + {NodeKind::Hex8, "Hex8", "Hex8", 1, 1, 1}, + {NodeKind::Hex16, "Hex16", "Hex16", 2, 1, 2}, + {NodeKind::Hex32, "Hex32", "Hex32", 4, 1, 4}, + {NodeKind::Hex64, "Hex64", "Hex64", 8, 1, 8}, + {NodeKind::Int8, "Int8", "int8_t", 1, 1, 1}, + {NodeKind::Int16, "Int16", "int16_t", 2, 1, 2}, + {NodeKind::Int32, "Int32", "int32_t", 4, 1, 4}, + {NodeKind::Int64, "Int64", "int64_t", 8, 1, 8}, + {NodeKind::UInt8, "UInt8", "uint8_t", 1, 1, 1}, + {NodeKind::UInt16, "UInt16", "uint16_t", 2, 1, 2}, + {NodeKind::UInt32, "UInt32", "uint32_t", 4, 1, 4}, + {NodeKind::UInt64, "UInt64", "uint64_t", 8, 1, 8}, + {NodeKind::Float, "Float", "float", 4, 1, 4}, + {NodeKind::Double, "Double", "double", 8, 1, 8}, + {NodeKind::Bool, "Bool", "bool", 1, 1, 1}, + {NodeKind::Pointer32, "Pointer32", "ptr32", 4, 1, 4}, + {NodeKind::Pointer64, "Pointer64", "ptr64", 8, 1, 8}, + {NodeKind::Vec2, "Vec2", "Vec2", 8, 2, 4}, + {NodeKind::Vec3, "Vec3", "Vec3", 12, 3, 4}, + {NodeKind::Vec4, "Vec4", "Vec4", 16, 4, 4}, + {NodeKind::Mat4x4, "Mat4x4", "Mat4x4", 64, 4, 4}, + {NodeKind::UTF8, "UTF8", "char[]", 1, 1, 1}, + {NodeKind::UTF16, "UTF16", "wchar_t[]", 2, 1, 2}, + {NodeKind::Padding, "Padding", "pad", 1, 1, 1}, + {NodeKind::Struct, "Struct", "struct", 0, 1, 1}, + {NodeKind::Array, "Array", "array", 0, 1, 1}, +}; + +inline constexpr const KindMeta* kindMeta(NodeKind k) { + for (const auto& m : kKindMeta) + if (m.kind == k) return &m; + return nullptr; +} + +inline constexpr int sizeForKind(NodeKind k) { auto* m = kindMeta(k); return m ? m->size : 0; } +inline constexpr int linesForKind(NodeKind k) { auto* m = kindMeta(k); return m ? m->lines : 1; } +inline constexpr int alignmentFor(NodeKind k) { auto* m = kindMeta(k); return m ? m->align : 1; } + +inline const char* kindToString(NodeKind k) { + auto* m = kindMeta(k); + return m ? m->name : "Unknown"; +} + +inline NodeKind kindFromString(const QString& s) { + for (const auto& m : kKindMeta) + if (s == m.name) return m.kind; + return NodeKind::Hex8; +} + +inline NodeKind kindFromTypeName(const QString& s, bool* ok = nullptr) { + for (const auto& m : kKindMeta) { + if (s == m.typeName) { + if (ok) *ok = true; + return m.kind; + } + } + if (ok) *ok = false; + return NodeKind::Hex8; +} + +// ── Marker vocabulary ── + +enum Marker : int { + M_CONT = 0, + M_PAD = 1, + M_PTR0 = 2, + M_CYCLE = 3, + M_ERR = 4, + M_STRUCT_BG = 5, +}; + +// ── Provider interface ── + +class Provider { +public: + virtual ~Provider() = default; + virtual uint8_t readU8 (uint64_t addr) const = 0; + virtual uint16_t readU16(uint64_t addr) const = 0; + virtual uint32_t readU32(uint64_t addr) const = 0; + virtual uint64_t readU64(uint64_t addr) const = 0; + virtual float readF32(uint64_t addr) const = 0; + virtual double readF64(uint64_t addr) const = 0; + virtual QByteArray readBytes(uint64_t addr, int len) const = 0; + virtual bool isValid() const = 0; + virtual bool isReadable(uint64_t addr, int len) const = 0; + virtual int size() const = 0; + virtual bool isWritable() const { return false; } + virtual bool writeBytes(uint64_t addr, const QByteArray& data) { + Q_UNUSED(addr); Q_UNUSED(data); return false; + } +}; + +class FileProvider : public Provider { + QByteArray m_data; + + template + T readT(uint64_t a) const { + if (a + sizeof(T) > (uint64_t)m_data.size()) return T{}; + T v; memcpy(&v, m_data.data() + a, sizeof(T)); return v; + } + +public: + explicit FileProvider(const QByteArray& data) : m_data(data) {} + static FileProvider fromFile(const QString& path) { + QFile f(path); + if (f.open(QIODevice::ReadOnly)) return FileProvider(f.readAll()); + return FileProvider({}); + } + + bool isValid() const override { return !m_data.isEmpty(); } + bool isReadable(uint64_t addr, int len) const override { + if (len <= 0) return len == 0; + if (addr > (uint64_t)m_data.size()) return false; + return (uint64_t)len <= (uint64_t)m_data.size() - addr; + } + int size() const override { return m_data.size(); } + + uint8_t readU8 (uint64_t a) const override { return readT(a); } + uint16_t readU16(uint64_t a) const override { return readT(a); } + uint32_t readU32(uint64_t a) const override { return readT(a); } + uint64_t readU64(uint64_t a) const override { return readT(a); } + float readF32(uint64_t a) const override { return readT(a); } + double readF64(uint64_t a) const override { return readT(a); } + + QByteArray readBytes(uint64_t a, int len) const override { + if (a >= (uint64_t)m_data.size()) return {}; + int avail = qMin(len, (int)((uint64_t)m_data.size() - a)); + return m_data.mid((int)a, avail); + } + + bool isWritable() const override { return true; } + bool writeBytes(uint64_t addr, const QByteArray& data) override { + if (addr + data.size() > (uint64_t)m_data.size()) return false; + memcpy(m_data.data() + addr, data.data(), data.size()); + return true; + } +}; + +class NullProvider : public Provider { +public: + uint8_t readU8 (uint64_t) const override { return 0; } + uint16_t readU16(uint64_t) const override { return 0; } + uint32_t readU32(uint64_t) const override { return 0; } + uint64_t readU64(uint64_t) const override { return 0; } + float readF32(uint64_t) const override { return 0.0f; } + double readF64(uint64_t) const override { return 0.0; } + QByteArray readBytes(uint64_t, int) const override { return {}; } + bool isValid() const override { return false; } + bool isReadable(uint64_t, int) const override { return false; } + int size() const override { return 0; } +}; + +// ── Node ── + +struct Node { + uint64_t id = 0; + NodeKind kind = NodeKind::Hex8; + QString name; + uint64_t parentId = 0; // 0 = root (no parent) + int offset = 0; + int arrayLen = 0; + int strLen = 64; + bool collapsed = false; + uint64_t refId = 0; // Pointer32/64: id of Struct to expand at *ptr + + int byteSize() const { + switch (kind) { + case NodeKind::UTF8: return strLen; + case NodeKind::UTF16: return strLen * 2; + case NodeKind::Padding: return qMax(1, arrayLen); + default: return sizeForKind(kind); + } + } + + QJsonObject toJson() const { + QJsonObject o; + o["id"] = QString::number(id); + o["kind"] = kindToString(kind); + o["name"] = name; + o["parentId"] = QString::number(parentId); + o["offset"] = offset; + o["arrayLen"] = arrayLen; + o["strLen"] = strLen; + o["collapsed"] = collapsed; + o["refId"] = QString::number(refId); + return o; + } + static Node fromJson(const QJsonObject& o) { + Node n; + n.id = o["id"].toString("0").toULongLong(); + n.kind = kindFromString(o["kind"].toString()); + n.name = o["name"].toString(); + n.parentId = o["parentId"].toString("0").toULongLong(); + n.offset = o["offset"].toInt(0); + n.arrayLen = o["arrayLen"].toInt(0); + n.strLen = o["strLen"].toInt(64); + n.collapsed = o["collapsed"].toBool(false); + n.refId = o["refId"].toString("0").toULongLong(); + return n; + } +}; + +// ── NodeTree ── + +struct NodeTree { + QVector nodes; + uint64_t baseAddress = 0x00400000; + uint64_t m_nextId = 1; + mutable QHash m_idCache; + + int addNode(const Node& n) { + Node copy = n; + if (copy.id == 0) copy.id = m_nextId++; + else if (copy.id >= m_nextId) m_nextId = copy.id + 1; + nodes.append(copy); + m_idCache.clear(); + return nodes.size() - 1; + } + + void invalidateIdCache() const { m_idCache.clear(); } + + int indexOfId(uint64_t id) const { + if (m_idCache.isEmpty() && !nodes.isEmpty()) { + for (int i = 0; i < nodes.size(); i++) + m_idCache[nodes[i].id] = i; + } + return m_idCache.value(id, -1); + } + + QVector childrenOf(uint64_t parentId) const { + QVector result; + for (int i = 0; i < nodes.size(); i++) { + if (nodes[i].parentId == parentId) result.append(i); + } + return result; + } + + // Collect node + all descendants (iterative, cycle-safe) + QVector subtreeIndices(uint64_t nodeId) const { + int idx = indexOfId(nodeId); + if (idx < 0) return {}; + // Build parent→children map + QHash> childMap; + for (int i = 0; i < nodes.size(); i++) + childMap[nodes[i].parentId].append(i); + // BFS with visited guard + QVector result; + QSet visited; + QVector stack; + stack.append(nodeId); + result.append(idx); + visited.insert(nodeId); + while (!stack.isEmpty()) { + uint64_t pid = stack.takeLast(); + for (int ci : childMap.value(pid)) { + uint64_t cid = nodes[ci].id; + if (!visited.contains(cid)) { + visited.insert(cid); + result.append(ci); + stack.append(cid); + } + } + } + return result; + } + + int depthOf(int idx) const { + int d = 0; + QSet visited; + int cur = idx; + while (cur >= 0 && cur < nodes.size() && nodes[cur].parentId != 0) { + if (visited.contains(cur)) break; + visited.insert(cur); + cur = indexOfId(nodes[cur].parentId); + if (cur < 0) break; + d++; + } + return d; + } + + int64_t computeOffset(int idx) const { + int64_t total = 0; + QSet visited; + int cur = idx; + while (cur >= 0 && cur < nodes.size()) { + if (visited.contains(cur)) break; + visited.insert(cur); + total += nodes[cur].offset; + if (nodes[cur].parentId == 0) break; + cur = indexOfId(nodes[cur].parentId); + } + return total; + } + + int structSpan(uint64_t structId, + const QHash>* childMap = nullptr) const { + int maxEnd = 0; + QVector kids = childMap ? childMap->value(structId) : childrenOf(structId); + for (int ci : kids) { + const Node& c = nodes[ci]; + int sz = (c.kind == NodeKind::Struct || c.kind == NodeKind::Array) + ? structSpan(c.id, childMap) : c.byteSize(); + int end = c.offset + sz; + if (end > maxEnd) maxEnd = end; + } + return maxEnd; + } + + // Batch selection normalizers + QSet normalizePreferAncestors(const QSet& ids) const; + QSet normalizePreferDescendants(const QSet& ids) const; + + QJsonObject toJson() const { + QJsonObject o; + o["baseAddress"] = QString::number(baseAddress, 16); + o["nextId"] = QString::number(m_nextId); + QJsonArray arr; + for (const auto& n : nodes) arr.append(n.toJson()); + o["nodes"] = arr; + return o; + } + + static NodeTree fromJson(const QJsonObject& o) { + NodeTree t; + t.baseAddress = o["baseAddress"].toString("400000").toULongLong(nullptr, 16); + t.m_nextId = o["nextId"].toString("1").toULongLong(); + QJsonArray arr = o["nodes"].toArray(); + for (const auto& v : arr) { + Node n = Node::fromJson(v.toObject()); + t.nodes.append(n); + if (n.id >= t.m_nextId) t.m_nextId = n.id + 1; + } + return t; + } + +}; + +// ── LineMeta ── + +enum class LineKind : uint8_t { + Header, Field, Continuation, Footer +}; + +struct LineMeta { + int nodeIdx = -1; + uint64_t nodeId = 0; + int subLine = 0; + int depth = 0; + int foldLevel = 0; + bool foldHead = false; + bool foldCollapsed = false; + bool isContinuation = false; + LineKind lineKind = LineKind::Field; + NodeKind nodeKind = NodeKind::Int32; + QString offsetText; + uint32_t markerMask = 0; +}; + +// ── ComposeResult ── + +struct ComposeResult { + QString text; + QVector meta; +}; + +// ── Command ── + +namespace cmd { + struct OffsetAdj { uint64_t nodeId; int oldOffset, newOffset; }; + struct ChangeKind { uint64_t nodeId; NodeKind oldKind, newKind; + QVector offAdjs; }; + struct Rename { uint64_t nodeId; QString oldName, newName; }; + struct Collapse { uint64_t nodeId; bool oldState, newState; }; + struct Insert { Node node; }; + struct Remove { uint64_t nodeId; QVector subtree; }; + struct ChangeBase { uint64_t oldBase, newBase; }; + struct WriteBytes { uint64_t addr; QByteArray oldBytes, newBytes; }; +} + +using Command = std::variant< + cmd::ChangeKind, cmd::Rename, cmd::Collapse, + cmd::Insert, cmd::Remove, cmd::ChangeBase, cmd::WriteBytes +>; + +// ── Column spans (for inline editing) ── + +struct ColumnSpan { + int start = 0; // inclusive column index + int end = 0; // exclusive column index + bool valid = false; +}; + +enum class EditTarget { Name, Type, Value }; + +// Column layout constants (shared with format.cpp span computation) +inline constexpr int kFoldCol = 3; // 3-char fold indicator prefix per line +inline constexpr int kColType = 10; +inline constexpr int kColName = 24; +inline constexpr int kSepWidth = 2; + +inline ColumnSpan typeSpanFor(const LineMeta& lm) { + if (lm.lineKind != LineKind::Field || lm.isContinuation) return {}; + int ind = kFoldCol + lm.depth * 3; + return {ind, ind + kColType, true}; +} + +inline ColumnSpan nameSpanFor(const LineMeta& lm) { + if (lm.isContinuation || lm.lineKind != LineKind::Field) return {}; + // Hex/Padding nodes show ASCII data preview instead of name + switch (lm.nodeKind) { + case NodeKind::Hex8: case NodeKind::Hex16: + case NodeKind::Hex32: case NodeKind::Hex64: + case NodeKind::Padding: + return {}; + default: break; + } + int ind = kFoldCol + lm.depth * 3; + int start = ind + kColType + kSepWidth; + return {start, start + kColName, true}; +} + +inline ColumnSpan valueSpanFor(const LineMeta& lm, int lineLength) { + if (lm.lineKind == LineKind::Header || lm.lineKind == LineKind::Footer) return {}; + int ind = kFoldCol + lm.depth * 3; + if (lm.isContinuation) { + int prefixW = kColType + kColName + 4; // 2 seps × 2 chars + int start = ind + prefixW; + return {start, lineLength, start < lineLength}; + } + if (lm.lineKind != LineKind::Field) return {}; + int start = ind + kColType + kSepWidth + kColName + kSepWidth; + return {start, lineLength, start < lineLength}; +} + +// ── ViewState ── + +struct ViewState { + int scrollLine = 0; + int cursorLine = 0; + int cursorCol = 0; +}; + +// ── Format function forward declarations ── + +namespace fmt { + using TypeNameFn = QString (*)(NodeKind); + void setTypeNameProvider(TypeNameFn fn); + QString typeName(NodeKind kind); + QString fmtInt8(int8_t v); + QString fmtInt16(int16_t v); + QString fmtInt32(int32_t v); + QString fmtInt64(int64_t v); + QString fmtUInt8(uint8_t v); + QString fmtUInt16(uint16_t v); + QString fmtUInt32(uint32_t v); + QString fmtUInt64(uint64_t v); + QString fmtFloat(float v); + QString fmtDouble(double v); + QString fmtBool(uint8_t v); + QString fmtPointer32(uint32_t v); + QString fmtPointer64(uint64_t v); + QString fmtNodeLine(const Node& node, const Provider& prov, + uint64_t addr, int depth, int subLine = 0); + QString fmtOffsetMargin(int64_t relativeOffset, bool isContinuation); + QString fmtStructHeader(const Node& node, int depth); + QString fmtStructFooter(const Node& node, int depth, int totalSize = -1); + QString indent(int depth); + QString readValue(const Node& node, const Provider& prov, + uint64_t addr, int subLine); + QString editableValue(const Node& node, const Provider& prov, + uint64_t addr, int subLine); + QByteArray parseValue(NodeKind kind, const QString& text, bool* ok); +} // namespace fmt + +// ── Compose function forward declaration ── + +ComposeResult compose(const NodeTree& tree, const Provider& prov); + +} // namespace rcx diff --git a/src/editor.cpp b/src/editor.cpp new file mode 100644 index 0000000..3d8f978 --- /dev/null +++ b/src/editor.cpp @@ -0,0 +1,982 @@ +#include "editor.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace rcx { + +// ── Theme constants ── +static const QColor kBgText("#1e1e1e"); +static const QColor kBgMargin("#252526"); +static const QColor kFgMargin("#858585"); +static const QColor kFgMarginDim("#505050"); + +static constexpr int IND_EDITABLE = 8; +static constexpr int IND_HEX_DIM = 9; +static constexpr int IND_SELECTED = 10; +static constexpr int IND_HOVER = 11; + +static QFont editorFont() { + QFont f("Consolas", 12); + f.setFixedPitch(true); + return f; +} + +RcxEditor::RcxEditor(QWidget* parent) : QWidget(parent) { + auto* layout = new QVBoxLayout(this); + layout->setContentsMargins(0, 0, 0, 0); + + m_sci = new QsciScintilla(this); + layout->addWidget(m_sci); + + setupScintilla(); + setupLexer(); + setupMargins(); + setupFolding(); + setupMarkers(); + allocateMarginStyles(); + + m_sci->installEventFilter(this); + m_sci->viewport()->installEventFilter(this); + m_sci->viewport()->setMouseTracking(true); + + // Hover cursor is applied synchronously in eventFilter (no timer). + + connect(m_sci, &QsciScintilla::marginClicked, + this, [this](int margin, int line, Qt::KeyboardModifiers mods) { + emit marginClicked(margin, line, mods); + }); + + m_sci->setContextMenuPolicy(Qt::CustomContextMenu); + connect(m_sci, &QWidget::customContextMenuRequested, + this, [this](const QPoint& pos) { + int line = m_sci->lineAt(pos); + int nodeIdx = -1; + int subLine = 0; + if (line >= 0 && line < m_meta.size()) { + nodeIdx = m_meta[line].nodeIdx; + subLine = m_meta[line].subLine; + } + emit contextMenuRequested(line, nodeIdx, subLine, m_sci->mapToGlobal(pos)); + }); + + connect(m_sci, &QsciScintilla::userListActivated, + this, [this](int id, const QString& text) { + if (id == 1 && m_editState.active && m_editState.target == EditTarget::Type) { + auto info = endInlineEdit(); + emit inlineEditCommitted(info.nodeIdx, info.subLine, info.target, text); + } + }); + + connect(m_sci, &QsciScintilla::cursorPositionChanged, + this, [this](int line, int /*col*/) { updateEditableUnderline(line); }); +} + +void RcxEditor::setupScintilla() { + m_sci->setFont(editorFont()); + + m_sci->setReadOnly(true); + m_sci->setWrapMode(QsciScintilla::WrapNone); + m_sci->setCaretLineVisible(true); + m_sci->setCaretLineBackgroundColor(QColor("#2c3338")); + + m_sci->setPaper(kBgText); + m_sci->setColor(QColor("#d4d4d4")); + + m_sci->setTabWidth(2); + m_sci->setIndentationsUseTabs(false); + + // Caret color for dark theme + m_sci->setCaretForegroundColor(QColor("#d4d4d4")); + + // Line spacing for readability + m_sci->SendScintilla(QsciScintillaBase::SCI_SETEXTRAASCENT, (long)2); + m_sci->SendScintilla(QsciScintillaBase::SCI_SETEXTRADESCENT, (long)2); + + // Selection colors + m_sci->setSelectionBackgroundColor(QColor("#264f78")); + m_sci->setSelectionForegroundColor(QColor("#d4d4d4")); + + // Editable-field link-style indicator (colored text + underline) + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETSTYLE, + IND_EDITABLE, 17 /*INDIC_TEXTFORE*/); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETFORE, + IND_EDITABLE, QColor("#569cd6")); + + // Hex/Padding node dim indicator — overrides text color to gray + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETSTYLE, + IND_HEX_DIM, 17 /*INDIC_TEXTFORE*/); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETFORE, + IND_HEX_DIM, QColor("#505050")); + + // Selection overlay — translucent blue box + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETSTYLE, + IND_SELECTED, 8 /*INDIC_STRAIGHTBOX*/); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETFORE, + IND_SELECTED, QColor("#264f78")); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETALPHA, + IND_SELECTED, (long)50); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETOUTLINEALPHA, + IND_SELECTED, (long)100); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETUNDER, + IND_SELECTED, (long)1); + + // Hover row highlight — very subtle fill + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETSTYLE, + IND_HOVER, 16 /*INDIC_FULLBOX*/); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETFORE, + IND_HOVER, QColor("#264f78")); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETALPHA, + IND_HOVER, (long)25); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETOUTLINEALPHA, + IND_HOVER, (long)0); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICSETUNDER, + IND_HOVER, (long)1); +} + +void RcxEditor::setupLexer() { + m_lexer = new QsciLexerCPP(m_sci); + QFont font = editorFont(); + m_lexer->setFont(font); + + // Dark theme colors + m_lexer->setColor(QColor("#569cd6"), QsciLexerCPP::Keyword); + m_lexer->setColor(QColor("#4ec9b0"), QsciLexerCPP::KeywordSet2); + m_lexer->setColor(QColor("#b5cea8"), QsciLexerCPP::Number); + m_lexer->setColor(QColor("#ce9178"), QsciLexerCPP::DoubleQuotedString); + m_lexer->setColor(QColor("#ce9178"), QsciLexerCPP::SingleQuotedString); + m_lexer->setColor(QColor("#6a9955"), QsciLexerCPP::Comment); + m_lexer->setColor(QColor("#6a9955"), QsciLexerCPP::CommentLine); + m_lexer->setColor(QColor("#6a9955"), QsciLexerCPP::CommentDoc); + m_lexer->setColor(QColor("#d4d4d4"), QsciLexerCPP::Default); + m_lexer->setColor(QColor("#dcdcaa"), QsciLexerCPP::Identifier); + m_lexer->setColor(QColor("#c586c0"), QsciLexerCPP::PreProcessor); + m_lexer->setColor(QColor("#d4d4d4"), QsciLexerCPP::Operator); + + // Dark background for all styles + for (int i = 0; i <= 127; i++) { + m_lexer->setPaper(kBgText, i); + m_lexer->setFont(font, i); + } + + m_sci->setLexer(m_lexer); + m_sci->setBraceMatching(QsciScintilla::SloppyBraceMatch); +} + +void RcxEditor::setupMargins() { + m_sci->setMarginsFont(editorFont()); + + // Margin 0: Offset text + m_sci->setMarginType(0, QsciScintilla::TextMarginRightJustified); + m_sci->setMarginWidth(0, " +0x00000000 "); + m_sci->setMarginsBackgroundColor(kBgMargin); + m_sci->setMarginsForegroundColor(kFgMargin); + m_sci->setMarginSensitivity(0, true); + + // Margin 1: hidden (fold chevrons moved to text column) + m_sci->setMarginWidth(1, 0); +} + +void RcxEditor::setupFolding() { + // Hide fold margin (fold indicators are text-based now) + m_sci->setMarginWidth(2, 0); + m_sci->setFoldMarginColors(kBgMargin, kBgMargin); + + // Fold indicators are now text in the line content (kFoldCol prefix), + // so no Scintilla markers needed for fold state. + + // Keep Scintilla fold markers invisible (fold levels still used for click detection) + for (int i = 25; i <= 31; i++) + m_sci->markerDefine(QsciScintilla::Invisible, i); + + // Disable automatic fold toggle — we handle collapse at model level + m_sci->SendScintilla(QsciScintillaBase::SCI_SETAUTOMATICFOLD, + (unsigned long)0); + + // Disable lexer-driven folding — we set fold levels manually + m_sci->SendScintilla(QsciScintillaBase::SCI_SETPROPERTY, + (const char*)"fold", (const char*)"0"); +} + +void RcxEditor::setupMarkers() { + // M_CONT (0): vertical line + m_sci->markerDefine(QsciScintilla::VLine, M_CONT); + m_sci->setMarkerBackgroundColor(kFgMarginDim, M_CONT); + m_sci->setMarkerForegroundColor(kFgMarginDim, M_CONT); + + // M_PAD (1): small rectangle (dim gray) + m_sci->markerDefine(QsciScintilla::SmallRectangle, M_PAD); + m_sci->setMarkerBackgroundColor(QColor("#606060"), M_PAD); + m_sci->setMarkerForegroundColor(QColor("#606060"), M_PAD); + + // M_PTR0 (2): right triangle (red) + m_sci->markerDefine(QsciScintilla::RightTriangle, M_PTR0); + m_sci->setMarkerBackgroundColor(QColor("#f44747"), M_PTR0); + m_sci->setMarkerForegroundColor(QColor("#f44747"), M_PTR0); + + // M_CYCLE (3): arrows (orange) + m_sci->markerDefine(QsciScintilla::ThreeRightArrows, M_CYCLE); + m_sci->setMarkerBackgroundColor(QColor("#e5a00d"), M_CYCLE); + m_sci->setMarkerForegroundColor(QColor("#e5a00d"), M_CYCLE); + + // M_ERR (4): background (dark red) + m_sci->markerDefine(QsciScintilla::Background, M_ERR); + m_sci->setMarkerBackgroundColor(QColor("#5c2020"), M_ERR); + m_sci->setMarkerForegroundColor(QColor("#ffffff"), M_ERR); + + // M_STRUCT_BG (5): background tint for struct header/footer + m_sci->markerDefine(QsciScintilla::Background, M_STRUCT_BG); + m_sci->setMarkerBackgroundColor(QColor("#1a2332"), M_STRUCT_BG); + m_sci->setMarkerForegroundColor(QColor("#d4d4d4"), M_STRUCT_BG); +} + +void RcxEditor::allocateMarginStyles() { + // Relative indices within margin style offset + static constexpr int MSTYLE_NORMAL = 0; + static constexpr int MSTYLE_CONT = 1; + + long base = m_sci->SendScintilla(QsciScintillaBase::SCI_ALLOCATEEXTENDEDSTYLES, (long)2); + m_marginStyleBase = (int)base; + m_sci->SendScintilla(QsciScintillaBase::SCI_MARGINSETSTYLEOFFSET, base); + + const long bgrMargin = 0x262525; // BGR for #252526 + + // Normal offset style: gray on dark + m_sci->SendScintilla(QsciScintillaBase::SCI_STYLESETFORE, + (unsigned long)(base + MSTYLE_NORMAL), (long)0x858585); + m_sci->SendScintilla(QsciScintillaBase::SCI_STYLESETBACK, + (unsigned long)(base + MSTYLE_NORMAL), bgrMargin); + + // Continuation style: dimmer + m_sci->SendScintilla(QsciScintillaBase::SCI_STYLESETFORE, + (unsigned long)(base + MSTYLE_CONT), (long)0x505050); + m_sci->SendScintilla(QsciScintillaBase::SCI_STYLESETBACK, + (unsigned long)(base + MSTYLE_CONT), bgrMargin); +} + +void RcxEditor::applyDocument(const ComposeResult& result) { + // Silently deactivate inline edit (no signal — refresh is already happening) + if (m_editState.active) + endInlineEdit(); + + m_meta = result.meta; + + m_sci->setReadOnly(false); + m_sci->setText(result.text); + m_sci->setReadOnly(true); + + // Force full re-lex to fix stale syntax coloring after edits + m_sci->SendScintilla(QsciScintillaBase::SCI_COLOURISE, (uintptr_t)0, (long)-1); + + applyMarginText(result.meta); + applyMarkers(result.meta); + applyFoldLevels(result.meta); + applyHexDimming(result.meta); + + // Re-apply editable underline for current cursor line + m_hintLine = -1; + int line, col; + m_sci->getCursorPosition(&line, &col); + updateEditableUnderline(line); +} + +void RcxEditor::applyMarginText(const QVector& meta) { + // Clear all margin text + m_sci->clearMarginText(-1); + + for (int i = 0; i < meta.size(); i++) { + const auto& lm = meta[i]; + if (!lm.offsetText.isEmpty()) { + int style = lm.isContinuation ? 1 : 0; + m_sci->setMarginText(i, lm.offsetText, style); + } + } +} + +void RcxEditor::applyMarkers(const QVector& meta) { + for (int m = M_CONT; m <= M_STRUCT_BG; m++) { + m_sci->markerDeleteAll(m); + } + for (int i = 0; i < meta.size(); i++) { + uint32_t mask = meta[i].markerMask; + for (int m = M_CONT; m <= M_STRUCT_BG; m++) { + if (mask & (1u << m)) { + m_sci->markerAdd(i, m); + } + } + } +} + +void RcxEditor::applyFoldLevels(const QVector& meta) { + for (int i = 0; i < meta.size(); i++) { + m_sci->SendScintilla(QsciScintillaBase::SCI_SETFOLDLEVEL, + (unsigned long)i, (long)meta[i].foldLevel); + } +} + +void RcxEditor::applyHexDimming(const QVector& meta) { + m_sci->SendScintilla(QsciScintillaBase::SCI_SETINDICATORCURRENT, IND_HEX_DIM); + for (int i = 0; i < meta.size(); i++) { + switch (meta[i].nodeKind) { + case NodeKind::Hex8: case NodeKind::Hex16: + case NodeKind::Hex32: case NodeKind::Hex64: + case NodeKind::Padding: { + long pos = m_sci->SendScintilla( + QsciScintillaBase::SCI_POSITIONFROMLINE, (unsigned long)i); + long len = m_sci->SendScintilla( + QsciScintillaBase::SCI_LINELENGTH, (unsigned long)i); + if (len > 0) + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORFILLRANGE, pos, len); + break; + } + default: break; + } + } +} + +void RcxEditor::applySelectionOverlay(const QSet& selIds) { + m_currentSelIds = selIds; + + // Clear all selection indicators + m_sci->SendScintilla(QsciScintillaBase::SCI_SETINDICATORCURRENT, IND_SELECTED); + long docLen = m_sci->SendScintilla(QsciScintillaBase::SCI_GETLENGTH); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORCLEARRANGE, (uintptr_t)0, docLen); + + if (selIds.isEmpty()) return; + + for (int i = 0; i < m_meta.size(); i++) { + if (selIds.contains(m_meta[i].nodeId)) { + long pos = m_sci->SendScintilla( + QsciScintillaBase::SCI_POSITIONFROMLINE, (unsigned long)i); + long len = m_sci->SendScintilla( + QsciScintillaBase::SCI_LINELENGTH, (unsigned long)i); + if (len > 0) + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORFILLRANGE, pos, len); + } + } + + // Refresh hover since selection may suppress it + applyHoverHighlight(); +} + +void RcxEditor::applyHoverHighlight() { + // Clear previous hover indicator + m_sci->SendScintilla(QsciScintillaBase::SCI_SETINDICATORCURRENT, IND_HOVER); + long docLen = m_sci->SendScintilla(QsciScintillaBase::SCI_GETLENGTH); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORCLEARRANGE, (uintptr_t)0, docLen); + + if (m_editState.active) return; + if (!m_hoverInside) return; + if (m_hoveredNodeId == 0) return; + if (m_currentSelIds.contains(m_hoveredNodeId)) return; + + for (int i = 0; i < m_meta.size(); i++) { + if (m_meta[i].nodeId == m_hoveredNodeId) { + long pos = m_sci->SendScintilla( + QsciScintillaBase::SCI_POSITIONFROMLINE, (unsigned long)i); + long len = m_sci->SendScintilla( + QsciScintillaBase::SCI_LINELENGTH, (unsigned long)i); + if (len > 0) + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORFILLRANGE, pos, len); + } + } +} + +ViewState RcxEditor::saveViewState() const { + ViewState vs; + vs.scrollLine = (int)m_sci->SendScintilla(QsciScintillaBase::SCI_GETFIRSTVISIBLELINE); + int line, col; + m_sci->getCursorPosition(&line, &col); + vs.cursorLine = line; + vs.cursorCol = col; + return vs; +} + +void RcxEditor::restoreViewState(const ViewState& vs) { + m_sci->setCursorPosition(vs.cursorLine, vs.cursorCol); + m_sci->SendScintilla(QsciScintillaBase::SCI_SETFIRSTVISIBLELINE, + (unsigned long)vs.scrollLine); +} + +const LineMeta* RcxEditor::metaForLine(int line) const { + if (line >= 0 && line < m_meta.size()) + return &m_meta[line]; + return nullptr; +} + +int RcxEditor::currentNodeIndex() const { + int line, col; + m_sci->getCursorPosition(&line, &col); + auto* lm = metaForLine(line); + return lm ? lm->nodeIdx : -1; +} + +// ── Column span computation ── + +ColumnSpan RcxEditor::typeSpan(const LineMeta& lm) { return typeSpanFor(lm); } +ColumnSpan RcxEditor::nameSpan(const LineMeta& lm) { return nameSpanFor(lm); } +ColumnSpan RcxEditor::valueSpan(const LineMeta& lm, int lineLength) { return valueSpanFor(lm, lineLength); } + +// ── Multi-selection ── + +QSet RcxEditor::selectedNodeIndices() const { + int lineFrom, indexFrom, lineTo, indexTo; + m_sci->getSelection(&lineFrom, &indexFrom, &lineTo, &indexTo); + if (lineFrom < 0) { + int line, col; + m_sci->getCursorPosition(&line, &col); + auto* lm = metaForLine(line); + return lm && lm->nodeIdx >= 0 ? QSet{lm->nodeIdx} : QSet{}; + } + QSet result; + for (int line = lineFrom; line <= lineTo; line++) { + auto* lm = metaForLine(line); + if (lm && lm->nodeIdx >= 0) result.insert(lm->nodeIdx); + } + return result; +} + +// ── Inline edit helpers ── + +static QString getLineText(QsciScintilla* sci, int line) { + int len = (int)sci->SendScintilla(QsciScintillaBase::SCI_LINELENGTH, (unsigned long)line); + if (len <= 0) return {}; + QByteArray buf(len + 1, '\0'); + sci->SendScintilla(QsciScintillaBase::SCI_GETLINE, (unsigned long)line, (void*)buf.data()); + QString text = QString::fromUtf8(buf.data(), len); + while (text.endsWith('\n') || text.endsWith('\r')) + text.chop(1); + return text; +} + +// ── Shared inline-edit shutdown ── + +RcxEditor::EndEditInfo RcxEditor::endInlineEdit() { + EndEditInfo info{m_editState.nodeIdx, m_editState.subLine, m_editState.target}; + m_editState.active = false; + m_sci->setReadOnly(true); + m_sci->SendScintilla(QsciScintillaBase::SCI_SETUNDOCOLLECTION, (long)1); + m_sci->SendScintilla(QsciScintillaBase::SCI_EMPTYUNDOBUFFER); + return info; +} + +// ── Span helpers ── + +static ColumnSpan headerNameSpan(const LineMeta& lm, const QString& lineText) { + if (lm.lineKind != LineKind::Header) return {}; + int bracePos = lineText.lastIndexOf(QStringLiteral(" {")); + if (bracePos <= 0) return {}; + int ind = kFoldCol + lm.depth * 3; + int typeEnd = lineText.indexOf(' ', ind); + if (typeEnd <= ind || typeEnd >= bracePos) return {}; + return {typeEnd + 1, bracePos, true}; +} + +RcxEditor::NormalizedSpan RcxEditor::normalizeSpan( + const ColumnSpan& raw, const QString& lineText, + EditTarget target, bool skipPrefixes) const +{ + if (!raw.valid) return {}; + int textLen = lineText.size(); + if (raw.start >= textLen) return {}; + + int start = raw.start; + int end = qMin(raw.end, textLen); + if (end <= start) return {}; + + if (skipPrefixes && target == EditTarget::Value) { + QString spanText = lineText.mid(start, end - start); + int arrow = spanText.indexOf(QStringLiteral("->")); + if (arrow >= 0) { + int i = arrow + 2; + while (i < spanText.size() && spanText[i].isSpace()) i++; + start += i; + } else { + int eq = spanText.indexOf('='); + if (eq >= 0 && eq <= 3) { + int i = eq + 1; + while (i < spanText.size() && spanText[i].isSpace()) i++; + start += i; + } + } + if (start >= end) return {}; + } + + QString inner = lineText.mid(start, end - start); + int lead = 0; + while (lead < inner.size() && inner[lead].isSpace()) lead++; + int trail = inner.size(); + while (trail > lead && inner[trail - 1].isSpace()) trail--; + if (trail <= lead) return {}; + + return {start + lead, start + trail, true}; +} + +// ── Double-click hit test ── + +static bool hitTestTarget(QsciScintilla* sci, + const QVector& meta, + const QPoint& viewportPos, + int& outLine, EditTarget& outTarget) +{ + long pos = sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMPOINTCLOSE, + (unsigned long)viewportPos.x(), (long)viewportPos.y()); + if (pos < 0) return false; + int line = (int)sci->SendScintilla(QsciScintillaBase::SCI_LINEFROMPOSITION, + (unsigned long)pos); + int col = (int)sci->SendScintilla(QsciScintillaBase::SCI_GETCOLUMN, + (unsigned long)pos); + if (line < 0 || line >= meta.size()) return false; + + QString lineText = getLineText(sci, line); + int textLen = lineText.size(); + + const LineMeta& lm = meta[line]; + ColumnSpan ts = RcxEditor::typeSpan(lm); + ColumnSpan ns = RcxEditor::nameSpan(lm); + ColumnSpan vs = RcxEditor::valueSpan(lm, textLen); + + if (!ns.valid) + ns = headerNameSpan(lm, lineText); + + auto inSpan = [&](const ColumnSpan& s) { + return s.valid && col >= s.start && col < s.end; + }; + + if (inSpan(ts)) outTarget = EditTarget::Type; + else if (inSpan(ns)) outTarget = EditTarget::Name; + else if (inSpan(vs)) outTarget = EditTarget::Value; + else return false; + + outLine = line; + return true; +} + +// ── Event filter ── + +bool RcxEditor::eventFilter(QObject* obj, QEvent* event) { + if (obj == m_sci && event->type() == QEvent::KeyPress) { + auto* ke = static_cast(event); + return m_editState.active ? handleEditKey(ke) : handleNormalKey(ke); + } + if (obj == m_sci->viewport() && event->type() == QEvent::MouseButtonPress + && m_editState.active) { + // Only commit if click is outside the active edit span + auto* me = static_cast(event); + long pos = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMPOINTCLOSE, + (unsigned long)me->pos().x(), (long)me->pos().y()); + bool insideEdit = false; + if (pos >= 0) { + int clickLine = (int)m_sci->SendScintilla( + QsciScintillaBase::SCI_LINEFROMPOSITION, (unsigned long)pos); + int clickCol = (int)m_sci->SendScintilla( + QsciScintillaBase::SCI_GETCOLUMN, (unsigned long)pos); + if (clickLine == m_editState.line) { + QString lineText = getLineText(m_sci, m_editState.line); + int delta = lineText.size() - m_editState.linelenAfterReplace; + int editEnd = m_editState.spanStart + m_editState.original.size() + delta; + insideEdit = (clickCol >= m_editState.spanStart && clickCol < editEnd); + } + } + if (!insideEdit) + commitInlineEdit(); + return false; // always let click through to Scintilla + } + // Single-click on fold column (" - " / " + ") toggles fold + // Other left-clicks emit nodeClicked for selection + if (obj == m_sci->viewport() && !m_editState.active + && event->type() == QEvent::MouseButtonPress) { + auto* me = static_cast(event); + if (me->button() == Qt::LeftButton) { + long pos = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMPOINTCLOSE, + (unsigned long)me->pos().x(), (long)me->pos().y()); + if (pos >= 0) { + int line = (int)m_sci->SendScintilla( + QsciScintillaBase::SCI_LINEFROMPOSITION, (unsigned long)pos); + int col = (int)m_sci->SendScintilla( + QsciScintillaBase::SCI_GETCOLUMN, (unsigned long)pos); + if (col < kFoldCol && line >= 0 && line < m_meta.size() + && m_meta[line].foldHead) { + emit marginClicked(0, line, me->modifiers()); + return true; + } + // Selection click — emit for controller to manage + if (line >= 0 && line < m_meta.size()) { + uint64_t nid = m_meta[line].nodeId; + if (nid != 0) + emit nodeClicked(line, nid, me->modifiers()); + } + } + } + } + if (obj == m_sci->viewport() && !m_editState.active + && event->type() == QEvent::MouseButtonDblClick) { + auto* me = static_cast(event); + int line; EditTarget t; + if (hitTestTarget(m_sci, m_meta, me->pos(), line, t)) + return beginInlineEdit(t, line); + } + if (obj == m_sci && event->type() == QEvent::FocusOut) { + auto* fe = static_cast(event); + // Commit active edit on focus loss (click-away = save) + // Deferred so autocomplete popup has time to register as active + if (m_editState.active && fe->reason() != Qt::PopupFocusReason) { + QTimer::singleShot(0, this, [this]() { + if (m_editState.active && !m_sci->hasFocus() + && !m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCACTIVE)) + commitInlineEdit(); + }); + } + // Clear underlines when editor loses focus + if (m_hintLine >= 0) { + long start = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMLINE, (unsigned long)m_hintLine); + long len = m_sci->SendScintilla(QsciScintillaBase::SCI_LINELENGTH, (unsigned long)m_hintLine); + m_sci->SendScintilla(QsciScintillaBase::SCI_SETINDICATORCURRENT, IND_EDITABLE); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORCLEARRANGE, start, len); + m_hintLine = -1; + } + } + if (obj == m_sci && event->type() == QEvent::FocusIn) { + int line, col; + m_sci->getCursorPosition(&line, &col); + updateEditableUnderline(line); + } + if (obj == m_sci->viewport() && !m_editState.active) { + if (event->type() == QEvent::MouseMove) { + m_lastHoverPos = static_cast(event)->pos(); + m_hoverInside = true; + } else if (event->type() == QEvent::Leave) { + m_hoverInside = false; + m_hoveredNodeId = 0; + applyHoverHighlight(); + } else if (event->type() == QEvent::Wheel) { + m_lastHoverPos = m_sci->viewport()->mapFromGlobal(QCursor::pos()); + m_hoverInside = m_sci->viewport()->rect().contains(m_lastHoverPos); + } + // Resolve hovered nodeId on move/wheel + if (event->type() == QEvent::MouseMove + || event->type() == QEvent::Wheel) { + long pos = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMPOINTCLOSE, + (unsigned long)m_lastHoverPos.x(), + (long)m_lastHoverPos.y()); + uint64_t newHoverId = 0; + if (pos >= 0 && m_hoverInside) { + int hLine = (int)m_sci->SendScintilla( + QsciScintillaBase::SCI_LINEFROMPOSITION, (unsigned long)pos); + if (hLine >= 0 && hLine < m_meta.size()) + newHoverId = m_meta[hLine].nodeId; + } + if (newHoverId != m_hoveredNodeId) { + m_hoveredNodeId = newHoverId; + applyHoverHighlight(); + } + } + if (event->type() == QEvent::MouseMove + || event->type() == QEvent::Leave + || event->type() == QEvent::Wheel) + applyHoverCursor(); + } + return QWidget::eventFilter(obj, event); +} + +// ── Normal mode key handling ── + +bool RcxEditor::handleNormalKey(QKeyEvent* ke) { + switch (ke->key()) { + case Qt::Key_F2: + return beginInlineEdit(EditTarget::Name); + case Qt::Key_T: + if (ke->modifiers() == Qt::NoModifier) + return beginInlineEdit(EditTarget::Type); + return false; + case Qt::Key_Return: + case Qt::Key_Enter: + return beginInlineEdit(EditTarget::Value); + default: + return false; + } +} + +// ── Edit mode key handling ── + +bool RcxEditor::handleEditKey(QKeyEvent* ke) { + bool autocActive = m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCACTIVE); + + switch (ke->key()) { + case Qt::Key_Return: + case Qt::Key_Enter: + case Qt::Key_Tab: + if (autocActive) { + if (m_editState.target == EditTarget::Type) { + // Extract selected typeName directly from autocomplete + QByteArray buf(256, '\0'); + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCGETCURRENTTEXT, + (unsigned long)256, (void*)buf.data()); + QString selectedType = QString::fromUtf8(buf.constData()); + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCCANCEL); + + auto info = endInlineEdit(); + emit inlineEditCommitted(info.nodeIdx, info.subLine, EditTarget::Type, selectedType); + return true; + } + // Other targets: let Scintilla complete, then auto-commit + QTimer::singleShot(0, this, &RcxEditor::commitInlineEdit); + return false; + } + commitInlineEdit(); + return true; + case Qt::Key_Escape: + if (autocActive) { + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCCANCEL); + return true; // close popup, stay in edit mode + } + cancelInlineEdit(); + return true; + case Qt::Key_Up: + case Qt::Key_Down: + case Qt::Key_PageUp: + case Qt::Key_PageDown: + if (autocActive) return false; // let Scintilla navigate list + return true; // block line navigation + case Qt::Key_Delete: + return true; // block to prevent eating trailing content + case Qt::Key_Left: + case Qt::Key_Backspace: { + int line, col; + m_sci->getCursorPosition(&line, &col); + if (col <= m_editState.spanStart) return true; + return false; + } + case Qt::Key_Home: + m_sci->setCursorPosition(m_editState.line, m_editState.spanStart); + return true; + default: + return false; + } +} + +// ── Begin inline edit ── + +bool RcxEditor::beginInlineEdit(EditTarget target, int line) { + if (m_editState.active) return false; + if (m_cursorOverridden) { + QApplication::restoreOverrideCursor(); + m_cursorOverridden = false; + } + m_hoveredNodeId = 0; + applyHoverHighlight(); + + if (line >= 0) { + m_sci->setCursorPosition(line, 0); + } + int col; + m_sci->getCursorPosition(&line, &col); + auto* lm = metaForLine(line); + if (!lm || lm->nodeIdx < 0) return false; + + QString lineText = getLineText(m_sci, line); + int textLen = lineText.size(); + + ColumnSpan span; + switch (target) { + case EditTarget::Type: span = typeSpan(*lm); break; + case EditTarget::Name: span = nameSpan(*lm); break; + case EditTarget::Value: span = valueSpan(*lm, textLen); break; + } + + if (!span.valid && target == EditTarget::Name) + span = headerNameSpan(*lm, lineText); + + auto norm = normalizeSpan(span, lineText, target, /*skipPrefixes=*/true); + if (!norm.valid) return false; + + QString trimmed = lineText.mid(norm.start, norm.end - norm.start); + + m_editState.active = true; + m_editState.line = line; + m_editState.nodeIdx = lm->nodeIdx; + m_editState.subLine = lm->subLine; + m_editState.target = target; + m_editState.spanStart = norm.start; + m_editState.original = trimmed; + m_editState.linelenAfterReplace = textLen; + + // Disable Scintilla undo during inline edit + m_sci->SendScintilla(QsciScintillaBase::SCI_SETUNDOCOLLECTION, (long)0); + m_sci->setReadOnly(false); + + // Select just the trimmed text (keeps columns aligned) + long lineStart = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMLINE, + (unsigned long)line); + long posSelStart = lineStart + m_editState.spanStart; + long posSelEnd = posSelStart + trimmed.toUtf8().size(); + m_sci->SendScintilla(QsciScintillaBase::SCI_SETSEL, posSelStart, posSelEnd); + + if (target == EditTarget::Type) + QTimer::singleShot(0, this, &RcxEditor::showTypeAutocomplete); + + return true; +} + +// ── Commit inline edit ── + +void RcxEditor::commitInlineEdit() { + if (!m_editState.active) return; + + QString lineText = getLineText(m_sci, m_editState.line); + int currentLen = lineText.size(); + int delta = currentLen - m_editState.linelenAfterReplace; + int editedLen = m_editState.original.size() + delta; + + QString editedText; + if (editedLen > 0) + editedText = lineText.mid(m_editState.spanStart, editedLen).trimmed(); + + auto info = endInlineEdit(); + emit inlineEditCommitted(info.nodeIdx, info.subLine, info.target, editedText); +} + +// ── Cancel inline edit ── + +void RcxEditor::cancelInlineEdit() { + if (!m_editState.active) return; + + endInlineEdit(); + emit inlineEditCancelled(); +} + +// ── Type autocomplete ── + +void RcxEditor::showTypeAutocomplete() { + if (!m_editState.active || m_editState.target != EditTarget::Type) + return; + + // Collapse selection to start — old type text stays visible + long lineStart = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMLINE, + (unsigned long)m_editState.line); + long posStart = lineStart + m_editState.spanStart; + m_sci->SendScintilla(QsciScintillaBase::SCI_GOTOPOS, posStart); + + // Build list from typeName (matches what the editor displays) + QStringList types; + for (const auto& m : kKindMeta) + types << m.typeName; + types.sort(Qt::CaseInsensitive); + + QByteArray list = types.join(QChar(' ')).toUtf8(); + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCSETSEPARATOR, (long)' '); + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCSETIGNORECASE, (long)1); + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCSETDROPRESTOFWORD, (long)1); + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCSHOW, + (uintptr_t)0, list.constData()); + + // Highlight the current type in the list + QByteArray cur = m_editState.original.toUtf8(); + m_sci->SendScintilla(QsciScintillaBase::SCI_AUTOCSELECT, + (uintptr_t)0, cur.constData()); + + long pos = m_sci->SendScintilla(QsciScintillaBase::SCI_GETCURRENTPOS); + int x = (int)m_sci->SendScintilla(QsciScintillaBase::SCI_POINTXFROMPOSITION, 0, pos); + int y = (int)m_sci->SendScintilla(QsciScintillaBase::SCI_POINTYFROMPOSITION, 0, pos); + QToolTip::showText( + m_sci->viewport()->mapToGlobal(QPoint(x, y + 20)), + QStringLiteral("Type to filter \u2022 \u2191/\u2193 select \u2022 Enter apply \u2022 Esc cancel"), + m_sci); +} + +// ── Editable-field underline indicator ── + +void RcxEditor::updateEditableUnderline(int line) { + if (m_editState.active) return; + if (line == m_hintLine) return; + + auto clearLine = [&](int l) { + if (l < 0) return; + long start = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMLINE, (unsigned long)l); + long len = m_sci->SendScintilla(QsciScintillaBase::SCI_LINELENGTH, (unsigned long)l); + m_sci->SendScintilla(QsciScintillaBase::SCI_SETINDICATORCURRENT, IND_EDITABLE); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORCLEARRANGE, start, len); + }; + + clearLine(m_hintLine); + m_hintLine = line; + + const LineMeta* lm = metaForLine(line); + if (!lm || lm->nodeIdx < 0) return; + + QString lineText = getLineText(m_sci, line); + int textLen = lineText.size(); + + ColumnSpan ts = typeSpan(*lm); + ColumnSpan ns = nameSpan(*lm); + ColumnSpan vs = valueSpan(*lm, textLen); + + if (!ns.valid) + ns = headerNameSpan(*lm, lineText); + + auto underlineSpan = [&](ColumnSpan s, EditTarget tgt) { + auto norm = normalizeSpan(s, lineText, tgt, /*skipPrefixes=*/true); + if (!norm.valid) return; + + long lineStart = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMLINE, (unsigned long)line); + m_sci->SendScintilla(QsciScintillaBase::SCI_SETINDICATORCURRENT, IND_EDITABLE); + m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORFILLRANGE, + lineStart + norm.start, norm.end - norm.start); + }; + + underlineSpan(ts, EditTarget::Type); + underlineSpan(ns, EditTarget::Name); + underlineSpan(vs, EditTarget::Value); +} + +// ── Hover cursor (coalesced) ── + +void RcxEditor::applyHoverCursor() { + if (m_editState.active || !m_hoverInside + || !m_sci->viewport()->underMouse()) { + if (m_cursorOverridden) { + QApplication::restoreOverrideCursor(); + m_cursorOverridden = false; + } + return; + } + + int line; EditTarget t; + bool interactive = hitTestTarget(m_sci, m_meta, m_lastHoverPos, line, t); + + // Also show pointer cursor for fold column on fold-head lines + if (!interactive) { + long pos = m_sci->SendScintilla(QsciScintillaBase::SCI_POSITIONFROMPOINTCLOSE, + (unsigned long)m_lastHoverPos.x(), + (long)m_lastHoverPos.y()); + if (pos >= 0) { + int hLine = (int)m_sci->SendScintilla( + QsciScintillaBase::SCI_LINEFROMPOSITION, (unsigned long)pos); + int hCol = (int)m_sci->SendScintilla( + QsciScintillaBase::SCI_GETCOLUMN, (unsigned long)pos); + if (hCol < kFoldCol && hLine >= 0 && hLine < m_meta.size() + && m_meta[hLine].foldHead) + interactive = true; + } + } + + if (interactive && !m_cursorOverridden) { + QApplication::setOverrideCursor(Qt::PointingHandCursor); + m_cursorOverridden = true; + } else if (!interactive && m_cursorOverridden) { + QApplication::restoreOverrideCursor(); + m_cursorOverridden = false; + } +} + +} // namespace rcx diff --git a/src/editor.h b/src/editor.h new file mode 100644 index 0000000..626f7a6 --- /dev/null +++ b/src/editor.h @@ -0,0 +1,109 @@ +#pragma once +#include "core.h" +#include +#include +#include + +class QsciScintilla; +class QsciLexerCPP; + +namespace rcx { + +class RcxEditor : public QWidget { + Q_OBJECT +public: + explicit RcxEditor(QWidget* parent = nullptr); + + void applyDocument(const ComposeResult& result); + + ViewState saveViewState() const; + void restoreViewState(const ViewState& vs); + + QsciScintilla* scintilla() const { return m_sci; } + const LineMeta* metaForLine(int line) const; + int currentNodeIndex() const; + + // ── Column span computation ── + static ColumnSpan typeSpan(const LineMeta& lm); + static ColumnSpan nameSpan(const LineMeta& lm); + static ColumnSpan valueSpan(const LineMeta& lm, int lineLength); + + // ── Multi-selection ── + QSet selectedNodeIndices() const; + + // ── Inline editing ── + bool isEditing() const { return m_editState.active; } + bool beginInlineEdit(EditTarget target, int line = -1); + void cancelInlineEdit(); + + void applySelectionOverlay(const QSet& selIds); + +signals: + void marginClicked(int margin, int line, Qt::KeyboardModifiers mods); + void contextMenuRequested(int line, int nodeIdx, int subLine, QPoint globalPos); + void nodeClicked(int line, uint64_t nodeId, Qt::KeyboardModifiers mods); + void inlineEditCommitted(int nodeIdx, int subLine, + EditTarget target, const QString& text); + void inlineEditCancelled(); + +protected: + bool eventFilter(QObject* obj, QEvent* event) override; + +private: + QsciScintilla* m_sci = nullptr; + QsciLexerCPP* m_lexer = nullptr; + QVector m_meta; + + int m_marginStyleBase = -1; + int m_hintLine = -1; + + // ── Hover cursor + highlight ── + QPoint m_lastHoverPos; + bool m_hoverInside = false; + bool m_cursorOverridden = false; + uint64_t m_hoveredNodeId = 0; + QSet m_currentSelIds; + + // ── Inline edit state ── + struct InlineEditState { + bool active = false; + int line = -1; + int nodeIdx = -1; + int subLine = 0; + EditTarget target = EditTarget::Name; + int spanStart = 0; + int linelenAfterReplace = 0; + QString original; + }; + InlineEditState m_editState; + + void setupScintilla(); + void setupLexer(); + void setupMargins(); + void setupFolding(); + void setupMarkers(); + void allocateMarginStyles(); + + void applyMarginText(const QVector& meta); + void applyMarkers(const QVector& meta); + void applyFoldLevels(const QVector& meta); + void applyHexDimming(const QVector& meta); + + void commitInlineEdit(); + bool handleNormalKey(QKeyEvent* ke); + bool handleEditKey(QKeyEvent* ke); + void showTypeAutocomplete(); + void updateEditableUnderline(int line); + void applyHoverCursor(); + void applyHoverHighlight(); + + // ── Refactored helpers ── + struct EndEditInfo { int nodeIdx; int subLine; EditTarget target; }; + EndEditInfo endInlineEdit(); + + struct NormalizedSpan { int start = 0; int end = 0; bool valid = false; }; + NormalizedSpan normalizeSpan(const ColumnSpan& raw, const QString& lineText, + EditTarget target, bool skipPrefixes) const; +}; + +} // namespace rcx diff --git a/src/format.cpp b/src/format.cpp new file mode 100644 index 0000000..16f3653 --- /dev/null +++ b/src/format.cpp @@ -0,0 +1,364 @@ +#include "core.h" +#include +#include + +namespace rcx::fmt { + +// ── Column layout ── +// COL_TYPE and COL_NAME use shared constants from core.h (kColType, kColName) +static constexpr int COL_TYPE = kColType; +static constexpr int COL_NAME = kColName; +static constexpr int COL_VALUE = 22; +static const QString SEP = QStringLiteral(" "); + +static QString fit(QString s, int w) { + if (w <= 0) return {}; + if (s.size() > w) { + if (w >= 2) s = s.left(w - 1) + QChar(0x2026); // ellipsis + else s = s.left(w); + } + return s.leftJustified(w, ' '); +} + +// ── Type name ── + +// Override seam: injectable type-name provider +static TypeNameFn g_typeNameFn = nullptr; + +void setTypeNameProvider(TypeNameFn fn) { g_typeNameFn = fn; } + +QString typeName(NodeKind kind) { + if (g_typeNameFn) return fit(g_typeNameFn(kind), COL_TYPE); + auto* m = kindMeta(kind); + return fit(m ? QString::fromLatin1(m->typeName) : QStringLiteral("???"), COL_TYPE); +} + +// ── Value formatting ── + +static QString hexStr(uint64_t v, int digits) { + return QStringLiteral("0x") + QString::number(v, 16).toUpper().rightJustified(digits, '0'); +} + +static QString rawHex(uint64_t v, int digits) { + return QString::number(v, 16).toUpper().rightJustified(digits, '0'); +} + +QString fmtInt8(int8_t v) { return QString::number(v); } +QString fmtInt16(int16_t v) { return QString::number(v); } +QString fmtInt32(int32_t v) { return QString::number(v); } +QString fmtInt64(int64_t v) { return QString::number(v); } +QString fmtUInt8(uint8_t v) { return QString::number(v); } +QString fmtUInt16(uint16_t v) { return QString::number(v); } +QString fmtUInt32(uint32_t v) { return QString::number(v); } +QString fmtUInt64(uint64_t v) { return QString::number(v); } + +QString fmtFloat(float v) { return QString::number(v, 'f', 3); } +QString fmtDouble(double v) { return QString::number(v, 'f', 6); } +QString fmtBool(uint8_t v) { return v ? QStringLiteral("true") : QStringLiteral("false"); } + +QString fmtPointer32(uint32_t v) { + if (v == 0) return QStringLiteral("-> NULL"); + return QStringLiteral("-> ") + hexStr(v, 8); +} + +QString fmtPointer64(uint64_t v) { + if (v == 0) return QStringLiteral("-> NULL"); + return QStringLiteral("-> ") + hexStr(v, 16); +} + +// ── Indentation ── + +QString indent(int depth) { + return QString(depth * 3, ' '); +} + +// ── Offset margin ── + +QString fmtOffsetMargin(int64_t relativeOffset, bool isContinuation) { + if (isContinuation) return QStringLiteral(" \u00B7"); + return QStringLiteral("+0x") + QString::number(relativeOffset, 16).toUpper(); +} + +// ── Struct header / footer ── + +QString fmtStructHeader(const Node& node, int depth) { + return indent(depth) + typeName(node.kind).trimmed() + + QStringLiteral(" ") + node.name + QStringLiteral(" {"); +} + +QString fmtStructFooter(const Node& node, int depth, int totalSize) { + QString s = indent(depth) + QStringLiteral("}; // ") + node.name; + if (totalSize > 0) + s += QStringLiteral(" sizeof=0x") + QString::number(totalSize, 16).toUpper(); + return s; +} + +// ── Hex / ASCII preview ── + +static inline bool isAsciiPrintable(uint8_t c) { return c >= 0x20 && c <= 0x7E; } + +static QString bytesToAscii(const QByteArray& b, int slot) { + QString out; + out.reserve(slot); + for (int i = 0; i < slot; ++i) { + uint8_t c = (i < b.size()) ? (uint8_t)b[i] : 0; + out += isAsciiPrintable(c) ? QChar(c) : QChar('.'); + } + return out; +} + +static QString bytesToHex(const QByteArray& b, int slot) { + QString out; + out.reserve(slot * 3); + for (int i = 0; i < slot; ++i) { + uint8_t c = (i < b.size()) ? (uint8_t)b[i] : 0; + out += QString::asprintf("%02X", (unsigned)c); + if (i + 1 < slot) out += ' '; + } + return out; +} + +static QString fmtAsciiAndBytes(const Provider& prov, uint64_t addr, + int sizeBytes, int slotBytes = 8) { + const int slot = qMax(slotBytes, sizeBytes); + QByteArray b = prov.isReadable(addr, slot) + ? prov.readBytes(addr, slot) + : QByteArray(slot, '\0'); + return bytesToAscii(b, slot) + QStringLiteral(" ") + bytesToHex(b, slot); +} + +// ── Single value from provider (unified) ── + +enum class ValueMode { Display, Editable }; + +static QString readValueImpl(const Node& node, const Provider& prov, + uint64_t addr, int subLine, ValueMode mode) { + const bool display = (mode == ValueMode::Display); + switch (node.kind) { + case NodeKind::Hex8: return display ? hexStr(prov.readU8(addr), 2) : rawHex(prov.readU8(addr), 2); + case NodeKind::Hex16: return display ? hexStr(prov.readU16(addr), 4) : rawHex(prov.readU16(addr), 4); + case NodeKind::Hex32: return display ? hexStr(prov.readU32(addr), 8) : rawHex(prov.readU32(addr), 8); + case NodeKind::Hex64: return display ? hexStr(prov.readU64(addr), 16): rawHex(prov.readU64(addr), 16); + case NodeKind::Int8: return fmtInt8((int8_t)prov.readU8(addr)); + case NodeKind::Int16: return fmtInt16((int16_t)prov.readU16(addr)); + case NodeKind::Int32: return fmtInt32((int32_t)prov.readU32(addr)); + case NodeKind::Int64: return fmtInt64((int64_t)prov.readU64(addr)); + case NodeKind::UInt8: return fmtUInt8(prov.readU8(addr)); + case NodeKind::UInt16: return fmtUInt16(prov.readU16(addr)); + case NodeKind::UInt32: return fmtUInt32(prov.readU32(addr)); + case NodeKind::UInt64: return fmtUInt64(prov.readU64(addr)); + case NodeKind::Float: { auto s = fmtFloat(prov.readF32(addr)); return display ? s : s.trimmed(); } + case NodeKind::Double: { auto s = fmtDouble(prov.readF64(addr)); return display ? s : s.trimmed(); } + case NodeKind::Bool: return fmtBool(prov.readU8(addr)); + case NodeKind::Pointer32: return display ? fmtPointer32(prov.readU32(addr)) : rawHex(prov.readU32(addr), 8); + case NodeKind::Pointer64: return display ? fmtPointer64(prov.readU64(addr)) : rawHex(prov.readU64(addr), 16); + case NodeKind::Vec2: + case NodeKind::Vec3: + case NodeKind::Vec4: { + int maxSub = linesForKind(node.kind); + if (subLine < 0 || subLine >= maxSub) return QStringLiteral("?"); + float component = prov.readF32(addr + subLine * 4); + if (!display) return fmtFloat(component).trimmed(); + static const char* labels[] = {"x", "y", "z", "w"}; + return QString(labels[subLine]) + QStringLiteral(" = ") + fmtFloat(component); + } + case NodeKind::Mat4x4: { + if (!display) return {}; // not editable as single value + if (subLine < 0 || subLine >= 4) return QStringLiteral("?"); + QString line = QStringLiteral("["); + for (int c = 0; c < 4; c++) { + if (c > 0) line += QStringLiteral(", "); + line += fmtFloat(prov.readF32(addr + (subLine * 4 + c) * 4)).trimmed(); + } + line += QStringLiteral("]"); + return line; + } + case NodeKind::Padding: return display ? hexStr(prov.readU8(addr), 2) : rawHex(prov.readU8(addr), 2); + case NodeKind::UTF8: { + QByteArray bytes = prov.readBytes(addr, node.strLen); + int end = bytes.indexOf('\0'); + if (end >= 0) bytes.truncate(end); + QString s = QString::fromUtf8(bytes); + return display ? (QStringLiteral("\"") + s + QStringLiteral("\"")) : s; + } + case NodeKind::UTF16: { + QByteArray bytes = prov.readBytes(addr, node.strLen * 2); + QString s = QString::fromUtf16(reinterpret_cast(bytes.data()), + bytes.size() / 2); + int end = s.indexOf(QChar(0)); + if (end >= 0) s.truncate(end); + return display ? (QStringLiteral("L\"") + s + QStringLiteral("\"")) : s; + } + default: + return {}; + } +} + +QString readValue(const Node& node, const Provider& prov, + uint64_t addr, int subLine) { + return readValueImpl(node, prov, addr, subLine, ValueMode::Display); +} + +// ── Full node line ── + +QString fmtNodeLine(const Node& node, const Provider& prov, + uint64_t addr, int depth, int subLine) { + QString ind = indent(depth); + QString type = typeName(node.kind); + QString name = fit(node.name, COL_NAME); + // Blank prefix for continuation lines (same width as type+sep+name+sep) + const int prefixW = COL_TYPE + COL_NAME + 4; // 2 seps × 2 chars + + // Mat4x4: subLine 0..3 = rows + if (node.kind == NodeKind::Mat4x4) { + QString val = readValue(node, prov, addr, subLine); + if (subLine == 0) return ind + type + SEP + name + SEP + val; + return ind + QString(prefixW, ' ') + val; + } + + // For vector types, subLine selects component + if (subLine > 0 && (node.kind == NodeKind::Vec2 || + node.kind == NodeKind::Vec3 || + node.kind == NodeKind::Vec4)) { + QString val = readValue(node, prov, addr, subLine); + return ind + QString(prefixW, ' ') + val; + } + + // Hex nodes and Padding: ASCII preview + hex bytes (compact) + if (node.kind == NodeKind::Hex8 || node.kind == NodeKind::Hex16 || + node.kind == NodeKind::Hex32 || node.kind == NodeKind::Hex64 || + node.kind == NodeKind::Padding) + { + if (node.kind == NodeKind::Padding) { + const int totalSz = qMax(1, node.arrayLen); + const int lineOff = subLine * 8; + const int lineBytes = qMin(8, totalSz - lineOff); + QByteArray b = prov.isReadable(addr + lineOff, lineBytes) + ? prov.readBytes(addr + lineOff, lineBytes) : QByteArray(lineBytes, '\0'); + QString ascii = bytesToAscii(b, lineBytes); + QString hex = bytesToHex(b, lineBytes); + if (subLine == 0) + return ind + type + SEP + ascii + SEP + hex; + return ind + QString(COL_TYPE + (int)SEP.size(), ' ') + ascii + SEP + hex; + } + // Hex8..Hex64: single line, ASCII padded to 8 chars so hex column aligns + const int sz = sizeForKind(node.kind); + QByteArray b = prov.isReadable(addr, sz) + ? prov.readBytes(addr, sz) : QByteArray(sz, '\0'); + QString ascii = bytesToAscii(b, sz).leftJustified(8, ' '); + QString hex = bytesToHex(b, sz); + return ind + type + SEP + ascii + SEP + hex; + } + + QString val = readValue(node, prov, addr, subLine); + return ind + type + SEP + name + SEP + val; +} + +// ── Editable value (parse-friendly form for edit dialog) ── + +QString editableValue(const Node& node, const Provider& prov, + uint64_t addr, int subLine) { + return readValueImpl(node, prov, addr, subLine, ValueMode::Editable); +} + +// ── Value parsing (text → bytes) ── + +template +static QByteArray toBytes(T v) { + QByteArray b(sizeof(T), Qt::Uninitialized); + memcpy(b.data(), &v, sizeof(T)); + return b; +} + +static QString stripHex(const QString& s) { + if (s.startsWith(QStringLiteral("0x"), Qt::CaseInsensitive)) + return s.mid(2); + return s; +} + +// Range-checked narrowing: sets *ok = false if parsed value doesn't fit in T +template +static QByteArray parseIntChecked(ParseT val, bool* ok) { + if (*ok) { + using L = std::numeric_limits; + if constexpr (std::is_signed_v) { + if (val < (ParseT)L::min() || val > (ParseT)L::max()) *ok = false; + } else { + if (val > (ParseT)L::max()) *ok = false; + } + } + return *ok ? toBytes(static_cast(val)) : QByteArray{}; +} + +QByteArray parseValue(NodeKind kind, const QString& text, bool* ok) { + *ok = false; + QString s = text.trimmed(); + + // Allow empty for string types (will produce zero-length content, caller pads) + if (s.isEmpty()) { + if (kind == NodeKind::UTF8 || kind == NodeKind::UTF16) { + *ok = true; + return {}; + } + return {}; + } + + switch (kind) { + case NodeKind::Hex8: { uint val = stripHex(s).remove(' ').toUInt(ok, 16); return parseIntChecked(val, ok); } + case NodeKind::Hex16: { uint val = stripHex(s).remove(' ').toUInt(ok, 16); return parseIntChecked(val, ok); } + case NodeKind::Hex32: { uint val = stripHex(s).remove(' ').toUInt(ok, 16); return *ok ? toBytes(val) : QByteArray{}; } + case NodeKind::Hex64: { qulonglong val = stripHex(s).remove(' ').toULongLong(ok, 16); return *ok ? toBytes(val) : QByteArray{}; } + case NodeKind::Int8: { int val = s.toInt(ok); return parseIntChecked(val, ok); } + case NodeKind::Int16: { int val = s.toInt(ok); return parseIntChecked(val, ok); } + case NodeKind::Int32: { int val = s.toInt(ok); return *ok ? toBytes(val) : QByteArray{}; } + case NodeKind::Int64: { qlonglong val = s.toLongLong(ok); return *ok ? toBytes(val) : QByteArray{}; } + case NodeKind::UInt8: { uint val = s.toUInt(ok); return parseIntChecked(val, ok); } + case NodeKind::UInt16: { uint val = s.toUInt(ok); return parseIntChecked(val, ok); } + case NodeKind::UInt32: { uint val = s.toUInt(ok); return *ok ? toBytes(val) : QByteArray{}; } + case NodeKind::UInt64: { qulonglong val = s.toULongLong(ok); return *ok ? toBytes(val) : QByteArray{}; } + case NodeKind::Float: { + float val = s.toFloat(ok); + return *ok ? toBytes(val) : QByteArray{}; + } + case NodeKind::Double: { + double val = s.toDouble(ok); + return *ok ? toBytes(val) : QByteArray{}; + } + case NodeKind::Bool: { + if (s == QStringLiteral("true") || s == QStringLiteral("1")) { + *ok = true; return toBytes(1); + } + if (s == QStringLiteral("false") || s == QStringLiteral("0")) { + *ok = true; return toBytes(0); + } + return {}; // unknown token → ok stays false + } + case NodeKind::Pointer32: { + uint val = stripHex(s).toUInt(ok, 16); + return *ok ? toBytes(val) : QByteArray{}; + } + case NodeKind::Pointer64: { + qulonglong val = stripHex(s).toULongLong(ok, 16); + return *ok ? toBytes(val) : QByteArray{}; + } + case NodeKind::UTF8: { + *ok = true; + if (s.startsWith('"') && s.endsWith('"')) + s = s.mid(1, s.size() - 2); + return s.toUtf8(); + } + case NodeKind::UTF16: { + *ok = true; + if (s.startsWith(QStringLiteral("L\""))) s = s.mid(2); + else if (s.startsWith('"')) s = s.mid(1); + if (s.endsWith('"')) s.chop(1); + QByteArray b(s.size() * 2, Qt::Uninitialized); + memcpy(b.data(), s.utf16(), s.size() * 2); + return b; + } + default: + return {}; + } +} + +} // namespace rcx::fmt diff --git a/src/icons.qrc b/src/icons.qrc new file mode 100644 index 0000000..502050b --- /dev/null +++ b/src/icons.qrc @@ -0,0 +1,6 @@ + + + icons/chevron-right.png + icons/chevron-down.png + + diff --git a/src/icons/chevron-down.png b/src/icons/chevron-down.png new file mode 100644 index 0000000000000000000000000000000000000000..d33e9cb38544b0de5a3a0864b7c1bbe61936c70b GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP%z!o z#WAE}PI7_->lN1dcDBMxJ8~a?hl!6MVIVjX&fhKB|bPi+q?#-(C*jAyR&Qk=i5DP^6p`J a#mtZyAIWMbJHrQPC4;A{pUXO@geCyczC|Vg literal 0 HcmV?d00001 diff --git a/src/icons/chevron-right.png b/src/icons/chevron-right.png new file mode 100644 index 0000000000000000000000000000000000000000..8defe9e21f46e85abc9b190ed979dd202669399e GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP%y#M z#WAE}&eJouIU5{!TrTP!DsmBU(K%}L#%+W2=?f~8-B~y3rX1woYcRjq>t`CD71Q?# zY)mhBYgS&G;dZ9NNMO6t=H?~5f{`*UYDcDi-}PjsS-6$*qTi=?ra5K*`cuW9YM%Jd T{J4e*&@Ki~S3j3^P6 +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef _WIN32 +#include +#include +#include + +static LONG WINAPI crashHandler(EXCEPTION_POINTERS* ep) { + fprintf(stderr, "\n=== UNHANDLED EXCEPTION ===\n"); + fprintf(stderr, "Code : 0x%08lX\n", ep->ExceptionRecord->ExceptionCode); + fprintf(stderr, "Addr : %p\n", ep->ExceptionRecord->ExceptionAddress); + + HANDLE process = GetCurrentProcess(); + HANDLE thread = GetCurrentThread(); + SymSetOptions(SYMOPT_LOAD_LINES | SYMOPT_UNDNAME); + SymInitialize(process, NULL, TRUE); + + CONTEXT* ctx = ep->ContextRecord; + STACKFRAME64 frame = {}; + DWORD machineType; +#ifdef _M_X64 + machineType = IMAGE_FILE_MACHINE_AMD64; + frame.AddrPC.Offset = ctx->Rip; + frame.AddrFrame.Offset = ctx->Rbp; + frame.AddrStack.Offset = ctx->Rsp; +#else + machineType = IMAGE_FILE_MACHINE_I386; + frame.AddrPC.Offset = ctx->Eip; + frame.AddrFrame.Offset = ctx->Ebp; + frame.AddrStack.Offset = ctx->Esp; +#endif + frame.AddrPC.Mode = AddrModeFlat; + frame.AddrFrame.Mode = AddrModeFlat; + frame.AddrStack.Mode = AddrModeFlat; + + fprintf(stderr, "\nStack trace:\n"); + for (int i = 0; i < 64; i++) { + if (!StackWalk64(machineType, process, thread, &frame, ctx, + NULL, SymFunctionTableAccess64, + SymGetModuleBase64, NULL)) + break; + if (frame.AddrPC.Offset == 0) break; + + char buf[sizeof(SYMBOL_INFO) + 256]; + SYMBOL_INFO* sym = reinterpret_cast(buf); + sym->SizeOfStruct = sizeof(SYMBOL_INFO); + sym->MaxNameLen = 255; + + DWORD64 disp64 = 0; + DWORD disp32 = 0; + IMAGEHLP_LINE64 line = {}; + line.SizeOfStruct = sizeof(line); + + bool hasSym = SymFromAddr(process, frame.AddrPC.Offset, &disp64, sym); + bool hasLine = SymGetLineFromAddr64(process, frame.AddrPC.Offset, + &disp32, &line); + if (hasSym && hasLine) { + fprintf(stderr, " [%2d] %s+0x%llx (%s:%lu)\n", + i, sym->Name, (unsigned long long)disp64, + line.FileName, line.LineNumber); + } else if (hasSym) { + fprintf(stderr, " [%2d] %s+0x%llx\n", + i, sym->Name, (unsigned long long)disp64); + } else { + fprintf(stderr, " [%2d] 0x%llx\n", + i, (unsigned long long)frame.AddrPC.Offset); + } + } + + SymCleanup(process); + fprintf(stderr, "=== END CRASH ===\n"); + fflush(stderr); + return EXCEPTION_EXECUTE_HANDLER; +} +#endif + +namespace rcx { + +class MainWindow : public QMainWindow { + Q_OBJECT +public: + explicit MainWindow(QWidget* parent = nullptr); + +private slots: + void newFile(); + void openFile(); + void saveFile(); + void saveFileAs(); + void loadBinary(); + + void addNode(); + void removeNode(); + void changeNodeType(); + void renameNodeAction(); + void splitView(); + void unsplitView(); + + void undo(); + void redo(); + void about(); + +private: + QMdiArea* m_mdiArea; + QLabel* m_statusLabel; + + struct TabState { + RcxDocument* doc; + RcxController* ctrl; + QSplitter* splitter; + }; + QMap m_tabs; + + void createMenus(); + void createStatusBar(); + + RcxController* activeController() const; + TabState* activeTab(); + QMdiSubWindow* createTab(RcxDocument* doc); + void updateWindowTitle(); +}; + +MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent) { + setWindowTitle("ReclassX"); + resize(1200, 800); + + m_mdiArea = new QMdiArea(this); + m_mdiArea->setViewMode(QMdiArea::TabbedView); + m_mdiArea->setTabsClosable(true); + m_mdiArea->setTabsMovable(true); + setCentralWidget(m_mdiArea); + + createMenus(); + createStatusBar(); + + connect(m_mdiArea, &QMdiArea::subWindowActivated, + this, [this](QMdiSubWindow*) { updateWindowTitle(); }); +} + +void MainWindow::createMenus() { + // File + auto* file = menuBar()->addMenu("&File"); + file->addAction("&New", QKeySequence::New, this, &MainWindow::newFile); + file->addAction("&Open...", QKeySequence::Open, this, &MainWindow::openFile); + file->addSeparator(); + file->addAction("&Save", QKeySequence::Save, this, &MainWindow::saveFile); + file->addAction("Save &As...", QKeySequence::SaveAs, this, &MainWindow::saveFileAs); + file->addSeparator(); + file->addAction("Load &Binary...", this, &MainWindow::loadBinary); + file->addSeparator(); + file->addAction("E&xit", QKeySequence::Quit, this, &QMainWindow::close); + + // Edit + auto* edit = menuBar()->addMenu("&Edit"); + edit->addAction("&Undo", QKeySequence::Undo, this, &MainWindow::undo); + edit->addAction("&Redo", QKeySequence::Redo, this, &MainWindow::redo); + + // View + auto* view = menuBar()->addMenu("&View"); + view->addAction("Split &Horizontal", this, &MainWindow::splitView); + view->addAction("&Unsplit", this, &MainWindow::unsplitView); + + // Node + auto* node = menuBar()->addMenu("&Node"); + node->addAction("&Add Field", QKeySequence(Qt::Key_Insert), this, &MainWindow::addNode); + node->addAction("&Remove Field", QKeySequence::Delete, this, &MainWindow::removeNode); + auto* actType = node->addAction("Change &Type", this, &MainWindow::changeNodeType); + actType->setText("Change &Type\tT"); + auto* actName = node->addAction("Re&name", this, &MainWindow::renameNodeAction); + actName->setText("Re&name\tF2"); + + // Help + auto* help = menuBar()->addMenu("&Help"); + help->addAction("&About ReclassX", this, &MainWindow::about); +} + +void MainWindow::createStatusBar() { + m_statusLabel = new QLabel("Ready"); + statusBar()->addWidget(m_statusLabel, 1); + statusBar()->setStyleSheet("QStatusBar { background: #252526; color: #858585; }"); +} + +QMdiSubWindow* MainWindow::createTab(RcxDocument* doc) { + auto* splitter = new QSplitter(Qt::Horizontal); + auto* ctrl = new RcxController(doc, splitter); + ctrl->addSplitEditor(splitter); + + auto* sub = m_mdiArea->addSubWindow(splitter); + sub->setWindowTitle(doc->filePath.isEmpty() + ? "Untitled" : QFileInfo(doc->filePath).fileName()); + sub->setAttribute(Qt::WA_DeleteOnClose); + sub->showMaximized(); + + m_tabs[sub] = { doc, ctrl, splitter }; + + connect(sub, &QObject::destroyed, this, [this, sub]() { + auto it = m_tabs.find(sub); + if (it != m_tabs.end()) { + it->doc->deleteLater(); + m_tabs.erase(it); + } + }); + + connect(ctrl, &RcxController::nodeSelected, + this, [this, ctrl](int nodeIdx) { + if (nodeIdx >= 0 && nodeIdx < ctrl->document()->tree.nodes.size()) { + auto& node = ctrl->document()->tree.nodes[nodeIdx]; + m_statusLabel->setText( + QString("%1 %2 offset: +0x%3 size: %4 bytes") + .arg(kindToString(node.kind)) + .arg(node.name) + .arg(node.offset, 4, 16, QChar('0')) + .arg(node.byteSize())); + } else { + m_statusLabel->setText("Ready"); + } + }); + + ctrl->refresh(); + return sub; +} + +void MainWindow::newFile() { + auto* doc = new RcxDocument(this); + + // Autoload self as binary data + doc->loadData(QCoreApplication::applicationFilePath()); + doc->tree.baseAddress = 0; + + // Read e_lfanew to find PE header offset + uint32_t lfanew = doc->provider->readU32(0x3C); + if (lfanew < 0x40 || lfanew >= (uint32_t)doc->provider->size()) + lfanew = 0x40; + uint32_t pe = lfanew; // PE signature + uint32_t fh = pe + 4; // IMAGE_FILE_HEADER + uint32_t oh = fh + 20; // IMAGE_OPTIONAL_HEADER (PE32+) + + Node root; + root.kind = NodeKind::Struct; + root.name = "PE_HEADER"; + root.parentId = 0; + root.offset = 0; + int ri = doc->tree.addNode(root); + uint64_t rootId = doc->tree.nodes[ri].id; + + auto add = [&](NodeKind k, const QString& name, int off) { + Node n; + n.kind = k; + n.name = name; + n.offset = off; + n.parentId = rootId; + doc->tree.addNode(n); + }; + + // ── IMAGE_DOS_HEADER (0x00 – 0x3F) ── + add(NodeKind::UInt16, "e_magic", 0x00); + add(NodeKind::UInt16, "e_cblp", 0x02); + add(NodeKind::UInt16, "e_cp", 0x04); + add(NodeKind::UInt16, "e_crlc", 0x06); + add(NodeKind::UInt16, "e_cparhdr", 0x08); + add(NodeKind::UInt16, "e_minalloc", 0x0A); + add(NodeKind::UInt16, "e_maxalloc", 0x0C); + add(NodeKind::UInt16, "e_ss", 0x0E); + add(NodeKind::UInt16, "e_sp", 0x10); + add(NodeKind::UInt16, "e_csum", 0x12); + add(NodeKind::UInt16, "e_ip", 0x14); + add(NodeKind::UInt16, "e_cs", 0x16); + add(NodeKind::UInt16, "e_lfarlc", 0x18); + add(NodeKind::UInt16, "e_ovno", 0x1A); + add(NodeKind::Hex64, "e_res", 0x1C); + add(NodeKind::UInt16, "e_oemid", 0x24); + add(NodeKind::UInt16, "e_oeminfo", 0x26); + add(NodeKind::Hex64, "e_res2_0", 0x28); + add(NodeKind::Hex64, "e_res2_1", 0x30); + add(NodeKind::Hex32, "e_res2_2", 0x38); + add(NodeKind::UInt32, "e_lfanew", 0x3C); + + // ── DOS Stub (0x40 to PE signature) — fill with Hex nodes ── + { + int cursor = 0x40; + while (cursor + 8 <= (int)pe) { + add(NodeKind::Hex64, + QString("stub_%1").arg(cursor, 4, 16, QChar('0')), + cursor); + cursor += 8; + } + if (cursor + 4 <= (int)pe) { + add(NodeKind::Hex32, + QString("stub_%1").arg(cursor, 4, 16, QChar('0')), + cursor); + cursor += 4; + } + if (cursor + 2 <= (int)pe) { + add(NodeKind::Hex16, + QString("stub_%1").arg(cursor, 4, 16, QChar('0')), + cursor); + cursor += 2; + } + if (cursor + 1 <= (int)pe) { + add(NodeKind::Hex8, + QString("stub_%1").arg(cursor, 4, 16, QChar('0')), + cursor); + cursor += 1; + } + } + + // ── PE Signature ── + add(NodeKind::UInt32, "Signature", pe); + + // ── IMAGE_FILE_HEADER (nested struct) ── + { + Node fhStruct; + fhStruct.kind = NodeKind::Struct; + fhStruct.name = "IMAGE_FILE_HEADER"; + fhStruct.parentId = rootId; + fhStruct.offset = fh; + int fi = doc->tree.addNode(fhStruct); + uint64_t fhId = doc->tree.nodes[fi].id; + + auto addFH = [&](NodeKind k, const QString& name, int off) { + Node n; + n.kind = k; + n.name = name; + n.offset = off; + n.parentId = fhId; + doc->tree.addNode(n); + }; + + addFH(NodeKind::UInt16, "Machine", 0x00); + addFH(NodeKind::UInt16, "NumberOfSections", 0x02); + addFH(NodeKind::UInt32, "TimeDateStamp", 0x04); + addFH(NodeKind::UInt32, "PtrToSymbolTable", 0x08); + addFH(NodeKind::UInt32, "NumberOfSymbols", 0x0C); + addFH(NodeKind::UInt16, "SizeOfOptionalHeader", 0x10); + addFH(NodeKind::UInt16, "Characteristics", 0x12); + } + + // ── IMAGE_OPTIONAL_HEADER64 (nested struct) ── + { + Node ohStruct; + ohStruct.kind = NodeKind::Struct; + ohStruct.name = "IMAGE_OPTIONAL_HEADER64"; + ohStruct.parentId = rootId; + ohStruct.offset = oh; + int oi = doc->tree.addNode(ohStruct); + uint64_t ohId = doc->tree.nodes[oi].id; + + auto addOH = [&](NodeKind k, const QString& name, int off) { + Node n; + n.kind = k; + n.name = name; + n.offset = off; + n.parentId = ohId; + doc->tree.addNode(n); + }; + + addOH(NodeKind::UInt16, "Magic", 0x00); + addOH(NodeKind::UInt8, "MajorLinkerVersion", 0x02); + addOH(NodeKind::UInt8, "MinorLinkerVersion", 0x03); + addOH(NodeKind::UInt32, "SizeOfCode", 0x04); + addOH(NodeKind::UInt32, "SizeOfInitData", 0x08); + addOH(NodeKind::UInt32, "SizeOfUninitData", 0x0C); + addOH(NodeKind::UInt32, "AddressOfEntryPoint", 0x10); + addOH(NodeKind::UInt32, "BaseOfCode", 0x14); + addOH(NodeKind::UInt64, "ImageBase", 0x18); + addOH(NodeKind::UInt32, "SectionAlignment", 0x20); + addOH(NodeKind::UInt32, "FileAlignment", 0x24); + addOH(NodeKind::UInt16, "MajorOSVersion", 0x28); + addOH(NodeKind::UInt16, "MinorOSVersion", 0x2A); + addOH(NodeKind::UInt16, "MajorImageVersion", 0x2C); + addOH(NodeKind::UInt16, "MinorImageVersion", 0x2E); + addOH(NodeKind::UInt16, "MajorSubsysVersion", 0x30); + addOH(NodeKind::UInt16, "MinorSubsysVersion", 0x32); + addOH(NodeKind::UInt32, "Win32VersionValue", 0x34); + addOH(NodeKind::UInt32, "SizeOfImage", 0x38); + addOH(NodeKind::UInt32, "SizeOfHeaders", 0x3C); + addOH(NodeKind::UInt32, "CheckSum", 0x40); + addOH(NodeKind::UInt16, "Subsystem", 0x44); + addOH(NodeKind::UInt16, "DllCharacteristics", 0x46); + addOH(NodeKind::UInt64, "SizeOfStackReserve", 0x48); + addOH(NodeKind::UInt64, "SizeOfStackCommit", 0x50); + addOH(NodeKind::UInt64, "SizeOfHeapReserve", 0x58); + addOH(NodeKind::UInt64, "SizeOfHeapCommit", 0x60); + addOH(NodeKind::UInt32, "LoaderFlags", 0x68); + addOH(NodeKind::UInt32, "NumberOfRvaAndSizes", 0x6C); + + // Data directories (16 entries × 8 bytes) + static const char* dirNames[] = { + "Export", "Import", "Resource", "Exception", + "Security", "BaseReloc", "Debug", "Architecture", + "GlobalPtr", "TLS", "LoadConfig", "BoundImport", + "IAT", "DelayImport", "CLR", "Reserved" + }; + for (int i = 0; i < 16; i++) { + int doff = 0x70 + i * 8; + addOH(NodeKind::UInt32, QString("%1_RVA").arg(dirNames[i]), doff); + addOH(NodeKind::UInt32, QString("%1_Size").arg(dirNames[i]), doff + 4); + } + } + + // ── 0x100 bytes of Hex64 padding (32 nodes) ── + int padStart = oh + 0xF0; // end of optional header + for (int i = 0; i < 32; i++) { + int off = padStart + i * 8; + add(NodeKind::Hex64, + QString("pad_%1").arg(off, 4, 16, QChar('0')), + off); + } + + createTab(doc); +} + +void MainWindow::openFile() { + QString path = QFileDialog::getOpenFileName(this, + "Open Definition", {}, "ReclassX (*.rcx);;JSON (*.json);;All (*)"); + if (path.isEmpty()) return; + + auto* doc = new RcxDocument(this); + if (!doc->load(path)) { + QMessageBox::warning(this, "Error", "Failed to load: " + path); + delete doc; + return; + } + createTab(doc); +} + +void MainWindow::saveFile() { + auto* tab = activeTab(); + if (!tab) return; + if (tab->doc->filePath.isEmpty()) { saveFileAs(); return; } + tab->doc->save(tab->doc->filePath); + updateWindowTitle(); +} + +void MainWindow::saveFileAs() { + auto* tab = activeTab(); + if (!tab) return; + QString path = QFileDialog::getSaveFileName(this, + "Save Definition", {}, "ReclassX (*.rcx);;JSON (*.json)"); + if (path.isEmpty()) return; + tab->doc->save(path); + updateWindowTitle(); +} + +void MainWindow::loadBinary() { + auto* tab = activeTab(); + if (!tab) return; + QString path = QFileDialog::getOpenFileName(this, + "Load Binary Data", {}, "All Files (*)"); + if (path.isEmpty()) return; + tab->doc->loadData(path); +} + +void MainWindow::addNode() { + auto* ctrl = activeController(); + if (!ctrl) return; + + uint64_t parentId = 0; + auto* primary = ctrl->primaryEditor(); + if (primary && primary->isEditing()) return; + if (primary) { + int ni = primary->currentNodeIndex(); + if (ni >= 0) { + auto& node = ctrl->document()->tree.nodes[ni]; + if (node.kind == NodeKind::Struct || node.kind == NodeKind::Array) + parentId = node.id; + else + parentId = node.parentId; + } + } + ctrl->insertNode(parentId, -1, NodeKind::Hex64, "newField"); +} + +void MainWindow::removeNode() { + auto* ctrl = activeController(); + if (!ctrl) return; + auto* primary = ctrl->primaryEditor(); + if (!primary || primary->isEditing()) return; + QSet indices = primary->selectedNodeIndices(); + if (indices.size() > 1) { + ctrl->batchRemoveNodes(indices.values()); + } else if (indices.size() == 1) { + ctrl->removeNode(*indices.begin()); + } +} + +void MainWindow::changeNodeType() { + auto* ctrl = activeController(); + if (!ctrl) return; + auto* primary = ctrl->primaryEditor(); + if (!primary) return; + primary->beginInlineEdit(EditTarget::Type); +} + +void MainWindow::renameNodeAction() { + auto* ctrl = activeController(); + if (!ctrl) return; + auto* primary = ctrl->primaryEditor(); + if (!primary) return; + primary->beginInlineEdit(EditTarget::Name); +} + +void MainWindow::splitView() { + auto* tab = activeTab(); + if (!tab) return; + tab->ctrl->addSplitEditor(tab->splitter); +} + +void MainWindow::unsplitView() { + auto* tab = activeTab(); + if (!tab) return; + auto editors = tab->ctrl->editors(); + if (editors.size() > 1) + tab->ctrl->removeSplitEditor(editors.last()); +} + +void MainWindow::undo() { + auto* tab = activeTab(); + if (tab) tab->doc->undoStack.undo(); +} + +void MainWindow::redo() { + auto* tab = activeTab(); + if (tab) tab->doc->undoStack.redo(); +} + +void MainWindow::about() { + QMessageBox::about(this, "About ReclassX", + "ReclassX - Structured Binary Editor\n" + "Built with Qt 6 + QScintilla\n\n" + "Margin-driven UI with offset display,\n" + "fold markers, and status flags."); +} + +RcxController* MainWindow::activeController() const { + auto* sub = m_mdiArea->activeSubWindow(); + if (sub && m_tabs.contains(sub)) + return m_tabs[sub].ctrl; + return nullptr; +} + +MainWindow::TabState* MainWindow::activeTab() { + auto* sub = m_mdiArea->activeSubWindow(); + if (sub && m_tabs.contains(sub)) + return &m_tabs[sub]; + return nullptr; +} + +void MainWindow::updateWindowTitle() { + auto* sub = m_mdiArea->activeSubWindow(); + if (sub && m_tabs.contains(sub)) { + auto& tab = m_tabs[sub]; + QString name = tab.doc->filePath.isEmpty() ? "Untitled" + : QFileInfo(tab.doc->filePath).fileName(); + if (tab.doc->modified) name += " *"; + setWindowTitle(name + " - ReclassX"); + } else { + setWindowTitle("ReclassX"); + } +} + +} // namespace rcx + +// ── Entry point ── + +int main(int argc, char* argv[]) { +#ifdef _WIN32 + SetUnhandledExceptionFilter(crashHandler); +#endif + + QApplication app(argc, argv); + app.setApplicationName("ReclassX"); + app.setOrganizationName("ReclassX"); + app.setStyle("Fusion"); // Fusion style respects dark palette well + + // Global dark palette + QPalette darkPalette; + darkPalette.setColor(QPalette::Window, QColor("#1e1e1e")); + darkPalette.setColor(QPalette::WindowText, QColor("#d4d4d4")); + darkPalette.setColor(QPalette::Base, QColor("#252526")); + darkPalette.setColor(QPalette::AlternateBase, QColor("#2a2d2e")); + darkPalette.setColor(QPalette::Text, QColor("#d4d4d4")); + darkPalette.setColor(QPalette::Button, QColor("#333333")); + darkPalette.setColor(QPalette::ButtonText, QColor("#d4d4d4")); + darkPalette.setColor(QPalette::Highlight, QColor("#264f78")); + darkPalette.setColor(QPalette::HighlightedText, QColor("#ffffff")); + darkPalette.setColor(QPalette::ToolTipBase, QColor("#252526")); + darkPalette.setColor(QPalette::ToolTipText, QColor("#d4d4d4")); + darkPalette.setColor(QPalette::Mid, QColor("#3c3c3c")); + darkPalette.setColor(QPalette::Dark, QColor("#1e1e1e")); + darkPalette.setColor(QPalette::Light, QColor("#505050")); + app.setPalette(darkPalette); + + rcx::MainWindow window; + + bool screenshotMode = app.arguments().contains("--screenshot"); + if (screenshotMode) + window.setAttribute(Qt::WA_DontShowOnScreen); + window.show(); + + // Always auto-open PE header demo on startup + QMetaObject::invokeMethod(&window, "newFile"); + + if (screenshotMode) { + QString out = "screenshot.png"; + int idx = app.arguments().indexOf("--screenshot"); + if (idx + 1 < app.arguments().size()) + out = app.arguments().at(idx + 1); + + QTimer::singleShot(1000, [&window, &app, out]() { + QDir().mkpath(QFileInfo(out).absolutePath()); + window.grab().save(out); + app.quit(); + }); + } + + return app.exec(); +} + +#include "main.moc" diff --git a/tests/test_compose.cpp b/tests/test_compose.cpp new file mode 100644 index 0000000..65e775b --- /dev/null +++ b/tests/test_compose.cpp @@ -0,0 +1,674 @@ +#include +#include "core.h" + +using namespace rcx; + +class TestCompose : public QObject { + Q_OBJECT +private slots: + void testBasicStruct() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "Root"; + root.parentId = 0; + root.offset = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node f1; + f1.kind = NodeKind::Hex32; + f1.name = "field_0"; + f1.parentId = rootId; + f1.offset = 0; + tree.addNode(f1); + + Node f2; + f2.kind = NodeKind::Float; + f2.name = "value"; + f2.parentId = rootId; + f2.offset = 4; + tree.addNode(f2); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + // Header + 2 fields + footer = 4 lines + QCOMPARE(result.meta.size(), 4); + + // Header is fold head + QVERIFY(result.meta[0].foldHead); + QCOMPARE(result.meta[0].lineKind, LineKind::Header); + + // Fields are not fold heads + QVERIFY(!result.meta[1].foldHead); + QVERIFY(!result.meta[2].foldHead); + + // Footer + QCOMPARE(result.meta[3].lineKind, LineKind::Footer); + + // Offset text + QCOMPARE(result.meta[0].offsetText, QString("+0x0")); + QCOMPARE(result.meta[1].offsetText, QString("+0x0")); + QCOMPARE(result.meta[2].offsetText, QString("+0x4")); + + // Header is expanded by default (fold indicator in line text) + QVERIFY(!result.meta[0].foldCollapsed); + } + + void testVec3Continuation() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "Root"; + root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node v; + v.kind = NodeKind::Vec3; + v.name = "pos"; + v.parentId = rootId; + v.offset = 0; + tree.addNode(v); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + // Header + 3 Vec3 lines + footer = 5 lines + QCOMPARE(result.meta.size(), 5); + + // Line 1 (first Vec3 component): not continuation + QVERIFY(!result.meta[1].isContinuation); + QCOMPARE(result.meta[1].offsetText, QString("+0x0")); + + // Lines 2-3: continuation + QVERIFY(result.meta[2].isContinuation); + QCOMPARE(result.meta[2].offsetText, QString(" \u00B7")); + QVERIFY(result.meta[3].isContinuation); + QCOMPARE(result.meta[3].offsetText, QString(" \u00B7")); + + // Continuation marker + QVERIFY(result.meta[2].markerMask & (1u << M_CONT)); + QVERIFY(result.meta[3].markerMask & (1u << M_CONT)); + } + + void testPaddingMarker() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "R"; + root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node pad; + pad.kind = NodeKind::Padding; + pad.name = "pad"; + pad.parentId = rootId; + pad.offset = 0; + tree.addNode(pad); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + // Header + padding + footer = 3 + QCOMPARE(result.meta.size(), 3); + QVERIFY(result.meta[1].markerMask & (1u << M_PAD)); + } + + void testNullPointerMarker() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "R"; + root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node ptr; + ptr.kind = NodeKind::Pointer64; + ptr.name = "ptr"; + ptr.parentId = rootId; + ptr.offset = 0; + tree.addNode(ptr); + + // Provider with zeros (null ptr) + QByteArray data(64, '\0'); + FileProvider prov(data); + ComposeResult result = compose(tree, prov); + + QCOMPARE(result.meta.size(), 3); + QVERIFY(result.meta[1].markerMask & (1u << M_PTR0)); + } + + void testCollapsedStruct() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "Root"; + root.parentId = 0; + root.collapsed = true; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node f; + f.kind = NodeKind::Hex32; + f.name = "field"; + f.parentId = rootId; + f.offset = 0; + tree.addNode(f); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + // Collapsed: header + footer only = 2 lines + QCOMPARE(result.meta.size(), 2); + QVERIFY(result.meta[0].foldHead); + } + + void testUnreadablePointerNoRead() { + // A pointer at an unreadable address should get M_ERR, not M_PTR0 + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "R"; + root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node ptr; + ptr.kind = NodeKind::Pointer64; + ptr.name = "ptr"; + ptr.parentId = rootId; + ptr.offset = 0; + tree.addNode(ptr); + + // Provider with only 4 bytes — not enough for Pointer64 (8 bytes) + QByteArray data(4, '\0'); + FileProvider prov(data); + ComposeResult result = compose(tree, prov); + + QCOMPARE(result.meta.size(), 3); + // Should have M_ERR, should NOT have M_PTR0 + QVERIFY(result.meta[1].markerMask & (1u << M_ERR)); + QVERIFY(!(result.meta[1].markerMask & (1u << M_PTR0))); + } + + void testFoldLevels() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "Root"; + root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node child; + child.kind = NodeKind::Struct; + child.name = "Child"; + child.parentId = rootId; + child.offset = 0; + int ci = tree.addNode(child); + uint64_t childId = tree.nodes[ci].id; + + Node leaf; + leaf.kind = NodeKind::Hex8; + leaf.name = "x"; + leaf.parentId = childId; + leaf.offset = 0; + tree.addNode(leaf); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + // Root header (depth 0, head) -> 0x400 | 0x2000 + QCOMPARE(result.meta[0].foldLevel, 0x400 | 0x2000); + QCOMPARE(result.meta[0].depth, 0); + + // Child header (depth 1, head) -> 0x401 | 0x2000 + QCOMPARE(result.meta[1].foldLevel, 0x401 | 0x2000); + QCOMPARE(result.meta[1].depth, 1); + + // Leaf (depth 2, not head) -> 0x402 + QCOMPARE(result.meta[2].foldLevel, 0x402); + QCOMPARE(result.meta[2].depth, 2); + } + + void testNestedStruct() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "Outer"; + root.parentId = 0; + root.offset = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node f1; + f1.kind = NodeKind::UInt32; + f1.name = "flags"; + f1.parentId = rootId; + f1.offset = 0; + tree.addNode(f1); + + Node inner; + inner.kind = NodeKind::Struct; + inner.name = "Inner"; + inner.parentId = rootId; + inner.offset = 4; + int ii = tree.addNode(inner); + uint64_t innerId = tree.nodes[ii].id; + + Node f2; + f2.kind = NodeKind::UInt16; + f2.name = "x"; + f2.parentId = innerId; + f2.offset = 0; + tree.addNode(f2); + + Node f3; + f3.kind = NodeKind::UInt16; + f3.name = "y"; + f3.parentId = innerId; + f3.offset = 2; + tree.addNode(f3); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + // Outer header + flags + Inner header + x + y + Inner footer + Outer footer = 7 + QCOMPARE(result.meta.size(), 7); + + // Outer header + QCOMPARE(result.meta[0].lineKind, LineKind::Header); + QCOMPARE(result.meta[0].depth, 0); + QVERIFY(result.meta[0].foldHead); + + // flags field + QCOMPARE(result.meta[1].lineKind, LineKind::Field); + QCOMPARE(result.meta[1].depth, 1); + + // Inner header + QCOMPARE(result.meta[2].lineKind, LineKind::Header); + QCOMPARE(result.meta[2].depth, 1); + QVERIFY(result.meta[2].foldHead); + QCOMPARE(result.meta[2].foldLevel, 0x401 | 0x2000); + + // Inner fields at depth 2 + QCOMPARE(result.meta[3].depth, 2); + QCOMPARE(result.meta[3].foldLevel, 0x402); + QCOMPARE(result.meta[4].depth, 2); + + // Inner footer + QCOMPARE(result.meta[5].lineKind, LineKind::Footer); + QCOMPARE(result.meta[5].depth, 1); + + // Outer footer + QCOMPARE(result.meta[6].lineKind, LineKind::Footer); + QCOMPARE(result.meta[6].depth, 0); + } + + void testPointerDerefExpansion() { + NodeTree tree; + tree.baseAddress = 0; + + // Main struct + Node main; + main.kind = NodeKind::Struct; + main.name = "Main"; + main.parentId = 0; + main.offset = 0; + int mi = tree.addNode(main); + uint64_t mainId = tree.nodes[mi].id; + + Node magic; + magic.kind = NodeKind::UInt32; + magic.name = "magic"; + magic.parentId = mainId; + magic.offset = 0; + tree.addNode(magic); + + // Template struct (separate root) + Node tmpl; + tmpl.kind = NodeKind::Struct; + tmpl.name = "VTable"; + tmpl.parentId = 0; + tmpl.offset = 200; // far away so standalone rendering uses offset 200 + int ti = tree.addNode(tmpl); + uint64_t tmplId = tree.nodes[ti].id; + + Node fn1; + fn1.kind = NodeKind::UInt64; + fn1.name = "fn_one"; + fn1.parentId = tmplId; + fn1.offset = 0; + tree.addNode(fn1); + + Node fn2; + fn2.kind = NodeKind::UInt64; + fn2.name = "fn_two"; + fn2.parentId = tmplId; + fn2.offset = 8; + tree.addNode(fn2); + + // Pointer in Main referencing VTable + Node ptr; + ptr.kind = NodeKind::Pointer64; + ptr.name = "vtable_ptr"; + ptr.parentId = mainId; + ptr.offset = 4; + ptr.refId = tmplId; + tree.addNode(ptr); + + // Provider: pointer at offset 4 points to address 100 + QByteArray data(256, '\0'); + uint64_t ptrVal = 100; + memcpy(data.data() + 4, &ptrVal, 8); + // Some data at the pointer target + uint64_t v1 = 0xDEADBEEF; + memcpy(data.data() + 100, &v1, 8); + uint64_t v2 = 0xCAFEBABE; + memcpy(data.data() + 108, &v2, 8); + FileProvider prov(data); + + ComposeResult result = compose(tree, prov); + + // Main: header + magic + ptr(fold head) + VTable header + fn1 + fn2 + VTable footer + Main footer = 8 + // VTable standalone: header + fn1 + fn2 + footer = 4 + // Total = 12 + QCOMPARE(result.meta.size(), 12); + + // Main header + QCOMPARE(result.meta[0].lineKind, LineKind::Header); + QCOMPARE(result.meta[0].depth, 0); + + // magic field + QCOMPARE(result.meta[1].lineKind, LineKind::Field); + QCOMPARE(result.meta[1].depth, 1); + + // Pointer as fold head + QCOMPARE(result.meta[2].lineKind, LineKind::Field); + QCOMPARE(result.meta[2].depth, 1); + QVERIFY(result.meta[2].foldHead); + QCOMPARE(result.meta[2].nodeKind, NodeKind::Pointer64); + + // Expanded VTable header at depth 2 + QCOMPARE(result.meta[3].lineKind, LineKind::Header); + QCOMPARE(result.meta[3].depth, 2); + + // Expanded fields at depth 3 + QCOMPARE(result.meta[4].depth, 3); + QCOMPARE(result.meta[5].depth, 3); + + // Expanded VTable footer + QCOMPARE(result.meta[6].lineKind, LineKind::Footer); + QCOMPARE(result.meta[6].depth, 2); + + // Main footer + QCOMPARE(result.meta[7].lineKind, LineKind::Footer); + QCOMPARE(result.meta[7].depth, 0); + } + + void testPointerDerefNull() { + NodeTree tree; + tree.baseAddress = 0; + + Node main; + main.kind = NodeKind::Struct; + main.name = "Main"; + main.parentId = 0; + main.offset = 0; + int mi = tree.addNode(main); + uint64_t mainId = tree.nodes[mi].id; + + Node tmpl; + tmpl.kind = NodeKind::Struct; + tmpl.name = "Target"; + tmpl.parentId = 0; + tmpl.offset = 200; + int ti = tree.addNode(tmpl); + uint64_t tmplId = tree.nodes[ti].id; + + Node tf; + tf.kind = NodeKind::UInt32; + tf.name = "field"; + tf.parentId = tmplId; + tf.offset = 0; + tree.addNode(tf); + + Node ptr; + ptr.kind = NodeKind::Pointer64; + ptr.name = "ptr"; + ptr.parentId = mainId; + ptr.offset = 0; + ptr.refId = tmplId; + tree.addNode(ptr); + + // All zeros = null pointer + QByteArray data(256, '\0'); + FileProvider prov(data); + + ComposeResult result = compose(tree, prov); + + // Main: header + ptr(fold head, no expansion) + footer = 3 + // Target standalone: header + field + footer = 3 + // Total = 6 + QCOMPARE(result.meta.size(), 6); + + // Pointer is fold head but has no children (null ptr) + QCOMPARE(result.meta[1].lineKind, LineKind::Field); + QVERIFY(result.meta[1].foldHead); + + // Next line is Main footer (no expansion) + QCOMPARE(result.meta[2].lineKind, LineKind::Footer); + QCOMPARE(result.meta[2].depth, 0); + } + + void testPointerDerefCollapsed() { + NodeTree tree; + tree.baseAddress = 0; + + Node main; + main.kind = NodeKind::Struct; + main.name = "Main"; + main.parentId = 0; + main.offset = 0; + int mi = tree.addNode(main); + uint64_t mainId = tree.nodes[mi].id; + + Node tmpl; + tmpl.kind = NodeKind::Struct; + tmpl.name = "Target"; + tmpl.parentId = 0; + tmpl.offset = 200; + int ti = tree.addNode(tmpl); + uint64_t tmplId = tree.nodes[ti].id; + + Node tf; + tf.kind = NodeKind::UInt32; + tf.name = "field"; + tf.parentId = tmplId; + tf.offset = 0; + tree.addNode(tf); + + Node ptr; + ptr.kind = NodeKind::Pointer64; + ptr.name = "ptr"; + ptr.parentId = mainId; + ptr.offset = 0; + ptr.refId = tmplId; + ptr.collapsed = true; // collapsed + tree.addNode(ptr); + + // Non-null pointer + QByteArray data(256, '\0'); + uint64_t ptrVal = 100; + memcpy(data.data(), &ptrVal, 8); + FileProvider prov(data); + + ComposeResult result = compose(tree, prov); + + // Main: header + ptr(fold head, collapsed) + footer = 3 + // Target standalone: header + field + footer = 3 + // Total = 6 + QCOMPARE(result.meta.size(), 6); + + // Pointer is fold head + QVERIFY(result.meta[1].foldHead); + + // No expansion — next is Main footer + QCOMPARE(result.meta[2].lineKind, LineKind::Footer); + QCOMPARE(result.meta[2].depth, 0); + } + + void testPointerDerefCycle() { + NodeTree tree; + tree.baseAddress = 0; + + Node main; + main.kind = NodeKind::Struct; + main.name = "Main"; + main.parentId = 0; + main.offset = 0; + int mi = tree.addNode(main); + uint64_t mainId = tree.nodes[mi].id; + + // Template struct with a self-referencing pointer + Node tmpl; + tmpl.kind = NodeKind::Struct; + tmpl.name = "Recursive"; + tmpl.parentId = 0; + tmpl.offset = 200; + int ti = tree.addNode(tmpl); + uint64_t tmplId = tree.nodes[ti].id; + + Node tf; + tf.kind = NodeKind::UInt32; + tf.name = "data"; + tf.parentId = tmplId; + tf.offset = 0; + tree.addNode(tf); + + // Self-referencing pointer inside the template + Node backPtr; + backPtr.kind = NodeKind::Pointer64; + backPtr.name = "self"; + backPtr.parentId = tmplId; + backPtr.offset = 4; + backPtr.refId = tmplId; // points back to same struct + tree.addNode(backPtr); + + // Pointer in Main → Recursive + Node ptr; + ptr.kind = NodeKind::Pointer64; + ptr.name = "ptr"; + ptr.parentId = mainId; + ptr.offset = 0; + ptr.refId = tmplId; + tree.addNode(ptr); + + // Provider: main ptr at offset 0 points to 100 + // Inside expansion: backPtr at offset 100+4=104 also points to 100 + QByteArray data(256, '\0'); + uint64_t ptrVal = 100; + memcpy(data.data(), &ptrVal, 8); // main ptr → 100 + memcpy(data.data() + 104, &ptrVal, 8); // backPtr at 104 → 100 + FileProvider prov(data); + + ComposeResult result = compose(tree, prov); + + // Must not infinite-loop. Verify we got a finite result. + QVERIFY(result.meta.size() > 0); + QVERIFY(result.meta.size() < 100); // sanity: bounded output + + // First expansion happens: Main header + ptr fold head + Recursive header + data + backPtr fold head + // Second expansion blocked by cycle guard: no children under backPtr + // Then: Recursive footer + Main footer + // Plus standalone Recursive rendering + // The exact count depends on cycle guard behavior but must be finite + QCOMPARE(result.meta[0].lineKind, LineKind::Header); // Main header + QVERIFY(result.meta[1].foldHead); // ptr fold head + QCOMPARE(result.meta[2].lineKind, LineKind::Header); // Recursive header (expansion) + } + + void testStructFooterSizeof() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "Sized"; + root.parentId = 0; + root.offset = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node f1; + f1.kind = NodeKind::UInt32; + f1.name = "a"; + f1.parentId = rootId; + f1.offset = 0; + tree.addNode(f1); + + Node f2; + f2.kind = NodeKind::UInt64; + f2.name = "b"; + f2.parentId = rootId; + f2.offset = 4; + tree.addNode(f2); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + // Footer is the last line + int lastLine = result.meta.size() - 1; + QCOMPARE(result.meta[lastLine].lineKind, LineKind::Footer); + + // Footer text should contain sizeof=0xC (4+8=12=0xC) + QString footerText = result.text.split('\n').last(); + QVERIFY(footerText.contains("sizeof=0xC")); + } + + void testLineMetaHasNodeId() { + using namespace rcx; + NodeTree tree; + tree.baseAddress = 0; + Node root; root.kind = NodeKind::Struct; root.name = "Root"; root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node f; f.kind = NodeKind::Hex32; f.name = "x"; f.parentId = rootId; f.offset = 0; + tree.addNode(f); + + NullProvider prov; + ComposeResult result = compose(tree, prov); + + for (int i = 0; i < result.meta.size(); i++) { + QVERIFY2(result.meta[i].nodeId != 0, + qPrintable(QString("Line %1 has nodeId=0").arg(i))); + int ni = result.meta[i].nodeIdx; + QVERIFY(ni >= 0 && ni < tree.nodes.size()); + QCOMPARE(result.meta[i].nodeId, tree.nodes[ni].id); + } + } +}; + +QTEST_MAIN(TestCompose) +#include "test_compose.moc" diff --git a/tests/test_core.cpp b/tests/test_core.cpp new file mode 100644 index 0000000..38a15ee --- /dev/null +++ b/tests/test_core.cpp @@ -0,0 +1,557 @@ +#include +#include "core.h" + +class TestCore : public QObject { + Q_OBJECT +private slots: + void testSizeForKind() { + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Hex8), 1); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Hex16), 2); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Hex32), 4); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Hex64), 8); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Float), 4); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Double), 8); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Vec3), 12); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Mat4x4), 64); + QCOMPARE(rcx::sizeForKind(rcx::NodeKind::Struct), 0); + } + + void testLinesForKind() { + QCOMPARE(rcx::linesForKind(rcx::NodeKind::Hex32), 1); + QCOMPARE(rcx::linesForKind(rcx::NodeKind::Vec2), 2); + QCOMPARE(rcx::linesForKind(rcx::NodeKind::Vec3), 3); + QCOMPARE(rcx::linesForKind(rcx::NodeKind::Vec4), 4); + QCOMPARE(rcx::linesForKind(rcx::NodeKind::Mat4x4), 4); + } + + void testKindStringRoundTrip() { + for (int i = 0; i <= static_cast(rcx::NodeKind::Array); i++) { + auto kind = static_cast(i); + QString s = rcx::kindToString(kind); + QCOMPARE(rcx::kindFromString(s), kind); + } + } + + void testNodeTree_addAndChildren() { + rcx::NodeTree tree; + rcx::Node root; + root.kind = rcx::NodeKind::Struct; + root.name = "Root"; + root.parentId = 0; + int ri = tree.addNode(root); + QCOMPARE(ri, 0); + uint64_t rootId = tree.nodes[ri].id; + + rcx::Node child; + child.kind = rcx::NodeKind::Hex32; + child.name = "field"; + child.parentId = rootId; + child.offset = 0; + tree.addNode(child); + + auto children = tree.childrenOf(rootId); + QCOMPARE(children.size(), 1); + QCOMPARE(children[0], 1); + + auto roots = tree.childrenOf(0); + QCOMPARE(roots.size(), 1); + QCOMPARE(roots[0], 0); + } + + void testNodeTree_depth() { + rcx::NodeTree tree; + rcx::Node a; a.kind = rcx::NodeKind::Struct; a.name = "A"; a.parentId = 0; + int ai = tree.addNode(a); + uint64_t aId = tree.nodes[ai].id; + rcx::Node b; b.kind = rcx::NodeKind::Struct; b.name = "B"; b.parentId = aId; + int bi = tree.addNode(b); + uint64_t bId = tree.nodes[bi].id; + rcx::Node c; c.kind = rcx::NodeKind::Hex8; c.name = "c"; c.parentId = bId; + tree.addNode(c); + + QCOMPARE(tree.depthOf(0), 0); + QCOMPARE(tree.depthOf(1), 1); + QCOMPARE(tree.depthOf(2), 2); + } + + void testNodeTree_computeOffset() { + rcx::NodeTree tree; + tree.baseAddress = 0x1000; + rcx::Node root; root.kind = rcx::NodeKind::Struct; root.name = "R"; + root.parentId = 0; root.offset = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + rcx::Node f; f.kind = rcx::NodeKind::Hex32; f.name = "f"; + f.parentId = rootId; f.offset = 16; + tree.addNode(f); + + QCOMPARE(tree.computeOffset(1), 16); + } + + void testNodeTree_jsonRoundTrip() { + rcx::NodeTree tree; + tree.baseAddress = 0xDEAD; + rcx::Node root; root.kind = rcx::NodeKind::Struct; root.name = "Test"; + root.parentId = 0; root.offset = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + rcx::Node child; child.kind = rcx::NodeKind::Float; child.name = "val"; + child.parentId = rootId; child.offset = 8; + tree.addNode(child); + + QJsonObject json = tree.toJson(); + rcx::NodeTree tree2 = rcx::NodeTree::fromJson(json); + + QCOMPARE(tree2.baseAddress, (uint64_t)0xDEAD); + QCOMPARE(tree2.nodes.size(), 2); + QCOMPARE(tree2.nodes[0].name, QString("Test")); + QCOMPARE(tree2.nodes[1].kind, rcx::NodeKind::Float); + QCOMPARE(tree2.nodes[1].offset, 8); + } + + void testFileProvider() { + QByteArray data(16, '\0'); + data[0] = 0x42; + data[4] = 0x10; + data[5] = 0x20; + + rcx::FileProvider prov(data); + QVERIFY(prov.isValid()); + QCOMPARE(prov.size(), 16); + QCOMPARE(prov.readU8(0), (uint8_t)0x42); + QCOMPARE(prov.readU16(4), (uint16_t)0x2010); + } + + void testNullProvider() { + rcx::NullProvider prov; + QVERIFY(!prov.isValid()); + QVERIFY(!prov.isReadable(0, 1)); + QCOMPARE(prov.readU8(0), (uint8_t)0); + QCOMPARE(prov.readU32(0), (uint32_t)0); + } + + void testIsReadable() { + QByteArray data(16, '\0'); + rcx::FileProvider prov(data); + QVERIFY(prov.isReadable(0, 4)); + QVERIFY(prov.isReadable(0, 16)); + QVERIFY(!prov.isReadable(0, 17)); + QVERIFY(!prov.isReadable(15, 2)); + QVERIFY(prov.isReadable(15, 1)); + } + + void testStableNodeIds() { + rcx::NodeTree tree; + rcx::Node a; a.kind = rcx::NodeKind::Struct; a.name = "A"; a.parentId = 0; + int ai = tree.addNode(a); + QCOMPARE(tree.nodes[ai].id, (uint64_t)1); + + rcx::Node b; b.kind = rcx::NodeKind::Hex32; b.name = "B"; b.parentId = tree.nodes[ai].id; + int bi = tree.addNode(b); + QCOMPARE(tree.nodes[bi].id, (uint64_t)2); + + QCOMPARE(tree.indexOfId(1), 0); + QCOMPARE(tree.indexOfId(2), 1); + QCOMPARE(tree.indexOfId(99), -1); + } + + void testByteSizeDynamic() { + rcx::Node n; + n.kind = rcx::NodeKind::UTF8; + n.strLen = 128; + QCOMPARE(n.byteSize(), 128); + + n.kind = rcx::NodeKind::UTF16; + n.strLen = 32; + QCOMPARE(n.byteSize(), 64); // 32 * 2 + + n.kind = rcx::NodeKind::Float; + QCOMPARE(n.byteSize(), 4); // falls back to sizeForKind + } + + void testSubtreeCycleSafe() { + rcx::NodeTree tree; + rcx::Node a; a.kind = rcx::NodeKind::Struct; a.name = "A"; a.parentId = 0; + int ai = tree.addNode(a); + uint64_t aId = tree.nodes[ai].id; + + // Create a child that points back to A's id as parent — not a cycle per se, + // but test that subtree collection terminates + rcx::Node b; b.kind = rcx::NodeKind::Hex8; b.name = "B"; b.parentId = aId; + tree.addNode(b); + + // Should return both nodes without hanging + auto sub = tree.subtreeIndices(aId); + QCOMPARE(sub.size(), 2); + QVERIFY(sub.contains(0)); + QVERIFY(sub.contains(1)); + } + + void testIsReadableOverflow() { + QByteArray data(16, '\0'); + rcx::FileProvider prov(data); + // Normal cases + QVERIFY(prov.isReadable(0, 16)); + QVERIFY(!prov.isReadable(0, 17)); + // Large address + QVERIFY(!prov.isReadable(0xFFFFFFFFFFFFFFFFULL, 1)); + // Negative len + QVERIFY(!prov.isReadable(0, -1)); + // Zero len is readable + QVERIFY(prov.isReadable(0, 0)); + QVERIFY(prov.isReadable(16, 0)); + } + + void testAlignmentFor() { + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Hex8), 1); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Hex16), 2); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Hex32), 4); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Hex64), 8); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Float), 4); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Double), 8); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Vec3), 4); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Mat4x4), 4); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::UTF8), 1); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::UTF16), 2); + QCOMPARE(rcx::alignmentFor(rcx::NodeKind::Struct), 1); + } + + void testDepthOfCycle() { + rcx::NodeTree tree; + // Create two nodes that reference each other as parents + rcx::Node a; a.kind = rcx::NodeKind::Struct; a.name = "A"; a.parentId = 0; + int ai = tree.addNode(a); + uint64_t aId = tree.nodes[ai].id; + + rcx::Node b; b.kind = rcx::NodeKind::Struct; b.name = "B"; b.parentId = aId; + int bi = tree.addNode(b); + uint64_t bId = tree.nodes[bi].id; + + // Manually create a cycle: A's parent → B + tree.nodes[ai].parentId = bId; + tree.invalidateIdCache(); + + // Should not hang — cycle detection terminates + int d = tree.depthOf(ai); + QVERIFY(d < 100); + } + + void testComputeOffsetCycle() { + rcx::NodeTree tree; + rcx::Node a; a.kind = rcx::NodeKind::Struct; a.name = "A"; a.parentId = 0; a.offset = 10; + int ai = tree.addNode(a); + uint64_t aId = tree.nodes[ai].id; + + rcx::Node b; b.kind = rcx::NodeKind::Struct; b.name = "B"; b.parentId = aId; b.offset = 20; + int bi = tree.addNode(b); + uint64_t bId = tree.nodes[bi].id; + + // Create cycle: A → B → A + tree.nodes[ai].parentId = bId; + tree.invalidateIdCache(); + + // Should not hang + int off = tree.computeOffset(ai); + Q_UNUSED(off); + QVERIFY(true); // reaching here means no hang + } + + void testProviderWrite() { + QByteArray data(16, '\0'); + rcx::FileProvider prov(data); + QVERIFY(prov.isWritable()); + + QByteArray patch; + patch.append((char)0x42); + patch.append((char)0x43); + QVERIFY(prov.writeBytes(0, patch)); + QCOMPARE(prov.readU8(0), (uint8_t)0x42); + QCOMPARE(prov.readU8(1), (uint8_t)0x43); + + // Write past end should fail + QVERIFY(!prov.writeBytes(15, patch)); + + // NullProvider is not writable + rcx::NullProvider np; + QVERIFY(!np.isWritable()); + } + + void testComputeOffsetLarge() { + // Verify computeOffset returns int64_t that doesn't overflow + rcx::NodeTree tree; + rcx::Node root; root.kind = rcx::NodeKind::Struct; root.name = "R"; + root.parentId = 0; root.offset = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + rcx::Node child; child.kind = rcx::NodeKind::Hex8; child.name = "f"; + child.parentId = rootId; child.offset = 0x7FFFFFFF; // max int32 + tree.addNode(child); + + int64_t off = tree.computeOffset(1); + QCOMPARE(off, (int64_t)0x7FFFFFFF); + } + + void testKindMetaCompleteness() { + // Every NodeKind enum value must have a KindMeta entry + for (int i = 0; i <= static_cast(rcx::NodeKind::Array); i++) { + auto kind = static_cast(i); + const rcx::KindMeta* m = rcx::kindMeta(kind); + QVERIFY2(m != nullptr, + qPrintable(QString("Missing KindMeta for kind %1").arg(i))); + QCOMPARE(m->kind, kind); + QVERIFY(m->name != nullptr); + QVERIFY(m->typeName != nullptr); + QVERIFY(m->lines >= 1); + QVERIFY(m->align >= 1); + } + // sizeForKind/linesForKind/alignmentFor must agree with table + for (const auto& m : rcx::kKindMeta) { + QCOMPARE(rcx::sizeForKind(m.kind), m.size); + QCOMPARE(rcx::linesForKind(m.kind), m.lines); + QCOMPARE(rcx::alignmentFor(m.kind), m.align); + } + } + + void testColumnSpan_field() { + rcx::LineMeta lm; + lm.lineKind = rcx::LineKind::Field; + lm.depth = 1; + lm.isContinuation = false; + lm.nodeIdx = 0; + + // kFoldCol (3) + depth*3 = 6 + auto ts = rcx::typeSpanFor(lm); + QVERIFY(ts.valid); + QCOMPARE(ts.start, 6); + QCOMPARE(ts.end, 16); // 6 + 10 + + auto ns = rcx::nameSpanFor(lm); + QVERIFY(ns.valid); + QCOMPARE(ns.start, 18); // 6 + 10 + 2 + QCOMPARE(ns.end, 42); // 18 + 24 + + auto vs = rcx::valueSpanFor(lm, 60); + QVERIFY(vs.valid); + QCOMPARE(vs.start, 44); // 18 + 24 + 2 + QCOMPARE(vs.end, 60); + } + + void testColumnSpan_continuation() { + rcx::LineMeta lm; + lm.lineKind = rcx::LineKind::Continuation; + lm.depth = 1; + lm.isContinuation = true; + lm.nodeIdx = 0; + + QVERIFY(!rcx::typeSpanFor(lm).valid); + QVERIFY(!rcx::nameSpanFor(lm).valid); + + auto vs = rcx::valueSpanFor(lm, 60); + QVERIFY(vs.valid); + QCOMPARE(vs.start, 6 + 10 + 24 + 4); // kFoldCol+indent + COL_TYPE + COL_NAME + 4 + QCOMPARE(vs.end, 60); + } + + void testColumnSpan_headerFooter() { + rcx::LineMeta lm; + lm.lineKind = rcx::LineKind::Header; + lm.depth = 0; + lm.nodeIdx = 0; + + QVERIFY(!rcx::typeSpanFor(lm).valid); + QVERIFY(!rcx::nameSpanFor(lm).valid); + QVERIFY(!rcx::valueSpanFor(lm, 40).valid); + + lm.lineKind = rcx::LineKind::Footer; + QVERIFY(!rcx::typeSpanFor(lm).valid); + QVERIFY(!rcx::nameSpanFor(lm).valid); + QVERIFY(!rcx::valueSpanFor(lm, 40).valid); + } + + void testColumnSpan_depth0() { + rcx::LineMeta lm; + lm.lineKind = rcx::LineKind::Field; + lm.depth = 0; + lm.isContinuation = false; + lm.nodeIdx = 0; + + // kFoldCol (3) + depth*3(0) = 3 + auto ts = rcx::typeSpanFor(lm); + QVERIFY(ts.valid); + QCOMPARE(ts.start, 3); + QCOMPARE(ts.end, 13); // 3 + 10 + + auto ns = rcx::nameSpanFor(lm); + QVERIFY(ns.valid); + QCOMPARE(ns.start, 15); // 3 + 10 + 2 + QCOMPARE(ns.end, 39); // 15 + 24 + + auto vs = rcx::valueSpanFor(lm, 50); + QVERIFY(vs.valid); + QCOMPARE(vs.start, 41); // 15 + 24 + 2 + QCOMPARE(vs.end, 50); + } + + void testNodeIdJsonRoundTrip() { + rcx::NodeTree tree; + rcx::Node n; n.kind = rcx::NodeKind::Float; n.name = "x"; n.parentId = 0; + tree.addNode(n); + tree.addNode(n); + + QJsonObject json = tree.toJson(); + rcx::NodeTree t2 = rcx::NodeTree::fromJson(json); + QCOMPARE(t2.nodes[0].id, tree.nodes[0].id); + QCOMPARE(t2.nodes[1].id, tree.nodes[1].id); + QVERIFY(t2.m_nextId >= 3); + } + + void testStructSpan() { + using namespace rcx; + NodeTree tree; + tree.baseAddress = 0; + + // Struct with UInt32 (offset 0, 4 bytes) + UInt64 (offset 4, 8 bytes) + Node root; + root.kind = NodeKind::Struct; + root.name = "Root"; + root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node f1; + f1.kind = NodeKind::UInt32; + f1.name = "a"; + f1.parentId = rootId; + f1.offset = 0; + tree.addNode(f1); + + Node f2; + f2.kind = NodeKind::UInt64; + f2.name = "b"; + f2.parentId = rootId; + f2.offset = 4; + tree.addNode(f2); + + // Span = max(0+4, 4+8) = 12 + QCOMPARE(tree.structSpan(rootId), 12); + + // Nested struct: inner at offset 0 with a UInt64 at offset 0 (size 8) + NodeTree tree2; + Node outer; + outer.kind = NodeKind::Struct; + outer.name = "Outer"; + outer.parentId = 0; + int oi = tree2.addNode(outer); + uint64_t outerId = tree2.nodes[oi].id; + + Node inner; + inner.kind = NodeKind::Struct; + inner.name = "Inner"; + inner.parentId = outerId; + inner.offset = 0; + int ii = tree2.addNode(inner); + uint64_t innerId = tree2.nodes[ii].id; + + Node leaf; + leaf.kind = NodeKind::UInt64; + leaf.name = "x"; + leaf.parentId = innerId; + leaf.offset = 0; + tree2.addNode(leaf); + + // Inner span = 8, outer span = max(0+8) = 8 + QCOMPARE(tree2.structSpan(innerId), 8); + QCOMPARE(tree2.structSpan(outerId), 8); + + // Empty struct = 0 + NodeTree tree3; + Node empty; + empty.kind = NodeKind::Struct; + empty.name = "Empty"; + empty.parentId = 0; + int ei = tree3.addNode(empty); + QCOMPARE(tree3.structSpan(tree3.nodes[ei].id), 0); + } + void testNormalizePreferAncestors() { + using namespace rcx; + NodeTree tree; + // Root -> A -> leaf + Node root; root.kind = NodeKind::Struct; root.name = "R"; root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node a; a.kind = NodeKind::Struct; a.name = "A"; a.parentId = rootId; + int ai = tree.addNode(a); + uint64_t aId = tree.nodes[ai].id; + + Node leaf; leaf.kind = NodeKind::Hex8; leaf.name = "x"; leaf.parentId = aId; + int li = tree.addNode(leaf); + uint64_t leafId = tree.nodes[li].id; + + // Select root + leaf: leaf should be pruned (root is ancestor) + QSet sel = {rootId, leafId}; + QSet norm = tree.normalizePreferAncestors(sel); + QCOMPARE(norm.size(), 1); + QVERIFY(norm.contains(rootId)); + + // Select A + leaf: leaf pruned (A is ancestor) + sel = {aId, leafId}; + norm = tree.normalizePreferAncestors(sel); + QCOMPARE(norm.size(), 1); + QVERIFY(norm.contains(aId)); + + // Select root + A: A pruned (root is ancestor) + sel = {rootId, aId}; + norm = tree.normalizePreferAncestors(sel); + QCOMPARE(norm.size(), 1); + QVERIFY(norm.contains(rootId)); + + // Select only leaf: nothing pruned + sel = {leafId}; + norm = tree.normalizePreferAncestors(sel); + QCOMPARE(norm.size(), 1); + QVERIFY(norm.contains(leafId)); + } + + void testNormalizePreferDescendants() { + using namespace rcx; + NodeTree tree; + Node root; root.kind = NodeKind::Struct; root.name = "R"; root.parentId = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node a; a.kind = NodeKind::UInt32; a.name = "a"; a.parentId = rootId; + int ai = tree.addNode(a); + uint64_t aId = tree.nodes[ai].id; + + Node b; b.kind = NodeKind::UInt32; b.name = "b"; b.parentId = rootId; b.offset = 4; + int bi = tree.addNode(b); + uint64_t bId = tree.nodes[bi].id; + + // Select root + a + b: root dropped (has selected descendants) + QSet sel = {rootId, aId, bId}; + QSet norm = tree.normalizePreferDescendants(sel); + QCOMPARE(norm.size(), 2); + QVERIFY(norm.contains(aId)); + QVERIFY(norm.contains(bId)); + QVERIFY(!norm.contains(rootId)); + + // Select root + a: root dropped, a kept + sel = {rootId, aId}; + norm = tree.normalizePreferDescendants(sel); + QCOMPARE(norm.size(), 1); + QVERIFY(norm.contains(aId)); + + // Select only root: nothing dropped (no descendants selected) + sel = {rootId}; + norm = tree.normalizePreferDescendants(sel); + QCOMPARE(norm.size(), 1); + QVERIFY(norm.contains(rootId)); + } +}; + +QTEST_MAIN(TestCore) +#include "test_core.moc" diff --git a/tests/test_editor.cpp b/tests/test_editor.cpp new file mode 100644 index 0000000..fa14c26 --- /dev/null +++ b/tests/test_editor.cpp @@ -0,0 +1,442 @@ +#include +#include +#include +#include +#include +#include +#include "editor.h" +#include "core.h" + +using namespace rcx; + +// Minimal provider for testing +static FileProvider makeTestProvider() { + QByteArray data(256, '\0'); + // Write known values: uint16_t=23117 at offset 0, Hex64 at offset 8 + uint16_t u16 = 23117; + memcpy(data.data(), &u16, 2); + uint64_t h64 = 0x4D5A900000000000ULL; + memcpy(data.data() + 8, &h64, 8); + return FileProvider(data); +} + +// Build a simple tree with a struct containing a few fields +static NodeTree makeTestTree() { + NodeTree tree; + tree.baseAddress = 0; + + Node root; + root.kind = NodeKind::Struct; + root.name = "TestStruct"; + root.parentId = 0; + root.offset = 0; + int ri = tree.addNode(root); + uint64_t rootId = tree.nodes[ri].id; + + Node f1; + f1.kind = NodeKind::UInt16; + f1.name = "field_u16"; + f1.parentId = rootId; + f1.offset = 0; + tree.addNode(f1); + + Node f2; + f2.kind = NodeKind::Hex64; + f2.name = "field_hex"; + f2.parentId = rootId; + f2.offset = 8; + tree.addNode(f2); + + return tree; +} + +class TestEditor : public QObject { + Q_OBJECT +private: + RcxEditor* m_editor = nullptr; + ComposeResult m_result; + +private slots: + void initTestCase() { + m_editor = new RcxEditor(); + m_editor->resize(800, 600); + m_editor->show(); + QVERIFY(QTest::qWaitForWindowExposed(m_editor)); + + NodeTree tree = makeTestTree(); + FileProvider prov = makeTestProvider(); + m_result = compose(tree, prov); + m_editor->applyDocument(m_result); + } + + void cleanupTestCase() { + delete m_editor; + } + + // ── Test: inline edit lifecycle (begin → commit → re-edit) ── + void testInlineEditReEntry() { + // Move cursor to line 1 (first field inside struct) + m_editor->scintilla()->setCursorPosition(1, 0); + + // Should not be editing + QVERIFY(!m_editor->isEditing()); + + // Begin edit on Name column + bool ok = m_editor->beginInlineEdit(EditTarget::Name, 1); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + + // Cancel the edit + m_editor->cancelInlineEdit(); + QVERIFY(!m_editor->isEditing()); + + // Re-apply document (simulates controller refresh) + m_editor->applyDocument(m_result); + + // Should be able to edit again + ok = m_editor->beginInlineEdit(EditTarget::Name, 1); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + + // Cancel again + m_editor->cancelInlineEdit(); + QVERIFY(!m_editor->isEditing()); + } + + // ── Test: commit inline edit then re-edit same line ── + void testCommitThenReEdit() { + m_editor->applyDocument(m_result); + m_editor->scintilla()->setCursorPosition(1, 0); + + // Begin value edit + bool ok = m_editor->beginInlineEdit(EditTarget::Value, 1); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + + // Simulate Enter key → commit (via signal spy) + QSignalSpy spy(m_editor, &RcxEditor::inlineEditCommitted); + QKeyEvent enter(QEvent::KeyPress, Qt::Key_Return, Qt::NoModifier); + QApplication::sendEvent(m_editor->scintilla(), &enter); + + // Should have emitted commit signal and exited edit mode + QCOMPARE(spy.count(), 1); + QVERIFY(!m_editor->isEditing()); + + // Re-apply document (simulates refresh) + m_editor->applyDocument(m_result); + + // Must be able to edit the same line again + ok = m_editor->beginInlineEdit(EditTarget::Value, 1); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + + m_editor->cancelInlineEdit(); + } + + // ── Test: mouse click during edit commits it ── + void testMouseClickCommitsEdit() { + m_editor->applyDocument(m_result); + + bool ok = m_editor->beginInlineEdit(EditTarget::Name, 1); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + + // Simulate mouse click on viewport — should commit (save), not cancel + QSignalSpy commitSpy(m_editor, &RcxEditor::inlineEditCommitted); + QSignalSpy cancelSpy(m_editor, &RcxEditor::inlineEditCancelled); + QMouseEvent click(QEvent::MouseButtonPress, QPointF(10, 10), + QPointF(10, 10), Qt::LeftButton, + Qt::LeftButton, Qt::NoModifier); + QApplication::sendEvent(m_editor->scintilla()->viewport(), &click); + + QVERIFY(!m_editor->isEditing()); + QCOMPARE(commitSpy.count(), 1); + QCOMPARE(cancelSpy.count(), 0); + } + + // ── Test: FocusOut during edit commits it ── + void testFocusOutCommitsEdit() { + m_editor->applyDocument(m_result); + + // Give focus to the scintilla widget first + m_editor->scintilla()->setFocus(); + QApplication::processEvents(); + + bool ok = m_editor->beginInlineEdit(EditTarget::Name, 1); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + + QSignalSpy commitSpy(m_editor, &RcxEditor::inlineEditCommitted); + QSignalSpy cancelSpy(m_editor, &RcxEditor::inlineEditCancelled); + + // Create a dummy widget and transfer focus to it (triggers real FocusOut) + QWidget dummy; + dummy.show(); + QVERIFY(QTest::qWaitForWindowExposed(&dummy)); + dummy.setFocus(); + QApplication::processEvents(); // process focus change + deferred timer + + QVERIFY(!m_editor->isEditing()); + QCOMPARE(commitSpy.count(), 1); + QCOMPARE(cancelSpy.count(), 0); + + // Restore focus to editor for subsequent tests + m_editor->scintilla()->setFocus(); + QApplication::processEvents(); + } + + // ── Test: type edit begins and can be cancelled ── + void testTypeEditCancel() { + m_editor->applyDocument(m_result); + + // Begin type edit on a field line + bool ok = m_editor->beginInlineEdit(EditTarget::Type, 1); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + + // Process deferred events (showTypeAutocomplete is deferred via QTimer) + QApplication::processEvents(); + + // First Escape closes autocomplete popup (if active) or cancels edit + QKeyEvent esc1(QEvent::KeyPress, Qt::Key_Escape, Qt::NoModifier); + QApplication::sendEvent(m_editor->scintilla(), &esc1); + + // If autocomplete was open, first Esc only closed popup; need second Esc + if (m_editor->isEditing()) { + QKeyEvent esc2(QEvent::KeyPress, Qt::Key_Escape, Qt::NoModifier); + QApplication::sendEvent(m_editor->scintilla(), &esc2); + } + QVERIFY(!m_editor->isEditing()); + } + + // ── Test: edit on header line (Name is valid, Type/Value invalid) ── + void testHeaderLineEdit() { + m_editor->applyDocument(m_result); + + // Line 0 should be the struct header + const LineMeta* lm = m_editor->metaForLine(0); + QVERIFY(lm); + QCOMPARE(lm->lineKind, LineKind::Header); + + // Type edit on header should fail (no type span) + bool ok = m_editor->beginInlineEdit(EditTarget::Type, 0); + QVERIFY(!ok); + QVERIFY(!m_editor->isEditing()); + + // Name edit on header should succeed (dynamic span) + ok = m_editor->beginInlineEdit(EditTarget::Name, 0); + QVERIFY(ok); + QVERIFY(m_editor->isEditing()); + m_editor->cancelInlineEdit(); + } + + // ── Test: footer line rejects all edits ── + void testFooterLineEdit() { + m_editor->applyDocument(m_result); + + // Find the footer line + int footerLine = -1; + for (int i = 0; i < m_result.meta.size(); i++) { + if (m_result.meta[i].lineKind == LineKind::Footer) { + footerLine = i; + break; + } + } + QVERIFY(footerLine >= 0); + + QVERIFY(!m_editor->beginInlineEdit(EditTarget::Type, footerLine)); + QVERIFY(!m_editor->beginInlineEdit(EditTarget::Name, footerLine)); + QVERIFY(!m_editor->beginInlineEdit(EditTarget::Value, footerLine)); + QVERIFY(!m_editor->isEditing()); + } + + // ── Test: showTypeAutocomplete populates list (check via SCI_AUTOCACTIVE) ── + void testTypeAutocompleteShows() { + m_editor->applyDocument(m_result); + + bool ok = m_editor->beginInlineEdit(EditTarget::Type, 1); + QVERIFY(ok); + + // Process deferred timer (autocomplete is deferred) + QApplication::processEvents(); + + // Check if the user list is active + long active = m_editor->scintilla()->SendScintilla( + QsciScintillaBase::SCI_AUTOCACTIVE); + QVERIFY2(active != 0, "Autocomplete list should be active after type edit begins"); + + // Cancel + m_editor->cancelInlineEdit(); + m_editor->applyDocument(m_result); + } + + // ── Test: parseValue accepts space-separated hex bytes ── + void testParseValueHexWithSpaces() { + bool ok; + + // Hex8 with spaces (single byte, but test the .remove(' ')) + QByteArray b = fmt::parseValue(NodeKind::Hex8, "4D", &ok); + QVERIFY(ok); + QCOMPARE((uint8_t)b[0], (uint8_t)0x4D); + + // Hex32 with space-separated bytes + b = fmt::parseValue(NodeKind::Hex32, "DE AD BE EF", &ok); + QVERIFY(ok); + QCOMPARE(b.size(), 4); + uint32_t v32; + memcpy(&v32, b.data(), 4); + QCOMPARE(v32, (uint32_t)0xDEADBEEF); + + // Hex64 with space-separated bytes + b = fmt::parseValue(NodeKind::Hex64, "4D 5A 90 00 00 00 00 00", &ok); + QVERIFY(ok); + QCOMPARE(b.size(), 8); + uint64_t v64; + memcpy(&v64, b.data(), 8); + QCOMPARE(v64, (uint64_t)0x4D5A900000000000ULL); + + // Hex64 continuous (should still work) + b = fmt::parseValue(NodeKind::Hex64, "4D5A900000000000", &ok); + QVERIFY(ok); + memcpy(&v64, b.data(), 8); + QCOMPARE(v64, (uint64_t)0x4D5A900000000000ULL); + + // Hex64 with 0x prefix and spaces + b = fmt::parseValue(NodeKind::Hex64, "0x4D 5A 90 00 00 00 00 00", &ok); + QVERIFY(ok); + } + + // ── Test: type autocomplete accepts typed input and commits ── + void testTypeAutocompleteTypingAndCommit() { + m_editor->applyDocument(m_result); + + bool ok = m_editor->beginInlineEdit(EditTarget::Type, 1); + QVERIFY(ok); + + // Process deferred autocomplete + QApplication::processEvents(); + + // Verify autocomplete is active + long active = m_editor->scintilla()->SendScintilla( + QsciScintillaBase::SCI_AUTOCACTIVE); + QVERIFY2(active != 0, "Autocomplete should be active"); + + // Simulate typing 'i' — filters to typeName entries starting with 'i' + QKeyEvent keyI(QEvent::KeyPress, Qt::Key_I, Qt::NoModifier, "i"); + QApplication::sendEvent(m_editor->scintilla(), &keyI); + + // Still editing + QVERIFY(m_editor->isEditing()); + + // Simulate Enter to select from autocomplete (handled synchronously) + QSignalSpy spy(m_editor, &RcxEditor::inlineEditCommitted); + QKeyEvent enter(QEvent::KeyPress, Qt::Key_Return, Qt::NoModifier); + QApplication::sendEvent(m_editor->scintilla(), &enter); + + // Should have committed immediately (no deferred timer for type edits) + QCOMPARE(spy.count(), 1); + QVERIFY(!m_editor->isEditing()); + + // The committed text should be a valid typeName starting with 'i' + QList args = spy.first(); + QString committedText = args.at(3).toString(); + QVERIFY2(committedText.startsWith('i'), + qPrintable("Expected typeName starting with 'i', got: " + committedText)); + + m_editor->applyDocument(m_result); + } + + // ── Test: type edit click-away commits original (no change) ── + void testTypeEditClickAwayNoChange() { + m_editor->applyDocument(m_result); + + bool ok = m_editor->beginInlineEdit(EditTarget::Type, 1); + QVERIFY(ok); + + // Process deferred autocomplete + QApplication::processEvents(); + + // Click away on viewport — should commit (not cancel) + QSignalSpy commitSpy(m_editor, &RcxEditor::inlineEditCommitted); + QMouseEvent click(QEvent::MouseButtonPress, QPointF(10, 10), + QPointF(10, 10), Qt::LeftButton, + Qt::LeftButton, Qt::NoModifier); + QApplication::sendEvent(m_editor->scintilla()->viewport(), &click); + + QVERIFY(!m_editor->isEditing()); + QCOMPARE(commitSpy.count(), 1); + + // The committed text should be the original typeName (no change) + QList args = commitSpy.first(); + QString committedText = args.at(3).toString(); + QVERIFY2(committedText == "uint16_t", + qPrintable("Expected 'uint16_t', got: " + committedText)); + + m_editor->applyDocument(m_result); + } + + // ── Test: column span hit-testing for cursor shape ── + void testColumnSpanHitTest() { + m_editor->applyDocument(m_result); + + // Line 1 is a field line (UInt16), verify spans are valid + const LineMeta* lm = m_editor->metaForLine(1); + QVERIFY(lm); + QCOMPARE(lm->lineKind, LineKind::Field); + + // Type span should be valid for field lines + ColumnSpan ts = RcxEditor::typeSpan(*lm); + QVERIFY(ts.valid); + QVERIFY(ts.start < ts.end); + + // Name span should be valid for field lines + ColumnSpan ns = RcxEditor::nameSpan(*lm); + QVERIFY(ns.valid); + QVERIFY(ns.start < ns.end); + + // Value span should be valid for field lines + QString lineText; + int len = (int)m_editor->scintilla()->SendScintilla( + QsciScintillaBase::SCI_LINELENGTH, (unsigned long)1); + QVERIFY(len > 0); + ColumnSpan vs = RcxEditor::valueSpan(*lm, len); + QVERIFY(vs.valid); + QVERIFY(vs.start < vs.end); + + // Footer line should have no valid type/name spans + int footerLine = -1; + for (int i = 0; i < m_result.meta.size(); i++) { + if (m_result.meta[i].lineKind == LineKind::Footer) { + footerLine = i; + break; + } + } + QVERIFY(footerLine >= 0); + const LineMeta* flm = m_editor->metaForLine(footerLine); + QVERIFY(flm); + ColumnSpan fts = RcxEditor::typeSpan(*flm); + QVERIFY(!fts.valid); + ColumnSpan fns = RcxEditor::nameSpan(*flm); + QVERIFY(!fns.valid); + ColumnSpan fvs = RcxEditor::valueSpan(*flm, 10); + QVERIFY(!fvs.valid); + } + + // ── Test: selectedNodeIndices ── + void testSelectedNodeIndices() { + m_editor->applyDocument(m_result); + + // Put cursor on first field line + m_editor->scintilla()->setCursorPosition(1, 0); + QSet sel = m_editor->selectedNodeIndices(); + QCOMPARE(sel.size(), 1); + + // The node index should match the first field + const LineMeta* lm = m_editor->metaForLine(1); + QVERIFY(lm); + QVERIFY(sel.contains(lm->nodeIdx)); + } +}; + +QTEST_MAIN(TestEditor) +#include "test_editor.moc" diff --git a/tests/test_format.cpp b/tests/test_format.cpp new file mode 100644 index 0000000..376bdfe --- /dev/null +++ b/tests/test_format.cpp @@ -0,0 +1,248 @@ +#include +#include "core.h" + +using namespace rcx; + +class TestFormat : public QObject { + Q_OBJECT +private slots: + void testTypeName() { + QString s = fmt::typeName(NodeKind::Float); + QVERIFY(s.trimmed() == "float"); + QCOMPARE(s.size(), 10); // COL_TYPE + } + + void testFmtInt32() { + QCOMPARE(fmt::fmtInt32(-42), QString("-42")); + QCOMPARE(fmt::fmtInt32(0), QString("0")); + } + + void testFmtFloat() { + QString s = fmt::fmtFloat(3.14159f); + QVERIFY(s.contains("3.14")); + } + + void testFmtBool() { + QCOMPARE(fmt::fmtBool(1), QString("true")); + QCOMPARE(fmt::fmtBool(0), QString("false")); + } + + void testFmtPointer64_null() { + QCOMPARE(fmt::fmtPointer64(0), QString("-> NULL")); + } + + void testFmtPointer64_nonNull() { + QString s = fmt::fmtPointer64(0x400000); + QVERIFY(s.startsWith("-> 0x")); + QVERIFY(s.contains("400000")); + } + + void testFmtOffsetMargin_primary() { + QCOMPARE(fmt::fmtOffsetMargin(0x10, false), QString("+0x10")); + QCOMPARE(fmt::fmtOffsetMargin(0, false), QString("+0x0")); + } + + void testFmtOffsetMargin_continuation() { + QCOMPARE(fmt::fmtOffsetMargin(0x10, true), QString(" \u00B7")); + } + + void testFmtStructHeader() { + Node n; + n.kind = NodeKind::Struct; + n.name = "Test"; + QString s = fmt::fmtStructHeader(n, 0); + QVERIFY(s.contains("struct")); + QVERIFY(s.contains("Test")); + QVERIFY(s.contains("{")); + } + + void testFmtStructFooter() { + Node n; + n.kind = NodeKind::Struct; + n.name = "Test"; + QString s = fmt::fmtStructFooter(n, 0); + QVERIFY(s.contains("};")); + QVERIFY(s.contains("Test")); + } + + void testIndent() { + QCOMPARE(fmt::indent(0), QString("")); + QCOMPARE(fmt::indent(1), QString(" ")); + QCOMPARE(fmt::indent(3), QString(" ")); + } + + void testParseValueInt32() { + bool ok; + QByteArray b = fmt::parseValue(NodeKind::Int32, "-42", &ok); + QVERIFY(ok); + QCOMPARE(b.size(), 4); + int32_t v; + memcpy(&v, b.data(), 4); + QCOMPARE(v, -42); + } + + void testParseValueFloat() { + bool ok; + QByteArray b = fmt::parseValue(NodeKind::Float, "3.14", &ok); + QVERIFY(ok); + QCOMPARE(b.size(), 4); + float v; + memcpy(&v, b.data(), 4); + QVERIFY(qAbs(v - 3.14f) < 0.01f); + } + + void testParseValueHex32() { + bool ok; + QByteArray b = fmt::parseValue(NodeKind::Hex32, "DEADBEEF", &ok); + QVERIFY(ok); + QCOMPARE(b.size(), 4); + uint32_t v; + memcpy(&v, b.data(), 4); + QCOMPARE(v, (uint32_t)0xDEADBEEF); + } + + void testParseValueBool() { + bool ok; + QByteArray b = fmt::parseValue(NodeKind::Bool, "true", &ok); + QVERIFY(ok); + QCOMPARE(b.size(), 1); + QCOMPARE((uint8_t)b[0], (uint8_t)1); + + b = fmt::parseValue(NodeKind::Bool, "false", &ok); + QVERIFY(ok); + QCOMPARE((uint8_t)b[0], (uint8_t)0); + + // Unknown token should fail + fmt::parseValue(NodeKind::Bool, "banana", &ok); + QVERIFY(!ok); + } + + void testParseValueHex0xPrefix() { + bool ok; + // Hex32 with 0x prefix should work + QByteArray b = fmt::parseValue(NodeKind::Hex32, "0xDEADBEEF", &ok); + QVERIFY(ok); + uint32_t v; + memcpy(&v, b.data(), 4); + QCOMPARE(v, (uint32_t)0xDEADBEEF); + + // Pointer64 with 0x prefix + b = fmt::parseValue(NodeKind::Pointer64, "0x0000000000400000", &ok); + QVERIFY(ok); + uint64_t v64; + memcpy(&v64, b.data(), 8); + QCOMPARE(v64, (uint64_t)0x400000); + } + + void testParseValueOverflow() { + bool ok; + // UInt8: 300 exceeds uint8_t max (255) → should fail + fmt::parseValue(NodeKind::UInt8, "300", &ok); + QVERIFY(!ok); + + // UInt8: 255 should succeed + QByteArray b = fmt::parseValue(NodeKind::UInt8, "255", &ok); + QVERIFY(ok); + QCOMPARE((uint8_t)b[0], (uint8_t)255); + + // Int8: 200 exceeds int8_t max (127) → should fail + fmt::parseValue(NodeKind::Int8, "200", &ok); + QVERIFY(!ok); + + // Int8: -129 below min → should fail + fmt::parseValue(NodeKind::Int8, "-129", &ok); + QVERIFY(!ok); + + // Int8: -128 is valid + b = fmt::parseValue(NodeKind::Int8, "-128", &ok); + QVERIFY(ok); + int8_t sv; + memcpy(&sv, b.data(), 1); + QCOMPARE(sv, (int8_t)-128); + + // UInt16: 70000 exceeds uint16_t max → should fail + fmt::parseValue(NodeKind::UInt16, "70000", &ok); + QVERIFY(!ok); + + // Hex8: 0x1FF exceeds uint8_t → should fail + fmt::parseValue(NodeKind::Hex8, "1FF", &ok); + QVERIFY(!ok); + + // Hex16: 0x1FFFF exceeds uint16_t → should fail + fmt::parseValue(NodeKind::Hex16, "1FFFF", &ok); + QVERIFY(!ok); + } + + void testReadValueBoundsCheck() { + // Vec2 subLine=2 (out of bounds) should return "?" + QByteArray data(16, '\0'); + FileProvider prov(data); + Node n; + n.kind = NodeKind::Vec2; + n.name = "v"; + QCOMPARE(fmt::readValue(n, prov, 0, 2), QString("?")); + QCOMPARE(fmt::readValue(n, prov, 0, -1), QString("?")); + + // Vec3 subLine=3 (out of bounds) + n.kind = NodeKind::Vec3; + QCOMPARE(fmt::readValue(n, prov, 0, 3), QString("?")); + + // Vec3 subLine=2 (valid) + QVERIFY(fmt::readValue(n, prov, 0, 2) != QString("?")); + } + + void testEditableValueBasic() { + QByteArray data(16, '\0'); + // Write a known float value + float val = 3.14f; + memcpy(data.data(), &val, 4); + FileProvider prov(data); + + Node n; + n.kind = NodeKind::Float; + n.name = "f"; + QString s = fmt::editableValue(n, prov, 0, 0); + QVERIFY(s.contains("3.14")); + + // Vec2 out of bounds → "?" + n.kind = NodeKind::Vec2; + QCOMPARE(fmt::editableValue(n, prov, 0, 2), QString("?")); + } + + void testParseValueEmptyString() { + bool ok; + // Empty UTF8 should succeed (caller pads) + QByteArray b = fmt::parseValue(NodeKind::UTF8, "", &ok); + QVERIFY(ok); + QVERIFY(b.isEmpty()); + + // Empty non-string should fail + fmt::parseValue(NodeKind::Int32, "", &ok); + QVERIFY(!ok); + } + + void testFmtStructFooterWithSize() { + Node n; + n.kind = NodeKind::Struct; + n.name = "Test"; + + // With size + QString s1 = fmt::fmtStructFooter(n, 0, 0x14); + QVERIFY(s1.contains("};")); + QVERIFY(s1.contains("Test")); + QVERIFY(s1.contains("sizeof=0x14")); + + // Size 0 → no sizeof + QString s2 = fmt::fmtStructFooter(n, 0, 0); + QVERIFY(s2.contains("};")); + QVERIFY(!s2.contains("sizeof")); + + // Default (no size arg) → no sizeof + QString s3 = fmt::fmtStructFooter(n, 0); + QVERIFY(s3.contains("};")); + QVERIFY(!s3.contains("sizeof")); + } +}; + +QTEST_MAIN(TestFormat) +#include "test_format.moc" diff --git a/third_party/QScintilla_src.tar.gz b/third_party/QScintilla_src.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..01f1cdd88caef37f085fa63d7dafc9a7cfacda67 GIT binary patch literal 3233610 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�+xr0w>0?*z2-A#D8!?(LAx?_lDNEnlq3QSz~NGZDY zTB^a}<1|iFH@1bNFL8S>QWM>npg&{aK+V1e7Cr_~R5x7;2HjH09MUHkdp0Pgj1&L! zx>ywR87_Tc4Z43D7YstUTnRX05IHwvt0^g_k7_!ms0uZ#1f0f!?JzsGy;PeHH`z-R zO+QEhZ>e;6Io~DR3xkLUuGoI`uh(g?L&vs6_Jdn=qW6i{7ttDa`<7umz*vtZ30&Bc9QJX}qAFo}mBbuwQ^LAo-lj!!NHEW#v zmt=~|_!_b_35Y*lSA)hMZK7tPGq=z{G&sxWXH_}3j zssArXmxqA-EiB#n(Zgcat%y$~ zZ$kG`Tdl!f7}hbw=vsI6+(Zzgzh>l(X*deEV2K%M`ieTHPZNU}UHvyJMj2~JC^P)& zHAFK*2-?m3GaCTc4ffNp#wcfv!2qktY^*+)&9K>WIDMP2cKggX!w&GlOA@!M-(W?N z)2&es>6_48&OD~ zfHpb;0cybQG$3?79|LpPp>b$SGgRfxi2-Y}!j2fFC*d!W|SzgrqFK5rAZ;v;lL}P$jLkppq|-Ah{>B$hK_KM~fUnN*eJa zTe!#?K+<|Leq`H5i(fc`AK5LgJN+KU42qwOpP0N9&}6@CvIcrmE2|po;L$bslLLgx zs$gOQqHL#XGeD))!>2T%PL6<78o?;5`WhPLpA2}i{$rxyN`74SfG0aZlTQLmtWf8^ zIA3ffY1&5((N70j@#gfXbyDcBGvx(EYwU%<69*Dw3vk7LBYkPH0bH?Py@!Ol9$fK> z;EAwU&>DJQrPLQ%H zwXtDsOWX=wU^t{br;*_=W3qSyMxrnl0^w7e6A_zdc1O}XqYG{? z@T9LdQ~VhrO9PuG)JFg#Kkkim+?P0nf~+1$AEhLG7Yh0#O4G#gF@;34P2BOm&{O6`9T#JSxiX~AvnR<*K&5mw;XyfmnSe@f~qcU+SKJrHfw=|zZ?3Q4|Ia@Bcz$|* z_TjXSL+=_=bqfV9iJ$UixyYCA;WH~*yvvLyp`ql9gG>^qnrGsS(2d2$o)>wBf zDkkJE1DVi(1WU9S{S}$jEpy7UQsHq63;2~N#y!bN=GJYCvmeWZ&t?@uKU!W9jJ~8RQqG-SUT3R zyq$bvUiev>>8nqv`JWc6I&7Dd+% z91xLiXs3K+#5)P8G0ESDKotq2ap2i$5~X+$(ZItlu{iaHl7CFx%L`<^rApj;V9zk_IAP)i%pd#a!Jj+-b<-EXNzoHxD;2%Ti}ih*&>&2mIP^xQ zU>^wK+ogSM8=tKqdnz&CW*6!Uu964_xN$Eep>Q47BcVYejz_Ehpn!dbKUF!A754-t z(-fs@)(I?WY8=psjdv1EcMbr2pj5|-k&O2iXj-$abL)Jfv8xefQIEcOA7 z145`rgzX3$0gXe(LLnIFRKC5vvM2$K^_D7S(H+&u)`>k`yd&wE+`_nMRgjj92UJ_h zjY3XD0RKJwAq_|H%m^Kr;+m448W&pfWB6~Ij(vicaFuJ|8>(aNF0B%lF_KgIU7RSO zVGt2+d(KD~op>L(zKyE6%om4K1p92>=|hPh&v}t&s72Rc=XQ`%Ptd@Rys=J3&+B9> z?d8;Hpj#3|N*bhB6I6%FY_^)>O?x%BEl4r*99%O=0PB3Lo8e37@)fo!_T0jyUSVs3 zK!z1r6y~5)0kL4Hm;V&stnyV!y%edn6 z;a?hrg_`2XY~iM^o%puLoY))NG0(#Oe7%8$MN!%`kX$H%i`BeY0hib9=a)x+5XO;1 zp|{=+)AzQv`b}tH^`7YbW^=!#(E51F1o3@8qVZZW)q%)IzOTW~Q%GH|`n5KBo`g=4 za^G>{XzUDe_J`&6PNEn{9Bk18x6D#Sm4z?d<`riH6)nSry!J^rbsRqsaqN!u*4;C_ zt%6>zw%Kci!VJslQ0+jp*<=wewL=_DrTjqm+bvKV(~cebE|0jNBpK@%2mImR~Worg<-xa5Fgcqljx1#|6S>m05*=_1*XCp1Ga?NtTFopn~CK z+{uV`OQb3MUBSBeZs2=~Pi?a%;O!PtvFR45kHUR;hrsv!?uSc6+Fz7Ds9k$7Uwz8s9G2Z=9{JMZxH z#d|@i`A9<_lzIGGQe~A_Nwok*DAq=~gTwpxBkM-SkqnfMW;+mTsE&gcKb;~4q16y~ z&EdaFxl^Q`EOo9ZO+Df|+_uTsx^SMQu=m38jk9^urO;}?WE-jz7-5er2yGN3*wiK! zfv_tOV?-SFBHvHkC>$BquBh`*a7^*`Vz3JWZ67_zBPWc78{1(_!)UCR{vKUCeYF3O z(uhzuVo88#{~Sz($P-`;g>-utk3{>|TdG_4_iS7 z4Pa=&bTL84E?dHPuKWm$l+s94u{;X#R=rm${>yxvymOQxvM@FR*NmWp^9=vLz zZT?zX*C#)J`H#wDePsPC9>1JobFbw;F}P<*sQTl2wGhRZbLd(7*C%O5;8#0J)Qm0+Uc zci?0#Bx3F>jP#BoZjW@_^>&6$>ptQf;5T!l#O+ArwEKq0h64#1TRS<#}#A08}DUu@C>by>#IX+iR#@$MFroGzYjiO z$c0BJqVaRXX*7&hZcgeyFik}|$Zji*xU9Brot%*~#ZHzuvGAkNW?ncl3-(@aCfYlZ zao?Rh6sd@O3QAZalCchjFTZ9#h^NwtP%@FvgIQmUD$@g!@-!oe%Wr-0`StVU_2VR}rZzSOyc zI4UreozR6ZkdEyPdk?OG8b3zAyy#vb$lD8{ti<|$=*yL=RzqG__f~e8Motjh-dKmd zJ(57IL0KL`>y~-CyvHM7eW(SQBayF0FCtxUev;78NmJY3d`493;hnmg(iT9@E4cYW z5Pq1?r;pu(3^gCj${RhtK32A4>_prrek8mNF6K@=cl|-T(95kYTN~>iZ@zrE{Brf_ z?8D9JC)6|06jPxz$PYQ^2d@e(xC^g~RPd=hE&@2!?1aaTPsYBry9YDleKtofM0ppE zhZkma!ar(#KF3K$vY6UxQ{f;e5FFd%X=HC3d$B&KW1AngzWV_C`4J|u(&CW^60|bO zuO~^!iATYt6`;L4?%Ins<%i(IkjmQSSpgdvFBIVeqhSSKxH^9DOoJ(0l`5jN7E5Yb zG^jakbTHn3r2!>g9IWkSd(JgVMWq|n-D@acwYx&85eeoJ<`EVo&K5t>9iF-SDQEIk)F9^HBcw?HA zf?r?^roN0#Xkd*%ScCf2TkX~7l$hk|jP*nA1|sxhYTEGV^w`Z7+CY80Azpq1z?Tt& z<7p1oGtIXzRl07a`utO(6%X|q6by8L0>&nfd|0aJ0L`lK4w{P8AwfX+$V~17(_T9U zF@T3~o+$#2wM06RU?Kd!;E5@P)!R9VZtcPyLh&2cVr#E>YM%s*g4y7O>DVmp6eP2D z!EFGP>vIT5gkiZTYJu3C!h?j4#$1r-TF@_Om1ffnp%EV@#TCb)HrOxG%D06ld)pA1`iRZ4e4pdYLaZ-?; z+_6E7j?Im?Cw{$}pGGvOOEpf$XBHtP7(ms^96BUZH$R1{7F``hl0lxBz z2;LP_OB&7cqDX#BCd0TntU1N&minOJg*NBGy*OeiGhK9hnDV_77R1P%T0dwybfY*R zK^n#ZZWI={G$kYonE!e0EgDX~R#)Ajeb)LM{3-YY+i)lm5yy>*8#_Uy_tW1y4O)kZ zs=w$r!cK4Fqp0b`?z|)KC~Vop>NLRozKVE0zB-d*4+4)lE=IRhl%lP9qsF3eOdBB9 zquEyj>g*6$wuA2~ae~^4e+G=$3N*}&>)QUX0l!t1tEea#(*UNGnGjmL=&ijv9r#wu zgxSZj-ERO73jwGeJE4%k}5sCJ-L`;e(-XwMFiXSMWuh@U2S&l<6_1H(Cl>>R*i znsFS>aE+D;t+9_VVhV_|hLD6~;C~uQpJhgnGa<_v5!|dkfSU%)rjXiE) z^l5dzy&pm2eed~J-&GCi?gicF+C=NAo98rgs2y^TeSWHn)4!*CB9UwB9o9H(^Z6k{ zmSm;!MD>J6&{ugtQ1^8nU&P#|ekdrjKmW_+ds896AmB+L*si>*YruWBCGi<&C6#KX zA|%Ci)c-!x=w^xS5SRFglh&KWPIk*VcpBS710p)cn=qol{uwC^G_||?+Ufju3Wm?o zRJMEp8wZ1xjvg}lWEuklTLI{%rBwt3M7jIDX z>*+x8KIUYMtf5mhceW#NSV0fx1Eb;O^6lmMRtyenED!je>9CCgd4&gL1t+DvvFv0Lx}EcoR8awjqDGIQ#v0(9w&l zn?ccaZJc$vBQ|hESSE@Hy@d~DHlR(oTnufz#5DI;6&qI1I^BwO z;`-+1_nWmG6MDHK$Lcdj)N~Tsn}0vnmd=0yqOpGsoDF6Mh&2QelW$57F(85%r-_(s zCW*L|uU?Dgb`%laCw~e)h+W91)^c~%L=N@Q)E2dj=jtT3D6cfs2 z(&L!0Mkpp!LCZlgLOD?vPS&zeG=&qB6Uf9%QPtFmDaIKnOhglvXGv$8u(l_fcsfHw zmkUBwG>}1TpnlN#L$;xU`15c)^q}{SnJ3lHnKr%=?`wX8eW=`VdzHwa>v5Tm0V|B&(Nhj zU}&iP4!)gu9tPnDf@^+g~8b?W>VwR)st+yTS z1_RJ>lWpfN+6-X$?C8REPSSk>Z9nxMxf6;mqqUQWq@k18zE4L!i?crrw`hRjmI%fj z#Iy+F1hZYJlR9yfx(N$=-5Cu{h!lpK-jWPXh$;*>!-(Ad1ODns?{p<&RT#BHmxXEK z#EG#d!ShmgUT=kgp#Y~e$R#^+e31s8BdRFV$Q%Z3-dXyt>O))^2^t1#a1giIr1~RJ zW12cN4%29C!h+|KA?We*@=$Nk$W=luhU=AcvM47i180VOQz~ol;8jJSpt1&?G>#}` zu@{Z@bsvF9*C2Kz&cu8zMqEXrR?vMzoxU9B#KB`t|V6l#$h6e z2uRy(X^EnM^)wS@iL@43YJCKi3IjD^0GL5VMaAu;2H|ttP9lm)Ji&0`uixJ)Vd94DIS^pRUvbu(ng^5=Q@g0 z5~d<`Srm@-$9ra+r<~EwB`*Iud7Mf7$*fPmnZp&=01S(Dnp>>=!rm{#egxVk# zDxkL(DjpR<>>v)#$QbPXAwykO%fE{tj0iNfJef+EXe~V#6C2ebz#a~7|Ms_oSKooc z_dTKv%OW;~&tXAX@I6W&jZ+OYV$9y5LcJ(21dl9v7OIHl!$aA)!WQZS@>EdR2~FLU z3d+YOXMa2GBAd(IRf1}mv5FPS)Gap&LCvxwKcdlaIS-@pyPyDl=!jA*x7Uq3Q8R7! zVH-mL>#CI7@yl=5U;aZ2l97a6B;^6K6CuX-i|y=D&+P-*xIyf}0m?yP;JAIm$Y*W> zDj4;**K;M1jownF=Q_p_xrgp9N3zN1KassTlxB`R4l!q<3Yb|*Zk$JD{&CD5B#+iD zoW9e%hCOJE_JdbowYwgiqop$Gxq>c%uOe8)qa+*~Nw~WZCyT5`q&RMpJ=Dt4kj0xc zn#QQ^r?5DI@4GP*lvZgP!*1@3gYdfF+3{F;UgKqG2op#!0yC}fLEyhJ1qC5LFhl5l zo*(^(O4@~gVpxRaBeZ$s@;FRldt@v-WgcvCe6)wT1P76andi`eMq!k=;kIXF2OKq9 z9Ad+A1#X)OmBwQXU?!bt*q zT|4X4g6?EW8K)#1=P-$>3#u90Jc(m|t=e(Y_(;amF9(KReHo*(C(0kO6wD#oR~$2{ zI!B6R(ae!Lvoo$rM^#x913E^9>=4A%jg!P4U%|oN9Dw>Fu11CZlPAt$I?oTae5$;H zy^-Ut;_Xb8CmHhZt>&0vh9>gkjONp}x>N#?Uos6sST@PF-_+1mspTlvKLsAuxaY8o z4QQBx>vUb5TFl{R`}oNUY?-u((9#Z-&ntLyv^qM#SIT+fM}&#cCDG{jeTEfvJIyJX zst7j(9{X~6{pGi_50#P8=2&*N7$;HSveXY8+pI)5yXEITH?y=J{E8(fS@#^53nV~wFSoio z&2HPuufLcR4}v7XX1C<5tX*sG+SwLJut5-yi8;p@liHjt;n6(adw9+deP?^be6U;o z%8zWYe+$SouJOtZqSWBd|MBAd!;8!3Z%^O;z{-I_~S=Q2B-!iMYFOziOan7 z0~R^D?5LgJPG)z-5gb8+ZY04TN7&!t{UJCdU}3#)X4x9d{jd*GHg~YBh8(SV#!W0o zH$NaTF6(=uOHu|bEB%l~$aVAil+FXcsMz~as~ppLv~`6|{@!SF_O~F$p|?NC^Qwr$ zI1H=zdqudwKqebBhwvQrY*XP0q~!K`S{8is4FmH%!v{=e$s4dFizom4TWzrmYN%I| zjgUw}7a!4yexfX|!<;2$T*@@<&bFzlthhpOp~V33b8o{}sf9|3 zxo3@FvXM{1O>=7JS%~TC84_Ivucmoj zj#neJh!~5KB#jDlbDV&sVEMM#E*(1H(MS(IMH3dfZ^pm zC_jK$J|!%(Q6Rmic+fXXM4oNTCvY~nBnW@pKnwG%DuETLmImekoP)N4G^e##Dk6Tx&OV%-UR_+iy1ICEb$NaH z>&5enpH6?heEsh2hsz&dy?%QEm%Y!kc{M}rWZn!kxIl{!QhEr9;m>e9T(i|0?O#+F z6iF+@CSI{TWkp74WX`nU>q<)OXXYXBihxKhnn$+fjhla2nv=Rv*53%e!zL+UJ8}bn z{rT#PF^1Zb+0*^uAScq@M!D}ImKBh72vQwrZAqg?VNi?=Eh1ALz#w1@?3RF-lqxN} zpBX<+KtkG%U3m2|xB^LJwwGT?sN zA> z(xqN5s!t96`)|XnH0|j1@@7D{6txA8`WCk)aa*5K=~)?-f@tX`QT~O5$-$N1=JbXs zhL0vmUJclfbV#4GkR+{qNYc!!NyNvitG!%E^AQ8?n1jj4&m4ogHin|22zpkAV2AlP zqzGE6e2#`2bUtsC&DRRbbXa>38S0LC}5v*)4gh$9Sm~Agf_4?}f&aFnVadW#9 zy&!ihe2_P|)NWt)OXmKi?~%$=6IS=p3gBBt_Pp1-4W4wehDQw_p;WJMSFr2|_S-+a z;r8YH%gMT$4So%qA&jBk6-Ct$O)=`VbQ{HXGwXJ*&W07GjpnGRu39P@-+ow6j{sHe z`iyMK)$-z#qN(XRohwF#x6qfy-?(vhYpN|){@pT7WPu@0WF-%JQ@DeQ@27k4o@BoP z4QNn08xsA7#6BCrTza4CgM>&vOv{+9FlYByLXO_WdlW^1x%Gv^S{|7(rw-${^~jXln?Lz$ z@TXWfXlGy(pNHqB(3r_f^ZK;32Ny0Ikkb?m?Wyb#mN)l!|Q}zG0B&7%`_hW{ib;)+%m*WhxC>->ym9Ycix*hx@T%u z7c?v*Qo6e6KJjQ_cK@+3oUfSLVcBMv(AkdpIieTez(k~!A%Y<4Mn4S?Q|KNiplfPdGD%9u!k-}S?M)9}-V=Ee&bf9}&dt*X2z3G2PT%&o-+ zL0SGIe2ats!idukM2|9-z5+57sXCH>&}@;Lb%pVim=KzzgwaxB#Vs9wOl)P?WXxSB z^K40?gbd(TA2D^1jL;e#E5-YO^->f?l-U~S7sthwp@BDS`9UNajXsd|TnrFb2GU4o zAZ-`7VReOWz>G#7z7_u``+|-Z3HW>bXf|j3EIWf-6JGl{Pv2bH(wT}-BqZ$%X;6is zvlEV70XlANOQy;JgHZ=FfPJuy`HgcC75NkkfKXP}MMP7dB!1~=>`}SwzD}H}VcXaI zH!+_9Fuz1J&Rg}$`q3whMUuL%l8A;h&s{GXKWx$om1aw_k?zR?-gkMLrt5h;g+k>E}>S$F8hLdE+sphZ>}33avdD2kh# z=OOoVSesPVSqRx|w)~q*V)|P1rV0Kt@qfnzG~)rG4gxSRM@Of zw{T9q1ZTI{m;5TBSw(BC;E&yE%M4zySabtYhE>9MMypK%Dh~dGK{V5WTmZNEB3k5O z75X*I;G``5D5_||{Go|p2W+N7F2H;eLN?Qr(D6q1`I_!e2Zt$j3;?5qPbg665nSCT zu-?x2ajf1!1o{QolYzJdIZr;b#X_)4xrxMATRs?reAoe_3_7d8w90%;7M~#n4j&9F zDteCFd-LUY*isx`WC1|PE%p$iu}lNSj1tOWObPxG`w4b^ma}u!ZEj7 z{`$tGvo~32s3$ogX_eB9I)9aFuWZLe1SXzj7_eIbO1x!6=3Qb!rY>cH<7aPUWG?&hD^l9eGn+c2m@sM?7gmuP59w=J+(PTYaC#4L0|uaoOPk zHSVxGL5&+6eo(l>>IzjCY+c)_+4k>O%S&pYyezp;;BRBEqF?TuV9?HX_68+b@Vuz_ z_;np+fgk5t6*1R@4j+W`-NlacrFc~~6)+=sTb@X^A724B-zpaMvbCtep9%1#wE$wL zRmNyl)4D9IZH^u!?Y6-6+64abN(mSeA+}_{ysc*L+6skiudLzYwu^M6BAwT@yCz_S zMk=egjQat2UUolVz4|m#R|fz`p1^lP_Y?S+n*$(Ym{Gw{;cdUoplmDkMcru^T0nlc zhz{yuNB8c+?(LQ7KJ7n1xE^}$2;P7FqPExiPk_Ga-K}~E_H{!H2aeC$ztDj9Ky2}A zgE_O_m3-w_IXsFeVs%P_fHAwXBRme)z7JkM6g|@J{WHFbe6Jk${2f~OD5OjP=Vr+o z2`g?O`!v{I(l(a5Q_QbQKTLc|sOzPIhjAG6@d6+q204CP8@uj^!|`MPhgYXBFRtF4 zo?VzCacL0LHT8ouk*U6iZ4Mstpx@U^i8Gq>g*J|hIE8}%$>XSwv!KXA=Rw~tyWkDZ z|LFWPe?Xr9t$`%}0m)C`tX#nfQAa>L+;+Lqg3i?qDgvl)1AuNyHYk69=WbqM_xO>j z(VTdf+(KrAdi?!9K@MpZ&_IBxHla)0`1lAGn^;~|q>hR_jeW=a-pAizimkl4Y@{<` z!T$@d#b?QuHEW0*DcC=TK$ldI1z?V~heoi)U>D}g1@EdEYvzqwHOS@$$GC@pFNnDN zMHwb_l*fVVGX}xYSxgPgx|3*!PFzEi1zOhhbVPzE2%@}ntH4fLvL->|P8N z8y93R^#fmazZ95JG}B~|SL9Z#5%QPzXF`}Jtvfr8dpZ;_?QWWUgo_0Z01!HwYe-&I z;tgd06yxSp#ZlUQd8ywT$tPK!Kmu+SC5|r|Je*ot+S_~cG6;$aq&}&SL7jwB-jpnh zI#jz+nFnM4HH($b7H|@}M%RhOQIE3GZCk`P{l4u3KYOTHQh)l7hMH^(r*qmL5q<^J z^GrPBifzCD9yjpo)st^eyw@Pd0PbMe&gD+IYM9*Pw=1BSh#$wDR~Z%j&O5I)9ALjB zMP61(k`P6k4*=J26m9;1M4TvAuseX=U)P~e>!2vI(rjk-5a}!*UhRO{2;{X@>OgBC zc;gZX`&2!=5v_#Bk9yr17k(542`$nxFuOB)Fq@+z3@`9Er?@V<1P98r_DP&FpOKc6 z@1g{{UHx>!mok_S;N13}fVd{ACPVa0St;N*<43rkif9@s3w~5fqcZG_ zw(!9c$`g;y8@>hH31<@oK|b;ggI@ujtcZDJyf>ntpheZC*!PbT*FwUY-6+o%MMkdt zvsx`yyA2x5BDw)9FoK_Ch;PdcqNN-mXi~Q>SZ;B1BX%oLXmwgeF`+pPv;C4WXyj%= zR;4s4%Al*nG9I{B18BB)eci9tV41Aec{!riV38&3Q|7`I6@VNHOW{Wm40Rp+Thbg{UP-9;54i7V#HMNkaVhd)95sRCM++Eb8PFnPb8qjq=os zi^8?ab>DDh;EmuY6Z#)nnFnQ()IK}Bb%RgcnQ8JLJuA}y7v3^BbMj46;@D(`6IIc@ zXZaOL>pIEODm1szhePm)gmSJf^;v}zVLGyhAJp%SS)VPu5Lzy0Vq5TrjkqZ#}xZ0I-KtqD!J_Zitn(>qK z1~~c{vsJ%985LPtBxMzn@+&9|4V?qq%^cVq2%h6t1Qm6VTwY`b$fzF|ab6{KvTDo$ z6YBw{2Dmkb1Ka5Nr&4kY2l~p;MML!-2D7Do5@Om=8D{ci;nuk^TOv{gRaFz}N5$W` z$JBe;UQ_7yNKI-Cghv&P!Z@y2Ma>l;{yH$(zp6J(Gp^i#!yhy0z&BR?!N-fpFr!d{ z67-d^n8Y+n!h+=QA4V!iN<5uiez>~0zIgfO`X5&pFD}lmFJHexCsS6G1wXT7DT&|z zoqMvI%FFDuGD_npNqLu<$Fv9Pw3nxEf4+FjyYBhv+0UZqF3yEYlfHWK>h$@Gi=Qrk z{OJY%zia%EL6|X?hcpQDzg4$R^7xuF`PpzLzy0y~sV5LW-jg{y@qW34KZH10=4U=1 zzd^)mb51{)ARF!>m>RRcT|wb+yMogGSbDJ|?Ov1xK1+Pc2aqWYy9bP6Cpy^R2ECsK zYJ;&4(ja9aE21Pey)HrUFv^%i-6JC@u;Wszv}BP*7}Qdi+FBdddLdaHYLz#s=DXB5hD0$^-O*Rb^X{(J2 zxSB{GwV_G%+iF8$)pqGdbwqwTdQ#re0!$8BqIT#zWPfZ)xjpNZud3QJNsQ-bcK4F3 z+dJgn@)6@wJyOoc)avoJKg#@du3ahAMbtc1nhE5B=E3pZ+pky#F zU3Jx37%2gf7^PXF4@^KMy)XNE$h<~`wxtv>+7>q-EEaZw?qOlW*U+^?Xnk-u9TwF> zi!sYA&%kjusPRwoiO38C_A}q0hK7X?@4uCs-GHkuRTk|>yW#CCKD=FR0-*V@Mhi7} z`iKXWHYn)WFKvWOu-5emCc{f~ zZcgUG;SM8c3&JPTMk=7sZ|6W!lv756N!7DN46}-|D#-nk`3sm zEz$AAPi(PTV}x4CC!_y0O2RlRirlY~-Vcc>n;a=cFoq;s@K3r#c^osrtf@oL$C3RX z%8yq`8Zf`is$qvrAWzxZQHD4|0|!T7(?f0p;5UP)Q_~(DMWZ`8aWzs$1S%+U?*W|w zj{<1Q23_OJ)t1*4NRT{^lORsxNan?~bhrNy`QsltSQP{xeqBL(@2gubPU{v z-bVcwy+*1%(9s}Yvbgsavzudnx7Ct$`&1?A5j~k7PyPl8^$mf6pN|97~l~%N-q2pza z3Ygl_u*ranQsrr!b6dx+vKmt$=Rp#c5siH|TwUy<6Nw<5m`_49Ya&S}mN!Zt0*UE> z>X=Kc1AU33Q6~;7;wUW{N#e9BTn&!@LQJMWUs?c1Bgv-r04)Wy2K{u@o`|PPXjG7j zyk&?D$ufDZkOe=QEi`pC04D4)pR;>Y3;<=r;(pTQ4~|xl6;iT ziE-+}Tr15ML|AU_MB+SUkm#cp4KtqwW#DIn#dHF;Gq0ntuH%Z*pmx1Pc3-sYSng|E zdNX|OKZKOA&g^M=$4gI4;MzpVhPo>a==4y6a$qytb~`bIdm18?t6i z%iRIQU@G<179q&b=FKz7_(k2EUQ%w6U6QdREOQ1)c8!*14+p{)$ZvTFlGYenp?q5o zXjB!XWadw&e;Z{!sk?b45#3-TI)wP5%J)f7&@{;c^IejMvZ8yhhQv=d!G1)MVApI{ zx6Yj`w$@ZaGUJE=J5Ui#_YRLokyf8}Sgd_|zG$b#zauWprh~&LoGd`N0s-Q)&1!cu z(`uNvM1J@ z);b}#347&dw3@^Ti}|_Q98%F&WpNQ@ouxB4 zPIS>8MH+@wtYG~9i;q}1R;Tqb;32C$5o6@pF2;>VIL=k`v zs5Xlw`z&C88|iH6I-ir)AWvDDWhKd~B&#NaJNLqihDc9)hQ?`up zoku|sR*dFZ2ht_t)NSsp+mEB@fWKe3es7wrktn+74x;z!b)x7KgXN=PanBMJw`7cx z5pZu`BB*IepU$UdZ0aRVvgQZsXYg}nqVe3RQ@UADWcYIs>g-20jXM;zjM@dQW|ECc9_{;*o~q?$nTe+OjX$BzX2Tn4%%85dHA&wvvv%nwZ9fVN-a zXGNV9#1H&v->20oXPz~3YYFI@xLDnh2yX(CS;o)!aam<~vN!GbK;vvAzUq|uvNh&S zdmTP5t@&pSY0M}2A#5PqbqwIT&x;VTb=HN*?F22igGfl0@N%yV(}DE0(5iu$8vOh) z)(nP+wS&da!}4AgX`bdJAZfj?b9Lu=V}0l7o@%UTW#4t*(jIKTXCEmISeS1jF}q%0 z8o9m*HmSE*Eg>BKX}*Cu>@|y(hm)#{`+bkz`ZW&K%5 zqKm9MLaQk_JT_y?2KEM)^G67@bG|8X%rwR{Bw$ zPJJQz9U;p;%sr>u;_v`Tb^v5d!yAoxm zY5p^MK3NfxG>9rjvICoDrMK_#5RYn)fi}d|yEhka6dOy5UR+~Gyf}UJHX@Zsv>#fR&kE|Gd1hhajB zIHpw)kE%U^F$#xpP*)KGR;XKrp}ryueaLhfr{$7_t{T;?q775L%y-* zMFB~x4&J`(QOjdm_4du{t4mIN2hjulzFe%iy&?GG3HALXuYI5WO{c)n-G=DhU+2xdTrl7Z z$)ufSnuc}FqPk2E=qpJ}-T4V3PE2+P@B!0r0|lpEqRf zndt!`d600()r3T4Sd%DV|6VV~zVL;UTdrnb4KPV*7{ZqSYR^?ukb z7BW>F2I^k0daM7&``+^;fzM9#i81q3F&HssM)HE7O3R?>5_CDN1t7nD&n14VzOnl5a-BF^hL zEJHR;hO?})q%86<@N0SSIGNq>M(~-^;cMtpT{Fv~AS6*5hH5)<*rbXL1CIflROZ-G zCV#nEePob(dAZt3N1K^7^zoxl!AX|mFZ!g6tGLXnG=0A>3op!c)}XF}NM|O3I4F(2 zw94=cXK_yBvdBnKnXp1Xet;CgHW7;Z484J{p;n^khOc8GBUboDRIpHQZfz1X8;%ww zm^=J0i8IAv#tO<j3pp{n(by+!Q4P5 zh<>v$i>os81JFVjjd>wxRRSj<(^LUO?K^h6=36}$Ti`JYfubZfH1=euxgkqH>uX~k0<|J-&jRmR2jqu@g`mG`r@)$36UmQ0(usm2la$tz8Z$jA_UW` z^R6K`%&f6x>&A|P6QDOfpg%#R57)&$F3z)R$cTy*9*nT7E_M$7(woCGZd5iiAdvSj z0RBu|nz`zT3DLQRKiI;5&-(#R5U~BJf}fydBa|3a+2ugk=4W;XpS3Z|tg1Lt z6r}?Ryh0r30Vu&y@tnbx-{$nD`-_6GV!VDwawp9PDmSNZ&IdX&r&s?N00}K}J*U53 z42nwf$8IQhb4mxoI2QEdX|oIlRi6`yYV5)!XVajQ&$-P_6a>*gRKEDltv$2{dI_Pz zei0J;`&ETVMDI?EaM9U@Zyi!ksPljZPpbQnpBGnBR-sq@VqVv5ATo5Z;r($lK#wlS zO*7MaH(gliYz%8^6#sZS6l(f$H;>O2^C?=BDUJ>8Phs}Qh zR#yK;i~Q5e%im9jAOGc>>%pB@7TKj%J*uk`WynW)R`saP?QBaxBx7*qx9{d{##bA290}*Xr^x2)yo%CbhpF|96s{umK)hyvKS7Is}=Br2KTR7bvv9` zS3G@SOEF8YX_1P5hu{E5Sr+}L&95)nq)74s=)GGHjATQtGo7Z>7)67!+t36VOQ?kyXW+$r{ zl65nSU|o;c(YvKPjjdOvY200W5$W=Tq1^s(w_M)*1AmoYWKhSdktgb!B6;3^jXZ7j z8RP6a zD~mb?t}fKZt*+WJZ52i7^o@II-O9q&w3P+gu9bglqgEFvgH}I7 zo3rw7!=a#SlQ%C9TM*Dl$#fwrXpj$`Zpm)kVrO)zwU$02QWY7NWm{X@mFl+Erql)6pwuP3p>y4@qU=cd_pjZLXb94( z5>t&3sjMqqJgtc7P}WqH%m$jKtzPM` z7~wEPPOmRcTF#BE=+Zvz6st$5aHH{}ZJD}h%{R&3Pmc+y4sF9hseH`4)a?1OI$EuE;ntV@PIALuVajMjNma#z2I{Vc;HyjCl{9N>q0)98D!*de zEQMV)SmT=QA=G*IWW8DA;(E5WRNh`pEI}6GL-QB({LOb31mEk{l+-d85;o}hB)ux_cCquu)v_U7; zZZjtHtDMzug{-nBP51iDO{Q)g(UjHul!En1OVw^qT8B`xdG$Z%Yd*;#l;h%QOBuk5 zgjtNrM`i>+`f9q6{h;v9 zib{vsNr+IHtWJ|CDq>dq?@f)U&WXGEv}`*|DlW$s#bv}V`hJ`O z--AGE^Sv?~x>-p)VGw|7sz6>~}w za34PsI5FzY`J|GZ-5F`TlJP++GrATbjjE*1_zX&%Z5;y>8I%25@)Vi(GrRi$SvR+& z#FWXidA)rGh1a~GWPtwk*5D`;QaT;HRgbqQQDZVG;dj0o zEH-@Cx>Hep0SkpqSP&7)IIqh(D45hW?@um3w8&guqD5eV2(h>dq&&9V(!vJtAKsA9 zOOMoi4wnq(O|_Vdw6?%MLc#PACe~9REY|tY~ady=brHC z$TWiX@uLoKk+LnBF9b(A&G;gm7k-|_j!p?4NMEr7(S7!8xq7zc%SN;1r!GmIvuS6h z0S(H8hB*rZ%K))keId6zO{-5y4GzpcxDo8|GOV(UWkKQ-M=u;FWUJ2)ec8^_H9ukD z!d1&`#(Xq`cq^JZm5PXPGm36!jkg0xI!b)<4=e3%A-eA}yaQo)6K-?YIo~Lp@0H&( zA&Ju0F^xZ&%AmU@_vL(kM8$QS+(O-xP!i@v8HI(lt^U!whOvgs21sUWK5m0+poHPO ze0Ae*CEPhXl8I-`YKy`=N-tl3xOjEm7K%&?e(lpbE=)I7zink|t2%c%!2R(_W=;pW7B`$v26ZxPI6F3It^k z&V|#o_EkK!%MG0HgAUat{HO!DKjGxv;31pu7hpQU-s1faLtGauw+;JaH{YPafV)V^ zH50v9VJFMp{w39g#L=} z$B&|OwfVr`-(4&##7BSE;qYwvoAoP zbT5O^ZP$}VlpKQX!1~NDK$EzgUjZ`61B%ItGN}S9Mjp3qmM};dbUu8Um8TmX)*(Nn zWksIU_T?$NmwRd?)tJ_+yM&I0xzN|F`~Lf`6XOT|vb(k9#ETV9C`;Gk0u=w(cmM0Z zg!oWV1%%Kbii^nuV#o)3iUR_Z5b;4b2U%=xU;$=&;QOffnz=b`N44;@)RbHHDdE<0 zk-OWWG`p2Y1@{yfX*d*NwpXYyC^j46DVCdj8hIN6@o)Ilyj54%|9Eln;pOS?{EJtF zk7>j4y;?5dAjqdA2p4)4KN-SP*%Af8fiysFpgVDUCPXUZ9QxH>2ar#&MC{~ zd3&>3KNIUH4C@>If=Y`U9n?DW+GnICc#9Q3E$|)zFal<{E^6XubrO=&)%4`(!->hN zH1bb@c+kt&=a)ZRUYx_yLK&a^=vRmMwH!RJ-U;QKG!NpuCOKdKoh^(Ws)evwbXq5b zjj(IQcE+1~s~t6Z3ShgztBD!1_!uFJIS%&1XHlF6bsYHC^T9ondmZ6P7R2#$Oy~9F zTd@{`(bKfzv5H%c7SQ8IeBO%WU+7F;^85G^zv4E8xKAx+{Izd*i_vOGqdFiN324qj zm-nkfx%CcE+uFnOZeT}qE z@+gCBQZk*CWo-CgO91NYeluQ3!}uiX*(+I|#$myH$hZkRb`b@691+IPpmuxZsXdSE4O_AeF%ON> z(g(Ya)ZmomO}G)!?2RyZPF!9CZ(tFLHO6SGw1})BiHCw4jBIls1w zbhQK_8#r|ETLg0P2dz(Ywpy$X9 z2PhGdZ>6|8B_Z>JDq+?g(2_%K%4@aXlfT}b((UN`&-yQ@KnpmY1DZuuR>z?H|JTOt zt@>1WyfZY}@NZPJuXdXaw7!Omj~_kR-mT>(z1~1(I4~XO4Jk3fTrEWRu=C?O4%3v9 zpm4Yb!{d%phk=Ar0llgHF!F<_%nBAe8gpzOKImbpxgZ0mii}p6Iry|}+NU}DjF|}9 z2(!=xiwQ`$(K@ht-~He?r)qnYG1jJ+^Cf)6Ilc41$WelI1Setkq~4WM%21yu=O01fgGAsM;V8uMTip-&c7qxm|ZBY|r_PT)n}m_Y!iM zZRSFaH}x|XXEEg5%^m#$2@jzkWOwv;pvzmae1PBM>Q|w5S;XuY0mg=JrWW0O>y%h-5B2DVJ;0IyffhqXAsh4ZT@*t_wI3tx`#o<9lOK0$4 zBoU4?c&Pgnx7)xc8A%Dsq+}#dNL1FY&l6idk7&VhK)Jyn#t1d><1#J4LrGLjXNVc{ z3xu_VmKMRUaf|JPi2p|)$a*e-uP!)fFbxBhGFUG2uMCOvbH!fgn9;IT^)Z1YGY_DL5v4w8U;cps#%&58nQC6 zHVE)$?&U=#qBI+_YEWX+t2Tr$CYJ42BYSY!4&%HcB#dh|5hA3(6%G+M_z=qHDqMVM z1_+GBkIU69`=&tzIOS^$?=J!oug|l2HRC4kddBoCG0$Z%0b75u=A+!t7AbL$dKEgP2IJgWBKDp z-@SgrFT8&D_Uz)>tJl~3wv+4MuZL9mPKFFY&KqXV!1C$+fh51SH_)q9$2b zg)F2-dmv%8Yn|`p4L08Sb}lf?yiK3s7b)Z4Q(EYJ^9t-4udcX>$o<4+q%|uzPZKMHkL7H zBfu|J1`$-#0 ze*9>+1a2OqLX1~hq7q%I&ei$>XnN)$1#DHFqNuYJq-s$Z-E=O2}Z;|+jGo)k%Ei)SPcJ`T@b_I0uI3{tSS8`3%B zThWb0F53V_op{%C3VX_KEq3KAmDkx&MODe3E6tP^J9QQXMUkcnKgF2cK6&aNHh=q< z5zS()*mgr_=BtcG?bH>tw%Pq$xlaf9n%;-%-?I0^nNTH>YrNTNZ@vC@c%*#>xoH5L z#Tae)whLbz+3MueHz9=YJQ&Vh&`@-wQk95VA2Utk+$Z_I%g5zYyB)>W+PJf zYGcE7v_23>7R5fnR-})TIwB1nD7arJtE@p)ybfmU641Jm3998Y0aR)j1c>=6IfGN* zQXKUVgO8?pPJ%cs{h%=I1gmY>_4_&8r@f)7hNN|b8%TBM_BfI+)0H^BlakI}mCozh zU03IewO3vXQ4?qNH7J~nRNs?-^^5DrdyDwqm?}4hrSJk;&(A2kT?y{`-$feNT&J~& zubB)U{uXP8*l+MIp>exk3)dTw!WGZx5#bM#sWnt&y@wN#bsS=~ids*@ZK$PYNsr+| z-zcBfQ(JJUUE-;sHMZBp945-PXR@B0DzcZ$5$5eM!y}Z=YHET)I}CUDisfO%2tlhO$x?0Vz@2RFJYO=y;}pj;W2) z6RGk)Jwvz|+hF_~k%-ffT|v4T^CJWeCA0uo4QmJeoM)RcC4 zD#sXU8WsT~DWy?nzF;~nfc~@>Bvmm|{z@+PbP7SzuDLUtLZ(hPRdC`d*Dr`L=;$6> ztl?%sTJ8t)`=oDD1%An*s>ezUGZQZjE3Ej_weA$iPmswOYQu!(KYqQ;f zBT&{E;pU@-gj^%ya|@Z+oSXc@YgYmPN~WL{bSi!t+(B3wOk}KqSI=L(5J%u0y5N7= z;;acWer9E5P0C1SS8~L1_Op}p*PY+Y7Ql(?#cx}d;mINI*N{7jJYU}NkwYLZi+!wL zPsvCSZ@poFR&NvpLY(Al$m9s;c}em>SX3F+VOADVWGqL5{5rl)jGog;*`O91P7>?s zQ(rmYm_E_}Wt>>mTs521IkT7-X2YXQ`-JWd`<>$VLpdt%(5Y-62!jYG5sU=EGbIq+ zsx(&<&aRBwhYQI2qDjK$rD@X0=0Qu;6WY3*{kR+&Qjg|of>52M()*^=$e8(eBd zPwkh?d~e=}1in)rzpZwS8MLf^8(eaRsSDeZ-cqJ!^3Y$PuGlN^iS4Yyug#uLU>q-Y z#PSd*bvsr(t6!z(Ejhrk(k?N>3hlLiHCS~9_e0?ko|twm8axq8jo;Sdf(ONA_QxOZ zpA2{;7s7ac0IQ2c`7&Bv_O54QlEk^gGtid;@9I%|Lz!pGiTK~`P#QX9Lo1r)ah3Wd zKUruKFtp=Zx@cRmD*yQA#fOXE&o16TR`(VMr5161Ih4z_Q520hrw@YC_U<>(b(mGf zhSTb2a~8=)C1n+?cae=7ImI(3kun0y_{&z`t~W6-@A(@6YN-!O4+WYxDk_o{{KQ}2 zfjl&OIXVco+A>EJ7Ct(O`QcKYrMI6M`6$Q`@-UIc=Ak(vtVr{;j&hcojR>d5=MKxI z?FtrjVgm!!)Cc40T>+1aEC80n9NprT_`Sf@;H?SoTychaOO}+|+5CLR=gCKr(>qHd z2BfUm{D5On%Av!-a-i(s{VuoP7)qS{BnxusWOIiHK(_VH|MBAd!;8!3Z%^O;z~Y{EUIqwyaGJM2%Pvs18_YmyYSO$%>)X$#^&LIRqdpr5NO6M00s{_hB{bp z;IsMm0*hXQLOc?uE>81#2`B`JVhHt$Dr2GP0SREXJ zt7$@uq0_*SmVQ;`H3^d3Y+$qpG=0x)V9bv*fK3qa2}#tRI5_i8IPvys8dr4~<#im? zWg=l!AVxBVSM86Nfh6D50R(N*atKS@~ymxG;kcu9B!j@uefS9l$Db&q_3}XBIMq{bKI*^Gz5W<>W>wxS+ zd)!ci>_EMH$K6n>_J|+K$n_JPWQkCZ^$QZyEX)$3x3$2@uGn|R8VRgD=LebA4Iq-i zoGunm1QEn$G~tf^oc!tiMiyIPDC9n4RYk(6C|eU>NO13kXLrm)DL8^{!6}29M`>NA zewwhzHy&=~oKNz=b&5Zno}XX5I)C>PuMbX3BknSr6u8vnlc{-HvY3oeW9oygS0ck0 zWAmb>_XPT0op!$!8mW}kWVb*j9$krJ=5_}E|A`@?2|;ltm^xB@NNT}@)|$XifVB!F zpaq=ig*^gpIq9zxM));vF8`R->>H4*(^;FrJc;u-3ad2F($MUEn`^AM)^z~)?I4HC z!p7u3)**7Y-SxlzU(f%Nqd-Fyvk=5;b5^8A1ICPO+tKhHoCjX5uF#BxTq;72$dn`X zUa$E=&)$GH_yV~ByzALwj!A_;X%sU=2+KGiA@7tl@?&Z?D&FU{+;_z0$GrwWGUNMd z#Vy^rV87#6B76uep8*M*0z0zQZ*gMxfC}Z0JgAbqu1eDO9{{VOJv97*)cs!Zdkciw zsfXXSR!Z1TdpDKfbR0mKG3Txg06oAu^TA|AK=&(CEBbk61vGbS>OI{z*O&TbUzL zW{Kvh-NcHA9tP+>4em45=ta~-_ohib`K zs$d$zshpJa#r96q5xMd0HEUMQ>v;w4jnm8D(f6S}ny~K*e-FwW`IM!8LSsK`oi;95 zT;Ezp9;;fg)T&&q7Ar_cxF%~U#9i}MUuU=ZyqRye43m_=HOOki7ZBJv4e7K-$P$EE zR##cd4AM%#!l-5FW>ua< z9R>SWU5a23_?*kslx@Zk zuhJ+bty7y637^^#pCwtKTbA0xQTt>2|0a+{2S0NZz^L7AGaE%y7ilNkY!CRc_1d<+ zSRoVeP>x)6rI%BE=5p!U@Qya{qQ*74(2H)!qls%Yv5Sxs`@4(f&0@|isRdsK{`uYI zvR=J`K;DT|c-vP2U`r=UzC2aZ_rw1^xz3#b+Cddm!k#a-I?(o$H8g&BP5%FrFObjW zJ9sF6&dIv`0{?X0{^8ArkI^qD>#73?#apmV!e`yPqP%;eDFc`N8DF2S=W7R&R9&?o zP$fdtQBhsJKXmnsY|7OVoe$kQohwF#x6qe1>}y*Si`rY-rND}gwIP%28SqA-{ATRH zNV01_z2X|JuFb>Ila69&)x0_px%d*hkmy)3b5h^{ZXo@@BNVfa*rs%o@}j<$>=FYRU-a z7+w5;xM!CS?xc=)%4fFVs3_{jMO*TX{!4O>d-tePCoNq(p<6z)k<|zBSW&ZQnd>`$ zfAg~Y2UOTkB(MZW>q`+4jc=f_K*JoU*Peh%U5SF-ko0np1Zxb8%$KLLzyoNpP<#U zMJ97dGsJ%j1AxNU^v8}Y<~2BK7_aBy4eGTdI9q6cHW)&c9+Y2T<9LmyAoO*tHXAU$ zK?bx8Gm?~H5HR0xDflk3@KB)u^}~xIOBp3~l~e%|B3l21L*Dgh?3^#M5rlb6NW_0t z4#Vk8=6$MRI1ZiUQV}Z{(Huil%dI*lCCMC>MJVA|%`$gIEoWx0srAgPl_B`xu4{xG zoKJw@gZl|O4so<#+UnCt-F|ZHVVPQ!BY31|Uwj)n{^_wS4UPr!<{vvtsL8GY~Yd|PI2-8G|+&vk~H|S(Yn&4Y~*(EiK+t7N!fRzX&;N!k&FpRQ! z3cP@4tNIyGBSmWGr!wNT5zv4W?;43QnDva`zFI(HX!xgy=wUQ#EkY=dAKfzkDX2&Z zp+YV4ognPjX&wgs1ZsFvMeRo`5{) zZ12rtrBlGG4*oRXY`M)PexLS#oDP1OPX1Z>3;eKP{=~HIHlK^pxAx(bL2fJRNzc0X zM1bN%wj6!eeA}=^{Vg9qpO{xNwgjVBWVP(Qr26}!ZO`DXbw{Yz<_0vxcX>k=cS3TT zFvdcXkSH}Q!!Vy7+`W=PvtF)jubjg-!+eFG**BkNfkQC4NNfoUy7Xf|%xzD-2EpzVRDDaa6SO z5a9omY@a2#UU>(ucUw7`Is)OqCDnO>t4b(Qw)3Q{B6Pp5?E>xM}st+FtP!z}iLtTLOE9^4!x zxyqk5+6C}zbx>CjGHlIawfZQ*+m9cu0lUYjz%4JIVKRFI;LC6S3~pms))-4`n(=8L z7w`8s%OJ1ez`|^u-6T+c5(W{;izuqhi8&d3fWO7QSUw2!2#joa9SQ12_3s%0$P9mD ziXY_jY`*1-HwYX9;vlc1D1r>GRr>w`h4*49yyv=};PtLn*Kq6uUcD6(L`5{ng`yJQ zLmQDxDRNf6BGnpE(MyqytEpBS=kp0r&>}`0c^qtXC}4!?c(jAj%gsPNFiQBsX^=Kf50W?6kWi z<6flpp~hTNFy)>m!}DdU&1J{W3xQamaQO!R1mEUFZo3vUhx;sDu?7K-@S%uU`Q-LS zWi}IB2f3j$myY3O!z=0((ZteTr8meoJwD0{8ik2%F`1kos*<@^Tj1;2pRBTFa{B)$ zTe6Sd^VJM-@j+D7wBYB8*iZB~iVs7>J&+PE?5P^K(TF_pG-XLzJE+CA4XFMDO*NK0SZ8MlQu;s!bOrA_}h!9fOd^HS$l8jgn)3R1gS35hN z`+m$&sCX}3u_c6DKdDt_-uz~c2>T*4C9hK&hhbFKMHZ&1F^B?xqR!8rXoPk??^DXO zJANndC5~{1*%C&==~ZXc34A}~26B<*=|~LH{pw>`E+=}m_cd4?ymgDKpaQM1IIS~t zsT#BDCm;95M(7W7NQ%c=y=_xDtjwz{$igCviqLFS_LUoTwYmj*R87Dxl~Gx~C#_Ys zL@+{bB>1`235Oj~rgciIvIrqbCdqxX;fEg+`SvEz`0~j)1>I!6qtJqxPfi}FOFF-7 zY^=)Dz;|JIPstn*?iz80VwOkBO=NJ^;*qowUAEfrWeXM^^LFqs!oq|cTe&u2*QIF` zS9K7jd1oNTlcaF=ycBxQ_$U1ntPQXlftgzp>4(NPf8G$(ox-DT7%&plERWONY)dp% zeQg57oh_Zq9H3;VEDH_>Rn~rB`rjvH! z$!_3DQC;^zL>Q4@D;3g#kQPYt;k7ozxmd{gSW@ojo=KQytSIw_JzQ1 zgQ|+aK@eHr^`hPv`P}DPsHX%%6Yef*qlkYYtPuYi+=Q; zfG?WR#of2EEp#p&hQD+s1RQ5*L}*NdIxO1F)1hqQ%#EYq%=Z z5j-SOm1kiPhEz)a?-khWY}PixOu4@ZkD?}LGLltg&TR)mL-WeDTGb)*_UL zDt?<$c!qZ^kPzGN7MfA&`z$Ie|NX<9ue;(b55Ty*f4a2sAlJCGrCe@=WDf7l>(#|- zp+dP0+g|lA434kHg0;f9J>N1yC2{chk(7&tq!xVHVhivZ36^VBhcu3=I+A{0X+}NY zF!J%_pX(bJFY(_~0`4AJ6NcoaLs&#kF|)s1w5(57IX_HnY(g5kAx}b6A}pq!n_|$z z|63vVlT^NJsPuZ25_-(GpR2Yzy@M#cIA4VO?6$nzF)A zd}3}MQ)RY|I5rv{oq(9;>OWfxz1hzM!w^znMKmDsX_XdrScX0|8xS9P(rgjLlhX_J zjVX|E0_(0-J>o{-tJPN1-sdt<195axF7CV%R!9-T_mnHY-a*$(oR@Z$z=z;A!)l3J zH{S)TI1jlIpGD@&hhHtL+L6KCjwh|nwHD*%&;OCMfmn0qTNPYI+7 zqQ*;B7GXuQFfh9!I5uL?2izXuHYP2Hls6raRl9X_vE-i`O&YZmpN`))+?S1w->Mv+ z5mLmdANZ`G@9$}^nOWLlH&)iFinWnX%qW^KTPsa`Kfe1l#to(!*U{#-p{=TfMKt$o z=7=sHY<9|!I{)<_V2G)A*zQUZ7ahJJ|3KY0?Af73RL7KNVHlENw2fBT7xM-^g8eiu zlQ1S#RYY#r_oTD7E!oo47_1X|-Z@@$W~PQJsCcI!BFl*kKVXh}-h*v_ik(oOEcv~> z65tRa0p)^`jr{iu{)G^g$^R{GmKWY^R$$5SUggFRthwfiLS0h6aw!vOKq`$!8V8Wh zqwqJ4i^jt`qZ-vs)Sn)|duwzJe+aDZd&hpB1T=`EG6-ww0Z38L+@GT0=bi=!AR!

)7sUg{{mr9+t9@&!S`0dsMnzxEhwagVwPv@P?d35$33xUg%A=P2zXzvI z(dBvp7?%XCi!L{0#trUtsbAWOa{po0{kLP*x$|R=xz^Q6YStSS_I*&$Tzd`zT9q>M zHNjscQ(2ShBe`LyD6rbx5PojJi|7Xu?hG?CIGS5vq$&7^UbyFf<{TNr9Gyo!CBECvK&FOPIwTFJ4kvcC~m6|^uP1COw zpIx6FQ4dwI;tZG%Su~jbuW1!7Q4U>mg5-EnQC8%-p-gH;O5e|-kQSM4p8qTi?s52Y zdMT%eu_4}?2~Qmy4KH4gGg+f&&L z7n8l2-BI;Iup`CiYV^eII2%3H9IgAUUtUURzgsNk0=*4C;_<0UT8;+9!3}l?|FtKA z!=xRb;L%?!AgAd^w%&d#g1~7&(VKLG-xJGtxU=q2`^Jskty9q*Yt%11rTk0za87Drmgfd?>xI;_efDf2WZ##r_9 z`_U@iGR657v@XSymU_WWt8p*&eE2){q;>tARC!WHG0pu6Og?~}Xbt~PBGTJcvsL2% zG8~R?9+$*VnIDjVnQwj&fMU9kO%J}kA7MZAy*U!|JirM2y0Ro|+fnBr)&76&>1Qkj zhxLFmJuk<94k%yifHKMF-0}Tm{v&Bn32wj8hUZ2Vp&+qtMmlhXm7xw5xe(EgL5yU* zAQiL44sppgNlLh0S#AUf$CbvGw}Cq&$f$SL@hIj~Z*K(isigrj`qQK9$x@-i)}zvh z?dr5@UagjF5ET9X`(97r$qN+x6;_=$LV?xA2}{$`0Tj4oOaut~uzlefSFy~#WddIW ztP9EgR%sEiQ?$4S|F;&_;N2-+Sexzx!QKg3_`|2`fqH8$V{H2b$nr)7Pq;9hO7Rek*T+ zaD*w7pwng#mV@uV7m3{3v5tf37E+dYe3xAt4hEf<*)x7Yeg!^+K&R0YgQJmFS)InT zi2NcpJ1H7XFeH!(8!fpgO10Zz%_sr7E#cV@1hhfpJwrL9k4Uy`Jrp%7K}RRZX`LFqVg=(m9RH5j0e}78sK7{f zj0FtTP2IX}KRK%H%k|##wSi&Yb9!~wA>Q4+%XpfH1lddPbV)b!UE{s}lkuhfn??z| zJl~*sc!BC|L z!qwTU59hDnJ%4d=_TuvFXKhU2FkTA@G~ADH$4A$Il*d*sRvayes|l(+32R1+I5I{; zkR3Bed!5~8ry|W(n@{hSbJX#=MKLd&pJ?XLm}FJO>a>pEcb4(aT4#62@>2pjH?Dqt z1)h$j*y~iT&Hq!RRg@B+6*1Ak3_r6QIUP;i@#Sc0;=bwX9bXF|d5%olE?!Bg${D)O zQ0q**0jxvl!zuDSWeMfqCNjFtYO-0jtJfH=5}Bfk&2$9-K+kJRb|I-Bz6{SJ!Y+=%C}_6Gl#} zd(OKnR*_a%X&*nDq4pd@8bPyK%yD!Hq+eJ?86PNRQQ5??4q=CmkVEg&5uNgAq)z0j z6pvJj1*V&S+#5aPjESVWQO7@G#)7)4{kWpVduO2TkfmV)P2KgrPJ1SDR*Kz~V&i-k zVJuH%y5zeByuFBMBk%3=oZI_5-e-*>yO1!l zMZiG;*JaKIb(4_fgH+{GwvMeuaBGF3q9X9iI7nC(lib`*vPsA932-{OtHR-{_4^FB z+GFQd59-~;;{!t^%i=m>dFJ~aGbcS7y4#6j=?$_E=Jkf<3dh^2(*g0Cl`QcvcT$J3 zgboAH?x2!^*R|AY8hfo_76x|)26y&_Avo8wT`_RE!>S6DJE+;g;|}X-Fz%qD!r@x# zbV0bonl1izSXqN_2h|krc34M&Zp|t~ysfnE;^9N=HlGul>&E5oGZA~{p)2m|Lb+RO zxn_it<~MZi1i+Gn2&0dIfE zU=~^t@b**LU=Z0Lpf7`+&CdhWwK>_5qQ&V!sw4}#I%pukjykb5;ofqJBzKBf+G zY`f@RBuT3%ui_vt_j>~N?WTKH*#UvU`h7+^cu(hcI=1f@=}RF$)BJLiIoB-7ns@S6 zbPkK+oEB9^qmFTwxR3f)jE$3NG{Q1+GmPx)q7i1%2&>4=C>moExtT<67SRZU$jKfW zVGiwM4Y?UZ<7}Z3rjU~*w3i_?#ts@`202+ldnVMlb>caVlg?9Y%ijadOefmwX0a;C z05W3*d(HM!RjdG`L83nkP^X3U+g-|UGQ@@q7_w<)n!o9%4bQ(8D}~9gy#_LD#3uCDf6kk?1j@yY%=G2(!RFJ?|(6VJY)T6%;I{wH@g?L0;;b zuigt8Ium&^#1NKyaGgdW&5Iz;%sn`ofbtz+Q07aSt+G|ClG%PJU%Ej{6hXg26Cw@6 zEUBVGh0P913U6z}x%nG1DDwm$zMvOpL}xNkWXOs*57FzVUpd?dOnN%4jYnyKUA36D zHl8AKObOk0K09{CrxVu}^L4o*8!94f62+st-njdGLv9e%!~20raZm5FL_6vG9zS{_ z=s#Qi!4M0OMMaUYDopZ<8a-x}mK+l=bX=R+Wes^dbw3#}WEmiLT%NfrZ>#azCPH~| z8KKI~%3^zTRh67hckM2`*>b%Zt=+h*3h1-5ZYN>l;Hm&aJ1cik(Sxf<4t3U@(~+uz zFY2r-d7~qhn>Nq={<~(5pIK<_GUsJi)z;VVu5ZA(?GIVEDcarFos|LUJyN%Yd=IY~ z*zb`i3_#$+TiWFDu7`AB;e*Q?CHm&5E|KE)%7_?u*ELMi!8HVtyQ>;#a`T!rR;=|p zK^^mgHeRgNhL*B}Qa}3-t^Gf=_W!U({u|KRdk0`hZf^>5;pr;|M7B&80cSF_>kOS{ z$T2I?H2nO)C`-$-suR<4bLEXNS0DQpY+J-UXt~gRF@u-I99!9-amJZk>#}k zq$4-}Rc47SNb;=6_y`T(PeBvg2#?rE7i4xXf1c|2> z`Gy7ANF-2;DiT6|tAf3su8}tFtyGz&8_UO-U}04>bN7Y)Bz-TRQ+KhlVz=i?cTzZ& zSw2XJ*jI7seDU!;8BNDRmz>OaJgxTqy z0q642dR2bbkWN9v`w3{U_*K*7I#5)R!R6_6l$ zw*f8fcFy4oG0E|RH+}qwV3ul+?l2XR`NpWni(X+WgHpKr`LqZK%UKfiu-SXx)%sdT zO%U_7O*y}h><-{c2zoaFR2tZXe!@F}m(uk0R=^o}Ai^bGw%%C@qw0X~y-T5B!k;4U zNB4Cp62Q&7xOQC1!m>zdnx~AV=BN%Ps(o0{QKMj56FPMmmbQz+g?4Zgb9wS*ecP=F zSJ3F{UTUj>H0-b%Y*ItNRsWR)jmp`!{>48)0=!$78V9v_eF_y~qu9@ua)1SQGn@*&4Z(OtwaCLllIJEcM$AWznw6EDg zb`Ce)iTkj7sT`QyLkqLi8ur#JHhig@4*sDPRlDilHIZL<0?oqn){)-*<0mM1Q%!Od8(Dm;pHY%w~=)E z(@LbPM60RJXjR5OEkhY>o1WyPMYsq>>0$B{YnyxMmo^cfw&?f{)GQ!r2{%V7$RV;} zGIXdmJQc|1yHTyAT-ubkB2}JOE>_h?k1eUrd(J>S4U0kF42&_%OvjDz`OT7_HK?~+ z@`4Al$hUgPXq|N;?1gQ=AiLkOG@Kf z6tJ$ej9@pmK{v!H^9dtDE@(YwK@bOJ8J4k>B+|piwrU(Ul=#W;w+&hUI&XGl@dIB9 z8sL#a(M!I~fB!xFOY2LB3+=s_5~ed4MYw4}?jWRDk!r@2{1u4#kcyj`R37=@8$jkj zu$TD^^{!-gNP?w;JqH!(yaC=<3Nut^)etyx(uoX4uxvvQ)$>iW zQfcuJ53%z?oe)oCV#03NvueX|*?S^W zPK(ckkJ3&jZlQjf^Men!z}dG#Nh^usG|5?NfVNUQKg%4@{k?LUtI6R|vfkctvDh6q zp384D9-wenRW3^YiGC6?AN)x9;Q|gWos{5E`j&Ciov(nsWgc`CPKBfhAB#9QR%;>6 z2&)XJEC9){ngQq#|6KF+*U&OC$d~K~zG>mZ6j6MiuFP;)dcP6~nZpsSm1X!$?gqzu z_ywKFL}X|~L_z7tSx5+@XsY<4t&DEJCoe9L6A+q6tdRwqiA;;=>OsIl8m zL)TLZIPaGBS9T@$CKtnQU00=6g^z9cw~@DLNt_F#5bCa_Sb;?`r@tUpL0#5WP=sNW zy#G6`AtnUqK&NoalIH!p0|z}{Tlsw(!Z*hyZ4c{wwrx;LEUxE#HgG2wH) z1}iBo+wCt=N@#GefHn-|F@=*=J zA?%4bk82i0A@!y4(MyUgV44W){iA_k$BZr3a6sTY2C5?)qQ_6(0Nw-A#B6y(nk_#m z+#^W0{#OyR`6~>M#4=aj2g=L2^S?6@dy-FB#cQGhNOCb(8$^wydK{-rXU<=_kbwQ zj)53T49&4Pzu5@NPorXvz~D(F%P|1BE{WlA*x76Xa;zU5Yh};cMJ_l=3q14y!D?ZXX$z=G3a|xV$`^NPk>R0yMz1?cptMiq851hQ^K`CYH zMx;cYp5gbWANUry>1fjHG`QxbX$EO^nOsO`)`Y>f4cD4RSnR@<+kczW8`j4Kj7K3& zU;`!+7VhG9_f-Y6VeaAfo?$*>z7`Ob`1D=W`TM!Tnd|h!m@{KkUhRx%lU|iHDC1?`bTQ}s+*M(dDV5t4%e#4e z#&=-z9(SH)T}>rgR(HI-y85MC=k=QO8ffHM)*^AQf9?KlLU>)NnEStUwVqe3o2>cl zMfVv}drn;Eo3*h0)%P`Q7E$o_;);2bT?bNR$D8AsDg`l;Aj+zQn4Ui?*s$H9UhvVfQkfseUy+XY)nGw)!3=T*B8GmceLk_=lSHH>l?kt zovkRQAUF3t{{6RjldgAt!FOU2SeGTRDs>+8FWi@Vb>21naA4Nh!bo-O;Qw}k{koa*C_AhaZABIXXk>CG6dvDs_wviedqr6_iVKRAVqKKq??*0W})^vb?WTLUu^ij z)UbP5TRTJKLd$P|iQ)HChBRMC27F_P%w@d3|AaH+XUhVXG`1XgmN_$izARyB>%|Ub z+L>{gv*VY^+?R+kmbA5;gBCk8exVR#?aa7#X8b2}W-M{caP0l^R(y*L{)(o7qc2Ht zXN&_&<{)ulkwvsjD=bdZDb<3P#gZAnL@-m3);uY0DSWxh3tftmnPp-ax3Nuit)K^5 zAfIuI?-mPfOxc~5+T^7;`1`IzrlUm+wa#g4sg$Sow&DIB2Du*6iCZC^?&jn~!Ss^_ zM<;UtBl|p1RMdKxlO5%yOTAvXv`H7l(^0OA1oiJXZmklLRL_217R#v`3C#M|DI&AN zyJ+UNJp-Ef&aDR}Np7b;OYC(Xq#xi;xa0j8eRL`T#XNHh;<>xqt$FUCFD{xt)!d;j zI{gLmG}9``#<~5y2(w@or|xi?|Nl*;bHo7k8XG<&>$uX(yY8tWNf&`If zOt<_lFW@Ydd2-7fkF9GeVW|EAoo2WHos!aiW%(!^1qs;Zi579%B2!C>iV}z}6JuIt z>Tdcf^401v94!>Ost$|OVSiZY^aJctx{>R^91LkO7 z4a0x!MgBql_FnjtESiMh?;gE4+CALcdwE=ax&Pw$c<=a+2FmNd&-gQ#>>AMB_Fi@O zpt`H1qF?d;A06-=KR!C-E3zkdes|~KaCbj<{|}FL;QsIYmiHf3SJzW$M7+ulRc}{r{RzLw^s>+VlK+JbO&g49nlF zZ&9ItmV}|-i$~c5dV-%J3qxw5ir<_Ls{UW@vTXM1`SVdas>aFf^B+9F0o2E1%qG-8 zF-)Q?Q~Ju;BbnL_qclsRn|T%@r2>z3G{KKRT6k<*9idqqDJFH&1=rB0I_;(uy;kQo8e!wlk6(3@{=fHs++dtRNkFXmkWLksqK7$YVTD zXkx>dB44AZmwOURbn+G9kc0loBiVo_L7G*(?8z0QbZ9Di<=c4x9AgIOo*U6CjED{> zLTu9dDV5`G5=^$Yp(7;cFth-ws3q=5O5K?~#GS!TqAVrHEu8v0*m<1sV$ee)eDoYy zvL?OdFe_Yz8u2@v3#m8JkAI9VT(O6){(Ktbo}Yx{5K~<;B;wZJJkkt&%);OUYj;9TClcdbp$<&{Q z4<60a>^Enjk?uaA&8q5mNTz!PGaMQo?`MonGqh5tb0f5u(rKWD1$oXS6yAa%L!2yz z;q(#D2p7S9azmVFkbaO)bUWusf>(-N(YRKX@B*B4j0cYu@ld=0@KxxnfoAiVw&x}q zN62WYZ7w|}dzUIWd^AD`L?6#+gdq8<*dI*GHqBRnfLDa2BDgbW(3hy{D@$jP&Ifnq z##hki7<=*HR~FHZ(Czj|p)7WSp@=Zkq|ctqY$7v=phJwCqFnYonO9l>tfAaI>L>@| znC+V`T}9RQEYRcK(ohNg)Bs%cq|m9kKu*TXH>tv@ice12-%x^Td?PVA{f39G0Elk zZlikzcjNFDkORHCX)6BV*m1=^LFn!|VMhTJed?6tNU!P{jVmbcnOY9vUs@(CaR7KS z0sI$!oQ)B=d+H=~?ps&@z9o;6Q#wjr>{8`{DUvs#e;U-&gQjrCX1FB$bsi<5>^IFn zLKiFb0NsR~5*u^Td*Y;9vD3jviSe>}05X~g2xt{#vNz~cmjLY&&r>wNiq%XI+_f{V z8jtpk0(irwMS~J7jM#$Lg>KsDDi4LQPZ{N!2dJ1&z2Y)*mm3>ILxL^1WWg9FG{3!L z+pu6d9|8FQmmu*3)1@(C8GO@Wv+>QONI&S#YP&cHD58T-gc!h6=Zo(0d=l0>QG%Hn zmq{WH=yTvf&!}TCsNsg3qE%TojDBL5ZPh1!3a`>=Hoj+k(qd06EzkJ zyvA_7)Kp=FrmRc@QIJFwmFfnQpk347C(GcQJ|+XD|GaY)Mce1 zRZHw@G{@7`z~Py>SJ1WDSOY3_lSAxGRM8EO$f>!4L7S3Cg|<0z1Nov)$p>{xOBoZ* zqd{4lz})7e2rxc=U?E;d4fA zcs0hfH9&KPz-m5Lg;HQj0ME;yBS749g^fHl9^67fD&)jT`=O}-HS{!|ZsS}uryxKs z?+#I1FBCvd?Z1C=!ZPh&AJ)NgbzdVcNl)UUTMPn-Q_`?80X zcdGE5jiM=!NbNWJ)*G|I@!HljQ{;<<gr(t@xuLy(0%LdN2{C8|uOk2Nl_2 z^55d;qt~#UCKg>W%y(wxQzoA$<@jzKWAzKkfGGWXls>hVWwz{X@J)xuIv)*L9-2o zz=XI2ejn*o2uO*7&n{eZYxf=q2ND8d8kvLr;XKk1K@(mF_&JUU+K_jOrXxHJioGWQ zCziGpu122`Tn03k#kURq6AtE?$UN}QdkRVVnuz1rA%L?m-ibQ1j;s>_LF_nFjYm8O zk8HBZd7_r-+eif%JOK>t#H=DW%;>f&|4Dc*COGVFL|5*MQzdeE5)- z@&f(vz=N9MWcb99f~BxjNOzNXgNbPoJ@Nc0lq$mP)Qoc<@&HtTX10j8fku7=q*0sk z`+`T+B6|HYMv^1l@PsEK>LAlW3H9LxJmNG`FDi62iO{JU!0evm=6DjMkXs{vp+{zM zg&y00+my!Fe1@07Au&59yR@9B7fiY-04uOzFG3nbLLw8z17wR59Vi6L;R|?IsSoPc zAZGQf@JxwigXbs;ALL-P@X#Re=7@w}<{U8SBNGN3LP1C*U)iq`a;69{)>{*Jm;j{0 z%r5UZ91O}q7{yRelQ1ME77=3tUlYm_3xKg(1ulVD&pJhUlsA9F;zu`xRkqO)lLaUg z;vf_g2hWpyi?5}9S((Gg@KI{t{4FF5j@_HPg|r8c?5R!z2l4ihRK>8YO|@yJxwVme zA0rjfB0#blW&v~<6T8?0hZdty76D$(_!izg44fntfMtt^k0`yUsI43XOeN}pQeWb4 z@-E;R;I$vj$AOl%O>i5~L}nh`qA+C2)ALYz2Y@zyWMV9s#8A(0xU_7-tb$%t7v_w5 zoM*5V-6R1bwGDn91uGjeLhh)3KICon^xI0cC_VE7hV2u`-wd```bw>bY7?e#Fn|~2 zd;rf4J_NUnU76%w%~RZuG zOr9;;%EGuYd2;JevM{wG;7ArLoE%UTxv;Z#R175z;s=G_5+gz+p9p|WZzDI04FMax za%`SaQJ@N!1FIsfMvR%S15kLIAAm~@#}!GzBP=X$4Unhs;%OFKMSewa3Fr~#%HC## zVDPwwFETHX5w{B!z~848rc1KjA$Hm61ja6P{}5Z$6ih_W-*k^n`Pu7LJ|uBo)OQ}td-F87EKI$vj-!YY^+30 zW~mJDw4Y?)M0`K#E8?-Re1>j-qd$)ykZY}|7`+7O>dvWdpQT>@y3(fRnanJXnFyB; za03h=l6pc3l@;tJ!p&JkCkA~6AcxK51OV=oDFU=<>|V=I5=^<0*0OW-^wVz<5}Hqw z+#)F7rEzot9)0D)0EU}kuSBctlmy0z?Lv)tmZDTFn<20C{Vru;8VUP;M+w&W} zHHs?G+<>|)w4t^XOvH8-Pd%roO@T`}K`LYzWOO+u^QmHDiQQ#T7@=(821v3n6j6X@ z&%x57!S1Hc_Nog~wy!MWw_!+={YsRZq$E&FLUj!&0vidsI5Zq_W5uzZ;XEF0`CQzq zn#X%Ap8*6+!R++P_NqQvxB4B;kT4rr1HMp%&9|h*8d|~N{5D?CA+}tlQ2^vNi{wSjDc1_x-|f*0finUCZA8o(Imn? zTp6~)Ek&+Rm{VX{fPUvwfyx|B(X)9-Vp!!jh1RmBL$6@O2gp5D{97R65!0rGm*~kO z;aHT-Goi&z=lS))gFTHOfH_8wU0j)`)I=j-&Lh@oA*D$Gg!kh<81ws_nk~I~ba_HL zVA6j8nLHuUIBtw^0?gDp)3P)uz}liNk%?=~&)Q<9lrt;f4CpMB&YR}=fYK>Z;i8NI zfQEFEYBoZ&=LV0p?o41T#fZg%hf$Py7u-w!lnJwNE-ecj#dw~wP!79*c@ajJ9b#1? z;yl2NO2;)~x%$+gWf2@%kg9Z!=qbQ4{5^F8(mWG^mr^r&Bz8f(l|)RR$qT_d>Jot=OyK?igb-UZ`PMea8hu?zzC&J!6TPNhN@ znbyXlQA^-G;VYvUe3p^1evkFpdKux+EF2(5sU%P*7E09SyJ*Hw5VRy%t?PXgVTabU z529o+pCBKA6ux6Af-r&_NUm84NuqyE`Q0 zr7*>?<)}waQL>8@+^-@YQF@On)_X8h-sKB>MxpiKwc4)Jlu-_hy|&~!UdGPh;Zq7A za)a-5h%p+~vyT*$5;4PJ4DP1!IKIWl1bEAU)R<3{^@xd51Xt)wGqETVF=^;~$ z15q`usNQC?h%aQC9HUcC5xWu-2`C+jZ=1v=+N8qQopq`SLmAxKXR?{HGQFFHL-Wda zlTPoTYTetn%08>k0yX;ulGDwZaH)mK`}{0*NE&`zJSC<>6A+YG!{)(diRP1XG(Amc z!0@wDmh{6$jD_kN!~!XX%2MLnXhP5>nvndN zK6)rYQRK53p~R z`9!%43~I$nnw^)1>w{$L9vp^jjS#M;vHTk!BeSjcp&%jQsf&R9uzi9G?1qn{5)>Na z0b>(FQ#iDN?LyIZLK(lc7412wvnBlnLRF}ZykJc8+>uaD2GuUJDDY!UIwQa^m`2e4s}mXNU&D7BRjY!!7AiCjkvK>{*h zyGIi%48bSbz?;t+i?r?3UK_=gu@ihV?3bGF1J{+kqHc~AsVrO}$&O?-saOP=56BRy zjm87S9yS(SoDEs%V9VGDDH@iZ2ta;`=7cRtoTd50_G(eAGelV;)I(a4+3=Wh4uq+) zBnXU-EY|^9m}JT*fl)xkzK^-5USkV}jUjI(pl1TQijMD3X+NyzLl`r$q9ks#B1d)` zBtuHkfV4InF+H*fo4hHnE=ZTCT41LLUorK}$`9&gq2lE`+#8WE zIgeLOe25lj^BtDMv%pZ(3N8)B@WVT=c22Z# z!*CW-f)J%Jcg0W~RT`-FDXWRB2!|@HwN2=F5@Oxz0VZ}sQhlW%Rbm|`HzufA!S_T< z=PSrCBD0IC>HBy*pYW^ZW27VueHtgOS%V@4EEV(A+X!xN5uj0T8>yL^EuzI|simbh zPrl6DQzBF*&FGP3t1Os+Lpa5S{-23?vUd{#O291<>6g*#3)9Pt462@{#IltgA8F~~ zf7ObNOp^nQJIEFBkWD=p-KU`yR7V6mNA{a~3B-y#r)O|D3*J&!P*Nf=)-NCQpRA9v?tk2XQyu)EYTnyS@J%&NT zqFbv9znqr*NfDDXeytKVvF4qzh)fnNu~0)V1=HM&>Ak!aCR4rQ@^lNOVegb^GRYv9 z4?z>t%jCBF!rO zSOKoaL|)3)X$U=Iq+gmWCa6M_WMkGU?7=eVN0K{G78b05BwN3oE+7pYb01Z^5F7*n_mA}^v;36)q-91jLTs#3%t90NmWBApS9H)X%ml<|BC}T;oO&h(|YuE?RK$Z-g78>&#~)+s~RAlG78Ej!~(!nYY>J z^Vnk2l6TNZsjX9Adf>uQvF0LpROU9OkOwCSpk79j1z4bgA1X~J31i^646FioIS$y` zCN}9M#WT%BI1JULi%Qc1>{b?n5??&F{NwA5K|K-@Q8CzWvSf(y0pUB`b|cMs+@d}t zzZ4<6)II_+ z>#!L_8Ob8=0Kue7n^)v+;B1v}lZiCIjoOUKaG{o>mYxm$WLOzh5RzHjoI2cODz_$F zcx&b)7o3G*vYo}-_+K{v(k6duhp8W&c{F8t0V@JSGAiM{E763zxisLSs&N zMAwejgkMElt!yOBtr78!@Y)ud7z!)F90I*Am>t{*AFT-@pMXjVTkH{u1_l?bFU^<^LlR;G!qoXaIybOIs zY1MEn#7IjFi$~jF1}$yucU4t}w=|f*i(5fAqC3n!eMjlPSb3G27f@-AwaS|w=kZWn z8vu*XVwM4WBt8ISfL4%bHi%3Dv_mSF6TpcJ6&son^$>~KpR?GChZzpD(R@tyQmN58 zz|mkrA=>9ra37P|B2gZ}t@5_9EvS@tgL$6FR?9N6Lbj*kZ#Wy}*j0PkT z7*EUWI(mApLqsbV^YavVcCfn^WgWM!cMgLajLG~51ECeU8tazAK5H<$k z5ETOz@dFc!bxfbl+bbEZOy3IO4lP$F5+bm@Q0SNXI~6%lf*ogqh=IJI(4Kul)5R2B z=u8i#LS8yYQ^hd<%!slvi>7l#2Jq7{MHmgRsEF6a zra7eAlssatJ_sS_2F+Y1ff$K4M~)J0T0oVyC{`hT;rMVkR_obTIV16=Wj4^>U1J+$ zQTyz<1-zM7V)AnssG+QzC>A3lTRLi-euxHeP7}>q#Io9Y<1}d}_Eobmn@8EBrb|8M zpvhEavsAq4&M-BpIMMKw430yu^a`I<+@O}%pe>^4|^t2V=WV5S{Cks3iE*paY^LN`Vl{8GrZVf*vlKv3GYgyE6x#+ zwDJ{1H*`u)4I2fo8NtMSifR#3yrY0pj30#4qTM>CG>A$s(+`zEb;Bw(3J!D!OG4Z9 z24P(6r3>Os<#vWJEA}|-QDG9Ilh89^iHrU(LaR1<>4MU^do1}@R_eA5t=8L$ zyJwQA8%U(Q(I<_TbNm3QWtXpDp+O7_tIAAc za2bKb4PaLkK%baYgcXM6hb;VAkco>DqB#=ypi-Z=%_FtM<^m{@%~Mh{W49~%qWD3k z0qu~9lb99Ee>|uK<}AIdTSnPHA{KAK^bt=8QmlyXSmYwaF}XS^*Y1wghbq(q$$Lxf zKFnxhx0T^Bk|&BXeNzE>ls|S}@4!K2lo1@-v0x&*;so_6l9zxG&gL;Pb3%?Xr04>C zTU6g$OA&=@rbM5N^5awtl8BpB<`<~nLY)`6$wZ2X&@w4y&a4DAc_W9^-#sK`x_gwL z!*@tyDkVf$yPFc*lHBX(%ee4Z;%8R5X|oqrjq-NshzvBkVh4=Zo%QmVT%tR3pVJf#DiBd44e#RlBR#KdY@ul*e9WR zbTwf!P`HI=gk#=JRJI_n<*e!wU}kW6Y{w|<2dNPz0&7@X_A;l~@5x)RBo~R&D;HYvX~~IdzunZz?a_+%byf%@*InfrJ1@O$EjUn8>qD z)3K=b95Fgldp&)$>&eT>CPStDYG-2%b4nKMA}+=sr5m8V0~pKYjM(zlCiG^bcmn7< z#A_QOn)kFRD3Ld~cDactKTtX%ZFy@1?CNoK4FHE^yCh7Hdfg*7wP&s;5ClB}8Tcg&F$i1USw4V}yv~p|DMX{w^Ye6vzSSX77HkNB+@G;gX4e+SCfX+b ztoOg{VKG4IuG~_}+y1mx>^xU9PiAfC1eh+12E=Yp+c6hpkOP2Z?iiG zZSAt?X|BjO$HA35Y9vEQX6VkVSu;^~-?tar6U)p-KYCm9jR7nlLw@-z|33T2TD zlRymvz?RaHj#t%m=#4nwkJ&`mvB&rVBh&^QMxbJBtE6*JIv)Y&P1hSQ&`5NaT-R&| z#SEH+HVs2^WsG6S4#P(~{*b7eQ6?ur{umlWFMzj=Y1bVmq?I<&vo_IMQ(;M}1+63s zQ)?~W(`%{liAPK)j40SR24yz!{Pg1{xCXjj2rL_ zTut#dSJk_sD^p)2k<()j#q=VxkJ^HOiskm^{|fXI@ujhj5HbxP+yJdQ{Gfhi9qVPJ zW^m75R!RCdBiAM5G=vxx_2D^twB_6-ll3BD6fl_h7oRp`*6AEz8nwHE5gEtY9*U+KF27%rs%Yhro z3(}T4p@(b(WW>~bBVF_3vKNGH&U0>zsHTcGcv7S9VA)Cc&Jre)#TV zs7|)J1(s3OAqzDoJc@lx!sM1A$By?!_-)a3^&|!{+A%Aut*KvJotU|^k|^UKm!7>= zM8eh)+vtNWP0%=3S3tWRyrKr5D}MvlwXm}N@fk&A9EO~w1Q8Y~If07+Bt2vX0pseC zByMg+zLVgYn&JZTc|6B?iI-yDuVSI1&R&8B*9CJza>mPlC!_u>7noRF{`6BHjz(y5 zRUn&%-$u++!a}7=^CoVFTKAcA$;T(3{N5K4(oSdyVG2Ead~;(lx^5Cb24m5b#g+*j zdvBS!cu$4~FjR(KF-Duf8;)jX46mMJEKG`}ZFYm?^Cyc``b|n7bSa&qs07t#w~C4P zEJ9r>8-zVHT969AN`O|_YNlc=8z~%nFqZhol<-AKz3iZHIF2!V60efo-KyVFVJ%h2 zxhYE><77h_-sDI|yi;1DOFjW5Y<%vKwgS^R(PBC#0w=k#@x$ZEeVeByHlcBZP$mj8 zO}LHrtabQ3?L*?!G{JD}Z5J&S;y0(*gNG*^TG2Shwg_8yTroyVV~%ec41~ym)4_+7 zNqtpXQ7;7s&m*;c*D12H#6a#y>AdqtD!Q64x*T*yAsq87_!Eg~!+xrPoufKd;V@ereGX{@u&F>@T2+d};=5H5g0 zBrZG-X+d^bc$RX}+1j0Mx#V=xVP7~Z#S)T)N0)^!0t^;pDeq6T^kyVN!D7{OMbf7Y zcae-FrjJTI;z89=q*JVZk203OiGLXy2gJg@RG5{Dh3*N7yCucxrVcwdRXrDIVTn?# z+VFVy;WS`JPD<7=7r8&zuwzedaah|8I_C`?$lX0bGHzh%LI=o{nCon-zF@V5bt%xW zo!P11GApMX`HEpwVAkXnIA$7rT9_((sVy{4wFw3lB*HZ#CKZ6EW2IA=V6>Z5e$m4x zU6QnId*CUX25XR<%Y%NT$;tq0k~v9aL=0Z06{;v4wM<`?gV=(#!WvNKh|!T{aAT;7 z%D`J@JVJ~W$~+1gq{tTCgi}CBTDF=42pz)RlEUc7Wt;nYgo=%kycIA~(TqUH$5x@I zy|K+UX^zOa0${|$AM?PX0vBq@jA&AHa2|>7iVuSl0pvi-mnbNf$+A}vZ%fcqroWWT zg(t?2gJr&zp4*aNAI-4ZrXCTxbHX#jCfpKeT9l%mbYOh$MDBu=EQ7;13hzT>gdw-C zf@;8Y9)_( zMA!_ecT8B0eg0+_47#L~;f(TyjI99$p)W1!l&q@ zMXca@;yEZy8_|mK&L-Q>MHJe1sKrYh>K}`@`0+p`1k8h69NENkIxHJnUs0Vuf=LhM zrkyIBNZQ$w3oMEhoLfjTf+5Fr5CAo3&5NBx0(ws#0?j>FjMRPag@1v0Ybj@%vM;*R zp=B+xpZ3(CU~-dD7woG-1K}G|}h+;DeYpG}lU>&rW#)&H~hADvCG>MF+%eLjD z7Q5S;PPI@8Y_+>r#o$&woyG{xn{y{Wqs&~xc%taHT)aOPQ4A$cnZK#{Lked%r^qm@ z&ami5GubU=#fF9t!)Tz*^3@P!Dz`@!-wrkspIaPP%Z3)Wts3%^(>5qX<390eEa455 zYgrmi=Ho0-d1Ba7uMnBb5ecXeDaum}B^9)E(@dV1f?VDf|HuR}hZzMwsg~z!qOBzX zp3#Xb?>f$1g|sek^cX@#@o_`~X%|dQ@mO~jS^(vgvkW1hozA@z{$fSz5jr5%e z6lAEQUFeE2LzG>uvb8Rf`zx%j;%UX(KG_2e!i3HCtYH3{>(VS18xdHum3my_6G=^q1r!WXo0wK$b{vl3)upjJCnp6ImGfo}oGiCl3Fm0Ee*0 zPCvLlw9r=J`Y=M$EJ`Bn%_~-mTIxm24bGB{2(iHsJxa!uLxGN@8B^z;l96_?GKfr11hD0Se*GjLNhjMFqb z?-NqH?v5%_Z!riN^RdBQth5xW6Oupa`FUmYv*21i?e+`{2M7@J@sTqu!WU#S2q$pL zDlebUYzgRN7hDO}5F0C8Jl*9d8Nsu39Lb-+o3~bfAjd z(u=@dy%m{>Z7oT$i^MwDv+e#Z`=M#msq$EWx!ZmvlFx|l{J(A z8>kltC>hxuR<&t3gVH-O4rdg1-sm>`X3xKD`|oPqZtb%F-al)1@q^##wqJK^7ZtzX zrr(X9`i;xJ-)VF&n*Dy`)IWLe)jFM4vtB!CHT+iX9cE7Ysov=H{deb$OTUfXziajy zey?A{2F*+VUANh9UcROd>+R0_Zu9kd-#c%&P8(gyQ1u)}r-pu~*6lYNJ)Fne=4r#8 zlfO~x!L&F0cg_BJ`>L-e@3qgMllT6Q&CAn@-)K@tjh{N*Mz04GfWDg-FyjV%Y+lw| zSEn$SihlwK!Ko{a-Y?^>g@HJ88C>uwR%~>#W(ogdu3} zYCQA$RjbzZI#=CJyVt1tyoJySYY7J`u3))~T~8xKR!Nv~kv`_nU7U6|4!v^sX)%vfsTvbn4YwE&sAnhxyjJ@BLn* z`?gu9edsniwPqK0sow5(v6uEGgV9lyjmx#dqou5t8Dm@`1U23wd|X|&a3{KrH&?J$ zgc9F{670YBy4#?QwqU}0*My1T>1n|5889l;1U?wRcn=`f_AlC}%`-d}0i1gK@@?aN z&$D+0_St}J?WBzxa{?1-(tKbBxJ!6$r?rdP>qgIl3>?#wB-<6g*J;$7_z(CF@CX3V z;;p*u!CLWXp+GwEYjDQc0|F(_jm zG5q(WfwjAhOV}v7W3_tystflGYhVkQP45bBVDpks1J_GeyxBeV)FmUhJ*zcaSKU0| z;mB>+LhO+RetZE!%>_xpjz$pZIiB}j02Nw%AUaL zs0Z0chQ8w}=N7?~7#ae51t%5z@ftcvPkY2*#jyj(#{6Cf`Cv<1lhKa}pK*-A4%m5x zBMXatvtVI%mtqrP4@tuCfd!y*4B^83KNG0ZQ}CdiMKCJoIA%{!bZq%ZITBJ2Wm-3B zJVyU{3Y^U32h!-#eKfY_ULrHGXfR_)>i7m3#{zdFjJq>yKnvz)J|!)N*FGQCwd4=r zlFoTS214_9&Uu|`v_)*r)mNtF@A1jI1Y%VtkXjlf$?HSBz=O$3tjrlC<+Nx>WF5EU z=a|CF9gF^Dp5}Z@E20@mGmc?|hI@A;QP*amq8E!Y&rO}p)^%CD6f%L_l8sL81~VDr>X8<^Khv)BOM= zP#3Xs-}`~b?MuE^WwzlQ_bZ)m+&SbZa}zF$-%zh8ti%+6L?Nv6=SK)7msxiRxL zTvG4JOUjbNC74EweAv>>4i*MT!ag649A@RERv%K!SHi-}0UC%UG3qfxN$d3}&UPI3 zm;5^Mj?!i@dM3*vo(T%F*^k?dD5|1N#E_CRM><#XEWSq%$`;{4%nLAex3XKo4QZhn zSh7gEhgL#iFf7s5U`QSExIyb-a>qgwn$n|~-9o^@QegP6 zy~sbv-`=r5LCwJTyGJjMb`N)VUc9XC?jIcOAOA7odHwfke{XsNOq@6#2iIvb*xsw| z9#nUqUpC(LzV7`$Iyj*J9v>a@71=wGt8xT?$GQ7|xW9Y&Z~o42dH)f)FRKUDMx%ee z`+v_T?jHlG`(JZ-+V^($_JPjWhKKQ%qRS&y$+dR;y#u6(;r$+)dbOd-)%YeIL@l)5 zs--|B>0cMM-UX38y5tf|D2gZczMzxy@T1iU3hBmfQLh^gbX;s*+7CZKHMjTtQueC{ z{t>K1r!0fT?B(WB4Q7$acD9e;P<0+8L3GwUQo$G>_t!+&&91honDHZc3+I2h_As7y%CmbulO6i709d}bs@@+W9PMz+6xqO3 z{23p#*jQ$>TRr00TtfE>Zg+BLvAz8(oW?ep*NO$(_ApX%80L0n+rUqU{$mtNheyr=IR%=Irlfh}4sd(G-J=gD*nJq@) zB^SHlqUjv?yD#1QzWb6F4}9McBP9d(&7t`vDHSvS7=jg}|LN6AfBSy!7*ux!py)L_ zc*OLzEw@avyif>4U&$iK{{BDyLvcUsR`4L1Fz-o9@Sn*n$nNwc_WZpgv&YU1@Iva1 zdi4sUkX!^ACQ7+INr2Pd+~OITdJ)#6nC_cfJT}Ea$3Vi6f$orl zh67)PCZE*>J3&Y&QlhGN@C2+1e=imtD_}sp&er9WT_A63;aV}qw7*H=bK)#izPHF2 zPhdMyLcgU%=1P!F*$n1na?Bz&cSBDAK3=`*0kYCXHmZ}L;S~Ev{MM&BkOqeaqtqp& zHK4$B3)aVXsJOZlWeco_=Xa^P>+F4))!}MoEnwKsfQb*^MZ@e4CJF;P%c<(iiEwg; zyzu50%PG|F=Cnr=KfoaHNuoI;)H)p@z|#8EvDZI-gjFQrEjf0G;}M52H1iyw*~Rz_ zhFUl`uJ{^_H{k%A><=#{y>%!_!s0hcypX#I`g<>X9EW!A?~-8Fq%2pbVK^H<^1s>0 zKG%tSpr8|)bb0kE#aW$1S$avi2h=q+ zR|F#lO>aARm#MJAk4>)3s-@l{MJGAc^+Scj>Iu_aPNUH%Klo`phuiXI4%cXS*2@y| zlI)SGpj*fi&;$vMlFxK({I#SEOwc7PszftmCPp1om)q0IZUGQSt7gW?~_ecqAT06y959@Qwdi&}U_TaQ}b=mCq zG??Ni)d0q>q0xz{_4I&*+`+L^t3+n71t-9HlaPp_U{`*!#jv5Qv zXH>!k{o3oE6gbO1ZS?BhW(QZUK0h@kUd~?q^161_Z`U({TlwbLe=^iVWtr>GA9*KMqF z#vM4A{x$4Yqj6bpx7t_Tl|bWNx7J~-0ejt$f3AA2r|tUH1=MfT0nyoByJgVnS?#LT zSKy!j%s@fVC})$e(T5v;-Kuq8H{O5aJs9l2=Htg@ zwT_s@S2QJ8tNF7uoDbt|MH{0&kjxy47NsK{SbgXc@p_0u=3#O}6#4(gY4Z$jA9M0K z!iHXNi(D{|d7VApnZfbX0R|ahoiS3={~gC1Kmy&p=Q@6sifX9nFv*fLOo9iU2L1tc zLd0aC{&N_P0$`;L=_G5tiOA$XHT%H^?7V1iXiJr)AlJ~J*hVQWKya$RPNA)zG;gixnh#wr}^LG}u)^6qgChzK|oRa_BZ zq2HC<_kO}r+?g(B8n^UoIsIDPf?c2Q0N+NQSe=*|0x2A$7I7b=9fJuhaI`2~diyX8lK1)UTbWe_l4;(ey0x8%l*ST4lUCuqN>TE*h}o2NiQ0vXx7d~LWIyRhGW+XRlarTJ3lYwfI$hWS)ME#CRwT4^6IfI@9v zUNhyr620E;Ty@~I-=f*Q{*9x_B)9 zQ2N%6=pK7+@rpbHZ`4Vx{^O_zf{#?etXP5%)vA)d1|Z5>!j84jeM^ zw$SG#0*=$C{k2i6pRc@0ePrtT@6Ow;hT{2Fm=nseh^{hXEyWx?-MD{x-D+RHu64WZ zchUhA_4?iBj}5e!eY%IY$gCpMjGGI1th-91cfD)DFzw6M`{w1UTsB_d{Kft>`3Jlk za6WxY%&}7YoP@&_rO0c&K=i@mV9%h!d9@-e7J^GqPN@Ol;hk$cvbXQg)5*-cXe6Qc`h*}FMU@5TGlt?nG;!k0@E?`2yo7RZ1(u&h! z@ii1(zXO`G{jTA#)L7oUTuIo$9PE$4b+>=Sf2=4SLGn@*ll}ANWkrh5u39bN-_=hf zzs}m-hWg!9Dq{T;Rn@!{EO}dNT{TXc{andKt@op0;j#FvReOESwHrKuC|H|7t@h8` zs4+G=Mk;^pl-o*K(+)i#jpMs&TGfERtf*OaWcPS7c_0A)%cY7O3A?Rnd6;?!4J=^g6ZrYAVh1TCdT&Rx%y=*?-rz ze<~hS+YoR$GT9pG%08PftBj5-yMobKNGHF5!L2X%iozwb?h?GF|x&b$%|Gv}E%IM-3VeAY- z5EBuofZuz)t4^og?PEL>0Vew^os_w?Ubx^sY{9n+oVumk`($ zi(8G$*Zp&6n)Cs!P*f#zkGf5G3ErCu=IdFvVU2EE`%t_N3>DIqS)Ddf*jsP(+r0)x zBv3u}?9EVpo#6dc_Rmk=jP~g@zu5KjM*T+xF<8vcxq6$IbOwCh{XVtqJj%Zv##Z}qd&PbhFZ?eYrS+v#JP z#OQKP#sz3-E+*b^8dOBK>BvCGl6BP4OS1%MiOoTs^MaV@tp27G{ujj`ZN6u<=`e|- z;g+)Au;3bdvimk-lq4JlXqh3Yz*L?}gz{KNAh1G7yG8i;zMIJv|&^#Few=YyUsKclxIxufz%nkM{%f*O-%V5Z_Lt)P%EZ4>F8>K-LQ7 z8|0(uzHP^`zeI+jMNF==^{idLf;(-=ajB$z)pv~HmSf;fg4$P3`6JvoYX47T4uYU0 zD@&^7jaqZk2dOyBxcI)a#_o~--tX%smDz_Fg@}I<$m$5?i zA6KQMnU90!mwn{vD!KB;PaV|z%Hw8zV13?-k0q-IjiD+2s-HJor`?8dmOPFs(~mO^ zNV=kx$Sou_FMxQgW4miqG**hmB;j}T+wSM{6*(TZQnuULG==+Ng~MofPaEB9j9{k; zJypiB;;>vD1b=`_1B0wixCx0)jrCj=dCsM)EIV%tyiy}ET86`9lWAp;Yvv(jW$yE; zi|f_9?N+P%DQBlm!$mn(YrU(zcL>7;HCCRJC~-Akf*b_Q5Chlr-Zg=6bQq=APgh@Y zW!(nC5r(cavYXfWVrOiUCgr{_9*iWdT03KT$jyM}d(4xq$EYi?y`%Om4>WRPW9loX z70~9JOnagK(DwH1@mCDwe#>dPRep7esfw>W64In1!G9bYjg2zmYqVPwp9UYRcJKL5 ziX>^o0;Y+L{8aY=+HmUWx)l%?=Q{>F3*UL%L z+xKCDxxqur1})B&E#s1qimMShgSv%}Pt;!EKent%9ca;hG)p@|pHwJKon2y>yL$1< zQ^I~^1kc97ZF93*F@x3}Z46MdYJ2iPZ3PIwU?LW(X#F^0*s zchlzIR8|Al!~PA^G~LAGA!mZm6emLqM8j3s&v00xVR);R2le*ZSwq}OR9U00Day8d zvD6Fw`o*b5SHc@~Rcm#+D2`gy5Dx_um-t%0ZJYoN`?lG>>RvZrU$)_Csr4KyzlGJ| zN$9{sMDIvPVrp>%`dJmF)A+YiYnCg_OjoT$7ozZ& zw~qwJZ0@n5j-mJFs)?j-r}@)Gt+Ub#tO%_|TUsf|Mi?qOB=D5$c62kh=Gr5l3r>@G0g?BYm^@02zKPdBv`XeJ>_O)ysU zBv~+z5(jLaOHXE@{Q9(dhrf=@HLwAZIyn=Tu~1mLGL6Vb!wS@=lXy zPu@M8yb`~n&?=MSo^R*7{eCA zJ_sp&#PVNT0JFQ0(A%r-z04aez*H(K7N9)da7crBW)T~XZ?rgTprp4STdwGZ>b=mh zc4wcf9;RIh;P^33=f~_KoX(#T{bor(MlFuX!zqw^VQLq|ne~&enotC-_`!8XfVy^X zpCnu%)3W3g^SC}mj$Oo;ls5b#?jbNwLngB-;z-eEA*-R7E^@_BkxNN;n=Crnmd!Qz2v!9;4LbC--LLuSk@Tfb< zqQQrhs@NT#he@a+2GK`VHUEJ(%9_NRH&ov#`l(pdr6Sm+GoWQ_S!0}rvL_M>Qx`gW z&;ho-^dw+?DtjfP_WU6fDm)!ZK*%nj1Muy$>^M$|K#_m9`@KqzLTj;6wPo4?wV?g# z{uAQ!Yr6wGA9`0OMB@-KvMTXOhAo=ZSc!l<0V<(!Qaf$o4rr3AV!oZjhulY-{xNFM zitDXlc}g2&k@gkIxPZ4fuN6&FoUd$l4-0B^Pa9_#7D27cG~~~XOU%2V=V`ZuPSMeV zchOc`V?YH}O8b1;ekVj@;S>8aHN^(2(Jh&XP2Qb1%q;Bkcg@qjP`xZc?6(`2)|6DC zrO}2~M1*RRv{KYQJF>N2Zub{}0KV^sNaq~eHmbY1NJ8SZnT>-RH;x5>m~wQOR0#--a1X<^TarD=sHCFyh=6Jk^&5u4wnO)@XbcF?i)a#_23eqd z?qaK;#N6B2BaY0i%&V=aL6jJQ(hgEgEujb#vm$w))T*kB!!rT$sySxzSE*UcNagX_DhBhzF^GYi2@4W*VBEnYEra zbqPPTR~1-7d0Q(SW%?%_xwZ^Y8Qe9Cm4xmgU%0FjIXR{T!(pHOnpYmS+{4$YQZ&F_!O_7tm?B#*~ zI<$Wr(L~Je;{xe>nmeA;zro7lz8FuC8^EwwL|niJyG%cJlU%ty*m?iLF^pd{Yx~D> zZV4|6)MJh~C$=ZTsB%5x$pylqT$w}KvI}<<=EIsGFd~kGgT!Tz+@BQpgm?;+;$Maj zh|r2o5$TdT&MXR4u$ckn)wHIdf9EHuX?R^yIP&iN=5gsLb{~2m=G`PbS#D5=c`#Ga zGA51#TW@{g+VTgW7*0_o*-dA~B2%$BQVW`yf&y6e!=IeDnpmi&=3}VC(>Q}dbfV*% z;{MFBSUg{wztUAOticJe_EWV;rvQ1WAic8|!+J2c46EfQsSfkklJfj|dv98cqvsf5 z7u$)UcbzC;mH14hjwBl_u`go4P!$(#Oh$$OyUvD!+|okiALO6s6(-jJi+9%G6rl<-yjs2Wx|9;7BwTp5QQYi+AR5C(2MmwM+hilx?;IKNlg={MD?RTby;ma zTw;h-U84I2RLw7*@^)Q*#wBF`Kar?M)`^MoB$jylc>CG`cx zMDv`qSLBxJeggSUm4|9M`^;r(2GL#*f%9Tgj5|(8>qYo7l4derxe^OGybDoNMsm{yH44k5GeVW^K3Wt-Q2h3^^qL|j5t}7rx<#hW<1BOn9dW^vY@wysB0jiD zxKgZjDKQruf5JR+s?3uy(OJl0;O)ME@;AcqLbzFnaLbeGF-$9Qy>J0?a)nE{4k13+ z?mbV46-w1(W165q8X?u97z-bkk^e|P!@e6qu@2~lL81%g4y_!daA!EP*XCuMh1!?j z0&lKli7J%TNE=p9;i(Gl3GORclpKd`)@hV0UnYG=-|W4sX@t?x^S^AmD#KP$pw@Z9}>iTl)~ZIRgdnxSoW@C-iD*n1`9A| zfi%JVR9b!#Wp>btJQg7{ea_&mGjZO8VnGxPbst%X)<;+YW8qICO%MZiQ6B60X($VF zBtL9}FhwTOZ~SPPXPJ2x>1hgfjn&}u17A_$C$Hapg>Q> zQplp&vJ($xk=OzL)> zbErI#2nL^}+B}*c!-^yk)$gIw0xA52r$s^`z*~rnb+TIZaB~0efanDPJUUq5`1L8$ z*o#`di)M@M?x`b?Wsp#>JJAed<)LN;ab@Q*$>B{F2z>qL3EJTxYoU@mR)j>yy01Ge zO<1!HxFW12eytwS$EdHk*DOAm=5=Fl9HpD2m}xPU$hk!(eDgWKICIf@H+^+fmR<&_ z8pd1tV#s2+Cb1^8F(j4dE-4e}7%gZ3k!{DLZDOKPR8f)mwuzW0%@onur>94JK*M;9 z0i~F_(W(`yT}(#Nk{Le;F4s_^CMtfD943gDY}?@4!FRc;1vWqg^C#_}YKqRx)J$Qg zFv+DsrP6UM_{@~uM@cph#s#keJ%wRm{NbX(&A=il3zrS_=?8%L&#Y|-94-*M3?^dw zwi$jT+(Pzyx+ZWS;dr#gx>j+-7Q;5L^M9`Me}2RKpND%d_tyD8 z|8?_!GQN5K74QG?;o*Y(pE+DW_y1_;aPQyz!*%}8f06vp2Sxn9x5od!3I2cK;Qzh7 zmoKX?_V@M=UL36-fPZ!T-)+=RFB;!C|MSj%@%|qj@9(YiKmWGpkBM-Z%{WndL#1Q4 zDs__hHVGyZlp!=om*l^ThPPqnegC!oJkJ`Ba(I%$A7$Ixcgs|mSrcOA7Vv5~p{nmU zGcQ$K7PiVTOQcA&#_@v~Uzom7$4SOpN+^kg8#4_LzYow|n(`FRNuEO+g%Vd+AXwqV zv7=ZVtWYRUjJL832v~~i0jHgoXl&ICP)I?RwS|bqtW!#XclOB`VTRHLia?-ED}}ct zS(IKbesoPw(BaLi&0z+Kw@rWfBN)W9$Any$HwRmOH=@A1(+}w0HJg+2zZFd)l(FHa zr~X|$2{D5+wDs zr}<+*1|(rJh!FCmU)Bk-xLn<|A)ZM*qmu_vNA+J4g&E3MZ6P&IPx=CE!1kDy9t zH8V-WShSvnX{Likh_-lyMm*jxls5M-tDG42I(QCqNS~W+dH%yM*Vj0=rk&KRI5XNO zEA+Ufy%FWL4oXF5-FfUZU%m2JN*K*_?qt)D`&H?pmAQk@(#?{b>Qb8mo@K!0=pjGC*$)2VDFTeac2|k3- zWfsR{e?qSP6c6N=Uplq^`7ggPCV-z9G)=}()y*_MVQ>#K9!pEqaXiLz(Xg>$65N<6 z02Rr_Qne#?GP>%T{`(jBTg(5}@;_Jp_o8~Z|Ki}~@%sAz%kzKySZpJ~kUsyitMN(l zzrCGl)<95*dCuvWXT$I zR|c@wj1$=W6Aq?E$87R{`HTOiS8rbSo2^#u8Z)k7NK+_%_WwISTQYFU?*Ube4p_&Z9(mk)mnL=pmWOe+Zm8?*<>uc-W-uCVHlH(+5`DX#klomEep@UQv2|XGPD=R z?(hU>^90C3)SH!P%V2-b(8C;PL}x3={c(^%UrWHMS_W20d>>Kvub$uRv3>7l+kaQ< zc59dY_kR1#uU)?Pe{5c!V$ipG>*^F!zW2`?(34&3w9#w6zO48cjV|VK=+{n~ttNcJ z92RHI{$-=r^UvB{zvg#p-F~x`(afpN(H)^<_Qx^TX47iA^@>Q$jg1X5^?u{%(+TI}H&5AH``6bP(B%4h zlMJF^}qN3iu}aSrY3=3 zMp{ZT40r}_)-z0(Jd7~%R-8OCNIisP+^$eZFcsYxTl!nwkJGYZip- zFnyNkP+$IIxCoreCO|`*s=ycGLdsWZW~jjnQzvO)a#gN6^)sMPcqiB`kbnVmA=v=I zz1_??dzaM?nmvT$an-2_Q>5uZwQCsMos>Qz(r#bNbCTlH!|8CdP*?qJKEu^Mhd!Ur zn4J4F4)CnvjJ4(Nl-VWQ`L#HyPn{4!4ou+Ji5kCjkSz33zwq0jFi>LBm>!oOBjf^TRIOBF5Q#Vuek4 zR#|w)cj0*U{YH*RD^5kd^~S6MmU7zcZY=H@$b#TLNWR~oYIL2`@BjLY*8c2g8)`&M zAxkvx4lHHUe!B8c4t%!|;o{e(qF$8c&rV5K0@Lb2dgAhvg~qicG=rz-nU&G(+0VLa zI8MXm4S!zp>d9Ox{xe)Z+y%Sw_x6w91D2K9;%&hzD?jz;U$Z0lq}Eg=DkMy*zh>8p z%KPDaf9K=Q5i&&1-NH#yWXWKneK4y)$S`$AzRWm9c*Z~QkC5D=q*vvI>L4R%eNC;u z_vz#&@$d)>pCJg~O!46Kr$hQwM13p5ii0UfA^DQhU1g`!%*U|YMKlhNX*j))l6d;p zXKyZQKQ_)9wf z21{V>r`Pcau@O0$v#Tm1%+g^vywx?#CBb`**0~GD`0Fzx?tjzAeZUaSt;SD{?vl6t z88e-j!nuQ~bNY?bYlAP!W^@fy=(Wl_fe?PptcXL{tVlWk<0-IDM9F!AP2wV{Kqd-P zvarQz`4n+hAkb{AyW{{}0bR&G5WtFOG2Y5%eX=SgpMaXD-BHL2_4c{ZD8ie5A&xyyV`O*mx? zeK%&sS{6Zu3Cr&>ZO*2( zoWJh;ytTOgb($s6#;(8nb19Rc2KZm!7khCLj(+ZNL&7vIhno#MX29Qf{)asWNDezh z`*0_wz~6W2`$lSDhoh2bF;=}E(fL3ov{cY3#!fnAchLChG%U6ElRKT*)Dk^ z1VEMnh6@lxb*VhlgS&9>L84J{Jcei-Wsf3})6iMGVAaokOJuF;fpS*4^~9FYBMgW^ zzrB3(hREvVcBjTdBR~?Ud*{F((u!|iK%&QJKnW5I+IIH}xx3MnvJs?Je27s{mmf~p zt`ERsv5c0;1RYEj06uE>%7s#8WZm~dM{=~DX_dlNr6?m|3@QCrpKTQhJjBS+bRHJy zN9YI8uk=#AD{D&=lI>FHTG9A_i=!#8y8>P1U^*NZ1{lm{3x|+Xcyb8$)JsXPl3PLN z9&5sh^dtGlIl`boyiz4O)X-s$UIa~|w<~{U7T{c)$s=(Gigtf?!D={V0$%DO<;p=O zddIR?3eg>-iDnI?yx;pN!Ms{;zxDAyW>R6-QHt(mnwgI5b^WxIcvLv9Mr z8ic;L%eMX*EF{+c|7-vM6950>gO_Xn|F!+kqdflGzh;NkES`+Nf&I_U?#@B({_pJ` z93QOhe|{VLpB^W&x9xu((=41+y}#1WZT|VQCu|E*3mYh`|KaP~g9;{WA%qvCI% zvS(X_Z}4rmdIVqgHh%WFo10+p0VA1y?{6rR1yn);N#f3-)9CnzM@Pi<4udSvc1Vg4 z_5O--Diq*XRh^$b(jNZ(6e9y;t=x_e;{b6{siT~F0-!Qndo%bNdRu1i|H!EXlI9E8wG{cT zugm}M=`zj#?;Y>2^*_JK-}C2=19-35@yU#3gvr{-#5vO8WAho`s^0VG@V{Tz0UY}C z)TEZVfEVh0nG-m4_4T~Kp|h{)1`geQML%%p?MofOW$(YDD>(1iSMmji&XziZmx9>m zyMselU(+AlxX(G+6<_&p+Bakt`*-huW8z?@*y`~xEQ`P7pzOOJy#L*p4n2=k+P~6C z$m|g|O+Kzab2hiZr=8Y7+Sg?&C+GlMSRNn5Fq;Q)aq~{|5U4gqi&SGrEgL zSt_gYW&qu=bqmf?=934aKfz-D=R0pL|5?-jKmI=H|25seru)})|F@<4h2GCmZz~f1%L)F^CG>3qpQ-3!fn)}-N*+~f ztTOK?ZEh9Y<1#;~2dixw+=rh%x;ixKDZGb0+kDf&|M-6n z-JKvNMY{vS`C?$*^qcZ(Pw{L2e7qV=hqK0u3lgts7FhsVCy0e3aNyXj(?j>Vr8Umr zoyIqd?r4!U%&~+PE4bGGto1(y{_n-k(TjsM1Gwh@g#ROqI30d23-|>8cf51FpXdLM zj@I#if0z7UT|i;Y0)9^HYm{tlU z4f1p^mUn@~F8kISBmkkszOH8Z-({_@X3P7vd*PCPOyqE}xMBD3HcTkEL${w>mn{KDOy;!tfO~vGIXb-O3G^H zhSWuidTlHyT-bMGQE6EV*x;-j%CWqZdaqEU_re_7Zg4fcEc@S(8`^sRhX}@QXJfWO=Ce}@rK`q?hU^!K~-E@wiEazk4tXDa$It|5Rvw>c?Pd!ILuEc_hD%}cN&FH zg`En=VHW0pp8#=ER(2U@cvAUKMObS}vWi*WR2z>?(M5b8DlrtcO6|ice9WDQ5>qW43MFds1HAM>TK4S< zD9uIRoQ0cGXZ4*Rwa07>qpTm_-j2gIP)ixm8Rpw%_%L>k8_2H7C=9JL>jyXH2ZBgu z7qDE*{JxqFWAm#U+Q0r!98a24_jlV~Pd7x0k>EfCbN?ffK1JCG4dlvlNl+Gk3D1{}%0kj`sGB_SP4CE&p}ozwkDGmI(MM`+pSn=Is9u*7@IlfAU`yz**>k9)QDI z47?Ttuf@RMS_}*~?UN+Ih^R}2!Nh`Ka)X}aM%a9#{^kD(xd)pcm?d!iKVmS5=O&zn zZK?8rd6mDUC+0QCY{KR*{`>=4WbjH{qa!jX0`4i@ESMSDT$}5Qpu4@n3)_!1>t*w3 zPDQ|a%v(vxt5-QT^J&%$HlxU$$)x{Zu3pJxvADo^Vb+|l&3mow|JU~aMf;BzJ3BAd z(4nemtpQle|JU;We_r|j@zK%l(K`O`n*JC1pS;9A-vRh3`|sV| zy!?N6e{KK$`=tNLZ*WcguZjOP@&E0Je|FCO#E3tPq!%&()aR!3=>HkrOM#GgJ%2H@ zOc{T`ZS&5RwuFBiOmFAGt@foYhTd^%yJ3OsYABnh&&`}IS0R?opV8B~yc2sY*Msy7 zV17Q+&HU$$=^)0)-`{Uw&hd@s-!1eXbvr^c#vZ$0#z|UY4FG~L*)DsA zH{*Elp+U*z;9$s^ln!FGDPkk)p%up;Fvj}RTSC>zc=q##Ebr^b@bLjQ_?eVu1gjWKEl^Oq{(AWuJ*?ypmEg>9Dl zjitNIyDU}l-+cQvQ73eOZ5_%&8hx4Z9w_Z67pb_gy~%;iD&4z z5~g``RUNpYhy!yqPwjIN*$uDmPlNKRw1HBSHug`W@`}7K3;MM7g?8;E%F@d)9EQWE zAs@jWU0PsWVIG_Qu5{K$@5^*nI*v2t+i#yIo>=Y$P_F{x1_rF}N?Vp5UB&DyOlo^~ zL0fgb6lMc5XS`z55-?b?Whq>gv@HpSKv)`%etK)dI+XNa!=vD9)yQ6HI9$*M@pf*M z;u4+UBDkbao7apl@1xsFK~p?);p;vabF79qBY%NcMU06+Z()Q|VAU}&7+$wZ5HErJ zr}nehz=4TDBNS$0buAHI%YWDM-+vPM@8K~<;9g(mwfxtT{|4#g+t_~`>>nN#>_3k8 z*7D!qt^Bu^PSzsewFr1E0{+G#V7O-z2a9?b zauX)DD?RiUzL^8tGGv~?d}{-Xf$~sO(nMZ28bx*w_0Cljn1^Ie9?F)7@q+ShcpIge zGY0_R0SW+1if9hDYxxOEC=1K#!NeCW;|lgPPK)L2KpzfEXDK7(ruIMinD}s{Um}FZ z=GsVSWjWlJ$lq2Mtd-YXS-`o9VABZ_x*Or{9SGFXn&W z+gay-|2^~nZ+mP0f6f1|`TuXt|G({hF8_a@ejfi{&MjYtz<>|Szj2VYC!_|eNe1!^ zcOUq`ahNX^LnBLY5RD!2KxaIM%Vm9^PxH+BIGPFL@mS~>xR9d-%=_Ek7cuY9Truy< zjOU7sbBV#+>fHaTJpDJ|)K{_b&?a+b_FvzU-~X*R^*;>j4B(k(odE%@S?4wXzvln{ zrTG7syGI8{>-_I){@>>RZ-Vsh^8^4-@&9{!dwKqUZ+Gqg_50=jPY@K=0)VvuU@ZXn zwgLdWXrCzoAawm%B7jDc*o^v{;Guj2(!;PG3*jh)@=9ClBllq2)y+RP`@U@RZ4^n`FM&Ccev*N*8JaZ!~Y$>c)4@1*8i^gKb!v> zOo9*LH{t(|_tyO1ABz90Umz%~`M)*)x90!8E&oS1?KAm5M%Z76|0}3*IW8su2B}K( zA1GOO?n}`MyT}6OxJqM?y`QsCe+Sq)%#{IDgu&o0SK1uq3NC^{66YseoC<5X%Xv{c zl`r8%xr5)aE%-l-!~7IYY%Oby)9{lutI{> z>%x65H)x~pufr5d0XhH|<6y;u-@sz{>Z*BaSpp|WZx6yWjX&A-cu~x+x1>jnCi(Ji zcpH8!-3n*rhJ)QJ+oHlo6h7sQv0snln_yf==qNNI?l#Bl=B8=N3Wte7&4TG5blswh ztgi)$U&I01{j8O;znN0@^D>%zdAgFXk$>bX<{kM`L+~Ly#X*wR@IfvlI8aFw+&a`Q z;2*2ml&@qSzC51YDpBM(+#Bu#AkdjYpymDa3e`;OKaw29#y)v*iv8C9(_0;^DhmxNKLg{QRJqouPBKt0l=pvbvbxhS&UZ%-cOeFE$m_y ziJ)p+`mq~4EZX{#PaK1hq4uehTcz%Kklro7CyQ&?Fuo8UEv;1YaUrCvQuitilNLsh z2*xEBpzLEmNIzTz$%nFAR`#ut4uVN5MD^*Mi%%;P#ItxGl3A`{Jx2`s-o=>Zb@ttB7;5$)@+RInT?tml0=jo zPSNhs?)Pq4o8_bAQTNkh6k9AG0VDb>9AQ{GM6t>8AzX~Q!T|XOrQN&lVXnzjM}7bQ zv-j;?Z6ry)_isK$t^1A__hLW@gzdI{w~z|ZST7_2_TJgUDWn2bBdOF?B_6$J?q|Od znf1tLNxW=4oxQ!&C?Yc}pONv4h|F9j^Ap5De%IG(_QeIWD8s*s^8q$v(dPg_@5i_r zjQ!u(|K;fQ5jr9V6u6Q3u0F~NGUx4tDM}_mz5|+0I{Ur@PIzT`>Ps9XtHWu@&C;eE|5Gvg{|nat&HIl=`8Ue{^DF-keg6@K^@HMn z`tBwBOd?dL=ZygruptMX$eRxXA*$ebdNmDhrb?b1YXU7R$qz85Wk`$@cRcrsVv%Zc zE$fq65XLT>%#OQr_KuH-M)W}Kx8zFNF(f;mvv;0A!m^x@_K`F8_(tGWnXqDpkV(#y zGL`+yGo^x?-q3gXmh<N;C!LIULzeVjR%)aqAa7~ zMbV-{xHRemN7cnu;nJ9QH?&rUo@`<;&wKvG|1tI-WB-xw|Ji!K`L1MSg0cUw_8(X& zfS{hk|6AD>?LU<*bN=fE+kfa(FeV^l0x~9`XEp(mrS?!O5M8GWoWCT|qu@R*Aw~Qm zaB_xz44560XA9W+)gx4)%nV%b`Ek_pydf9XDqchZBTAt2*qdI)qqRKuo8K0u&5;m^ zDz#o`QKWfJ3{q$F&Vp!-ucD$`lB|%R@7<;r2q=i=^rpi%m`RV)XkUszjn0B+z-li; z|1Zn>f63_o-$no5Rq6llOS|uk`fv1qR{tM9(EGdC|6AG?_5adNxn%VJ7pwo*jOuSx zf1~<8v+7@apw>V9-q(93w3ZjaBEQG2pV_H;7`~w!-bozpE7*DvNRj?g3f+YRnKSOb zmxAg}eLvz@KORQ>1D(p!?FRDE`~22{9Tl;nBJOHDy0zs1o;l5JPILd2PjkP(qq9GY zf4L?aEo#QMZ2Z5*{__*se|7<-o8!O6{=?gU{ELf+nSd6(|5+-D@4swqmCDBc^K$J! zI2DWu$e4hP3Fw(kK(NprY6ZeI`gDdMnC8qKe&q8^Kzk7R{L`LjGUiEA<-TV zMG}DI=_N~qG%#EpHy(_H#^Het%jcg$Cnc<3yN; zbJQR`ga00Z|4jVv55s@T^WR&gO#=W8{^RhU2O0%z6AyrZi}2rOsVv3+?wa%8FBktg zwfeqY?HdSaAfSPO&kO;Rwe~<1mb3Tapt$=u;UETp{L+= zJu=l5oa2_Ad`5(t$E`yRXU`ob95t{@I`T2tE-m84!aEIYOY1Elw{&V5@MiFz!G8w- zvH+Yy;%|O|1FowCjRfm>;Etn3<59+z#xF{f&g}RALs+h1^3g01B&N5 zi*Cv-x?xv$TywdznTj`;v7E>s?9ZnIJ{mE-A6Mq6U(K!sG1OPCN5eh$#%#|(t)_D~ zFH&+kWn*WKUq1KSDo=Hu@S$e{f9A7$`7~8SX^=ezOdI@f@c&-}|5qySw%%`0iAQj*`0Gvxd4Tn zF2yb|^)DDFruhY<#iY8MoCjkSM;CgLr|5c@-YqvXwVluLr2gl)(h#V){3xhWa09_5 z5XXXJ^25Qgq!Hm8RWK-g&lHRcpHLVYj;R|RE|D-mCwt1VNy*Z%qzq|9Qij-*DP8KR z{L6f8Q@Sd6C*>8iRMQ}aqnc{kW-&a)9MLw8tBAIaswOgQT`MWd5*kQ}Qrjq5Y8EAn zElSELn6=5L3#KbgA$15P_n}#1Z*g{-ZgEA(d*&_J4@5>9vDNh8*HD#0j?$uZ&6p_r zJfo|ol&0r1j$%43?*F_d#S%j^3K?hdKnO{fs+3|lGG5V$WQpWK$ylm!0p&=Z@IWh? zH=s`yO~1pAJarE{(n2}xoB(jc2gNy}yv{NjzdH%FR2G(YhQ%0GQu|4t}?n z8`y;W%MI8C^I4W&_vQiVxBD%V4)LCwV6d>fES<8vrhB!x zt0r8crw9?%rR6$wQHH8CA4rY}NIy{&DiLL(I}j}(#vf?>f5!j!9sPgrwqQ)mdNck% z#{cIJ$Ilc0xwXBuE5(1B`(IwL|F2#%?my%HM15sY9BtDz?(Po3U4py2yE_CA?y@1c z2bbXPPJ#po?(Xhx!F}iDe(J0Ge(csxZPm`yTzj3<=k#&>?aDa+FW{8*jVwO+jXm$Zx9lY_b8$u)l@V;~hfRXRHiU8vGyg5Le zg+%liW4ZU0oT=mHo$Ui^V9x+P-0@HB&`>A{PiPbr`i{(4-|`;Cp(^%GAmEeGCY>g2A`(*&?9e7_n^mhk3W&r+o!25AEFzqoO7~cWW z62R8RD$j2a;eSz8k=YCL18|{HLcImFSl$8YRlwsaOVKm&#Fj01s^+;*!hieSRLV&7 z7|eDOSVptuq@V)LnJ&sd1A%iwro`tg@UNJzKo|m6Z+YC@G*JV{oJ32Sc}jlh zJSXTCPd~>V4i(*%=pS4DUR%5co@r6S>ArXZSPm;gikn$qg`#ofE5!-6@2(5|I=t}* zHm$b8L>@3%_(&@vG+LekjB5F;3V*P)w`YOm^ z!@(Un7GF)eb9p6>*^clA(U5OKKfco6< z&UFaEEtI|``~%W|3ze-?&!wko$7ywc$ZWkjwwqu&aF-5!o{#a&2vW(~eSyy(70mf` zWitS}+DumvJbWwb0SSST>%w~`?oO_^CgXR(vU@<_$P-&85*$GILHJwld!p^jWU(Kd z|3dLb*L_VK(Q`MOId10iHXLuJ_I}JbOT#xflK{uArj+!3J?z=mL6Op2kvc`X_m|u< zCL%7{4kfKc=O{${zY}(ky9G<<-h3m{5UGY_UPxc(+tj7pCTB7D0)S3s)zy2l@F-lg z(?a}ddJWnR^EIR@l5TDYo?D4F#RRh9q}hk0UuE!9lK|HLLly52;qu>=e1OoO7g1w-^p91NdI;I= z*4oh<&0weSK+q%bO(bXW*{{LgO`Y7mcV*VrPb0ARI^Gard{OdN|FfIr$FDXKPn#uq z?@^xyt$uiOkMH^{P#yDX+zG~6`du|9_vIgY8=}cIQ7*X9Cw|NXq2fgd#nl71 z{zJqB+OR@=98ZGx!uD*Ufa+~)a*MaJhL3fAMOT5feCJpsw|w{ga)!>_9I+bY5+^cz zBguNm<_DE;+%fb?>=|K8lMLe=(#QPDzPWF@)AC&EE0+bV$q~-$w|tKti;1|6T;A9RzP z@nCJqEBoWJ^%TCI1-LBgrPPtNsBcz#6yd%< zvs7j>KJp8npx0m`o&I^_7GfS#F6SQR#8}K7jTOV4b+g01{YIh0$B3PcZ_jhfRO)w; zi*obcu`IL8K?*)`kn=bQwmAp=d1v#^qa@k{ZBPPvHX!g(p10$=o(o|+ zpKNiKcPBF2T`Bb9K9?68m9k{ES5f{fBdeyU*+)+JLU!fLD%*>B>VafS?ii05L<`@V z6yJskLg|0_r`ih=Tob$+?f4JkhIYE?OAEnWd@hjSwarbeJ<(A?np^M@@*s#E*Uy8I zfW+1%zbAMq7P{%+!AvM4>awgSti`0|o7ZmqQLczo@qx;p@81&P29@en;};923(#L` z-7n&4SfifQ$cQSRsRjB_7aZMoZ4sDcM-E(%3cQ&p*Mu{&uDq=5cblh#{t{Vbpq>y_axc@{j}c`3A`ZY1t!&AV|;o~ir`NB6IKLwi=F@4GPGk4n@V|9zA9Kh zg5|*vV)N3TM+q;+Qx|@qC3$&_^tcW8RZcyBe@@B3q#Ut=Y%Ts!=9Q6G9%Q@8Lv4|& zN_XJLm`z|O-O0*tIr8@PQTrLjC~4 z3y9B z3bLt46+BmhWZ3QhleIU`TeF9gwfum?zYlGNa6z~UDtB~NxDwSGr3nE(__s*2$4oTj z9p%CQ%eidYs-!EqahYn!vsB)dB-=wWRM+b_ok0_IysX0G5bbkrk$NG|bspj4&`(o_ zlcqTykZr?u4NC$Yzj8epnrwYA5Vov{n@#7#UQf~VDWe{+8Qy5;@@^#GFlL_Uh9gbrigs+-YGAskcv%AJGA^w|^KP8`olWX=W&^gV_ z+m?yq${z`qB}#xjS9thR+_?{spss~HGC~pVOt};;e75J4p+Ju8N>zpb?sH!PCM4dJcy$@XA3R zyksw$mp1GPZCmV|3%^9O&k`Em65j?dWzU1qTb?tIT-}+rH5SutxN*VEczBIBFt11} zZR3h)gJ8?u?x3!xy2qb1PfOK?mVo)W=nM+PatMl8%!e${DSoQEm`(ej4ZT;@1SMEY zh|h2omJog>&=~r5=*FPSq)78OlcTu=F2=1Nm?s5J2s{C5*9KQF3@Cu|9*<$vOloC>4&zBlE zyk7;ul6Z?34#FL;~?IulTPeH>O;4A~tINDN&v~OQg9(b`p|9?FPYT`Q{*pfhP2@1bv~GUy2WV7bj0& zr$TBpfOny&7X*|$?5nQySM&Z-^)$*_K__*P9O9MxtfeZ6{xcKkgpO4mBFc+lnJP|u zbQu);QKs|`98Ank`ZwjqzDKkGp_|+KlOV^`G3%2z*_CX-r{^J$_5a`IFVGmwT#Ha1 z#~YhN2%%VpcCfo56#6ho$`BblCyo$f!Cz1b{#HiXLI{rkh5S!60vzD2oY7Zhcc}Ga zpc+h$o;w0`psse61I`kki-2ye_ij^euxSyP_#S9m0O{GF-vNd7;P@**{V{U?llH57 zdH}Oa5ZOSG&=FOv{wZ1ebZg(L1m@%gN?KXKmQ~BAxms!s;~W*FkBJ1bymVdZ&bcUG z7k;Z(c6O-k4EcC-bX;G8<*qI*6G#B&uR_^&P%g6SHZC1KAC68p#GC16?fLn6MwsnC z(HNk!D$)BDcrJ6bFYsH`JnIA0 zY{L2&dWMxRVea4J&y>aa#x`nU|HWn?ws%ljqw&XfBmPevI_C`my0s}@CAWDWM7Z`L zBD;wWw&($wXOPzca3=W<637810(HE%^&OdlNquG_bEb*RZGA7BHHVjEwi89`nm^v* zTg!5nrSC$ooPj4~`xUJGAZWH|Jkpk*h$GRXm8Q(}uvl*aU2GYHSZePteQKv;e?iuS zKq?COmG#M47Z-?nbS8ST`9~fDh~?c3^&CL6Zx_CPod0QRW3;sAqp>8AL;V5BVj+;I zZ~-PL8PzTDyMMK8MbGh;8SZHBc6KRdxDMQAiX`k079{*xfo-nz5S!?pa=YCye5?{g z+`8q^uG8DBvT;aUM?1xX%+3z_2iid1c8!$UZBGfd9)aM(F#B4{E*|-AqkX3=gMm5W zpxncm>jWycaY3m>)jm}?BS8;=potJ`9KU;p>Q@yEM!FVO>0Z03J?Tts`DM3sdWoNC zAnlM7tpHj^Vt-iE&u!Gbmi$dIh;Q#AIyvxg2%;|*rDcd5LEmlS`YH7|O4%Y5OW4Na zPpX`x-;;`;P8?-V-0;q2E295l5GP#b5OnDcG9k^uV0f0=^38J9QaN5JuF_`2J0 z?GSu~?+EZ$XF~rSe6oxco%;F~9QL3#h8}%(ir|_~FZW zLkR?>BZ!W~{cUe1Dhd&(cscyyY4EE>bZ?>GY9jhC$-v{72*~WeFvRU`=yk(wr5_-E zo7x4|MmRSB?akGcf1<^lPr$$~P^bK#Oy~UvwC#vib6)N{cdxWYz(T-!UALLi103wQ zO~fgTMf3jsmyZacaR?%$8talGqx>vXtTU=dE&Xkm-gImKL}0Qj z&TWgr0UK?}N7q0a(?Rq;u<@~{(_?_H6*veY2wRBlCTKAu+mC&V<@(MAHcj2rahr|? zZ`Z;T%>HcT>-EG~)*;aPL9zhKp)k7=?d0KU&p(PR->*A1)00_@ki8k|F+(;Jib$j_g`9}Trco|rt#RLBr6|DGgtDiKq2Ra87 zb4_m6NeT(1{!=jfh$<++4oMYe|4)z-KTyS>xRQsljTMM67Pp{@Y8*0xQ)_5YnH5qt zg_84E+h@!s3>qm2jb{|fBUPKWf)B!dp zqIY261jvARlcm!AL=V0i~B0>)l| zhmSg_UvXyaFQ8K3qqQBl`$IJ5Nda~L%LB>)Ag}jsi#yQmRCg)Zc@y+x{?dK=9&w{m zVpR)pzK9k9N3R3PXF$i#n^$y0Yj^OT^eIsO-DZ^-8SWV76OxhG29y*z4@3_H3^YbA zJjJ%#_x4($lSTvm)_k2@dj{bR0l(1?gkm~w7_&J*#Gjn2$?BzPy3vX`IMG3hi-3j^ z%7kVAnXt>)>=*)u=VALE?0(p@zC{5rHL1Msl;Fz}uY8mN$+?@??CN+gB91&fhmXj} zbv~njKJp1o&eM#u|2Tx?+~=zn4d4BW%=2m*6zlnmsGJ0}n)m!Fl$+=jWVo+zGRv zv)ABhZVsf*;BZ`Yk4%dz1yOuUmIz-4^#M{l8=%H(pg5fk!E61_2u(G2Mp*9C)wNG) zxKQXr{~(#;c{eS1kBuB?ctsQ2uf>EJ1S?*2kB8r&T$3NnUX~I74IS2(pg`9LQ?5ta zr$s%FIO!!lkG%Clrk{x!ngxicQ(?3qR&RE$)XmkR0(rYCy9RO*Y7kd})ZLZOA{~>> z16(~(sWBVUp!<2i0_VfTl_ZL#nYjEyT z{rURaVcwln0wE3uYVsA8`L2n|J2FU&78V4Z;Nz{7tjK7MM(hz;`yx%@uLTX2;O^>QjG(Cjin|901hkL-S|-e zAHf%leDQB^kRScA#hwoY$eHB2Y)E|b&&t(_7L*k+4 zvga*T#mxRln!&L$6AAy?Nq^nNdLN@lkiEvmCU^Bz>|VhB&P`I!+r4OJNT{0adM;)*nYd@W|cIKR$#%`wp*qdT21k~S5L|3l_6n*nSK+50XrGfE}73x;r9 zTjts)IIjy1*gX6b9-|#(VyF52J$qbqL?ALX+m-$2#sSGQr?$7y2ddPs7Q|>12M? z9?D%}cK?cGG2zX2t(Q_suScv~`MumngFRmw$sRw#Wa7JOYdJwh+w1MM-b6)PzK;~6 z42CRh=Pbh4`An__#YWG!wJ1SN&y!(tqn$?Vj3LVQT}a?(Qnd}Mj4@cgsF$aXGol1k^W zp<9KW(QZ55SHBCt-<93&TcsgtFGGhkRSo>AIl9+L2ImPD;ShdqqFG&L67n!?u3AfW z>9Ckp46l(<3w41}pOnn4r&VNh0dGMWVBF&GR#5fwShb?vsb5hp+U$Gs;vxEEAU6MCXGe;7@K){R z%0v_T5#`v*KftCsW`ECgU7Nc$4jgTK9xWaWD1{Q+4I|J{Y4axfktDDE$$U|0;waz3 z-TRNI7h6~Yr97Bjxs=!{X+Pb410(^FsJ{CQ5d;EHoQ zKUBTXB2=;i@<^AH+UZdA2{`g;Nl)J)X9{ZGv?I1I^Y|Yj)lskRg%uPyQC-2)Q0Zfl zfe(pO;LNc+o!JR?D;*u+%z`DDzPLzo~{1i*rF) zsc8kF6&Q0H&!M%O=sw%XAv}`&VxZiD&`Oj_w1Air#t^CRgL(Mom&lONvvIVNw=ZCJ zX`a&Au^gfdJCXQL_r?!NKd+eh&&iLv^w1`Fs9?4{_$laz^z|bK!4*}l-b&Ks`iCSUkf=75n$(ic*pqionohRO`oV5({F@4g#LMtcKdhHJ|wC4ue7cw?9IP_ zzsbe+waKQ-&{CbK8s-1K`)!0X9RHJ*CA+$$_gZWmOXo?Fg5s?|}D?*-sVQY%WFA6e_2N=%ql( zgF$zFOUKKz-5F@xA?jE4J@d!$kI~P|!)489 z$w?3pSktYQFU>-tZ}cm+>dU58p>^atwc3B-3Y5>86uvCEM<85rDJ@&o8iUSr6BewK zoyz&71Fls@#NOFLKvnzfCuY>DAQB0|o(+GQnct^HhUnu?x$BNEv_D!!s6@2~> z(;E!F7~^4c@)1?~qzi(;Eng-J)y?nu!|GEzr~#>9tJjL4UY*>N$m2>1OL$3&@4n4a zhXG+Q5U9hPaeoHKYaa=H!5S|vj8$rp+!|4X%Xp0!ir3l!x^DO7o3-L`km$f^$Y8_F zy&UzBcxOWaLM>`1>oRHK;}N7%AgZQjRFH&2wxU#A+h976_+@xMUGkH5O#tDSQ-W<*wJGS#Np|e-(>G2 zm2gTNfy*d$)YNtKtcr3w_}qV7bhx!`sNdzvwj3bf+bS3f3iKtIWj>44j2@PMdap}q z8CIg!3N-K1eprk`R$v;BK$4mI*|u-D8JQ>DpZzQ_+G;V;Gz?{)`)>nQQMOz>OEsH! z>`?HIP1e#wah=Vu^g>Q1TPxf4vxYya^H`!%kq0325zeJg+bv=GJs<*wB|!12cBF4CgF7I9{NCzaxR zejMh?$jLV!gLtBE-RGY{)Ucl+U;Fp!Z*A3|o_)R=|JrX^C+D#x`XjC>I!X*-gM!%$ z5VNFy2r62Oh0H6cqJ>5rqxB`kuj(CZ;n0pOY^5KAsuU>|4-)ec7 zxV}rMenuhh8%!E3f_`G*b@*Z!?+&w{F+l=^atUvY{z9-~j^vkJ8F8i!jT3=;+lo-a zc1;?UU8s4X2bM3n*yHn8bm)f-FWI8Pxl*0q^ig`9+dcTY_3{;UCY>wSpa&(-*-oiR zpZCmqqyFHV5z+UAT z6&e*9`KUAB&w(QS>j)XesqC-UQ%BGX2@+HOZW@$Qwle$+=XKNB98a7za0-;_6bCD9{$EyHP2K`f~p2@A6WUM!AE zSd*z?-ZQC{BlSaJUm7?Jv5nFAX_*^9I6>v7;hQ&$#M)nQ}0OT@nwD z*GwcM>4%-jrCN{7Ug?7PKU*Q%MV@+Np_U-LYfxKr5zj7D^BE?aiz0s6=`&m;SUM_W zL7b&?wI_nq(3MK8j)El5I-M_BP8xuwJ@7q-Nk;NJ)~aJFG}WjPG{~0C4HzZqpXz4x zd(#(VFa;#f8PPBDs5@3gj55q!dGYpjWl5k?x}6!HFmH#HgY zAT2h+-nsuBmufx1X8RqoF54p2fhWVKj_X(|U)bAOrNC}fA7_Oh(wv3TMzR0rW=z90B^@7v0$7?uW_5jY#88l$ zT|lH^3Qy{uT1CH3W~%dDh~lDeQr<*>lCM&5sH}5S)86vWaf<}>TN};diM;`9w9E`@ zW^DZOXc5)(Z`5M5amj;naN-{Swm~P#ZsJPphw%LKD; zgBU4B)N$!yGo58}c~u&7zJQJh_x-PLnoMG=7(4c;+K8vtfiIUJf5^w~ixj2~!K?9i z=R+{>4*2&SVFBGApr%RC-hiH86@ax{K(DCcfZ#@Ey z$+|1HYK^3Rm%`59sh|Qf*S7r@Ui9nG?+y3lE>yZVzpkL-*6jp%wljtsSKa5-eQsC+ z7F}?v1(?&nnwIJk$8WR{qr$c<){^n&=;Yyy+@fa(_1Tf$q0@YhRav?m+u!?&AN_sj zhn`oJ-}0q`)s1#TajmAqZA$K(=vQ&&wYYH2fgqd}xwKXIHou3cIlCpp!25JuW4#u` zo5!DCk1=yj^M;c_zc)fF^s!%~OUuQjU*e-d9~f+wH=i>%mpc!IODND9Z*69cQB z0LP566LJwmyhf#2GIM4pi#}+m4tFQUlvyCL^vjTrT{y=}GM8M;@s~sVoi#V9E>aNW zex%SoqdkCJXKCF_Hw%la$c57Hxm62l1ToJzb(4%r{*76 zKg-pfeXh*VpDf*YEgUP~wtn`@kNR6EFr%ZJPQe6;r&zbKV6E#mLa8zKwO2zWBZX=z zJ$CNv{Cu_m!i=Bx#MuHcHnSj}BE|r(a~0J22@$II(gG@j>cLeqnHZ+D2!oxW!~W5O zWIeYsu+h=#d7BF-N9H)1wQtHpd&BWjO}B!_!8F@B+DUutTVnB_TopHd(}fy=ipNv` z=)f?o`aO@ci>&q=qD{LF!@gWB#>S(+9{ru8I_H`cE1t}1SEmcbxbfdT^KBT8T(ji) z^~xgdyXMZ8wQV2``HT4tbLZg)&YOe%?}JopG>1usLz)P@YPux)X5F$LbcK^qm>W}@ z3V+i>8h#I2bZC8M3>mRkv|bx}_iFK87SaA8-cc!l3JYyBA5}@ACaV?A!GJPP?3-Ma z2QOS&R=6i{m4Cxn$r&1`HeTvi+OD_yxudS?yl0oX6-CT|?93ibfZ*6w7z1;ZRa7qn zisnrm884PuU=GXUZI3K^*Tj^www$ULgnq`Y+y-m34%hB9O>H*)piW<*NUsor8ZseK za9B0m+F};=xQ|<1Om~)!XU&xQc<@}|##%Szwb#nPgdWjpk1y7j%Tl!^ptDF^%nCm= zeIcwoWUINIeg+?b`UHsVjG3~1v5YbQO>bMPAT2U|`TOsQfLG0ieL!+pDxCMMan3Hw zK%pT0m!`G?nwLLV*lu3!`8_-rAv%HGCfZX`((QUXQLr$2i;|xm~@NUH15wFFfX;H3(Gm3#?5JiZIqpN=xKRZtUycbvS&yY zwSBBni-2S3`}WayoR4kHinb5;=?4l@Nt5_wm&+)F`QGne|$JUwSnhvQB=R z^*Pw;HzsA@?$^W~$q$q&U>*a}9I6WiP^=UF$HN*)Bh?mkxX?6m!ShLhkkaZk#;GOh z5>j1g$setUTf*H7F^2tApcjS4^JJ7W;XOR{J45WmrHYvQarZ+k2*Su+ySyBy)8@I= zIA1TI)p{OjBxB}INxhLpOEWHwXv<)eOFw8O&QBX7q0G3WXftvqS>moUcQm}hil!;+ z@Ah6A>ti7`AMP4^o_!gbN=+%$0bafO44tAzry!+al?CN^1X!(7*&eR)`Qi5iN95XR zfyBhjwOVu{sV>W(7NK>&c?nV?>*T1qrrNVsy<&UwqIdCA*uOkex z!c~)6>(U!|-oF<4#wnp+Y3Oaa6bSVXK@mCn;+LL8_g!uWG~s%M%J|fL)m2F@U;GSM zWbM+u4Qx3^{w5ps8N4=^l=h0rt$n_U7i7$02*`-ReDg(6RFF~*+?i&HoiC~HJWr|rwmpuCU**#G{yJ1b*g2!o*py4O-7 zFusRM`G%kmLh>e>#bkXDNb+x)5%FwCVj_~$g5`&II~`E<-Mt%*C|l4uhg}YA5r`Cg z{h6j-Z;+zzo6G2pU5X#fbgzSs!+K{jCS4A(WP;y}5T{4|N4TTZlG{lQGZoFVY(vd& zo<;ylfQzSU#t0JmJ`x)qmA{kiM#osth09Brlxd{IE1Ze&*;|V^J=Z#!f_SAtmA`Q) zeRgKADx=^6Pf0`8Bj~&RlAU+FV5JM{a?6=;==3kgnsC3p=(JS^?42T>W)93+jeMo0 z72Vr*HFz!cl<|;4bDB}H`_?isXslG9m~(K$s5W&nr!`@y*uv$V_{o*sowXB^J?ce8 z2)Eyj+GEv)4tX)MD@>5XCBx#tcN}_o4id%Ay)u%G+Ju0K$-D+FUw2SB5@N7zv75}N z=foN9%3;&B*Vm+>Co##gT0F{A7|@0I(x&EASlv8nRXIC*w_T3N zVd93=kHKgirLl0Ty_A;9QOux8_vEfRGoE5|rRWcz#f$sv3-u#zBd<3vJ$zG!qEz!7 z{oh$%N|r(ubA(YxVVoIP%^&LhbYmLn5DR#u35+q)xX^|1$_wX|U)8Jp-}glHsTomC z%vi_SR5hcFVOpaJ!s@Gj6k&Gzri4;PQX}@BFzoq%cINh6LmZbWVj1HnF~QNcx9`ax z%OnU7VjNjC(#&ZtuR+iQ#B&>)!s!N*rHW%5r+a?k}39m5?38H<%8}k zLOhxr4NS7?bW_wv`m@USmY^0)w zaCg$-tEGtT{GEJ0B|EgwUoUQDW0q6r(s0w{Dw3uQ;p*xL>FrTka(>P5knZ`sSOyWM zf!`P3YuU5IXpJ=h$&{TkM4&w5f@ENj4F#)RBZG<%$E*w(%F<}1D~+VeKYkNFE@y*1 zu+voMuZ^b}r((h_r6En`b{~!)Ysr~!Ru4TcOHLaLsw+Xr5Y+p7baNKZhe!Lv!A0Zh z0a6#!sP6=6&+&2pHOJ)%t1WQ_oFkdiZL7jl|4*lFezZi+>CS`3j z7!i7_`wM70;t1myl0Uj6^^~k^QkdMauZhM5wrWu2i(&(vXY}nP8{2j`7&9wUWA!Ow z<}a`$F|?oV-KHDb;r)5;m*^$K^?xyH#0t0nEYW_==5nmWxm#nL$*aeaak;za*M2rr zB}aeP(uNNjUS?oreqt0fn0__Bs(7=!K!fX(i)EYS#quu)+d>cgn7@=+t5x?3taI@0 zW_WX|tm8m&%C^fA^G|@x<#*(dXLJ^i6Wn+~R0>QgWZVhAD`M$jkcdyAiNO4nak2PF z;%TV)b+r>MJjPyS?w;gO=|0!pc8~wI_R?%)wn7uJFe)ZZ-?#qPM+Nb<_VpgYkDrF< z+B3*}?)~zLA^td(+%Gt8*gAceqk1xjvo_ljDB9`5u?*u3VwNl7_A#i0kyZBaZ|2@!+@GZ#wf3z53$H@c6F;SRbcQ&@ z6gs9Xc^rHt+0ztHdj({JT@6-+5!5_D{UF3BC?!^T_&@ zxlujnK-!PHg&rf71}V(K7t(t6soyLs&>J+~%Z>Z6rQS^%Vr`P-8*!So4tix|{7pFw zAQ1f(;1)EZMkx2j8~|!eI^j;chSje;>II_eWI2q7rNI@MCsMg8sIuM*scGrH3Uc$U zga2x`50)rSzKUun&do^<+2KSq;?V_PV0s%`b2X>wUL_h!bvtd5l;ILKQ)=U zm6VsbWsFXAE#jrAcO;wws;}1kEd9uTaN((sF99NDS|fdm*41&{i8`>_0M<^gOqYK2 zB_nt2QanG62e~$0yYl63UNs3 zM=_u6_kF8CmTDM-i^*dSv=er_UMKJKqK`45-y?^Mg1^(PBHsun3Wm9ts1m8

7K}oj#f% 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%0AeJf~tzoLi}w*A|* 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%0AuLd9#t~qQ8+Y z-5quW*_i)iD#9RH68DACqw1E7kki$1bJ5#FPc z`J0>lneJZe=$Gq`Unx8}ba_sprtK>_>kQk2?uU*PPnBh#<|>qKPD7(DMM&p)v=fA) zSH1JVtN9^(_BmeBb+-kiqF39++S;6Yw(g))Lyl@M`@^?yLf1*0ah~NX#@Ib_ul=-J z?XsSJ?EC_7JitxrFEr^ zJ+{QOz`IAQjSO(Z9lLx!=wxg69@XAC`X%NK<))7w`~BHzr)t5y&eg@}W4=OqzRwz= z*z-aEQmU|ZW`ChtS7V%|9S@}LrK~rs!K=9NSBK4bmouOX>3%>HF|fyg^UT)bUpEn^ zrrkzH4>+oOpLc&Uiyvi_w%Wq8PqAJ_+oLUkx|9*5cNu69RLJYVx>iKrxdaDy7PHd}Cm&Qz8mI1@@r z(x92%iU>Qv+qewx(9<^!2?*9@pfR<4R)=qB4sKqx6e~KnysD&CAKyE%0b+`Tkgf@$ zDpR!3# z8gSYI)lRDDkef~YSD$ee056dsCpr&YVt1bhFV;G&r9)9#oxBjt34lxm!SuwXHq~%8 z8J#R68FW#}dZY;`LB3-l7>lOc*NgxbIO*4oYx1(voMkj>G$jCq>D@Q*1$ z!0;9=z1b!(Q|{ERHoe zXKow>)8GJx!h}6ggJ4~O*>?FVV#{LMggcpY zUQCC-1RVH4v)>E9e&^ZH0R9#^jfvt23e`8m`p3c*<#PMgG2vyoNC-Z!2P%Qb#ulmH{o z;JcSghiu59By@SJO!>b2b0t@CcH1T3mJh##&d|h8>E$_-yBf{ZVCEkby%?~NxofVk zka8OD(ceFd#t=njqvry&CgXzgEXhc9-#9+&_4G$JL2pRYt7n3A50REE$_3I{}43K*(H+To92QCeov$dJHn`S{B8O+DlbSQQO zE+&mB<8LGhl)|8eXyC98375Qd+w93Mn_;hIR77PBMnwqjK8*FIcpK`mLnYjZT^Wi! zTnU~=lZ||;sD4e zEs5c5CbtNZE4YnLL)hz_yM6F)M!=xnyGNk1Mu_KDnW>p?&4^Kt3k)wvm}5X0{;;%b zTOSYQIF4tb`R-7??XWyPf9Usnot8uj9yL{$%e)65?-%yqZHkn{4amGb91Xfx7kWx- zm`enQ3q*}(B3s-Q>xF@|8tziUeQb}qd80GGn*s5$OTg%bLuOa(rijSh9Sp@9G{m;A z=5$K2bdwU+9I8(^9HvM}u78Uq$-pjxh+WB6&tYr)fNih<_v^dPXS~?z|TsYP`_A2MuqS z)|Am?KF%au%pl!GgA*3!BU8>_!zA`XYO%zo8}6X{@g9Njkwmh>kf|wQ)2NW{#<5b+ zemLul-lBGZcP`jMTEOR%2=r-{X7T+7Qa#pym@cjwu!eNqYc~%*tTBZDM|3D$XFT?1 z<(^x$tCTfa_LL9-63V8^Fkpl#gr*O>#2?^@R2|0ZMw6F6Q)7s zdtx2M6HPhtB3*iFO3G0-mcG>CLcV<=`8eh!BMcsULiP18qmO;f?nlBO46>7yk%MJ0 zK3+zTkI%(oB|1mUUT>2aWeB!$O$nPnKd8_h>_<)z+TPG+DK@&i^lzeYNy!|s6O z91tw=Um#Z=lX(M{Lhc74uzE(`)@R0a<1>)ef_(8#fd`7Hq6I+4Q3R$HmYuwDYXLp% z#32Tf7}t{Fkg+4Xh*$z>R>{Z=NH{dG8Tx8gXZ#>18A1181{jwW+<|{t#TYNn7m4`^ z&sw&3dwak5i_{fMX_iFhl;a{5%jow!v)}i^uNUF`c%f~gALxw0Qv(^RXADZKU$)-!HCkm(lB&djs^ z4W#C;Ko|#_V~R6eK>`DZjf3dP=MTydhZyLM!IKuoj@k}?pBx>dzz=V^)n>$cF|m@N zF5Zmob`rgyxP)a>W04z!rIJ)*5CDr%@zwxX zrD})GNCF8U#Y84fW`ZQDJ#YREj_{K`;irD^o1i|bUtYI;OC&&o#nSCi-A5u4 ziG5vr?REXuL@+fJSB#T*L#CUgP7XQ7eo$x$)z8{_@q#nTF)?~Vg`>w*q$tjUf?~bT zwWu>|GD^GSWS~4u5$%BK&N%+O4raFMbQn|mcE5XgfU>nfiIKhmoCZ#A-^yEoAH3h~ zuuzZG@{@n*tB+}*28<+)?XjH%|60dkGQ_FMn%QFJqrTr(AMGZghaL4?^}FspQ;*n} zz3x5N5B5*!M=#V(gAY4zVP^QW(QQ~JoOXbD(w2VRlk%CUJc~kNpH!mas#o&{(v!yO25amR4&Q zA7!1#rsGDOrMBQ6IQoNm1Lju;eyjqjd^^@`Jk4_U1yQgC$_xbc>YQf3zfAPG=b-Z2 z>!S1S3*#74>p~}C&M9=WOT!v-S!(|?p8fP(VU6iOf7l#7d!ttAfUPKKDp07^9B(*8@9NcfRa0#RBJLV0w z-%s#h{CyfAvdu{vh|JA^k6dR$dZmCL7%1EJrYYWAf^HmKk9;I6*LydRQIsR#ko0$1-aCNBbb(G^+I8cG%A%T@#9sYHj+B|~VfW%xW6*)ux( zSo~LluA-UiE)?_y9H)*WQAe9&$1)Rs*`h{2g!!l=0o&P4zOs8rR#+i`ZVv^J#UT^c zfW-w%71}is=r9q>V@%lP#E|qpE@mP3ksRU9sBK|S_d^t>ESPQdbB37TE(53FKg1<) ziYsOTT!(%A*22+$nM@0JIyFVO?#Z{#2nQEhMcmKHl}PhrUZ==Y7bD^?6=IT7uN5}D zZkdBql=6)-SvZ_B`qiQ(xjFTtK!0h#2;8Qho2lkLGD4O_u--%VM;S?qj}09FNOofD zP$gf?qU(j=jWxTubUp4Rf26QC)IYqb0_-g%-;8SA3!*Hrzf(fza+}G$rJj@y+C9O} z&>aqNhtc0x`bweXLlNt)U;(fZ@2FUYJ|$MYjWig9*ZPJs0SWVkEQ-x4bC(qvY21AC zGrZ{%yXSNpcd6>gFX)2N0iDR%uLQVKe60wS4R^FjfG82;Z~+g4+(#Hb7$R{+^?8vz zH%XIAgnF=}o)UGq=>(GtZ+cH+g~iuJx>$CsR!KCP<53h7RuJCM0i{JZN zNz2A1am2nbL@Q9Yj?@o(gV6|hJQy1!3NHc=M%6s4pVf~Kv4l_KxL#Q}_RmdnS~7Ng zdBNDp__Se^6>;6N9>!BpZbV0TuiT)T-E#ufg30+hU~EGxE_2~!EOD?nFAmgf8s<7e zP(d})Nk(rATTKUO>$Ae2qa?XdOVUVs%Dej7JBLg2LVe7v7#?DMn@^vjv2OF}f2@?@ z<|8>DpZ|hpM}eO4C|Ky$kcNkY>xaA;LfK`!TteTl`$28|*7NQHz#*9=yM zU=1*q87hy|2!15d;c6CorSDgKGLM2w4Z2Li{(bCFJHV=v zEBP774tH3>r#Jq_Z0o{zR3I8+a%D^QcI^)5=r47QR^oFvE_Zh}DLYAvI==%$yCq#M zCM#4J=D&S%ceeVMB8T5&M?Qz}8sc}^}G7Uu;meB{izLx0+|dIxf! zFedr~&3|c{-%FzY1JOSa{a=RYzmVVnK|sF0canyeejcF1{C*`8?XJn8ljTSCP8Lk91X`Q;vf_lUIG1p%Rb7t?AM~iRD~HR6(5wR zuDZ6%87wKA%DrdRm(?xyU|RzU<9vP`(-^@I$akf`CI6#1w6Z+#sptj6#!<`bYl~-S zrRV!gJ1$*-vR{{su)5YlpYvc!;TJONb?@c#jq@<)z-!6VFr`N_%A%52cv&RI^hz&e z#$mGp4zlCD-L0;%vk*7YdT(m<0Eg?(bGb9D{*3T5GQsvgw=!_+c# zi(@b^XEi1R6LKw6v{!;_z0m>)JOSmSSY{sDXiK>=q;2CLT#W+3VhL0XzN}HUX4PjB zuXmDar#ItO#WRzRE+;|KcPM5|RiCrVOG3*O%~#?`hvql7*93n}Mx${mWLVTE1CUUy z-K2OBYm$I~QO{|D%N}OjFDJtZT!3IFKw~gUU64mg9Trx?1QS@129*AQ)1rXbwPccq z<1k}id`~4|QorMX;)1RiKvqLja9pVm6w{OR6VtYxAM59OAuS4ET35c)A^=pZv29_$ z1)PSm9cL8XL3?49>Cqtx6l;M2HYTF&wXmA#@;D8LVT_l#DZ63^Y!_<2M3=?r?YUo+ zg?O*884eX)Vq95+;>s4cP`VGz?A^Ey7TEI9tigim>32jbaM<;L? zPKtP<23LtHR7>zQ0=L)!_>A`;XyVgzJ%F=xH&%X6KYVyUQc9fX0%;_G1c6$EXJr0tfFsS4ha?6MIe$3k5k=r zEEDVkWk3a{!lhbY9e7hX<{X8CmzcW!4Q!B9J!B3=bD^@O6xJn?pA0^nCniTo1@$Va zs1;f4h;vDEF6OP{gqNh4C?5Mo!i3x&Z!crNURgg_5=Hcf4_@+0|MQta8(+w;e*i?< zjQi-;&pN7N+@IA?@Ml_hmE*JEIDM|Nu5(m=BTJN>+Vm$i3;mg>M^jCQ5RQK<(s|g& zFSU;cWI2A=$Up5y;#%*4;Hq}?p0{#gs}DPQ?~#s_Drh$J3+(2@R^F@AaIw!Y4VDU6 z4=aA(E8Yq6mdSYiO^(fdkSq3%a_*mP zcb9sE9s8qk5-9T{8v-%=rSCc*JoC-*fQ1+3n&5A`{xBL}8{Jv6MI77*~=Altmw&0m* z13smFa$zXJ;tM~a{o9{8Jx5_qh)#l7O`y+Y=uQ1AGYp**D%f{4yO+6j-GLTTmV41cMp*z~<^AB3|1F0+_75m

()Xk!H7Dmnh2C4q3n`XV~P+sS-3L~8~mr=;2Q$$ZpWyhorhih zgKAtLcpP9A-iJN@3rFXD$vyre@zhcIa33s|U*PmJm(PO-4)E9J0AF;UzX%t|%7^>F z1@7Ibhf*HuX<RiFO#mFejSk&Ec#uhgFu&-ZkU$Ic*4Gxjt zTqL;#wGd*xdLOD&R&GqaAIb>g{sT#TaYeeG^n(+B z7(BSr|FD8+D{Ji5I|qT^-<{?6?M&~D9&B9y@X?pM6gP3Q2!-<@T>lH1sX@F~_>F%A zWAz^iK2_Jv^DrES(74879FD_Jfnc}AS@8F15cdKq$vIB?f+v^<*Ezhtmc-GFut2W` z!LXnDT!Eevyb=f4kwN4bd=U$Kl8CgXYC;N*ozx6Okj)80@Co)K*FR*KFhrqa7)39F zr|BB@mO0f9*9G;_s(Bb@-Y^Yl{0NB`##oN=5~tY@*0Ny8Xr%C)m`7~#+@KFaY2@Ut zuLR(9w|U(0wp5mw1{#yE*ZBKw^*us|Dnv^}#3Z|^S~affNw}LhAF5`X$?~l^Fn9{H z4VM7%=A_d(q0@{CkzD-U57Kz)7|T4j_^;}93oVC^XkJrnD`3`VbX#1;&v-Z|jE?EuIbj#v?} zIQB2YAy8=n1oeCd=R1jrVPLIPnDY7>Bb?&VkO3UMuN|}+XD7#<7S`vraYDziliX4; zOK1)3O7gf^MeN$SA=g#cwYdKw?1RcI?Q3*QlkK`jsi{oJ1i*OO-P?Et)5rzrm>xXa zG4mljU3?RzO@3wjrHAOqWB{nH?b2`IfP^tT3H#EdPfUZ6<_O9ch5|P$>?)C=00M7a zH|nppzQO+ADfSf-eGE;w&%X_l9Di;K=&lk&vEu-2$KtAk0RQkt#hL|v@>nqZzaFjKpucLN zr5uia3F5q0F7gtn%i4{Cu4kb0l~MpwK8&%?$_Udejl25X-crDTK3l&NwKq2))aKK$-w)!dcg%kq?XmQS1`waRP(9;R6u~NB{C+U-r%}#3ip|1~OVt#0m}H&1 zHi6>N#OD*4kS<$bFRU6)X>A7^HHu3*kp6#ZDY00g0nV@6D5y-_9-hK8`ewGzB^Uk` z2DG`!r4^v%-bnOupnT9-j}G@6Z8H`cK6*&Kr=zR5k2yTw<0EV#h~aimV$uq^=t$TD z&WGnmNPkmklUkWh^7Jf+v6@D>oqC=|t%lOkrGYTZriv=<-Q%XLIz^<=elJrB@UWac zb$-EyzW@CFnqCq2JpJq1qeV*UP<3?+*rM^C_wcoam_TEE4HJNw5Uj->4m&4YtZ zx7O}jpPNSwrzI?e(QTbrt?VCnJ1588`6td;ttRB_cJrWF>)3N?9W`3@TKBkJ_Do)P zS~~4C+Xt;qw*%kR(RRbXshxI@>r0>2_iIOQo7mLaBiiYaS#$WVU2EtSf7kqIwNO7k zJUM7~o8=uX8ybCyeUZ@{At+6kx{tZ-{T&w99wiep7AE*!lade|b!r#NLKD83l1rB> zY}9GH)o34|oHSj!TfBeH5#qSL?;n+p)_oH#{59a}{qm{NBJk~PUZ~aE$L(hQxXtef z!7EA)ig{4?1m*yzB`u^s(u)NHYN%|>B16FS~4=H0F`j=6d zJOF>h|>nmr*;H_U(Gq_(@7tTXPMPGY1F#S)0VS-^#mm)?2jwceZPR>OL)+tvqi@O zZY8+I)4&MV-NJpRs9S2`&5~(q$rt1f8YM{Ffzw~m05*6RCu zP=%*=Z1bSG*DW-Nk5+4qi1A~s+if16blb<=Ug6d>;_o&Em zWV4EoS8P>Z{L-BMydo{?i$O?Hf4)OIaG_YOz^B#P_?P43L;gMfwc2lO(U04(pWLaf zxnny2{7&uK(x%g}{l#i6yW%Q0>OQ+;dorX#i}G~Eo5s?Gv2sQN#p14kB|C=aH>GiIRSbPt`OyXnDnX93I1sP4`;2b=b7_!G26T zF$vNz=^us>Xe?C9A-l_#%=b3;_;a?U)qoX2Nw2M^Vjj^n43Pcm!!Ne(JX$>L;ABA5e5s(}RfMW4$~=uq8T$dK6D+2SW>xkaVVzcr!tte^HWya%Dt3Rm zDHD(;N*^5@>TuYoWdYOL%PmEZQ zESF1Ee6Yj?b0g1f9-WyhLw{K12*8ivIMMwoZK#hcw(_oZa9}s1Ki_a}emECb#9fa1 zxjRDB)Jo^tZKX@ZgrS`JwnS$YQU`7gQ(BP$on8}PrF=rFAeBaQJoB|6K;laMP!(*TQ#Bi^kvC3?NPin)y;P7 zMyj6lG*-PH>(eYPalLq&6)-p-uMO?UmiS^C6#q)Q>yYgbJIj+))v9(T{`SMc$yrNt z6+h3@@O+vFu8XItw@4MPAF0ad*%T}_0{Kogx zF@zyy$yoO{kg^=e9bxPgy`HCjoQ;8LL3>H+J=>vHt3uY35}Llr`sGqyYk;;oW}}PF zKE3H)k5tB79~b(BXYO&Q4u2a%=o2f@d+c8Xu3y~4I_B24P#Ez#jfWOMIckXr9HJqA zyhZ<+aylkDJRBAat|zqIQZfJ*FsF^+828MR5cjJ05xV05R{Dl3c~i+094!4>hYCa- z+3e?P5^@iUrCoZ!h+wXfW7aYY0zb-IFQa~zC zc+X))k2vhMtj#s6%>$sQy*8*(5?ame7N1hvYMf8Lzj@ep7pf6#5F6$$ichHvGjQqT zkn54Pfezs-J%nOhgx-%Qb2fGB2ro7}7cUNEiy})p$-0622*B<+VWifKg4 zCfNHi9KB=$!(p2Dm4-nr>(`!0CI$#p6x>42>_ndpPWo^y{nJd&EF}c=u&R`GFn!nq z?qa?s(pPmL%5FHxDsPB=!wo}}4~H4rHGAj$rZ&ZZ59Ro%yz!@UO3XuYj!-!z9U-~O;5#?%LSlT+hIg%>Cb}!<}x_Z;*?`@9>AUuJAsRcs%-Uut8&BuENefQV2*<) zyn~6Ab8qCD!Mi>1>AKO89P09O{6O}&std1%TRI{Z2syX$I=DaWP%ckWVEmd=Gn8=Y zIjg4jY+GpUeJpT)erPqeXghD`wQ+ZZggPJ~5SjWLBx8)BoAr`g zRuT8y_DMbkvl*3}$BV45C&e6~5lO{RDN&&F^)3n-QPZ6BgH*nX3T(<|K>cIBq_G*0 ziggcW0-StD4d^CG!CXP20n%?AA02$uLXCRB>u;$^CHvs|y4>|{Q(_Ej!56_SLvfKV zY!Edm4F$s&VO~=P`hi| zn%mN{262J)i+sHBr9LJwat+3C97cW$YCy~^d`0*1!cAJ_<8`;E8HxfXiwQKNF4{uU z9bMbZ%=#)SGz+4DD<-CNli;s=z@H+sDHs<@_8R%ANDW8Hm3O7|Mc*4H2@qsBCW(kc zI$*_T7H@@{Jm6s0%oY)l6Bu@xdY55v#e7dXs%4lh8?r`;J!F*r8TK$9)XB_L!J@vp z7jeQWmU&$aTVkfeS>fgAVbHX`w#5!*1e`cQU2f_}(xjy`GYv`f$}$SVG(%O+a|HWh zHUY$?ULXd?;4*|mRwC>WVdOqjG7I>U2U+oey`r7+$I2n4h!+eHASZi+$RC2xDMHu} z`FYZxz0o4s4|!@n;KvaxN;r&vte}_zghv|H51aW&C{(}qhB6(?zHwVP4E&h#m7N#i zqwW~~=0Q1Qq@+n~CQl}nB?Ioe-6?h{$AuL3rX{}Q{lakd?|USpRo-k}Z*7;o_ofb% zjHI(}&KDl~^a2^VJ|sjn>ZBCf;aT5#E|!aPmD%i+&ZeUe{%XeFEc7m@5ou}zvp4^-)Y#dZaM5xl7^pY3{#@Jt3$_EK6 z)UvZ2b9n$+Nfy8r*~<8^tix7b*@zoDe@4k1>SiKUL~(y7F`ENzmHumxCyo*)##pCm zXq8#o4^>HMExcL;z;_cTEm(I~c^U*=VeEh6z(p0K_<1+c-7ld%9MH`-%_$NEzxEql zGsWQVTd)cKxvsfQx3k!x*bOqX=;(3w1h%^mrwLVgA{RKAR>QOx!a6>SPYhsAAjcwAWsVhh8bqzWw2i0Gnjjpn>TqbRu|5!a3MehX5Pd-B&llRKBkPTee21- zCmapBM#SKY`>{@=9mtjiW}9FUt^&GRdU)aXD9LUb_wCu*jGdS>YxTyHW$UTRUOe&@ zHVb}r3N4B`XWdJX&0mFCVD~{k`V^!IBPEe_$(TGPK7O~kcie7rfSBc=QToKzeG%BL zSG%jUX`vlISFk3OGT~9#48J zk~^vku2C5Rsp4qhRvL8>MeIq%)2K3*Nq6Z3;kfb*oh%)&ch0%bK%LoyV2Vh&XRNBO zljjP*JZZM!Kpr-Wzt{bXt(aR7qZq8Bm?QC!uPZAHbcn_Zv2hZ^fN$CX{uggfy*b=i z^&Z5nKd9ng)|HzL%Hrp5D#r<(w2nH>cDLL7`8MW)6p@jZSPQzyy|oz$bcjGOq=a!; zNLVGmcBQg)$=6$_J7L{hASZmT(u-@r_s_~}uyczwNCSik>zkN^Kj;#0*cbWpS6YK| zYemhGN*s&iD)atAv)nsAXsk5JR|_VoZj}|MiQBmDn1i#*ytlVX zC($y}<7*=61jIUj;eAlP5=RLNW%oS4qsH+n^V_-A{6H+Yk^otKqha_0UTDAF+(1ZP zX>QLyV{UXuf9a_mo*r~too@34cWu?#y(*ub3ZFqhQ=SQhHEw{GGI0eEio?@##}}RG zL9NrpdA5%3GSls?Eg zGXEh*y@})A`(?tqE6Y!-9nG!9f`c9VcpiMV2nFK0(Yb*sbBqUBeW*7v1gQ&GKlnn6 z#e&vqC;j$|rHnkEC2M^lnL{TNu1G26v#-TgNR*Z}wW-PxI(_Bj9&ixP@39u*tg+Su z11~$>T9;xn%bu@DBn#Gwb$kvevblx|z*!#lim}l4INc}cOtJdIi&Vp${WhFvep$P< z-A?!Tq*GW`^>{^wytVN1L7a3at68p8Q;cUjo&B-6ziyRDHk6VR^-8EARK} z(iNLeRkj}5=S8E}9*OgSVev#714#;*2YSjL-NcC0{f`sUX%2;lsVY@s7&PEfu+fPDAk#tlL>Glk7|DHv|+?tKa1yE}bU% z#qsi-GuLQCJ4JctqVZYH48k-c&#gpGYaI|>eva-}8oZ4c#4yFX!AU`M{2%D(%l+O3 zuexfQA1O$ElLKbu7Q!jPBxcG{E^AumR*Zi6I+Mm#=uD4GXTtoFNf1+RlTIBl6Lf_G zXcS+Do;l08><8@2NCOV6=J!kAtlInbu#$g zU1}|~Kou?*EDKcv@e4UbO%O~>ppx^29j0{CniGWEy{TzBQmS^Vz&FFf_VAyjD{KXV zVbTEC#UMwO_7=0YDrm3tHVbUHIh1#32V~rLJlIMUy;5-AqTKRAI+6_1dVxKUkH3BS z>WN2gStLF;SmiOsKXA#FSrj~36s>0=2$V+uX`tpC(FqJHfddgdhXtT=JjkwUcK190 zr6@!kJsGKTYdRnX)a2uZD>4#eEkQ4E`m(A|9Y$XH;BAwObCkwlGYO0~1yFsP3AW37tmRp4xI1Yb2wRqX|Osb&N5ho)c|nHpbbi44K$!SF)&GXkSqlS z3tu>%DlfrL?TAzpXfhWOyL|0$O=>jen_9ED*P;W-Wa|`y^Q}Rn*lsdrK{;TYd6d)& zC=Nuwio7Y_sc{iHM(t~)ZN^GbqR>F{YjBphgI zbSR~R(4D7v1}D@n+N9Us@*stEH*BTUiNEgM;NdQ5WX?gn?k#tumVa*?k?V`%Yb;&K z9_RwESfQDPKBdw*JI*1emo_r-P==z;5e)Rs$H%UIu?0kxKKz?IRnZp{Q$ z%)7-gbR?CGu*mdEQvjH&EEEJ7k_9VS`UDDKfknyXiAKG(TS9%UEHW}eLIRqnrSIu_ zhZM7h155@33O6Gpe;m*VQ{R0`e~ZW&b>j$cFFlmg&@ynM1r)LziD;qhYT6a)^~Ls1 zQF=8PCjy3&ne^VZLVH%9(%{aEmrt}MAWAaz>#7iByizTaTZ_536>%jb@it;^)jLHg zGM~nv^^uJDhvm^-%(v}%S4m98vq6;%zD&`+u$m?Tsm z)g;5um6z#r;m%$Z(t$RqotD)?$|Ww$cU_JpJfD<&D-=bvQ<*lM2Uh;ONI^Gd8Fi0O zRAUx*&`)i-O7p}ZrVvg=*ZnY~&tt!rQppxVF&S1FzJOouuQQ$$<LDqyK z#6DCPOh$Kkz%MdeF(wE>0sp+jl zYkn%UZpceewuEXq&%AeiZB-z(^*j3h^=qypa)_(krVcbr5P=JFl9M&e(uy!au8hp{ zr)|}|C~LpnhWdW){{@qyc&}FqQeR9mf=%VKwYHE%cps7V3@y0QXxZwZNyurzMR6;e z(Y@qzeDYpS*lBc-WTHY+!immOg=4SoCX5hX<4|HotJ?wuJ|e=XbTJ?K@+Ei zb%9l>3GK;2ZL(G7Lvp5Ol{f5Fr3-=jz?La?i(vbJ6Qf(|GVmTF8@-*uhGyJp9wBrW zNTfwMweYodB|Ry1d~kg%j*QY_ya^>fO(Lvrcb*3Rh14td%0ZErq>(BnkG-wNF3BBD zi|*{-Up0-?z>wVTAcMM*CX*B)r}6GR4`W}YVp;^T-`aBx1)k>`N{W~=mOH}W(2#qK zs~;*%6uHB%&}pOrQEZPEpC^)FME)IHTl%{st#)m2K_ir>xswJ}NWoU9h$?F+b6sm+ zVq%JEtS~JZf~4wcRwF#?KG^o+su~4cG%dEFiC&vMrIw@>g2zdvDyPzTHpBQbWOJLr zBSm*VSHk13s$MNthDL1bikz1@SJa~b0W{YKlsPGRT2h5x;R8ucOvJP66We1xr~unk zimO!VGqB7HaKm8t{S1NFVA%=a#)1XKF73hN+XQok33Ui9a|J`rrkGiY!@p2&n5$6| zS#+qUPSyt9H)E<&`@c-#3%F7cx`6Zto1S^y5p-5YVQiquegQk7u zIA0X86&3(NxhlRBL3K;P+~GzhsM9*O3I{7MP?1^20=y%7oe7*3;co@fN%q-XcvQ)d zEL9gsAXLjzz@_gea$4(%9h>90#ky68wP{w#g*$B}kq*b_Vhl?KXus zh#ptw@Qas`++vijTUYs+w_s2V`iKNU%ulDRXy75iSfD)0VL@Su(*sblLA;~}90<^b z0Cpwt9;>Rbr>eKVxIm@~_N{OOn+Ou&8Ko^@6qi57E73&e-!`H_6BJy!HUqYwm)M^S zK(qopK&0_pv}hdPZw}+o)hHVS7lZEi7YfyyaQYsju;Mw%mq<{z9a-=8P$eytPX@sH zrV|TwSLLUvddmZ|a_cI`ux~YMVI5n*6bq0fRzD%dl8h^$-w5tKU*cNap)%v*9k(os zVG=u&G5`|_6^HrOc>tI6%91Wy8Hg<#)ZDzpy6mvv6$&Di7-1C(xk5W&^nCFm zSMBQGg^OrOVL12dq3R$)?c}}Cn5ivY<6c`t^c~et{o#;`XhX|dUL`sOaU0#=F!B$< zIfF*^`v?XLy#PP7uwRQp7Xv{9g@QmLt}<#AG3x`q(J2^_llw$$v+g*H@d#eT4U!`p zGL(9XGm%uF1wg4ws^l#+RV^xsSMD%#8x{FB^M*l;xx{v~7j4Bw5KJ=5RuwW{ie_O# zSL|!JLQ@x)B@z?U?Qw%|Rrkmu@h8>dl$yq;CW4olls}+45ldG=*HPt(f^tN;To~fZ zIG@1#F2h_aPt*nCwGt4qRuUwpkk$fSv6txW*o7tvcEL;vl29mzh)H35lR&i^HX2TZ zNAlMeq3&=En*hNWBzQdhnx^MWGKpI#LaG0DI5-oHf^ovT6IER}3i0qhUXH(_`<`@+C1Pk4uD6Yu5ShH~XCA9$2U)*>Sr(rL)mhqM%^8coA{A*f8 z6915?n^wvoS9M?1=GXc`3!gWJXLHcr zB+p{lBIo|ANYDN~7?QuB$%E1} zBr8^dAd0mpiCH^P(jG<3jH=!})oX!iI@;x}=eo0Ct}I$^u;j6Lo?Mf9t9pOa=+<^u z82+<`ct?mug(5D9>v%;&v%l#yj+!61pzN)uvIssGK`RtIInG2{{!M4&CJ5bTHZK-! zjAgo7yA5`i5kxIniythMwOA9o+xn~+6=;cm2d)!TJzFX~8&UN0MP}W+fiWqI@hO1M zFVzaLIx(kuI#V-G7fwzAF#5KHKt*~=hEK8sIkSS#n#ICtEOk;_*DK8C26a>1c5!hU zxS0l_GnX=yx{R_32A4WFpqz>#zT`lZyWDS3)%2N|SD$XF0ve!>@^5alVy2!J>V!P= zQ8*k$m`Wg6t#ga0YJ*TzjwXbMh^~i-E<2(N5r(K##~>*=i4W0SpBK$_>zj|#W?RC9 z(7`+gn_R@cU z*c|Ox=onXt$M=$CSx+aHRXn6$i1;6?90dhkjV8L1%P?E_+HZGj^!3jtht7bW(SY#l z${YMQ4Ca{&)j>by5pj+6jM2-YDM)6$nFelKaLM@5WaNX0f&bBS_I)h(hFjg2(7d4tq&v{U}Di~&qCPRM$ihX_+ z1Uz|8>0o#-IFuBtkp_N-6?U9yH}yhNk#O90m@_%fleCW(5v1xqEdl;LOfkY-eLBbe zpw%H70v3q-MNf>4xtBzkd(YL~1R@Cog9s~;YdA@12L3fIF;0)%eb~)l8bvc229H!c zfoyet@lRed@nL0j(!l?;x3}(XZSnt}?fuWrggd&@FHtBrNE_cz0xo8*YJsEA4!yyJ z+GM{iBUj{?d{q|gIZKPZ}UC_dg=4goAT=;DxChqbrOPP6-=)#&cqx6#~}w}XOO z)c$@Gb2S%rz~7do(Yy5X_OylBi8(G1Qcg}ac6j}iYk~<8$dByX#EUpqQ8BD2ya>FL zqqmIZHxA&G&ep^>k=wikuUq2}!YAUBbx{+uX~^=H8ku5;Qor1nH5ujkB9tYfYZ27!FRiz#s<5zqY(IGR$xvxGeusfnY%&8SQq#U=<&GY{p{6&o%k=x9 z=`a<|kH-~jA1TTQiB;^;um-^xR!nF|j*6r?*A@B#B}i!;6fRCk4HIRAxr&To5){0B z3fZ;e7tDy(iE*bXEEL+x^OP#1haxWMyNGAPUl(oC{cwy4)a1BEfG}O-QZ_^<9vgH? zPUT|W@2h6@)h@fjv&7Uf<5{zRh<)=S(J&Lj)u)yw9NK4HLwcc1F<~8JO1p`bk|;U| zlhP?yk`(RpC}G@J*tDFp#oet?vVdF*cq@37&8I{PPd6(Bu_UpQC~-+58#d<4K$t=R%|Y-%U1%xsHXtL&+Vq4F)o(Tzk1n4F1epNhhCBB;0!xWm`V#mnun>xnwC zr;=Nczd&HJ9C~Hh4{Tg0b8i}=bNQRYdR+E~9&`+yR(DK^Tnvn_@&>sdi^S6AF#`gv z7ZL}}rPQNw**L(G3AavLHjO#4krpB3s6!HD1uBI}AQRYbiNw%$85nZ0*~}{L4$Lu6 zlbMR=yN$y)Q_Y>l!4=FmzxY7SdQY8i9zP+=iyf1BizY!%ISc!hHx#o}eEe9?uM?bAA(nXtmk&Ll%$RC^t~63;ZqgbLXeHD~k-HwjSzbam_azByi0& zj^S(rX=(rkKCy5Jzn++OzNRCLiw`$iN|J*O)e18JF@Z_e?%in{&}{sj((jdE?`6L7*ZxjCbz$ zE{16WijoM0KWySJ=fPn`N;mKopcPC?79MrTGW@#^CdBu#+$GkIxOi|&c zp`;|Ba!et^)bCGyRq~6mEUZyr6f2=4DhNsrtuGxYYAm50<(yIULjhp7(dyK851MBu z?PCNOI6kUr7#Rv=E+x}OFu~Ay7^b08^UMrE;C>BXELa^K(aQYF*#{%ek$%I$`oT5r z@lXRP3Ukj0Vn8q>f|+LVnnq)wcjDZVDoNUymDeaB;ka433yErCvqgeqR3&(8Y?j!Z zd&A+Y7PQ2NL(E`7L|;mYQ8i3ZHT9mNAp8Vh>BuX8i}LTeSohzC`SH%|^~^=7AeaJvSf_ja?^I6gY~DDC55+UPNxYe0VkzfWoG_0ul>=lJ9! z{`aKT={D&BR=&bN5KR}`t=Ep!pUuOQ?nnHvd%CyRY+I{z&^&tE-IrnPwc4GopkUyX zt=ZR)Pmj9tnUGXJ%1rnJ!|8_EA;$^#)xx!#_3mT*m-iHCSFa~76)xvf(qq=?(t8S5 z6n)?PS>7nF1-g@EEqbY1N!66ql4+=O+lIKua++{APoa-s8=Q5eaZ0Gm<=^ACt)oWs zXH8A|G4I6uPdfGX@xj6T`_^+{ywh>alh^O?_w`!4*?s&(=z)m^|Ax^ChRWQ8DZ9;k zs&rNQExcDcsq(kA8@T)Ngu2@YVM;$_S{a3X9_Jpchd!?qeYWnYXU(6zr-R&iO_px) zi*Gfwo1#$u^tf3+J8167N4#a=0pZ~}Pfk0{Js5cFXz!R86nG2|;JAHQl&| za@YBLh^{EHywX*U?2a!0>%u^EztcwZtkFcE)LOUMINNL1x~J`C$ATV|%SAKQkwNTC z6s!?*VFrqUdkQw^Jd7{}*h+yh5Vd2^H)+7mg;W}EumBbMUGrn-^r%%oZkRkp>ltr6 zLZY35?hfs)pzld);#?2zGZ%n+m9~*nAk6!2%R&s-Pl)8sL&6AOam0mI?I%uVNN--m2B;qr%SgNqdLDb>aAi|}D$KE3Hz3R*^fdxf8GbJ8Vkq`b&`A;Y$<5~52bw>i7YB8%itj1?b z>&QyT548gkqx-rVitrJebTr<&>DKszj3#66Q8^Ok{4VPE_=vI9%X_sh?nBE<0SD+6 zktLlE?XXdWOvIrgTI9})m%LnM_GSdOR%+7`D2!=GX*jzxy=N7|zc$)Oj4xWc(D}^l zFDq57V6cSo;kez{1tI<&Xmxe3qYg5<-WrfiS3@q zn(|R=74@!X{yaJ%x#f_{4@)omwWG#?YM(#IHy|8#utOB`xoqQMT=zH0!O}0c&Od zeA?{5LUdaHqNcd}?(I>detdAOCTJc|x2TsLf+(o}K0Z~WZXGu5AF7Y$+v5`yZae0C zd7x(PeC>XBa(Yzno>H+^H8t}@sfhchhr9B(uCF0$<$P|mI-rhz+=Z>xTh@jjHJa~R z^*Pbi@UWb`=Ikx;@gM+$3i7#<3|Ds1Fg%p)us5>nG-M1iqDqNyF13FVFo-h(l4jy~ z;#iIx)HONlg3{x24%H-0dT=_Ebe+Kv1LwS=xf~jh0ul@meGVcvJE{9vEy5gT{VOs7 z0k;kY15igxct@LA=bl{bl{am5mCKVk1B-2SlIE}24yo9%@oX=Mt39iqoHcgqT!CBu zraP}~tSUQO+b@}ii%}IWg>S3da|y6`U8q!50^{(oHSckQQ-D!w@akF`>IC@{OzsU- zeGYxem}1@ZdlFtS%ig+X*!fAZQFHL93+(JD;+@pqHm#yO{D8xe7gqEEt?ZaBZ?0FFfP%|ZdziOWSh7SIQl5KrttGLFx}c9 zl`b_msFD@c#L%aLnUNfg3rTS0nM>p1L&d1D$pj;crn!kh!$@pCXB4+8MQupp&_~rT zP@`=Fwfb=;F;@;sFVF$JazMX${6uFBDFhE0s{mlRi&jTdDvn2FX708S#OV|Tb6zZ< zc>DdnbuIEcDyEG>RPCC-Fy5zDm8U0Gehod)XL3{eQdh^!CY5v=7ghzM0w#I33GKfP z;_5`d&R@)TL$7P!rs~APH0Kf!7xo+smDYV=>d9~#SaVU}U2{XwJo#h>!VL%w)fdRT z&~=$=X4p?u+z1Qieh>8t91s6$T{E{4oqyCX7LP?^-GD5=F%C&-x$+Cc*+!`y_?qr zCQ4DDxJDRCAlY|(2*h|~rx3UWgX zoJ1UN<(x+VLaq``GLasdtQ52oTz9CJ+AheNR;4svn%*eMsM;Jh40|0V$%TsML>`oH zgvI$v%eZKH7*hwby@sU2CCBe)PDkXchH3OZ` ziNqlxXt55EQkNfJV%D0dLVL^RbUxGK&zfcMJN|IgZoX~)T)as@F{0cs*!z4O!K451 z@Xw$4pXz3H^M5??uQ@#L%k;6u|1A3N*4DFU=5Ktyz5V>f_J8oMe~Sf}Vt4^`f8Ue* zll-&utv5zS`s4P?S1-3;Y;V1KRekZ|`OEK~KOF3Tgn$0oNXS{*+t{gYKd)|Y_LJVG z{=)p#NUmZ`u&N^KU+rkTeEyvN`|ZmYd_;DhtE2K_3l6(;{&$|ecnRl!>$g1rlTo;I zO7PlX@Yg&4Km4cbair`pKUTJ@Tb2I=m-~Ng9M>_#$HSfWPEL0ZT6M3ovAOx-S$%V} z(QSA??{^OmJb2&hVosL;>~3y0j~IemC97RsT~)81QJPw}y?Kr8ZDRxS=SFV*y4uhC z73iHhg>l8%k0s4)fA`&Y{A>;)V2VO>huL>n2XuE4`hQ+b#x@G#F)=hi5qDz#s|1=5_X z;tvEgaX!S5-}J}IS9|nNg;I^+BU5+9!6Gv+%eS1O3)Hl=^-nN?Ad0eyk7kn}D_i_| z;!~;}eLkmjXZ+J(Za8>veFr5W9D^#J_GB+wy`(ycho+Th6-f*JvGVe{9tr*ls?CoT z%Nhp@tJh1GqrbRYWn@P6@R}H4h3(WoR%rIGuSQ`We2>etfr+OnN!PDqOly4e!yv&x z#_$uo{i5Zk8gNqPX+=@E=v&vSyT6rt1Sv{}3akG0fIkd)Z zh-X)SdbYi_UHudyjL9Q0mEx5D7N2L6@A=T))_1143Pu{)4xkJJYnY zGJ(D>(4DB0J<%kroXysI1D>T!8N;XI1g*_zczzUI2fe94_o%Gf(9YiuHRj?E(@2ly zhbVk=H!_5ONg^ce%H!>qTU+m*kOM&FAlOOYKWsuzpVceTD*Vgs^?7-(M8j-gmyk~^ z`Z>Y-iAL2X*=(uz6pN+(!pD{CSS6qOBteMoPZ)vv=^rGh5h663(iX|}0E zHPJMCw~%5qVnAQrO=fE?icS;;xnp6ks)qKHD-1_im#~B4X!V}ZVREF`${XWwgMTb? zL&ys~Dn@w7uzRwyRdw&yIls9ZYKGuVhDn0J1Y^t|NOiSh6YyI&tfrHBH?H{a)KFDW zVsYZ!@P3H?+?fn&#GjrN5zR zK7h6U;Gh2tIHG9>T`USbJG!Y1S+$|Eq&$&bEV%UIJ}Tvf#C+{`%f|4VCT< zv>CkiUTyu8`R+fP#`}eques^h-uC1gG{`9IdtYtu;s3c!izVZ=w*~J#pIjFk|6!A+ z^1@5mqexj(mGrq8w?4ZL;`#=z$Kx%KlCxNtEt%sUt*Ssqy5)Z%^`TzQARcVQg) zGwYj99!#(RV7uzos$L@q&x2@5-}`Wrc+K8Lq38F0mOIoV^n*| z7?C3A!yynvl5%AI!ZCgHW9Zn&!;sp$TASj8PW)+PJ^Tp~O1(zt7f7Hs8vA{3*AH_) z8vDx@8yiFu&{dN3oi)9NCEfLbl#)w(S^Z(`r{4ar|Mi#1ce<>PQbeeLZ9YCvgWf1# z(kYROpLs{Y^diBqd3%LxeSZuKkYhNcy(5=IbK|j1b9+Gw3>pvI35+yfHqoD8WDShY zE*zj~=DkhBJi}-m{YBRwg{k)rvoid-W&Icb%D)PibamiQ2`Ui|T6czdY@e()K2WTd zx10LG)NVQ(MZwIg`(s$W$ll|(ewxA>c^!~qdKb&iO%h@9LZ>$xhtA0!9@^?V!{zWnvEa|T^{`J44A#kF)pXMW*6V)k%D)T?SZ-XG3A9-o?pPVZQ*6f!o6F9Duj^*&6~PvNw12JuI=2;?F?ZN z{5T4U78^cjK7MG=8diy121CT-8ZVvP6r`C((sy@+4g{XTYy>+zbN0ACn)>m^FSsb3 zQQ-Uv?tYL&d?dSN1cdCwCw$)yhAzjU!!Bmfu)bs5VF?Mzt(`fY|Kwjx&%O8Qum2@p zChwp(Y&Qb_>g^|~L!Y}r3fIfKG?+RpqYGD&k6dx;TwaHW%zOX??E6cv-H+3Y5U!X6 zB(V!WbhfC6QK#LhzCn4j(_rXz#$i61yA*-n;~g5Qag_FV2v-v5nQ+;4M{tgvv(Uf` z2E*M)X%h6E>6`?87~@-*V;aC{i+y9wXSm5QjDHys!_J)qpr_gs+6}WSe-Z#a)HC2h!)pei9G8L+5~<_#i=l3KKXJ7eN{=>-i`g!r9yRLE^u1+TI5`8o^dU z_l+QPHb7|nWE%bA|5D&$`6z@vZ^NFi%AQfP3=sWYF54Iemf*ztK8o}Xe{KXZaHbB( z5WX!Tyz>!)8Mg_9m~2k+N+u%^%l|wgvT1_wTK6Y`Gc^=gJr=*5TNhc@A+R*(@ewd?_yx+S<2(zN-Tm!k1}o!;&nJi( zys;m|Ah8@0Pn*BjK#%FUeVUB~B`wT9E#sAwGz7UFm3e#Rs@|!)!d((X;TE!YZ4XsA z@1s8)CFjffxC}uS8BY6-l=2>K7wLXTI&P3#1cAtW%mx4h07AR`ua5K0tP(Ik7M)@#xZmzv3A=2Ch70y}E zeZLQUpzSZC4-mIg?__|S-63{h+3x~Zih#Qrr8_5 z+`TtOK%KA~_L*q;AVju7i?y$j_OJgo1k!kq^(gW@SbBqj`ae#*dXoP7f7uE{ggp5q z!?P4S@)aE?@2AAQ?O@|We*}Y@#Xu?9(sNDcw4DIE#k9FHzMc+p(ec$^1!m57G{|wu zrSHlmz;sw{IUx<$6dz}EWadviO_j`6~uEw?*(?-D;!;3TIA+FF!M0; zBb@p&9T(fW0C669TNFCVGpukh8B<&B#F56k$vJLTGag?0F3X>OnvTOyK9JozWEUV5 zEh7b)AF6j__wG3H(T)zs3232cn{vz;aewCRPH&K!-r}|9wZnpiLiPU^)X*?-3^I7Y z_Wg7+Z_()F=_f2Ob+K$!-+`))f-DHkmvcmP2;#hB5<*EI=<;Kb*vsEc!yaPTj>9ZU zu9maF0PdQ%u-U2aN|rx?B%K2NwH>0YrLfvwEz5$)xf1ZUJ;4;aU@5_bAWR|(_4}aj zUWlFG+-K9#2@t!hkI~L~wR94?209;Pq{zPnnuS?jW=mI9>j%IJ?Bn2{hp^hPRB4#l zn>Yp%EXV?I`*`*6GWC~99i3RMw~z^1l%oif@_mO$Ln^xlx@rDtggLaaYai+daC*Gj zbO@U7Y`I|tZ^3<70>@Nh))NQ^^wXd>isuCl1d6$E2?{tKTvCVAC|W9Ai8Khe-W6iS zL~h&442V=ew}=^v`^c(Y*|wGCco}y-VcKT4Y%hNfG1D*}P3_~|jDfHcubck*??Y!W z-K5`VDakePew+dW0-BwG8nC1@&eY52bYM_E4yHZdF~+}-{Qmp)u`Rlw+%ppjUD8W$ zG@Ss$gF|SasVVBaehSM0)E~fbLE-U(PrkdP7cglI2fYm9qQRXR$#A%gen9@-Ap1fq z4bMppv=J;#{X0bT|i?#ku6a0x9H>zGoHGnbJ<>-jHea*7gkCZz5r`B89v zp7iGye+t)Wj^6I&7G}(>eg_MfxyFLz6LjYCXEXzYCjLwCDYQK$%_%4u-mb;{%cUSK zweR{MHO6t7M2{BVz%R3kMInmK93co@7eVprc^CF=o-+1-9w$q!1858FU_j_qiXKr% zl0X{9%W3}B!)_dFZ8HaM4#Mo)FinsvE%h*A5uD=fhD$m_P4L2xW{%ebt-G!mGxJ*U zMYfzUXf=TM4}-)We?5tk@i}VKz&s=OwmS+EXZmR$-DXp~ahJ^p^!RK9t9Ss~1+et6 za9rE|74(ypNHECi9g+}^)9Ebf?J^t}jc>qA8^Jg!^wJIE1ZEk=7yi^C(qI2A{q_GH zqoHho%d@1f(>}1;x%-Rk$=)8^l&-3X#)wa7!0v_r{eROkffmg6LZjp_G`GG*$Dym_ zp-Fz~N+tco@q~a9^2t9B@)3FqfR}zU3e^G$_97@XxE&(w4r&Iyy=dl~>u`*u4dP)^ zVucLJY9!l`@0dOd&qH5$4;B}MIVH<||HrH6|T^oJxG z0Db$;5oNi9j9+1|;K}xLuQ9zC&G}*JpoGghYzNmE65zTHvJ5@Zj?r%yt}?ttQxN-{ zGx8SB8FCt9UM=mXPnwA%xc>TYBx#|m7(~Ng635H)DTqUdtuu3Ohv&=nT=GdCg}?rv z(Y%fO#EL7;);OFdlhF!|BYGUi=H-X7G0E*kFE2fMM-cfkBU!Yi+Fz5qd^JUWC*#NXf zn*of2p^s$b_(+3caF96q0^D%R9MavN_KK8BVHvJKCOnJ?JhwgN1K<+ZHws=jaWv|> zrqt&7c~Is{41+9iL>A)2hf8{iFUCGJepQqdV94DJUD)o`bPxpIhcFr^j`;NpPzcQW zmu2o#OfGY*xg_2LU%4FmuA0`uy-uS3`E1_P2`n=nEnJR&Dj5hssP*s!(adX z(|nZ1eh`9G2irJwnF915L^pW9!VBN4<$37Zkds6I)8TwaAOX7O3BHBi{rcbHrOH(J z-~W$a{~xal(n?SeV$lHwjAa_<1qA@NE6=7E^FrTG)1U_eX0kNmm!S1+}DqgFR`IMD!3WE!~#nPai`K|lgMD~)gDeVqhW zDswKRMhIg7?i0kHoO6v%G1RT9bWn;`RF*dm{n_%k1@r;{!yOiE2U!40Mh^Gjcu_2k zP8fvCFVBD%1d`H+hTzT0n+`tj;B&8|a{V0Zu!wuR>97Aaolb7>jRzP>0++C}Fh5PP zERfgm;m)&3APLh!kn{tG~(dV6nwkV<5^}>i_!x{gM=2VdT5%JNDhTQ>r-l?$>{h!(mpKpm-uf z;Lx!jEsZMBRsm=z{`(YeNBe>ZVr0Pketh9D1-Sp(el|uWbJ^;R{qrPEKro9P$@yX$ zdGFAh9^0nTMbW<|V75gye|0570{4`BhC)=V$%p;H%9EY*#&C`@>66ts$Tufxg4O)8 zO^l$X_;xOdyJ-c)w|Z2e%YOsL*hsX6N-u8Fjy+VMk2D+y^Rk40pn8BV&+2wrQ zM|ODf9E(^uG=l_40DRVG&h4Jhc-~ZbqX>j;r-AE0Y%3O;M}{MP)K=wIpKW``y&O+D z!pXj>Vn#i^!SB`jeNQ7nA0F0@8iZxu!RmOXf*#fkpgiBfKx3_9I0!~ea|yh)N2+|L zhjkRG9vYS@3R23Ojwx0;%ZuF~PdJ0bqxg01f>2z!oD{(_Qg(|Du+DI!@X@m!$z#Vd ziyXO)kGEg)WAs;NTpAEMB|ys_Rg6YtyTBP3CR+ERkQ%30aRuus-N4tH5a zBXH+zb9?*M3pfV?s_uP-pQ}Vc?l4-iIsvE^J*;v_!TKQ<9luI_a@FAS>%S2v8LK}N z8NkIb4DgQ$-X)lUaRnL$EC!WYaZ5_VGGyUpP+W#nf~iD!+Khtr74R@+)N9OiM6Vtu z3N2qM#dwIY?6!sw%8aZy2(RH~G^$T^GI!-GkV^-ZRoC`>I?OhAww~j9f(YS#g@1Ee zw%a>OQFwTrA&h|KM96l8)MH>(H8_7QGd-etL`t0_5Mm(90BuCGCYah>#^%&Wlqu6vb!Qdy@h ztl+*@?tz-0KXp!g8hvo}pMSR~l_deTdL!tSN=tm7mlT+%6?Tg0m_ zC&+pdcY~jE?_lbC2Pc6*^H$4`PoJhQJDjI}U()2T)FV8FgAp*YBW*P$x81T`9w?tm zOw-(ref8+kyE({v3Mh2~py@7v;R5)Nn_^+{MavDGSNK zRfJS3vx1qQv|C4AEG^h<9%22H({_j7u`1qEU23icn`vm0td|A>Oq#(r2wfVl*?2lW zM_}9{#bF7iv$w!#TCmJ?c-=>J_+PteQ2Qwf(cHI%-^*pr=(Qeba6KwgDT9>C@sp8H zz^=(e3jz4W0A%NE?GaWdp5hUr#M6mSac=PXd6MVJc&XxFt!hAvS|CZS^y(C4}WCVGkS4ru-?_K9}s~AHdCam0<_MzWEtz+w{$>o_nN%RCYuA7PXCjyt@%QfmMg z1QGf3e(#%aiVZd!t-V^kYY%He;$uD&J|4i>V9%;rWT;N#DrGh%MvS0T$J3*yUKR|; zO0fLQ%k||;_i}ytvh;FIQalan!l$?}!rF&xUxBO#{KrGCvZMhn-RJaD*ua+`2T>!T{9&ubR`_AyvKF1 z3QcgaEq^9uYH<`H4n6}N=ghuIOKA#Tq=?XbE+(aD_RM0PsH+4(Iv#CcA)u+FJ`VX8y~sh23I;dA=5f%Hju7ME&8;l*{S z0fCj-E>%NRofJ(HU;K{X@-)wOU>JDWNl}<$#gcW6)enLStfN#RF;z39R0G=;mJ~#( zdQ@hB<}7Le*NISsEVylioWJ&n3Z+~X%dKGX8f+jLBi36!|AJdA#A7Mt!o^kOces8K ziQ=7Ztqa24?rH0wfwGXUOeeKB1*A@@c~QBeg=^WMx)?hRUD?3-ty8_o6gBE|K^B7J zgQgp;PHp#~dDehtuqX*zIH(Get|cp_Lv(klM%}#h#+(YtFk9CY%~r2a@r{0gRS-&D z6k-|}NQfat7LoFY1)+j#ABzX9OKrGhG80mxsxVPFp~O)OCUKq16o>@@O$Aid>q=$? zErcxTVS$oIgqcFgpI)nT>@hs9WuNh>9tQlB3V(!sE^J^bbZ}L&&ld!?3xdG5BM6k} zzxQgdedXxDuNJGouS5gBg|T+$J5=jS)nL5Itx{mPn^!4a5|&ti>kOP?T@*$?TDOo* zK@4DUM26roVnLZT=Lq;suON%dfteE)us1@o*s51k<#v*SZe(_NR{SXz?G+Q@ihxqp>;UV%{s#+>e z%z#MZiX6&=LQ*e~F5UUs?RY=K4X)+y3DLgL4cvL%VHmJ;SXPutm zgX2AVvd(78ZtZPHJz+aGJZv;O^>&L)Hu4>M8A@$0z(@UQlxwBamG8m@H*gKb)1$N6 zY4^Ae!fCUPUDfw%M{k?Ri^wTKS7J!DP;(`|pt6cetrm}k-NtksNcB)M8`I^Il5$Ww zY$QdH_Wdyh{KFY-9U$gs`ucUP-zPdA!$(v&xq+1}vD@Fh(3WTXyX@@ZNTgqj#=}hC zPFP(AYej;ZGa^7q^?G%LOkNj62?+C606=O zhQm!{EFxbrEQQE&RF^2y^|Z+Xlcc7Kn1i%qIb+HU<@I*6)@>?7A#2#am^A!!$W4fY z3mpn@NX7_GL_$)mP`U^lscN@)a9nFN+nT25yTMw4GDP-n+1;%@Vuu=NR0)AeqX8ly zdy<}4&!70`A>8fZ{LI*0SG0ffSv)&BKC%s<8JVYedf1gUL8;umz!wNd{P6gFv-xwk zdDQ6WgJj%+zOCip(|(@}=^$d$S-G|ZeQ_7g>$nLjDLoKIS!&k5$ksiUpJB-RC>X(u z&A3lheUS@uc|q13MWnG_TYIDxAPzaRE>rKtUm|@u!{chUc}O^f>^q>$Tx+X zfZP*BJLYe!8Zx8BK>>&LrW2uZ%$EscKFgKYuPb+5xbLim`>u51^mw$H0&UVHpdjfW zSUgEd{X`t^XimTLPQKW&F0`Gp0pVhin@p@&KIc&&**1Rh5vwLklsBGFm+yIhgSCJ5 zJ^!0Ny!f8~jhuoX|C9Gm{0KBUZYTF~M>5n|pmAT``^x)Dek!jaQ)8YTa256QH1IFx zjERWvkN+Kz8+`6&JoIzeVr4-^{+46SxXi1No5t9Jl%#mGc0ur`vIL>eX$%ti>yT3uLz>^IzNLZH?2>Dfooon z^IbL>6I~E0_pI|%Xj4U)R3(<^QA5O93`8Ib+v2(sv69S6Y#W*W^;i6sSEGuRR9=vj za`Sv!zgtl))+(aC09nD`qKa9zK6$aiN18@Su{#o%Fs&$_IJ*uAjK(C1AP-UtY|4}l< zK$m+N+RIng^1WI#G+`P%I$6E1K|c7Jxdr=kz0{|wrxb?ltE0r%iz#W%n4uCJ<)do? zMMm2@B5@3NW$fD)W8c1ELP8I^>LrjXKEn7B{BKoQu8Jg4&p@5XE6Q~yQq*16-r|uj z7b;b4EY`^@56hDbV^9uY^{1#Le2q&Vq$JT1iv(UXAS3%7hqP_o)7z!@GzeM_^EeMi zK6;7S%hkW@33+7>$g4%SvCw_)PduV5BRv|UqPM-}ZGXG<9p>#t9@R=k7d3~}-1RQA zq`p_r7LBeKv2s<=-pQqBVu0}cvPB-_DW8cK1SKu5HNN%;jY;G?VcTzx*D(Ek8B&1T zT_<6ki&xu=Cc%Rw8Ic`tTEno*h;$BjJqkoO{so%NT{qt%x^GK~?pT&@U58R;y)=m; z5&q2(cJ4NWSFc{E5xgpwR?G;1%nK?HITb-Sy%3ub7rdqrFj_<&>)p@BwppFhjcc+K zGz~BagS)h=+_T;VGa3_`LS2@JjYLfGlR%e8Xv>;8Ez{-Qsh^#m zG-}=EnNiy5_qso2W}wM*#hpUK5EZ->F{T zaciGjl>dAYsiL zEF(Mdu6mx5U4+>!yc~lDERvF(vEy$VsXt`XI|#O17M=Sfc}I@@ z#4iaqcUVV1sk3ovch;f#QNb;7!>cPUAVS5B`kKl5>$OL)LU$F3%;oyx)q)*U8#ASg z@-(D?dJ2&z_badV*ZeJreS^p+k@F~-|Am;jaW@A^Z%XbcPq-F4?s)@KaP*e7S$naTLUu4kNO+5ia;k z9Rhb3hGnS>&lk~>_U}?;0J)++kk=5oW`;b!+pO;&9UmOO{dm@Bwc*nE&~9~`jXIuR zw0kdjq227(T1RwLjq{uW5i%|batAl;vQm8CzU2CU#;y8o_2q5ds;>lF2_387&I|U2 zhjDmIDt)l6_*V5T4`2bhK{_r}l_UQM+U>k^gkl@9A&>(-CD?~+N~+)hVT|8=v;CYx zBj|Pv(ec!0f08m_h&e;D4{xxw@O=cF)QbO-z+a|IJ0=T$#%U}`x}1GV><|hbR)`FF z>;efMy*DbzgJ<8qn5Tdjw|1<*#H`TL{V#K0ABGsjmJD+5eVC!67L7gd<7Zxf8t{G8 zOS$DK6AA@%FO2c1krCP#F^}Y+K`QqpYUmMpzQ_}H$sOV-9CM;^dX$9#a|e}nKq;{v zUuOZ8hzzpIA~P08f{|;i!asrQ6=5%v3yg!zD$0Aa;^(8PshojEyj+4# z3{*2kci4TV1$}qJ;jk3>f&wqmd2|z!78znj8zyVg znG|_%?a?T>27Rm-j$zx>sUqv>H79$8&{X*#veEn?l;tZ_`f3=<5d7@Uwgk$TQFq1j zMdl3^(mOXM-?d9}csvE}`TPOxryystD)KjfJo)~P1AS)MVV=FXX`o^=>dBwVEPvNk zdS=-#pDngu0;5bh*=cT}*fiK@dtlKTeuok5SW3yxcQ;s6=SE}O#S3{(S{#|_sJ^mP zv|HP6)yh*=#E6p)#MMfN-bcX<10(Xlls^Tc>II}Tan;)ehW3v&?fJ1Lr+ZZABMbAX zxTL9y4+r`CYmX|`YPG_2N&>C#RW>#@Dw>bpg;FdF&a+ZO0JAJn0X@_K*%%OmtgA+e zJbT^57Qx9P%^zL=Go>lrN9yOdh1Ab)%N&w*bX1TPhebmjPu9$Oq!OZ2K1j*sveW zQ~!cuzFa-PryPA$f3;nPB8=({M0he#xe_ZXk>ujZF`5i>|Q0_ zfD@XFxBw|LIY-YLCWDi*p7I{1WTYI&6J!^-+(CSaz=Y$nbZ_nyWTZ?a90&*S& zgsHp&lwy(%G@-MWc-O1TIypP;$+-_@;Q72V@ch=wz&1f*k4n{nHb=`Nmt&b8PXw%g zTJ_%6>)!L~E83;Q&igw4{splm(aPq}cA0XacI2q*&4P)0?l zN}yJ)UT=0ft=-l^tNXEPh4}bROVUC=%-9-1xi@UI7xaf>LrX(xDtrzrI&MZKFG_M9 zIT$Bc?ufY*TGdEkpq{N$4JY?9h)TtbG#O$Tm{;3%;yzGLhl?#R(w;bOR7{4Xd}0`U z+|Sk?;r{sjU;G|b=%SRJ&8M4BEBHnQ{@ARPMC9iMvC4QmlyBOKhQ_!#wN>O)0uC8+ zj*LzPp)qoIY?$!dHnw~_onS_8)>@mXZu%Rl=rmkj>K>$m0UB^G)3EL zYl|qw&gsmh1Co%0Hbrm<(3ZNV|NC3dR`mb`ClUu~iMR73o$$ZG*#ex-9?PsJ=0d?=I4&w0QdQrl zUv|f=P!~WWk(kk*IVbqZ!P#-y)~70M)e1Y|h*nAI4VXM&2SVQDaVLkcq~g&$Fyhh4 z!0eQh2-^=xUFFaw;H_3d=0(7i5tQ>_upw>65w6~OjT7^hqOM}LlK8hWcc--3L9r8_ zog|+J#m9*u=Dznba6lX#m&5aDbtP^?RV8E9++^%fnlVTwqcXFcndBA3oR;8&?` zT4;`iTy%fBZ_;`x@0bw$_V1y5hHg;VCaOzNy2UMKN2|7dES#R^QE+W?qS9G#GEt>t zVGEf|Cl85_U3ffwcN{qK+0gq0-Qfc%q@}kh5FLVf;eRo=%r76d*VN3dt%JNx;64PH ztENXX)?Gz&yQoa7_$P#>Hrq>#b-nRj>9MN(r&cY5G~mUAHMw}0f0`ygnMkNnX`2Bd z%xCoIlmnnxYo61xYk}&4R69kZRMVf^XDM(1juPj=CsOMvGZ2+}SM!BvB=n_L=Y%(g z)P>t|Ya7ac`L~VY4A7TtP4~ z2RDD2%d`lwY=iI9lFOf0P2a=i!gI|X9z9EUc93q4u}M$uh@PP zo_j&^L}&oTU*41JzUO*v(K3OhbPj%mcm9MD-#zo}&X$&#@bU#i)aiMl-2E#O$cbe_ z-AD#u2WA1l<2{*hb-y=T-vS$_fCFBH<0R(BbaEF9bDiSp!{g&venFu+NIQd?Jdhz` ziyG?N6m3ILFOM5eqLB&8Otxz-G||KTBmvZ7-jk~KM93x`O;w$Ng9`$#%k1k~YlA;j z?kR4!9FEKUz4h#{v6>w=Hq8!e2j1IYv{=HG%u5gtIfOvrGY+-jnWYYmBf+K$p}q>& zs6rK+MPv%{DCVEkUWcg_E%NxmG`FD4O)H2kN!W-B;v%lsKC@cbsi&)joqDcNoE{WX ze7TMx4G_q7{Lxkh)W{5|kvE`A>~CA07gZ>hx(Nl0L~w-Ynl>UR1$#Sr>4jrKETklm zNhk#0#7Fw>-*))kDr~m7@pr)pKzy8^?!9~g5zgPC9li5iSrSK81r62eMp$8c7Cdov zy3FDBgvU?f0MKB2PLaH-cpcUHM$HS(qGN>s7pWgE=ZvX|G#UZHNjvsBOeIlews;BrPC@c6ss~R8 zcewiac=@0>?jf-n1FYn05C{%zrrH@VUzpW9Oe*+si2-wwj=apn;++R0#@@4;U`aTS z?RXlMdL4IA|8Yuf^HVGs1I^j)r0$bueW3CMzK=1-B!I4%pHoWQGz;LwiXmXoVhiU9 zw`)PG89Hs{yERYe0Vn=v?tRQnT;bw>s5Gaq&6dOeZ3GVW)xe>?vC?kUJ2Y4Oo~3r% zIdFYQ90G*~MWt7&zgooZ>7OktzD(k;7N~CS0(BL0dkiKTqP1KK#6b!!T~?%kHqLOy zus*71;1LjRX->4`nOJ5@&&DjsrTYGyc&$AqpnE@GUVj{3pY-}rprU`6gpf*h5Z2~>q}^M8ugUWx}ibsWnt|Hsv>hxTc76ZguYSfD$o%li#2gK zy%aUha4S+D)Zx3Jq$~!K5@Bsnc;OhxvQ!D@Sd0<=9xG zySaYhSfiq#VjWJ&sX%OIFFkBwBFzVTgvuSJ-K@?g`W?gbUVk785oQE^6vU>jh4r5x z#Na15^{tgXTF@Lc*6feNBNf5zH5Zmd$Wr^BmJj;svF;hPWPOyB#`@%G|M==~aD6y9 zzZmpEf8qM=pm%w7F&Nr25F+Ficdkh-k_Ke44NxAr-rm5 zGC%ZHw+Pf>|GIyE4T5TWvNv4~2j{)x!R6(kVudf>>6c%=z$k1KpkUrTX%%CDG*eSl zq>Dh0+0CxaTA;p&N0E-L`4xY{a1RVDD3-RBy4l3Vp{Ym7TyEIYutVXRqFkEd3Jm%J zc!F_~%+YpTFVEh+J083}J3bt~Kl=#U!-@$ZT763DlzNW;^eUB#_b=+g!NQ&_{&buC zWL|`S{6PPLbnqxi*URi=MU{_h_}#;!;rVgzSNLhxL89KsqXfgF=z(Qm{YA7i?}Z6# z(!&X44gtXj9C}rniE3eZIrfoN;HoMSnTRsm2n$7=iyYp%c)J3GHR$F<-NH8jlaM~#gj{t*R{;qB|w z!7qc0J@@b4@i79b>u2t3df?(uewO_Jun;1GiS0) zz_6MbIWv!u6Jx|SbTOQcVZn_4#nNBkFRUkl@W4<8m`Z-rDEb@=jO{L3g#U;TvB7D2 z-~5XRZf?4o+k4r2b9mAFcye|)*oHoA#!8@_YbBs@QTNegISuapITd(A+Z>#@(9>;j zIW-hIfJ`Hxs-Q}d**!x-M8P~&!G<6VhhM{+Bqi>V!j<_BLyBtQBo_{~*|7r>YTa13 zr9wP1><_Nr^m?b)Z?8`Khl96IX#6@A0xMAVhbZ;_b$E7a`{Y1j=Y&#HgGRyw* zKCopAyW(gXcs^1iP2L{)A~ybLX61vIV)8i5M;xW$s3mL22d=(k{?3c26>^kLoEA$| z=0Me@F$cd^YhslRA%(KC6g@Xc^LK$y#4YWJW_^X|jez*1&JI#h07Zybq<*v%UZLR6 zTW*q^UV$tpZmifavAsA;dA3|d*uo&#lg*lyFP~jG=&Ja;+sUPF_f$h#k5W%s-%KqM z%?Hkxm9n&BHfapF1zTm=FacRqfd3_0Kn{Jr#{q&e@zkOmF?8x%Lo*zE`xzntE8tj@ z4cFAOz(hE6syI_W)`Uq*ut;G|uF{e@8?^UDy9(3W!3kFw99q#aT;vp}p;>l7s$ke{ zZ_t&c$}C)mY4{H!ibRBy#y_B{wv7cc1AT7iLZ4S!chIkkkd1{vSrE6DwjWO`Q5Znn zD55I!&-dPJQN-)Q+KIEDNW8lD?hWtid^N&^bYpK2JsbfIYv$pMp>Oj9vwJ+hVPk&Q*I}7J#`O_?9 z*SRHfy^|rb8xQi(UcLZPTjnF-Wt_pBfORI-ibv$$K5E}Oy91221m*IU-JH7m=c*6g zDlN)T%ir_R??b6g&L~Tn{N&9+$B1YOKY5tN|HKl=!F~WxYja|D7ln0M+8npR3`Iql zhev4SLJkk$z7{{W0ZKF8I#@ZI40Wl&9?~0=RD{e~2R_>{Pv;;ihA=dWE45=2(ja_16A;V%G zk)|xQZ=Xq#>ni1@Zn1KcMU&HTcIN!=9V{wv-3q-5CPFWAy3{*n9o>2P;#F_*1%k$j z_Xf~_aI|C2EMIeV#aDW+EMu3xz_gP^O3}{e()#6H=4Qx>c9)gSfV8vu?)Vy}GyL6q zb9}uGPqhrrqFIQuSYbeF^A~t_ZWmaFLX7Q-NMPCftQuRz>S*~~!EnYb)#uPd+ii!r zFn_O&aV3z1C1?=zO zO-R8aQF~}dwVWUri+S8RI|w24UC#1*(1>`-*o{mBlSzPP43@o`-#(ZH7n$;vR>eHDY+N_IcCYFM-@Q3T+)tgHw>53fv zhwH!@=90$s$Ty1wAc8LDjg>LW=0vi%wc7sDsPfpeTL zb76yzt(nYG2jCUfi$i}VvNT+>vz%cl_Het`w#lH+Sb?4-Ij(TR_|+$Ie)+2TlN_F8 zpcrjFFshu@%lR=k;AM zjj4}_zR0c#KuW9gc|~i0RQ#lZU(jL6vjWh%70Re3ZO&ivxr@Ns< zduTohtB=S_Yn@NwSCrPc>t2gCH?(X2b4OIdeNSkV0Lf(h3wmI4B^z470I_8{$0u`S zskoN9%N@7#blQai#_9~j=#42})a+r3rX4Zkm|Z(ShD>23>$^Y&8)Wrd1BsruvS3=Z zTjfhGexwLlMBwlliMcnb9~&tVIqwJNw7aGgegqn+u>7zno7NPdPbExwC8YC}6obP^_$#9gIpX3LMU{-S2Jy{G&5FVAMd0 zdubPxvcIhMhWc~%2Bmw}ZPeB;gzQUv69$0H@W-ET35rO#3D9u>aqlficXyT4P`BP* zdto{KZPeLtnSnlL#uEx5L-oOIViYCdwXLj<&HfTGRvF1#R-3c9MaB1%J#aOKl|-K` z@d9H%`rz;`yh*S*e0j1-3;8z6yz8=AK)!Z|~HO4+AJMWFTOMl?;ao%zeI)kGk{ zV5WE2XC)=8ES(Hjh0zRC0Z_v>z(3Zgw4QKb;jL-+KeGeb#@)_DiXKGb%x=*NbROBzb^n*X0~M+q90qb__NNu}bE)0k3LixZ=%RuDBZ{ zEMb)9@}8?!MS(OR!rNbMET5;nd$EF!vMY9hQZgMvAlruoWgcLbLZ7DmpKEMnd_+3j zsJJhp-!KALGCzwH5!-J1U@xQjw41F`NBm#Z*6lCQbOX68FS%7WgotQQYM!S1Qu z7P4k~JddRCfoa>5CmqdDwA(v8KN7f(TnYFgb7W+e+z_5{6g^NO+o1@ziq>m4S2x#< zMG|WbCz9AM(EpaKD6tCVnfM72LYy^eCPYzLI;G|&tmfTUyVTozz3aeGY8xd>Kw=FL zV`mFXTcev^+8W)Wr7cO7Tld&!mb_k}1`N0R#Qz+5DGUOP7xJ6^ekT0Il3$aZ6cR5F(0=D4tY@MkJ2O0!5R}gcS>VqOh2a`IvzI zG0~gggOD1Qb#4R2+|7%n0LCP$a&(|O zXwbrz&2)+#^Y@SJ3QFFPWtVeRq0aBMs2EFBH%CC}M30N`yo=*@3-YYYxRad z8vm=Lwnp(AS9y5>^EM!xjzaMwq=%1B8)uxOoEoM0ygsL>3i1pV?=V(M5T+d z_ki2E=BDNG+ao2ojHGf51-VYd^yeG;Xp?f?6mI2Y;4x1DJI0Cu7=gPCeih{N*6BQ> ziH~DNP&ACACqe9J1ow6Hh=v`ABt0|HQQv+6Y99#>Hb!N;gy>c&#H2qXOsqzALhByT z>RgYtBPbp#Rs?|P?Y41@mME0tKx`7+Sczy9gA8!%q3Lo>l2vb|z-+@G;TNOy*gYs* zmnMyOYpQlyYpjELkfjz8B&ot+=GzBz)uG4Ask>`bOnv7wV^&6lT$1b~U5>md#;_*5 zlaqiNcTk+do~VWU6PwzxN1bS?kD3px^C1eCMsVm5l#=IjJY3@lA6pZ%48uC$9>cU?Utm809S`- zX7Z`B&dp!pjD%P{7K6k~xm4T*3Ncr4H&nIoQT^k z>m4hD`;*YWk7g5BB8847{_mFlXTR`XB_%gzf5z2r9)&1dPq~Sj*K?D~F}sYNI%42> zl&30p4wOL7K_hi8?`5_+K1t3+lvO5mH_8sCqXyGS4F+0FBnaUB_~SnRCheG{sjVOL zcnSPUGj$(!UFFZt3tX;fKJPG=4519MV8-D{G^-JmAlJNXnOQO%m4D@{H!_0FZ5hPdFB5 zd1Kb5)H2^z`%$tg5~zynBV@iqH5OL^(K3wXB`!NkC$W>SlXwY9098P$zrD?vEf9s0 zWdek%S4qSlf=-{H3ph>-{?G?@kL1_8$UF**C7}`SFavS11s)RNsbw42ovzwnyUnL9 zxfQZJ&r%5aCstTM&|M}#9s^8z{JHEX)gIh^(hn8J36IE|lXFhIk~_1Y-QIa0PY_J) zo+WtY>huU-WVs=xd&vQGSTVzV9o~_fu0!=w!G(&u3O(5^rW@lf<@CBopmU&7BM}`3 zhzY#1KA0}!galM2P^E6NYE45C0Vs+4CV;coO1_w)d(u}yloYf@Owd05j4H>Oe1pFW zH47>^YB?86D8ouQX|m@kTTYCr0=!@*Ws2c`fgRfJyfK+**3Pi_9+b)E$N*sWPIeSdIlOS^( zc4B;~XtZW#LJ5hczr>x}Quyd})SlhxY`{KAcL0yi2k)3WyVWj8eYHxkv8HF+I|VKq zGdxy?krUi{eLzbUb5LEB zkrCq#F;6YPze};+QrQ)#Z4A;udkgQO4u*-NO(>Li>g+&dCeC=7AP!GX5vXfaG#idyjPp0u(qXg@`jTn=7P=}}5wU~y{(KWf ze}*+)R4DvJ9iZ&URiN6=_pu~flYp%Rlt}UDkyI0`H52MxI9)`FS%^b(LoW{?);NiOrBNgs1fw!c*8z14CQw@82T<9AKTL8` zs_9{CvF53zCf6mh|`(K^I-o$SD`un zd`42HB-c9ml4}>JhRltVS0)D?UiL1phSzUE54UD-!cG39u|mU>6DDqE9#hFc9`cGkB3)A zW+n~;?>s2&ySUS`=`ofeTfC5o{U*v5(Pn=H-4Wj_&xGl;)ii83Hv{NdBK78PKQU?u0rf2zTo@<#{9F&6ZN-D z>=TRT4Pky!&uEN_(C~Hou-W@>XAzVSBu>P9<90kIDhoudbW8Sc+-Ku``1*ob>`$H) zFCrFt#p+lTs#jq`0xzH1X4prA69-{}m?iajeT8{!_A&c8JXm!lI(!`d_cYb3LAsg) z4E^xuKmWjSxi;uY0_X7}RNR${v2sJTJ<}aq5!eyPQhtH5f1zk{Z~}lRO9|@Xrq@5a zQrgJFlJie#Lv&hCXlMMs2*~MM5_27UAw#oS0TBgej}knm_P7NP_J>31+*e>t719G` zD^$2-*Dc4$skISqoKoROwboe>OxBcsNFH?Oh&(iv6FbEiJF7iGv)IgFt5!}9jI=Rx z2kdn>!|i|KklP zyE%r{RZH^0q61MY(Y#KvMotR@#0TsYJtP+0|9C?ScLBTcQ%SR zpv(a%vbd7{QTLM^)S_zaf65oq(e1|au??@cyoDqrFR~pxAZT_MTmNU+=LYN{pioFr6G{rl<08j0Y!#w5Jte24`JuD#>1&cRL z7Qt4BoCFIOnD~ zDzW5>q$YN5Vz z^`MAy3274Im<0D|O|Hm<2K2EpKkW?%=KoFx$D6xR#>){4m}1W694FUQ#kFdx{eDri zW$-}ox!Ak7e9P`NCWzvH+X*bk%(Yy1xI+szOy6AUO6V3NY%l;rRUdpxXfi8tfLGT1 z;21W)WMQHmR_Fla<(!v7tD}G`)=IYQ6Uvn*@zLSn^z!KKk;yNBmmR?MXGEX$ZKZ9(F!Y$Y{GL`%}utz~mQS zo1=oOS@M4L%s1XZ0=)-+fuZsq9tDx6AY+ZMgT*KQak`vNsiA28ac-7|f)$au8H_TT7KpI0SxKXci;csIEG`2Os8 zaCp|gIx(BI2m)gyn7Tw%9MyV z*6FtJJ;W8<))roC$;G*$DrSwf6|*d6GTl(NszY!eXHj;y$C{v}dzBn(U9}?X-3`ZT z9*R^UuDFKV{C+RXLqo2x%ERCw*2=@z}8YwhhgIC<5Yq5 zMpNJy(yziAC1AOd%BnS26EuGpOAOtk&MVfGRjD~t1>=f$C__a#400qh=e~emC4QBu zmnJSk8n?Bb3Le&XL>rX{!8W( zMM?`uGr@ue!HRs>T4Y;cHxN*J`u4kHd(H0H{vFCftV`F*nbrW@gks3e!XJyoyo%@P z_9J{4GY;I8(&>u@0gZFChh>fJ4Naccwe~QB)Bf4v;PCCm*$KXG0~SV;5scIaA9;Y} z#ZNe)W+jSfO9lKjumpk$v%5>KDC&9XNm?tQ#KwCxy#N)4ow6&e0ypG~EXih=+TmP5F{6f8)cLz%aR`7iPJ;2&U#R+` zXi;IQ1d24!hYi1g(~|A2z`BH}HMkf%N5dVbBxa`6P8jbLf`f1;732x5xneK`l`PDo zaDkkNE7Vu4Zo-4a7()O8k?EGM#g4%eerEl+O5T8~+K#J@CqYgO=YH?c{toi!GrOjl zb3r9?J5raHmS^bff!!@h>AWCHArW44CnPoj=WMhbk1iN7d|WK;?e zomzF>=hYEzpw`&_{%QT}Era?(2&gmyxA^SHF8d`C$?b!r$1>zm8&dzh|EIK2h+QG0NZ~es#CD zU)v?qk6@P7a^yDl%NOQTLf_v_L6fjm&sqEG&F?!WE=cX1U|S?BmyEZp-G#bg`Ss6q zg&`|Rcki1-Q-OZ6Az0?)|0f^?<+)SQ`aj{#pLMJPA2DgV&`-rBV^4S-Tww&?0kYag zK!UT?Fb6On&kgW0Eh&gh*~ClJytj?io0klFk+IeXXcNnb9kvOSQEg z0_Bu#!#Eaj6LGf8UzQXL72~_$0h3^&Dovz;pR)J4S^_{ZkrDBF^ zXM^*?2ZjbE5|==AWY|Ms}|?)sPB@zvn%*~P%D#8dOIC&WRfy^RcM1(s%ibT=m6BdK71}QQ2M!PDD%o3LIJ>3TwRhCKmF6KJ@5L7^iAK@~}v4jyea*<%V@prD6S} zcL8IK!KYR7+CBaomlQJMuL5MVVX%gr-?pq(77LI1eyEJA4R8qpzxj7wdn=(XivZdar8q9_fGqKDoa}dJ-ID z=ZJ*(>g|T{?hm`mco&Oew}Ep()=%1Q2p`%lw>?x3Tpz^zov(`t7EBZ$TK6=}0k+{V zt3+?w2l=LnKOYwf%fsCJ?|m%Zru1p@WAc@+BT(X5R?NRU9v5X%npvq(mgeRtuy)|T z*&Zd07NJGB|Ne#`p+9>?0X(1_>{&vDEBsqef^giW$mY%^HjEWzwM!QKV5}$;coc(t zEG1K)rUc41?Rn&y$jO2keCB&=E4h-0Tl%lAj8d;Id-tK;K0XP;=zr6XpDq=@HY?C8A2_FU8lgwr@ zj&nq|q1ef-;yAdaYZ#I^1rw@LqrnuFHy*Pj(R;(oi{8<@_m}WKz=FmQTf{6gl7w3B zjWiE=-$qwV0tu;$!p~3`OG}PmOyTWPY#b@*NuuTWu9CSjDR?}F<}15>UZCkue3I~V zQjhUGU_CP}*g>N+uXsN%%`N{2_G#c@c!k2N^N5M5pK3LE>vh>RsIAtZH3<~ssaL^k zNY0XEQKz2LTEr+B_(g zxF;4Ztepc%?J5GDZ>6NfmXRq~WUjnf zUrpRH#T=MlfCF9zpG^!r!{z~3bnGX%z0ONN96NJ}E%0M;Mk{{oK}`VG&pmJ>bKu6d z4&2HdxV5bVw=)OMHGEMv1spod4FXL5e=iZ;LQ?6mxBIu{w-&>le5drZsX8tM#6 zFjxY8`QjBNJYVS7D)=fDb6@|I3UI?&8u-G+@Sku!#csD}p8sI6Pn~fUhJx3Z)%wr; zp1J+_EqUMkDD8dZAnVE^>XeY)PPHvq_E|W|OLSy0Q6!Jd zau-i2CDR2*J3sDSUiYsqhJ&FNI}8+loAidvFXouiV1%9E(wUFCIwQWk7Isa_9PnWBpOfX zRl>lC6Hnbwn~%{3AkEMMZTPz-ZYp1A=8VEI$X2BwjL`W8ar%AWU7P62JDc?p0%Bc> z;pfeVB*GSGbOKgklW!i`*4IR~8%q?{y~AK^HD8)}&JmbGQXWPPJv3WdfZPwtS(vFY z8k<)Tpol~*E{Sq5!sQs`mZA#5%NL`-NxPVD$H@c^K)D7j`EZ>CNF*99OXjMGVJh{-U5E^_&%6a89PEXG+dr(V)2F>6UXr?r^EbLg7 ze$=PmoP9DM#nm6^)zC^z< z3a*0NJ_@(1O_RiNiIS{$Pb64vAbLbG_|6Z1-chY;UowDl+e@?Vpo`}3-1K9mjJkvB zx+x8u5*wRRC~M~{l$|e-?#@lkk%$cArgXnrtk4E(=#VuUlArJ9}<}vM4LwE*pIl+Z_8X^`tSV%6*GSmDN zDU_u|R<}MaZ-Ca2 zJ~9ynI=4)1@%&5K+4J0^ra&(Zo#)V|q9$+srH25xqy4M3IT4O(;g5J~VgX6FS00Is?(v zwE95l>P1yWr_~MJ<>WNUPL-NZIOD{Wi0I;?-?3)5Q`(;VRI0={QeM3%U5J`GSV$i| zI(J6;bk5tc0acpb)K(>(c5X>W3Zw`}N|lU>k$xP`mJeH4Jvy0MSEp0fHSBjq z;TY8*e{Z(EW7&>YnH`v#5roS-^dxaW4QXzv5w)EK zU_0Ld@WR{(_z6u11Hl1|>@+b;4GYwR+{%5BDJCU9 zWE;rSBErb-Gz6Ih6pE0`vYe3$+h-v>loBm}b zA6E9Pq4bzUdY=8j2)_wx5Gbn#g@j-cMiZc_jF}+G2t}e~J3Jd(I3QzNK=1;LLk`Fs zXzLu~GWY!^fS104Rqql7Q_g_%f|M9`gvDZpD%!D23`L^m1v8DtSUSj@2Y8Av7lc=W zpQm3h35M&s*=_!o*Gy#R!`y*p3zaa<``C4(tn z9){2E;ogRU0ynNK{Fp3F0Cdh%McQJbUz%-(t@Fk3cKYUa&a9q?^jUT;L5^|<6K=(= zHy=$n2S9cwNejB_{b%zy?6AW#95xq;pnwQ+U1%3tJmw=noOQk92QQrbkEGt1L#US zY!eya(?4tf+AZ7usjKb2eo%-%&1W-_*b$l`BKQaV;bT>iw~jPo9#7?d22}3;=Wf|S zt4dUUz^)LzE?0O=tbx3^Tke@C9dKa%3jsP=Wavzwse8<1N16ys6d}r(XXCqn``ZpK zhL*%m<%QJeK!VIn?~%{SkR|4F&Qxk=rcyh1D#2AkO&N}V326v?WXuZ8IE6Ezj7nJH z44V~&o`=~ZyH+`N(FuGh685O%eLU!0h=30mSqus|oGW8i@|+2~#E29m9Qbf>3=%{a zfXpl#SE&kIzI0AsJmXa>&w07>B5LD$SPbQ3vGa)sJ%fJPN43^ff-v2pPOT3lR{-t_ z>CMT&ZIAQTZm6*|x@&SC2be&^Dor7tAkvJ2QpC}k$L+JQbKngGx#Lrtb`QUPcCw?Vsr;GruT_T%gmB z(4)f4&flLX<&7=_-)pyuP1NOqp@4)}A$WL>P+`{VjYiPA^tHZjUNx7Y8zCx6ii;xc zA&Bu`1eM2VS%D_!zgIl~C1bCQizL8ThF}`PF<}E(oUK-OfDZxh1tA7Xr1(jKVG`Yf zg5@ZRK0~X|tk^`XM{o))t(Irb>SS;(@_C3I&DAfhZKXEwKSoHQSfEWCRpE(KMo6r&P^Ky{9o%$v;e8ngInm!RMPSF1F#~;-{a^YF`D|*}vjzP%cUUvUVBt43DQaBoJUl$S8cqGX*XEBMPv|5QDXb%H<>>U?Mek#-{&ZwkN!>zsQ;44QB>K#9 zz_Boz>?Fl1L&&o*&U*y%okQX0qUp*HGWs&kVmsy$LbI%;X_?>6@X!cxX&wx2&_f7O zHX5p_O}Uo4DX$`>iN@!%)PV>^GS%KZ&pUu0lK+*RY>HIhE+*BxT|twRgjnvhQJAup z1~!)_wp7)FP;EXTSD?it%y|ADGNs35Tm)ZoLe9l}o>WYHHCoP+rB|z0s!b}bA&B@< zYbF<{dOQAI-wzkWT7@Nv+$qh5K_Jh%(dF@dX&x0BD; zV>tXZwOc{SAebl8t(Af~@fsJxkd?#0qhbz=*f}eh0X=5_aq7<|Yn(Fg0^3SBg%ei$RAKVFWo`=LbKm=4ZE6@v;}{+~G^VWkh2etK z39L)E3Hj7BK@6NhqyJI#LbEqr6kn}j64zCBNS0^~_&EIF|fN>j=Mh&gIkhsEn6qqF}80H^f)DiNRh32n<)xPO2O14N0pw=BnZ5n!P*%QB>3hOU!M8ZUdp4`2g5xTvf>HW3f7&+dL^#iP}= zQ`|2MhW+08U^w{sYH->g6#t6t;Jk~Fb|+jSl^9Duhwi#lrE%iYqD$k563>3_GPuEJ zr?{-h@j>jIx>%l+)Xq~G6=@=d;8}uq%S?->g70Igl^3Z0SMv|BDg$UP_s0`Z zX$6H5TMtH1)r32S%t-}3X|n`g%|cAl94g`WBOSZ8KwL|-E0m)r$Y(BL$=_dW0&C*)SMSk7i#&VnSY)SRe0vVT3F>n|2| zZo9Fvyr_M_OR}zGI`XtC45M;oB5Gr?W1wcQie}(}Z_`ZBe`b%OT8ViEe#18_U&asS z?Eemz0Ot%jV5MsLT%AC~O>71Rd@8HAf^gU*w%^CSLNJQdKtd5jty}!fBl+5zNPc6i zdd-PYuY~gQM9G>WDKth4e>)!j*Pi#cbNGL_9Dh3<9RC*pbVl)$8_042VI*clkoD4L z2b?#+cudPg;Ji|I73DmC=^|E9%BF*%sDJ}a60(?M^BB%TlzrV47P;sKIK(5f*E>rO zt6=Fw5D4T&5b)bYIMMoa4E!#wdEDxD)tPoT*|wokW1hKioT}M>T|}~Lj)idbC0u}0 z>vPE8Erl9vb=&L5m$&5|zqz`+JUcynbKF1vfT$R^a>M}v0wM%1 z$2*&bOCCd55P@o%U~GiDa~Ig^2^h3z%O|PXsT$m_v_<`Dcxpf-B&(8J^8A$qZmYWa z`O_JrU-dvZ6(Dpnqvf2W`9Sw3@czEMpJPNot1UDrOO3VRIysG6t2q2}QJ=GX5YmCf ziMP{`b{$rvjPE1t^A@9glJP-FuzxjqxU9%xne^+UTg@2oQ zeZrjG0Cq!XjVp-`AyEA^2LO33^-7EJd0*ktfYPIEz>JNCcVj+*CH_K19du8AJnt<+MWSydcMU7)@sNmif!PSl z7FelmCA9*{ET1gm=&~1ran0z{h9_VJad6$!WRzm7oRu{e-914&7wUFWj%KJ-(Y;8- zt}JC6Ng{aU7JB24b3{>lPGcEpJNKih*r8HRV~)~`Uk&@mgHPAJ;cH2^9^})H)E=YB zhK;q|?{>M^D0LjT6uUp|l2f8py0Yc8oSHJx=~Gw$IHWCv;hZJSI1KW^d5tX`nd069 z`*rGXi-B^rQmNcO_7)5Ou`&&2w~&{SS(wkY#j30Mx4DX zKPM`uObJVrGs^ken+dhgQ|yl-t2GV^ zs`rOdomdNC0-Z z1eGeXjWVejM0o_%g9k9ya)+y~o7d1@xqfqYhJ6<4$}m$#>k&<(=rgl@EMRvLjz+M` zFgWz(3wXyF|2a8`)f$N(o6LMgDDy6O*z=;X4edr|@|lY-E>0n%*L%aGz6(4=%nA4W zmoNV0-_L)#+w<_h5grEr9KpIaC;9#9HXz;2OcSj6L=((1m-u;;n8xh%Q)HosCTyC7 z$i9YEFl9(es@$_BFqTunP}w5CdL;8jeNqH4+!9TM_iwvS;1j^)ApA?8gX?@|?wm>4 zrSn`iSMSu+a#4GNTE%UtiC}DFGM}LcbWhm`V?;ZN#^UMa^rQA(zQ8%B7+I%R$GQ%t zB7!d_eVfqi%w{!ty+BM*%o3EimrB`d=gdFkzo_|V*1Qsmz;ey2>Y7&zqZCGC;UhOV zJ3fI7AVcNgMnx`QBue6W#9B<;zM>46m|)Cy#@No!@^s2hbk$nR*Lb=78X*5JLrRD7 znZX1hM(lM_sxULY##K&TMvM`372G7q@y9^M%!n@`V7`?BvV53}WfHK#6Sq91r>kA3-p{U3imxe`%gXDa7UI%_`b3LF<`5iOFK7pqpte znv=kO3r9l>0@nd$IM9@S6r{{mk6A5E8mcWZ9^C`|7CdH!e+o~S|&qRg3-7nftR4VwupO*iL!g>P5r=|gUgVi>y3iJ-3ermg!G|o#%nf0p(-UORZA74T8;Ir9_wEkvr;VT z1q<>l6}?~>AE3<^NSUw+5TU28hJ%Y^P}J!iuQBPO(*)e7St&?(OT|_I+YfJH8KVke zM1ek{z2P>>STOad)f>CbR@-uK!Wi6a*jLef3r?n4*(3yqW#T(A2~n0t;&-?M8#&76 zg3c;HC&lEkw5C?Ar6|j-e9Cfmtn7q-;~hp1kGH|h0p|V!<=1~!U_=A)X8af4vA@7| zy#HG`+cPKfUu9>L3c_2p^+V-W$jT6XTbtE9-_$Ws*dzDm1o!jg@wu{UEfv2)^&O{QEOSUnU zX~ZRx%v`Mv1G+a#s~HP-)J<4GF%KR-P%E8kdVNS*L zQF$UmR!12T4if$y6L=t(dCLg|MT{Y;&44}D9+8M`+?jR5U@_S7I9jeQFK~~k4y z5B9JU1SvtvgDi}lW#$@dQnMXCl3~VwFMV`n=l&sS!dv)y*(Ix~Dl^R@VFwqTWKR=EWeJ`dZY*LxS0JYAH>Ha%#2>_u=XAd0Ny%p>@0aO){nAR|KW4896u$h?PZ^K`P zHayh@X5cO$Iz^TwI7XD^6uOVFE@`1nc>thVk2o}u(M%PzC%@kLr4~k z;i4>|xMd)3-zu+fugUA%8|U>csNF|JX+2?%oR*Z-0>!jh^mH963Y#~6Y<WCg!k|_eXv3b8Se%p&h_@<>|}WLhJ?D{n#a!Giv3D&+^+(0+nHo5!z55r zw?l&%LU1I?cbg}t^i+5h=NCsOy^CMnU@{{~jUESMPtKhX{PEUAS;OUs6k6cC&*_`) zO?*dq%(!6LmfsQ9RX&=BS`LAtDWnc*Nl?~tn)n=%Nvc=j=Mt`ZEtG`6L1ve(4 z4=f};WCA|o2IzdOJfsyWW!5=7o@k8cfvx+?7o$gf&_Xxap zj@}*(E{1#FZ)Si0Z9(mT-)5u?z|B~2SqlgxM)C%-d?}yAvUgqur1ji@^qmPq1x3j& zz8KDn;spg(G)h0^58>+HBwj(hG-xBeJ?mc$k4|5{z-z((KD)XU6>Bcjk!S|4@yl5V z5iN*)$3fbKLL;n{=WSwrb!6RXASpFbQ9P={@C03HdN>Z_*mp^+{ z=8_Hxg-w)Ue{c%79M9Cl(>5=BI66MYSJtLg`nNWd{&3O}zl3N!&VV)Go?;I$U(4i2 zEiSQgAxN|kF2#DCl+B7S!|qLUR1=+op_j8DhQa)WTyJuyP^&iy zoy5#u7TrUJmKh6d4@#P46k!K-Ww@!!N1RrBtt{WgeW#E2o9=pA&oDg)?9{-!4+R%G z622DQU`U%Cj(n&1#3>m`8_WCC`JL}_k=R0*=fRj12(f-4Qp z?JxKY##BWvTdh}>n8p*87#tJfwk->ZM?nedx|$MfP3LFBBWUJBlzD!3bb8r8J{u0! z9_+bWX9mAiuN4Sp$|**(UFgyvaa>?++!{`AK`G=w*-cWFpz8HCuvvVp06Bteb@pD0 zXf^;=n#pOxzBOAXVtJ-ckpsS%Jvg9)DbtTr!badJxWW?%Z)a#L3MF;yy#zVFs(oc1 zgyC+y$_EoIcY%5wU7z+&h}E&qjLLFD@oTr^v9#@h)*0To(yvH6VW9KHEdB_*gp&^r=d+Yq`z9UH3i;v8U=j#2O!ke&hf_->;66p=Cr!^3IJyVEO#KTtUnggN=!LapC{A$Nu+jU3K~wD4KG21IiLV5^c2 z0y6_JaQr3Y>o|C5^fo3Ax0QRPdv^x@Z0S5VRo`KKY zv8x%imuhZjFk9&P@XOI+%oW#d3?c(Nt#+S)xzH}hXy*4OAv!eSzR9J)b+>#HT~$Tt zYHm^bWav5jHyQ+U(HJ5~A~)gzS9Tn#ZBxx{+YB)bSwc?~O@j1*grOGQXnjMEtddG! z8dX`Uc8eLrc285iq&yHPckvWHuf(8~241UHUq7gf7LXG!n}Ok#DK84?!lJUHs>wmx}AKD&|nX40`;fy*|!~Y7GKOP1sTa_vl@I)z}&03 z90!R{vS(4h4%^zel`$dH9mcFJ%z2{aXgUAG){%ZR=Mp{kVgcZuccwAI>&^WbN#p5F zv;bvSaQmI#h2GKOAj5%u?(plG;n$x5e6OjPCg14rNc19wcq($wv4~z+BC!xMib5i2 z>COFc#;V0AJu4* zcq(ZGo*rwjiKr}B4%uFfzQrbM`7KXvH32ch3<{mF!XoWg!?w#_098xLSK3ZDy~EiJ z%#(o8A_YBfEAm1Xd#(dsc9d!{s5aJF8?s^mOW)H@N60A;m5LxnnksuB`YNn+2?A@}r|Q?nOPXZz8K(69UHSN?Ly@DBs)5s*2b$sM}x$ zeLZhX2YICay8SuvR~_5N{LOOeZuk1G#&Q49JL4>FlE&OkgD+q;Y(^8)8zgPx+yGV| z+Fi@9+(kG5v7YR?QPL;C6f7ZdX*rw{n}kwSGw$&+2O{`Z4^KqPZHdaKVOBDj!F4rq z1pEA0sZ{J!5JOWUym@5)iQ1)=Y&if^$Q%Hs2te@`L@7w!^mg|{x_`S`f&(FrVM>UD zjS_9%AWTa1DJ;1)HV<6=%lw@ahYqZ3#v-8D(_GyJo6F)HEXAmlpRcK(&uzwLu?dKw zRs;&f6PS5*JBwno6~&eWMNLrOk_M!O{PM+)pX}hB+JXIbr{cZ$C#0sAEW+E{U_l+< zg?BRir7zWD)(C{Rc38Y)XLX&8Kc`(jCQcP^AwfzgIgCp?aWq>lax;JD-3EY-Wr+f?j({=>*F9-x`KD`r9(cqF z3sb9g9!*s*{tp z&Wnv!+~Jd+N6@___%{ZUw6G18W#U&06Tw{sM?p$FYf2NO%mQkuWUS&0mJoQymN0(I zU{@-}GcW?w2vSWcUQgqS2bU7Q6+#6PL`Wti)72nDyc94UX!fYJHOj~fqRt6i3Z|5? zv?f42p>`0icCPb|1&=sO8-pAqMYRzttK{^BijT?YW9$c84okKm7S7O=A=7*sW}lA z13~kJN1RQrF>Is>9^0fEpZEP5#ur#OU{f|K*I=}U(A0Gax^zI?L+2BpR!o@f^mY~_ zgmHz7@;P`Uzj+FjK)dHFv_kwTbjBVnHF(OhAPKq@-7IlsQsxn5r(s)7!*=oN=-PNd z6U5S1>|I>GRa1~E(&Q(O*RoM}D9$oo;x!jrn7^MIn|j`XjY$AvQAM&#IESrN_B0_L z&SeyMgZ;NwZ~ZTnC}>sxSAGMUY~ZOkOxkvbz`iuA{fWOoHt33?ZyNjupMVrEO_nJW zdDT_qm0J-$e>984%*Nyv3u^n_lvE+PE4A{`8*H=$btgVTinpE8fI#TTt^J^IPT;0c zmz5^`&m@L?{x}RLE6>#BXXn4fR9a|$r9oFPe)B2~2nx(_UMjAifSEb8 z!T$&es>Ygnz~=5T-d~qyF<8SBXIX$$w`!$ZvMq%2K`Z4^V*Z&6cR>|7*2R{X$8FZK z371)@s%oLiZCLd)ML1lP)vADX_$Op*!!*9f<9;8E7Qxp&8CJ<5DPh58XA@Chb5kP^+VXR*MJ23U1nqkGTie%`8BkXZ z=#SBLsIPfcOBftA@|C*M$kA9}ztPO8uyBpSmEi2sg$kwSriY11rm4R`Kw!*gQC}%i z>;*nzPP1Q;oC$Z>2do@*{x9Dj^*`)EnFH>m2i#dNi)O~aZn0#usw)bUXe{-I=a1_kMR73y%o|s_fTDINCk!wYC0oR@ zPznd!2J?!1dq-ZmqZf8O($OWYjLX6M-tfcV_;@R|5-+z{;$H@z_$1Qlrqpd6T8i}N zV0!HSwp(&YO3=pqojas+sB>!%T2(^Bq{DhM0kSt5OL0-uB+T)?0|>oZbI9}T`4hI4 zp0KSVzCF={lE=A|Izp7d0{GTY8%9DW)e};#09USy5BrLE<}*C=q4Vg#0-{ z_ggG7!TOk8ksL}Q1y{GGh7h|Tj>_F>I!1E002@lcJwkAU7)cOkG7~$|$X<(vkO50~ z5xT-*zycI{M5K}cHF8?z;e(VhR$#M<6M%E#9y|sRGyM*srF`qtl|86G76r+^dUYPn zmvbxjH6!~9b9TAdNt|vf5oco-R&>YQFNWgl(|RQ-2VW(VkLVMoGWg|FqP9wA+eOJN zwc$~hL2K19>D!NEGjfsqby9S`Wh|3cU3Jf^795<9gaQlOoiVgaZQu&ZCd3Euf^Ko3ilC_f_Km!%4&9Kuc* zLVB{Jk(#9W-9?!DOlvMNc0pyr#rjm_EPl|UB*cGb#EE;hO}w$OnNk4Bah&WEK4AK| zk71Dc`K2IGkSIG3W~k_l%LP>oD&b9q3p*8he-$kwURhjH!#32}YzWPHER5>kfR;V5 z*dAwN^D{Fu*QR+AZQ?a-`D9oDh*vNh?Mn5V2i&za0r%!UM9PS0m2SN%yG=}ac)F}t z4I>OaO?2@!K|7s~ejAdOQ<7(C%3dsDO zH>`^#&=rW&uF4_!po{J?()1ZzU9?fds(yalySzT_UtJ6bLsyxDxe05MIVygD-}ec| zE=51mEXt(4dDVqTDb3sN&}y*e=;bN#Z+L3ck)nMIU?8y1VCsxPQ=Bl}Ehjt9-74-` zo>%r0ICV?Ca61ko-Ht)xuI6*c ze3$l!8bVGb3q(CC!UL1J@#I0*+hKiqd1POgNdCP_UHDd;Ty@PRx3RZUqw2hsRyMga zv&KOH#DvBLtuf}J1yHe2s$B92uDMT_&Yf1`DuM&e%>CN4AbV6EIP$JY`8dsIhrMNw zdxq>yxtH#EK}Xp~h{V3#d7VM7T?P~ceL^UdO+HdWRv^%Xk^8pEif3idV+M~ zOECwd76VMv8QP+Z5(Wdu$&y&1RwN3x*`m>gRyvG3@&lPRGier0Ns3ss+VfrvnFF3z0sLBTK6dZ`k+J>7qZ^JG-d_hRxrp zk$t0ms9wxttZ&X^thc?l!Dt~qE{&Y+gTSBTh{#|_ykWT)C!~s+B0$s<638o_IrUcS zwPl2$NSU?TwFRM4hEkt2d9UFLll)7u0t2wSZz--EG)>O2&qCk zQ-(xUhcB|`x_~1^o<;0S1zWMbF_+ufXd5t#$L7fxKoec#bQr|zvnW20Swl?Rz=t|| z`2wZhvQ~-kC1#hecq!&Z?QU(y{tbej2@n4ryl}%!{P0U4st+U|N1o5Rc@Q9lKmzyY zrNEtZ7p9Y&(!ubvXi>G&18+kVr{_M3^g7Te=}J;^?~F$AXsa`W%HKLP!hUgp;41Ic z`Ppj^%6GGvfrw?B==|U}RG+ocd17muL;+R55DU3j&J&9h)?FUFON{Ch6ja$AuBpb? zEL6*7f(aZbNvw;Q_pqO_ys$h!`_z>kmfComYc^hoy8<;m6j`^TmS$co??=vM*N3p_ zHY7-u%71a}FJHLtAri6dz*QN#*y{Q9>O>Vo#u4i7ZhHF z3R%QzfVLcg5PR8cr~J71Imij1J7&a{6*uT7Kh(E>Wq+GJ$^?Bvj~c|x^BYm2CK z8%#7KJrc__t*n_=4grCyw2eH|^tV~0in&r+ExWF%%TsHw!@)5E6`nZXmb2)l>t+Su zB68XS8=~};uz}ewffz|@R#t)C_mK9dh$v(b(0g5<6qQG=86oWQvi&mb>-c(v$ z&3q>+IxFE2a1t_02|hdnn_E{oSv@x=)8rHD)&`oSW(vcchvHyk7 z#_7YA6q8V39P@X1iII#d#UD~PYpe;gHwW<7v?}}xIqryCF7Z4NiAqJcQoT;-0R;ta zhlu`kl^S>=u`7FZdi06S4$YH+FTpfH@&)|kq}O+(ZD3MG({Li#H*lq7fd;JT3tt|E zPrmpIpw_RBC%lDB2-br>J2vzIBaEG58+8AiREm|ZEb@tMXsyT<^l3KRSjqKf@xy-t z0sr4gq4!Vbye9wNXw{pIgFpHBXZyhX^G}Fmzcw$xJ1WNE_cxug#lHzE?);mzR;|@) zwX?q|$~o}fR)4Qit#+H;M(*$Nd)xiJR;^yIcJqIa-rM%?wHgQYqThq}ij>UzKbU-D z&s7#tZGegpGcp^dy%t)7cfo@{3C1Q=arVZQ?VUrX-E1`r&H>*mJcm5oT`jr|@LsXTo-Vqoa%)T#*tC*~R`+tA7@P`-r5jNYnJ6aQ z+!c5XLe8UT?zpU*(s(z!B=u(Xpjt39>AfvK3GGhfpjL1T@V!E$5I+O5bwJR$52OKV z>$1@H!d+in{4u!L?j{bs7PrJU&qrCo?`iq9S@q#uWj0R|WE5>R6ohp|gZ zd@vc(i|bF-{WdEb-1{?=mkS9Ve(jCFDDYDA8s61tIZKvwELAVD{@K8me{A*IfL9I8Jt^C-(*{%%=&*iRs~jF5lStObizAc6z(1jyOZ0C`WOgN6 z2=pz)-5hHgvT^}#o}#2FMEPwtJV-`sluQ~wl+^pvv^r@$Li;&W_9M556{r80a-f_!PKlvA@z$< z1IRj~7LQyUxdz9BK2R+OC+C;HdcE_bEiU@aMy*~H0^obOW>QxF`Ir9tvy;K$(ante@lzK`7eZu?s0cg_hwOY zFKc`IEuB%T+d62jIU{^Ow+3e>@&W*jbSAgcXoNxUBAi#GBU9mq6O|5g-vU)_kUw28 zS7e)~)^4mu82Z%U{h}xXD(Bv(lVjG3@Dl&lc^sNM_DPTsTYNei&DudxNQCbd4K`n! znD%{&k)d{mSA44vbM>H8_%NIIazo7kpW4&wtMkL&<>2Z_OfdL`YrFnXT}Z~gLbm+B zzADjLEvNy~ab+O7>qpZ)fC4##2e&!w)}%HM4)cznhAi5e+WspB{2Ej2y}Y2 z!)<|$4RZQW*`HK8kwSH2HpkicZvP)qbf1?5P@t~j>4i8@3MW>pUxM$>2w0fRi zYJuF|S+`n^!m={HSG;$VQ84c}ujlj5neiNgb>yC8 zRSx#)$GW?&(D2UNnl0oRs6YxZV3z=WW@XV57xCV;z4@M1NYy{8_G2?IrKljN{j~FJ zkg)KaBzUmZ=LSwRiyWecYTq#Ne-!K6^Q+VTGd2_}_A7|MBeNF!Rd$qf7Fg zqt_{z6I1NWakiM5)epL>MQW9q;rsawnK=I8y*Xnk`dGGFe>mJmK9(A0qu#8o%l7g8 z^*})i9*6zGb^rSOVsL(O)*lRqXBYjmlaqm2C!8W4JIz=wc9_OIZf_T8c00{#eutOe zE8415{ntVHEM60{2T?<%bsuc;toJq zV{eB}cs!q1Flenz0Is%(cfcLb( zfLl4A`a!i_@8tJD`Mpi158e{h6lJhac(c8Lyxy%I)H?ZBp5H5EVHFLtf7rY1vGxwg zeE~xxrQiSW)$Pvx!j?Y1_jCy=gUm#AMGM76953a*(N_^khEFf^!y^-(?T+uF2<>_S zbFqv0{9g7~SYrl0hvGF{UqV7(XjbO_cHNnJAC%uaggNwt# z@qh{wSXN+^E->ARstc(u=6KuOCR^QV;Wi2H<=u{Rj5z_}E(AGZ%+WFgD0iw2g0AbB z;BI&(a~&gZ=>+PHM$t+{@8z8UJN>bLA@Z=O7>Q2--;sAmrzSQ=4le7$VK%@h92x~g@BJ#x0z*k@G=v({2#$0qLL;y}gzP>2l?K<#VnM>`1gH|`cJ3()48Qj$9bPkG; zLHOR2REb#Gz`5KJZm1aYz3cbAW~Ec9c@OPoWi9Q3<>MS@8etIeanFFv`4ui_>Ykz7i0~EJDiJoSRGA8H9lenLq}7laCpq=A zHMDabH$n2-3fWStWIURK)UJN`<~6A5ni|x`qDD2VYQIu~I+q6sO}A7A4~wRGf?$5^ z(FK8YA5=^7{JwtvW=|qsD$A$?wU*Jc{ zr@%Rc(wdR49cB%FNCaYH%}r&Cq2~?`vEYsudO)Rw1}}l_9HLWM2t8*$hK-}Rf&^uw zUjK4%aej7mYW{$+o*pDKlTOamk*G#!wAoqY@oe(z+Co!iV zGBT*J*+=&IF-y9bRjoEU>xx(ot{tg)KX0VuaE449*6+er z464jpU2hbcC3G`1UE>5_sCYe-Z?)SfK&WC)6l^eaG!gmTlsZ>|^2lh_3PXO$ONms# z$md&SYqiY;`uv>8ru*9*Wr z#tT8VFT4ri6$*mE`#_Xz7Ykf_P-O@qNU&8BhI1XC56$O@V>|iAm>i%(j`E)~W}cgLU~ByuU^@f_5~Juz-KD z$}T>h!iKN>UtngZYjaYIOvnCgMXP%KVn!CumaJ5}%^6ZXXw-@#eta+A96%2hV&JV` z)M~d~MDnHg@_V6HdXl)!XxaGlvDfbn2S1z)F5V3spL?5wZPYu37ZKhof_aergkn+Z z)d6LD((HB%6DD}? zi8JAiS79r;dG`Ot7)5>EaX_h-ZgH%t?HkSZt%1`V3`3>d#4=m+?Dl7vAE{X|1_At>O&_=KKlZz=zUYIcBLpvZ%)U z5Md6*LX?Q>KTLT$I8L@2Lhi;Y&v|kaP=2p+B(=I-v&eP8rFJdSQ z3QL%Ze%X$CB0LN#f10%q_{v<8Bt4>xG<7OuUe3vvPv|ErN&{T}rc?<@z~dpxo>MGrSRwMG$o7~cCM zl+UWg0>jnK1%|uMxTc<;(~40%dbMDaBGa=)vcbBn7`};B32I#VDLM+bv5Jcw=fGC< zfUUTZL(ZUo?Cf@*tJacwtV~E%U6V-C`?*l~^Yb+zSKD>Yv4P#zggt0An+59`y_XA$ z^Fc8&;|d%*1~_cU5s5yMuKhOGux`82ZLPc5@P6K?Eh(L9t}(zBg9WvZNB)Gkjm$r# zdc;E-vio~g`ZrxOy451_EqX6kCVNR>iNJ0oU}-u9yFB1_2GGH#o*`<1n2=(e*pEWO z3WfNs&ZBM-2Z7!z-WMP4rxkeeD+oEQB>ruzERFC*4mhA+Ni=K+t@zV4`N{YGKaiN; z|I=;q({}GmXU%;n%(q?4C&gWVrpk?ih9PSbXI_B1G$6FJT{cUzTFho?=FY7wWD-H5 zXTJ_5ei z&*r(PS~=U)#(3k0q*DY4r}y&9P0;rh-KdP+iO$Qj_HWuO4_f1+t?nC5Gkc0o1>Va& zl?8SFz}FMdyzIbsBX}eN-o$%a6kD8|K%)#3B9oslw+*c}Lv9x7P||z3RyQbjxWsN9 zccf9M1_4Exx(TcJ`wIlNM~m53J5=SyfAQ{3&t6~}wTzGiI{?ogOfsjk)lt{0#iOoQ zpB^#;K7Dz%8#w5TYNK2X|d*uoCr}Kn)l2iX%Re?Z(at7+`v(D_a zRV0W@q3VD6T>#C?)CQ^jNo~_Cv~pF?dHPT*cAY+q<@@CB-fdeM59oSFbo-(8K@m9f z4X~kU+d+m)=uwp&Ky~^~$|j7ts`wrpaOVw>eGJI-G^NT-6nc9Sg?w`mTSdgc-$N;{ zXcZ4gnh5BqHndXXh-Tjz3&B_}CN5H2QoL5{;>J68KmU9r{K5kPxC_Wlg1uC?xwP5Q z>eZdIqm^&uozb~Z7jINtmvH$D3*v~eBqSXf!*f17|4tge(1b@nE&H=zeTtNvEmBF! zyy#k|=}PNxtXzVJO1e62=lp=NClEZ+_RxlG#7l`URcxv~`K(o-a+)bBK;YOjiD0#Q zt!CF5N5j}2XEQiA7BPUGU`raeP@%#9fGRy1a&o;}EwAdDS)iuO>u7g6eb;rsSZ*MV zrwO1Nx)4}kR$_>1Uf$$0)O*Wq9oM_vPTP?k^Vri`ho~mOL}6Q;it~Nlfhcv(wCc`n zspT;5_=)c=0fc;9+~t0Y5w1oKgC!-Jb0^{7sQwL$RjHRy?>eUojOB~iad*n{z+784 zWO-Lo?yK4?cvYRYJfKzlXxnJSf~VI$qYU1H`Vi4*%R!*0PruRaI#*H{bDh3OH0!OE zL~!j!)7RO7JbkNa6>K&66~wDRqF@zZZD*qL0YyWOk|6{uwe`_#H)}<$4;ar6e!3htr$?pl>XK5e=u$(85Zse71}DBQ%~{uQiq=bbbfpJGGcIp7J2wK=!pzBUThC zoDn7+Aqt^-g&j8jWSQ64t<}3l*9hb8h>fEy7TQAuBeYhT@*g4qnZdWEKA29sRrp{! z`7RKtlNM)2TxwFqn;@C_D<-x^-}?Mifqim07Navzp1 zQQVJbgrl92VRoMDVcOl|xtf8^f@a{;ZIF7l+h~^cDNqeq1`UQ@)Vv$j2V2prS=~!U zgB51*B^*CS$oegt=hf=AJN0_O6vFYRFw)>eC;sQa8}b_Z#+wX>+!{sIjPg&u(@_6^ z!O7!zZed?!z`R=@^crk&_^}!+?;IPQUg0`U<4hw@M!=?16pdSZ^WWGK^i4n!h zrr+fPSzGO1+l9iVv0Mp`9XoWgh))Eqz*TQrht%9*bt%gjy=t@U&tcl{w=6pS0W{3!6bw3#Ue?T1Ayl`hH;dy>Q|(Ds+ci2il2jG&5+OQ-?qHeEv)|~r zD$qFQbltJ%sA>3B{#XG?5|s2Hb=pN>v?St1z&wvwZ0?`O(5a;!O3yh@VXVmLM(cwi zpAxq(#<~;js}z1^dPVED8b$L4$M;YX(_ISCxV}Lw3Zl(4+H;LsENU95Gu)sg$HKFy z5ukzX8`vR{vpBQLT4FLpPnJ=5-loH4d2Cj_G3xmr0tAVTQ~8dXAa4_Y4wz=Lfepnv z6jrlHe)2w3ACTXHf{ahvui2AGNJhq=A^54piPo+6`>u(GV_*5yZZuvU1%MKMPs**1 z{*O)?6oK-LQoT!9h(A(A4@+ezHO*$Yxa>2F(CUMz(RTTpQ(I-Ru9qIhT$cq6er)Ow zuP#ncp|k(y}>k&$H9- zJ3%fu=7dffCuc5Z%dA#wtPe`+2xNs_gINKoCQb(CXyEynnV|ZA+Qf??WGr3eLz&rD z%`NLi>U5f}Vik@(jSZpoqA~MQYv0x7SyJk0)?0n&X{xa&)sSuFYfNv%kULA)Ws@nG zj|fM;RZnue2uhubwYGaI*4mvXT@rc%E*7RRB$viz@o)y}1IC$FP0Z>%NIq}Cc#%}B zz`s&J?GGDj?w0%L>h2jQCWDtdnhRCJ2+oEF4&3S7oy&HvS_|Y&hH# zz1yF7v8`IY0ZM-kr{(5>f_ZZ!|7n11;#Cx0?V18>6E8m zFNCAw_*Y#bxO3T1T1aTuamvFHWUhSB!@_@YPdNb%*)^El!b65HzamqOLr{==O|_X) zbEl@W@Q-6peKo1eG7V<%{EXKK?O;^Ot$N4mCB=y9;P(f>S>HTLr$B!$&@|#QFH_|n zF6|c@D}K24lLQVcZ+Qpbe*5hKhKvVCM@I(~3xXn~dWuvZV53p-wt-lO3|}C!^rz|y z-^Y~tvzrjA^?)iCFlFiZ+zTr8Zq!>%=iN|aB?Al8F}pqY?{$myvT!d04JB4kgVqI1 zFaUruegNA8I|WOaj5pAtY*ejU=W`Wk8wCa0C!0d{y<-)JEZL{N?jUUVU$p*UhFyX4 zGTyR^l5lL(gbruj*T$vV%9bRhlCAfioPwA|O5TtC%=l!qlP91c!oM+MSEAdjKJ748 zTYDf9W@(m3zBoOVZY)!rgKxqc3U-3|EAP{%PhR~XUrjcpdX&*%$p}bjmo{z5t0ImK z?OUWLWN_wmDlYWYpNnhB9_0F+7o6eOtn;VY3wV|x;#ltX!1opcGH^-;9tVR9wBSM6efn0tS98t@ z7<1p(8*{qkN>59O&R6O60Vc+u9+nF9e}lt@oUfWH+C=cm`ZlExiljEzDfB zDWW)<)%Borz#(->%*&l~Z#ePtI9AYLwdfcYC0}5mTR(rX2Tt+Y;{1r!2BBF%hD$f= zfSd9qoI`0xwnZyD5Rr3qjl*N2p>3i zPRR&P`wXEHGio@egKw*hS8A-;=z+Ri{zcH(uRj5awEp+t;q`ES-hNAk8c2j#YE39T6Lq zZ<$q~<1FyAOG2PW@ag z#|mK3@#68;k_xr1RxR3C=uRG&(|AE$9|2_f(8(|J3c%FbbpSLVDmeD5L@Tv|Xyq#$4GM#mp}(GjB9T}X zNXH)&dbN46FuO4@NB}7d1!&UoL=VP1O$w_M{-fG#eURpl0=1J=2E>ZjWKS5jJ+ zv8){xy+1z5UP!o($+!I8kZ&R3*;%lw>f1jUEoVQ`*P79SKx^K)rXBCz8#f17@9!F| zL}sO7_FKnV0s9_%>4`}F%g<4KK|kwH@8Gv0{u)>uU;+7_(r0W%rEE z)xHNd3~2Nepc&X=VPR1uDxvU;A1Y2W;54mNEC%ZrOTxUnlcAAOp*D~UWW67Mqn9H_Wh1q?f) zphQY$b4ymyHl~>H4f;ZrzmRWVWSoWY$uX*gl-+c9KN0l6N@NY_$1$dXXQUZ+U&7$N z#1N&~>($$i?SRH|Lr2E5%Q9!=@ck*kX!K;Z@Waz!Q7X%+Uh6p-LpbK@@Z4>0rF$ho z)&lIf{UyE;aPH)kwhV54s1@L9EAr{;QfFW(_E;?9OzWr|P5l<`?D4t^T#PCkf9R40 znoEH51eyy-&^15K0*2nCB*72(!@ob^ zFK5nIGwyVWYKM)Vo**ngKYf%EPSwjjEO}YL0uH4j6_!NX;7~QD%d(~r|SGR5dQ%PAO?Y)GVgn@*Q+&(CJc-_@57FJ*zoG~oo%t6b+_@? zpHalZUZOYTWlo$)THm-se0_kS72y-r77Dki#O1l)b4oMOSZ){qWf|54Ct2Q=I`TAJ zfQ=iTHr96PwQ4)x+XtJW!CE+?=n`xJzF|Wa^^6D@Kg10ZCp-?T5cJ}q zeCQy-)5aE{3nW4HM?gd)*A%{v)k#!W(MC+zC?W|-%Uuh8QR`l+)KV?%B`)RNPPbQ} zDnR4=^Jd7|5>xe&`XsDNLPA3tKr{6<-K$#Q2)9kvsS2Xr3bP5`co;$JbJ-tyd z*xo`dIWMWk`%QVJRKW>jBT$1KR(!AOT|wCeHy$DKm^P!>BtsDokYW*{mbhVwhf-(W zDDg2h8cml?AdT%)!3>vNlJ-!gk-5fp9hhYfZ%NlnOM9|QRh~&zYHvC}J{evgUrgR! zd}0zlc4;@(Im}~hN7xpTT6;I+2!b>A$WVs z&0{PzL%Y8!y@p9V#$XLjNd7WX{|yWct^A{{*b)Fihc}M~46R!cn8^DoC%`-Z0g5hg zOm(c6FQ&nr4|Jn-arJTwD%d`5R1lrdfxe9BfAurmZ9;Aj3gsI4p;QxWrWUSvi3^JO zl(Y5>wSB&?7 zNH|HZYQKCT2jbTnK2fPw%Dnh?v+2Be7%RB=ltPF_AcIcty{6pKocGW-wR{cDW~*O! zX`RxTJ0?f;eBzy6j^5MbOAKn%PZ;$oBWion{sC&&?_nKJz20FqE`pE&_u)eVtchX5 zHZsL0L|b5~FWRt8Q?P`l7a)-mPPM>tTqBWk*(?~19DRQ>MooG|KvTk;h_u$+2xxKQ z`ga#jo>4EdsUDb%NljyUkMnK1P-eH^r@Qy#Rq zOaWwNVW`KLDlxDG=_YC;qx7ld$60STobeToxw{~{_}0Yhw2oA~VdrW1`XJ6Jild`> zuu^vwyJmyS6IhCzfBX8Q;mLpjK+W@D*WKw%cGxC$ppdA|v5sivgv zY9Vm&B9h?9E()1QgR!uQN9O8p1`D)W<3xD3L^4=G8TG?fJyF3||(0#l~fAg>oyvgBE_-sn0rX&ifknF<57c%3GWYa&rafO!~c_Cj$UYq2AE>tDX$ zvKv~1sK<5{sEeOz<6BhX0AZG#uK8x+PdSs?M7_38(?%BbSkC7@V zgEw5O@~QHy9YFI;;y#xiPSiSeXL^idxvQ%n2dyo^bV2|ukQTE1-(C^Uq&vEKT&2&| zP9^jTh|;|af0e)rejC76U*;X}_iN5O4r9)wk>D316F{3S(gC!;dbzex4XAdx`06?^Zmu-0yH(toEXiP zdt$)Yo|9%9dJtDt>&r?eh}yqV4g$`4csd$f!E<;fsn2@5-*H7DG?wock}-hK-)|2!&KWo7}H-dWyFXnB%kZxK+={{pH0)*>%%d}B~ink zvv&l{+y#pj*8~n8=C>#zbYRD{2kNvC?u&{L*1s(8Vx)%Sbz^h0+&sV4?7Ek*X1AaX zk?u1<@C)_$M!Q1~#(|Z>UBuKS%^pepBJM<^ob%h^*kUM`THL62-Ng+xmS5ahuEGV? zx6Oia|L_xb(UbqRVClI^X&rYdt@GqkTH8DGA9E{d(mQ1skEl{`R%qLNi9rTAp=@*{ ziyi9nssQy?x7H~zgrV`hR%QAU2>P&HVG0N6=5m6(RNLblR zW<~k9gfh7roV@>FpkY<-B(a_1>0?(HAJ32BGt=!x7p}0|MO~wEjhP$$TFYg`Nn`mP zjtHH$*knxWS76gNO!U85!&&3Ct=);Z@vxd#ZHV3sZNb$glam9@cdSV9>$-E3Ocl(! zy=6`vbqiWWQwPS2UxPGDjYLa4LPbF7hS<0yx=6ClMkzI!sa^d@i$_)dP|>#(TDAZZf1C`<=k5@Qbt@v0NGiZQL z;{E6^0ON=mY96!PP|4{-X)?JX2Z!ifTjK0)_8Uz{xJ6?Q*ivBMIR-`e<`!|}tCnP& zo}`|e`r>b2-Td~|UmspiU!zJ;WbSO4Z*8y9Xu9577%RdQncfl1vG4saKFgBgW${H_ zez+_#tI9Pu3b%t~_Db=NvG5!aI(rjVH|oB>s;K|2y#B7lnNsW5U4~FJmJh~IIl?&Ds1PHiSPP9P3ajar z74$;5L4uNxNJLPmHx#OW9bO!d{tZA}gVc+xMwuYhccnkFdKi%d@T;wYu=p4#?W&0dlH z9F03!dJ;yHNz(zAb>{KxfUZQvK7#lo^Q<^!jZVAelE9_0y|_zVqMxni!A(j9a!Aoad1u@0cN?yy z1;>g!yhJ8P&b*rZby3CVE)!vmehCDVgulZFc&yBeP|24oLclTCMaYUMwG@sLD&JL5 z)g%BrTc6eGO7~Bz_dB(&t4xVwxl9;{xuxk%0812)T@qOCR_mif#}sNLQw_}3 z0E|)z|LRV6TP_0}8Y_7*@3gxvmjD_oq^*e}8m?r3%&w9ebMhF?s!-BMDfFWE>|FhU zEa^e@0xI$>QLVmmw~ixnb0KX4e0-+YTX*_@Y-{{HxZ*HoYcYQ|Y1A+xlvF0HvM)e^8h+Fhq^-RJIKx&Xz51v$@ zDWFB&$_j)#orW_IhB3Fsr)V8BT`OVnJM`bO1cu6b5Z#_j^@PUUCu)?IccGBaaGu>p z$K|<7V+A6~YZb>syH#V65H3h_CrpxUkl5~Q>PjLNHV`6wLlS`WuM#h(-Ko1s{WO-_ z(ZsqfT6E$3o+2oLRm-g20P}9P*Hjssh#j zs64w;T-)8~X+OEqQ}@oWL7OYmZ)s-C7JibT99{wi31Eg2S@a%tXStb3%Aa>Wfg7b2 z%;F6XtOg@e3L4ds!bF7$01w8S?L3TOxdbwj_o_NiR=snF2Nzo{x5_ z(*iZd0=A}Bx{p}a?d*1HMYRPS&$*o**5QL4yLPz;%Qz=8!owf8qpmkLDV7L{Yf3wpupwHVVdVJy9$ z+237KNiFN`Zl_(~Dof+}t)*<-%KosLypxLIv&5hC>yMYmgURUQNtz;r{JBsg7Aeuz z8g^B05P21D!&HE>q$0EAv%nJq4h>(vK*d9((BNk&R%G zC!_O;{ihGtW0}vTo(Hk8`+qK&1tbi7e%K(u z<`rOHNb#l$Oz!!i`Li^KPyrA2BWp~zJuzO%8wjHL;ma4gX_^}IqeqH}EDda}zb%p# zNcP0arOo3}??5=iIV4BZb`_r)fL5e}z0tzu>=kVj#dP)szaBiAjpbIqw$sO7YmT+{%&|QUNQQM)suiXKuUIKU)38c9*BZba3eFYBi#op6y+jJ3 zR*A>hmbAu8(u_#2G%6t~+7NMk&xz|7nM7d{0nHguPl5^!7;#SVyf&r-Q|4}=a-yP* z4afIf4D=!s(^C%~kk@V;I@D~Uzg1u_r)M@#!x&3^K|8H_--WBev7%&_AXJnfr58C} z?jvuRM+)QEi-1r4MYbw^M5XLupEVX>apn1Fn93Yj=5qM#d zk};|v&I!qHlY|Wdp^f-QG-rzo3O}qLRgo#s<$>CJl=Xkw{U+2NLn(*a=S7lQNQb_^ zW6@-?c}i$+M#**KtK8 zFjjEO)9F2fu~7}Jgakizmd$3z2-h70pSW4YZ5 z1UcEf*_*9Ofw+=Df*~ma?d8R|%&fK3DdODF_|wjt&y~=*TI=HmMafYsjW&iT#*QsU#3GJBVQfBb{U z(4vknFf>$n%|tz;yj{#NoKm!K3v_SgQc#vseNfcXW=OoIihl7)=3*h41 z#oOCE;>m){r`kRNtR^N;N%#e995+ZK$n$69yrt9oj3;mwtC<-ue6Q21)oSVr6ZLQx zrMBB@^>)7~XvXo}T0^{Ez|Dp97Ry>YkCtIo$OB7Dql-lL4zR#k#ZGapX8! zb48)Dhx>3T0lvk|`9>|W(v12>W!C)9a+ni4H@Q=o%i?%(E_;Vs=>`tW`1kNOk|K$v z6pPLZDxyGYuzHIs-&FKvu^V@gkfWrJ(W=(CX7@l!AN()sa*(|fvOQ~B9lOL^RO|O@ zMUZkD-;=yq&vrM9#$^Dq0K8H*WV8|0lH!%P&DL5qr(6P#l?>dib(=117LDz>eOj59 zfs>$uYTZJ7{d8sw6Qnv-Z%p*Z`v1l~D{SBHSRr9FeuQZZXfsUxHRd%cU)v_Qmh1?Q zF8v2^k(GMiJTQMK5k=hZwp~#ejpY_l(b9gWftNP8XTaiIZ8Gcl5!X$qXNMbhAi$L* zN?FvAIB^KY$Q8LoRre^7m>#U4e=!I^@c_&cUZonb*d-@6?`sTq1Ce;1r^wHob8AUg z_(!?2uJu~8-*lxIIQFC&rnw|y27x^Tq=(Y;Pz&{Ji<1k*C{p&~I4M=gLnG=I+-;T% z{D%rs64Z}+{=RF&9d9`&FCc z?K%kNkGioJuZ>1_4gOWv9z56@^`V;-Eb~Meq4{|=7*0mV?=DV{!I;`KcIoHILWyM{ zRq~Mnt*fOtujBjSVluwGm|TrcM}zTbczQDYA=Uil-=NzXrfBun*XerzYsVK-#R*a$ z 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

rS4QO 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

VNp733x8q_@ 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

    (r7#*IONFl*Rs(+ia})?$75kAusWHo;@@j)5dAF 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
      *JPrGF-HeZPWpDSa6}@&>xe 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�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

      $&dWj&|EgzuW!mZ(?Abanq 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%0DSYGGb2dw9 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

      `lT&)Y>nMg^B2|5jZw_f9+0gQSD&o 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

      m)uu9d6x-Lxm*#Mf}$nmB%fJ4)nfKimLlI&b9 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

      gVmb+zy#ZRU83`*OY$G#7X3;&j` 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

      !BU}q)krE;7j3Aesz24Y) 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

      L zG3#gg2cC9NTqoCcgk^_rT*hVe(<%yuSGIe2SZCpp;`TQfU3B>)d({4+{RwpSs()Cf z_CEyaRb+-dkEd{y10voKvRo+trY4OpFs#Lj$=?!Bl;4v$;^_kwfbl+Sd7lP`c$GPd~Gx>rTT1KEa*8s?nMGuxYfKPSb1K$I{P;`VPr;c%&UMg>EiN7T-3Bx{m zY6Iw0(uv&L;~zRkE{P;)v>h|Qad!X zOrt2lq)_wj7n=`49s4H-M>~I^BHp#h)?}$}vlF*;3^e-Lt9Bwsu3J)H*v)5Ma{C zBmYm251;Sro}(Y6vuBJDi$R`Ni?Em)C1+M{M{+;S(M2h@O8Phj%8n+nA<3Hce7&IE- zrip4!0%tJ^G0z8G!5;|J_d2>t2yX6N{EH~P5#a8PNv(iI?W=o;j|G5YGf8@Wl2hrsuxs12l_rJa0zSmy;_S@FI2lpRrJovg%{~P}M>uFD% zGves!zRAYD<+WCOqt#x?)Wa1B%o}Gbg2O*cuLQpzr>)*-H2>DPzp;V;KDd96w#eFs z+$tLn9;`Y0e{CIJN2|Z({vTZ=gQ9Yx*!lT?-u?$bGBw%Kq)XwHaX-Nvf0J=KsEATO zpm&J14nBN<7wUI36_p^0!qqsLOyVH~r9B!?MTMv0*86X;>;s&|`))Eo?+C;LyqHWz zot2dlR5B8kUd3l|zn{ddUV3TOjtdbgV72dFfJc5h0*B&9ad#*#jc4MYA9`oYS$aOX z>W<^qFc#wQ%1VXs2}MC1-38pm2I6*>j>n<}LOtz>LTHbCu?~ZS7XH5!Y~Dk0;TT8% zPh84kS!DOwGgahioD8DJY5#2|E+h2zZ;x_bR`6Z}CgBVkix$>aSHE3uuP(3M6W69g znSgg3i>qRWP3iad#e4d)A6=wZ(blkg89zk8M?v+s7nI;3ifZT6A>I*Xi5dj!PA<9= zs10;M;=b4gQ`Uhhw;fd}oglqY-)HoqpAKu2=xscq+X`e07Olw^O%KXJAF{G zok5gvM#v~2`yycNzYie#_a}v4lKp!xr7lI0`0yki4Z08=A*9sfbB)2CQJ9tfE#9(^ zo(Pd8%BJHO2WXY*bd+BPVytvC)Ez>?a7yC*9^sv*ah6{liS}TorlKI+D@%2!V;SMF z4OK6NfhlrB(=yiDP!{VS$N!opI;*tq5QSj!n@Pi>(`EV|BQ;PPYTa%mTsl%5wiba# zCRwcZ&|ccJDmx&Aw5depl?olP4&Elc=n7Fr@$Strh9TUf4@&|Js#r#ilrA&yQ8pco zP(eH4Q~U%w4%pfk@n8hmO$IMbOhE|tY{HynuSJ(CGf?326g-pk-nlvi# z?GJhjz(U)U$xu|p0XT1g{T>3+Xa(#3VLqOI^tfv_hpvh~>mt79C4~8n(=%~&SW^QV zF8}jG{g{2UD|Y&DIzqmXj;_bBucG#M-+j9*_SHR?gNQvXeqH>akLOl8e)|wUelEs+ zl=R|Z7PltiwusESFD_i;L~pS@1^urslHLUc&?{~kU3RZwoc#pQNYADd zz>BPWlMH)LIe<)G{sE@(@jxVdKjCP3I*GW1%_J(&Dw|ADX5<= zrCtRA-bf8&a*R=RNWCz9f_A;YY9x$6u3HHykLtQ?!E`ANm+|We zI&tu{lqFnZSTarblTx3pnT*q-PclwVHfjChPh4$T;F;DN2A**W}&;B++1ck1y)Pm&Qs6t-p!lOg;Kp>)1JS3aV1bG3IUcLU}Hp2?^;K;7InoZ zQxa&*GcAG-eW6>F7pow~3&ld#1y@d)w-zKVu?h)PE^Bn6>Z^&7SF--Ol+c(1v{Dem z${eYA6mn9nTXQ(E5-{rS(y{$GUqmbwDf(yv01(kykN;(R^)*}pbmyutIqlU*o{CxY zYPGVU4;on4!|CN&JhsGlF=@%ae`!$klW)JKfV#eaGSQsW> z9*VK(%@&A-qTxw3NEedk z0)MlJWEt1W&kRm1N)*d&*eGyOiDc>=g^i&%N-ap?e-efN8KKoH`X^FUMu-rW@f0~j z`#!ki_5=e47Hj3^DM$R}shUH=`8 zyC7D9-PkI)9Qy^=yn^j;!F8|TTDahbS8)9`aW3hok5Y!_TUiW&5B&aN#f{Z%%?6<9 zfdg4Hs=oQ5+7z<+x2q;aZm5==3Z70cMIEg-ZXJRuKAjr|95aY7;ntCf;wwba(`7cS% zvxy)If+^J-n^vF+t=R`lI>+6qrIHyOQlDj}?>iC_s=fT+at3h8g|w&5#as=oV7FxD~{xTEe+d&e&x z9qs@1#qsm~J&EILLWkgf025(-L8ZW(80^Pn;kUNI-7m+=l$?c2b0`Q5aj zNEv#EUn6-LbSfsTwUaL-FKwyc*6hYyJTN@B-F=gTGER{LJSz$8a=2@N%MecDKoXsV zz$?I{1Q`Z|K?CH2i=-vj!KL^k?uci@RzD^ss*uy^i?dV|6mO76(c3J=2dt<#cTuSb zL2zTi68f5sB}dix7{M4ykL^007LKeN1&4%;naZ0t!#F`47Z}qJkT*?vJ|w}(Mj%VZ z1DT)8ut?&ON)6#2=sH5&a8Q?Z<^Yt6;vs?9#!9e3CVOH^a)Q5gi zq7|M#*^iTcRSiHrzp8~E@-)ozq1!N^`p-X)r-B6keH5*INs1~W{D%7i!l!ngA3o^> zvN7@H6Qp-B6}=;J4rs7PltiH84b1(BRMq2 zt(Jk8@AEU{?sJ>7Zdme+`5w*~SSz_$H||n2IdGla#d(?Md^tNeQO~SC@JxU=fg@au z1{RK&eFNM5K9JD)n-a67mT-P&{iBUVwMxu8!|(CDwrpViS_*s+*g4tFx=(;$?ni zS~#3ppJnF_Y!yttARUR8;QojCoZxziwj|IX!7GVOKrR}WN>7~MwUzQ+3#QM>TQ8d` zRpTIj+wEOzqb6D!APW}W11~@)b~fk^-$|3HSjp$(lu((H$?dzvXS4cgBP^F7Xr^9f zhS-r?p)Zel6(*Si2&(&fHhH<9*^Uh%#MDTaV$Z?86Nkw-?t!*a%+1wBj2CvX>cBt^ zepqNw1UrgjMu{-0O7IP-XB{i^xMgYa*V1AzjXQMCQo~Av12#dSxmS>hOPkE;2qY!0 zFT{G)Ny`XXIF`!%S1~D-lYhr1Ycwi$1-%4GCWGrasw+H`83!YCcTnXZRkJkb<&+Mk zgpM0-Gx9YPb2Yp6sqL=cuHE%dZFl2#?QYzr-H-Ep62yAqW;noR`VOagx?9K7T3TPGZq3@mb?e=WaY#PL%F(0!3$DaUz@=C{yEJc;Zb%8{BM*9 z-Y1xG+=04q_u`2s%C)tq)X?BR2UPWr_|n*t@|=|cAufvZK$^6`ZU_EMa{L@P zhj&^mOmUP=t`CQkdKC(_WPQ~JxHUk)rT+eKIByNx1ZBy400FLS0zLyy*R2r3^3c8P zWuilTzbNV#=GO)n@N)&C7NKd9D6t~1BP%*AHLF-)QNBMK4-qxyT?-(DL z>;zwAYLgC6mQl?x87Uu&ouhroTskT2B*)7%h|#1W`rxWz*VCR|j|HG4PYG{&=9rzE zN+o~dIVB5cV7blafW#a#+iz)~OVXnRgFZJZ@wdt0ptzW70(%_y*&=mI>?0yA6WGX2 z%<}muvl*lw80k164}(e=j}i%19H|cOn|ngq;5|@;QiLHz#DC$1MU8+RGu#JQ>$*$E?%H z0%7Y&8hI$~Lar~1HpL)uoNw9w#nNE!dk}|TST6%UT(dFmJ_+Pbc}or+>7Wo0*P37vb*PJ&}Z-_11}4Ec#C4b>7-fvWG0Cg8KDV_Vc#H8=#`t^{3* z93|K01qO>s$)MInzSQ@7_QT+C2RVYtfB~&q8*(eOuy)JyrGVPXyIbBY*=0OL{Y8%vhNomPxBz|PDrTxldt-t6IW(^45Lqh) zKAFg+Xl#4&$Th#Xooh#w8(d%PEoO}JItdG1v(@T?@uvs@OukEp{j>^x;99;0r{SoYoL6z#P+mJ+Z39f{jSk4tHx0#S zs1N)eAtEh0o1UMG7i&1$3=^hSG_2Vbss5%TnMw{@mcF|59jZmH5MZQt!E}YP4z-q> z^zBtQb5t4jdiOYIXn})c+2yFt7Dp3D->@=#;%ZPw?=}Y_hZ7q8#__NA>rM8&J;(kR z#n)c5gT`PJ%Kq)8G;G;1m2kkGa&<>=w0W}UTW-hYi@6w;`7Dn)$>U(3)Vz4}$#uh=0ti6$CpkurGNfl-T2%o2Mco~s(bD=rZK zCu9G_sYJ6&L3x0t`~`}fd+zVJv9zTy$7k0#oWJ> z(ReUQN-zRfP6{%U@#k0W(s%o9Pk-eQ$m+~)Ncgp zbs(zl5Io~N)!~M+LCOox4}MsjYUZSEx7fT7?5t7wifh;K#EgpDk(C-9&RK8s;(d(N z)QL1R8eR1{8X$$BGqA&EZOGmHPBDP(1*>ZX*Al0=iZ3o%yr`(&ect8^5CM+nGjTz% ziSY>L=rU;1iBBcJPS%NzqhmIjd<vl*x>MOsJur`Lrrr{LHvrqzlSS}j;#_s{1DsT!%y=xw9+VAx{ z_FMs@ssuDED+tey8&uD~VR_5iB80Ii-KaJa^8O^ftYL&IFidbZ>W)TnSE@k3_h=;k z#g~a+Cwz#Np_fumh$|Wn_KpqerJvrzmc`C}v< z0F)^|dkM?pqZK$?l~?cx!cC)gwOR0Xt?=!7;oA-8?W*~CvpGA2_@^;U?D%(xBrXUl z#)%CEJQv2j^468rut^Le2%szLRUo?Zz-<=M34nAZGG4XmI)gO*g#pLPe7K!o@n65< zzxw#E587+%U-4hR;=cfVK!d+}_^+oI@nA470&FqE>OJa?zak_V33H2 zlc0+R$1;Sw%{ID;Vj94#I~Yzc9lwWV?)UJfHUsGfm+mKG-6+jiuAmx}K!XrAe=r1_ zK*4)n!Hsai`(D9&h>4>eXat2_RJq&X(3C`Y$@SVleY}69Qxw^;bY3uR(9@eLuwwtn zPlZR6%xL%Y`N{sylThnc1gi9z3`Sn$2b13fg64Fvp5AX(mimIwIji4$$Gbo7|DC6L zx6&(`_8yubJq`Hy4UewL4fFgQ*CThJeaa(EV7+<|=s*N?Xqy?49a<55 z24_zP|EN5XEXW-^hm(xp5&P-%3>?S_zc8XxvQiYWJnu|~!mj=isIA^GXpyL16kt+&MbjInA$dW9|y=Aoft5 z_vWti#p(V@yX=|lFRITA0b#ddiH;r+$86D|;Aq+^1X!3;D!EPIwk4+AK3v;9`SWY~ zAu!@{o#aRCob}gA*I#A`e=1X(X6e5P(uZ||efA)E=a2}DX#SI`7?0xfNNzcC!RX=x zK3Rw^=sITAWKbg|qEue9Cge~0mP0L6B*VH83J?;`fG>M?jS-Xy0WG70ExMj3!`>J} zW8rJ8+I%%iGxQ;#=*m7gZdzT#w%|TqRW5tgRyf4@bE#g)$TuVI8RqA+#kHEK)EVDH zscI8~W!x%uCi{ado>4=0(n5E-CfM_34K}d~Baneqfxxm`hQI!PadS_Sq2thET#Jf> z>w>XzFV(PK^B7kr94(Lrgon`T6}XuT9bXs~_bEYf3tnKZ_6Z8Q1QiU=REY}{(_TZa z=;Am8I0{VkfrhpB{mXKtcKNl*^DX$y6Ty$B(gRh9M#<&$QaPn|p{P#!q&`sozmTgy z^BOHHyDR4*a{#m4-2Bz0-KC_2=Q=#HGe8c+$t=!1=bWpA?%Si&Ctvl&&#@mqBF_x&!7YpqRw{#h5ML%2i^E`$%^SI1SkbaZnlEysJGLY9?pR|Q4>_{Oa zX4NMAxD*26g#O+cB;72gzjeqC{t{FkxA89_{>dE;KUXW@QxDlUyji6D|*zW)XNdenw_4PNoyMg{l@MuudTN4 zgY($mr|-Li=vjA^WEasE{`x`uuaF-=)$-;2$ABo$kN1u{mCETTj{B$R??%~=$Dovo zE+&@)N?cyqO90YA$TbNl?Nxpw8IS-fHI>Ua6XQM}p)RJ~i5^`?+4bdFDhf^Dt$DfD ziFTOzaym=^)QB<|(idJbf3Xp&b*+>^va71**GJEll@{ZKJQKk6Eln=$2;>BV@1S%fa^?mC>9H) zsx}1>I4_+5qzTUjNK3OffLWDLg76Ju2@aCpB&$HhD#-W@*6{P4(;uJgocxH^Ca*I$W@VSmGj44~OJBxzqD==hTDc|J zPTUkH5}=e|s5!$D6{n_#IafjXy1SxI;(VDYggi}DUct>go(fhZ%ZP`%@7iFp={`8U z9!|O+P~7m|Ns8n>e+nUFH{R#oKDc^X)FVDN3vF!tyTCRAq0aYN_74Z zVclwnx2m)IrOc>-?#R{dbOl}Y(vd`1Mj2V#dM;sOEX$a424k#)dU0ot(ga?}m8Y<7 zV7^c|Z$;H|YvX@ihBp&3vIRc=TZr)ps z6o7BF(5JXyds82bd5s_2H4%fb#Iza&3yY6JWUbjaIwli zuvS3sH+Pp;mi}yghwCD@{PyD3L#w!6EV-Zja;Hky0NfDolksFKuG_yd3bD6v2RYq6 zeDh@g`QzigNOUF^EL4<9-^b%IK-8(@pdW+x4|0o5{e6OoZ}sPY6UQ)QA8N=G-m63k zdxQ7K<3yab-GQmff*N3TD(3MNu7{zH$vSaOw4BnpJyqqNUytHCZyIitWgEed@q^jJ z*pqr5%?syk)T_X0*t!t~Mk-c`)uz~qO{=%>y93q-Ur-B;#^TClM__+6djzaJULb~c zzpq%gH$#hBto%=ccsSfs2y{y$x`xka5KMYsutnXZvrm%u;}a0vgIE%WafEX7{tis{Uvl zol95pucunwq0(&+Wm(KFv8oP0UjB}e7b>nk0>5e(ezlhK)mq_K>p5So7k;(jf910W zL^yhq_Qln&M_C-Uk@Rvlb;V}JG##%7Pva}q2L1q5M_mwnlPS*_wHLRkm~}PMua_S> zU&A#x(7RPzPGw8RD~&5Cz{TXs`4ar>qZFdFnvqmubyYxKGMP9khQuY1f&@HX?i|T+ zd}oiqi?;O!d-VwY?u^1T^3<%GS_{>45^Pvn2@K(;o6FNUgUl7^@}gUmDI6>rnCm?7 zy>dA|K0czz42H|)uG+Hxta1(NIpf-{XD9p5PL6l?Pfy8dQOnVAU+{)2swTF@2sPnbia0+BJsnWy`ZYrsS5mb!KLok zTCtuIsCJa5@1irAu7|+yr0I*4JD@rggcBmPxD+Krxim#dFx7!N3RV4C3$1&CVSxn^ zd_i&ho)fer6+tBTH0n(!Q9r$c42JZgmPKdDBvX^_X7LHo9lOhXc)6YsQ$*|r7j<|& znfMyFmP2plhij0V4z=K+_g0jGrFyr1W)tTvLA!a6-n2sx*Fq21wH`s51dwtMr6*oJ zmsSYT;8VachU8ifpcTH_Wub$?G`oPv3s`ppvF;EbSTZ%R@0!F=P?CS|J4eelcz3wJ zb*M}B76e>HXM!;Tb(jv9^(u$;+0^<`scc2%z&JKJ$^yx{`f+an<`C4X0}@`Q6bOa^ z1Q!{)&MLQDZjtj|a08tGl?p+M{C5=o6#3>LT3v-CTyso8YV{RyIwz3`)rfYGVW z&zF|^9T|(ocNX&38VG!ccfIn*EqYNMMs$+DtFRpvy*L~sF9eZ^T zYiNx0Dt9ezb)7v%`&)+yc~>3=kVMz5Ghn8}=?OAF*Pdc#CSO9xG4=7NFEu7I&LVkO z_`#=iEh$s(hM$lYcL+&Fr8xwJd*PQd>WV`_2lzmM4ZGuKK&@upCAF4<)bi`J?5KLE zu|&j&It3fPiX|%NWs>y}M!p*@sWd5B97iilD@$%Q%geCZie}yE{}S*2O3D6%=X^o` zmvZ~Rvc&o?y1z1K|Jk2*NhVL-0wAYpr8dzRwG>vl`r-V%L2S?yqlI{BM-2sJPI*3h z_&bKwVJI6t(%=onf7SM`cW%`Zqep-3c+OkTOODKLO)P@Pl&FG39@E|PZ9I&}pfny_ zx9rZz#rLbd_@or7XNA-LA>~-tE*W7ZoHy3n3|BiRFbE-ci?M*~aVU;? z7}{$2Ro=|Hk@(C$zcK|y9lV!RxRZ?xd6UGTEAJ_(d$uFKt~SjIumbma+^ZG7Pi4TF zOIa197D+|%+fptlY?S1rg5^3heMKyPr(7Qxt8xmwwyPF{`YF~RZG+1cTm^>LlM6Uk z6s)p1SuWxaEfhj8yVqypi}3sLlJ+dk{P{6DC6Yq z+jv}!Mi*m2W>2;w|32^T$Ey|30vaH%|a zok!?=TJJyI3sQOxVu$F>NuIX>1~xr1n;zktVu;EUtJVv<*4VCfSeu(d5@M(%iTp!- z28F(4XUfml&2Pf$xe9tFvxg<_N==`1CXrYm1T5}gPFSw*hUwKH?!S%UNDxG)tm@() zadm=|KApam!4&jfT#z7;;{xFAhmbh~lk%nKex59+10kh6_dyqkT>x{mY#C;C}(R&ew_f#)%B<%|-*C%TyA zX$>l~!AzHY8-H*!Jx}ZlmQF>^yt*CbW!glB@tpmcl}4 zDP>dHduASW9tMdsYt`g!tJ0+T4fY>tt)SY&>J%jyoWxQ5A<+q^Kqmmolj)@ert2IhGgxZVSfea(K>2|T+A^>Ti(FElRKG(Qj1E^!>$tOHl>zBD8(ff)f( z$76zP9Tnwd4fd=#b1>Ahi$AMF&+dDUvY)^vM zkQ2%PGImn7xn%6$NQpKu}1V`XSI1kM@==%t|40{<21|71riiG}vQJ4pIk zYCzgYM0`Qy{o|vVtBzgd8l@*xVtM`-&Zu{}EW@-Ij;uxCCHP;AQA6Aege1(2_>Q&` zv=e5nXlKyPn!x3+P%0r~3T#_aIY(9S99)KdKk4Y~@9yX^Y%&_hz4Yxc`M2N`U2qY= zG{TQCoYJ>6mtd@wkoxh~$Fsjfd`W2LiG35W?=BYU0IVaxoV`WgOVa_vF3>i)+^YSW z3w>TgJLZO{T8D z3BGGwP;+2{nL^8k3T7{I;DTA@7GN+!gx0P3X0EUp{KK{s!*C5eHrNMv!wx`P5WIzV zV_(cKEb&(yuNe-u8oXZTS4dtsq)8DZ2uOXqO5h_uF}TxpCtO8h^IxM(lGszzAvV-+ zh5Kx&dqW2&rz{Km54a&YzT{|A4q4b)Zm<$$49FK=Q-H%D-Nc#ShWv3}%WrDt=pB^X z8OQo8yjw#s8=F=!$N)aAMdKh!t+VtAt=1WB0cx$)fYlodzjj829LLtJu>_i}ry(y! zwGFL~BK6?Bhez=2VhFj`2x-D$_2Go)x#PWfSl2`#ye3!_ferthAW1UJF@HIlT+3aq zH$8&UWoh&_d5=<22FO}Q6vJ=IQ?wphfqDtRA{6)2@Z!mti9A3-@bIG5Oe3YYif z_%A2>r>9Ljj*ds6Hlu3y3=nx8bcwI9oL}*OzvBP?j``m=9z0n4x(mPJ|2p`;qg#Og z&d&e7cE9cBe_vbQSpSOu`^Uxq9c6*k?-I}|0eG$i)SZFE@9pot`*wLvOgaGgmcRi1 zngjknBL{pSv-=Ln+jSpg)zPr z6LXoo9m0*gZiP!Z$>`Osb=yvf)TuQJa?ZnELX}-*fn$+C^N*$g8BIV`jv@_j9!DBn zE};6%dr9|LdgIZ)ViY-G#W);_kGccAHB+$}C^uFHH6v0}V@Fk!YL6g@S}N z0~WK_Xe=nZRYEnAIV{86Dwz00yF5~|m4d3^E=D>R>|&@!ycMdhLFE-1liO$2n$?0# zB?MFMKVQswzNu0VDP=z{i05ft&JX1!eojp*Vag{9@TwZZ^EVig} zvJl(WPQ_TTa2In2rG}Kq>^u}S5?cEC71&vU!c>Wtqc$JskNbaD38rsL%sHuPk#p{E zWs)IN#atEK6!X*DB5Q(~zIq z(M%-AA*sMp)=;7ZXF5Uw4Y^%Qa=Vt|b}K6j2LV~Fi9jq0iIfzx;L%KGK!jz%Hp#%p zoC#z&U!Pz;>B|;2qcW@yQ^<*sOeD7H7^dL)e$;ZiAcZ!th$lk`%%V_Q#E%BPEoIS2 zh;CRvKwO+Lkm-|y-L-Gm)*=jrR(Qaso`gY7Td}%0#FjdKb56hf#GJE8&eMIC%nj+A z1x=brw)*5^5q#7bzLM7}UmJ;6N~lUmBvI?@;kF9KGxarqrzq|Nj%my^QBTME?=xBY zGM)f_n%sC%GEw=-?Cu$ubn!YM_b^FEE&nDHVSs0;K?FpMP1UH`HNZ>EPSJV%D66hI z9M2XmI^BrWJe9eUFZJ=;5jzTPwF3f;XSUy^Du+BUAo%`(1)Q78j;>-~es_ zjE!|1Viy4i_B?90?ybXTtLv)|*4loe-7m`@%@+Ekw79CK-zm54=S>rfNCKh zHohS$wP9(-;3thWSBB!$u|nK}R1o?TZsndoIjj{gf4da1!5p!cY)XvCCLB2kEuesI zvQo;TWQg-U8+1ZOA7l+g7oK6`eLM(2tNF$*WR+C2$rY);ypv;6<5@WaJvA9eEzxR$ z85nb#Am{NXJEuQdNj}xU84X$D&2YkIm2~qn<Q2Jc4hn?hCHD1&S86IS3YmS6GW<4bSeg=b6jxl8PZ7~lDz`!;ioxq+EwGIZXgMuNGR z+U`WZhP!C1c>IJIXmC}h93UsFl%~Nnq;QZLOXsuwljn!~r%nGR0?9|=PnCC6KlYmY zT@0UJ?SEhGf1dsC+xrjhefQP=_tpMq+5fI57wPae2Eao5Ut4VdjSbiScdvc#tNrhf zYX6f9!7~8L7X@a&wXbHsKV16DQ|t=Nm0kRIvn%R1yWL4F#(e#WxiqI|*o*8lWzzgI zX*5@sqNgc9R)flOnU+V^F@Iv5nEHD(jsaz@Puf@j_HMmxMduKFiK<$$=E0PQI;`&a zESZb}Haq?>0{1+H!uIi|72z(Mr0-$_%*IPWn{WVNh*5G5b&4X_5g>Z;z{BqFTJ}v; zxz8$q&DW!-P@;%WHQ{cuE&k zUn9X9{xuck>&v`s;@hSIr;}tLWbg^Xqh_PHhZ*ePIy*?O5EVLFglM}?6BNu8F0%-= zK`k8?rI!r#sG~D6kasbLYU)Ab2ja4dofC2_ftTvYW7F;WH&EltW>jyAsmvgN za5?%$R(aEm8qMf6K5mFLV3w_%GN>MK!sJ2~Ye8H%&#NEXch_zpSUF1}bKivetLqd&OI^K41`84H0fsMi+Vwv=13c*Rg(-G`f z?WR#CzfmxUlT=knpUW6-9jM(Ub#g1Bs))B+CJ6m4O)>1lXZz2{+M$UDYiJT(OeUkO zv$Aq^b=4Zt5i1VKm45twWhAB>{%3i0JcCjM~y5XZzT#6r3 z{V0jM3$)$Dd#>O_@2++Qdu+nLkdX#5J5h=<-Thtc2Sggif+V6KloRXX-PJK{WBe4@ z9sD7yI=qCeHqB7w_~V&)im4T`#z7)DM0b$w!2T4CeuO8GZVU7>pk|-E5P!AtuSepq zHT>&9{I!9V7@bNYgoGZ%dj4drR@pX&p6{F&wMpF`WKWm{O`5mQ4@r-LKk3d3brBoC@C)$!vxgf zQ5PClbs8@YhEQ9T6&uLf8rJSqzaSCeb+NJg-APRm35VuYzNTvrR4?sQYPe%QTD#)> zPJ1-bi&JVY`6M0aS(>Os!Inc)J)3CV{F?)V+CbnZ{GG&+kn6^JCEh$c+7Em~FZPaK zJQAp?&XofqQs}t5LKFBX_LDEd#Ra>>>h=8 zm!q6bA6T}f2BkX9RwS&@%|PR3Zi<%GLLtox3B$Tjt+72phG~`h>De^9z=?dGp2E>= z(%3ioIldJ;j?$?jtp-$FK{Npr89gA>Sx*h>J2KwL0}k(ZoUCL_&Sv$ zi=|sR{u1z9d0QxMGZS0 zy-`Ea_LM+fAxb=badc!m4VIu6HllN-V_$AiJUWs5RZG|6+6QhcMy^AF6m7RM;Y_j_ zEkRu8;jkZn5ZAWB0Hk8+bAtjoWF$j}l@IJv0&nnQQ_mV8Yym;p)+VkqLuyG}ms-=2 z;*-~ymBaqCK%$VLJm_b;Sz%@_9PD9s!0g7ZI3YcocKYwTL&PirIX)6&n>OK^HXX}L zFuJCQ$7lHXYzzWC>7k;v)`Povfe^3H@%1@>z23Tiw;^wP-DDsE+yV9n{$Jc^r-Dx6 zqBxP>zL_P9c!x7e6=X-8L9>OD^t$0mOXinpLb3^YyWSPzGV}wg*H7A?v*#5}t3?u2 zDDB3gfrwgIVEci&>FE5Hz{NH6Ca-Z@xjC3z9=W|)Yvi=Gu00SeX;L5CdWC);I#8lc z=n�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≠mZ^k6PAL?JHe8cpt41 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%0Dl6h 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%0A%FFV@T(n4gFt}S(wB}CoVjey;E)}0)^mj zAu0$lkVE7F9yIE0Qly-k1Z?s(Pa`MaRn7uDrR>I=GV| z5~Ku4dlqKplmM6Q)lIB)v)Pmwd785ijuwCkQ=ZABd^YLtF`ex}6ee4PLB-3w48yBV zFBY5|3kt|`>A5kEH-rE-ShpI90y6Tqad@CfHo#FS>IEwv%IHqw9=2A@j5D7GnDcyF zI$%ovaI}C;auIrp9DDLz11H z)8fRhJpSb@NS0K7&FXAjJjy-%@<2O%S;$wk4!;@I%%1jgl+&4*Lp?K5^gT)t>){~P zAL#K_|Air?{~R>0T21&jhpXI)y5mI6MkWZ@8}$I2$BBBXq`z=sd%Av#h~R0Ws+aD0 zHy#Yo2P02W4#W5y4rYfu4WHkR1=nAQv6}}UO?^~|4u8LJVIb zw0EovvU`}L4DycA+qI7#EmnJ|llt%oKakiV=mB~Zw>5AgJ6Im_j>f7K>taXUPivrZ40LDEGs)cTx zkfS6Rg`eYdoJK=sK1C#w@t#?T24h^3iMniE(khm*yr3X5?4t*d*3{4M%+EiWpZ{ro z{@MI|Xny|u$o#IDpH=hovH7`Te%8#-y7}2KKcASNYvyO${9HFbH_XpX^Ybs}=U>gw z4{Yo|o8KSJ&;K?*PtDK&&;0yie*S8Helxtz;anZ92 zC>yefDe{5Hjyq-oSlG=yy=6fyFg5Fu)`_w?Z;Fd_L(8#0zJ$={;^NI+2JbqUc5~)$ zg?TG8E|n7E{bW+A2bn0~1_N60u4869cnWVbsKu76>}0Y1u5SlKlZtOFUF9R z@4M6*y9}atIGkvDkfRiRU4%QzU8?dN%#DzCaqcC5q_<%wZZP;VtVGUW7rg5i9GntY zOEt;dbGGV6rvJiNNaQ3{^?6`ax;&F>S7+`lyg4ZW4ZhLn2aI_MXwrCeK8SRVK4#{n zZWgd?mS)ZJR+*b90*x}AcIc6Htm9u+9+;kCiVvKnu`*Fs^|p~wuuAEf7l^xJ0>XZ? zk*G9r{@uo{eVss}!wIS!ql!-6HdiHA;ku(o)kkehrKUer%!d!whmYpNN9)4}^Wls2 z;j8)Z)%x(od|0IK&1G!}g&~jzeK{~B^ z$58~&pYFEf-|F0`S{t|`?BS@6F6P|K@>=za14G9yH$*5LW|g%;R0Ib=*^6wu0ce6G zgq3{AlzhpQtmD`?@RsUOpzekIdw$Y(4S{8VG*LS@xd}cMG3N^YswtOvYidF`JBwkj zovN6-cG~w|jwEAPE*7L>0Bz_Esq*y67y7f>XPKK?tdYz*oT�z^ci7vqV&JX=R|u zrEG$GVu`#iPx1#bFA#mt^4?lnbgPs`QnuOfbbw=2eyfHOA|ji}qI+N>K2*uw!HM4q z?uf4*VB9TA9fI82J+;Lx&&U=w&2j#Sc7_4#dm&qg=#ys z?RxnYgNNe@J>G6C)&p-?)Y(6+VO0aMyGa6ZCO6csKp;gM<8+8k9mwEuZ`{p_N8W>Op^F>IE7S@M;+;HPnf1m z8d6Md9i+Pdo;X{g;V2wN$nrucQaEXk0|kNNhklBp3C39OelmeGD2!%fS)U%e4Lc>; zl*G(Xl7H>F-dnhEIYC`n09P^S`sTbSt}UHo4-M+ew3O%6 zw3JDb&E6>xK2IVwK9o61(X@RL>tXQ}xC^2oozN(XN+$U?|X{g{pGF~IP zRHr!Cw<1G}4X|$0+yJG(-f)mxUgdc5Qn_M0#H+ul=$1E(M$*AkHsV^DGVN8zEX+x{ z5mU!}ykA-P2dF|^eH+>Oov05G!{9Q!*7y36yv94`8pq_!f~^m`T~R`}zsi(Nlu4aq zWZlr}LSF55qyzCqtbsZ76CzX@`qMU~&4FC88=rd8Je)F_4MZBKSHa3v^mMIIoiDHu zS@34@#e)H3r4{mX&$eD_n_p`J)z1n!6!77FUu^7ALiy2 zj5z&4QE#d&`!G6r%a9_PTgIa+yN+cz42hzDiuN>ZvW#StrmqVUsk;2^)%X3 zR&wkzoL)~NXoWZOS*-cwaB!-O>Q1NOd7%I3%JkxG(-zkQEjdr2h<%w%6G)$PI@MWp zx|urA`f-5w3Wn_C zDI5!@%#Q(L@%Ws@V54FOSx5$a0jt(G#AyZau{WTM8V^5{Tnf(}-^z+(VXmi6V)dMP zGB9XsX+g4T3P3-Gg9-www)6U-T15k{*YgH!1u|d*rUc+>KME11aADyB*H|L+Q){u^ zhp|@24{p)%1KzP9)4Jma{*G+|B7PL&%$&AI5CH4_q&x`8qa2QcpTxB=z61kVKw$`w znFg&F!C5T0_Df731>puq!TV8s1?JM?^V3!HxdC8)QmRYAzJo`Q;ASBEi;Pny0b_>M zG#~6v|fmj z!${$er>mz^gf@~HU$+N>ITHYr;Kw+HObVhgzz8Rkhz1i52BN!k5_RKn5dRMe@d zr<9cgZe-xhQZZk+IN`oI{b}#u>FV;Idc^1bwEbr5==9`t@AyL zem#=ADCQU8&dU91$eSNSdYhXc0}#N>gQr11js}n%S1>>cMzX{#W2&ykc-RL>IyO^w zyxs9oj51CIZZ3K$tFWzIi`6A(o+ItYBL@bZ_M#;I4E+i@N~+Rmw5%Qk*c4U88G%S! zm>bv{qGeh-h(_u`%R~m%oHrD!lSA>RWbD2><(O0tH)fh703Y8ZKRK)u$AaI46{4j&HCJ+-tk#xuki_DR~cW=5?3} z9q4u-PDks7%u)JumHU@@;Tbm9aHpuh#hsJlB1q?RWJR*FDrvj6(*`5%rIAn6Fzb=cJQwGxjWZD-=O1v zJq@(dg5s5d8p=~_9ge0cB#NDOFHXUD38_4#q}T;pCLf`$U-OITptf1Xwo){nujff)74D8xK6-J2)lFVq|g95rS5}__`^Y zFG9?Zfw-;LVL`y$Dp06d3v?0M%Wab9J~lm+aizSQMTOD;4~I3;g_a?f_?U`rv`v`I zDq}W~rjTG

      $mhY?D;qaK#G_>Fx24+bAy#;b<>7Yu(J&k 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%0DyA(*FE_qllO7K+`MoOo$jU9MW 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 z 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 FA^~tMB|iWF literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/ChangeLog b/third_party/qscintilla/ChangeLog new file mode 100644 index 0000000..19a51c7 --- /dev/null +++ b/third_party/qscintilla/ChangeLog @@ -0,0 +1,6853 @@ +2023-06-07 Phil Thompson + + * NEWS, Python/project.py: + Rolled back the explicit setting of the minimum GLIBC version now + that we have changed the build platform. + [4ea73206e689] [2.14.1] <2.14-maint> + +2023-05-22 Phil Thompson + + * NEWS, qt/InputMethod.cpp, qt/qscintilla.pro: + Fixed a pointer truncation in the handling of input method queries. + [e3a47ebe8c93] <2.14-maint> + +2023-05-14 Phil Thompson + + * NEWS, Python/project.py: + Fixed the manylinux wheel tag when building on Ubuntu 22.04. + [77c97572f18c] <2.14-maint> + +2023-04-27 Phil Thompson + + * .hgtags: + Added tag 2.14.0 for changeset b748338e45bb + [670c1fb1beeb] + +2023-04-24 Phil Thompson + + * NEWS, qt/qsciscintilla.cpp: + Fixed a regression in QSciScintilla::text(). + [b748338e45bb] [2.14.0] + +2023-04-20 Phil Thompson + + * qt/qsciscintilla.cpp: + Use SCI_ADDTEXT rather than SCI_SETTEXT to set the text so tht + embedded zero bytes can be loaded. + [774bcbca48b9] + + * NEWS, qt/InputMethod.cpp, qt/SciAccessibility.cpp, + qt/SciAccessibility.h, qt/qscilexer.cpp, qt/qscilexer.h, + qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Refactored the conversions from bytes to a QString to allow for + embedded zero bytes and to remove duplicated code. + [c8eb0d943c07] + +2023-03-31 Phil Thompson + + * NEWS, qt/qscintilla_cs.ts, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Fixed the .ts files. + [5d000fe9301e] + +2023-03-28 Phil Thompson + + * Python/sip/qscilexerasm.sip, Python/sip/qscilexermasm.sip, + Python/sip/qscilexernasm.sip, Python/sip/qscimodcommon.sip, + Python/sip/qsciscintillabase.sip: + Implemented the Python wrappers for the assembler lexers. + [0030fcf7a208] + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Updated the translation source files. + [0fb2491bb039] + + * qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexerasm.cpp, + qt/qscilexerasm.h, qt/qsciscintillabase.h: + Completed the implementation of the assember lexers. Note we choose + not to support explicit fold points. + [629503d9342b] + + * NEWS, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Removed a Qt4 compatibility macro. + [4b23653f3e5c] + + * qt/qscilexerasm.cpp, qt/qscilexerasm.h: + Added the support for compact and multi-line comment folding to + QsciLexerAsm. + [708bed0e9e2d] + +2023-03-27 Phil Thompson + + * NEWS, qt/qscilexerasm.cpp, qt/qscilexerasm.h, + qt/qscilexerintelhex.cpp, qt/qscilexermasm.cpp, qt/qscilexermasm.h, + qt/qscilexernasm.cpp, qt/qscilexernasm.h, qt/qscilexertekhex.cpp, + qt/qscintilla.pro: + Initial implementation of the QsciLexerAsm, QsciLexerMASM and + QsciLexerNASM classes. + [f216dfe8a7a9] + +2023-03-26 Phil Thompson + + * Python/sip/qscilexerintelhex.sip, Python/sip/qscilexersrec.sip, + Python/sip/qscilexertekhex.sip, Python/sip/qscimodcommon.sip, + Python/sip/qsciscintillabase.sip: + Completed the new Python wrappers. + [9acd96c733d2] + + * Python/sip/qscilexerhex.sip, Python/sip/qscilexerintelhex.sip, + Python/sip/qscilexersrec.sip, Python/sip/qscilexertekhex.sip: + Added the Python bindings for the new lexer classes. + [7882938747c0] + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Updated the translation source files. + [ee55692ee907] + + * NEWS, qt/qscilexerhex.cpp, qt/qscilexerhex.h, + qt/qscilexerintelhex.cpp, qt/qscilexerintelhex.h, + qt/qscilexersrec.cpp, qt/qscilexersrec.h, qt/qscilexertekhex.cpp, + qt/qscilexertekhex.h, qt/qscintilla.pro: + Added the QsciLexerHex, QsciLexerIntelHex, QsciLexerSRec and + QsciLexerTekHex classes. + [5e1cb8b52206] + + * Merged the 2.13-maint branch. + [a9480b2f6bdb] + +2023-03-02 Phil Thompson + + * NEWS, lexlib/LexAccessor.h: + Disabled an assert() in the lexer library as the following code + handles the case anyway. The real bug is probably in the HTML lexer + triggered when the HTML has embedded DTD. + [6452e3b634b6] <2.13-maint> + +2023-01-15 Phil Thompson + + * .hgtags: + Added tag 2.13.4 for changeset b2c87a81f0c3 + [d2bc1ac10aa3] <2.13-maint> + +2022-12-06 Phil Thompson + + * NEWS, src/EditView.cxx: + Fixed horizontally scrolled text overwriting margins when EOLs are + visible. + [b2c87a81f0c3] [2.13.4] <2.13-maint> + +2022-06-17 Phil Thompson + + * NEWS, qsci/api/python/Python-3.11.api: + Added the .api file for Python v3.11. + [96eca4a41bcb] <2.13-maint> + +2022-05-24 Phil Thompson + + * NEWS, lib/gen_python3_api.py, lib/gen_python_api.py, + qsci/api/python/Python-3.10.api, qsci/api/python/Python-3.8.api, + qsci/api/python/Python-3.9.api: + Added the .api file for Python v3.10. Removed the script that + generates .api files for Python v2. Updated the .api file for Python + v3.8 and v3.9 removing non-stdlib stuff. + [048961f449ea] <2.13-maint> + +2022-05-13 Phil Thompson + + * .hgtags: + Added tag 2.13.3 for changeset 5b8465ba3664 + [f37eea15e210] <2.13-maint> + +2022-04-25 Phil Thompson + + * NEWS, qt/InputMethod.cpp: + Updates to the input method code to fix a problem with KDE on + Wayland. + [5b8465ba3664] [2.13.3] <2.13-maint> + +2022-03-15 Phil Thompson + + * .hgtags: + Added tag 2.13.2 for changeset bb61ba6bf385 + [6cdbcd2c2dad] <2.13-maint> + + * NEWS, Python/project.py: + Fixed building from an sdist for iOS. + [bb61ba6bf385] [2.13.2] <2.13-maint> + +2021-10-14 Phil Thompson + + * .hgtags: + Added tag 2.13.1 for changeset 0763a2d7a8c2 + [90c834cc462d] <2.13-maint> + +2021-10-12 Phil Thompson + + * NEWS, designer/designer.pro, example/application.pro, + lib/README.doc, qt/qscintilla.pro: + Updated the .pro files and docs to cover multiple architecture + builds on macOS. + [0763a2d7a8c2] [2.13.1] <2.13-maint> + +2021-09-08 Phil Thompson + + * NEWS, qt/qscintilla.pro, qt/qsciscintilla.cpp: + Fixed the target used by findNext() after a call to replace(). + [6d59f97850d7] <2.13-maint> + +2021-06-26 Phil Thompson + + * .hgtags: + Added tag 2.13.0 for changeset 84da33178802 + [95ec8d681eae] + +2021-06-13 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip: + Fixed the Python bindings of SendScintilla() so that a negative + value can be passed as the wParam argument (specifically + SC_CURSORNORMAL). + [84da33178802] [2.13.0] + +2021-06-03 Phil Thompson + + * NEWS, Python/sip/qsciprinter.sip, qt/qscintilla.pro, + qt/qsciprinter.cpp, qt/qsciprinter.h: + Added the new QsciPrinter::printRange() overload. The library + version number is now v15.1.0. + [4b18dcfe67c4] + + * Merged the 2.12-maint branch. + [a33fcd321f79] + +2021-05-20 Phil Thompson + + * qt/PlatQt.cpp: + Fixed the handling of explicit Qt font weights for Qt6. + [1dbb97147333] <2.12-maint> + +2021-05-06 Phil Thompson + + * qt/qscintilla.pro: + Bumped the version number of the shared library. + [7b3f97fa852f] <2.12-maint> + + * NEWS, qt/ListBoxQt.cpp: + Improved the appearence of the auto-completion popup. + [6d05cdc2c9c9] <2.12-maint> + +2021-03-04 Phil Thompson + + * .hgtags: + Added tag 2.12.1 for changeset c1e9b5f091d6 + [0e8a95ee3197] <2.12-maint> + + * NEWS: + Released as v2.12.1. + [c1e9b5f091d6] [2.12.1] <2.12-maint> + + * rb-product.toml: + Fixed the PyQt dependencies. + [c7af7dfff891] <2.12-maint> + +2021-03-02 Phil Thompson + + * NEWS: + Updated the NEWS file. + [811ff4c9ffb2] <2.12-maint> + +2021-02-27 Phil Thompson + + * Python/pyproject-qt5.toml, Python/pyproject-qt6.toml: + Fixed the project dependencies. + [f84410807305] <2.12-maint> + + * rb-product, rb-product.toml: + Updated the product file. + [266fa5c4525a] <2.12-maint> + +2021-02-22 Phil Thompson + + * .hgtags: + Added tag 2.12.0 for changeset 1cfa1f74a2a6 + [a3df8b831652] + + * NEWS: + Released as v2.12.0. + [1cfa1f74a2a6] [2.12.0] + + * NEWS: + Updated the NEWS file. + [15c838b76bbb] + +2021-02-21 Phil Thompson + + * Python/project.py: + Fixed project.py so that it will use an embedded QScintilla library + when being built from an sdist. + [71cc17f4adb2] + + * qt/qscintilla.pro: + Added missing .h files from qscintilla.pro. + [c932fdd83a5e] + +2021-02-19 Phil Thompson + + * Python/pyproject-qt5.toml: + Reverted the name of the Qt5 Python bindings PyPI project because a + new name would cause significant problems. + [c318f3bd3474] + +2021-02-18 Phil Thompson + + * Python/pyproject-qt5.toml, Python/pyproject-qt6.toml, + Python/sip/qsciscintillabase.sip: + Fixed the Python bindings for PyQt6. + [e48e4f400215] + + * lib/README.doc: + Re-ordered the section in the main page of the docs. + [35fd189ea5da] + +2021-02-17 Phil Thompson + + * Python/project.py, Python/pyproject-qt5.toml, Python/pyproject- + qt6.toml, Python/pyproject.toml, Python/sip/qscimod5.sip, + Python/sip/qscimod6.sip, Python/sip/qscimodcommon.sip, + lib/README.doc, qt/features/qscintilla2.prf, + qt/features_staticlib/qscintilla2.prf: + Update the building of the Python bindings from a full source + package. + [124c17880e06] + +2021-02-15 Phil Thompson + + * lib/README.doc, lib/qscintilla.dxy: + Some documentation fixes. + [81cc3ac8a8df] + + * qt/PlatQt.cpp: + Fixed a regression in building against Qt5. + [4e87186ec216] + + * qt/InputMethod.cpp, qt/MacPasteboardMime.cpp, qt/PlatQt.cpp, + qt/SciAccessibility.cpp, qt/qsciapis.cpp, qt/qscicommandset.cpp, + qt/qsciglobal.h, qt/qscilexer.cpp, qt/qscimacro.cpp, + qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciprinter.h, + qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp: + Initial port to Qt6. + [b88e78ec2ca3] + +2021-02-14 Phil Thompson + + * Python/configure-old.py, Python/configure.py, Python/pyproject.toml, + Python/sip/qscimod4.sip, designer-Qt4Qt5/designer.pro, designer- + Qt4Qt5/qscintillaplugin.cpp, designer-Qt4Qt5/qscintillaplugin.h, + designer/designer.pro, designer/qscintillaplugin.cpp, + designer/qscintillaplugin.h, example-Qt4Qt5/application.pro, + example-Qt4Qt5/application.qrc, example-Qt4Qt5/images/copy.png, + example-Qt4Qt5/images/cut.png, example-Qt4Qt5/images/new.png, + example-Qt4Qt5/images/open.png, example-Qt4Qt5/images/paste.png, + example-Qt4Qt5/images/save.png, example-Qt4Qt5/main.cpp, example- + Qt4Qt5/mainwindow.cpp, example-Qt4Qt5/mainwindow.h, + example/application.pro, example/application.qrc, + example/images/copy.png, example/images/cut.png, + example/images/new.png, example/images/open.png, + example/images/paste.png, example/images/save.png, example/main.cpp, + example/mainwindow.cpp, example/mainwindow.h, lib/README.doc, + lib/ed.py, lib/pyproject.toml, qt/InputMethod.cpp, qt/ListBoxQt.cpp, + qt/MacPasteboardMime.cpp, qt/PlatQt.cpp, qt/SciClasses.cpp, + qt/ScintillaQt.cpp, qt/qsciglobal.h, qt/qscintilla.pro, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Removed support for Qt4. + [dad7e9b4d62e] + + * Merged the 2.11-maint branch. + [8c1814ec889a] + +2020-11-23 Phil Thompson + + * .hgtags: + Added tag 2.11.6 for changeset c262a7a02f6d + [a12ce93c13bf] <2.11-maint> + + * NEWS: + Released as v2.11.6. + [c262a7a02f6d] [2.11.6] <2.11-maint> + + * NEWS: + Updated the NEWS file. + [0f32bcb43dd3] <2.11-maint> + +2020-10-22 Phil Thompson + + * qt/features/qscintilla2.prf, qt/features_staticlib/qscintilla2.prf, + qt/qscintilla.pro: + Fixes for building for iOS with recent versions of Qt. + [aea84882d372] <2.11-maint> + +2020-10-20 Phil Thompson + + * Python/project.py: + Added the --qsci-translations-dir option to sip-wheel. + [df77754750b3] <2.11-maint> + +2020-10-19 Phil Thompson + + * qsci/api/python/Python-3.9.api: + Added the .api file for Python v3.9. + [bff51b8043e2] <2.11-maint> + + * .hgignore: + Updated .hgignore for the current build naming convention. + [b659680b3f24] <2.11-maint> + +2020-10-11 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed the display of non-latin1 call tips. + [f9fa57df2fbb] <2.11-maint> + +2020-09-17 Phil Thompson + + * Python/project.py, lib/pyproject.toml: + Require PyQt-builder v1.6 as we no longer specify the sip module and + ABI. + [0e989cce12ea] <2.11-maint> + +2020-08-22 Phil Thompson + + * Python/project.py: + Set the name of the sip module explicitly. + [a6b6fd548cf3] <2.11-maint> + +2020-06-30 Phil Thompson + + * example-Qt4Qt5/main.cpp, example-Qt4Qt5/mainwindow.cpp, example- + Qt4Qt5/mainwindow.h: + Updated the copyright notices on the example. + [8937c1d51479] <2.11-maint> + +2020-06-09 Phil Thompson + + * .hgtags: + Added tag 2.11.5 for changeset 36bf61975fe2 + [7e336947e75e] <2.11-maint> + + * NEWS: + Released as v2.11.5. + [36bf61975fe2] [2.11.5] <2.11-maint> + + * NEWS, Python/sip/qsciabstractapis.sip, Python/sip/qsciapis.sip: + Fixed the Python signatures of the QsciAbstractAPIs and QsciAPIs + ctors. + [80aeec9058bf] <2.11-maint> + +2020-05-09 Phil Thompson + + * Python/project.py, lib/pyproject.toml: + The minimum ABI version is 12.8 which requires SIP v5.3. + [c0e8e2e7e485] <2.11-maint> + +2020-04-11 Phil Thompson + + * lib/pyproject.toml: + We know that The Python binding swill be able to use SIP v6. + [4f1f5381fb69] <2.11-maint> + +2020-04-10 Phil Thompson + + * NEWS: + Updated the NEWS file. + [2ef898e42a1e] <2.11-maint> + + * Python/project.py, lib/pyproject.toml: + Include the bundled .api files in wheels. + [ded23cd63255] <2.11-maint> + +2020-02-08 Phil Thompson + + * lib/pyproject.toml: + Fixed METADATA for commercial wheels. + [efc053939949] <2.11-maint> + +2019-12-18 Phil Thompson + + * .hgtags: + Added tag 2.11.4 for changeset b9eb589b0dab + [3f3722aac2ad] <2.11-maint> + + * NEWS: + Released as v2.11.4. + [b9eb589b0dab] [2.11.4] <2.11-maint> + + * lib/pyproject.toml: + Fixed requires-dist for commercial wheels. + [53c08faf43ff] <2.11-maint> + +2019-11-02 Phil Thompson + + * .hgtags: + Added tag 2.11.3 for changeset 989462577f67 + [3f6d7cf0fc4b] <2.11-maint> + + * NEWS: + Released as v2.11.3. + [989462577f67] [2.11.3] <2.11-maint> + + * NEWS: + Updated the NEWS file. + [2075344b2124] <2.11-maint> + +2019-10-03 Phil Thompson + + * lib/pyproject.toml: + Fixed the name of PEP 566. + [e435d3af1587] <2.11-maint> + + * lib/pyproject.toml: + Requires PyQt-builder v1. + [9502a2b46a2b] <2.11-maint> + +2019-10-01 Phil Thompson + + * lib/pyproject.toml: + Fixed the name of the PyQt-builder project. + [efe96da72b1f] <2.11-maint> + +2019-09-23 Phil Thompson + + * Python/project.py: + Fixes for changes in the sip v5 API. + [a79acd2cdd94] <2.11-maint> + +2019-09-14 Phil Thompson + + * lib/pyproject.toml: + Added the requires-dist meta-data. + [941784a50fad] <2.11-maint> + +2019-09-07 Phil Thompson + + * NEWS: + Updated the NEWS file. + [6c83ad469a4e] <2.11-maint> + + * lib/pyproject.toml: + Temporarily set the version of PyQt-builder required to be v0.1. + [734461946ff0] <2.11-maint> + +2019-09-06 Phil Thompson + + * Python/project.py: + Fixes for relative path options. + [e7bc21d4cb25] <2.11-maint> + +2019-09-05 Phil Thompson + + * Python/project.py: + Added the options to build the bindings from a locally installed + copy of the library. + [54094e26d201] <2.11-maint> + +2019-09-04 Phil Thompson + + * Python/configure-old.py, Python/configure.py, Python/project.py, + designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro, + qt/qscintilla.pro: + Removed the code to change the install_name on macOS. + [c88922cb4dee] <2.11-maint> + + * Python/configure.py, qt/qscintilla.pro: + Fixed the install_name of the .dylib on macOS so that it is relative + to @rpath. + [010c78f5da88] <2.11-maint> + + * Python/config-tests/cfgtest_Qsci.cpp: + Fixed the configuration test. + [c00c4195e8fc] <2.11-maint> + + * METADATA.in, Python/README, Python/config-tests/cfgtest_Qsci.cpp, + Python/configure-old.py, Python/configure.py, Python/project.py, + lib/README, lib/pyproject.toml, qt/qscintilla.pro: + Added support for sip-build. + [20e39552153c] <2.11-maint> + +2019-08-30 Phil Thompson + + * METADATA.in, lib/README: + Updated the meta-data description. + [7681c13103f2] <2.11-maint> + +2019-08-21 Phil Thompson + + * METADATA.in: + Updated the link to the docs for PyPI. + [ab14aecc07de] <2.11-maint> + +2019-07-04 Phil Thompson + + * qt/qscilexercss.cpp: + Fixed the styling of CSS comments. + [9b2dd132b868] <2.11-maint> + +2019-06-25 Phil Thompson + + * .hgtags: + Added tag 2.11.2 for changeset 9a9bab556970 + [e39e215312b4] <2.11-maint> + + * NEWS: + Released as v2.11.2. + [9a9bab556970] [2.11.2] <2.11-maint> + + * qsci/api/python/Python-3.8.api: + Added the .api file for Python v3.8. + [4bc9c6baa011] <2.11-maint> + + * NEWS: + Updated the NEWS file. + [38685401d592] <2.11-maint> + +2019-05-31 Phil Thompson + + * qt/PlatQt.cpp: + Fixes to allow compilation with WASM. + [71be3fd818c8] <2.11-maint> + +2019-05-15 Phil Thompson + + * qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Fixed selection-related issues on macOS (and probably Windows) + triggered by the use of additional selections. + [47aaec2fa37c] <2.11-maint> + +2019-05-09 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + QsciScintilla::findMatchingBrace() is now part of the public API. + [b1973ad12f82] <2.11-maint> + +2019-03-13 Phil Thompson + + * NEWS, qt/qsciscintilla.cpp: + QsciScintilla::clear() now clears the undo history to be consistent + with Qt and setText(). + [b013bbaed4a5] <2.11-maint> + +2019-02-12 Phil Thompson + + * .hgtags: + Added tag 2.11.1 for changeset bebf741baff8 + [c09e91f304b8] <2.11-maint> + + * NEWS: + Released as v2.11.1. + [bebf741baff8] [2.11.1] <2.11-maint> + + * NEWS: + Updated the NEWS file. + [9f2dd3438ac3] <2.11-maint> + + * Python/configure-old.py, Python/configure.py, designer- + Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro, + qt/qscintilla.pro: + Bumped the major version number of the library because of the + SendScintilla() signature change. + [c2fe34e11899] <2.11-maint> + + * Python/sip/qsciscintillabase.sip, qt/qscimacro.cpp, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Fixed a regression in QsciScintilla::insert(). The signature of + QsciScintillaBase::SendScintilla(unigned int, unsigned long, const + char *) has changed so that the second argument is now uintptr_t. + This may require code changes. + [b62eb7f29de4] <2.11-maint> + +2019-02-11 Phil Thompson + + * NEWS: + Updated the NEWS file. + [9768dbe05f64] <2.11-maint> + + * qt/qsciscintillabase.cpp: + Fixed the marginRightClicked() signal. + [6a6efafbefd6] <2.11-maint> + + * qt/qscintilla.pro: + Bumped the library version number. + [a4ee797a9df9] <2.11-maint> + +2019-02-04 Phil Thompson + + * .hgtags: + Added tag 2.11 for changeset 2610e30b0914 + [f83b4fbdd928] + + * NEWS: + Released as v2.11. + [2610e30b0914] [2.11] + +2018-12-21 Phil Thompson + + * METADATA.in: + Corrected the wheel meta-data version. + [593a629d46f5] + +2018-12-15 Phil Thompson + + * NEWS: + Updated the NEWS file. + [992f3cb597c4] + +2018-11-24 Phil Thompson + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts: + Updated German translations from Detlev. + [f293bafecde8] + +2018-11-17 Phil Thompson + + * qt/ScintillaQt.h: + Fixed the Linux build. + [3ec0608d1744] + + * qt/SciClasses.cpp, qt/SciClasses.h: + Removed the redundant explicit handling of the Esc key in popup + lists. + [a3d596e37561] + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added QsciScintilla::cancelFind(). + [520cda104a4b] + +2018-11-13 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added support for Cxx11 regular expressions to findFirst() and + findFirstInSelection(). + [9c022f775241] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added the remaining new API calls. + [03f9682f7d6c] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h, + qt/qsciscintillabase.h: + Added the new wrap indent mode. + [4a786cbfd975] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added the style metadata messages. + [e3e38b577a1f] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintillabase.h: + Added the SCN_AUTOCSELECTIONCHANGE() signal. + [156c8e0c6fb7] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintillabase.h: + Added the new SCN_USERLISTSELECTION() signal overload. + [031270944f93] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qscilexer.cpp, + qt/qsciscintillabase.h: + Added the character/code unit functions. + [ff2e92ed2890] + + * qt/qscilexer.cpp, qt/qscilexer.h, qt/qscintilla.pro, + qt/qsciscintilla.cpp: + Don't use the deprecated style bits API calls. + [2d1cf2b1019f] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h, + qt/qsciscintillabase.h: + Added support for the new gradient indicators. + [02e7b6ba2fdb] + +2018-11-12 Phil Thompson + + * NEWS, Python/sip/qscilexerdiff.sip, qt/qscilexerdiff.cpp, + qt/qscilexerdiff.h, qt/qscintilla_cs.ts, qt/qscintilla_de.ts, + qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Updates to the diff lexer. + [fb8a0cb48593] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added the symbolic names for the new lexers. + [b8d4fab81221] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Implemented the SCN_URIDROPPED signal. + [242bb09d23ea] + + * qt/qsciscintillabase.h: + Documented SCN_DWELLSTART and SCN_DWELLEND. + [8750296d855d] + + * qt/PlatQt.cpp: + Removed some unused platform methods. + [70c01135aa8d] + + * qt/InputMethod.cpp, qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp, + qt/SciClasses.cpp, qt/SciNamespace.h, qt/ScintillaQt.cpp, + qt/ScintillaQt.h, qt/qscintilla.pro, qt/qsciscintillabase.cpp: + Removed the support for the optional Scintilla namespace. + [33998bb1d26a] + +2018-11-11 Phil Thompson + + * BACKPORTING, License.txt, LongTermDownload.html, NEWS, README, + check.mak, checkdeps.mak, cocoa/InfoBar.mm, cocoa/PlatCocoa.h, + cocoa/PlatCocoa.mm, cocoa/QuartzTextLayout.h, + cocoa/ScintillaCocoa.h, cocoa/ScintillaCocoa.mm, + cocoa/ScintillaFramework/Info.plist, cocoa/ScintillaFramework/Scinti + llaFramework.xcodeproj/project.pbxproj, + cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, + cocoa/ScintillaView.mm, cppcheck.suppress, curses/Makefile, + curses/README.md, curses/ScintillaCurses.cxx, + curses/ScintillaCurses.h, curses/THANKS.md, curses/jinx/Makefile, + curses/jinx/jinx.c, delbin.bat, doc/Design.html, doc/LPegLexer.html, + doc/SciCoding.html, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/ScintillaToDo.html, + doc/StyleMetadata.html, doc/index.html, gtk/Converter.h, + gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/ScintillaGTK.h, + gtk/ScintillaGTKAccessible.cxx, gtk/ScintillaGTKAccessible.h, + gtk/deps.mak, gtk/makefile, gtk/scintilla-marshal.c, gtk/scintilla- + marshal.h, gtk/scintilla-marshal.list, include/ILexer.h, + include/ILoader.h, include/Platform.h, include/SciLexer.h, + include/Sci_Position.h, include/Scintilla.h, + include/Scintilla.iface, lexers/LexA68k.cxx, lexers/LexAPDL.cxx, + lexers/LexASY.cxx, lexers/LexAU3.cxx, lexers/LexAVE.cxx, + lexers/LexAVS.cxx, lexers/LexAbaqus.cxx, lexers/LexAda.cxx, + lexers/LexAsm.cxx, lexers/LexAsn1.cxx, lexers/LexBaan.cxx, + lexers/LexBash.cxx, lexers/LexBasic.cxx, lexers/LexBatch.cxx, + lexers/LexBibTeX.cxx, lexers/LexBullant.cxx, lexers/LexCLW.cxx, + lexers/LexCOBOL.cxx, lexers/LexCPP.cxx, lexers/LexCSS.cxx, + lexers/LexCaml.cxx, lexers/LexCmake.cxx, lexers/LexCoffeeScript.cxx, + lexers/LexConf.cxx, lexers/LexCrontab.cxx, lexers/LexCsound.cxx, + lexers/LexD.cxx, lexers/LexDMAP.cxx, lexers/LexDMIS.cxx, + lexers/LexDiff.cxx, lexers/LexECL.cxx, lexers/LexEDIFACT.cxx, + lexers/LexEScript.cxx, lexers/LexEiffel.cxx, lexers/LexErlang.cxx, + lexers/LexErrorList.cxx, lexers/LexFlagship.cxx, + lexers/LexForth.cxx, lexers/LexFortran.cxx, lexers/LexGAP.cxx, + lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx, + lexers/LexHex.cxx, lexers/LexIndent.cxx, lexers/LexInno.cxx, + lexers/LexJSON.cxx, lexers/LexKVIrc.cxx, lexers/LexKix.cxx, + lexers/LexLPeg.cxx, lexers/LexLaTeX.cxx, lexers/LexLisp.cxx, + lexers/LexLout.cxx, lexers/LexLua.cxx, lexers/LexMMIXAL.cxx, + lexers/LexMPT.cxx, lexers/LexMSSQL.cxx, lexers/LexMagik.cxx, + lexers/LexMake.cxx, lexers/LexMarkdown.cxx, lexers/LexMatlab.cxx, + lexers/LexMaxima.cxx, lexers/LexMetapost.cxx, lexers/LexModula.cxx, + lexers/LexMySQL.cxx, lexers/LexNimrod.cxx, lexers/LexNsis.cxx, + lexers/LexNull.cxx, lexers/LexOScript.cxx, lexers/LexOpal.cxx, + lexers/LexPB.cxx, lexers/LexPLM.cxx, lexers/LexPO.cxx, + lexers/LexPOV.cxx, lexers/LexPS.cxx, lexers/LexPascal.cxx, + lexers/LexPerl.cxx, lexers/LexPowerPro.cxx, + lexers/LexPowerShell.cxx, lexers/LexProgress.cxx, + lexers/LexProps.cxx, lexers/LexPython.cxx, lexers/LexR.cxx, + lexers/LexRebol.cxx, lexers/LexRegistry.cxx, lexers/LexRuby.cxx, + lexers/LexRust.cxx, lexers/LexSAS.cxx, lexers/LexSML.cxx, + lexers/LexSQL.cxx, lexers/LexSTTXT.cxx, lexers/LexScriptol.cxx, + lexers/LexSmalltalk.cxx, lexers/LexSorcus.cxx, + lexers/LexSpecman.cxx, lexers/LexSpice.cxx, lexers/LexStata.cxx, + lexers/LexTACL.cxx, lexers/LexTADS3.cxx, lexers/LexTAL.cxx, + lexers/LexTCL.cxx, lexers/LexTCMD.cxx, lexers/LexTeX.cxx, + lexers/LexTxt2tags.cxx, lexers/LexVB.cxx, lexers/LexVHDL.cxx, + lexers/LexVerilog.cxx, lexers/LexVisualProlog.cxx, + lexers/LexYAML.cxx, lexlib/Accessor.cxx, lexlib/Accessor.h, + lexlib/CharacterCategory.cxx, lexlib/CharacterCategory.h, + lexlib/CharacterSet.cxx, lexlib/CharacterSet.h, + lexlib/DefaultLexer.cxx, lexlib/DefaultLexer.h, + lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerBase.h, + lexlib/LexerModule.cxx, lexlib/LexerModule.h, + lexlib/LexerNoExceptions.cxx, lexlib/LexerNoExceptions.h, + lexlib/LexerSimple.cxx, lexlib/LexerSimple.h, lexlib/OptionSet.h, + lexlib/PropSetSimple.cxx, lexlib/PropSetSimple.h, + lexlib/SparseState.h, lexlib/StringCopy.h, lexlib/StyleContext.cxx, + lexlib/StyleContext.h, lexlib/SubStyles.h, lexlib/WordList.cxx, + lexlib/WordList.h, lib/README.doc, qt/InputMethod.cpp, + qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp, qt/SciClasses.cpp, + qt/SciClasses.h, qt/SciNamespace.h, qt/ScintillaQt.cpp, + qt/ScintillaQt.h, qt/qscintilla.pro, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h, scripts/Face.py, scripts/FileGenerator.py, + scripts/GenerateCaseConvert.py, scripts/HFacer.py, + scripts/HeaderCheck.py, scripts/HeaderOrder.txt, scripts/LexGen.py, + scripts/ScintillaData.py, src/AutoComplete.cxx, src/AutoComplete.h, + src/CallTip.cxx, src/CallTip.h, src/CaseConvert.cxx, + src/CaseConvert.h, src/CaseFolder.cxx, src/CaseFolder.h, + src/Catalogue.cxx, src/Catalogue.h, src/CellBuffer.cxx, + src/CellBuffer.h, src/CharClassify.cxx, src/CharClassify.h, + src/ContractionState.cxx, src/ContractionState.h, src/DBCS.cxx, + src/DBCS.h, src/Decoration.cxx, src/Decoration.h, src/Document.cxx, + src/Document.h, src/EditModel.cxx, src/EditModel.h, + src/EditView.cxx, src/EditView.h, src/Editor.cxx, src/Editor.h, + src/ElapsedPeriod.h, src/ExternalLexer.cxx, src/ExternalLexer.h, + src/FontQuality.h, src/Indicator.cxx, src/Indicator.h, + src/IntegerRectangle.h, src/KeyMap.cxx, src/KeyMap.h, + src/LineMarker.cxx, src/LineMarker.h, src/MarginView.cxx, + src/MarginView.h, src/Partitioning.h, src/PerLine.cxx, + src/PerLine.h, src/Position.h, src/PositionCache.cxx, + src/PositionCache.h, src/RESearch.cxx, src/RESearch.h, + src/RunStyles.cxx, src/RunStyles.h, src/ScintillaBase.cxx, + src/ScintillaBase.h, src/Selection.cxx, src/Selection.h, + src/SparseVector.h, src/SplitVector.h, src/Style.cxx, src/Style.h, + src/UniConversion.cxx, src/UniConversion.h, src/UnicodeFromUTF8.h, + src/UniqueString.h, src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx, + src/XPM.h, test/README, test/ScintillaCallable.py, test/XiteWin.py, + test/lexTests.py, test/performanceTests.py, test/simpleTests.py, + test/test_lexlua.lua, test/unit/Sci.natvis, + test/unit/UnitTester.cxx, test/unit/UnitTester.vcxproj, + test/unit/catch.hpp, test/unit/makefile, test/unit/test.mak, + test/unit/testCellBuffer.cxx, test/unit/testCharClassify.cxx, + test/unit/testContractionState.cxx, test/unit/testDecoration.cxx, + test/unit/testPartitioning.cxx, test/unit/testRunStyles.cxx, + test/unit/testSparseState.cxx, test/unit/testSparseVector.cxx, + test/unit/testSplitVector.cxx, test/unit/testUniConversion.cxx, + test/unit/testUnicodeFromUTF8.cxx, test/unit/testWordList.cxx, + test/unit/unitTest.cxx, version.txt, win32/CheckD2D.cxx, + win32/HanjaDic.cxx, win32/HanjaDic.h, win32/PlatWin.cxx, + win32/PlatWin.h, win32/SciLexer.vcxproj, win32/ScintRes.rc, + win32/ScintillaDLL.cxx, win32/ScintillaWin.cxx, + win32/ScintillaWin.h, win32/deps.mak, win32/makefile, + win32/scintilla.mak: + The v3.10.1 based code will now build - otherwise untested. + [cb6d486795ec] + +2018-11-05 Phil Thompson + + * NEWS: + Updated the NEWS file. + [a99dfcd91f84] + + * qt/qscintilla_cs.ts, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.qm, qt/qscintilla_es.ts, qt/qscintilla_fr.ts, + qt/qscintilla_pt_br.ts: + Updated the translation files. + [1529479f8a31] + + * Python/configure.py, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qscilexerpython.cpp, + qt/qscintilla.pro, qt/qscintilla_cs.ts, qt/qscintilla_de.ts, + qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.h: + Merged the 2.10-maint branch with the trunk. + [5fcc66abfca0] + +2018-10-01 Phil Thompson + + * .hgtags: + Added tag 2.10.8 for changeset 57c8b6076899 + [b565980f962b] <2.10-maint> + + * NEWS: + Released as v2.10.8. + [57c8b6076899] [2.10.8] <2.10-maint> + +2018-09-30 Phil Thompson + + * NEWS: + Updated the NEWS file. + [345f597a4a90] <2.10-maint> + +2018-08-02 Phil Thompson + + * qt/SciAccessibility.cpp: + More accessibility fixes. + [2cc2d6865762] <2.10-maint> + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/qscintilla.pro: + Refactored the accessibility support to use less of the Qt stuff + which doesn't handle CR-LF end-of-lines. + [8b2d6e3e73d8] <2.10-maint> + +2018-07-15 Phil Thompson + + * NEWS: + Updated the NEWS file. + [fc1deaccc716] <2.10-maint> + +2018-06-29 Phil Thompson + + * .hgtags: + Added tag 2.10.7 for changeset 60598a703fd4 + [8828f9ad7dc6] <2.10-maint> + + * NEWS: + Released as v2.10.7. + [60598a703fd4] [2.10.7] <2.10-maint> + + * NEWS: + Updated the NEWS file. + [92edf18019ec] <2.10-maint> + +2018-06-25 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip: + Tweaked the signature of the QscoScintillaBase::SCN_MACRORECORD() + signal so that it matches what Qt uses so that the signal test + passes. + [bfcd9319329a] <2.10-maint> + +2018-06-23 Phil Thompson + + * .hgtags: + Added tag 2.10.6 for changeset dc0993c72a05 + [9c774d0a9694] <2.10-maint> + + * NEWS: + Released as v2.10.6. + [dc0993c72a05] [2.10.6] <2.10-maint> + +2018-06-22 Phil Thompson + + * .hgtags: + Added tag 2.10.5 for changeset f35b3a43a241 + [8cf5694ca328] <2.10-maint> + + * NEWS: + Released as v2.10.5. + [f35b3a43a241] [2.10.5] <2.10-maint> + +2018-06-21 Phil Thompson + + * NEWS: + Updated the NEWS file. + [12cb1a2f5ec6] <2.10-maint> + +2018-06-19 Phil Thompson + + * NEWS, Python/sip/qscistyle.sip, qt/qscistyle.cpp, qt/qscistyle.h: + Added setStyle() to QsciStyle. + [cf5281041224] <2.10-maint> + +2018-06-16 Phil Thompson + + * qt/qscintilla_es.qm, qt/qscintilla_es.ts: + Updated Spanish translations from Jaime Seuma. + [a479b9f5436f] <2.10-maint> + +2018-06-09 Phil Thompson + + * qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm: + Updated German translations from Detlev. + [f69379899fb3] <2.10-maint> + +2018-06-04 Phil Thompson + + * NEWS, Python/configure.py: + Implemented support for the .dist-info directory. + [387aa9bf6ad8] <2.10-maint> + +2018-06-03 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp, + qt/ScintillaQt.cpp, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Fixes for font changes caused by dragging to a different display. + [27b1f435e27a] <2.10-maint> + +2018-05-29 Phil Thompson + + * qt/PlatQt.cpp: + Disable to macOS use of integer font metrics for Qt5 as it is + (probably) specific to Qt4. + [c32fe0c4e55d] <2.10-maint> + + * qt/PlatQt.cpp: + Fixed cursor positioning when using a secondary display with + different scaling to the primary. + [20420b7c4a4d] <2.10-maint> + +2018-05-22 Phil Thompson + + * qt/qscilexerverilog.cpp: + Fix the handling of the 'fold.verilog.flags' property in the Verilog + lexer. + [9b698ba38c2b] <2.10-maint> + +2018-05-16 Phil Thompson + + * qt/qscilexerverilog.cpp, qt/qscintilla_cs.ts, qt/qscintilla_de.ts, + qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Added the missing descriptions of inactive styles in the Verilog + lexer. + [4be691232e03] <2.10-maint> + +2018-05-15 Phil Thompson + + * qt/qscilexer.h: + Updated the QsciLexer::keywords() documentation to point out that + sets are numbered from 1. + [5954b91e7ec1] <2.10-maint> + +2018-04-26 Phil Thompson + + * Python/sip/qscilexeredifact.sip, qt/qscilexeredifact.cpp, + qt/qscilexeredifact.h: + Added some default colours to the EDIFACT lexer. + [175598286833] <2.10-maint> + +2018-04-20 Phil Thompson + + * NEWS, Python/sip/qscilexeredifact.sip, qt/qscilexeredifact.cpp, + qt/qscilexeredifact.h, qt/qscintilla.pro, qt/qscintilla_cs.ts, + qt/qscintilla_de.ts, qt/qscintilla_es.ts, qt/qscintilla_fr.ts, + qt/qscintilla_pt_br.ts: + Added the QsciLexerEDIFACT class. + [c1e31857f3e7] <2.10-maint> + + * qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + If the context menu is invoked when the cursor is outside the + selection then the selection is cleared and the cursor moved to + where the mouse was clicked. + [7d230dad9379] <2.10-maint> + +2018-04-19 Phil Thompson + + * Python/sip/qsciscintilla.sip, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Control-wheel up/down will now zoom in and out. + [ba0049fe03b6] <2.10-maint> + +2018-04-11 Phil Thompson + + * qt/PlatQt.cpp, qt/qsciabstractapis.cpp, qt/qscilexerpython.cpp, + qt/qscilexerxml.cpp, qt/qsciscintilla.cpp: + Removed warning messages about unused variables. + [c2008ef93ee0] <2.10-maint> + + * qt/qscicommandset.cpp: + Fixed the saving of alternative keys in the settings. + [687470e937c1] <2.10-maint> + + * qt/ScintillaQt.cpp, qt/qsciapis.cpp, qt/qsciscintilla.cpp: + Various stylistic changes to eliminate some warning messages. + [dc753169870e] <2.10-maint> + +2018-04-10 Phil Thompson + + * .hgtags: + Added tag 2.10.4 for changeset 24cb0edc89a9 + [05ada666e2cf] <2.10-maint> + + * NEWS: + Released as v2.10.4. + [24cb0edc89a9] [2.10.4] <2.10-maint> + + * qt/SciAccessibility.cpp: + Fixed the retrieval of accessibility attributes. + [e430a7dd7818] <2.10-maint> + +2018-04-07 Phil Thompson + + * qt/qscilexer.cpp: + Use STYLE_MAX to define the maximum number of styles. + [23ca0cad0227] <2.10-maint> + +2018-03-11 Phil Thompson + + * qt/qscintilla.pro: + Force QT_NO_ACCESSIBILITY when building against Qt4. + [b65f48ec1852] <2.10-maint> + +2018-02-27 Phil Thompson + + * .hgtags: + Added tag 2.10.3 for changeset bc769d6fcf53 + [279625f1d8c9] <2.10-maint> + + * NEWS: + Released as v2.10.3. + [bc769d6fcf53] [2.10.3] <2.10-maint> + + * rb-product: + Updated the PyQt5 wheel dependency. + [7cef6e297ddf] <2.10-maint> + + * NEWS: + Updated the NEWS file. + [1e073e29eca4] <2.10-maint> + +2018-02-10 Phil Thompson + + * qsci/api/python/Python-3.7.api: + Added the API file for Python v3.70b1. + [6d0032674462] <2.10-maint> + +2018-02-07 Phil Thompson + + * qt/qsciscintilla.cpp: + Fix the hotspot active background colour. + [45cfd8c68394] <2.10-maint> + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h: + Completed the accessibility support. + [2af3a5b045fa] <2.10-maint> + +2018-02-06 Phil Thompson + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h: + Implemented all of the accessible interface except for attributes(). + [434539a243dc] <2.10-maint> + + * qt/SciAccessibility.cpp: + Implemented more of the accessible interface. + [e8f3df5442cc] <2.10-maint> + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/ScintillaQt.cpp: + Implemented more of the accessible interface. + [fb26d9fdba27] <2.10-maint> + +2018-02-05 Phil Thompson + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/ScintillaQt.cpp, + qt/qsciscintillabase.cpp: + More accessibility progress. + [ea2432348b49] <2.10-maint> + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/ScintillaQt.cpp: + Some progress on accessibility. + [055345b62d7b] <2.10-maint> + + * qt/qscintilla.pro: + Updated the version of the shared library. + [fb50133f8770] <2.10-maint> + +2018-02-04 Phil Thompson + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/qscintilla.pro, + qt/qsciscintillabase.cpp: + Added the stubs for accessibility support. + [61e00a4f944f] <2.10-maint> + + * qt/SciAccessibility.cpp, qt/SciAccessibility.h, qt/qscintilla.pro, + qt/qsciscintillabase.cpp: + Added the stubs for accessibility support. + [8f2f20b663f1] + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Updated the .ts files. + [7630e7c16a42] + + * Python/sip/qscilexerpython.sip, qt/qscilexerpython.cpp, + qt/qscilexerpython.h: + Added the DoubleQuotedFString, SingleQuotedFString, + TripleSingleQuotedFString and TripleDoubleQuotedFString styles to + QsciLexerPython. + [69a152791250] + + * Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added QsciScintilla::setCaretLineFrameWidth(). + [61ed51375157] + + * Python/sip/qscicommand.sip: + Added ReverseLines to the Python bindings. + [132758b054dc] + + * qt/qscicommand.h: + Added ReverseLines to QsciCommand::Command. + [1cecbd08c177] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added SCLEX_INDENT, SCI_GETCARETLINEFRAME, SCI_SETCARETLINEFRAME, + SCI_SETACCESSIBILITY, SCI_GETACCESSIBILITY and SCI_LINEREVERSE. + [4a5c2bea7d34] + +2018-02-03 Phil Thompson + + * Python/configure-old.py, Python/configure.py, designer- + Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro, + qt/ScintillaQt.h, qt/qscintilla.pro: + Fixes to build with the latest code. + [262ad022e5b6] + + * README, cocoa/InfoBar.mm, cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, + cocoa/ScintillaCocoa.h, cocoa/ScintillaCocoa.mm, + cocoa/ScintillaFramework/Info.plist, cocoa/ScintillaFramework/Scinti + llaFramework.xcodeproj/project.pbxproj, + cocoa/ScintillaTest/AppController.h, + cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaTest/English.lproj/MainMenu.xib, + cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, + cocoa/ScintillaView.mm, cppcheck.suppress, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/index.html, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/ScintillaGTK.h, + gtk/ScintillaGTKAccessible.cxx, gtk/ScintillaGTKAccessible.h, + gtk/deps.mak, gtk/makefile, include/Platform.h, include/SciLexer.h, + include/Scintilla.h, include/Scintilla.iface, lexers/LexAsm.cxx, + lexers/LexBaan.cxx, lexers/LexBash.cxx, lexers/LexBasic.cxx, + lexers/LexCPP.cxx, lexers/LexD.cxx, lexers/LexDMIS.cxx, + lexers/LexDiff.cxx, lexers/LexEDIFACT.cxx, lexers/LexErrorList.cxx, + lexers/LexFortran.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx, + lexers/LexIndent.cxx, lexers/LexJSON.cxx, lexers/LexLaTeX.cxx, + lexers/LexLua.cxx, lexers/LexMatlab.cxx, lexers/LexPerl.cxx, + lexers/LexPowerShell.cxx, lexers/LexProgress.cxx, + lexers/LexProps.cxx, lexers/LexPython.cxx, lexers/LexRegistry.cxx, + lexers/LexRust.cxx, lexers/LexSQL.cxx, lexers/LexVHDL.cxx, + lexers/LexVerilog.cxx, lexers/LexVisualProlog.cxx, + lexers/LexYAML.cxx, lexlib/Accessor.cxx, + lexlib/CharacterCategory.cxx, lexlib/CharacterCategory.h, + lexlib/CharacterSet.cxx, lexlib/CharacterSet.h, + lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerModule.cxx, + lexlib/LexerModule.h, lexlib/LexerNoExceptions.cxx, + lexlib/LexerSimple.cxx, lexlib/PropSetSimple.cxx, + lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/WordList.cxx, + scripts/FileGenerator.py, scripts/HeaderOrder.txt, + scripts/LexGen.py, scripts/ScintillaData.py, src/AutoComplete.cxx, + src/AutoComplete.h, src/CallTip.cxx, src/CallTip.h, + src/CaseConvert.cxx, src/CaseFolder.h, src/Catalogue.cxx, + src/CellBuffer.cxx, src/CellBuffer.h, src/CharClassify.cxx, + src/CharClassify.h, src/ContractionState.cxx, + src/ContractionState.h, src/Decoration.cxx, src/Decoration.h, + src/Document.cxx, src/Document.h, src/EditModel.cxx, + src/EditModel.h, src/EditView.cxx, src/EditView.h, src/Editor.cxx, + src/Editor.h, src/ExternalLexer.cxx, src/ExternalLexer.h, + src/Indicator.cxx, src/KeyMap.cxx, src/LineMarker.cxx, + src/LineMarker.h, src/MarginView.cxx, src/MarginView.h, + src/Partitioning.h, src/PerLine.cxx, src/PerLine.h, src/Position.h, + src/PositionCache.cxx, src/PositionCache.h, src/RESearch.cxx, + src/RESearch.h, src/RunStyles.cxx, src/RunStyles.h, + src/ScintillaBase.cxx, src/ScintillaBase.h, src/Selection.cxx, + src/Selection.h, src/SparseVector.h, src/SplitVector.h, + src/Style.cxx, src/Style.h, src/UniConversion.cxx, + src/UniConversion.h, src/UniqueString.h, src/ViewStyle.cxx, + src/ViewStyle.h, src/XPM.cxx, src/XPM.h, test/gi/Scintilla- + filtered.h, test/unit/testCellBuffer.cxx, + test/unit/testCharClassify.cxx, test/unit/testContractionState.cxx, + test/unit/testDecoration.cxx, test/unit/testPartitioning.cxx, + test/unit/testRunStyles.cxx, test/unit/testSparseState.cxx, + test/unit/testSparseVector.cxx, test/unit/testSplitVector.cxx, + test/unit/testUnicodeFromUTF8.cxx, version.txt, win32/HanjaDic.cxx, + win32/PlatWin.cxx, win32/SciLexer.vcxproj, win32/ScintRes.rc, + win32/ScintillaWin.cxx, win32/deps.mak, win32/makefile, + win32/scintilla.mak: + Rebased on Scintilla v3.7.6. + [4822c10e2b59] + + * Merged the 2.10-maint branch into the trunk. + [64e6e4c3471d] + +2017-11-23 Phil Thompson + + * .hgtags: + Added tag 2.10.2 for changeset bdfb9584af36 + [d127fc44d4c4] <2.10-maint> + + * NEWS: + Released as v2.10.2. + [bdfb9584af36] [2.10.2] <2.10-maint> + + * qt/qscintilla.pro: + Bumed the .so minor version. + [4bb28057d3c2] <2.10-maint> + +2017-11-13 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added setScrollWidth() , scrollWidth, setScrollWidthTracking() and + scrollWidthTracking() to QsciScintilla. + [c6e64e99cb12] <2.10-maint> + +2017-11-01 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed the handling of UTF8 call tips. + [7aa9b863f330] <2.10-maint> + +2017-07-04 Phil Thompson + + * qt/qscintilla.pro: + Fixed case sensitivity of a couple of file names. + [e9d9b80fd61b] <2.10-maint> + + * .hgignore: + Ignore the new-style build directory. + [6c20c6b41705] <2.10-maint> + +2017-07-03 Phil Thompson + + * .hgtags: + Added tag 2.10.1 for changeset 20e0e2d419ba + [d6eba6c9e5ce] <2.10-maint> + + * NEWS: + Released as v2.10.1. + [20e0e2d419ba] [2.10.1] <2.10-maint> + + * rb-product: + Updated the PyQt5 dependency to v5.9. + [83200ee6b295] <2.10-maint> + +2017-05-24 Phil Thompson + + * lib/README.doc: + Updated the docs regarding use of build options supported by + Scintilla. + [fe6e73057d9e] <2.10-maint> + +2017-05-15 Phil Thompson + + * Python/sip/qscilexer.sip, Python/sip/qscilexeravs.sip, + Python/sip/qscilexerbash.sip, Python/sip/qscilexerbatch.sip, + Python/sip/qscilexercoffeescript.sip, Python/sip/qscilexercpp.sip, + Python/sip/qscilexercss.sip, Python/sip/qscilexerd.sip, + Python/sip/qscilexerfortran77.sip, Python/sip/qscilexerhtml.sip, + Python/sip/qscilexerlua.sip, Python/sip/qscilexerpascal.sip, + Python/sip/qscilexerperl.sip, Python/sip/qscilexerpostscript.sip, + Python/sip/qscilexerpov.sip, Python/sip/qscilexerpython.sip, + Python/sip/qscilexerruby.sip, Python/sip/qscilexerspice.sip, + Python/sip/qscilexersql.sip, Python/sip/qscilexertcl.sip, + Python/sip/qscilexerverilog.sip, Python/sip/qscilexervhdl.sip: + Added the lexer-specific re-implementations of previously internal + methods to the Python bindings. + [e8402392cedc] <2.10-maint> + +2017-03-22 Phil Thompson + + * qt/qscintilla.pro: + Enabled explicit C++11 support for Linux for old versions of GCC. + [e0e0b344ccf1] <2.10-maint> + +2017-03-16 Phil Thompson + + * qt/qscilexer.cpp: + Changed the default macOS font to Menlo 12pt as it has bold etc. + [39d69e37d352] <2.10-maint> + + * qt/qscilexer.cpp: + Changed the default font on macOS to Monaco 12pt. + [9030535e2457] <2.10-maint> + + * Python/configure.py: + Fixed the rpath change of the Python bindings on macOS. + [dd45e695812a] <2.10-maint> + +2017-02-22 Phil Thompson + + * qt/qscintilla.pro: + Fixed the .pro file so that debug builds match the features file. + [1aedd0c6eeda] <2.10-maint> + +2017-02-20 Phil Thompson + + * .hgtags: + Added tag 2.10 for changeset 6c07847b2835 + [2442f8d2df34] + + * NEWS: + Released as v2.10. + [6c07847b2835] [2.10] + + * qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_es.qm, + qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm: + Updated the .qm files. + [3b3c5924e746] + + * qt/qscintilla_fr.ts: + Partial updated French translations from Alan Garny. + [ca2d6917015e] + +2017-02-17 Phil Thompson + + * Python/sip/qsciscintillabase.sip: + Added /Transfer/ to the scroll bar replacement functions. + [49cf7181402a] + +2017-02-15 Phil Thompson + + * qt/qscintilla_de.ts: + Updated German translations from Detlev. + [51cca6073075] + +2017-02-14 Phil Thompson + + * qt/qscintilla_es.ts: + Updated Spanish translations from Jaime Seuma. + [0e30abdd0907] + +2017-02-13 Phil Thompson + + * designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro, + qt/qscintilla.pro: + Removed the 'release' option from all CONFIG lines. + [0901267a8e49] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Added replaceHorizontalScrollBar() and replaceVerticalScrollBar() to + QsciScintillaBase. + [bb7efd26b8b3] + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Updated the translation files. + [76c23d751930] + +2017-01-21 Phil Thompson + + * Python/sip/qscilexermarkdown.sip, qt/qscilexerjson.cpp, + qt/qscilexermarkdown.cpp, qt/qscilexermarkdown.h: + Updated the Markdown lexer with the latest settings from Detlev. + [9e9992a4e9f7] + +2017-01-17 Phil Thompson + + * qt/qsciapis.cpp: + Fixed problems with auto-completion lists where contexts and image + identifiers were getting lost. + [039599ba1b85] + +2017-01-16 Phil Thompson + + * designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro: + Fixed the example and designer plugin .pro files for the change + library name. + [d6c564089958] + + * lib/README.doc: + Updated website links to https. + [18a7013d4f8b] + + * qt/qsciabstractapis.h, qt/qsciapis.h, qt/qscicommand.h, + qt/qscicommandset.h, qt/qscidocument.h, qt/qsciglobal.h, + qt/qscilexer.h, qt/qscilexeravs.h, qt/qscilexerbash.h, + qt/qscilexerbatch.h, qt/qscilexercmake.h, + qt/qscilexercoffeescript.h, qt/qscilexercpp.h, qt/qscilexercsharp.h, + qt/qscilexercss.h, qt/qscilexercustom.h, qt/qscilexerd.h, + qt/qscilexerdiff.h, qt/qscilexerfortran.h, qt/qscilexerfortran77.h, + qt/qscilexerhtml.h, qt/qscilexeridl.h, qt/qscilexerjava.h, + qt/qscilexerjavascript.h, qt/qscilexerjson.h, qt/qscilexerlua.h, + qt/qscilexermakefile.h, qt/qscilexermarkdown.h, + qt/qscilexermatlab.h, qt/qscilexeroctave.h, qt/qscilexerpascal.h, + qt/qscilexerperl.h, qt/qscilexerpo.h, qt/qscilexerpostscript.h, + qt/qscilexerpov.h, qt/qscilexerproperties.h, qt/qscilexerpython.h, + qt/qscilexerruby.h, qt/qscilexerspice.h, qt/qscilexersql.h, + qt/qscilexertcl.h, qt/qscilexertex.h, qt/qscilexerverilog.h, + qt/qscilexervhdl.h, qt/qscilexerxml.h, qt/qscilexeryaml.h, + qt/qscimacro.h, qt/qsciprinter.h, qt/qsciscintilla.h, + qt/qsciscintillabase.h, qt/qscistyle.h, qt/qscistyledtext.h: + Removed all the __APPLE__ C++ linkages. + [ecd39912cb9b] + + * NEWS, Python/sip/qscilexer.sip, qt/qscilexer.h: + The previously internal methods of QsciLexer are now part of the + public API and are exposed to Python. + [4791eae227c6] + + * NEWS, Python/configure.py, qt/features/qscintilla2.prf, + qt/features_staticlib/qscintilla2.prf, qt/qscintilla.pro: + The name of the library now embeds the major version of Qt so that + Qt4 and Qt5 libraries can be installed in the same directory. + [b501dcc67049] + + * NEWS, Python/sip/qsciscintilla.sip, qt/qscilexercustom.h, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Implemented QscScintilla::bytes() and a corresponding text() + overload mainly for the use of QsciLexerCustom::styleText() + implementations. + [ed7a5a072695] + +2017-01-15 Phil Thompson + + * Python/sip/qsciscintillabase.sip: + Updated the sub-class convertor code. + [ee4e6efa0576] + + * NEWS, Python/sip/qscilexermarkdown.sip, + Python/sip/qscimodcommon.sip, qt/qscilexermarkdown.cpp, + qt/qscilexermarkdown.h, qt/qscintilla.pro: + Added the QsciLexerMarkdown class. + [0b5e03e0b64f] + +2017-01-11 Phil Thompson + + * NEWS, Python/sip/qscilexerjson.sip, Python/sip/qscimodcommon.sip, + qt/qscilexerjson.cpp, qt/qscilexerjson.h, qt/qscintilla.pro: + Implemented QsciLexerJSON. + [bb5118a2b0cb] + +2017-01-05 Phil Thompson + + * NEWS, Python/sip/qscilexercoffeescript.sip, + qt/qscilexercoffeescript.cpp, qt/qscilexercoffeescript.h: + Added InstanceProperty to QsciLexerCoffeeScript. + [2a6987f4c3c3] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.h: + Implemented the new notifications. + [12ba81979751] + +2017-01-04 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added the low-level popup options. + [6a6fccaf8adf] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added support for multiple edge columns. + [761b940d39c6] + +2017-01-03 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added the low-level idle styling support. + [fe8c747abb81] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added the low-level support for fold text. + [3afaaf7830c6] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Updates to the low-level target support. + [709bfb578a28] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h, + qt/qsciscintillabase.h: + Added support for the additional indicators. + [fb7bcbfc6c96] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added some more low-level constants. + [d19d12e79c31] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added support for setting the margin background colour. Added + support for setting the number of margins. + [407db46c80a6] + + * qt/qscilexercustom.cpp, qt/qscilexercustom.h: + Fixed QsciLexerCustom::startStyling() now that the 2nd argument + isn't used. + [2d4cc3cdb123] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added support for visible whitespace in indentations only. Added + support for tab drawing modes. + [1ef385e510b8] + + * qt/InputMethod.cpp: + Updated the inputMethodEvent() implementation. + [f0060458bd73] + +2017-01-02 Phil Thompson + + * qt/InputMethod.cpp, qt/ScintillaQt.cpp, qt/ScintillaQt.h: + Fixed compilation bugs with SCI_NAMESPACE defined. + [ef072ff5da5e] + + * lib/README.doc: + Minor documentation updates. + [f89ceb95b9c5] + + * qt/qsciscintillabase.cpp: + Fixed compilation bugs. + [8fdfb9bca00d] + + * CONTRIBUTING, Python/configure-old.py, Python/configure.py, README, + cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, cocoa/ScintillaCocoa.h, + cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/Info.plist, cocoa/ + ScintillaFramework/ScintillaFramework.xcodeproj/project.pbxproj, coc + oa/ScintillaFramework/ScintillaFramework.xcodeproj/project.xcworkspa + ce/contents.xcworkspacedata, cocoa/ScintillaFramework/ScintillaFrame + work.xcodeproj/xcshareddata/xcschemes/Scintilla.xcscheme, + cocoa/ScintillaFramework/module.modulemap, + cocoa/ScintillaTest/AppController.h, + cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaTest/English.lproj/MainMenu.xib, + cocoa/ScintillaTest/Info.plist, + cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, cocoa/S + cintillaTest/ScintillaTest.xcodeproj/project.xcworkspace/contents.xc + workspacedata, cocoa/ScintillaView.h, cocoa/ScintillaView.mm, + cocoa/checkbuildosx.sh, cppcheck.suppress, delcvs.bat, designer- + Qt4Qt5/designer.pro, doc/Design.html, doc/Icons.html, doc/Lexer.txt, + doc/Privacy.html, doc/SciCoding.html, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/ScintillaToDo.html, + doc/ScintillaUsage.html, doc/index.html, example- + Qt4Qt5/application.pro, gtk/Converter.h, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/ScintillaGTK.h, + gtk/ScintillaGTKAccessible.cxx, gtk/ScintillaGTKAccessible.h, + gtk/deps.mak, gtk/makefile, gtk/scintilla-marshal.c, gtk/scintilla- + marshal.h, gtk/scintilla-marshal.list, include/ILexer.h, + include/Platform.h, include/SciLexer.h, include/Sci_Position.h, + include/Scintilla.h, include/Scintilla.iface, + include/ScintillaWidget.h, lexers/LexA68k.cxx, lexers/LexAPDL.cxx, + lexers/LexASY.cxx, lexers/LexAU3.cxx, lexers/LexAVE.cxx, + lexers/LexAVS.cxx, lexers/LexAbaqus.cxx, lexers/LexAda.cxx, + lexers/LexAsm.cxx, lexers/LexAsn1.cxx, lexers/LexBaan.cxx, + lexers/LexBash.cxx, lexers/LexBasic.cxx, lexers/LexBatch.cxx, + lexers/LexBibTeX.cxx, lexers/LexBullant.cxx, lexers/LexCLW.cxx, + lexers/LexCOBOL.cxx, lexers/LexCPP.cxx, lexers/LexCSS.cxx, + lexers/LexCaml.cxx, lexers/LexCmake.cxx, lexers/LexCoffeeScript.cxx, + lexers/LexConf.cxx, lexers/LexCrontab.cxx, lexers/LexCsound.cxx, + lexers/LexD.cxx, lexers/LexDMAP.cxx, lexers/LexDMIS.cxx, + lexers/LexDiff.cxx, lexers/LexECL.cxx, lexers/LexEDIFACT.cxx, + lexers/LexEScript.cxx, lexers/LexEiffel.cxx, lexers/LexErlang.cxx, + lexers/LexErrorList.cxx, lexers/LexFlagship.cxx, + lexers/LexForth.cxx, lexers/LexFortran.cxx, lexers/LexGAP.cxx, + lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx, + lexers/LexHex.cxx, lexers/LexInno.cxx, lexers/LexJSON.cxx, + lexers/LexKVIrc.cxx, lexers/LexKix.cxx, lexers/LexLaTeX.cxx, + lexers/LexLisp.cxx, lexers/LexLout.cxx, lexers/LexLua.cxx, + lexers/LexMMIXAL.cxx, lexers/LexMPT.cxx, lexers/LexMSSQL.cxx, + lexers/LexMagik.cxx, lexers/LexMake.cxx, lexers/LexMarkdown.cxx, + lexers/LexMatlab.cxx, lexers/LexMetapost.cxx, lexers/LexModula.cxx, + lexers/LexMySQL.cxx, lexers/LexNimrod.cxx, lexers/LexNsis.cxx, + lexers/LexNull.cxx, lexers/LexOScript.cxx, lexers/LexOpal.cxx, + lexers/LexOthers.cxx, lexers/LexPB.cxx, lexers/LexPLM.cxx, + lexers/LexPO.cxx, lexers/LexPOV.cxx, lexers/LexPS.cxx, + lexers/LexPascal.cxx, lexers/LexPerl.cxx, lexers/LexPowerPro.cxx, + lexers/LexPowerShell.cxx, lexers/LexProgress.cxx, + lexers/LexProps.cxx, lexers/LexPython.cxx, lexers/LexR.cxx, + lexers/LexRebol.cxx, lexers/LexRegistry.cxx, lexers/LexRuby.cxx, + lexers/LexRust.cxx, lexers/LexSML.cxx, lexers/LexSQL.cxx, + lexers/LexSTTXT.cxx, lexers/LexScriptol.cxx, + lexers/LexSmalltalk.cxx, lexers/LexSorcus.cxx, + lexers/LexSpecman.cxx, lexers/LexSpice.cxx, lexers/LexTACL.cxx, + lexers/LexTADS3.cxx, lexers/LexTAL.cxx, lexers/LexTCL.cxx, + lexers/LexTCMD.cxx, lexers/LexTeX.cxx, lexers/LexTxt2tags.cxx, + lexers/LexVB.cxx, lexers/LexVHDL.cxx, lexers/LexVerilog.cxx, + lexers/LexVisualProlog.cxx, lexers/LexYAML.cxx, lexlib/Accessor.cxx, + lexlib/Accessor.h, lexlib/CharacterSet.cxx, lexlib/CharacterSet.h, + lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerBase.h, + lexlib/LexerModule.cxx, lexlib/LexerModule.h, + lexlib/LexerNoExceptions.cxx, lexlib/LexerNoExceptions.h, + lexlib/LexerSimple.cxx, lexlib/LexerSimple.h, + lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/SubStyles.h, + lexlib/WordList.cxx, lexlib/WordList.h, qt/qscintilla.pro, + scripts/Face.py, scripts/FileGenerator.py, + scripts/GenerateCaseConvert.py, scripts/HeaderCheck.py, + scripts/HeaderOrder.txt, scripts/LexGen.py, + scripts/ScintillaData.py, src/AutoComplete.cxx, src/CallTip.cxx, + src/CaseConvert.cxx, src/CaseConvert.h, src/CaseFolder.cxx, + src/Catalogue.cxx, src/CellBuffer.cxx, src/CellBuffer.h, + src/CharClassify.cxx, src/CharClassify.h, src/ContractionState.cxx, + src/ContractionState.h, src/Decoration.cxx, src/Document.cxx, + src/Document.h, src/EditModel.cxx, src/EditModel.h, + src/EditView.cxx, src/EditView.h, src/Editor.cxx, src/Editor.h, + src/ExternalLexer.cxx, src/Indicator.cxx, src/Indicator.h, + src/KeyMap.cxx, src/KeyMap.h, src/LineMarker.cxx, + src/MarginView.cxx, src/PerLine.cxx, src/Position.h, + src/PositionCache.cxx, src/PositionCache.h, src/RESearch.cxx, + src/RESearch.h, src/RunStyles.cxx, src/ScintillaBase.cxx, + src/ScintillaBase.h, src/Selection.cxx, src/Selection.h, + src/SparseVector.h, src/SplitVector.h, src/Style.cxx, src/Style.h, + src/UniConversion.cxx, src/UniConversion.h, src/ViewStyle.cxx, + src/ViewStyle.h, src/XPM.cxx, test/ScintillaCallable.py, + test/XiteQt.py, test/XiteWin.py, test/examples/perl-test- + 5220delta.pl, test/examples/perl-test-5220delta.pl.styled, + test/examples/perl-test-sub-prototypes.pl, test/examples/perl-test- + sub-prototypes.pl.styled, test/gi/Scintilla-0.1.gir.good, test/gi + /Scintilla-filtered.h, test/gi/filter-scintilla-h.py, test/gi/gi- + test.py, test/gi/makefile, test/lexTests.py, test/simpleTests.py, + test/unit/Sci.natvis, test/unit/UnitTester.cxx, + test/unit/UnitTester.vcxproj, test/unit/makefile, + test/unit/test.mak, test/unit/testCellBuffer.cxx, + test/unit/testContractionState.cxx, test/unit/testDecoration.cxx, + test/unit/testPartitioning.cxx, test/unit/testRunStyles.cxx, + test/unit/testSparseState.cxx, test/unit/testSparseVector.cxx, + test/unit/testSplitVector.cxx, test/unit/testWordList.cxx, + version.txt, win32/HanjaDic.cxx, win32/HanjaDic.h, + win32/PlatWin.cxx, win32/SciLexer.vcxproj, win32/ScintRes.rc, + win32/ScintillaWin.cxx, win32/deps.mak, win32/makefile, + win32/scintilla.mak: + Initial merge of Scintilla v3.7.2. + [abbfc844caaa] + + * lib/LICENSE.commercial.short, lib/LICENSE.gpl, + lib/LICENSE.gpl.short: + Updated the copyright notices. + [10d2ba70b9d0] + + * Makefile, build.py: + Merged the v2.9 maintenance branch. + [8c0c0a19a3c8] + +2016-12-25 Phil Thompson + + * .hgtags: + Added tag 2.9.4 for changeset 06e486532f86 + [a0e7ce41b57a] <2.9-maint> + + * NEWS: + Released as v2.9.4. + [06e486532f86] [2.9.4] <2.9-maint> + +2016-12-24 Phil Thompson + + * qsci/api/python/Python-3.6.api: + Added the .api file for Python v3.6. + [4af5841ab5d2] <2.9-maint> + +2016-11-07 Phil Thompson + + * qt/qsciscintillabase.cpp: + Updated a comment to explain why setting custom scrollbars doesn't + work. + [757ca3bbc419] <2.9-maint> + +2016-10-25 Phil Thompson + + * Python/configure.py: + Fixed configure.py for Python v2. + [6d784269a812] <2.9-maint> + +2016-10-23 Phil Thompson + + * Python/sip/qscimod4.sip, Python/sip/qscimod5.sip: + Explicitly %Import the QtCore module so that it is imported in the + .pyi file. + [fec61f546e2b] <2.9-maint> + +2016-09-26 Phil Thompson + + * lib/README.doc: + Removed some (possibly out of date) information about installation + on macOS. + [c793591a8192] <2.9-maint> + + * qt/InputMethod.cpp: + Disable the hack for handling null input method method events on + Windows as there are reports that this breaks character composition. + [42977285ae81] <2.9-maint> + +2016-09-25 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed a Qt warning about a too large red value in a QColor. + [f9af82c24301] <2.9-maint> + +2016-09-23 Phil Thompson + + * rb-product: + Added the minimum PyQt5 wheel version to the product file. + [11d2fb4dc51a] <2.9-maint> + +2016-09-10 Phil Thompson + + * Python/configure.py, rb-product: + Updated the handling of the minimum SIP version. + [1e50ffa9dac1] <2.9-maint> + +2016-09-09 Phil Thompson + + * Python/sip/qscimod5.sip: + The limited API is now used for the Python bindings. + [a2b8118a4483] <2.9-maint> + +2016-08-08 Phil Thompson + + * Makefile, build.py: + Removed the old internal build system. + [522e8b386eef] <2.9-maint> + +2016-07-25 Phil Thompson + + * METADATA.in: + Removed the Obsoletes tag from METADATA. + [fbf9aa05d0b4] <2.9-maint> + + * .hgtags: + Added tag 2.9.3 for changeset 19c9752958b7 + [fb5cd006685f] <2.9-maint> + + * NEWS: + Released as v2.9.3. + [19c9752958b7] [2.9.3] <2.9-maint> + +2016-07-19 Phil Thompson + + * METADATA.in: + Updated METADATA. + [aa51b27d9baf] <2.9-maint> + +2016-06-21 Phil Thompson + + * build.py, lib/qscintilla.dxy: + Simplify the generation of the doxygen documentation. + [12575460cd55] <2.9-maint> + + * rb-product, rbproduct.py: + Replaced the product plugin with a product file. + [846ad54d791e] <2.9-maint> + +2016-06-10 Phil Thompson + + * qt/ScintillaQt.cpp, qt/qscintilla.pro: + Fixed a flicker problem on OS X. + [c1482a759dc0] <2.9-maint> + +2016-05-12 Phil Thompson + + * METADATA.in, rbproduct.py: + Try to prevent the GPL and commercial versions being installed at + the same time. (Although it doesn't seem to work.) + [826424d291a2] <2.9-maint> + + * METADATA.in, rbproduct.py: + Configure the PKG-INFO meta-data according to the license. + [e3243207aa15] <2.9-maint> + +2016-05-10 Phil Thompson + + * rbproduct.py: + More changes to the product plugin required by rbtools. + [437e6032e4df] <2.9-maint> + +2016-05-09 Phil Thompson + + * rbproduct.py: + Updated the product plugin for the latest rbtools changes. + [393cae59af91] <2.9-maint> + +2016-04-22 Phil Thompson + + * METADATA.in: + Updated the meta-data now that Linux wheels are available from PyPI. + [40f18e066c6f] <2.9-maint> + +2016-04-18 Phil Thompson + + * .hgtags: + Added tag 2.9.2 for changeset 15888f3e91ce + [5cd132938309] <2.9-maint> + + * NEWS: + Released as v2.9.2. + [15888f3e91ce] [2.9.2] <2.9-maint> + + * Python/sip/qsciscintillabase.sip: + Remove all deprecated /DocType/ annotations. + [b9d570ab642a] <2.9-maint> + +2016-04-17 Phil Thompson + + * rbproduct.py: + Locate the static library on Windows. + [dd8c14dace83] <2.9-maint> + + * rbproduct.py: + Fixed a typo. + [baf5c942f528] <2.9-maint> + + * rbproduct.py: + Add any pre-installed .api files to the wheel. + [cf7b6302ae83] <2.9-maint> + + * rbproduct.py: + Exploit verbose mode in the product plugin. + [da743c037880] <2.9-maint> + + * rbproduct.py: + Fixed permissions of the product plugin. + [6fac075e0b88] <2.9-maint> + +2016-04-16 Phil Thompson + + * Makefile: + Updated the clean target. + [692b14f48ade] <2.9-maint> + + * rbproduct.py: + The wheel now includes translations and API files. + [bf911094e537] <2.9-maint> + + * METADATA.in, Makefile, Python/configure.py, build.py, rbproduct.py: + Added the initial support for creating wheels. + [da0a5d22e864] <2.9-maint> + + * Makefile, build.py: + Added the --omit-license-tag option to build.py. Added the dist- + wheel-gpl target to the master Makefile. + [a63c245de735] <2.9-maint> + +2016-04-15 Phil Thompson + + * Python/configure-old.py, Python/configure.py, build.py, + qt/features/qscintilla2.prf, qt/features_staticlib/qscintilla2.prf, + qt/qsciglobal.h, qt/qscintilla.pro: + Symbols are now hidden if possible on all platforms. Improved the + handling of QSCINTILLA_DLL so it should be completely automatic. + Removed the --no-dll option to configure.py. + [e35caca29dd6] <2.9-maint> + +2016-03-25 Phil Thompson + + * Python/configure-old.py, build.py: + Use the new naming standards for development versions. + [21d2f882320a] <2.9-maint> + +2016-03-14 Phil Thompson + + * Python/configure.py, build.py: + The configure.py boilerplate code is applied automatically. + [848f3fca41c0] <2.9-maint> + +2016-03-13 Phil Thompson + + * Python/configure.py: + Updated the configure.py boilerplate. + [b3fd404a1134] <2.9-maint> + +2016-03-07 Phil Thompson + + * Python/configure.py: + Added support for PEP 484 stub files to configure.py. + [9316fed27503] <2.9-maint> + +2015-12-15 Phil Thompson + + * Makefile: + Switched the internal build system to Python v3.5. + [5215e7f3116e] <2.9-maint> + +2015-10-28 Phil Thompson + + * Python/configure.py: + Handle PATH components that are enclosed in quotes. + [d0f19b69ce26] <2.9-maint> + +2015-10-24 Phil Thompson + + * .hgtags: + Added tag 2.9.1 for changeset 9bd39be91ef8 + [c71bd22d6ccf] <2.9-maint> + + * NEWS: + Released as v2.9.1. + [9bd39be91ef8] [2.9.1] <2.9-maint> + +2015-10-17 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed the handling of the keypad modifier. + [e363cc2c347f] <2.9-maint> + +2015-09-18 Phil Thompson + + * qsci/api/python/Python-3.5.api: + Added the .api file for Python v3.5. + [5b4e58de4663] <2.9-maint> + +2015-09-10 Phil Thompson + + * Python/sip/qsciabstractapis.sip, Python/sip/qsciapis.sip: + Fixed the Python binding for + QsciAbstractAPIs::updateAutoCompletionList(). + [53f2939a3b29] <2.9-maint> + +2015-09-08 Phil Thompson + + * Python/configure.py: + Use win32-msvc2015 for Python v3.5 and later. + [2f264662e2c7] <2.9-maint> + +2015-09-01 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed the restyling of a document displayed in multiple editors. + [9309f264ab57] <2.9-maint> + +2015-08-24 Phil Thompson + + * qt/qscintilla.pro, qt/qsciscintilla.cpp: + Fixed a problem starting a call tip when the auto-completion list is + displayed. Bumped the library version. + [2ec2115ea4d2] <2.9-maint> + +2015-07-12 Phil Thompson + + * designer-Qt4Qt5/qscintillaplugin.h: + Fixed a warning message when compiling against Qt v5.5.0. + [3ff05a0ef88d] <2.9-maint> + +2015-07-09 Phil Thompson + + * Python/configure.py: + Update QMAKE_RPATHDIR rather than set it. + [045c64a7e65c] <2.9-maint> + +2015-06-24 Phil Thompson + + * Python/configure.py: + Set QMAKE_RPATHDIR for Qt v5.5 on OS X. + [b83394e4a676] <2.9-maint> + +2015-05-26 Phil Thompson + + * Python/configure.py: + Fixed the backstop handling in the Python bindings configuration + script and bumped the version number. + [1ab1dd7ea495] <2.9-maint> + +2015-05-02 Phil Thompson + + * qt/qscintilla.pro: + Use QT_HOST_DATA for the .prf destination with Qt v5. Removed all Qt + v3 support from the .pro file. + [63c0391624a8] <2.9-maint> + +2015-04-20 Phil Thompson + + * .hgtags: + Added tag 2.9 for changeset 41ee8162fa81 + [9817b0a7a4f7] + + * NEWS: + Released as v2.9. + [41ee8162fa81] [2.9] + +2015-04-14 Phil Thompson + + * qt/qsciscintillabase.cpp: + Fixed a problem notifying when focus is lost to another application + widget. + [41734678234e] + +2015-04-06 Phil Thompson + + * qt/qsciscintillabase.cpp: + Fixed a crash when deleting an instance. + [eb936ad1f826] + +2015-04-05 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed a problem applying a lexer's styles that manifested itself by + the wrong style being applied to line numbers when using a custom + lexer. + [c91009909b8e] + +2015-04-04 Phil Thompson + + * qt/qscintilla_es.qm, qt/qscintilla_es.ts: + Updated Spanish translations from Jaime. + [d94218e7d47d] + + * qt/ScintillaQt.h: + Fixed some header file dependencies. + [f246e863957f] + + * qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm: + Updated German translations from Detlev. + [01f3be277e14] + +2015-04-03 Phil Thompson + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts: + Updated the .ts translation files. + [659fb035d1c4] + +2015-04-02 Phil Thompson + + * qt/qsciapis.cpp: + Fixed a problem displaying call-tips when auto-completion is + enabled. + [82ec45421a3d] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h, + qt/qsciscintillabase.h: + Exposed the remaining new features. + [6e84b61268c5] + +2015-04-01 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Exposing new Scintilla functionality. + [e0965dc46693] + +2015-03-31 Phil Thompson + + * qt/qscilexerverilog.cpp, qt/qscilexerverilog.h: + Enabled the new styling features of QsciLexerVerilog. + [5be65189b15f] + + * NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp, + qt/qscilexercpp.h: + Completed the updates to QsciLexerCPP. + [a8e24b727d82] + + * NEWS, Python/sip/qscilexercpp.sip, Python/sip/qscilexersql.sip, + Python/sip/qscilexerverilog.sip, Python/sip/qscilexervhdl.sip, + Python/sip/qsciscintillabase.sip, qt/qscilexercpp.cpp, + qt/qscilexercpp.h, qt/qscilexersql.cpp, qt/qscilexersql.h, + qt/qscilexerverilog.cpp, qt/qscilexerverilog.h, + qt/qscilexervhdl.cpp, qt/qscilexervhdl.h, qt/qsciscintillabase.h: + Updated existing lexers with new styles. + [768f8ff280e1] + +2015-03-30 Phil Thompson + + * qt/qsciapis.cpp: + Make sure call tips don't include image types. + [d0830816cda4] + + * qt/ScintillaQt.cpp, qt/ScintillaQt.h: + Fixed the horizontal scrollbar issues, particularly with long lines. + [db8501c0803f] + +2015-03-29 Phil Thompson + + * qt/ScintillaQt.cpp: + Updated the paste support. + [42ad3657d52e] + + * qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp: + Added support for idle processing. + [ff277e910df7] + +2015-03-27 Phil Thompson + + * NEWS: + Updated the NEWS file. + [64766fb4c800] + + * qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Add support for fine tickers. + [3e9b89430dc0] + +2015-03-26 Phil Thompson + + * Makefile, Python/sip/qsciabstractapis.sip, Python/sip/qsciapis.sip, + Python/sip/qscicommandset.sip, Python/sip/qscilexer.sip, + Python/sip/qscilexeravs.sip, Python/sip/qscilexerbash.sip, + Python/sip/qscilexerbatch.sip, Python/sip/qscilexercmake.sip, + Python/sip/qscilexercoffeescript.sip, Python/sip/qscilexercpp.sip, + Python/sip/qscilexercsharp.sip, Python/sip/qscilexercss.sip, + Python/sip/qscilexercustom.sip, Python/sip/qscilexerd.sip, + Python/sip/qscilexerdiff.sip, Python/sip/qscilexerfortran.sip, + Python/sip/qscilexerfortran77.sip, Python/sip/qscilexerhtml.sip, + Python/sip/qscilexeridl.sip, Python/sip/qscilexerjava.sip, + Python/sip/qscilexerjavascript.sip, Python/sip/qscilexerlua.sip, + Python/sip/qscilexermakefile.sip, Python/sip/qscilexermatlab.sip, + Python/sip/qscilexeroctave.sip, Python/sip/qscilexerpascal.sip, + Python/sip/qscilexerperl.sip, Python/sip/qscilexerpo.sip, + Python/sip/qscilexerpostscript.sip, Python/sip/qscilexerpov.sip, + Python/sip/qscilexerproperties.sip, Python/sip/qscilexerpython.sip, + Python/sip/qscilexerruby.sip, Python/sip/qscilexerspice.sip, + Python/sip/qscilexersql.sip, Python/sip/qscilexertcl.sip, + Python/sip/qscilexertex.sip, Python/sip/qscilexerverilog.sip, + Python/sip/qscilexervhdl.sip, Python/sip/qscilexerxml.sip, + Python/sip/qscilexeryaml.sip, Python/sip/qscimacro.sip, + Python/sip/qscimod3.sip, Python/sip/qscimod4.sip, + Python/sip/qscimod5.sip, Python/sip/qscimodcommon.sip, + Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip, + build.py, designer-Qt3/designer.pro, designer- + Qt3/qscintillaplugin.cpp, example-Qt3/application.cpp, example- + Qt3/application.h, example-Qt3/application.pro, example- + Qt3/fileopen.xpm, example-Qt3/fileprint.xpm, example- + Qt3/filesave.xpm, example-Qt3/main.cpp, lib/README, lib/README.doc, + lib/qscintilla.dxy, qt/InputMethod.cpp, qt/ListBoxQt.cpp, + qt/PlatQt.cpp, qt/SciClasses.cpp, qt/SciClasses.h, + qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciabstractapis.cpp, + qt/qsciabstractapis.h, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qscicommandset.cpp, qt/qscicommandset.h, qt/qscilexer.cpp, + qt/qscilexer.h, qt/qscilexeravs.cpp, qt/qscilexeravs.h, + qt/qscilexerbash.cpp, qt/qscilexerbash.h, qt/qscilexerbatch.cpp, + qt/qscilexerbatch.h, qt/qscilexercmake.cpp, qt/qscilexercmake.h, + qt/qscilexercoffeescript.cpp, qt/qscilexercoffeescript.h, + qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscilexercsharp.cpp, + qt/qscilexercsharp.h, qt/qscilexercss.cpp, qt/qscilexercss.h, + qt/qscilexercustom.cpp, qt/qscilexercustom.h, qt/qscilexerd.cpp, + qt/qscilexerd.h, qt/qscilexerdiff.cpp, qt/qscilexerdiff.h, + qt/qscilexerfortran.cpp, qt/qscilexerfortran.h, + qt/qscilexerfortran77.cpp, qt/qscilexerfortran77.h, + qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, qt/qscilexeridl.cpp, + qt/qscilexeridl.h, qt/qscilexerjava.cpp, qt/qscilexerjava.h, + qt/qscilexerjavascript.cpp, qt/qscilexerjavascript.h, + qt/qscilexerlua.cpp, qt/qscilexerlua.h, qt/qscilexermakefile.cpp, + qt/qscilexermakefile.h, qt/qscilexermatlab.cpp, + qt/qscilexermatlab.h, qt/qscilexeroctave.cpp, qt/qscilexeroctave.h, + qt/qscilexerpascal.cpp, qt/qscilexerpascal.h, qt/qscilexerperl.cpp, + qt/qscilexerperl.h, qt/qscilexerpo.cpp, qt/qscilexerpo.h, + qt/qscilexerpostscript.cpp, qt/qscilexerpostscript.h, + qt/qscilexerpov.cpp, qt/qscilexerpov.h, qt/qscilexerproperties.cpp, + qt/qscilexerproperties.h, qt/qscilexerpython.cpp, + qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h, + qt/qscilexerspice.cpp, qt/qscilexerspice.h, qt/qscilexersql.cpp, + qt/qscilexersql.h, qt/qscilexertcl.cpp, qt/qscilexertcl.h, + qt/qscilexertex.cpp, qt/qscilexertex.h, qt/qscilexerverilog.cpp, + qt/qscilexerverilog.h, qt/qscilexervhdl.cpp, qt/qscilexervhdl.h, + qt/qscilexerxml.cpp, qt/qscilexerxml.h, qt/qscilexeryaml.cpp, + qt/qscilexeryaml.h, qt/qscimacro.cpp, qt/qscimacro.h, + qt/qsciprinter.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h, qt/qscistyle.cpp, + qt/qscistyledtext.h: + Removed all support for Qt3 and PyQt3. + [b33b2f06716e] + + * Python/configure-old.py, Python/configure.py, designer- + Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro, + qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro: + The updated code now compiles. + [35d05076c62f] + + * cocoa/InfoBar.h, cocoa/InfoBar.mm, cocoa/InfoBarCommunicator.h, + cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, cocoa/QuartzTextLayout.h, + cocoa/QuartzTextStyle.h, cocoa/ScintillaCocoa.h, + cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework + .xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.h, + cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, + cocoa/ScintillaView.h, cocoa/ScintillaView.mm, + cocoa/checkbuildosx.sh, cppcheck.suppress, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/index.html, gtk/Converter.h, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile, + include/Platform.h, include/SciLexer.h, include/Scintilla.h, + include/Scintilla.iface, lexers/LexAbaqus.cxx, lexers/LexAsm.cxx, + lexers/LexBash.cxx, lexers/LexBasic.cxx, lexers/LexBibTeX.cxx, + lexers/LexCPP.cxx, lexers/LexCmake.cxx, lexers/LexCoffeeScript.cxx, + lexers/LexDMAP.cxx, lexers/LexDMIS.cxx, lexers/LexECL.cxx, + lexers/LexEScript.cxx, lexers/LexForth.cxx, lexers/LexFortran.cxx, + lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx, + lexers/LexHex.cxx, lexers/LexKix.cxx, lexers/LexLua.cxx, + lexers/LexMarkdown.cxx, lexers/LexMatlab.cxx, lexers/LexModula.cxx, + lexers/LexMySQL.cxx, lexers/LexOthers.cxx, lexers/LexPS.cxx, + lexers/LexPerl.cxx, lexers/LexRegistry.cxx, lexers/LexRuby.cxx, + lexers/LexRust.cxx, lexers/LexSQL.cxx, lexers/LexScriptol.cxx, + lexers/LexSpecman.cxx, lexers/LexTCL.cxx, lexers/LexTCMD.cxx, + lexers/LexTxt2tags.cxx, lexers/LexVHDL.cxx, lexers/LexVerilog.cxx, + lexers/LexVisualProlog.cxx, lexlib/Accessor.cxx, lexlib/Accessor.h, + lexlib/CharacterCategory.cxx, lexlib/CharacterSet.cxx, + lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerModule.cxx, + lexlib/LexerModule.h, lexlib/LexerNoExceptions.cxx, + lexlib/LexerSimple.cxx, lexlib/LexerSimple.h, + lexlib/PropSetSimple.cxx, lexlib/SparseState.h, lexlib/StringCopy.h, + lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/SubStyles.h, + lexlib/WordList.cxx, lexlib/WordList.h, lib/README.doc, + qt/qscintilla.pro, scripts/GenerateCaseConvert.py, + scripts/GenerateCharacterCategory.py, scripts/HFacer.py, + scripts/HeaderOrder.txt, scripts/LexGen.py, + scripts/ScintillaData.py, src/AutoComplete.cxx, src/AutoComplete.h, + src/CallTip.cxx, src/CaseConvert.cxx, src/CaseFolder.cxx, + src/Catalogue.cxx, src/CellBuffer.cxx, src/CellBuffer.h, + src/CharClassify.cxx, src/ContractionState.cxx, + src/ContractionState.h, src/Decoration.cxx, src/Decoration.h, + src/Document.cxx, src/Document.h, src/EditModel.cxx, + src/EditModel.h, src/EditView.cxx, src/EditView.h, src/Editor.cxx, + src/Editor.h, src/ExternalLexer.cxx, src/ExternalLexer.h, + src/FontQuality.h, src/Indicator.cxx, src/Indicator.h, + src/KeyMap.cxx, src/KeyMap.h, src/LineMarker.cxx, src/LineMarker.h, + src/MarginView.cxx, src/MarginView.h, src/Partitioning.h, + src/PerLine.cxx, src/PerLine.h, src/PositionCache.cxx, + src/PositionCache.h, src/RESearch.cxx, src/RESearch.h, + src/ScintillaBase.cxx, src/ScintillaBase.h, src/Selection.cxx, + src/Selection.h, src/SplitVector.h, src/Style.cxx, src/Style.h, + src/UniConversion.cxx, src/UniConversion.h, src/ViewStyle.cxx, + src/ViewStyle.h, src/XPM.cxx, src/XPM.h, test/XiteQt.py, + test/XiteWin.py, test/lexTests.py, test/simpleTests.py, + test/unit/LICENSE_1_0.txt, test/unit/README, + test/unit/SciTE.properties, test/unit/catch.hpp, test/unit/makefile, + test/unit/test.mak, test/unit/testCellBuffer.cxx, + test/unit/testCharClassify.cxx, test/unit/testContractionState.cxx, + test/unit/testDecoration.cxx, test/unit/testPartitioning.cxx, + test/unit/testRunStyles.cxx, test/unit/testSparseState.cxx, + test/unit/testSplitVector.cxx, test/unit/testUnicodeFromUTF8.cxx, + test/unit/unitTest.cxx, version.txt, win32/HanjaDic.cxx, + win32/HanjaDic.h, win32/PlatWin.cxx, win32/PlatWin.h, + win32/SciLexer.vcxproj, win32/ScintRes.rc, win32/ScintillaWin.cxx, + win32/deps.mak, win32/makefile, win32/scintilla.mak: + Added the initial import of Scintilla v3.5.4. + [025db9484942] + + * lib/GPL_EXCEPTION.TXT, lib/GPL_EXCEPTION_ADDENDUM.TXT, + lib/LICENSE.GPL2, lib/LICENSE.GPL3, lib/OPENSOURCE-NOTICE.TXT, + qt/qscintilla_ru.qm, qt/qscintilla_ru.ts: + Merged the 2.8-maint branch into the default. + [efe1067a091a] + +2015-03-19 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed QsciScintilla::clearMarginText(). + [885b972e38df] <2.8-maint> + +2015-02-14 Phil Thompson + + * Makefile, Python/configure.py: + Installing into a virtual env should now work. The internal build + system supports sip5. + [62d128cc92de] <2.8-maint> + +2015-02-08 Phil Thompson + + * Python/configure.py: + Use sip5 if available. + [6f5e4b0dae8f] <2.8-maint> + +2015-01-02 Phil Thompson + + * Python/configure.py, lib/LICENSE.commercial.short, lib/LICENSE.gpl, + lib/LICENSE.gpl.short, qt/InputMethod.cpp: + Updated the copyright notices. + [50b9b459dc48] <2.8-maint> + + * Python/configure-old.py: + Fixed configure-old.py for previews. + [7ff9140391e4] <2.8-maint> + +2014-12-22 Phil Thompson + + * build.py, lib/LICENSE.GPL3, lib/LICENSE.commercial.short, + lib/LICENSE.gpl, lib/LICENSE.gpl.short: + More license tweaks. + [f3e84d697877] <2.8-maint> + + * build.py, lib/GPL_EXCEPTION.TXT, lib/GPL_EXCEPTION_ADDENDUM.TXT, + lib/LICENSE.GPL2, lib/LICENSE.gpl.short, lib/OPENSOURCE-NOTICE.TXT, + lib/README.doc: + Aligned the GPL licensing with Qt. + [aa58ba575cac] <2.8-maint> + +2014-12-21 Phil Thompson + + * lib/LICENSE.commercial: + Updated the commercial license to v4.0. + [fd91beaa78dd] <2.8-maint> + +2014-11-16 Phil Thompson + + * build.py: + A source package now includes a full ChangeLog. + [ba92c1d5c839] <2.8-maint> + +2014-09-11 Phil Thompson + + * .hgtags: + Added tag 2.8.4 for changeset e18756e8cf86 + [e7f7a594518d] <2.8-maint> + + * .hgignore, NEWS: + Released as v2.8.4. + [e18756e8cf86] [2.8.4] <2.8-maint> + +2014-09-04 Phil Thompson + + * NEWS: + Updated the NEWS file. + [e4e3562b54cb] <2.8-maint> + +2014-09-03 Phil Thompson + + * Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip, + qt/qscintilla.pro, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qsciscintillabase.h: + Added the missing SCI_SETHOTSPOTSINGLELINE to QsciScintillaBase. + Added resetHotspotForegroundColor(), resetHotspotBackgroundColor(), + setHotspotForegroundColor(), setHotspotBackgroundColor(), + setHotspotUnderline() and setHotspotWrap() to QsciScintilla. + [2da018f7e48c] <2.8-maint> + +2014-07-31 Phil Thompson + + * qt/qsciscintilla.cpp: + Attempted to improve the auto-indentation behaviour so that the + indentation of a line is maintained if a new line has been inserted + above by pressing enter at the start of the line. + [aafc4a7247fb] <2.8-maint> + +2014-07-11 Phil Thompson + + * Python/configure.py: + Fixed the installation of the .api file. + [aae8494847ff] <2.8-maint> + +2014-07-10 Phil Thompson + + * Python/configure.py, designer-Qt4Qt5/designer.pro, + qt/qscintilla.pro: + Fixes to work around QTBUG-39300. Fix when building with a + configuration file. + [1051e8c260fd] <2.8-maint> + +2014-07-03 Phil Thompson + + * .hgtags: + Added tag 2.8.3 for changeset e9cb8530f97f + [bb531051c8f3] <2.8-maint> + + * NEWS: + Released as v2.8.3. + [e9cb8530f97f] [2.8.3] <2.8-maint> + +2014-07-01 Phil Thompson + + * Python/configure.py: + Fixed a cut-and-paste bug in configure.py. + [5f7c4c6c9a29] <2.8-maint> + + * Python/configure.py: + Updated to the latest build system boilerplate. + [ee0b9a647e7a] <2.8-maint> + +2014-06-30 Phil Thompson + + * Makefile, Python/configure.py: + Updates to the build system and the latest boilerplate configure.py. + [8485111172c7] <2.8-maint> + +2014-06-19 Phil Thompson + + * qt/qscilexercoffeescript.cpp, qt/qscintilla.pro, + qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.qm, qt/qscintilla_es.ts, qt/qscintilla_fr.qm, + qt/qscintilla_pt_br.qm, qt/qscintilla_ru.qm, qt/qscintilla_ru.ts: + Updated CoffeeScript keywords and German translations from Detlev. + Updated Spanish translations from Jaime. Removed the Russian + translations as none were current. + [978fe16935c4] <2.8-maint> + +2014-06-15 Phil Thompson + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the translation source files. + [440ab56f1863] <2.8-maint> + +2014-06-09 Phil Thompson + + * Python/sip/qscilexercoffeescript.sip, Python/sip/qscimodcommon.sip, + Python/sip/qsciscintillabase.sip: + Added QsciLexerCoffeeScript to the Python bindings. + [36a6e2123a69] <2.8-maint> + + * qt/qscilexercoffeescript.h: + QsciLexerCoffeeScript property setters are no longer virtual slots. + [eef97550eb16] <2.8-maint> + + * qt/qscilexercoffeescript.cpp, qt/qscilexercoffeescript.h, + qt/qscintilla.pro: + Added the QsciLexerCoffeeScript class. + [0cf56e9cd32a] <2.8-maint> + +2014-06-03 Phil Thompson + + * Python/configure.py: + Fixes for Python v2.6. + [9b7b5393f228] <2.8-maint> + +2014-06-01 Phil Thompson + + * Python/configure.py: + Fixed a regression in configure.py when using the -n or -o options. + [f7b1c9821894] <2.8-maint> + +2014-05-29 Phil Thompson + + * qt/PlatQt.cpp, qt/qsciscintillabase.cpp: + Fixes for Qt3. + [4d0a54024b52] <2.8-maint> + + * qt/PlatQt.cpp, qt/qscilexer.cpp, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qscistyle.cpp: + Font sizes are now handled as floating point values rather than + integers. + [ea017cc2b198] <2.8-maint> + +2014-05-26 Phil Thompson + + * .hgtags: + Added tag 2.8.2 for changeset 5aab3ae01e0e + [6cc6eec7c440] <2.8-maint> + + * NEWS: + Released as v2.8.2. + [5aab3ae01e0e] [2.8.2] <2.8-maint> + + * Python/sip/qsciscintillabase.sip: + Updated the sub-class converter code. + [9b276dae576d] <2.8-maint> + + * Makefile: + Internal build system fixes. + [b29b24829b0b] <2.8-maint> + +2014-05-24 Phil Thompson + + * Makefile, Python/configure.py: + Fixed some build regressions with PyQt4. + [175b657ad031] <2.8-maint> + +2014-05-18 Phil Thompson + + * Makefile: + Updates to the top-level Makefile for the latest Android tools. + [405fb3eb5473] <2.8-maint> + +2014-05-17 Phil Thompson + + * Makefile: + Added the PyQt4 against Qt5 on the iPhone simulator build target. + [c31ae5795eec] <2.8-maint> + +2014-05-16 Phil Thompson + + * Makefile, Python/configure.py: + Use the PyQt .sip files in sysroot when cross-compiling. + [5d8e8b8ddfe5] <2.8-maint> + + * Makefile, Python/configure.py: + Replaced pyqt_sip_flags with pyqt_disabled_features in the + configuration file. + [f209403c183b] <2.8-maint> + +2014-05-15 Phil Thompson + + * Makefile, Python/sip/qscimod5.sip: + The PyQt5 bindings now run on the iOS simulator. + [056871b18335] <2.8-maint> + + * Makefile, Python/configure.py: + Building the Python bindings for the iOS simulator now works. + [9dfcea4447b8] <2.8-maint> + + * Makefile: + Updated the main Makefile for the Qt v5.2 iOS support. + [a619fd411878] <2.8-maint> + +2014-05-14 Phil Thompson + + * Python/configure.py: + Don't create the .api file if it isn't going to be installed. + [79db1145e882] <2.8-maint> + +2014-05-12 Phil Thompson + + * Python/configure.py: + Added the --sysroot, --no-sip-files and --no-qsci-api options to + configure.py. + [10642d7deba9] <2.8-maint> + +2014-05-05 Phil Thompson + + * Makefile: + Updated the internal build system for the combined iOS/Android Qt + installation. + [9097d3096b70] <2.8-maint> + +2014-05-04 Phil Thompson + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts: + Updated German translations from Detlev. + [d4f631ee3aaf] <2.8-maint> + + * qt/qscintilla_es.qm, qt/qscintilla_es.ts: + Updated Spanish translations from Jaime Seuma. + [51350008c8a4] <2.8-maint> + +2014-04-30 Phil Thompson + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the .ts files. + [4c5f88b22952] <2.8-maint> + +2014-04-29 Phil Thompson + + * Python/sip/qscilexerpo.sip, Python/sip/qscimodcommon.sip, + qt/qscilexerpo.cpp, qt/qscilexerpo.h, qt/qscintilla.pro: + Added the QsciLexerPO class. + [d42e44550d80] <2.8-maint> + + * Python/sip/qscilexeravs.sip, Python/sip/qscimodcommon.sip, + qt/qscilexeravs.cpp, qt/qscilexeravs.h, qt/qscintilla.pro: + Added the QsciLexerAVS class. + [ed6edb6ec205] <2.8-maint> + +2014-04-27 Phil Thompson + + * Python/configure.py: + Fixes for the refactored configure.py. + [21b9fa66338e] <2.8-maint> + + * Python/configure.py: + Initial refactoring of configure.py so that it is implemented as + configurable (and reusable) boilerplate. + [615d75a88db9] <2.8-maint> + +2014-04-24 Phil Thompson + + * Python/sip/qsciscintilla.sip, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + setEnabled() now implements the expected visual effects. + [3e4254394b08] <2.8-maint> + +2014-03-22 Phil Thompson + + * Python/configure.py: + Fixed the handling of the --pyqt-sip-flags option. Restored the + specification of the Python library directory for Windows. + [3ea496d62b9f] <2.8-maint> + + * Python/configure.py, qt/features/qscintilla2.prf, qt/qscintilla.pro: + Added the --pyqt-sip-flags to configure.py to avoid having to + introspect PyQt. Fixed the .prf file for OS/X. Tweaks to + configure.py so that a configuration file will use the same names as + PyQt5. + [77ff3a21d00a] <2.8-maint> + +2014-03-21 Phil Thompson + + * Makefile, lib/README.doc, qt/qscintilla.pro: + Changes to the .pro file to build a static library without having to + edit it. + [f82637449276] <2.8-maint> + +2014-03-17 Phil Thompson + + * qt/PlatQt.cpp, qt/qsciscintillabase.cpp: + Fixed building against Qt v5.0.x. + [d68e28068b67] <2.8-maint> + +2014-03-14 Phil Thompson + + * .hgtags: + Added tag 2.8.1 for changeset 6bb7ab27c958 + [dfd473e8336b] <2.8-maint> + + * NEWS: + Released as v2.8.1. + [6bb7ab27c958] [2.8.1] <2.8-maint> + + * qt/SciClasses.cpp: + Fixed the display of UTF-8 call tips. + [3f0ca7ba60a0] <2.8-maint> + +2014-03-12 Phil Thompson + + * qsci/api/python/Python-3.4.api: + Added the .api file for Python v3.4. + [3db067b6dcec] <2.8-maint> + +2014-03-05 Phil Thompson + + * qt/PlatQt.cpp: + Revised attempt at the outline of alpha rectangles in case Qt ignore + the alpha of the pen. + [86ab8898503e] <2.8-maint> + + * qt/PlatQt.cpp: + Fixed the setting of the pen when drawing alpha rectangles. + [3f4ff2e8aca3] <2.8-maint> + +2014-02-09 Phil Thompson + + * Python/configure.py: + The Python module now has the correct install name on OS/X. + [eec8c704418a] <2.8-maint> + +2014-02-04 Phil Thompson + + * qt/qscicommand.cpp, qt/qscicommand.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Fixed a problem entering non-ASCII characters that clashed with + Scintilla's SCK_* values. Key_Enter, Key_Backtab, Key_Super_L, + Key_Super_R and Key_Menu are now valid QsciCommand keys. + [94aec4f075df] <2.8-maint> + +2014-01-31 Phil Thompson + + * qt/qsciscintilla.cpp: + Make sure the editor is active after a selection of a user list + entry. + [e0f2106777d0] <2.8-maint> + +2014-01-23 Phil Thompson + + * qt/SciClasses.cpp: + On Linux, single clicking on an item in an auto-completion list now + just selects the itemm (rather than inserting the item) to be + consistent with other platforms. + [d916bbbf6517] <2.8-maint> + + * qt/qsciscintillabase.cpp: + Fix the handling of the auto-completion list when losing focus. + [a67b51ac8611] <2.8-maint> + +2014-01-22 Phil Thompson + + * qt/InputMethod.cpp, qt/qsciscintillabase.cpp: + Fixed building against Qt4. + [bf0a5f984fc1] <2.8-maint> + +2014-01-19 Phil Thompson + + * NEWS: + Updated the NEWS file. + [da2a76da712e] <2.8-maint> + +2014-01-18 Phil Thompson + + * qt/InputMethod.cpp: + Another attempt to fix input events on losing focus. + [6de3ab62fade] <2.8-maint> + + * lib/README.doc: + Added the qmake integration section to the docs. + [2918e4760c36] <2.8-maint> + +2014-01-07 Phil Thompson + + * Makefile: + Added Android to the internal build system. + [3be74b3e89e9] <2.8-maint> + +2014-01-06 Phil Thompson + + * qt/InputMethod.cpp, qt/qsciscintillabase.cpp: + Newlines can now be entered on iOS. + [8d23447dbd4d] <2.8-maint> + +2014-01-05 Phil Thompson + + * qt/InputMethod.cpp: + See if we can detect a input methdo event generated when losing + focus and not to clear the selection. + [8e4216289efe] <2.8-maint> + +2014-01-04 Phil Thompson + + * Python/sip/qsciprinter.sip: + The Python bindings now respect the PyQt_Printer feature. + [c3106f715803] <2.8-maint> + +2014-01-03 Phil Thompson + + * qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Added support for software input panels with Qt v5. + [d4499b61ff04] <2.8-maint> + + * qt/qsciscintilla.cpp: + Disable input methods when read-only (rather than non-UTF8) to be + consistent with Qt. + [f8817d4a47e3] <2.8-maint> + + * qt/qscintilla.pro, qt/qsciprinter.h: + Fixed the .pro file so that QT_NO_PRINTER is set properly and + removed the workaround. + [b5a6709d814a] <2.8-maint> + +2014-01-02 Phil Thompson + + * qt/PlatQt.cpp: + Finally fixed buffered drawing on retina displays. + [f8d23103df70] <2.8-maint> + + * qt/PlatQt.cpp, qt/qsciscintillabase.cpp: + Fixes for buffered drawing on retina displays. (Not yet correct, but + close.) + [a3b36be44112] <2.8-maint> + + * Makefile: + Changed the build system for the example on the iOS simulator so + that qmake is only used to generate the .xcodeproj file. + [179dbf5ba385] <2.8-maint> + + * Makefile: + Added the building of the example to the main Makefile. + [aec2ac3ac591] <2.8-maint> + + * Makefile: + Added iOS simulator targets to the build system. + [72af8241b261] <2.8-maint> + + * Makefile, build.py, lib/LICENSE.GPL2, lib/LICENSE.GPL3, + lib/LICENSE.commercial.short, lib/LICENSE.gpl.short, + qt/InputMethod.cpp: + Updated copyright notices. + [f21e016499fe] <2.8-maint> + + * qt/MacPasteboardMime.cpp, qt/qsciprinter.cpp, qt/qsciprinter.h, + qt/qsciscintillabase.cpp: + Fixes for building for iOS. + [46d25e648b4a] <2.8-maint> + +2013-12-31 Phil Thompson + + * Python/configure.py, build.py, designer-Qt4Qt5/designer.pro, + example-Qt4Qt5/application.pro, lib/README.doc, + qt/features/qscintilla2.prf, qt/qscintilla.pro: + Implemented the qscintilla2.prf feature file and updated everything + to use it. + [c3bfef1a55ad] <2.8-maint> + +2013-12-29 Phil Thompson + + * qt/ScintillaQt.h: + Added some additional header file dependencies. + [7ec67eced9de] <2.8-maint> + +2013-12-21 Phil Thompson + + * qt/MacPasteboardMime.cpp, qt/ScintillaQt.cpp: + Fixes for building against Qt3. + [f25cbda736fd] <2.8-maint> + +2013-12-16 Phil Thompson + + * designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro: + Updated the plugin and example .pro files to work around the qmake + incompatibilities introduced in Qt v5.2.0. + [a14729b2702d] <2.8-maint> + +2013-12-15 Phil Thompson + + * qt/qsciscintillabase.cpp: + Fixed the previous fix. + [6c322fa1b20f] <2.8-maint> + +2013-12-14 Phil Thompson + + * qt/PlatQt.cpp, qt/qsciscintillabase.cpp: + Backed out the attempted fix for retina displays at it needs more + work. As a workaround buffered writes are disabled if a retina + display is detected. + [a1f648d1025e] <2.8-maint> + +2013-12-13 Phil Thompson + + * qt/qscintilla.pro: + Enabled exceptions in the .pro file. + [6e07131f6741] <2.8-maint> + +2013-12-12 Phil Thompson + + * qt/PlatQt.cpp: + Create pixmaps for buffered drawing using the same pixel ratio as + the actual device. + [f4f706006071] <2.8-maint> + +2013-12-09 Phil Thompson + + * qt/qscilexeroctave.cpp: + Updated the keywords defined for the Octave lexer. + [9ccf1c74f266] <2.8-maint> + +2013-12-06 Phil Thompson + + * qt/ScintillaQt.cpp: + More scrollbar fixes. + [194a2142c9b6] <2.8-maint> + +2013-12-05 Phil Thompson + + * qt/ScintillaQt.cpp, qt/qscintilla.pro: + Fixes to the scrollbar visibility handling. + [5e8a96258ab0] <2.8-maint> + +2013-12-04 Phil Thompson + + * qt/PlatQt.cpp: + Fixed the implementation of SurfaceImpl::LogPixelsY() (even though + it is never called). + [9ef0387cfc08] <2.8-maint> + +2013-11-08 Phil Thompson + + * .hgtags: + Added tag 2.8 for changeset 562785a5f685 + [fc52bfaa75c4] + + * NEWS: + Released as v2.8. + [562785a5f685] [2.8] + +2013-11-05 Phil Thompson + + * qt/qscintilla_es.qm, qt/qscintilla_es.ts: + Updated Spanish translations from Jaime Seuma. + [e7a128a28157] + +2013-11-04 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qscilexerpascal.cpp, qt/qsciscintillabase.h: + Added support for the new v3.3.6 features to the low-level API. + [e553c1263387] + + * Makefile, NEWS, cocoa/Framework.mk, cocoa/InfoBar.mm, + cocoa/PlatCocoa.mm, cocoa/SciTest.mk, cocoa/ScintillaCocoa.h, + cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework + .xcodeproj/project.pbxproj, cocoa/ScintillaView.h, + cocoa/ScintillaView.mm, cocoa/checkbuildosx.sh, cocoa/common.mk, + doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/index.html, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/makefile, include/ILexer.h, + include/Platform.h, include/SciLexer.h, include/Scintilla.h, + include/Scintilla.iface, lexers/LexCPP.cxx, + lexers/LexCoffeeScript.cxx, lexers/LexOthers.cxx, + lexers/LexPascal.cxx, lexers/LexPerl.cxx, lexers/LexRust.cxx, + lexers/LexSQL.cxx, lexers/LexVisualProlog.cxx, + lexlib/StyleContext.h, lexlib/SubStyles.h, lexlib/WordList.cxx, + lib/README.doc, qt/qscintilla.pro, src/Catalogue.cxx, + src/Document.cxx, src/Editor.cxx, src/ScintillaBase.cxx, + src/ScintillaBase.h, src/ViewStyle.cxx, src/ViewStyle.h, + test/XiteQt.py, test/simpleTests.py, version.txt, win32/PlatWin.cxx, + win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/makefile, + win32/scintilla.mak: + Merged Scintilla v3.3.6. + [ada0941dec52] + +2013-10-07 Phil Thompson + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts: + Updated German translations from Detlev. + [6c0af6af651c] + + * Makefile, build.py, qt/MacPasteboardMime.cpp, qt/qscintilla.pro, + qt/qsciscintillabase.cpp: + Reinstated support for rectangular selections on OS/X for Qt v5.2 + and later. + [dbfdf7be4793] + +2013-10-04 Phil Thompson + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the translation source files. + [7ed4bf7ed4e7] + + * qt/qscilexercpp.cpp: + Added missing descriptions to the C++ lexer settings. + [55d7627bb129] + +2013-10-01 Phil Thompson + + * designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro: + Fixed the building of the Designer plugin and the example for OS/X. + [a67f71b06d3c] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/InputMethod.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added the remaining non-provisional Scintilla v3.3.5 features to the + low-level API. + [4e8d0b46ebc0] + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the translation source files. + [4beefc0d95ec] + + * NEWS, Python/sip/qscilexercpp.sip, Python/sip/qsciscintillabase.sip, + qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qsciscintillabase.h: + Updated the lexers for Scintilla v3.3.5. + [fc901a2a491f] + +2013-09-30 Phil Thompson + + * Python/configure-old.py, Python/configure.py, README, + cocoa/InfoBar.mm, cocoa/PlatCocoa.mm, cocoa/ScintillaCocoa.h, + cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework + .xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaTest/English.lproj/MainMenu.xib, + cocoa/ScintillaView.h, cocoa/ScintillaView.mm, cppcheck.suppress, + delbin.bat, designer-Qt4Qt5/designer.pro, doc/Lexer.txt, + doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/ScintillaRelated.html, + doc/ScintillaToDo.html, doc/index.html, example- + Qt4Qt5/application.pro, gtk/Converter.h, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile, include/Face.py, + include/HFacer.py, include/ILexer.h, include/Platform.h, + include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface, + lexers/LexA68k.cxx, lexers/LexAU3.cxx, lexers/LexAVE.cxx, + lexers/LexAda.cxx, lexers/LexAsm.cxx, lexers/LexAsn1.cxx, + lexers/LexBash.cxx, lexers/LexBullant.cxx, lexers/LexCOBOL.cxx, + lexers/LexCPP.cxx, lexers/LexCoffeeScript.cxx, lexers/LexConf.cxx, + lexers/LexCrontab.cxx, lexers/LexCsound.cxx, lexers/LexD.cxx, + lexers/LexECL.cxx, lexers/LexForth.cxx, lexers/LexGAP.cxx, + lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx, + lexers/LexInno.cxx, lexers/LexKVIrc.cxx, lexers/LexLaTeX.cxx, + lexers/LexLisp.cxx, lexers/LexLout.cxx, lexers/LexLua.cxx, + lexers/LexMMIXAL.cxx, lexers/LexMPT.cxx, lexers/LexMSSQL.cxx, + lexers/LexMatlab.cxx, lexers/LexModula.cxx, lexers/LexMySQL.cxx, + lexers/LexNsis.cxx, lexers/LexOpal.cxx, lexers/LexOthers.cxx, + lexers/LexPO.cxx, lexers/LexPerl.cxx, lexers/LexPowerShell.cxx, + lexers/LexPython.cxx, lexers/LexR.cxx, lexers/LexRuby.cxx, + lexers/LexSTTXT.cxx, lexers/LexScriptol.cxx, lexers/LexSpice.cxx, + lexers/LexTCMD.cxx, lexers/LexYAML.cxx, lexlib/Accessor.cxx, + lexlib/Accessor.h, lexlib/CharacterCategory.cxx, + lexlib/CharacterCategory.h, lexlib/CharacterSet.cxx, + lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerModule.cxx, + lexlib/LexerNoExceptions.cxx, lexlib/LexerNoExceptions.h, + lexlib/LexerSimple.cxx, lexlib/OptionSet.h, + lexlib/PropSetSimple.cxx, lexlib/PropSetSimple.h, + lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/SubStyles.h, + lexlib/WordList.cxx, lexlib/WordList.h, lib/README.doc, + qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro, + qt/qsciscintillabase.cpp, scripts/Face.py, scripts/FileGenerator.py, + scripts/GenerateCaseConvert.py, + scripts/GenerateCharacterCategory.py, scripts/HFacer.py, + scripts/LexGen.py, scripts/ScintillaData.py, src/AutoComplete.cxx, + src/AutoComplete.h, src/CallTip.cxx, src/CallTip.h, + src/CaseConvert.cxx, src/CaseConvert.h, src/CaseFolder.cxx, + src/CaseFolder.h, src/Catalogue.cxx, src/CellBuffer.cxx, + src/CellBuffer.h, src/ContractionState.cxx, src/Decoration.cxx, + src/Decoration.h, src/Document.cxx, src/Document.h, src/Editor.cxx, + src/Editor.h, src/ExternalLexer.cxx, src/FontQuality.h, + src/Indicator.cxx, src/KeyMap.cxx, src/KeyMap.h, src/LexGen.py, + src/LineMarker.cxx, src/LineMarker.h, src/Partitioning.h, + src/PerLine.cxx, src/PerLine.h, src/PositionCache.cxx, + src/PositionCache.h, src/RESearch.cxx, src/RESearch.h, + src/RunStyles.cxx, src/RunStyles.h, src/SVector.h, + src/ScintillaBase.cxx, src/ScintillaBase.h, src/Selection.cxx, + src/SplitVector.h, src/Style.cxx, src/Style.h, + src/UniConversion.cxx, src/UniConversion.h, src/UnicodeFromUTF8.h, + src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx, src/XPM.h, + test/README, test/ScintillaCallable.py, test/XiteQt.py, + test/XiteWin.py, test/examples/x.lua, test/examples/x.lua.styled, + test/examples/x.pl, test/examples/x.pl.styled, test/examples/x.rb, + test/examples/x.rb.styled, test/lexTests.py, + test/performanceTests.py, test/simpleTests.py, + test/unit/testCharClassify.cxx, test/unit/testContractionState.cxx, + test/unit/testPartitioning.cxx, test/unit/testRunStyles.cxx, + test/unit/testSplitVector.cxx, version.txt, win32/PlatWin.cxx, + win32/PlatWin.h, win32/ScintRes.rc, win32/ScintillaWin.cxx, + win32/deps.mak, win32/makefile, win32/scintilla.mak, + win32/scintilla_vc6.mak: + Initial merge of Scintilla v3.3.5. + [40933b62f5ed] + +2013-09-14 Phil Thompson + + * Python/configure-ng.py, Python/configure.py, designer- + Qt4/designer.pro, designer-Qt4/qscintillaplugin.cpp, designer- + Qt4/qscintillaplugin.h: + Merged the 2.7-maint branch with the trunk. + [7288d97c54b0] + +2013-08-17 Phil Thompson + + * Python/sip/qsciscintillabase.sip: + Fixed a missing const in the .sip files. + [8b0425b87953] <2.7-maint> + +2013-06-27 Phil Thompson + + * NEWS, Python/configure-old.py, Python/configure.py, + Python/sip/qsciscintillabase.sip, designer-Qt4Qt5/designer.pro, + example-Qt4Qt5/application.pro, qt/InputMethod.cpp, + qt/qscintilla.pro, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Added support for input methods. + [b97af619044b] <2.7-maint> + +2013-06-16 Phil Thompson + + * .hgtags: + Added tag 2.7.2 for changeset 9ecd14550589 + [2b1f187f29c6] <2.7-maint> + + * NEWS: + Released as v2.7.2. + [9ecd14550589] [2.7.2] <2.7-maint> + +2013-06-12 Phil Thompson + + * Python/configure.py: + Fixed a configure.py bug. + [cb062c6f9189] <2.7-maint> + +2013-05-07 Phil Thompson + + * Makefile, Python/configure.py: + Fixes for the PyQt5 support. + [0714ef531ead] <2.7-maint> + + * Makefile, NEWS, Python/configure.py, Python/sip/qscimod5.sip, + lib/README.doc: + Added support for building against PyQt5. + [c982ff1b86f7] <2.7-maint> + +2013-05-05 Phil Thompson + + * build.py: + Changed the format of the name of a snapshot to match other + packages. + [d1f87bbc8377] <2.7-maint> + +2013-05-04 Phil Thompson + + * qt/PlatQt.cpp: + Significantly improved the performance of measuring the width of + text so that very long lines (100,000 characters) can be handled. + [5c88dc344f69] <2.7-maint> + +2013-04-08 Phil Thompson + + * Python/configure.py: + configure.py now issues a more explicit error message if QtCore + cannot be imported. + [4d0097b1ff05] <2.7-maint> + + * Python/configure.py: + Fixed a qmake warning message from configure.py. + [2363c96edeb0] <2.7-maint> + +2013-04-02 Phil Thompson + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + The default EOL mode on OS/X is now EolUnix. Clarified the + documentation for EolMode. + [a436460d0300] <2.7-maint> + +2013-03-15 Phil Thompson + + * Python/configure.py: + Further fixes for configure.py. + [78fa6fef2c76] <2.7-maint> + +2013-03-13 Phil Thompson + + * qt/qscilexer.h: + Clarified the description of QSciLexer::description(). + [688b482379e3] <2.7-maint> + + * Python/configure.py: + Fixed the last (trivial) change. + [0a3494ba669a] <2.7-maint> + +2013-03-12 Phil Thompson + + * Python/configure.py: + configure.py now gives the user more information about the copy of + sip being used. + [5c3be581d62b] <2.7-maint> + +2013-03-07 Phil Thompson + + * Python/configure.py: + On OS/X configure.py will explicitly set the qmake spec to macx-g++ + (Qt4) or macx-clang (Qt5) if the default might be macx-xcode. Added + the --spec option to configure.py. + [36a9bf2fbebd] <2.7-maint> + +2013-03-05 Phil Thompson + + * Python/configure.py: + Minor cosmetic tweaks to configure.py. + [296cd10747b7] <2.7-maint> + + * qt/PlatQt.cpp, qt/SciClasses.cpp, qt/qscicommandset.cpp, + qt/qscintilla.pro, qt/qsciscintillabase.cpp: + Removed the remaining uses of Q_WS_* for Qt v5. + [7fafd5c09eea] <2.7-maint> + +2013-03-01 Phil Thompson + + * .hgtags: + Added tag 2.7.1 for changeset 2583dc3dbc8d + [0674c291eab4] <2.7-maint> + + * NEWS: + Released as v2.7.1. + [2583dc3dbc8d] [2.7.1] <2.7-maint> + +2013-02-28 Phil Thompson + + * lexlib/CharacterSet.h: + Re-applied a fix to the underlying code thay got lost when Scintilla + v3.23 was merged. + [ee9eeec7d796] <2.7-maint> + +2013-02-26 Phil Thompson + + * qt/qsciapis.cpp: + A fix for the regression introduced with the previous fix. + [154428cebb5e] <2.7-maint> + +2013-02-19 Phil Thompson + + * NEWS, qt/qsciapis.cpp, qt/qscintilla.pro: + Fixed an autocompletion bug where there are entries Foo.* and + FooBar. + [620d72d86980] <2.7-maint> + +2013-02-06 Phil Thompson + + * Python/configure.py: + configure.py fixes for Linux. + [031b5b767926] <2.7-maint> + + * Python/configure.py: + Added the --sip-incdir and --pyqt-sipdir options to configure.py and + other fixes for building on Windows. + [517a3d0243fd] <2.7-maint> + + * Makefile, NEWS: + Updated the NEWS file. + [eb00e08e1950] <2.7-maint> + + * Makefile, Python/configure.py: + Fixed configure.py for Qt5. + [7ddb5bf2030c] <2.7-maint> + + * Python/configure-ng.py, Python/configure-old.py, + Python/configure.py, build.py, lib/README.doc: + Completed configure-ng.py and renamed it configure.py. The old + configure.py is now called configure-old.py. + [8d58b2899080] <2.7-maint> + +2013-02-05 Phil Thompson + + * Python/configure-ng.py: + configure-ng.py now uses -fno-exceptions on Linux and OS/X. + configure-ng.py now hides unneeded symbols on Linux. + [391e4f56b009] <2.7-maint> + + * Python/configure-ng.py: + configure-ng.py will now install the .sip and .api files. + [e228d58a670c] <2.7-maint> + + * Python/configure-ng.py: + configure-ng.py will now create a Makefile that will build the + Python module. + [cb47ace62a70] <2.7-maint> + +2013-02-02 Phil Thompson + + * qt/qsciglobal.h: + Use Q_OS_WIN for compatibility for Qt5. + [da752cf4510a] <2.7-maint> + +2013-01-29 Phil Thompson + + * designer-Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro: + Use macx rather than mac in the .pro files. + [ee818a367df7] <2.7-maint> + +2012-12-21 Phil Thompson + + * Python/configure-ng.py, Python/configure.py, designer- + Qt4Qt5/designer.pro, example-Qt4Qt5/application.pro, lib/README.doc, + qt/qscintilla.pro: + Various OS/X fixes so that setting DYLD_LIBRARY_PATH isn't + necessary. + [e7854b8b01e3] <2.7-maint> + +2012-12-19 Phil Thompson + + * build.py, designer-Qt4/designer.pro, designer- + Qt4/qscintillaplugin.cpp, designer-Qt4/qscintillaplugin.h, designer- + Qt4Qt5/designer.pro, designer-Qt4Qt5/qscintillaplugin.cpp, designer- + Qt4Qt5/qscintillaplugin.h, lib/README.doc: + Updated the Designer plugin for Qt5. + [77f575c87ebb] <2.7-maint> + +2012-12-08 Phil Thompson + + * .hgtags: + Added tag 2.7 for changeset 9bab1e7b02e3 + [5600138109ce] + + * NEWS: + Released as v2.7. + [9bab1e7b02e3] [2.7] + +2012-12-07 Phil Thompson + + * qt/qscintilla_es.qm, qt/qscintilla_es.ts: + Updated Spanish translations from Jaime. + [b188c942422c] + + * NEWS: + Updated the NEWS file regarding Qt v5-rc1. + [be9e6b928921] + +2012-12-02 Phil Thompson + + * qt/qsciscintilla.cpp: + A final(?) fix for scroll bars and annotations. + [378f28e5b4b2] + + * Python/configure-ng.py: + More build system changes. + [f53fc8743ff1] + +2012-11-29 Phil Thompson + + * Python/configure-ng.py: + More configure script changes. + [434c9b3185a5] + + * Python/configure-ng.py: + More work on the new configure script. + [3a044732b799] + + * qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm, + qt/qscintilla_ru.qm: + Updated German translations from Detlev. + [9dab221845ca] + +2012-11-28 Phil Thompson + + * Python/configure-ng.py, build.py: + Added the start of the SIP v5 compatible build script. + [781d2af60cfc] + +2012-11-27 Phil Thompson + + * Python/configure.py: + Fixed the handling of the 'linux' platform in the Python bindings. + [835d5e3be69e] + +2012-11-26 Phil Thompson + + * qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Worked around Scintilla bugs related to scroll bars and annotations. + [edc190ecc6fc] + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the translation files. + [ec754f87a735] + + * NEWS, Python/sip/qscilexercss.sip, qt/qscilexercss.cpp, + qt/qscilexercss.h: + Updated the CSS lexer for Scintilla v3.23. + [011fba6d668d] + + * qt/qscilexercpp.h: + Fixed a couple of documentation typos. + [7c2d04c76bd6] + + * NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp, + qt/qscilexercpp.h: + Updated the C++ lexer for Scintilla v3.23. + [ad93ee355639] + +2012-11-24 Phil Thompson + + * Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp, qt/qscilexercpp.h: + Updated the styles for the C++ lexer. + [153429503998] + +2012-11-23 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/PlatQt.cpp, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added CallTipsPosition, callTipsPosition() and + setCallTipsPosition(). + [7e5602869fee] + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.h: + Added SquigglePixmapIndicator to QsciScintilla::IndicatorStyle. + [ad98a5396151] + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added WrapFlagInMargin to QsciScintilla::WrapVisualFlag. + [a38c75c45fb3] + + * NEWS, qt/PlatQt.cpp, qt/qsciscintilla.cpp, qt/qscistyle.cpp: + Created a back door to pass the Qt weight of a font avoiding lossy + conversions between Qt weights and Scintilla weights. The default + behaviour is now SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE which is a + change but reflects what people really expect. + [78ce86e97ad3] + +2012-11-21 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Updated the constants from Scintilla v3.23. + [a3a0768af999] + + * NEWS, Python/configure.py, include/Platform.h, lib/README.doc, + qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp, qt/SciClasses.cpp, + qt/ScintillaQt.cpp, qt/qscintilla.pro, src/ExternalLexer.h, + src/XPM.cxx, src/XPM.h: + Updated the platform support so that it compiles (but untested). + [abae8e56a6ea] + +2012-11-20 Phil Thompson + + * cocoa/InfoBar.h, cocoa/InfoBar.mm, cocoa/PlatCocoa.h, + cocoa/PlatCocoa.mm, cocoa/QuartzTextStyle.h, + cocoa/QuartzTextStyleAttribute.h, cocoa/ScintillaCocoa.h, + cocoa/ScintillaCocoa.mm, + cocoa/ScintillaFramework/English.lproj/InfoPlist.strings, cocoa/Scin + tillaFramework/ScintillaFramework.xcodeproj/project.pbxproj, + cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaTest/English.lproj/InfoPlist.strings, + cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, + cocoa/ScintillaView.h, cocoa/ScintillaView.mm, + cocoa/checkbuildosx.sh, delbin.bat, delcvs.bat, + doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/ScintillaRelated.html, + doc/ScintillaToDo.html, doc/annotations.png, doc/index.html, + doc/styledmargin.png, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, + gtk/makefile, include/Face.py, include/ILexer.h, include/Platform.h, + include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface, + include/ScintillaWidget.h, lexers/LexAVS.cxx, lexers/LexAda.cxx, + lexers/LexAsm.cxx, lexers/LexBash.cxx, lexers/LexBasic.cxx, + lexers/LexCPP.cxx, lexers/LexCSS.cxx, lexers/LexCoffeeScript.cxx, + lexers/LexD.cxx, lexers/LexECL.cxx, lexers/LexFortran.cxx, + lexers/LexHTML.cxx, lexers/LexLua.cxx, lexers/LexMMIXAL.cxx, + lexers/LexMPT.cxx, lexers/LexNsis.cxx, lexers/LexOScript.cxx, + lexers/LexOthers.cxx, lexers/LexPO.cxx, lexers/LexPascal.cxx, + lexers/LexPerl.cxx, lexers/LexRuby.cxx, lexers/LexSQL.cxx, + lexers/LexScriptol.cxx, lexers/LexSpice.cxx, lexers/LexTADS3.cxx, + lexers/LexTCL.cxx, lexers/LexTCMD.cxx, lexers/LexVHDL.cxx, + lexers/LexVisualProlog.cxx, lexers/LexYAML.cxx, + lexlib/CharacterSet.h, lexlib/LexAccessor.h, + lexlib/PropSetSimple.cxx, macosx/ExtInput.cxx, macosx/ExtInput.h, + macosx/PlatMacOSX.cxx, macosx/PlatMacOSX.h, + macosx/QuartzTextLayout.h, macosx/QuartzTextStyle.h, + macosx/QuartzTextStyleAttribute.h, + macosx/SciTest/English.lproj/InfoPlist.strings, + macosx/SciTest/English.lproj/main.xib, macosx/SciTest/Info.plist, + macosx/SciTest/SciTest.xcode/project.pbxproj, + macosx/SciTest/SciTest_Prefix.pch, macosx/SciTest/main.cpp, + macosx/SciTest/version.plist, macosx/ScintillaCallTip.cxx, + macosx/ScintillaCallTip.h, macosx/ScintillaListBox.cxx, + macosx/ScintillaListBox.h, macosx/ScintillaMacOSX.cxx, + macosx/ScintillaMacOSX.h, macosx/TCarbonEvent.cxx, + macosx/TCarbonEvent.h, macosx/TRect.h, macosx/TView.cxx, + macosx/TView.h, macosx/deps.mak, macosx/makefile, + src/AutoComplete.cxx, src/AutoComplete.h, src/CallTip.cxx, + src/CallTip.h, src/Catalogue.cxx, src/CellBuffer.cxx, + src/CellBuffer.h, src/CharClassify.cxx, src/CharClassify.h, + src/Decoration.cxx, src/Document.cxx, src/Document.h, + src/Editor.cxx, src/Editor.h, src/ExternalLexer.h, + src/FontQuality.h, src/Indicator.cxx, src/Indicator.h, + src/LexGen.py, src/LineMarker.cxx, src/LineMarker.h, + src/PerLine.cxx, src/PerLine.h, src/PositionCache.cxx, + src/PositionCache.h, src/RESearch.cxx, src/RunStyles.cxx, + src/SciTE.properties, src/ScintillaBase.cxx, src/ScintillaBase.h, + src/SplitVector.h, src/Style.cxx, src/Style.h, + src/UniConversion.cxx, src/UniConversion.h, src/ViewStyle.cxx, + src/ViewStyle.h, src/XPM.cxx, src/XPM.h, test/README, + test/examples/x.cxx, test/examples/x.cxx.styled, test/lexTests.py, + test/simpleTests.py, test/unit/makefile, + test/unit/testCharClassify.cxx, test/unit/testRunStyles.cxx, tgzsrc, + version.txt, win32/CheckD2D.cxx, win32/PlatWin.cxx, win32/PlatWin.h, + win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/makefile, + win32/scintilla.mak, win32/scintilla_vc6.mak, zipsrc.bat: + Initial merge of Scintilla v3.23. + [b116f361ac01] + + * example-Qt4/application.pro, example-Qt4/application.qrc, example- + Qt4/images/copy.png, example-Qt4/images/cut.png, example- + Qt4/images/new.png, example-Qt4/images/open.png, example- + Qt4/images/paste.png, example-Qt4/images/save.png, example- + Qt4/main.cpp, example-Qt4/mainwindow.cpp, example-Qt4/mainwindow.h: + Merged the 2.6 maintenance branch with the trunk. + [0bf4f7453c68] + +2012-11-14 Phil Thompson + + * Makefile, example-Qt4Qt5/application.pro, qt/qsciscintillabase.cpp: + Fixed the linking of the example on OS/X. + [e1d1f43fae71] <2.6-maint> + +2012-11-12 Phil Thompson + + * Makefile, qt/PlatQt.cpp, qt/qscimacro.cpp, qt/qsciscintilla.cpp, + qt/qscistyle.cpp: + Removed all calls that are deprecated in Qt5. The build system now + supports cross-compilation to the Raspberry Pi. + [afef9d2b3ab1] <2.6-maint> + +2012-11-02 Phil Thompson + + * qt/qscilexersql.h: + Added comments to the QsciLexerSQL documentation stating that + additional keywords must be defined using lower case. + [79a9274b77c3] <2.6-maint> + +2012-10-09 Phil Thompson + + * NEWS, lib/ed.py, qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added a replace option to the test editor's find commands. Finished + implementing findFirstInSelection(). + [80df6cc89bae] <2.6-maint> + + * lib/ed.py: + Added the Find, Find in Selection and Find Next actions to the test + editor. + [4aad56aedbea] <2.6-maint> + +2012-10-03 Phil Thompson + + * lib/ed.py: + Added an internal copy of the hackable Python test editor. + [a67a6fe99937] <2.6-maint> + +2012-09-27 Phil Thompson + + * lib/gen_python3_api.py, qsci/api/python/Python-3.3.api: + Fixed the gen_python3_api.py script to be able to exclude module + hierachies. Added the API file for Python v3.3. + [06bbb2d1c227] <2.6-maint> + +2012-09-22 Phil Thompson + + * qt/ListBoxQt.cpp: + Fixed a problem building against versions of Qt4 prior to v4.7. + [7bf93d60a50b] <2.6-maint> + +2012-09-18 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added setOverwriteMode() and overwriteMode() to QsciScintilla. + [1affc53d2d88] <2.6-maint> + +2012-09-14 Phil Thompson + + * qt/qsciscintillabase.cpp: + Disable the use of QMacPasteboardMime for Qt v5-beta1. + [a6625d5928c6] <2.6-maint> + +2012-08-24 Phil Thompson + + * qt/qscilexerperl.cpp, qt/qscilexerperl.h: + Fixed auto-indentation for Perl. + [5eb1d97f95d6] <2.6-maint> + +2012-08-13 Phil Thompson + + * lexlib/CharacterSet.h: + Removed an incorrect assert() in the main Scintilla code. + [1aaf5e09d4b2] <2.6-maint> + +2012-08-09 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added QsciScintilla::wordAtLineIndex(). + [0c5d77aef4f7] <2.6-maint> + +2012-07-19 Phil Thompson + + * qt/qscintilla.pro, qt/qsciscintillabase.cpp: + Fixed key handling on Linux with US international layout which + generates non-ASCII sequences for quote characters. + [061ab2c5bea3] <2.6-maint> + +2012-06-20 Phil Thompson + + * .hgtags: + Added tag 2.6.2 for changeset f9d3d982c20f + [a5bb033cd9e0] <2.6-maint> + + * NEWS: + Released as v2.6.2. + [f9d3d982c20f] [2.6.2] <2.6-maint> + +2012-06-19 Phil Thompson + + * qt/qsciscintillabase.cpp: + Fixed pasting of text in UTF8 mode (and hopefully Latin1 mode as + well). + [6df653daef18] <2.6-maint> + + * qt/qsciscintillabase.cpp: + Rectangular selections are now always encoded as plain/text with an + explicit, and separate, marker to indicate that it is rectangular. + [012a0b2ca89f] <2.6-maint> + +2012-06-09 Phil Thompson + + * qt/qsciscintillabase.cpp: + Used the Mac method of marking rectangular selections as the '\0' + Scintilla hack just doesn't work with Qt. + [75020a35b5eb] <2.6-maint> + + * qt/qscintilla.pro: + Bumped the library version number. + [12f21729e254] <2.6-maint> + +2012-06-07 Phil Thompson + + * qt/qsciscintillabase.cpp: + Improved the support for rectangular selections and the + interoperability with other Scintilla based editors. + [a42942b57fb7] <2.6-maint> + + * qt/qsciscintillabase.cpp: + Fixed the middle button pasting of rectangular selections. + [db58aa6c6d7d] <2.6-maint> + + * qt/qscidocument.cpp: + Fixed a bug that seemed to mean the initial EOL mode was always + UNIX. + [88561cd29a60] <2.6-maint> + + * qt/qsciscintillabase.cpp: + Line endings are properly translated when dropping text. + [d21994584e87] <2.6-maint> + +2012-06-04 Phil Thompson + + * Makefile, qt/qsciprinter.h: + The Python bindings now build against Qt5. + [ff2a74e5aec2] <2.6-maint> + +2012-04-04 Phil Thompson + + * Makefile, NEWS, build.py, example-Qt4/application.pro, example- + Qt4/application.qrc, example-Qt4/images/copy.png, example- + Qt4/images/cut.png, example-Qt4/images/new.png, example- + Qt4/images/open.png, example-Qt4/images/paste.png, example- + Qt4/images/save.png, example-Qt4/main.cpp, example- + Qt4/mainwindow.cpp, example-Qt4/mainwindow.h, example- + Qt4Qt5/application.pro, example-Qt4Qt5/application.qrc, example- + Qt4Qt5/images/copy.png, example-Qt4Qt5/images/cut.png, example- + Qt4Qt5/images/new.png, example-Qt4Qt5/images/open.png, example- + Qt4Qt5/images/paste.png, example-Qt4Qt5/images/save.png, example- + Qt4Qt5/main.cpp, example-Qt4Qt5/mainwindow.cpp, example- + Qt4Qt5/mainwindow.h, lib/LICENSE.GPL2, lib/LICENSE.GPL3, + lib/LICENSE.commercial.short, lib/LICENSE.gpl.short, lib/README, + lib/README.doc, lib/qscintilla.dxy, qt/PlatQt.cpp, + qt/qscintilla.pro: + Ported to Qt v5. + [ff3710487c3e] <2.6-maint> + +2012-04-02 Phil Thompson + + * qt/qsciapis.cpp: + Worked around an obscure Qt (or compiler) bug when handling call + tips. + [e6c7edcfdfb9] <2.6-maint> + +2012-03-04 Phil Thompson + + * Python/sip/qscilexer.sip, Python/sip/qscilexerbash.sip, + Python/sip/qscilexerbatch.sip, Python/sip/qscilexercpp.sip, + Python/sip/qscilexercss.sip, Python/sip/qscilexerd.sip, + Python/sip/qscilexerdiff.sip, Python/sip/qscilexerhtml.sip, + Python/sip/qscilexermakefile.sip, Python/sip/qscilexerperl.sip, + Python/sip/qscilexerpov.sip, Python/sip/qscilexerproperties.sip, + Python/sip/qscilexertex.sip, Python/sip/qscilexerverilog.sip, + qt/qscilexer.h, qt/qscilexerbash.h, qt/qscilexerbatch.h, + qt/qscilexercpp.h, qt/qscilexercss.h, qt/qscilexerd.h, + qt/qscilexerdiff.h, qt/qscilexerhtml.h, qt/qscilexermakefile.h, + qt/qscilexerperl.h, qt/qscilexerpov.h, qt/qscilexerproperties.h, + qt/qscilexertex.h, qt/qscilexerverilog.h: + QSciLexer::wordCharacters() is now part of the public API. + [933ef6a11ee6] <2.6-maint> + +2012-02-23 Phil Thompson + + * qt/qscilexercpp.h: + Updated the documentation for QsciLexerCpp::keywords() so that it + describes which sets are supported. + [4e0cb0250dad] <2.6-maint> + +2012-02-21 Phil Thompson + + * qt/qscintilla.pro, src/Document.cxx: + Some Scintilla fixes for the SCI_NAMESPACE support. + [611ffd016585] <2.6-maint> + +2012-02-10 Phil Thompson + + * .hgtags: + Added tag 2.6.1 for changeset 47d8fdf44946 + [aa843f471972] <2.6-maint> + + * NEWS: + Updated the NEWS file. Released as v2.6.1. + [47d8fdf44946] [2.6.1] <2.6-maint> + +2012-01-26 Phil Thompson + + * qt/qsciscintilla.cpp: + Don't implement shortcut overrides for the standard context menu + shortcuts. Instead leave it to the check against bound keys. + [e8ccaf398640] <2.6-maint> + +2012-01-19 Phil Thompson + + * qt/qsciapis.cpp: + APIs now allow for whitespace between the end of a word and the + opening parenthesis of the argument list. + [b09b25f38411] <2.6-maint> + +2012-01-11 Phil Thompson + + * qt/SciClasses.cpp: + Fixed the handling of auto-completion lists on Windows. + [131138b43c85] <2.6-maint> + +2011-12-07 Phil Thompson + + * Python/sip/qscicommandset.sip, qt/qscicommandset.cpp, + qt/qscicommandset.h, qt/qscintilla.pro: + Improved the Qt v3 port so that the signatures don't need to be + changed. Bumped the .so version number. + [3171bb05b1d8] <2.6-maint> + +2011-12-06 Phil Thompson + + * Makefile, NEWS, Python/sip/qscicommandset.sip, include/Platform.h, + qt/ListBoxQt.cpp, qt/qscicommandset.cpp, qt/qscicommandset.h, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, src/XPM.cxx: + Fixed building against Qt v3. + [74df75a62f5c] <2.6-maint> + +2011-11-21 Phil Thompson + + * NEWS, include/Platform.h, qt/ListBoxQt.cpp, qt/ListBoxQt.h, + qt/PlatQt.cpp, qt/SciClasses.cpp, qt/SciClasses.h, + qt/SciNamespace.h, qt/ScintillaQt.cpp, qt/ScintillaQt.h, + qt/qscintilla.pro, qt/qsciscintilla.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Added support for SCI_NAMESPACE to allow all internal Scintilla + classes to be placed in the Scintilla namespace. + [ab7857131e35] <2.6-maint> + +2011-11-11 Phil Thompson + + * .hgtags: + Added tag 2.6 for changeset 8b119c4f69d0 + [1a5dd31e773e] + + * NEWS, lib/README.doc: + Updated the NEWS file. Updated the introductory documentation. + Released as v2.6. + [8b119c4f69d0] [2.6] + +2011-11-07 Phil Thompson + + * NEWS, Python/sip/qscicommandset.sip, Python/sip/qsciscintilla.sip, + qt/qscicommandset.cpp, qt/qscicommandset.h, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added QsciCommandSet::boundTo(). Ordinary keys and those bound to + commands now override any shortcuts. + [ba98bc555aca] + +2011-10-28 Phil Thompson + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts: + More updated German translations from Detlev. + [9ff20df1997b] + +2011-10-27 Phil Thompson + + * qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.qm, qt/qscintilla_es.ts, qt/qscintilla_fr.qm, + qt/qscintilla_pt_br.qm, qt/qscintilla_ru.qm: + Updated Spanish translations from Jaime. Updated German translations + from Detlev. + [4903315d96b1] + +2011-10-23 Phil Thompson + + * Python/sip/qscicommand.sip: + Fixed SelectAll in the Python bindings. + [b6f0a46e0eac] + + * qt/ScintillaQt.cpp, qt/qsciscintillabase.cpp: + Fixed drag and drop (specifically so that copying works on OS/X + again). + [6ab90cb63b2b] + +2011-10-22 Phil Thompson + + * qt/PlatQt.cpp: + Fixed a display bug with kerned fonts. + [a746e319d9cd] + + * qt/qsciscintilla.cpp: + The foreground and background colours of selected text are now taken + from the application palette. + [7f6c34ad8d27] + + * NEWS: + Updated the NEWS file. + [1717c6d59b12] + + * Python/sip/qsciscintilla.sip, qt/qscicommand.h, + qt/qscicommandset.cpp, qt/qscintilla_cs.ts, qt/qscintilla_de.ts, + qt/qscintilla_es.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, + qt/qscintilla_ru.ts, qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Renamed QsciCommand::SelectDocument to SelectAll. Added + QsciScintilla::createStandardContextMenu(). + [c42fa7e83b07] + +2011-10-21 Phil Thompson + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the .ts files. + [92d0b6ddf371] + + * qt/qscicommandset.cpp: + Completed the OS/X specific key bindings. + [964fa889b807] + +2011-10-20 Phil Thompson + + * qt/qscicommandset.cpp, qt/qsciscintillabase.cpp: + Fixed the support for SCMOD_META. Started to add the correct OS/X + key bindings as the default. + [0073fa86a5a0] + + * Python/sip/qscicommand.sip, qt/qscicommand.h, qt/qscicommandset.cpp: + All available commands are now defined in the standard command set. + [7c7b81b55f0e] + + * Python/sip/qscicommand.sip, qt/qscicommand.h: + Completed the QsciCommand::Command documentation. Added the members + to QsciCommand.Command in the Python bindings. + [0ca6ff576c21] + +2011-10-18 Phil Thompson + + * NEWS, Python/sip/qscicommandset.sip, qt/qscicommand.h, + qt/qscicommandset.cpp, qt/qscicommandset.h: + Added QsciCommandSet::find(). + [e75565018b90] + + * NEWS, Python/sip/qscicommand.sip, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qscicommand.cpp, + qt/qscicommand.h, qt/qscicommandset.cpp, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added Command, command() and execute() to QsciCommand. Backed out + the high level support for moving the selection up and down. + [4852ee57353e] + +2011-10-17 Phil Thompson + + * qt/qscilexersql.cpp: + Fix for the changed fold at else property in the SQL lexer. + [e65a458cd9d8] + + * NEWS, Python/sip/qscilexerpython.sip, qt/qscilexerpython.cpp, + qt/qscilexerpython.h: + Added highlightSubidentifiers() and setHighlightSubidentifiers() to + the Python lexer. + [b397695bc2ab] + + * NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp, + qt/qscilexercpp.h: + Added support for triple quoted strings to the C++ lexer. + [687d04948c5d] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added low level support for identifiers, scrolling to the start and + end. Added low and hight level support for moving the selection up + and down. + [3ac1ccfad039] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added low and high level support for margin options. + [f3cd3244cecd] + +2011-10-14 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Updated the brace matching support to handle indicators. + [7e4a4d3529a8] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added SCI_SETEMPTYSELECTION. + [879b97c676a4] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Updated the support for indicators. + [b3643569a827] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added SCI_MARKERSETBACKSELECTED and SCI_MARKERENABLEHIGHLIGHT. + [7127ee82d128] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Added low and high-level support for RGBA images (ie. QImage). + [7707052913ef] + +2011-10-13 Phil Thompson + + * NEWS, Python/sip/qscilexerlua.sip, qt/qscilexerlua.cpp, + qt/qscilexerlua.h: + Updated the Lua lexer. + [710e50d5692c] + + * NEWS, Python/sip/qscilexerperl.sip, qt/qscilexerperl.cpp, + qt/qscilexerperl.h: + Updated the Perl lexer. + [6d16e2e9354b] + +2011-10-11 Phil Thompson + + * Python/configure.py, cocoa/ScintillaCallTip.h, + cocoa/ScintillaCallTip.mm, cocoa/ScintillaListBox.h, + cocoa/ScintillaListBox.mm, cocoa/res/info_bar_bg.png, + cocoa/res/mac_cursor_busy.png, cocoa/res/mac_cursor_flipped.png, + macosx/SciTest/English.lproj/InfoPlist.strings, + macosx/SciTest/English.lproj/main.nib/classes.nib, + macosx/SciTest/English.lproj/main.nib/info.nib, + macosx/SciTest/English.lproj/main.nib/objects.xib, + macosx/SciTest/English.lproj/main.xib, qt/ListBoxQt.cpp, + qt/ListBoxQt.h, qt/PlatQt.cpp, qt/qscintilla.pro, src/XPM.cxx, + src/XPM.h: + Some fixes left over from the merge of v2.29. Added support for RGBA + images so that the merged version compiles. + [16c6831c337f] + + * cocoa/InfoBar.mm, cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, + cocoa/QuartzTextLayout.h, cocoa/QuartzTextStyle.h, + cocoa/QuartzTextStyleAttribute.h, cocoa/ScintillaCocoa.h, + cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework + .xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, + cocoa/ScintillaView.h, cocoa/ScintillaView.mm, doc/SciCoding.html, + doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/ScintillaRelated.html, + doc/ScintillaToDo.html, doc/index.html, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/makefile, include/Platform.h, + include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface, + lexers/LexAU3.cxx, lexers/LexCOBOL.cxx, lexers/LexCPP.cxx, + lexers/LexConf.cxx, lexers/LexHTML.cxx, lexers/LexInno.cxx, + lexers/LexLua.cxx, lexers/LexMagik.cxx, lexers/LexMarkdown.cxx, + lexers/LexMatlab.cxx, lexers/LexModula.cxx, lexers/LexOthers.cxx, + lexers/LexPerl.cxx, lexers/LexPowerPro.cxx, lexers/LexPython.cxx, + lexers/LexSQL.cxx, lexers/LexTeX.cxx, lexers/LexVHDL.cxx, + lexers/LexVerilog.cxx, lexlib/Accessor.cxx, lexlib/CharacterSet.h, + lexlib/PropSetSimple.cxx, lexlib/SparseState.h, + lexlib/StyleContext.h, lexlib/WordList.cxx, macosx/PlatMacOSX.cxx, + macosx/PlatMacOSX.h, macosx/SciTest/SciTest.xcode/project.pbxproj, + macosx/ScintillaMacOSX.h, macosx/makefile, src/CallTip.cxx, + src/ContractionState.cxx, src/ContractionState.h, + src/Decoration.cxx, src/Document.cxx, src/Document.h, + src/Editor.cxx, src/Editor.h, src/Indicator.cxx, src/Indicator.h, + src/KeyMap.cxx, src/KeyMap.h, src/LexGen.py, src/LineMarker.cxx, + src/LineMarker.h, src/PerLine.cxx, src/PositionCache.cxx, + src/PositionCache.h, src/RESearch.cxx, src/RunStyles.cxx, + src/RunStyles.h, src/ScintillaBase.cxx, src/Style.cxx, src/Style.h, + src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx, src/XPM.h, + test/XiteMenu.py, test/XiteWin.py, test/examples/x.html, + test/examples/x.html.styled, test/performanceTests.py, + test/simpleTests.py, test/unit/testContractionState.cxx, + test/unit/testRunStyles.cxx, version.txt, win32/PlatWin.cxx, + win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/scintilla.mak: + Merged Scintilla v2.29. + [750c2c3cef72] + + * Merged the v2.5 maintenance branch back into the trunk. + [eab39863675f] + +2011-06-24 Phil Thompson + + * qt/qscilexer.cpp, qt/qscilexerbash.cpp, qt/qscilexerbatch.cpp, + qt/qscilexercmake.cpp, qt/qscilexercpp.cpp, qt/qscilexercsharp.cpp, + qt/qscilexercss.cpp, qt/qscilexerd.cpp, qt/qscilexerfortran77.cpp, + qt/qscilexerhtml.cpp, qt/qscilexerjavascript.cpp, + qt/qscilexerlua.cpp, qt/qscilexermakefile.cpp, + qt/qscilexermatlab.cpp, qt/qscilexerpascal.cpp, + qt/qscilexerperl.cpp, qt/qscilexerpostscript.cpp, + qt/qscilexerpov.cpp, qt/qscilexerproperties.cpp, + qt/qscilexerpython.cpp, qt/qscilexerruby.cpp, qt/qscilexerspice.cpp, + qt/qscilexersql.cpp, qt/qscilexertcl.cpp, qt/qscilexerverilog.cpp, + qt/qscilexervhdl.cpp, qt/qscilexerxml.cpp, qt/qscilexeryaml.cpp: + Changed the default fonts for MacOS so that they are larger and + similar to the Windows defaults. + [9c37c180ba8d] <2.5-maint> + + * build.py: + Fixed the build system for MacOS as the development platform. + [3352479980c5] <2.5-maint> + +2011-05-13 Phil Thompson + + * lib/README.doc: + Updated the licensing information in the main documentation. + [d31c561e0b7c] <2.5-maint> + + * lib/LICENSE.GPL2, lib/LICENSE.GPL3, lib/LICENSE.gpl.short: + Removed some out of date links from the license information. Updated + the dates of some copyright notices. + [a84451464396] <2.5-maint> + +2011-05-10 Phil Thompson + + * Makefile, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added the optional posix flag to QsciScintilla::findFirst(). + [ad6064227d06] <2.5-maint> + +2011-04-29 Phil Thompson + + * Python/configure.py, qt/qscintilla.pro, qt/qsciscintilla.cpp, + qt/qscistyle.cpp, qt/qscistyle.h, qt/qscistyledtext.cpp, + qt/qscistyledtext.h: + Fixed problems with QsciStyle and QsciStyledText when used with more + than one QsciScintilla instance. + [8bac389fb7ae] <2.5-maint> + +2011-04-22 Phil Thompson + + * qt/qsciglobal.h: + Changed the handling of QT_BEGIN_NAMESPACE etc. as it isn't defined + in early versions of Qt v4. + [595c8c6cdfd2] <2.5-maint> + +2011-04-17 Phil Thompson + + * .hgtags: + Added tag 2.5.1 for changeset c8648c2c0c7f + [298153b3d40e] <2.5-maint> + + * NEWS: + Released as v2.5.1. + [c8648c2c0c7f] [2.5.1] <2.5-maint> + +2011-04-16 Phil Thompson + + * qt/qscintilla_de.ts, qt/qscintilla_es.ts: + Updated translations from Detlev and Jaime. + [9436bea546c9] <2.5-maint> + +2011-04-14 Phil Thompson + + * qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_es.qm, + qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm, qt/qscintilla_ru.qm: + Updated the compiled translation files. + [c5d39aca8f51] <2.5-maint> + +2011-04-13 Phil Thompson + + * Python/sip/qscilexermatlab.sip, Python/sip/qscilexeroctave.sip, + Python/sip/qscimodcommon.sip: + Added Python bindings for QsciLexerMatlab abd QsciLexerOctave. + [22d0ed0fab2a] <2.5-maint> + + * NEWS, qt/qscilexermatlab.cpp, qt/qscilexermatlab.h, + qt/qscilexeroctave.cpp, qt/qscilexeroctave.h, qt/qscintilla.pro, + qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Added QsciLexerMatlab and QsciLexerOctave. + [40d3053334de] <2.5-maint> + +2011-04-09 Phil Thompson + + * Merged the font strategy fix from the trunk. + [d270e1b107d2] <2.5-maint> + + * NEWS: + Updated the NEWS file. + [8f32ff4cdd1f] <2.5-maint> + +2011-04-07 Phil Thompson + + * qt/PlatQt.cpp, qt/qscintilla.pro: + Fixed the handling of the font quality setting so that the default + behavior (particularly on Windows) is the same as earlier versions. + [87ae98d2674b] + +2011-03-29 Phil Thompson + + * .hgtags: + Added tag 2.5 for changeset 9d94a76f783e + [e4807fd91f6c] + + * NEWS: + Released as v2.5. + [9d94a76f783e] [2.5] + +2011-03-28 Phil Thompson + + * NEWS, Python/configure.py: + Added support for the protected-is-public hack to configure.py. + [beee52b8e10a] + +2011-03-27 Phil Thompson + + * qt/PlatQt.cpp: + Fixed an OS/X build problem. + [ac7f1d3c9abe] + +2011-03-26 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added replaceSelectedText() to QsciScintilla. + [3c00a19d6571] + +2011-03-25 Phil Thompson + + * Python/configure.py, Python/sip/qsciapis.sip, + Python/sip/qscilexer.sip, Python/sip/qscilexercustom.sip, + Python/sip/qscimod4.sip, Python/sip/qsciprinter.sip, + Python/sip/qsciscintilla.sip, Python/sip/qscistyle.sip, + qt/qsciapis.cpp, qt/qsciapis.h, qt/qscilexercustom.cpp, + qt/qscilexercustom.h, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qscistyle.cpp, qt/qscistyle.h: + Went through the API making sure all optional arguments had + consistent and meaningful names. Enabled keyword support in the + Python bindings. + [d60fa45e40b7] + +2011-03-23 Phil Thompson + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qscintilla_es.qm, + qt/qscintilla_es.ts: + Updated German translations from Detlev. Updated Spanish + translations from Jaime. + [f64c97749375] + +2011-03-21 Phil Thompson + + * lexers/LexModula.cxx, lexlib/SparseState.h, qt/qscintilla_cs.ts, + qt/qscintilla_de.ts, qt/qscintilla_es.ts, qt/qscintilla_fr.ts, + qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts, + test/unit/testSparseState.cxx, vcbuild/SciLexer.dsp: + Updated the translation files. Updated the repository for the new + and removed Scintilla v2.25 files. + [6eb77ba7c57c] + + * NEWS, Python/sip/qscilexercpp.sip, Python/sip/qsciscintillabase.sip, + qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscintilla.pro, + qt/qsciscintillabase.h: + Added support for raw string to the C++ lexer. + [f83112ced877] + + * NEWS, cocoa/Framework.mk, cocoa/PlatCocoa.mm, + cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/ScintillaFramework + .xcodeproj/project.pbxproj, cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaView.h, cocoa/ScintillaView.mm, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/index.html, gtk/PlatGTK.cxx, + gtk/makefile, include/Platform.h, include/SciLexer.h, + include/Scintilla.iface, lexers/LexAsm.cxx, lexers/LexBasic.cxx, + lexers/LexCPP.cxx, lexers/LexD.cxx, lexers/LexFortran.cxx, + lexers/LexOthers.cxx, lexlib/CharacterSet.h, lib/README.doc, + macosx/SciTest/main.cpp, src/AutoComplete.cxx, src/Catalogue.cxx, + src/Document.cxx, src/Editor.cxx, src/LexGen.py, test/unit/makefile, + version.txt, win32/PlatWin.cxx, win32/ScintRes.rc, + win32/scintilla.mak, win32/scintilla_vc6.mak: + Merged Scintilla v2.25. + [e01dec109182] + +2011-03-14 Phil Thompson + + * qt/qscintilla_es.qm, qt/qscintilla_es.ts: + Updated Spanish translations from Jaime Seuma. + [b83a3ca4f3e6] + +2011-03-12 Phil Thompson + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts: + Updated German translations from Detlev. + [e5729134a47b] + +2011-03-11 Phil Thompson + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the translation source files. + [51e8ee8b1ba9] + + * NEWS, Python/sip/qscilexercpp.sip, qt/qscilexercpp.cpp, + qt/qscilexercpp.h: + Added support for the inactive styles of QsciLexerCPP. + [59b566d322af] + + * qt/qscilexercpp.cpp, qt/qscilexercpp.h: + Inlined all existing property getters in QsciLexerCPP. + [1117e5105e5e] + +2011-03-10 Phil Thompson + + * qt/qsciscintilla.cpp: + Fixed QsciScintilla::setContractedFolds() so that it actually + updates the display to show the new state. + [5079f59a0103] + + * NEWS, Python/sip/qscilexerhtml.sip, qt/qscilexerhtml.cpp, + qt/qscilexerhtml.h: + Updated QsciLexerHTML. + [0707f4bc7855] + + * NEWS, Python/sip/qscilexerproperties.sip, + qt/qscilexerproperties.cpp, qt/qscilexerproperties.h: + Updated QsciLexerProperties. + [1dfe5e2d4913] + + * NEWS, Python/sip/qscilexerpython.sip, Python/sip/qscilexerruby.sip, + Python/sip/qscilexersql.sip, Python/sip/qscilexertcl.sip, + Python/sip/qscilexertex.sip, qt/qscilexerpython.cpp, + qt/qscilexerpython.h, qt/qscilexerruby.h, qt/qscilexersql.h, + qt/qscilexertcl.h, qt/qscilexertex.cpp, qt/qscilexertex.h: + Updated QsciLexerPython. + [bc96868a1a6f] + + * NEWS, Python/sip/qscilexerruby.sip, Python/sip/qscilexersql.sip, + Python/sip/qscilexertcl.sip, Python/sip/qscilexertex.sip, + qt/qscilexerruby.cpp, qt/qscilexerruby.h, qt/qscilexersql.h, + qt/qscilexertcl.h, qt/qscilexertex.h: + The new lexer property setters are no longer virtual slots. + [c3e88383e8d3] + + * qt/qscilexersql.cpp, qt/qscilexersql.h: + Restored the default behaviour of setFoldCompact() for QsciLexerSQL. + [c74aef0f7eb4] + + * NEWS, Python/sip/qscilexertcl.sip, qt/qscilexersql.h, + qt/qscilexertcl.cpp, qt/qscilexertcl.h: + Updated QsciLexerTCL. + [43a150bb40d5] + + * NEWS, Python/sip/qscilexertex.sip, qt/qscilexertex.cpp, + qt/qscilexertex.h: + Updated QsciLexerTeX. + [1457935cee44] + + * qt/qscintilla_cs.qm, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_es.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm, + qt/qscintilla_ru.qm: + Updated German translations from Detlev. + [ad4a4bd4855b] + +2011-03-08 Phil Thompson + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the .ts translation files. + [8d70033d07e2] + + * NEWS, Python/sip/qscilexersql.sip, qt/qscilexersql.cpp, + qt/qscilexersql.h: + Updated QsciLexerSQL. + [8bc79d109c88] + + * NEWS, Python/sip/qscilexercss.sip, qt/qscilexercss.cpp, + qt/qscilexercss.h: + Updated QsciLexerCSS. + [f3adcb31b1a9] + + * NEWS, Python/sip/qscilexerd.sip, qt/qscilexerd.cpp, qt/qscilexerd.h: + Updated QsciLexerD. + [82d8a6561943] + + * Python/sip/qscilexerlua.sip, qt/qscilexerlua.cpp, qt/qscilexerlua.h: + Updated QsciLexerLua. + [103f5881c642] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintillabase.h: + Added support for the QsciScintillaBase::SCN_HOTSPOTRELEASECLICK() + signal. + [1edd56e105cd] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for SCLEX_MARKDOWN, SCLEX_TXT2TAGS and + SCLEX_A68K. + [de92a613cea7] + + * Python/sip/qsciscintillabase.sip, qt/qscicommand.cpp, + qt/qsciscintilla.cpp, qt/qsciscintillabase.h: + Added support for SCMOD_SUPER as the Qt Meta key modifier. + [24e745cddeea] + + * NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.h: + Updated the QsciScintillaBase::SCN_UPDATEUI() signal. Added low- + level support for SC_MOD_LEXERSTATE. + [0a341fcb0545] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for the updated property functions. + [f33d9c271992] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for SCI_GETLEXERLANGUAGE and + SCI_PRIVATELEXERCALL. + [ac69f8c2ef3b] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for the new stick caret options. + [693ac6c68e6f] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for SCI_AUTOCGETCURRENTTEXT. + [2634827cdb4e] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for SC_SEL_THIN. + [4225a944dc14] + + * qt/qsciscintilla.cpp: + Folding now works again. + [3972053c646e] + +2011-03-07 Phil Thompson + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for SCI_VERTICALCENTRECARET. + [92d5ecb154d1] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added setContractedFolds() and contractedFolds() to QsciScintilla. + [46eb254c6200] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for SCI_CHANGELEXERSTATE. + [edd899d77aa7] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h, + qt/qsciscintillabase.h: + Added low-level support for SCI_CHARPOSITIONFROMPOINT and + SCI_CHARPOSITIONFROMPOINTCLOSE. + [5a000cf4bfba] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added low-level support for multiple selections. + [dedda8cbf413] + + * Python/sip/qsciscintillabase.sip, qt/qsciscintillabase.h: + Added SCI_GETTAG. + [775d0058f00e] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added QsciScintilla::setFirstVisibleLine(). + [8b662ffe3fb6] + + * Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp, + qt/qsciscintillabase.h: + Added low-level support for setting the font quality. + [933e8b01eda6] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added high-level support for line wrap indentation modes. + [1faa3b2fa31e] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added high-level support for extra ascent and descent space. Added + high-level support for whitespace size, foreground and background. + [537c551a79ef] + + * Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp, + qt/qsciscintillabase.h: + Updated the low level support for cursors. + [2ce685a89697] + + * NEWS, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, qt/qsciscintilla.h, + qt/qsciscintillabase.h: + Updated the support for markers and added FullRectangle, + LeftRectangle and Underline to the MarkerSymbol enum. + [4c626f8189bf] + +2011-03-06 Phil Thompson + + * NEWS, Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/ScintillaQt.h, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Rectangular selections are now fully supported. The signatures of + toMimeData() and fromMimeData() have changed. + [397948f42b2e] + + * NEWS: + Updated the NEWS file. + [bc75b98210f2] + + * .hgignore: + Added the .hgignore file. + [77312a36220e] + + * qt/qsciscintilla.cpp: + Removed the workaround for the broken annotations in Scintilla + v1.78. + [70ab4c4b7c66] + + * qt/ListBoxQt.cpp: + Fixed a regression when displaying an auto-completion list. + [c38d4b97a1ca] + +2011-03-04 Phil Thompson + + * qt/ListBoxQt.cpp, qt/PlatQt.cpp, qt/ScintillaQt.cpp, + qt/ScintillaQt.h, qt/qsciscintillabase.cpp: + Completed the merge of Scintilla v2.24. + [6890939e2da6] + + * build.py, qt/qscintilla.pro: + More build system changes. + [3e9deec76c02] + + * qt/qscintilla.pro, qt/qsciscintilla.cpp: + Updated the .pro file for the changed files and directory structure + in v2.24. + [274cb7017857] + + * License.txt, README, bin/empty.txt, cocoa/Framework.mk, + cocoa/InfoBar.h, cocoa/InfoBar.mm, cocoa/InfoBarCommunicator.h, + cocoa/PlatCocoa.h, cocoa/PlatCocoa.mm, cocoa/QuartzTextLayout.h, + cocoa/QuartzTextStyle.h, cocoa/QuartzTextStyleAttribute.h, + cocoa/SciTest.mk, cocoa/ScintillaCallTip.h, + cocoa/ScintillaCallTip.mm, cocoa/ScintillaCocoa.h, + cocoa/ScintillaCocoa.mm, cocoa/ScintillaFramework/Info.plist, cocoa/ + ScintillaFramework/ScintillaFramework.xcodeproj/project.pbxproj, + cocoa/ScintillaFramework/Scintilla_Prefix.pch, + cocoa/ScintillaListBox.h, cocoa/ScintillaListBox.mm, + cocoa/ScintillaTest/AppController.h, + cocoa/ScintillaTest/AppController.mm, + cocoa/ScintillaTest/English.lproj/MainMenu.xib, + cocoa/ScintillaTest/Info.plist, cocoa/ScintillaTest/Scintilla- + Info.plist, + cocoa/ScintillaTest/ScintillaTest.xcodeproj/project.pbxproj, + cocoa/ScintillaTest/ScintillaTest_Prefix.pch, + cocoa/ScintillaTest/TestData.sql, cocoa/ScintillaTest/main.m, + cocoa/ScintillaView.h, cocoa/ScintillaView.mm, cocoa/common.mk, + delbin.bat, delcvs.bat, doc/Design.html, doc/Lexer.txt, + doc/SciBreak.jpg, doc/SciCoding.html, doc/SciRest.jpg, + doc/SciTEIco.png, doc/SciWord.jpg, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/ScintillaToDo.html, + doc/ScintillaUsage.html, doc/Steps.html, doc/index.html, + gtk/Converter.h, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, + gtk/deps.mak, gtk/makefile, gtk/scintilla-marshal.c, gtk/scintilla- + marshal.h, gtk/scintilla-marshal.list, gtk/scintilla.mak, + include/Accessor.h, include/Face.py, include/HFacer.py, + include/ILexer.h, include/KeyWords.h, include/Platform.h, + include/PropSet.h, include/SString.h, include/SciLexer.h, + include/Scintilla.h, include/Scintilla.iface, + include/ScintillaWidget.h, include/WindowAccessor.h, + lexers/LexA68k.cxx, lexers/LexAPDL.cxx, lexers/LexASY.cxx, + lexers/LexAU3.cxx, lexers/LexAVE.cxx, lexers/LexAbaqus.cxx, + lexers/LexAda.cxx, lexers/LexAsm.cxx, lexers/LexAsn1.cxx, + lexers/LexBaan.cxx, lexers/LexBash.cxx, lexers/LexBasic.cxx, + lexers/LexBullant.cxx, lexers/LexCLW.cxx, lexers/LexCOBOL.cxx, + lexers/LexCPP.cxx, lexers/LexCSS.cxx, lexers/LexCaml.cxx, + lexers/LexCmake.cxx, lexers/LexConf.cxx, lexers/LexCrontab.cxx, + lexers/LexCsound.cxx, lexers/LexD.cxx, lexers/LexEScript.cxx, + lexers/LexEiffel.cxx, lexers/LexErlang.cxx, lexers/LexFlagship.cxx, + lexers/LexForth.cxx, lexers/LexFortran.cxx, lexers/LexGAP.cxx, + lexers/LexGui4Cli.cxx, lexers/LexHTML.cxx, lexers/LexHaskell.cxx, + lexers/LexInno.cxx, lexers/LexKix.cxx, lexers/LexLisp.cxx, + lexers/LexLout.cxx, lexers/LexLua.cxx, lexers/LexMMIXAL.cxx, + lexers/LexMPT.cxx, lexers/LexMSSQL.cxx, lexers/LexMagik.cxx, + lexers/LexMarkdown.cxx, lexers/LexMatlab.cxx, + lexers/LexMetapost.cxx, lexers/LexMySQL.cxx, lexers/LexNimrod.cxx, + lexers/LexNsis.cxx, lexers/LexOpal.cxx, lexers/LexOthers.cxx, + lexers/LexPB.cxx, lexers/LexPLM.cxx, lexers/LexPOV.cxx, + lexers/LexPS.cxx, lexers/LexPascal.cxx, lexers/LexPerl.cxx, + lexers/LexPowerPro.cxx, lexers/LexPowerShell.cxx, + lexers/LexProgress.cxx, lexers/LexPython.cxx, lexers/LexR.cxx, + lexers/LexRebol.cxx, lexers/LexRuby.cxx, lexers/LexSML.cxx, + lexers/LexSQL.cxx, lexers/LexScriptol.cxx, lexers/LexSmalltalk.cxx, + lexers/LexSorcus.cxx, lexers/LexSpecman.cxx, lexers/LexSpice.cxx, + lexers/LexTACL.cxx, lexers/LexTADS3.cxx, lexers/LexTAL.cxx, + lexers/LexTCL.cxx, lexers/LexTeX.cxx, lexers/LexTxt2tags.cxx, + lexers/LexVB.cxx, lexers/LexVHDL.cxx, lexers/LexVerilog.cxx, + lexers/LexYAML.cxx, lexlib/Accessor.cxx, lexlib/Accessor.h, + lexlib/CharacterSet.cxx, lexlib/CharacterSet.h, + lexlib/LexAccessor.h, lexlib/LexerBase.cxx, lexlib/LexerBase.h, + lexlib/LexerModule.cxx, lexlib/LexerModule.h, + lexlib/LexerNoExceptions.cxx, lexlib/LexerNoExceptions.h, + lexlib/LexerSimple.cxx, lexlib/LexerSimple.h, lexlib/OptionSet.h, + lexlib/PropSetSimple.cxx, lexlib/PropSetSimple.h, + lexlib/StyleContext.cxx, lexlib/StyleContext.h, lexlib/WordList.cxx, + lexlib/WordList.h, lib/README.doc, macosx/PlatMacOSX.cxx, + macosx/SciTest/SciTest.xcode/project.pbxproj, + macosx/ScintillaMacOSX.cxx, macosx/ScintillaMacOSX.h, + macosx/deps.mak, macosx/makefile, src/AutoComplete.cxx, + src/AutoComplete.h, src/CallTip.cxx, src/CallTip.h, + src/Catalogue.cxx, src/Catalogue.h, src/CellBuffer.cxx, + src/CellBuffer.h, src/CharClassify.cxx, src/CharClassify.h, + src/CharacterSet.h, src/ContractionState.cxx, + src/ContractionState.h, src/Decoration.h, src/Document.cxx, + src/Document.h, src/DocumentAccessor.cxx, src/DocumentAccessor.h, + src/Editor.cxx, src/Editor.h, src/ExternalLexer.cxx, + src/ExternalLexer.h, src/FontQuality.h, src/Indicator.cxx, + src/Indicator.h, src/KeyMap.cxx, src/KeyMap.h, src/KeyWords.cxx, + src/LexAPDL.cxx, src/LexASY.cxx, src/LexAU3.cxx, src/LexAVE.cxx, + src/LexAbaqus.cxx, src/LexAda.cxx, src/LexAsm.cxx, src/LexAsn1.cxx, + src/LexBaan.cxx, src/LexBash.cxx, src/LexBasic.cxx, + src/LexBullant.cxx, src/LexCLW.cxx, src/LexCOBOL.cxx, + src/LexCPP.cxx, src/LexCSS.cxx, src/LexCaml.cxx, src/LexCmake.cxx, + src/LexConf.cxx, src/LexCrontab.cxx, src/LexCsound.cxx, + src/LexD.cxx, src/LexEScript.cxx, src/LexEiffel.cxx, + src/LexErlang.cxx, src/LexFlagship.cxx, src/LexForth.cxx, + src/LexFortran.cxx, src/LexGAP.cxx, src/LexGen.py, + src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexHaskell.cxx, + src/LexInno.cxx, src/LexKix.cxx, src/LexLisp.cxx, src/LexLout.cxx, + src/LexLua.cxx, src/LexMMIXAL.cxx, src/LexMPT.cxx, src/LexMSSQL.cxx, + src/LexMagik.cxx, src/LexMatlab.cxx, src/LexMetapost.cxx, + src/LexMySQL.cxx, src/LexNimrod.cxx, src/LexNsis.cxx, + src/LexOpal.cxx, src/LexOthers.cxx, src/LexPB.cxx, src/LexPLM.cxx, + src/LexPOV.cxx, src/LexPS.cxx, src/LexPascal.cxx, src/LexPerl.cxx, + src/LexPowerPro.cxx, src/LexPowerShell.cxx, src/LexProgress.cxx, + src/LexPython.cxx, src/LexR.cxx, src/LexRebol.cxx, src/LexRuby.cxx, + src/LexSML.cxx, src/LexSQL.cxx, src/LexScriptol.cxx, + src/LexSmalltalk.cxx, src/LexSorcus.cxx, src/LexSpecman.cxx, + src/LexSpice.cxx, src/LexTACL.cxx, src/LexTADS3.cxx, src/LexTAL.cxx, + src/LexTCL.cxx, src/LexTeX.cxx, src/LexVB.cxx, src/LexVHDL.cxx, + src/LexVerilog.cxx, src/LexYAML.cxx, src/LineMarker.cxx, + src/LineMarker.h, src/Partitioning.h, src/PerLine.cxx, + src/PerLine.h, src/PositionCache.cxx, src/PositionCache.h, + src/PropSet.cxx, src/RESearch.cxx, src/RESearch.h, + src/RunStyles.cxx, src/SVector.h, src/SciTE.properties, + src/ScintillaBase.cxx, src/ScintillaBase.h, src/Selection.cxx, + src/Selection.h, src/SplitVector.h, src/Style.cxx, src/Style.h, + src/StyleContext.cxx, src/StyleContext.h, src/UniConversion.cxx, + src/UniConversion.h, src/ViewStyle.cxx, src/ViewStyle.h, + src/WindowAccessor.cxx, src/XPM.cxx, src/XPM.h, + test/MessageNumbers.py, test/README, test/XiteMenu.py, + test/XiteWin.py, test/examples/x.asp, test/examples/x.asp.styled, + test/examples/x.cxx, test/examples/x.cxx.styled, test/examples/x.d, + test/examples/x.d.styled, test/examples/x.html, + test/examples/x.html.styled, test/examples/x.php, + test/examples/x.php.styled, test/examples/x.py, + test/examples/x.py.styled, test/examples/x.vb, + test/examples/x.vb.styled, test/lexTests.py, + test/performanceTests.py, test/simpleTests.py, test/unit/README, + test/unit/SciTE.properties, test/unit/makefile, + test/unit/testContractionState.cxx, test/unit/testPartitioning.cxx, + test/unit/testRunStyles.cxx, test/unit/testSplitVector.cxx, + test/unit/unitTest.cxx, test/xite.py, vcbuild/SciLexer.dsp, + version.txt, win32/Margin.cur, win32/PlatWin.cxx, + win32/PlatformRes.h, win32/SciTE.properties, win32/ScintRes.rc, + win32/Scintilla.def, win32/ScintillaWin.cxx, win32/deps.mak, + win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak, + zipsrc.bat: + Merged Scintilla v2.24. + [59ca27407fd9] + +2011-03-03 Phil Thompson + + * Python/configure.py, qt/qscintilla.pro: + Updated the .so version number to 6.0.0. + [8ebe3f1fccd4] + + * Makefile: + Switched the build system to Qt v4.7.2. + [47f653394ef0] + + * .hgtags, lib/README.svn: + Merged the v2.4 maintenance branch. + [d00b7d9115d1] + + * qsci/api/python/Python-3.2.api: + Added an API file for Python v3.2. + [8cc94408b710] <2.4-maint> + +2011-02-23 Phil Thompson + + * qt/qsciscintillabase.cpp: + On X11 the control modifier is now used (instead of alt) to trigger + a rectangular selection. + [4bea3b8b8271] <2.4-maint> + +2011-02-22 Phil Thompson + + * qt/qscimacro.cpp: + Fixed a bug with Qt4 when loading a macro that meant that a macro + may not have a terminating '\0'. + [bbec6ef96cd2] <2.4-maint> + +2011-02-06 Phil Thompson + + * lib/LICENSE.commercial.short, lib/LICENSE.gpl.short: + Updated the copyright notices. + [f386964f3853] <2.4-maint> + + * Python/sip/qsciscintilla.sip, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Deprecated setAutoCompletionShowSingle(), added + setAutoCompletionUseSingle(). Deprecated autoCompletionShowSingle(), + added autoCompletionUseSingle(). + [7dae1a33b74b] <2.4-maint> + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + QsciScintilla::setAutoCompletionCaseSensitivity() is no longer + ignored if a lexer has been set. + [92d3c5f7b825] <2.4-maint> + + * qt/qscintilla.pro, qt/qsciscintillabase.cpp: + Translate Key_Backtab to Shift-Key_Tab before passing to Scintilla. + [fc2d75b26ef8] <2.4-maint> + +2011-01-06 Phil Thompson + + * qt/qscintilla_es.ts: + Updated Spanish translations from Jaime Seuma. + [8921e85723a1] <2.4-maint> + +2010-12-24 Phil Thompson + + * qt/qsciscintilla.h: + Fixed a documentation typo. + [1b951cf8838a] <2.4-maint> + +2010-12-23 Phil Thompson + + * .hgtags: + Added tag 2.4.6 for changeset 1884d76f35b0 + [696037b84e26] <2.4-maint> + + * NEWS: + Released as v2.4.6. + [1884d76f35b0] [2.4.6] <2.4-maint> + +2010-12-21 Phil Thompson + + * qt/qsciscintilla.cpp: + Auto-completion words from documents are now ignored if they are + already included from APIs. + [db48fbf19e7c] <2.4-maint> + + * qt/SciClasses.cpp: + Make sure call tips are redrawn afer being clicked on. + [497ad4605ae3] <2.4-maint> + +2010-11-23 Phil Thompson + + * NEWS, Python/sip/qsciscintilla.sip, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added support for indicators to the high-level API. See the NEWS + file for the details. + [8673b7890874] <2.4-maint> + +2010-11-15 Phil Thompson + + * Python/configure.py: + Added the --no-timestamp option to configure.py. + [61d1b5d28e21] <2.4-maint> + + * qsci/api/python/Python-2.7.api: + Added the API file for Python v2.7. + [5b2c77e7150a] <2.4-maint> + +2010-11-09 Phil Thompson + + * Makefile, qt/PlatQt.cpp: + Applied a fix for calculating character widths under OS/X. Switched + the build system to Qt v4.7.1. + [47a4eff86efa] <2.4-maint> + +2010-11-08 Phil Thompson + + * qt/qscilexercpp.h: + Fixed a bug in the documentation of QsciLexerCPP.GlobalClass. + [3cada289b329] <2.4-maint> + +2010-10-24 Phil Thompson + + * qt/SciClasses.h, qt/ScintillaQt.h, qt/qscicommandset.h, + qt/qsciglobal.h, qt/qscilexer.h, qt/qsciprinter.h, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Added support for QT_BEGIN_NAMESPACE and QT_END_NAMESPACE. + [a80f0df49f6c] <2.4-maint> + +2010-10-23 Phil Thompson + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts: + Updated German translations from Detlev. + [693d3adf3c3f] <2.4-maint> + +2010-10-21 Phil Thompson + + * Makefile, Python/sip/qscilexerproperties.sip, + qt/qscilexerproperties.cpp, qt/qscilexerproperties.h, + qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Added support for the Key style to QsciLexerProperties. + [0b2e86015862] <2.4-maint> + +2010-08-31 Phil Thompson + + * .hgtags: + Added tag 2.4.5 for changeset f3f3936e5b86 + [84bb1b0d0674] <2.4-maint> + + * NEWS: + Released as v2.4.5. + [f3f3936e5b86] [2.4.5] <2.4-maint> + +2010-08-21 Phil Thompson + + * NEWS: + Updated the NEWS file. + [80afe6b1504a] <2.4-maint> + +2010-08-20 Phil Thompson + + * Python/sip/qsciscintillabase.sip: + With Python v3, the QsciScintillaBase.SendScintilla() overloads that + take char * arguments now require them to be bytes objects and no + longer allow them to be str objects. + [afa9ac3c487d] <2.4-maint> + +2010-08-14 Phil Thompson + + * Python/sip/qsciscintillabase.sip: + Reverted the addition of the /Encoding/ annotations to + SendScintilla() as it is (probably) not the right solution. + [4cb625284e4f] <2.4-maint> + + * qt/qsciscintilla.cpp: + The entries in user and auto-completion lists should now support + UTF-8. + [112d71cec57a] <2.4-maint> + + * Python/sip/qsciscintillabase.sip: + The QsciScintillaBase.SendScintilla() Python overloads will now + accept unicode strings that can be encoded to UTF-8. + [2f21b97985f2] <2.4-maint> + +2010-07-22 Phil Thompson + + * qt/qscilexerhtml.cpp, qt/qscilexerhtml.h: + Implemented QsciLexerHTML::autoCompletionFillups() to change the + fillups to "/>". + [8d9c1aad1349] <2.4-maint> + + * qt/qsciscintilla.cpp: + Fixed a regression, and the original bug, in + QsciScintilla::clearAnnotations(). + [fd8746ae2198] <2.4-maint> + + * qt/qscistyle.cpp: + QsciStyle now auto-allocates style numbers from 63 rather than + STYLE_MAX because Scintilla only initially creates enough storage + for that number of styles. + [7c69b0a4ee5b] <2.4-maint> + +2010-07-15 Phil Thompson + + * qt/qscilexerverilog.cpp, qt/qscintilla.pro: + Fixed a bug in QsciLexerVerilog that meant that the Keyword style + was being completely ignored. + [09e28404476a] <2.4-maint> + +2010-07-12 Phil Thompson + + * .hgtags: + Added tag 2.4.4 for changeset c61a49005995 + [4c98368d9bea] <2.4-maint> + + * NEWS: + Released as v2.4.4. + [c61a49005995] [2.4.4] <2.4-maint> + +2010-06-08 Phil Thompson + + * Makefile, qt/qsciscintillabase.cpp: + Pop-lists now get removed when the main widget loses focus. + [169fa07f52ab] <2.4-maint> + +2010-06-05 Phil Thompson + + * qt/ScintillaQt.cpp: + Changed SCN_MODIFIED to deal with text being NULL. + [68148fa857ab] <2.4-maint> + +2010-06-03 Phil Thompson + + * qt/ScintillaQt.cpp: + The SCN_MODIFIED signal now tries to make sure that the text passed + is valid. + [90e3461f410f] <2.4-maint> + +2010-04-22 Phil Thompson + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + QsciScintilla::markerDefine() now allows existing markers to be + redefined if an explicit marker number is given. + [63f1a7a1d8e2] <2.4-maint> + + * qt/ScintillaQt.cpp, qt/qsciscintilla.cpp, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Fixed the drag and drop behaviour so that a move automatically turns + into a copy when the mouse leaves the widget. + [4dab09799716] <2.4-maint> + +2010-04-21 Phil Thompson + + * qt/PlatQt.cpp, qt/ScintillaQt.cpp: + Fixed build problems against Qt v3. + [71168072ac9b] <2.4-maint> + + * Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Added QsciScintillaBase::fromMimeData(). + [b86a15672079] <2.4-maint> + + * Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Renamed QsciScintillaBase::createMimeData() to toMimeData(). + [6f5837334dde] <2.4-maint> + +2010-04-20 Phil Thompson + + * Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Added QsciScintillaBase::canInsertFromMimeData(). + [bbba2c1799ef] <2.4-maint> + + * Python/sip/qsciscintillabase.sip, qt/ScintillaQt.cpp, + qt/qscintilla.pro, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Added QsciScintillaBase::createMimeData(). + [b2c3e3a9b43d] <2.4-maint> + +2010-03-17 Phil Thompson + + * .hgtags: + Added tag 2.4.3 for changeset 786429e0227d + [1931843aec48] <2.4-maint> + + * NEWS, build.py: + Fixed the generation of the change log after tagging a release. + Updated the NEWS file. Released as v2.4.3. + [786429e0227d] [2.4.3] <2.4-maint> + +2010-02-23 Phil Thompson + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Reverted the setting of the alpha component in + setMarkerForegroundColor() (at least until SC_MARK_UNDERLINE is + supported). + [111da2e01c5e] <2.4-maint> + + * qt/PlatQt.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Fixed the very broken support for the alpha component with Qt4. + [b1d73c7f447b] <2.4-maint> + + * Python/sip/qsciscintilla.sip, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added QsciScintilla::clearFolds() to clear all current folds + (typically prior to disabling folding). + [4f4266da1962] <2.4-maint> + +2010-02-15 Phil Thompson + + * Makefile: + Switched the build system to Qt v4.6.2. + [f023013b79e4] <2.4-maint> + +2010-02-07 Phil Thompson + + * qt/qscidocument.cpp: + Fixed a bug in the handling of multiple views of a document. + [8b4aa000df1c] <2.4-maint> + +2010-01-31 Phil Thompson + + * Makefile, build.py: + Minor tidy ups for the internal build system. + [c3a41d195b8a] <2.4-maint> + +2010-01-30 Phil Thompson + + * Makefile, Python/configure.py, build.py, lib/README.doc, + lib/README.svn, lib/qscintilla.dxy, qt/qsciglobal.h: + Changes to the internal build system required by the migration to + Mercurial. + [607e474dfd28] <2.4-maint> + +2010-01-29 phil + + * .hgtags: + Import from SVN. + [49d5a0d80211] + +2010-01-20 phil + + * Makefile, NEWS: + Updated the build system to Qt v4.6.1. Released as v2.4.2. + [73732e5bae08] [2.4.2] <2.4-maint> + +2010-01-18 phil + + * qt/qscintilla_es.qm, qt/qscintilla_es.ts: + Updated Spanish translations from Jaime Seuma. + [3b911e69696d] <2.4-maint> + +2010-01-15 phil + + * Python/configure.py: + The Python bindings now check for SIP v4.10. + [8d5f4957a07c] <2.4-maint> + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_es.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the .ts files. + [15c647ac0c42] <2.4-maint> + + * NEWS, build.py: + Fixed the build system for Qt v3 and v4 prior to v4.5. + [1b5bea85a3bf] <2.4-maint> + +2010-01-14 phil + + * NEWS, lib/LICENSE.commercial.short, lib/LICENSE.gpl.short: + Released as v2.4.1. + [a04b69746aa6] [2.4.1] <2.4-maint> + +2009-12-22 phil + + * lib/gen_python3_api.py, qsci/api/python/Python-3.1.api: + Added the API file for Python v3.1. + [116c24ab58b2] <2.4-maint> + + * NEWS, Python/configure.py: + Added support for automatically generated docstrings. + [3d316b4f222b] <2.4-maint> + +2009-12-11 phil + + * Makefile, qt/PlatQt.cpp: + Fixed a performance problem when displaying very long lines. + [d3fe67ad2eb5] <2.4-maint> + +2009-11-01 phil + + * qt/qsciapis.cpp: + Fixed a possible crash in the handling of call tips. + [6248caa24fec] <2.4-maint> + + * qt/SciClasses.cpp: + Applied the workaround for the autocomplete focus bug under Gnome's + window manager which (appears) to work with current versions of Qt + across all platforms. + [f709f1518e70] <2.4-maint> + + * Makefile, qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Make sure a lexer is fully detached when a QScintilla instance is + destroyed. + [db47764231d2] <2.4-maint> + +2009-08-19 phil + + * lib/LICENSE.gpl.short, qt/qscintilla_de.qm, qt/qscintilla_de.ts: + Updated German translations from Detlev. + [458b60ec031e] <2.4-maint> + +2009-08-09 phil + + * Python/sip/qscilexerverilog.sip, Python/sip/qscimodcommon.sip, + qt/qscilexerverilog.cpp, qt/qscilexerverilog.h, qt/qscintilla.pro: + Added the QsciLexerVerilog class. + [86b2aceac88c] <2.4-maint> + + * Makefile, Python/sip/qscilexerspice.sip, + Python/sip/qscimodcommon.sip, lib/LICENSE.commercial, lib + /OPENSOURCE-NOTICE.TXT, lib/README.doc, qt/qscilexerspice.cpp, + qt/qscilexerspice.h, qt/qscintilla.pro: + Added the QsciLexerSpice class. + [56532ec00839] <2.4-maint> + +2009-06-05 phil + + * NEWS, lib/LICENSE.commercial: + Released as v2.4. + [612b1bcb8223] [2.4] + +2009-06-03 phil + + * NEWS, qt/qscistyledtext.h: + Fixed a bug building on Qt v3. + [88ebc67fdff4] + +2009-05-30 phil + + * qt/ScintillaQt.cpp: + Applied a fix for copying UTF-8 text to the X clipboard from Lars + Reichelt. + [e59fa72c2e2d] + +2009-05-27 phil + + * qt/qscilexercustom.h: + Fixed a missing forward declaration in qscilexercustom.h. + [0018449ee6aa] + +2009-05-25 phil + + * qt/qscilexercustom.cpp: + Don't ask the custom lexer to style zero characters. + [6ae021232f4f] + +2009-05-19 phil + + * NEWS, qt/qscintilla.pro, qt/qscintilla_cs.qm, qt/qscintilla_es.qm, + qt/qscintilla_es.ts, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm, + qt/qscintilla_ru.qm: + Added Spanish translations from Jaime Seuma. + [0cdbee8db9af] + + * qt/qsciscintilla.cpp: + A minor fix for ancient C++ compilers. + [0523c3a0e0aa] + +2009-05-18 phil + + * NEWS, Python/sip/qscilexer.sip, Python/sip/qscilexercustom.sip, + Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip, + qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexercustom.cpp, + qt/qscilexercustom.h, qt/qscintilla.pro, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added QsciScintilla::annotation(). Added QsciLexerCustom (completely + untested) and supporting changes to QsciLexer. + [382d5b86f600] + +2009-05-17 phil + + * qt/qscintilla_cs.ts, qt/qscintilla_de.qm, qt/qscintilla_de.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated translations from Detlev. + [0b8c8438e464] + +2009-05-09 phil + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added support for text margins. + [be9db7d41b50] + + * qt/PlatQt.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qscistyledtext.cpp, qt/qscistyledtext.h: + Debugged the support for annotations. Tidied up the QString to + Scintilla string conversions. + [573199665222] + +2009-05-08 phil + + * NEWS, Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip, + Python/sip/qscistyle.sip, Python/sip/qscistyledtext.sip, + qt/qscicommand.h, qt/qscimacro.h, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qscistyle.cpp, + qt/qscistyle.h, qt/qscistyledtext.cpp, qt/qscistyledtext.h: + Implemented the rest of the annotation API - still needs debugging. + [7f23400d2416] + +2009-05-07 phil + + * NEWS, qt/qscintilla.pro, qt/qscistyle.cpp, qt/qscistyle.h: + Added the QsciStyle class. + [bf8e3e02071e] + +2009-05-06 phil + + * qt/qsciscintillabase.cpp: + Fixed the key event handling when the text() is empty and the key() + should be used - only seems to happen with OS/X. + [868a146b019f] + +2009-05-03 phil + + * Makefile, NEWS, Python/configure.py, Python/sip/qscicommand.sip, + Python/sip/qscicommandset.sip, Python/sip/qscilexer.sip, + Python/sip/qscilexercpp.sip, Python/sip/qscilexercss.sip, + Python/sip/qscilexerdiff.sip, Python/sip/qscilexerhtml.sip, + Python/sip/qscilexerpascal.sip, Python/sip/qscilexerperl.sip, + Python/sip/qscilexerpython.sip, Python/sip/qscilexerxml.sip, + Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip, + README, UTF-8-demo.txt, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/ScintillaToDo.html, + doc/annotations.png, doc/index.html, doc/styledmargin.png, + gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile, + gtk/scintilla.mak, include/Face.py, include/HFacer.py, + include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface, + include/ScintillaWidget.h, lib/LICENSE.commercial, + macosx/PlatMacOSX.cxx, macosx/makefile, qt/PlatQt.cpp, + qt/ScintillaQt.cpp, qt/qsciapis.cpp, qt/qscidocument.cpp, + qt/qscidocument.h, qt/qscilexer.cpp, qt/qscilexer.h, + qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscilexercss.cpp, + qt/qscilexercss.h, qt/qscilexerdiff.cpp, qt/qscilexerdiff.h, + qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, qt/qscilexerpascal.cpp, + qt/qscilexerpascal.h, qt/qscilexerperl.cpp, qt/qscilexerperl.h, + qt/qscilexerpython.cpp, qt/qscilexerpython.h, qt/qscilexerxml.cpp, + qt/qscilexerxml.h, qt/qscintilla.pro, qt/qscintilla_cs.ts, + qt/qscintilla_de.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, + qt/qscintilla_ru.ts, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qsciscintillabase.h, src/CellBuffer.cxx, src/CellBuffer.h, + src/Document.cxx, src/Document.h, src/Editor.cxx, src/Editor.h, + src/ExternalLexer.cxx, src/Indicator.cxx, src/Indicator.h, + src/KeyWords.cxx, src/LexAU3.cxx, src/LexAbaqus.cxx, src/LexAsm.cxx, + src/LexBash.cxx, src/LexCOBOL.cxx, src/LexCPP.cxx, src/LexCSS.cxx, + src/LexD.cxx, src/LexFortran.cxx, src/LexGen.py, src/LexHTML.cxx, + src/LexHaskell.cxx, src/LexInno.cxx, src/LexLua.cxx, + src/LexMySQL.cxx, src/LexNimrod.cxx, src/LexNsis.cxx, + src/LexOthers.cxx, src/LexPascal.cxx, src/LexPerl.cxx, + src/LexPowerPro.cxx, src/LexProgress.cxx, src/LexPython.cxx, + src/LexRuby.cxx, src/LexSML.cxx, src/LexSQL.cxx, src/LexSorcus.cxx, + src/LexTACL.cxx, src/LexTADS3.cxx, src/LexTAL.cxx, src/LexTeX.cxx, + src/LexVerilog.cxx, src/LexYAML.cxx, src/PerLine.cxx, src/PerLine.h, + src/PositionCache.cxx, src/RESearch.cxx, src/RESearch.h, + src/RunStyles.h, src/SciTE.properties, src/ScintillaBase.cxx, + src/SplitVector.h, src/UniConversion.cxx, src/ViewStyle.cxx, + src/ViewStyle.h, vcbuild/SciLexer.dsp, version.txt, + win32/PlatWin.cxx, win32/ScintRes.rc, win32/ScintillaWin.cxx, + win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak: + Merged the v2.3 branch onto the trunk. + [1bb3d2b01123] + +2008-09-20 phil + + * Makefile, NEWS, lib/README.doc: + Released as v2.3. + [8fd73a9a9d66] [2.3] + +2008-09-17 phil + + * NEWS, Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added QsciScintilla::apiContext() for further open up the auto- + completion and call tips support. + [a6291ea6dd37] + +2008-09-16 phil + + * Python/configure.py, lib/gen_python_api.py, + qsci/api/python/Python-2.6.api, qt/qsciapis.h: + Added the API file for Python v2.6rc1. Fixed a typo in the help for + the Python bindings configure.py. + [ac10be3cc7fb] + +2008-09-03 phil + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_fr.ts, + qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the i18n .ts files. + [b73beac06e0f] + +2008-09-01 phil + + * lib/README.doc: + Updated the Windows installation notes to cover the need to manually + install the DLL when using Qt3. + [17019ebfab36] + + * lib/README.doc, qt/qsciscintilla.cpp: + Fixed a regression in the highlighting of call tip arguments. + Updated the Windows installation notes to say that any header files + installed from a previous build should first be removed. + [cb3f27b93323] + +2008-08-31 phil + + * NEWS, Python/configure.py, Python/sip/qsciabstractapis.sip, + Python/sip/qsciapis.sip, Python/sip/qscilexer.sip, + Python/sip/qscimodcommon.sip, Python/sip/qsciscintillabase.sip, + qt/qsciabstractapis.cpp, qt/qsciabstractapis.h, qt/qsciapis.cpp, + qt/qsciapis.h, qt/qscilexer.cpp, qt/qscilexer.h, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added the QsciAbstractAPIs class to allow applications to provide + their own implementation of APIs. + [eb5a8a602e5d] + + * Makefile, Python/configure.py, Python/sip/qscilexerfortran.sip, + Python/sip/qscilexerfortran77.sip, Python/sip/qscilexerpascal.sip, + Python/sip/qscilexerpostscript.sip, Python/sip/qscilexertcl.sip, + Python/sip/qscilexerxml.sip, Python/sip/qscilexeryaml.sip, + Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase.sip, build.py, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/index.html, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/makefile, gtk/scintilla.mak, + include/Platform.h, include/SciLexer.h, include/Scintilla.h, + include/Scintilla.iface, lib/LICENSE.commercial, lib/README.doc, + lib/qscintilla.dxy, macosx/ExtInput.cxx, macosx/ExtInput.h, + macosx/PlatMacOSX.cxx, macosx/PlatMacOSX.h, + macosx/QuartzTextLayout.h, macosx/QuartzTextStyle.h, + macosx/QuartzTextStyleAttribute.h, macosx/ScintillaMacOSX.cxx, + macosx/ScintillaMacOSX.h, macosx/TView.cxx, macosx/makefile, + qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/qscilexerfortran.cpp, + qt/qscilexerfortran.h, qt/qscilexerfortran77.cpp, + qt/qscilexerfortran77.h, qt/qscilexerhtml.cpp, qt/qscilexerlua.cpp, + qt/qscilexerlua.h, qt/qscilexerpascal.cpp, qt/qscilexerpascal.h, + qt/qscilexerperl.cpp, qt/qscilexerperl.h, + qt/qscilexerpostscript.cpp, qt/qscilexerpostscript.h, + qt/qscilexertcl.cpp, qt/qscilexertcl.h, qt/qscilexerxml.cpp, + qt/qscilexerxml.h, qt/qscilexeryaml.cpp, qt/qscilexeryaml.h, + qt/qscimacro.cpp, qt/qscimacro.h, qt/qscintilla.pro, + qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.h, src/CellBuffer.cxx, + src/Editor.cxx, src/Editor.h, src/KeyWords.cxx, src/LexCPP.cxx, + src/LexGen.py, src/LexMagik.cxx, src/LexMatlab.cxx, src/LexPerl.cxx, + src/LexPowerShell.cxx, src/LineMarker.cxx, src/RunStyles.cxx, + src/RunStyles.h, vcbuild/SciLexer.dsp, version.txt, + win32/PlatWin.cxx, win32/ScintRes.rc, win32/ScintillaWin.cxx, + win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak: + Merged the v2.2 maintenance branch. + [cd784c60bcc7] + +2008-02-27 phil + + * NEWS, build.py, lib/GPL_EXCEPTION.TXT, lib/LICENSE.GPL2, + lib/LICENSE.GPL3, lib/LICENSE.commercial, + lib/LICENSE.commercial.short, lib/LICENSE.gpl, + lib/LICENSE.gpl.short, lib/OPENSOURCE-NOTICE.TXT: + Updated the licenses to be in line with the the current Qt licenses, + including GPL v3. Released as v2.2. + [a039ca791129] [2.2] + +2008-02-23 phil + + * Makefile, qt/PlatQt.cpp: + Switched to Qt v4.3.4. Further tweaks for Windows64 support. + [3ae9686f38e6] + +2008-02-22 phil + + * Makefile, NEWS, Python/sip/qsciscintillabase.sip, qt/PlatQt.cpp, + qt/ScintillaQt.cpp, qt/qscidocument.cpp, qt/qscimacro.cpp, + qt/qscintilla.pro, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Several fixes for Windows64 support based on a patch from Randall + Frank. + [2c753ee01c42] + +2008-02-09 phil + + * Python/configure.py, lib/README.doc, qt/qscintilla.pro: + It's no longer necessary to set DYLD_LIBRARY_PATH when using the + Python bindings. + [d1098424aed1] + +2008-02-03 phil + + * Python/sip/qscilexerruby.sip: + Added the missing QsciLexerRuby.Error to the Python bindings. + [0b4f06a30251] + +2008-01-20 phil + + * designer-Qt4/qscintillaplugin.cpp, designer-Qt4/qscintillaplugin.h: + Fixed a problem with the Qt4 Designer plugin on Leopard. + [5450a1bc62df] + +2008-01-11 phil + + * qt/SciClasses.cpp, qt/qsciscintillabase.cpp: + Hopefully fixed shortcuts and accelerators when the autocompletion + list is displayed. + [8304a1f4e36b] + +2008-01-06 phil + + * qt/SciClasses.cpp: + Hopefully fixed a bug stopping normal typing when the autocompletion + list is being displayed. + [2db0cc8fa158] + +2008-01-03 phil + + * lib/LICENSE.commercial.short, lib/LICENSE.gpl, + lib/LICENSE.gpl.short, lib/README.doc, qt/qsciscintillabase.cpp: + Fixed a Qt3 compilation bug. Updated the copyright notices. + [cf238f41fb54] + +2007-12-30 phil + + * qt/SciClasses.cpp, qt/SciClasses.h, qt/qsciscintillabase.cpp: + Hopefully fixed the problems with the auto-completion popup on all + platforms (not tested on Mac). + [585aa7e4e59f] + +2007-12-29 phil + + * qt/SciClasses.cpp: + Remove the use of the internal Tooltip widget flag so that the X11 + auto-completion list now has the same problems as the Windows + version. (Prior to fixing the problem properly.) + [93d584d099db] + +2007-12-23 phil + + * qt/ScintillaQt.cpp: + Fixed DND problems with Qt4. + [23f8c1a7c4c7] + + * qt/qsciscintilla.cpp: + Fix from Detlev for an infinite loop caused by calling + getCursorPosition() when Scintilla reports a position past the end + of the text. + [dd99ade93fa6] + +2007-12-05 phil + + * qt/qscilexerperl.cpp, qt/qscintilla_cs.ts, qt/qscintilla_de.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Fixed a silly typo in the updated Perl lexer. + [0e290eb71572] + + * qt/qscintilla_de.qm: + Updated German translations from Detlev. + [e820d3c167f5] + + * Makefile: + Switched the internal build system to Qt v4.3.3. + [df2d877e2422] + +2007-12-04 phil + + * qt/qscintilla_cs.ts, qt/qscintilla_de.ts, qt/qscintilla_fr.ts, + qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the translation source files. + [1fb11f16d750] + + * Python/sip/qscilexerperl.sip, Python/sip/qsciscintillabase.sip, + doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/ScintillaRelated.html, + doc/index.html, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/makefile, + gtk/scintilla.mak, include/Platform.h, include/PropSet.h, + include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface, + lib/README.svn, macosx/PlatMacOSX.cxx, macosx/ScintillaMacOSX.h, + macosx/makefile, qt/PlatQt.cpp, qt/qscilexer.cpp, qt/qscilexer.h, + qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpython.cpp, + qt/qscilexerpython.h, qt/qscintilla.pro, qt/qsciscintilla.cpp, + qt/qsciscintillabase.h, src/CellBuffer.cxx, src/CellBuffer.h, + src/ContractionState.cxx, src/ContractionState.h, src/Document.cxx, + src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx, + src/Editor.h, src/KeyWords.cxx, src/LexAPDL.cxx, src/LexASY.cxx, + src/LexAU3.cxx, src/LexAbaqus.cxx, src/LexBash.cxx, src/LexCPP.cxx, + src/LexGen.py, src/LexHTML.cxx, src/LexHaskell.cxx, + src/LexMetapost.cxx, src/LexOthers.cxx, src/LexPerl.cxx, + src/LexPython.cxx, src/LexR.cxx, src/LexSQL.cxx, src/LexTeX.cxx, + src/LexYAML.cxx, src/Partitioning.h, src/PositionCache.cxx, + src/PositionCache.h, src/PropSet.cxx, src/RunStyles.cxx, + src/RunStyles.h, src/ScintillaBase.cxx, src/SplitVector.h, + src/ViewStyle.cxx, src/ViewStyle.h, vcbuild/SciLexer.dsp, + version.txt, win32/PlatWin.cxx, win32/ScintRes.rc, + win32/ScintillaWin.cxx, win32/makefile, win32/scintilla.mak, + win32/scintilla_vc6.mak: + Merged Scintilla v1.75. + [8009a4d7275a] + +2007-11-17 phil + + * qt/SciClasses.cpp, qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Bug fixes for selectAll() and getCursorPosition() from Baz Walter. + [80eecca239b4] + +2007-10-24 phil + + * qt/qsciscintilla.cpp: + Fixed folding for HTML. + [bb6fb6065e30] + +2007-10-14 phil + + * build.py, lib/GPL_EXCEPTION.TXT, lib/GPL_EXCEPTION_ADDENDUM.TXT, + lib/LICENSE.gpl, lib/OPENSOURCE-NOTICE.TXT, qt/qscicommandset.cpp: + Control characters that are not bound to commands (or shortcuts) now + default to doing nothing (rather than inserting the character into + the text). Aligned the GPL license with Trolltech's exceptions. + [148432c68762] + +2007-10-12 phil + + * src/LexHTML.cxx: + Fixed the Scintilla HTML lexer's handling of characters >= 0x80. + [c4e271ce8e96] + +2007-10-05 phil + + * qt/qsciscintillabase.cpp: + Used NoSystemBackground rather than OpaquePaintEvent to eliminate + flicker. + [01a22c66304d] + +2007-10-04 phil + + * Makefile, qt/qsciscintillabase.cpp: + Fixed a flashing effect visible with a non-standard background. + Switched to Qt v4.3.2. + [781c58fcba96] + +2007-09-23 phil + + * qt/qsciapis.h, qt/qscicommand.h, qt/qscicommandset.h, + qt/qscidocument.h, qt/qsciglobal.h, qt/qscilexer.h, + qt/qscilexerbash.h, qt/qscilexerbatch.h, qt/qscilexercmake.h, + qt/qscilexercpp.h, qt/qscilexercsharp.h, qt/qscilexercss.h, + qt/qscilexerd.h, qt/qscilexerdiff.h, qt/qscilexerhtml.h, + qt/qscilexeridl.h, qt/qscilexerjava.h, qt/qscilexerjavascript.h, + qt/qscilexerlua.h, qt/qscilexermakefile.h, qt/qscilexerperl.h, + qt/qscilexerpov.h, qt/qscilexerproperties.h, qt/qscilexerpython.h, + qt/qscilexerruby.h, qt/qscilexersql.h, qt/qscilexertex.h, + qt/qscilexervhdl.h, qt/qscimacro.h, qt/qsciprinter.h, + qt/qsciscintilla.h, qt/qsciscintillabase.h: + Made the recent portabilty changes Mac specific as AIX has a problem + with them. + [0de605d4079f] + +2007-09-16 phil + + * qt/qscilexer.cpp: + A lexer's default colour, paper and font are now written to and read + from the settings. + [45277fc76ace] + +2007-09-15 phil + + * lib/README.doc, qt/qsciapis.h, qt/qscicommand.h, + qt/qscicommandset.h, qt/qscidocument.h, qt/qsciglobal.h, + qt/qscilexer.h, qt/qscilexerbash.h, qt/qscilexerbatch.h, + qt/qscilexercmake.h, qt/qscilexercpp.h, qt/qscilexercsharp.h, + qt/qscilexercss.h, qt/qscilexerd.h, qt/qscilexerdiff.h, + qt/qscilexerhtml.h, qt/qscilexeridl.h, qt/qscilexerjava.h, + qt/qscilexerjavascript.h, qt/qscilexerlua.h, qt/qscilexermakefile.h, + qt/qscilexerperl.h, qt/qscilexerpov.h, qt/qscilexerproperties.h, + qt/qscilexerpython.h, qt/qscilexerruby.h, qt/qscilexersql.h, + qt/qscilexertex.h, qt/qscilexervhdl.h, qt/qscimacro.h, + qt/qsciprinter.h, qt/qsciscintilla.h, qt/qsciscintillabase.h: + Fixed the MacOS build problems when using the binary installer + version of Qt. + [e059a923a447] + + * lib/LICENSE.commercial.short, qt/PlatQt.cpp: + Added the missing WaitMouseMoved() implementation on MacOS. + [78d1c8fc37c0] + +2007-09-10 phil + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + QsciScintilla::setFont() now calls QWidget::setFont() so that font() + returns the expected value. + [fd4f577c60ea] + +2007-09-02 phil + + * qt/qsciscintilla.cpp: + Fixed problems which the font size of STYLE_DEFAULT not being + updated when the font of style 0 was changed. Hopefully this fixes + the problems with edge columns and indentation guides. + [ddeccb6f64a0] + +2007-08-12 phil + + * Makefile, lib/LICENSE.commercial.short, lib/LICENSE.gpl.short, + qt/qscintilla.pro: + Applied .pro file fix from Dirk Mueller to add a proper install + rule. + [a3a2e49f1042] + +2007-07-22 phil + + * qt/qscilexer.cpp: + Made sure that the backgound colour of areas of the widget with no + text is updated when QsciLexer.setDefaultPaper() is called. + [065558d2430b] + +2007-07-09 phil + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Explicitly set the style for STYLE_DEFAULT when setting a lexer. + [a95fc3357771] + +2007-06-30 phil + + * Python/sip/qsciscintillabase.sip, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/index.html, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile, gtk/scintilla.mak, + include/Accessor.h, include/HFacer.py, include/KeyWords.h, + include/Platform.h, include/PropSet.h, include/SString.h, + include/SciLexer.h, include/Scintilla.h, include/Scintilla.iface, + include/WindowAccessor.h, macosx/PlatMacOSX.cxx, + macosx/PlatMacOSX.h, macosx/QuartzTextLayout.h, + macosx/QuartzTextStyle.h, macosx/QuartzTextStyleAttribute.h, + macosx/SciTest/English.lproj/InfoPlist.strings, + macosx/SciTest/English.lproj/main.nib/classes.nib, + macosx/SciTest/English.lproj/main.nib/info.nib, + macosx/SciTest/English.lproj/main.nib/objects.xib, + macosx/SciTest/Info.plist, + macosx/SciTest/SciTest.xcode/project.pbxproj, + macosx/SciTest/SciTest_Prefix.pch, macosx/SciTest/main.cpp, + macosx/SciTest/version.plist, macosx/ScintillaCallTip.cxx, + macosx/ScintillaCallTip.h, macosx/ScintillaListBox.cxx, + macosx/ScintillaListBox.h, macosx/ScintillaMacOSX.cxx, + macosx/ScintillaMacOSX.h, macosx/TCarbonEvent.cxx, + macosx/TCarbonEvent.h, macosx/TRect.h, macosx/TView.cxx, + macosx/TView.h, macosx/deps.mak, macosx/makefile, + qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro, + qt/qsciscintillabase.h, src/AutoComplete.cxx, src/AutoComplete.h, + src/CallTip.cxx, src/CallTip.h, src/CellBuffer.cxx, + src/CellBuffer.h, src/CharacterSet.h, src/ContractionState.cxx, + src/ContractionState.h, src/Decoration.cxx, src/Decoration.h, + src/Document.cxx, src/Document.h, src/DocumentAccessor.cxx, + src/DocumentAccessor.h, src/Editor.cxx, src/Editor.h, + src/ExternalLexer.cxx, src/ExternalLexer.h, src/Indicator.cxx, + src/Indicator.h, src/KeyMap.cxx, src/KeyMap.h, src/KeyWords.cxx, + src/LexAPDL.cxx, src/LexAU3.cxx, src/LexAVE.cxx, src/LexAda.cxx, + src/LexAsm.cxx, src/LexAsn1.cxx, src/LexBaan.cxx, src/LexBash.cxx, + src/LexBasic.cxx, src/LexBullant.cxx, src/LexCLW.cxx, + src/LexCPP.cxx, src/LexCSS.cxx, src/LexCaml.cxx, src/LexCmake.cxx, + src/LexConf.cxx, src/LexCrontab.cxx, src/LexCsound.cxx, + src/LexD.cxx, src/LexEScript.cxx, src/LexEiffel.cxx, + src/LexErlang.cxx, src/LexFlagship.cxx, src/LexForth.cxx, + src/LexFortran.cxx, src/LexGAP.cxx, src/LexGen.py, + src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexHaskell.cxx, + src/LexInno.cxx, src/LexKix.cxx, src/LexLisp.cxx, src/LexLout.cxx, + src/LexLua.cxx, src/LexMMIXAL.cxx, src/LexMPT.cxx, src/LexMSSQL.cxx, + src/LexMatlab.cxx, src/LexMetapost.cxx, src/LexNsis.cxx, + src/LexOpal.cxx, src/LexOthers.cxx, src/LexPB.cxx, src/LexPLM.cxx, + src/LexPOV.cxx, src/LexPS.cxx, src/LexPascal.cxx, src/LexPerl.cxx, + src/LexProgress.cxx, src/LexPython.cxx, src/LexRebol.cxx, + src/LexRuby.cxx, src/LexSQL.cxx, src/LexScriptol.cxx, + src/LexSmalltalk.cxx, src/LexSpecman.cxx, src/LexSpice.cxx, + src/LexTADS3.cxx, src/LexTCL.cxx, src/LexTeX.cxx, src/LexVB.cxx, + src/LexVHDL.cxx, src/LexVerilog.cxx, src/LexYAML.cxx, + src/LineMarker.cxx, src/LineMarker.h, src/Partitioning.h, + src/PositionCache.cxx, src/PositionCache.h, src/PropSet.cxx, + src/RESearch.cxx, src/RESearch.h, src/RunStyles.cxx, + src/RunStyles.h, src/SVector.h, src/ScintillaBase.cxx, + src/ScintillaBase.h, src/SplitVector.h, src/Style.cxx, src/Style.h, + src/StyleContext.cxx, src/StyleContext.h, src/UniConversion.cxx, + src/UniConversion.h, src/ViewStyle.cxx, src/ViewStyle.h, + src/WindowAccessor.cxx, src/XPM.cxx, src/XPM.h, + vcbuild/SciLexer.dsp, version.txt, win32/PlatWin.cxx, + win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/deps.mak, + win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak, + zipsrc.bat: + Merged Scintilla v1.74. + [04dee9c2424f] + + * Python/sip/qscilexerpython.sip, build.py, qt/qscilexer.cpp, + qt/qscilexerbash.cpp, qt/qscilexerpython.cpp, qt/qscilexerpython.h, + qt/qscintilla.pro: + Fixed comment folding in the Bash lexer. A style is properly + restored when read from QSettings. Removed ./Qsci from the qmake + INCLUDEPATH. Removed the Scintilla version number from generated + filenames. Used fully qualified enum names in the Python lexer so + that the QMetaObject is correct. + [6b27a5b211e0] + +2007-06-01 phil + + * NEWS: + Released as v2.1. + [9976edafc5c1] [2.1] + +2007-05-30 phil + + * Makefile: + Switched the internal build system to Qt v4.3.0. + [49284aa376ef] + + * NEWS, Python/configure.py, Python/sip/qscilexer.sip, + Python/sip/qscilexerbash.sip, Python/sip/qscilexerbatch.sip, + Python/sip/qscilexercmake.sip, Python/sip/qscilexercpp.sip, + Python/sip/qscilexercsharp.sip, Python/sip/qscilexercss.sip, + Python/sip/qscilexerd.sip, Python/sip/qscilexerdiff.sip, + Python/sip/qscilexerhtml.sip, Python/sip/qscilexeridl.sip, + Python/sip/qscilexerjavascript.sip, Python/sip/qscilexerlua.sip, + Python/sip/qscilexermakefile.sip, Python/sip/qscilexerperl.sip, + Python/sip/qscilexerpov.sip, Python/sip/qscilexerproperties.sip, + Python/sip/qscilexerpython.sip, Python/sip/qscilexerruby.sip, + Python/sip/qscilexersql.sip, Python/sip/qscilexertex.sip, + Python/sip/qscilexervhdl.sip, Python/sip/qscimodcommon.sip, + build.py, qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexerbash.cpp, + qt/qscilexerbash.h, qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, + qt/qscilexercmake.cpp, qt/qscilexercmake.h, qt/qscilexercpp.cpp, + qt/qscilexercpp.h, qt/qscilexercsharp.cpp, qt/qscilexercsharp.h, + qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerd.cpp, + qt/qscilexerd.h, qt/qscilexerdiff.cpp, qt/qscilexerdiff.h, + qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, qt/qscilexeridl.cpp, + qt/qscilexeridl.h, qt/qscilexerjavascript.cpp, + qt/qscilexerjavascript.h, qt/qscilexerlua.cpp, qt/qscilexerlua.h, + qt/qscilexermakefile.cpp, qt/qscilexermakefile.h, + qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp, + qt/qscilexerpov.h, qt/qscilexerproperties.cpp, + qt/qscilexerproperties.h, qt/qscilexerpython.cpp, + qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h, + qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp, + qt/qscilexertex.h, qt/qscilexervhdl.cpp, qt/qscilexervhdl.h, + qt/qscintilla.pro: + Lexers now remember their style settings. A lexer no longer has to + be the current lexer when changing a style's color, end-of-line + fill, font or paper. The color(), eolFill(), font() and paper() + methods of QsciLexer now return the current values for a style + rather than the default values. The setDefaultColor(), + setDefaultFont() and setDefaultPaper() methods of QsciLexer are no + longer slots and no longer virtual. The defaultColor(), + defaultFont() and defaultPaper() methods of QsciLexer are no longer + virtual. The color(), eolFill(), font() and paper() methods of all + QsciLexer derived classes (except for QsciLexer itself) have been + renamed defaultColor(), defaultEolFill(), defaultFont() and + defaultPaper() respectively. + [38aeee2a5a36] + +2007-05-28 phil + + * qt/qsciscintilla.cpp: + Set the number of style bits after we've set the lexer. + [84cda9af5b00] + + * Python/configure.py: + Fixed the handling of the %Timeline in the Python bindings. + [4b3146d1a236] + +2007-05-27 phil + + * Python/sip/qsciscintillabase.sip: + Updated the sub-class convertor code in the Python bindings for the + Cmake and VHDL lexers. + [6ab6570728a2] + +2007-05-26 phil + + * NEWS: + Updated the NEWS file. Released as v2.0. + [eec9914d8211] [2.0] + +2007-05-19 phil + + * Python/sip/qsciscintillabase.sip, qt/qsciscintilla.cpp, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Added basic input method support for Qt4 so that accented characters + now work. (Although there is still a font problem - at least a text + colour problem.) + [6b41f3694999] + + * qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintillabase.cpp: + Fixed building against Qt v3. + [9e9ba05de0fb] + +2007-05-17 phil + + * qt/qsciscintilla.cpp: + Fixed an autocompletion problem where an empty list was being + displayed. + [c7214274017c] + +2007-05-16 phil + + * qt/qsciscintilla.cpp: + Fixed a bug where autocompleting from the document was looking for + preceeding non-word characters as well. + [3ee6fd746d49] + + * qt/qsciscintilla.cpp: + Fixed silly typo that broke call tips. + [05213a8933c2] + +2007-05-09 phil + + * qt/qsciscintilla.cpp: + Fiex an autocompletion bug for words that only had preceding + whitespace. + [a8f3339e02c6] + + * Python/configure.py, lib/gen_python_api.py, + qsci/api/python/Python-2.4.api, qsci/api/python/Python-2.5.api, + qt/qsciapis.cpp, qt/qsciapis.h: + Call tips shouldn't now get confused with commas in the text after + the argument list. The included API files for Python should now be + complete and properly exclude anything beginning with an underscore. + The Python bindings configure.py can now install the API file in a + user supplied directory. + [c7e93dc918de] + + * qt/qscintilla_cs.qm, qt/qscintilla_fr.qm, qt/qscintilla_pt_br.qm, + qt/qscintilla_ru.qm: + Ran lrelease on the project. + [c3ce60078221] + + * Makefile, qt/qscintilla_cs.ts, qt/qscintilla_de.ts, + qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts: + Updated the internal build system to Qt v4.3.0rc1. Ran lupdate on + the project. + [6a86e71a4e26] + +2007-05-08 phil + + * Python/sip/qsciscintilla.sip, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Call tips will now show all the tips for a function (in all scopes) + if the current context/scope isn't known. + [cbebccc205c7] + + * Python/sip/qsciscintilla.sip, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added callTipsStyle() and setCallTipsStyle() to QsciScintilla. + [59d453b5da8c] + +2007-05-07 phil + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Autocompletion from documents should now work the same as QScintilla + v1. The only difference is that the list does not contain the + preceding context so it is consistent with autocompletion from APIs. + [46de719d325e] + + * qt/qscintilla.pro, qt/qscintilla_cs.qm, qt/qscintilla_cs.ts: + Added the Czech translations from Zdenek Bohm. + [139fd9aee405] + +2007-04-30 phil + + * Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added QsciScintilla::wordCharacters(). + [d6e56986a031] + +2007-04-29 phil + + * Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Added lots of consts to QsciScintilla getter methods. + [4aaffa8611ba] + + * Python/configure.py, Python/sip/qsciscintilla.sip, + qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qscintilla_fr.ts, + qt/qscintilla_pt_br.ts, qt/qscintilla_ru.ts, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added caseSensitive() and isWordCharacter() to QsciScintilla. + Updated translations from Detlev. + [64223bf97266] + +2007-04-10 phil + + * Python/sip/qscilexercmake.sip, Python/sip/qscilexervhdl.sip, + Python/sip/qscimodcommon.sip, qt/qscilexercmake.cpp, + qt/qscilexercmake.h, qt/qscilexervhdl.cpp, qt/qscilexervhdl.h, + qt/qscintilla.pro: + Added the QsciLexerVHDL class. + [10029339786f] + + * Python/sip/qscilexercmake.sip, Python/sip/qscimodcommon.sip, + qt/qscilexercmake.cpp, qt/qscilexercmake.h, qt/qscintilla.pro: + Added the QsciLexerCmake class. + [c1c911246f75] + +2007-04-09 phil + + * qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Finished call tip support. + [b8c717297392] + +2007-04-07 phil + + * qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Some refactoring in preparation for getting call tips working. + [6cb925653a80] + +2007-04-06 phil + + * qt/qsciscintilla.cpp: + Fixed autoindenting. + [8d7b93ee4d9e] + +2007-04-05 phil + + * qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp: + Fixed autocompletion so that it works with lexers that don't define + word separators, and lexers that are case insensitive. + [66634cf13685] + +2007-04-04 phil + + * qt/ScintillaQt.cpp, qt/qsciscintilla.cpp: + Fixed the horizontal scrollbar when word wrapping. + [021ea1fe8468] + +2007-04-03 phil + + * Python/configure.py, Python/sip/qsciscintillabase.sip, delcvs.bat, + doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/ScintillaRelated.html, + doc/index.html, gtk/makefile, gtk/scintilla.mak, include/SciLexer.h, + include/Scintilla.h, include/Scintilla.iface, qt/ScintillaQt.cpp, + qt/qscintilla.pro, qt/qsciscintillabase.h, src/Document.cxx, + src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx, + src/Editor.h, src/ExternalLexer.h, src/KeyWords.cxx, src/LexAU3.cxx, + src/LexBash.cxx, src/LexCmake.cxx, src/LexHTML.cxx, src/LexLua.cxx, + src/LexMSSQL.cxx, src/LexOthers.cxx, src/LexTADS3.cxx, + src/PropSet.cxx, src/RESearch.cxx, src/RESearch.h, + src/SplitVector.h, vcbuild/SciLexer.dsp, version.txt, + win32/PlatWin.cxx, win32/ScintRes.rc, win32/ScintillaWin.cxx, + win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak: + Merged Scintilla v1.73. + [2936af6fc62d] + +2007-03-18 phil + + * Makefile, Python/sip/qscilexerd.sip, Python/sip/qscimodcommon.sip, + Python/sip/qsciscintillabase.sip, qt/qscilexerd.cpp, + qt/qscilexerd.h, qt/qscintilla.pro, qt/qscintilla_de.qm, + qt/qscintilla_de.ts, qt/qscintilla_fr.ts, qt/qscintilla_pt_br.ts, + qt/qscintilla_ru.ts: + Switched the internal build system to Qt v4.2.3. Added the D lexer + support from Detlev. + [667e9b81ab4f] + +2007-03-04 phil + + * Makefile, example-Qt4/mainwindow.cpp, qt/PlatQt.cpp, + qt/qsciscintilla.cpp: + Fixed a bug in default font handling. Removed use of QIODevice::Text + in the example as it is unnecessary and a performance hog. Moved the + internal Qt3 build system to Qt v3.3.8. Auto-indentation should now + work (as badly) as it did with QScintilla v1. + [4d3ad4d1f295] + +2007-01-17 phil + + * Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h: + Added defaultPreparedName() to QsciAPIs. + [2a3c872122dd] + + * designer-Qt4/qscintillaplugin.cpp: + Fixed the Qt4 Designer plugin include file value. + [ea7cb8634ad2] + +2007-01-16 phil + + * Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h: + Added cancelPreparation() and apiPreparationCancelled() to QsciAPIs. + [2d7dd00e3bc0] + + * Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip, + build.py, lib/LICENSE.commercial.short, lib/LICENSE.gpl.short, + qt/qscintilla.pro, qt/qsciscintilla.cpp, qt/qsciscintilla.h, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Updated the copyright notices. Added selectionToEol() and + setSelectionToEol() to QsciScintilla. Added the other 1.72 changes + to the low level API. + [ddcf2d43cf31] + + * doc/SciBreak.jpg, doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/ScintillaRelated.html, + doc/index.html, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/makefile, + gtk/scintilla.mak, include/SciLexer.h, include/Scintilla.h, + include/Scintilla.iface, qt/ScintillaQt.h, src/CellBuffer.cxx, + src/CellBuffer.h, src/ContractionState.cxx, src/Document.cxx, + src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx, + src/Editor.h, src/KeyWords.cxx, src/LexCPP.cxx, src/LexD.cxx, + src/LexGen.py, src/LexHTML.cxx, src/LexInno.cxx, src/LexLua.cxx, + src/LexMatlab.cxx, src/LexNsis.cxx, src/LexOthers.cxx, + src/LexRuby.cxx, src/LexTADS3.cxx, src/Partitioning.h, + src/ScintillaBase.cxx, src/SplitVector.h, src/StyleContext.h, + src/ViewStyle.cxx, src/ViewStyle.h, vcbuild/SciLexer.dsp, + version.txt, win32/ScintRes.rc, win32/ScintillaWin.cxx, + win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak: + Merged Scintilla v1.72, but any new features are not yet exploited. + [dcdfde9050a2] + +2007-01-09 phil + + * Python/configure.py: + Fixed bug in configure.py when the -p flag wasn't specified. + [50dc69f2b20d] + +2007-01-04 phil + + * Python/configure.py, Python/sip/qscilexer.sip, qt/qsciapis.cpp, + qt/qsciapis.h, qt/qsciscintilla.cpp: + Backported to Qt v3. Note that this will probably break again in the + future when call tips are redone. + [3bcc4826fc73] + +2007-01-02 phil + + * Python/configure.py, lib/gen_python_api.py, + qsci/api/python/Python-2.4.api, qsci/api/python/Python-2.5.api, + qt/qsciapis.cpp: + Added the Python v2.4 and v2.5 API files. Added the generation of + the QScintilla2.api file. + [49beb92ca721] + +2007-01-01 phil + + * Python/sip/qsciscintilla.sip, qt/qscilexer.h, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added autoCompletionFillupsEnabled() and + setAutoCompletionFillupsEnabled() to QsciScintilla. Updated the + Python bindings. + [7aa946010e9d] + + * Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h: + Implemented loadPrepared() and savePrepared() in QsciAPIs. Added + isPrepared() to QsciAPIs. Updated the Python bindings. + [4c5e3d80fec7] + + * Python/sip/qsciapis.sip, qt/qsciapis.cpp, qt/qsciapis.h: + Added installAPIFiles() and stubs for loadPrepared() and + savePrepared() to QsciAPIs. + [93f4dd7222a1] + + * Python/sip/qsciapis.sip: + Added the missing qsciapis.sip file. + [064b524acc93] + + * Python/sip/qscilexer.sip, Python/sip/qscimodcommon.sip, + lib/qscintilla.dxy, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qscilexer.cpp, qt/qscilexer.h: + Fixed the generation of the API documentation. Added apis() and + setAPIs() to QsciLexer. Removed apiAdd(), apiClear(), apiLoad(), + apiRemove(), apiProcessingStarted() and apiProcessingFinished() from + QsciLexer. Added apiPreparationStarted() and + apiPreparationFinished() to QsciAPIs. Made QsciAPIs part of the API + again. Updated the Python bindings. + [851d133b12ff] + +2006-12-20 phil + + * Makefile, qt/qsciapis.cpp, qt/qsciapis.h: + Updated the internal build system to Qt v4.2.2. More work on auto- + completion. + [d4542220e7a2] + +2006-11-26 phil + + * qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + More work on the auto-completion code. + [37b2d0d2b154] + +2006-11-22 phil + + * qt/qsciapis.cpp, qt/qsciapis.h, qt/qscilexer.cpp, qt/qscilexer.h, + qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Changed the handling of case sensitivity in auto-completion lists. + Lexers now say if they are case sensitive. + [b1932fba61ec] + +2006-11-17 phil + + * Makefile, Python/configure.py, Python/sip/qscicommand.sip, + Python/sip/qscicommandset.sip, Python/sip/qscidocument.sip, + Python/sip/qscilexer.sip, Python/sip/qscilexerbash.sip, + Python/sip/qscilexerbatch.sip, Python/sip/qscilexercpp.sip, + Python/sip/qscilexercsharp.sip, Python/sip/qscilexercss.sip, + Python/sip/qscilexerdiff.sip, Python/sip/qscilexerhtml.sip, + Python/sip/qscilexeridl.sip, Python/sip/qscilexerjava.sip, + Python/sip/qscilexerjavascript.sip, Python/sip/qscilexerlua.sip, + Python/sip/qscilexermakefile.sip, Python/sip/qscilexerperl.sip, + Python/sip/qscilexerpov.sip, Python/sip/qscilexerproperties.sip, + Python/sip/qscilexerpython.sip, Python/sip/qscilexerruby.sip, + Python/sip/qscilexersql.sip, Python/sip/qscilexertex.sip, + Python/sip/qscimacro.sip, Python/sip/qsciprinter.sip, + Python/sip/qsciscintilla.sip, Python/sip/qsciscintillabase.sip, + TODO, build.py, designer-Qt3/qscintillaplugin.cpp, designer- + Qt4/qscintillaplugin.cpp, example-Qt3/application.cpp, example- + Qt4/mainwindow.cpp, qt/PlatQt.cpp, qt/ScintillaQt.cpp, + qt/qsciapis.cpp, qt/qsciapis.h, qt/qscicommand.cpp, + qt/qscicommand.h, qt/qscicommandset.cpp, qt/qscicommandset.h, + qt/qscidocument.cpp, qt/qscidocument.h, qt/qscilexer.cpp, + qt/qscilexer.h, qt/qscilexerbash.cpp, qt/qscilexerbash.h, + qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, qt/qscilexercpp.cpp, + qt/qscilexercpp.h, qt/qscilexercsharp.cpp, qt/qscilexercsharp.h, + qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerdiff.cpp, + qt/qscilexerdiff.h, qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, + qt/qscilexeridl.cpp, qt/qscilexeridl.h, qt/qscilexerjava.cpp, + qt/qscilexerjava.h, qt/qscilexerjavascript.cpp, + qt/qscilexerjavascript.h, qt/qscilexerlua.cpp, qt/qscilexerlua.h, + qt/qscilexermakefile.cpp, qt/qscilexermakefile.h, + qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp, + qt/qscilexerpov.h, qt/qscilexerproperties.cpp, + qt/qscilexerproperties.h, qt/qscilexerpython.cpp, + qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h, + qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp, + qt/qscilexertex.h, qt/qscimacro.cpp, qt/qscimacro.h, + qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciprinter.h, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h: + Fixed the name of the generated source packages. Reorganised so that + the header files are in a separate sub-directory. Updated the + designer plugins and examples for the changing in header file + structure. More work on autocompletion. Basic functionality is + there, but no support for the "current context" yet. + [312e74140bb8] + +2006-11-04 phil + + * designer-Qt4/qscintillaplugin.cpp: + Designer plugin fixes for Qt4 from DavidB. + [920f7af8bec6] + +2006-11-03 phil + + * qt/qscilexer.cpp: + Fixed QsciLexer::setPaper() so that it also sets the background + colour of the default style. + [fcab00732d97] + +2006-10-21 phil + + * Makefile, qt/qsciapis.cpp, qt/qsciapis.h, qt/qsciscintilla.cpp: + Switched the internal build system to Qt v3.3.7 and v4.2.1. + Portability fixes for Qt3. + [512b57958ea4] + +2006-10-20 phil + + * Makefile, build.py, include/Platform.h, lib/README.doc, + qt/PlatQt.cpp, qt/qscimacro.cpp, qt/qscintilla.pro, + qt/qsciscintilla.cpp: + Renamed the base package QScintilla2. Platform portability fixes + from Ulli. The qsci data directory is now installed (where API files + will be kept). + [2a61d65842fb] + +2006-10-13 phil + + * Python/sip/qsciscintilla.sip, qt/qscintilla.pro, + qt/qscintilla_pt_br.qm, qt/qscintilla_pt_br.ts, + qt/qscintilla_ptbr.qm, qt/qscintilla_ptbr.ts, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added QsciScintilla::linesChanged() from Detlev. Removed + QsciScintilla::markerChanged(). Renamed the Brazilian Portugese + translation files. + [5b23de72e063] + + * Makefile, Python/sip/qscilexer.sip, qt/ListBoxQt.cpp, + qt/ListBoxQt.h, qt/ScintillaQt.cpp, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qscilexer.cpp, qt/qscilexer.h, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + Added apiRemove(), apiProcessingStarted() and + apiProcessingFinished() to QsciLexer. + [ef2cb95b868a] + +2006-10-08 phil + + * qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Reset the text and paper colours and font when removing a lexer. + [08ac85b34d80] + + * qt/qsciscintilla.cpp: + Fixed Qt3 specific problem with most recent changes. + [e4ba06e01a1e] + +2006-10-06 phil + + * Python/sip/qsciapis.sip, Python/sip/qscilexer.sip, + Python/sip/qscimodcommon.sip, Python/sip/qsciscintilla.sip, + qt/ListBoxQt.cpp, qt/SciClasses.cpp, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qscilexer.cpp, qt/qscilexer.h, qt/qscilexerbash.cpp, + qt/qscilexerbash.h, qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, + qt/qscilexercpp.cpp, qt/qscilexercpp.h, qt/qscilexercsharp.h, + qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerdiff.cpp, + qt/qscilexerdiff.h, qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, + qt/qscilexeridl.h, qt/qscilexerjavascript.h, qt/qscilexerlua.cpp, + qt/qscilexerlua.h, qt/qscilexermakefile.cpp, qt/qscilexermakefile.h, + qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp, + qt/qscilexerpov.h, qt/qscilexerproperties.cpp, + qt/qscilexerproperties.h, qt/qscilexerpython.cpp, + qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h, + qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp, + qt/qscilexertex.h, qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Made QsciAPIs an internal class and instead added apiAdd(), + apiClear() and apiLoad() to QsciLexer. Replaced + setAutoCompletionStartCharacters() with + setAutoCompletionWordSeparators() in QsciScintilla. Removed + autoCompletionFillupsEnabled(), setAutoCompletionFillupsEnabled(), + setAutoCompletionAPIs() and setCallTipsAPIs() from QsciScintilla. + Added AcsNone to QsciScintilla::AutoCompletionSource. Horizontal + scrollbars are displayed as needed in autocompletion lists. Added + QsciScintilla::lexer(). Fixed setFont(), setColor(), setEolFill() + and setPaper() in QsciLexer so that they handle all styles as + documented. Removed all occurences of QString::null. Fixed the + problem with indentation guides not changing when the size of a + space changed. Added the QsciScintilla::markerChanged() signal. + Updated the Python bindings. + [9ae22e152365] + +2006-10-01 phil + + * qt/PlatQt.cpp: + Fixed a silly line drawing bug. + [0f9f5c22421a] + +2006-09-30 phil + + * qt/qscintilla.pro: + Fixes for building on Windows and MacOS/X. + [c16bc6aeba20] + +2006-09-29 phil + + * example-Qt4/application.pro, qt/PlatQt.cpp, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.cpp: + Fixed the documentation bug in QsciScintilla::insert(). Fixed the + mouse shape changing properly. Fixed the drawing of fold markers. + [08af64d93094] + +2006-09-23 phil + + * lib/README: + Improved the README for the pedants amongst us. + [683bdb9a84fc] + + * designer-Qt4/designer.pro, designer-Qt4/qscintillaplugin.cpp, + designer-Qt4/qscintillaplugin.h: + The Qt4 Designer plugin now loads - thanks to DavidB. + [feb5a3618df6] + +2006-09-16 phil + + * build.py, designer-Qt3/designer.pro, designer- + Qt3/qscintillaplugin.cpp, designer-Qt4/designer.pro, designer- + Qt4/qscintillaplugin.cpp, designer/designer.pro, + designer/qscintillaplugin.cpp, lib/README.doc, qt/qsciscintilla.h: + Fixed the Qt3 designer plugin. Added the Qt4 designer plugin based + on Andrius Ozelis's work. (But it doesn't load for me - does anybody + else have a problem?) + [3a0873ed5ff0] + +2006-09-09 phil + + * Python/sip/qsciscintilla.sip, qt/qsciscintilla.cpp, + qt/qsciscintilla.h: + QsciScintilla's setFont(), setColor() and setPaper() now work as + expected when there is no lexer (and have no effect if there is a + lexer). + [65cc713d9ecb] + +2006-08-28 phil + + * qt/ListBoxQt.cpp, qt/PlatQt.cpp: + Fixed a crash when double-clicking on an auto-completion list entry. + [d8eecfc59ca2] + +2006-08-27 phil + + * Python/sip/qsciscintillabase.sip, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/index.html, gtk/Converter.h, gtk/PlatGTK.cxx, + gtk/ScintillaGTK.cxx, qt/ScintillaQt.cpp, qt/qsciscintillabase.h, + src/Editor.cxx, src/LexCPP.cxx, src/LexPerl.cxx, src/LexVB.cxx, + src/StyleContext.h, version.txt, win32/ScintRes.rc, + win32/ScintillaWin.cxx: + Merged Scintilla v1.71. The SCN_DOUBLECLICK() signal now passes the + line and position of the click. + [81c852fed943] + +2006-08-17 phil + + * Python/sip/qsciscintilla.sip, qt/ScintillaQt.cpp: + Fixed pasting when Unicode mode is set. + [9d4a7ccef6f4] + + * build.py: + Fixed the internal build system leaving SVN remnants around. + [96c36a0e94ac] + +2006-07-30 phil + + * NEWS, Python/sip/qsciscintilla.sip, qt/qscicommand.h, + qt/qscicommandset.h, qt/qsciscintilla.cpp, qt/qsciscintilla.h: + Added autoCompletionFillupsEnabled() and + setAutoCompletionFillupsEnabled() to QsciScintilla. Don't auto- + complete numbers. Removed QsciCommandList. + [e9886e5da7c3] + +2006-07-29 phil + + * lib/README.doc, qt/PlatQt.cpp: + Debugged the Qt3 backport - all seems to work. + [1e743e050599] + + * Python/configure.py, Python/sip/qscimod3.sip, + Python/sip/qsciscintillabase.sip, Python/sip/qsciscintillabase4.sip, + build.py, lib/README, lib/README.doc, lib/qscintilla.dxy, + qt/qsciscintillabase.h: + The PyQt3 bindings now work. Updated the documentation and build + system for both Qt3 and Qt4. + [f4fa8a9a35c0] + +2006-07-28 phil + + * Python/sip/qscimodcommon.sip, Python/sip/qsciscintillabase4.sip, + Python/sip/qscitypes.sip, example-Qt3/application.cpp, example- + Qt3/application.h, example-Qt3/application.pro, qt/qscicommand.cpp, + qt/qscicommandset.cpp, qt/qscidocument.cpp, qt/qscimacro.cpp, + qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciscintilla.cpp, + qt/qsciscintilla.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h, qt/qscitypes.h: + Backed out the QscoTypes namespace now that the Qt3/4 source code + has been consolidated. + [372c37fa8b9c] + + * qt/qscintilla_de.ts, qt/qscintilla_fr.ts, qt/qscintilla_ptbr.ts, + qt/qscintilla_ru.ts, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h, qt/qsciscintillabase3.cpp, + qt/qsciscintillabase3.h, qt/qsciscintillabase4.cpp, + qt/qsciscintillabase4.h: + Integated the Qt3 and Qt4 source files. + [4ee1fcf04cd9] + + * Makefile, build.py, lib/README.doc, lib/qscintilla.dxy, + qt/qscintilla.pro, qt/qsciscintillabase.h, + qt/qsciscintillabase3.cpp, qt/qsciscintillabase3.h, + qt/qsciscintillabase4.cpp, qt/qsciscintillabase4.h: + The Qt3 port now compiles, but otherwise untested. + [da227e07e729] + + * Python/sip/qscimacro.sip, lib/README.doc, lib/qscintilla.dxy, + qt/PlatQt.cpp, qt/qscilexermakefile.cpp, qt/qscimacro.cpp, + qt/qscimacro.h, qt/qscintilla.pro, qt/qsciscintillabase.h, + qt/qsciscintillabase3.cpp, qt/qsciscintillabase3.h, + qt/qsciscintillabase4.cpp, qt/qsciscintillabase4.h: + Changes to QsciMacro so that it has a more consistent API across Qt3 + and Qt4. Backported to Qt3 - doesn't yet build because Qt3 qmake + doesn't understand the preprocessor. + [910b415ec4a8] + +2006-07-27 phil + + * build.py, designer/qscintillaplugin.cpp, example-Qt3/README, + example-Qt4/README, lib/README, lib/README.doc, lib/qscintilla.dxy, + qt/qscintilla.pro: + Updated the documentation. + [7774f3e87003] + +2006-07-26 phil + + * Makefile, Python/configure.py, Python/qsciapis.sip, + Python/qscicommand.sip, Python/qscicommandset.sip, + Python/qscidocument.sip, Python/qscilexer.sip, + Python/qscilexerbash.sip, Python/qscilexerbatch.sip, + Python/qscilexercpp.sip, Python/qscilexercsharp.sip, + Python/qscilexercss.sip, Python/qscilexerdiff.sip, + Python/qscilexerhtml.sip, Python/qscilexeridl.sip, + Python/qscilexerjava.sip, Python/qscilexerjavascript.sip, + Python/qscilexerlua.sip, Python/qscilexermakefile.sip, + Python/qscilexerperl.sip, Python/qscilexerpov.sip, + Python/qscilexerproperties.sip, Python/qscilexerpython.sip, + Python/qscilexerruby.sip, Python/qscilexersql.sip, + Python/qscilexertex.sip, Python/qscimacro.sip, Python/qscimod4.sip, + Python/qscimodcommon.sip, Python/qsciprinter.sip, + Python/qsciscintilla.sip, Python/qsciscintillabase4.sip, + Python/qscitypes.sip, Python/sip/qsciapis.sip, + Python/sip/qscicommand.sip, Python/sip/qscicommandset.sip, + Python/sip/qscidocument.sip, Python/sip/qscilexer.sip, + Python/sip/qscilexerbash.sip, Python/sip/qscilexerbatch.sip, + Python/sip/qscilexercpp.sip, Python/sip/qscilexercsharp.sip, + Python/sip/qscilexercss.sip, Python/sip/qscilexerdiff.sip, + Python/sip/qscilexerhtml.sip, Python/sip/qscilexeridl.sip, + Python/sip/qscilexerjava.sip, Python/sip/qscilexerjavascript.sip, + Python/sip/qscilexerlua.sip, Python/sip/qscilexermakefile.sip, + Python/sip/qscilexerperl.sip, Python/sip/qscilexerpov.sip, + Python/sip/qscilexerproperties.sip, Python/sip/qscilexerpython.sip, + Python/sip/qscilexerruby.sip, Python/sip/qscilexersql.sip, + Python/sip/qscilexertex.sip, Python/sip/qscimacro.sip, + Python/sip/qscimod4.sip, Python/sip/qscimodcommon.sip, + Python/sip/qsciprinter.sip, Python/sip/qsciscintilla.sip, + Python/sip/qsciscintillabase4.sip, Python/sip/qscitypes.sip, + build.py, lib/LICENSE.edu, lib/LICENSE.edu.short, lib/README.MacOS: + Changed the build system to add the Python bindings. + [8a56c38c418b] + + * Python/configure.py, Python/qscicommandset.sip, + Python/qscilexerruby.sip, Python/qscilexertex.sip, + Python/qscimod4.sip, Python/qsciscintilla.sip, + Python/qsciscintillabase4.sip, Python/qscitypes.sip: + Debugged the Python bindings - not yet part of the snapshots. + [8e348d9c7d38] + +2006-07-25 phil + + * Python/qsciapis.sip, Python/qscicommand.sip, + Python/qscicommandset.sip, Python/qscidocument.sip, + Python/qscilexer.sip, Python/qscilexerbash.sip, + Python/qscilexerbatch.sip, Python/qscilexercpp.sip, + Python/qscilexercsharp.sip, Python/qscilexercss.sip, + Python/qscilexerdiff.sip, Python/qscilexerhtml.sip, + Python/qscilexeridl.sip, Python/qscilexerjava.sip, + Python/qscilexerjavascript.sip, Python/qscilexerlua.sip, + Python/qscilexermakefile.sip, Python/qscilexerperl.sip, + Python/qscilexerpov.sip, Python/qscilexerproperties.sip, + Python/qscilexerpython.sip, Python/qscilexerruby.sip, + Python/qscilexersql.sip, Python/qscilexertex.sip, + Python/qscimacro.sip, Python/qscimod4.sip, Python/qscimodcommon.sip, + Python/qsciprinter.sip, Python/qsciscintilla.sip, + Python/qsciscintillabase4.sip, Python/qscitypes.sip, qt/qsciapis.h, + qt/qsciglobal.h, qt/qscilexer.h, qt/qscilexerbash.h, + qt/qscilexercpp.h, qt/qscilexerperl.h, qt/qscilexerpython.h, + qt/qscilexersql.h, qt/qsciprinter.h, qt/qsciscintilla.h: + Ported the .sip files from v1. (Not yet part of the snapshot.) + [c03807f9fbab] + + * Makefile, qt/qscintilla-Qt4.pro, qt/qscintilla.pro: + The .pro file should now work with both Qt v3 and v4. + [c99aec4ce73d] + + * Makefile, qt/qscintilla-Qt4.pro, qt/qscintilla.pro, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h, + qt/qsciscintillabase4.cpp, qt/qsciscintillabase4.h: + Some file reorganisation for when the backport to Qt3 is done. + [c97fb1bdc0e5] + + * qt/qscicommand.cpp, qt/qscicommandset.cpp, qt/qscidocument.cpp, + qt/qscimacro.cpp, qt/qscintilla.pro, qt/qsciprinter.cpp, + qt/qsciscintilla.cpp, qt/qsciscintilla.h, qt/qsciscintillabase.cpp, + qt/qsciscintillabase.h, qt/qscitypes.h: + Moved the Scintilla API enums out of QsciScintillaBase and into the + new QsciTypes namespace. + [6de0ac19e4df] + + * qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Triple clicking now works. + [8ef632d89147] + +2006-07-23 phil + + * qt/qsciscintillabase.cpp: + Fixed incorrect selection after dropping text. + [4c62275c39f4] + + * qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qsciscintillabase.cpp: + Dropping text seems (mostly) to work. + [7acc97948229] + +2006-07-22 phil + + * qt/PlatQt.cpp, qt/ScintillaQt.cpp, qt/ScintillaQt.h, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Scrollbars now work. The context menu now works. The clipboard and + mouse selection now works. Dragging to external windows now works + (but not dropping). + [73995ec258cd] + +2006-07-18 phil + + * example-Qt4/mainwindow.cpp, example-Qt4/mainwindow.h, qt/PlatQt.cpp, + qt/qextscintillalexerbash.cxx, qt/qextscintillalexerbash.h, + qt/qextscintillalexerbatch.cxx, qt/qextscintillalexerbatch.h, + qt/qextscintillalexercpp.cxx, qt/qextscintillalexercpp.h, + qt/qextscintillalexercsharp.cxx, qt/qextscintillalexercsharp.h, + qt/qextscintillalexercss.cxx, qt/qextscintillalexercss.h, + qt/qextscintillalexerdiff.cxx, qt/qextscintillalexerdiff.h, + qt/qextscintillalexerhtml.cxx, qt/qextscintillalexerhtml.h, + qt/qextscintillalexeridl.cxx, qt/qextscintillalexeridl.h, + qt/qextscintillalexerjava.cxx, qt/qextscintillalexerjava.h, + qt/qextscintillalexerjavascript.cxx, + qt/qextscintillalexerjavascript.h, qt/qextscintillalexerlua.cxx, + qt/qextscintillalexerlua.h, qt/qextscintillalexermakefile.cxx, + qt/qextscintillalexermakefile.h, qt/qextscintillalexerperl.cxx, + qt/qextscintillalexerperl.h, qt/qextscintillalexerpov.cxx, + qt/qextscintillalexerpov.h, qt/qextscintillalexerproperties.cxx, + qt/qextscintillalexerproperties.h, qt/qextscintillalexerpython.cxx, + qt/qextscintillalexerpython.h, qt/qextscintillalexerruby.cxx, + qt/qextscintillalexerruby.h, qt/qextscintillalexersql.cxx, + qt/qextscintillalexersql.h, qt/qextscintillalexertex.cxx, + qt/qextscintillalexertex.h, qt/qextscintillamacro.cxx, + qt/qextscintillamacro.h, qt/qextscintillaprinter.cxx, + qt/qextscintillaprinter.h, qt/qsciapis.h, qt/qscicommand.h, + qt/qscilexer.h, qt/qscilexerbash.cpp, qt/qscilexerbash.h, + qt/qscilexerbatch.cpp, qt/qscilexerbatch.h, qt/qscilexercpp.cpp, + qt/qscilexercpp.h, qt/qscilexercsharp.cpp, qt/qscilexercsharp.h, + qt/qscilexercss.cpp, qt/qscilexercss.h, qt/qscilexerdiff.cpp, + qt/qscilexerdiff.h, qt/qscilexerhtml.cpp, qt/qscilexerhtml.h, + qt/qscilexeridl.cpp, qt/qscilexeridl.h, qt/qscilexerjava.cpp, + qt/qscilexerjava.h, qt/qscilexerjavascript.cpp, + qt/qscilexerjavascript.h, qt/qscilexerlua.cpp, qt/qscilexerlua.h, + qt/qscilexermakefile.cpp, qt/qscilexermakefile.h, + qt/qscilexerperl.cpp, qt/qscilexerperl.h, qt/qscilexerpov.cpp, + qt/qscilexerpov.h, qt/qscilexerproperties.cpp, + qt/qscilexerproperties.h, qt/qscilexerpython.cpp, + qt/qscilexerpython.h, qt/qscilexerruby.cpp, qt/qscilexerruby.h, + qt/qscilexersql.cpp, qt/qscilexersql.h, qt/qscilexertex.cpp, + qt/qscilexertex.h, qt/qscimacro.cpp, qt/qscimacro.h, + qt/qscintilla.pro, qt/qsciprinter.cpp, qt/qsciprinter.h, + qt/qsciscintilla.h: + Ported the rest of the API to Qt4. Finished porting the example to + Qt4. + [de0ede6bbcf5] + +2006-07-17 phil + + * qt/qextscintilla.cxx, qt/qextscintilla.h, qt/qextscintillaapis.cxx, + qt/qextscintillaapis.h, qt/qextscintillacommand.cxx, + qt/qextscintillacommand.h, qt/qextscintillacommandset.cxx, + qt/qextscintillacommandset.h, qt/qextscintilladocument.cxx, + qt/qextscintilladocument.h, qt/qextscintillalexer.cxx, + qt/qextscintillalexer.h, qt/qsciapis.cpp, qt/qsciapis.h, + qt/qscicommand.cpp, qt/qscicommand.h, qt/qscicommandset.cpp, + qt/qscicommandset.h, qt/qscidocument.cpp, qt/qscidocument.h, + qt/qscilexer.cpp, qt/qscilexer.h, qt/qscintilla.pro, + qt/qsciscintilla.cpp, qt/qsciscintilla.h: + More porting to Qt4 - just the lexers remaining. + [07158797bcf2] + + * qt/ListBoxQt.cpp, qt/PlatQt.cpp, qt/SciClasses.cpp, + qt/ScintillaQt.cpp, qt/qscintilla.pro, qt/qsciscintillabase.cpp: + Further Qt4 changes so that Q3Support is no longer needed. + [cb3ca2aee49e] + + * qt/ListBoxQt.cpp, qt/ListBoxQt.h, qt/PlatQt.cpp, qt/SciClasses.cpp, + qt/SciClasses.h, qt/SciListBox.cxx, qt/SciListBox.h, + qt/ScintillaQt.cpp, qt/ScintillaQt.h, qt/qscintilla.pro, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Ported the auto-completion list implementation to Qt4. + [1d0d07f7ba3b] + +2006-07-16 phil + + * qt/PlatQt.cpp, qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Drawing now seems Ok. Keyboard support now seems Ok. Start of the + mouse support. + [20a223c3f57e] + +2006-07-12 phil + + * include/Platform.h, qt/PlatQt.cpp, qt/ScintillaQt.cpp: + Painting now seems to happen only within paint events - but + incorrectly. + [a60a10298391] + + * qt/PlatQt.cpp, qt/PlatQt.cxx, qt/ScintillaQt.cpp, + qt/ScintillaQt.cxx, qt/ScintillaQt.h, qt/qscintilla.pro: + Recoded the implementation of surfaces so that painters are only + active during paint events. Not yet debugged. + [d0d91ae8e514] + + * build.py, qt/PlatQt.cxx, qt/ScintillaQt.cxx, qt/ScintillaQt.h, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Recoded the handling of key presses so that it doesn't use any Qt3 + specific features and should be backported to QScintilla v1. It also + should work better in Unicode mode. + [c2b96d686ee6] + +2006-07-11 phil + + * Makefile, build.py, example-Qt3/README, example-Qt3/application.cpp, + example-Qt3/application.h, example-Qt3/application.pro, example- + Qt3/fileopen.xpm, example-Qt3/fileprint.xpm, example- + Qt3/filesave.xpm, example-Qt3/main.cpp, example-Qt4/README, example- + Qt4/application.pro, example-Qt4/application.qrc, example- + Qt4/images/copy.png, example-Qt4/images/cut.png, example- + Qt4/images/new.png, example-Qt4/images/open.png, example- + Qt4/images/paste.png, example-Qt4/images/save.png, example- + Qt4/main.cpp, example-Qt4/mainwindow.cpp, example-Qt4/mainwindow.h, + example/README, example/application.cpp, example/application.h, + example/application.pro, example/fileopen.xpm, + example/fileprint.xpm, example/filesave.xpm, example/main.cpp, + qt/PlatQt.cxx, qt/SciListBox.cxx, qt/SciListBox.h, + qt/ScintillaQt.cxx, qt/ScintillaQt.h, qt/qextscintilla.cxx, + qt/qextscintillabase.cxx, qt/qextscintillabase.h, + qt/qextscintillaglobal.h, qt/qsciglobal.h, qt/qscintilla.pro, + qt/qsciscintillabase.cpp, qt/qsciscintillabase.h: + Whole raft of changes starting QScintilla2. + [7f0bd20f2f83] + +2006-07-09 phil + + * qt/qscintilla_de.qm, qt/qscintilla_de.ts, qt/qscintilla_fr.ts, + qt/qscintilla_ptbr.ts, qt/qscintilla_ru.ts: + Updated translations from Detlev. + [c04c167d802e] + +2006-07-08 phil + + * NEWS, qt/qextscintilla.cxx, qt/qextscintilla.h: + Added QextScintilla::isCallTipActive(). + [1f7dcb40db25] + + * lib/LICENSE.commercial.short, lib/LICENSE.edu.short, + lib/LICENSE.gpl.short, qt/qextscintilla.cxx: + Changed the autoindentation to be slightly cleverer when handling + Python. If a lexer does not define block end words then a block + start word is ignored unless it is the last significant word in a + line. + [d5813c13f5da] + +2006-07-02 phil + + * qt/PlatQt.cxx: + Possibly fixed a possible problem with double clicking under + Windows. + [271141bb2b43] + + * NEWS, qt/ScintillaQt.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h: + Added setWrapVisualFlags(), WrapMode::WrapCharacter, WrapVisualFlag + to QextScintilla. The layout cache is now set according to the wrap + mode. Setting a wrap mode now disables the horizontal scrollbar. + [a498b86e7999] + +2006-07-01 phil + + * NEWS, qt/qextscintilla.cxx, qt/qextscintilla.h: + Added cancelList(), firstVisibleLine(), isListActive(), + showUserList(), textHeight() and userListActivated() to + QextScintilla. + [058c7be4bdfe] + + * qt/qextscintilla.cxx: + Auto-completion changed so that subsequent start characters cause + the list to be re-created (containing a subset of the previous one). + [5b534658e638] + +2006-06-28 phil + + * NEWS, qt/SciListBox.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h, + qt/qextscintillaapis.cxx, qt/qextscintillaapis.h, + qt/qextscintillalexer.cxx, qt/qextscintillalexer.h, + qt/qextscintillalexerpython.cxx, qt/qextscintillalexerpython.h: + Handle Key_Enter the same as Key_Return. QextScintilla::foldAll() + can now optionally fold all child fold points. Added + autoCompleteFromAll() and setAutoCompletionStartCharacters() to + QextScintilla. Vastly improved the way auto-completion and call tips + work. + [8b0472aaed61] + +2006-06-25 phil + + * qt/qextscintilla.cxx, qt/qextscintillabase.cxx, + qt/qextscintillalexer.cxx: + The default fore and background colours now default to the + application palette rather than being hardcoded to black and white. + [6cb6b5bef5fc] + + * NEWS, qt/qextscintilla.cxx, qt/qextscintilla.h, + qt/qextscintillalexer.cxx, qt/qextscintillalexer.h: + Added defaultColor() and setDefaultColor() to QextScintillaLexer. + Added color() and setColor() to QextScintilla. Renamed eraseColor() + and setEraseColor() to paper() and setPaper() in QextScintilla. + [c1fbfc192235] + + * NEWS, qt/SciListBox.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h, + qt/qextscintillaapis.cxx, qt/qextscintillaapis.h, + qt/qextscintillabase.h, qt/qextscintillalexer.cxx, + qt/qextscintillalexer.h: + Added a couple of extra SendScintilla overloads. One is needed for + PyQt because of the change in SIP's handling of unsigned values. The + other is needed to solve C++ problems caused by the first. + Autocompletion list entries from APIs may now contain spaces. Added + defaultPaper() and setDefaultPaper() to QextScintillaLexer. Added + eraseColor() and setEraseColor() to QextScintilla. + [34f527ca0f99] + +2006-06-21 phil + + * qt/qextscintilla.cxx, qt/qextscintillalexer.cxx, + qt/qextscintillalexer.h, qt/qextscintillalexerhtml.cxx, + qt/qextscintillalexerhtml.h: + Removed QextScintillaLexer::styleBits() now that + SCI_GETSTYLEBITSNEEDED is available. + [1c6837500560] + + * NEWS, qt/PlatQt.cxx, qt/qextscintilla.cxx, qt/qextscintilla.h: + QextScintilla::setSelectionBackgroundColor(), + QextScintilla::setMarkerBackgroundColor() and + QextScintilla::setCaretLineBackgroundColor() now respect the alpha + component. + [48bae1fffe85] + +2006-06-20 phil + + * NEWS, doc/ScintillaDoc.html, doc/ScintillaDownload.html, + doc/ScintillaHistory.html, doc/index.html, gtk/Converter.h, + gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, include/Scintilla.h, + include/Scintilla.iface, qt/qextscintillabase.h, + qt/qextscintillalexerpython.h, src/Editor.cxx, src/Editor.h, + src/ViewStyle.cxx, src/ViewStyle.h, version.txt, win32/ScintRes.rc, + win32/ScintillaWin.cxx: + Merged Scintilla v1.70. + [03ac3edd5dd2] + +2006-06-19 phil + + * qt/qextscintillabase.h, qt/qextscintillalexerlua.h, + qt/qextscintillalexerruby.cxx, qt/qextscintillalexerruby.h, + qt/qextscintillalexersql.h: + Significant, and incompatible, updates to the QextScintillaLexerRuby + class. + [0484fe132d0c] + + * src/PropSet.cxx: + Fix for qsort helpers linkage from Ulli. (Patch sent upstream.) + [2307adf67045] + +2006-06-18 phil + + * qt/qextscintillalexerpython.cxx, qt/qextscintillalexerpython.h: + Ctrl-D is now duplicate selection rather than duplicate line. + Updated the Python lexer to add support for hightlighted identifiers + and decorators. + [52ca24a722ac] + + * qt/qextscintillabase.h, qt/qextscintillacommandset.cxx, + qt/qextscintillalexer.h, qt/qextscintillalexerbash.h, + qt/qextscintillalexerbatch.h, qt/qextscintillalexercpp.h, + qt/qextscintillalexercsharp.h, qt/qextscintillalexercss.h, + qt/qextscintillalexerhtml.h, qt/qextscintillalexeridl.h, + qt/qextscintillalexerjava.h, qt/qextscintillalexerjavascript.h, + qt/qextscintillalexerlua.h, qt/qextscintillalexerperl.h, + qt/qextscintillalexerpov.h, qt/qextscintillalexerpython.h, + qt/qextscintillalexerruby.h, qt/qextscintillalexersql.h, + qt/qextscintillalexertex.h, qt/qscintilla.pro: + Added the Scintilla 1.69 extensions to the low level API. + [e89b98aaaa33] + + * .repoman, build.py, doc/Icons.html, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/ScintillaToDo.html, doc/index.html, + gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, gtk/deps.mak, gtk/makefile, + gtk/scintilla.mak, include/HFacer.py, include/KeyWords.h, + include/Platform.h, include/PropSet.h, include/SciLexer.h, + include/Scintilla.h, include/Scintilla.iface, + include/ScintillaWidget.h, qt/PlatQt.cxx, qt/ScintillaQt.h, + qt/qscintilla.pro, src/CallTip.cxx, src/CallTip.h, + src/CellBuffer.cxx, src/CellBuffer.h, src/CharClassify.cxx, + src/CharClassify.h, src/ContractionState.cxx, src/Document.cxx, + src/Document.h, src/DocumentAccessor.cxx, src/Editor.cxx, + src/Editor.h, src/ExternalLexer.cxx, src/Indicator.cxx, + src/KeyMap.cxx, src/KeyWords.cxx, src/LexAU3.cxx, src/LexBash.cxx, + src/LexBasic.cxx, src/LexCPP.cxx, src/LexCaml.cxx, + src/LexCsound.cxx, src/LexEiffel.cxx, src/LexGen.py, + src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexInno.cxx, + src/LexLua.cxx, src/LexMSSQL.cxx, src/LexOpal.cxx, + src/LexOthers.cxx, src/LexPOV.cxx, src/LexPython.cxx, + src/LexRuby.cxx, src/LexSQL.cxx, src/LexSpice.cxx, src/LexTCL.cxx, + src/LexVB.cxx, src/LineMarker.h, src/PropSet.cxx, src/RESearch.cxx, + src/RESearch.h, src/ScintillaBase.cxx, src/StyleContext.h, + src/ViewStyle.cxx, src/ViewStyle.h, src/XPM.cxx, + vcbuild/SciLexer.dsp, version.txt, win32/PlatWin.cxx, + win32/ScintRes.rc, win32/ScintillaWin.cxx, win32/deps.mak, + win32/makefile, win32/scintilla.mak, win32/scintilla_vc6.mak: + Removed the redundant .repoman file. Synced with Scintilla v1.69 + with only the minimal changes needed to compile it. + [6774f137c5a1] + +2006-06-17 phil + + * .repoman, License.txt, Makefile, NEWS, README, TODO, bin/empty.txt, + build.py, delbin.bat, delcvs.bat, designer/designer.pro, + designer/qscintillaplugin.cpp, doc/Design.html, doc/Lexer.txt, + doc/SciBreak.jpg, doc/SciCoding.html, doc/SciRest.jpg, + doc/SciTEIco.png, doc/SciWord.jpg, doc/ScintillaDoc.html, + doc/ScintillaDownload.html, doc/ScintillaHistory.html, + doc/ScintillaRelated.html, doc/ScintillaToDo.html, + doc/ScintillaUsage.html, doc/Steps.html, doc/index.html, + example/README, example/application.cpp, example/application.h, + example/application.pro, example/fileopen.xpm, + example/fileprint.xpm, example/filesave.xpm, example/main.cpp, + gtk/Converter.h, gtk/PlatGTK.cxx, gtk/ScintillaGTK.cxx, + gtk/deps.mak, gtk/makefile, gtk/scintilla-marshal.c, gtk/scintilla- + marshal.h, gtk/scintilla-marshal.list, gtk/scintilla.mak, + include/Accessor.h, include/Face.py, include/HFacer.py, + include/KeyWords.h, include/Platform.h, include/PropSet.h, + include/SString.h, include/SciLexer.h, include/Scintilla.h, + include/Scintilla.iface, include/ScintillaWidget.h, + include/WindowAccessor.h, lib/LICENSE.commercial, + lib/LICENSE.commercial.short, lib/LICENSE.edu, + lib/LICENSE.edu.short, lib/LICENSE.gpl, lib/LICENSE.gpl.short, + lib/README, lib/README.MacOS, lib/qscintilla.dxy, qt/PlatQt.cxx, + qt/SciListBox.cxx, qt/SciListBox.h, qt/ScintillaQt.cxx, + qt/ScintillaQt.h, qt/qextscintilla.cxx, qt/qextscintilla.h, + qt/qextscintillaapis.cxx, qt/qextscintillaapis.h, + qt/qextscintillabase.cxx, qt/qextscintillabase.h, + qt/qextscintillacommand.cxx, qt/qextscintillacommand.h, + qt/qextscintillacommandset.cxx, qt/qextscintillacommandset.h, + qt/qextscintilladocument.cxx, qt/qextscintilladocument.h, + qt/qextscintillaglobal.h, qt/qextscintillalexer.cxx, + qt/qextscintillalexer.h, qt/qextscintillalexerbash.cxx, + qt/qextscintillalexerbash.h, qt/qextscintillalexerbatch.cxx, + qt/qextscintillalexerbatch.h, qt/qextscintillalexercpp.cxx, + qt/qextscintillalexercpp.h, qt/qextscintillalexercsharp.cxx, + qt/qextscintillalexercsharp.h, qt/qextscintillalexercss.cxx, + qt/qextscintillalexercss.h, qt/qextscintillalexerdiff.cxx, + qt/qextscintillalexerdiff.h, qt/qextscintillalexerhtml.cxx, + qt/qextscintillalexerhtml.h, qt/qextscintillalexeridl.cxx, + qt/qextscintillalexeridl.h, qt/qextscintillalexerjava.cxx, + qt/qextscintillalexerjava.h, qt/qextscintillalexerjavascript.cxx, + qt/qextscintillalexerjavascript.h, qt/qextscintillalexerlua.cxx, + qt/qextscintillalexerlua.h, qt/qextscintillalexermakefile.cxx, + qt/qextscintillalexermakefile.h, qt/qextscintillalexerperl.cxx, + qt/qextscintillalexerperl.h, qt/qextscintillalexerpov.cxx, + qt/qextscintillalexerpov.h, qt/qextscintillalexerproperties.cxx, + qt/qextscintillalexerproperties.h, qt/qextscintillalexerpython.cxx, + qt/qextscintillalexerpython.h, qt/qextscintillalexerruby.cxx, + qt/qextscintillalexerruby.h, qt/qextscintillalexersql.cxx, + qt/qextscintillalexersql.h, qt/qextscintillalexertex.cxx, + qt/qextscintillalexertex.h, qt/qextscintillamacro.cxx, + qt/qextscintillamacro.h, qt/qextscintillaprinter.cxx, + qt/qextscintillaprinter.h, qt/qscintilla.pro, qt/qscintilla_de.qm, + qt/qscintilla_de.ts, qt/qscintilla_fr.qm, qt/qscintilla_fr.ts, + qt/qscintilla_ptbr.qm, qt/qscintilla_ptbr.ts, qt/qscintilla_ru.qm, + qt/qscintilla_ru.ts, src/AutoComplete.cxx, src/AutoComplete.h, + src/CallTip.cxx, src/CallTip.h, src/CellBuffer.cxx, + src/CellBuffer.h, src/ContractionState.cxx, src/ContractionState.h, + src/Document.cxx, src/Document.h, src/DocumentAccessor.cxx, + src/DocumentAccessor.h, src/Editor.cxx, src/Editor.h, + src/ExternalLexer.cxx, src/ExternalLexer.h, src/Indicator.cxx, + src/Indicator.h, src/KeyMap.cxx, src/KeyMap.h, src/KeyWords.cxx, + src/LexAPDL.cxx, src/LexAU3.cxx, src/LexAVE.cxx, src/LexAda.cxx, + src/LexAsm.cxx, src/LexAsn1.cxx, src/LexBaan.cxx, src/LexBash.cxx, + src/LexBasic.cxx, src/LexBullant.cxx, src/LexCLW.cxx, + src/LexCPP.cxx, src/LexCSS.cxx, src/LexCaml.cxx, src/LexConf.cxx, + src/LexCrontab.cxx, src/LexCsound.cxx, src/LexEScript.cxx, + src/LexEiffel.cxx, src/LexErlang.cxx, src/LexFlagship.cxx, + src/LexForth.cxx, src/LexFortran.cxx, src/LexGen.py, + src/LexGui4Cli.cxx, src/LexHTML.cxx, src/LexHaskell.cxx, + src/LexKix.cxx, src/LexLisp.cxx, src/LexLout.cxx, src/LexLua.cxx, + src/LexMMIXAL.cxx, src/LexMPT.cxx, src/LexMSSQL.cxx, + src/LexMatlab.cxx, src/LexMetapost.cxx, src/LexNsis.cxx, + src/LexOthers.cxx, src/LexPB.cxx, src/LexPOV.cxx, src/LexPS.cxx, + src/LexPascal.cxx, src/LexPerl.cxx, src/LexPython.cxx, + src/LexRebol.cxx, src/LexRuby.cxx, src/LexSQL.cxx, + src/LexScriptol.cxx, src/LexSmalltalk.cxx, src/LexSpecman.cxx, + src/LexTADS3.cxx, src/LexTeX.cxx, src/LexVB.cxx, src/LexVHDL.cxx, + src/LexVerilog.cxx, src/LexYAML.cxx, src/LineMarker.cxx, + src/LineMarker.h, src/PropSet.cxx, src/RESearch.cxx, src/RESearch.h, + src/SVector.h, src/SciTE.properties, src/ScintillaBase.cxx, + src/ScintillaBase.h, src/Style.cxx, src/Style.h, + src/StyleContext.cxx, src/StyleContext.h, src/UniConversion.cxx, + src/UniConversion.h, src/ViewStyle.cxx, src/ViewStyle.h, + src/WindowAccessor.cxx, src/XPM.cxx, src/XPM.h, tgzsrc, + vcbuild/SciLexer.dsp, version.txt, win32/Margin.cur, + win32/PlatWin.cxx, win32/PlatformRes.h, win32/SciTE.properties, + win32/ScintRes.rc, win32/Scintilla.def, win32/ScintillaWin.cxx, + win32/deps.mak, win32/makefile, win32/scintilla.mak, + win32/scintilla_vc6.mak, zipsrc.bat: + First import of QScintilla + [0521804cd44a] diff --git a/third_party/qscintilla/LICENSE b/third_party/qscintilla/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/third_party/qscintilla/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/third_party/qscintilla/NEWS b/third_party/qscintilla/NEWS new file mode 100644 index 0000000..ccd6e00 --- /dev/null +++ b/third_party/qscintilla/NEWS @@ -0,0 +1,604 @@ +v2.14.1 7th June 2023 + - Bug fixes. + +v2.14.0 24th April 2023 + - Added the QsciLexerAsm, QsciLexerMASM and QsciLexerNASM classes. + - Added the QsciLexerHex, QsciLexerIntelHex, QsciLexerSRec and + QsciLexerTekHex classes. + - Bug fixes. + +v2.13.4 6th December 2022 + - Added the .api files for Python v3.10 and v3.11. + - Bug fixes. + +v2.13.3 25th April 2022 + - Bug fixes. + +v2.13.2 15th March 2022 + - Bug fixes that only affect iOS. + +v2.13.1 12th October 2021 + - Documented how to build for multiple architectures on macOS. + - Bug fixes. + +v2.13.0 13th June 2021 + - Added the QsciPrinter::printRange() overload that uses a supplied QPainter + to render the pages. + - Improved the appearence of the auto-completion popup. + - Bug fixes. + +v2.12.1 4th March 2021 + - Packaging bug fixes. + +v2.12.0 23rd February 2021 + - Added support for Qt6. + - Removed support for Qt4 and Qt5 earlier than v5.11.0. + - sdists are now provided. + +v2.11.6 23rd November 2020 + - Added the --qsci-translations-dir option to sip-wheel. + - Added the .api file for Python v3.9. + - Build system changes. + - Bug fixes. + +v2.11.5 10th June 2020 + - The bundled .api files are now included in Python wheels if the + QScintilla.api file is enabled. + - Bug fixes. + +v2.11.4 19th December 2019 + - An administrative release with no code changes. + +v2.11.3 3rd November 2019 + - Added support for SIP v5. + - On macOS the install name of the C++ library is now relative to @rpath. + +v2.11.2 26th June 2019 + - Added QsciScintilla::findMatchingBrace(). + - QsciScintiila::clear() is no longer undoable and instead clears the undo + history. + - Added support for building with WASM. + - Added the .api file for Python v3.8. + - Bug fixes. + +v2.11.1 14th February 2019 + - There is a small (but potentially incompatible) change to the signature of + a QsciScintillaBase::SendScintilla() overload which may require an explicit + cast to be added. + - Bug fixes. + +v2.11 10th February 2019 + - Based on Scintilla v3.10.1. + - Added setCaretLineFrameWidth() to QsciScintilla. + - The findFirst() and findFirstInSelection() methods of QsciScintilla now + support Cxx11 regular expressions. + - Added cancelFind() to QsciScintilla. + - Added GradientIndicator and CentreGradientIndicator to + QsciScintilla::IndicatorStyle. + - Added WrapIndentDeeplyIndented to QsciScintilla::WrapIndentMode. + - Added ReverseLines to QsciCommand::Command. + - Deprecated QsciLexer::styleBitsNeeded(). + - Added the AddingPatchAdded, RemovingPatchAdded, AddingPatchRemoved and + RemovingPatchRemoved styles to QsciLexerDiff. + - Added the DoubleQuotedFString, SingleQuotedFString, + TripleSingleQuotedFString and TripleDoubleQuotedFString styles to + QsciLexerPython. + - Added SCLEX_INDENT, SCLEX_MAXIMA and SCLEX_STATA to QsciScintillaBase. + - Added SCI_SETACCESSIBILITY, SCI_GETACCESSIBILITY, SCI_GETCARETLINEFRAME, + SCI_SETCARETLINEFRAME, SCI_SETCOMMANDEVENTS, SCI_GETCOMMANDEVENTS, + SCI_LINEREVERSE and SCI_GETMOVEEXTENDSSELECTION to QsciScintillaBase. + - Added SCI_GETLINECHARACTERINDEX, SCI_ALLOCATELINECHARACTERINDEX, + SCI_RELEASELINECHARACTERINDEX, SCI_LINEFROMINDEXPOSITION, + SCI_INDEXPOSITIONFROMLINE, SCI_COUNTCODEUNITS and + SCI_POSITIONRELATIVECODEUNITS to QsciScintillaBase. + - Added SC_LINECHARACTERINDEX_NONE, SC_LINECHARACTERINDEX_UTF32 and + SC_LINECHARACTERINDEX_UTF16 to QsciScintillaBase. + - Added SCI_GETNAMEDSTYLES, SCI_NAMEOFSTYLE, SCI_TAGSOFSTYLE and + SCI_DESCRIPTIONOFSTYLE to QsciScintillaBase. + - Added the SCN_AUTOCSELECTIONCHANGE and SCN_URIDROPPED() signals to + QsciScintillaBase. + - Added the overloaded SCN_USERLISTSELECTION() signal to QsciScintillaBase. + - Added INDIC_GRADIENT and INDIC_GRADIENTCENTRE to QsciScintillaBase. + - Added SC_PRINT_SCREENCOLOURS to QsciScintillaBase. + - Added SC_WRAPINDENT_DEEPINDENT to QsciScintillaBase. + - Added SCI_GETDOCUMENTOPTIONS, SC_DOCUMENTOPTION_DEFAULT, + SC_DOCUMENTOPTION_STYLES_NONE and SC_DOCUMENTOPTION_TEXT_LARGE to + QsciScintillaBase. + +v2.10.8 1st October 2018 + - Bug fixes. + +v2.10.7 2nd July 2018 + - Bug fixes. + +v2.10.6 24th June 2018 + - A pseudo-release to create a version number for updated Python wheels. + +v2.10.5 23rd June 2018 + - Added the QsciLexerEDIFACT class. + - Added setStyle() to QsciStyle. + - Control-wheel scroll will now zoom in and out of the document. + - Buffered drawing is now disabled by default. + - The Python bindings create a PEP 376 .dist-info directory on installation + that provides version information for dependent packages and allows pip to + uninstall. + - Added the --no-dist-info option to the Python bindings' configure.py. + - Bug fixes. + +v2.10.4 10th April 2018 + - Bug fixes. + +v2.10.3 26th February 2018 + - Added accessibility support. + - Added the API file for Python v3.7. + +v2.10.2 23rd November 2017 + - Added setScrollWidth() , scrollWidth, setScrollWidthTracking() and + scrollWidthTracking() to QsciScintilla. + - Bug fixes. + +v2.10.1 3rd July 2017 + - Changed the default font on macOS to Menlo 12pt. + - Added previously internal lexer methods to the Python bindings. + +v2.10 20th February 2017 + - Based on Scintilla v3.7.2. + - Added the QsciLexerJSON class. + - Added the QsciLexerMarkdown class. + - Added replaceHorizontalScrollBar() and replaceVerticalScrollBar() to + QsciScintillaBase. + - Added bytes() and a corresponding text() overload to QsciScintilla. + - Added EdgeMultipleLines to QsciScintilla::EdgeMode. + - Added addEdgeColumn() and clearEdgeColumns() to QsciScintilla. + - Added the marginRightClicked() signal to QsciScintilla. + - Added SymbolMarginColor to QsciScintilla::MarginType. + - Added setMarginBackgroundColor() and marginBackgroundColor() to + QsciScintilla. + - Added setMargins() and margins() to QsciScintilla. + - Added TriangleIndicator and TriangleCharacterIndicator to + QsciScintilla::IndicatorStyle. + - Added WsVisibleOnlyInIndent to QsciScintilla::WhitespaceVisibility. + - Added TabDrawMode, setTabDrawMode() and tabDrawMode() to QsciScintilla. + - Added InstanceProperty to QsciLexerCoffeeScript. + - Added EDGE_MULTILINE to QsciScintillaBase. + - Added INDIC_POINT and INDIC_POINTCHARACTER to QsciScintillaBase. + - Added SC_AC_FILLUP, SC_AC_DOUBLECLICK, SC_AC_TAB, SC_AC_NEWLINE and + SC_AC_COMMAND to QsciScintillaBase. + - Added SC_CASE_CAMEL to QsciScintillaBase. + - Added SC_CHARSET_CYRILLIC and SC_CHARSET_OEM866 to QsciScintillaBase. + - Added SC_FOLDDISPLAYTEXT_HIDDEN, SC_FOLDDISPLAYTEXT_STANDARD and + SC_FOLDDISPLAYTEXT_BOXED to QsciScintillaBase. + - Added SC_IDLESTYLING_NONE, SC_IDLESTYLING_TOVISIBLE, + SC_IDLESTYLING_AFTERVISIBLE and SC_IDLESTYLING_ALL to QsciScintillaBase. + - Added SC_MARGIN_COLOUR to QsciScintillaBase. + - Added SC_POPUP_NEVER, SC_POPUP_ALL and SC_POPUP_TEXT to QsciScintillaBase. + - Added SCI_FOLDDISPLAYTEXTSETSTYLE and SCI_TOGGLEFOLDSHOWTEXT to + QsciScintillaBase. + - Added SCI_GETIDLESTYLING and SCI_SETIDLESTYLING to QsciScintillaBase. + - Added SCI_GETMARGINBACKN and SCI_SETMARGINBACKN to QsciScintillaBase. + - Added SCI_GETMARGINS and SCI_SETMARGINS to QsciScintillaBase. + - Added SCI_GETMOUSEWHEELCAPTURES and SCI_SETMOUSEWHEELCAPTURES to + QsciScintillaBase. + - Added SCI_GETTABDRAWMODE and SCI_SETTABDRAWMODE to QsciScintillaBase. + - Added SCI_ISRANGEWORD to QsciScintillaBase. + - Added SCI_MULTIEDGEADDLINE and SCI_MULTIEDGECLEARALL to QsciScintillaBase. + - Added SCI_MULTIPLESELECTADDNEXT and SCI_MULTIPLESELECTADDEACH to + QsciScintillaBase. + - Added SCI_TARGETWHOLEDOCUMENT to QsciScintillaBase. + - Added SCLEX_JSON and SCLEX_EDIFACT to QsciScintillaBase. + - Added SCTD_LONGARROW and SCTD_STRIKEOUT to QsciScintillaBase. + - Added SCVS_NOWRAPLINESTART to QsciScintillaBase. + - Added SCWS_VISIBLEONLYININDENT to QsciScintillaBase. + - Added STYLE_FOLDDISPLAYTEXT to QsciScintillaBase. + - Added the SCN_AUTOCCOMPLETED() signal to QsciScintillaBase. + - Added the overloaded SCN_AUTOCSELECTION() and SCN_USERLISTSELECTION() + signals to QsciScintillaBase. + - Added the SCN_MARGINRIGHTCLICK() signal to QsciScintillaBase. + - Renamed SCI_GETTARGETRANGE to SCI_GETTARGETTEXT in QsciScintillaBase. + - Removed SCI_GETKEYSUNICODE and SCI_SETKEYSUNICODE to QsciScintillaBase. + - The autoCompletionFillups(), autoCompletionWordSeparators(), blockEnd(), + blockLookback(), blockStart(), blockStartKeyword(), braceStyle(), + caseSensitive(), indentationGuideView() and defaultStyle() methods of + QsciLexer are no longer marked as internal and are exposed to Python so + that they may be used by QsciLexerCustom sub-classes. + - The name of the library has been changed to include the major version + number of the version of Qt it is built against (ie. 4 or 5). + +v2.9.4 25th December 2016 + - Added the .api file for Python v3.6. + - Bug fixes. + +v2.9.3 25th July 2016 + - Bug fixes. + +v2.9.2 18th April 2016 + - Added support for a PEP 484 stub file for the Python extension module. + +v2.9.1 24th October 2015 + - Added the .api file for Python v3.5. + - Bug fixes. + +v2.9 20th April 2015 + - Based on Scintilla v3.5.4. + - Added UserLiteral, InactiveUserLiteral, TaskMarker, InactiveTaskMarker, + EscapeSequence, InactiveEscapeSequence, setHighlightBackQuotedStrings(), + highlightBackQuotedStrings(), setHighlightEscapeSequences(), + highlightEscapeSequences(), setVerbatimStringEscapeSequencesAllowed() and + verbatimStringEscapeSequencesAllowed() to QsciLexerCPP. + - Added CommentKeyword, DeclareInputPort, DeclareOutputPort, + DeclareInputOutputPort, PortConnection and the inactive versions of all + styles to QsciLexerVerilog. + - Added CommentBlock to QsciLexerVHDL. + - Added AnnotationIndented to QsciScintilla::AnnotationDisplay. + - Added FullBoxIndicator, ThickCompositionIndicator, ThinCompositionIndicator + and TextColorIndicator to QsciScintilla::IndicatorStyle. + - Added setIndicatorHoverForegroundColor() and setIndicatorHoverStyle() to + QsciScintilla. + - Added Bookmark to QsciScintilla::MarkerSymbol. + - Added WrapWhitespace to QsciScintilla::WrapMode. + - Added SCLEX_AS, SCLEX_BIBTEX, SCLEX_DMAP, SCLEX_DMIS, SCLEX_IHEX, + SCLEX_REGISTRY, SCLEX_SREC and SCLEX_TEHEX to QsciScintillaBase. + - Added SCI_CHANGEINSERTION to QsciScintillaBase. + - Added SCI_CLEARTABSTOPS, SCI_ADDTABSTOP and SCI_GETNEXTTABSTOP to + QsciScintillaBase. + - Added SCI_GETIMEINTERACTION, SCI_SETIMEINTERACTION, SC_IME_WINDOWED and + SC_IME_INLINE to QsciScintillaBase. + - Added SC_MARK_BOOKMARK to QsciScintillaBase. + - Added INDIC_COMPOSITIONTHIN, INDIC_FULLBOX, INDIC_TEXTFORE, INDIC_IME, + INDIC_IME_MAX, SC_INDICVALUEBIT, SC_INDICVALUEMASK, + SC_INDICFLAG_VALUEBEFORE, SCI_INDICSETHOVERSTYLE, SCI_INDICGETHOVERSTYLE, + SCI_INDICSETHOVERFORE, SCI_INDICGETHOVERFORE, SCI_INDICSETFLAGS and + SCI_INDICGETFLAGS to QsciScintillaBase. + - Added SCI_SETTARGETRANGE and SCI_GETTARGETRANGE to QsciScintillaBase. + - Added SCFIND_CXX11REGEX to QsciScintillaBase. + - Added SCI_CALLTIPSETPOSSTART to QsciScintillaBase. + - Added SC_FOLDFLAG_LINESTATE to QsciScintillaBase. + - Added SC_WRAP_WHITESPACE to QsciScintillaBase. + - Added SC_PHASES_ONE, SC_PHASES_TWO, SC_PHASES_MULTIPLE, SCI_GETPHASESDRAW + and SCI_SETPHASESDRAW to QsciScintillaBase. + - Added SC_STATUS_OK, SC_STATUS_FAILURE, SC_STATUS_BADALLOC, + SC_STATUS_WARN_START and SC_STATUS_WARNREGEX to QsciScintillaBase. + - Added SC_MULTIAUTOC_ONCE, SC_MULTIAUTOC_EACH, SCI_AUTOCSETMULTI and + SCI_AUTOCGETMULTI to QsciScintillaBase. + - Added ANNOTATION_INDENTED to QsciScintillaBase. + - Added SCI_DROPSELECTIONN to QsciScintillaBase. + - Added SC_TECHNOLOGY_DIRECTWRITERETAIN and SC_TECHNOLOGY_DIRECTWRITEDC to + QsciScintillaBase. + - Added SC_LINE_END_TYPE_DEFAULT, SC_LINE_END_TYPE_UNICODE, + SCI_GETLINEENDTYPESSUPPORTED, SCI_SETLINEENDTYPESALLOWED, + SCI_GETLINEENDTYPESALLOWED and SCI_GETLINEENDTYPESACTIVE to + QsciScintillaBase. + - Added SCI_ALLOCATESUBSTYLES, SCI_GETSUBSTYLESSTART, SCI_GETSUBSTYLESLENGTH, + SCI_GETSTYLEFROMSUBSTYLE, SCI_GETPRIMARYSTYLEFROMSTYLE, SCI_FREESUBSTYLES, + SCI_SETIDENTIFIERS, SCI_DISTANCETOSECONDARYSTYLES and SCI_GETSUBSTYLEBASES + to QsciScintillaBase. + - Added SC_MOD_INSERTCHECK and SC_MOD_CHANGETABSTOPS to QsciScintillaBase. + - Qt v3 and PyQt v3 are no longer supported. + +v2.8.4 11th September 2014 + - Added setHotspotForegroundColor(), resetHotspotForegroundColor(), + setHotspotBackgroundColor(), resetHotspotBackgroundColor(), + setHotspotUnderline() and setHotspotWrap() to QsciScintilla. + - Added SCI_SETHOTSPOTSINGLELINE to QsciScintillaBase. + - Bug fixes. + +v2.8.3 3rd July 2014 + - Added the QsciLexerCoffeeScript class. + - Font sizes are now handled as floating point values rather than integers. + - Bug fixes. + +v2.8.2 26th May 2014 + - Added the QsciLexerAVS class. + - Added the QsciLexerPO class. + - Added the --sysroot, --no-sip-files and --no-qsci-api options to the Python + bindings' configure.py. + - Cross-compilation (specifically to iOS and Android) is now supported. + - configure.py has been refactored and relicensed so that it can be used as a + template for wrapping other bindings. + - Bug fixes. + +v2.8.1 14th March 2014 + - Added support for iOS and Android. + - Added support for retina displays. + - A qscintilla2.prf file is installed so that application .pro files only + need to add CONFIG += qscintilla2. + - Updated the keywords recognised by the Octave lexer. + - Bug fixes. + +v2.8 9th November 2013 + - Based on Scintilla v3.3.6. + - Added the SCN_FOCUSIN() and SCN_FOCUSOUT() signals to QsciScintillaBase. + - Added PreProcessorCommentLineDoc and InactivePreProcessorCommentLineDoc to + QsciLexerCPP. + - Added SCLEX_LITERATEHASKELL, SCLEX_KVIRC, SCLEX_RUST and SCLEX_STTXT to + QsciScintillaBase. + - Added ThickCompositionIndicator to QsciScintilla::IndicatorStyle. + - Added INDIC_COMPOSITIONTHICK to QsciScintillaBase. + - Added SC_FOLDACTION_CONTRACT, SC_FOLDACTION_EXPAND and SC_FOLDACTION_TOGGLE + to QsciScintillaBase. + - Added SCI_FOLDLINE, SCI_FOLDCHILDREN, SCI_EXPANDCHILDREN and SCI_FOLDALL to + QsciScintillaBase. + - Added SC_AUTOMATICFOLD_SHOW, SC_AUTOMATICFOLD_CLICK and + SC_AUTOMATICFOLD_CHANGE to QsciScintillaBase. + - Added SCI_SETAUTOMATICFOLD and SCI_GETAUTOMATICFOLD to QsciScintillaBase. + - Added SC_ORDER_PRESORTED, SC_ORDER_PERFORMSORT and SC_ORDER_CUSTOM to + QsciScintillaBase. + - Added SCI_AUTOCSETORDER and SCI_AUTOCGETORDER to QsciScintillaBase. + - Added SCI_POSITIONRELATIVE to QsciScintillaBase. + - Added SCI_RELEASEALLEXTENDEDSTYLES and SCI_ALLOCATEEXTENDEDSTYLES to + QsciScintillaBase. + - Added SCI_SCROLLRANGE to QsciScintillaBase. + - Added SCI_SETCARETLINEVISIBLEALWAYS and SCI_GETCARETLINEVISIBLEALWAYS to + QsciScintillaBase. + - Added SCI_SETMOUSESELECTIONRECTANGULARSWITCH and + SCI_GETMOUSESELECTIONRECTANGULARSWITCH to QsciScintillaBase. + - Added SCI_SETREPRESENTATION, SCI_GETREPRESENTATION and + SCI_CLEARREPRESENTATION to QsciScintillaBase. + - Input methods are now properly supported. + +v2.7.2 16th June 2013 + - The build script for the Python bindings now has a --pyqt argument for + specifying PyQt4 or PyQt5. + - The default EOL mode on OS/X is now EolUnix. + - Bug fixes. + +v2.7.1 1st March 2013 + - Added support for the final release of Qt v5. + - The build script for the Python bindings should now work with SIP v5. + - Bug fixes. + +v2.7 8th December 2012 + - Based on Scintilla v3.2.3. + - Added support for Qt v5-rc1. + - Added HashQuotedString, InactiveHashQuotedString, PreProcessorComment, + InactivePreProcessorComment, setHighlightHashQuotedStrings() and + highlightHashQuotedStrings() to QsciLexerCpp. + - Added Variable, setHSSLanguage(), HSSLanguage(), setLessLanguage(), + LessLanguage(), setSCCSLanguage() and SCCSLanguage() to QsciLexerCSS. + - Added setOverwriteMode() and overwriteMode() to QsciScintilla. + - Added wordAtLineIndex() to QsciScintilla. + - Added findFirstInSelection() to QsciScintilla. + - Added CallTipsPosition, callTipsPosition() and setCallTipsPosition() to + QsciScintilla. + - Added WrapFlagInMargin to QsciScintilla::WrapVisualFlag. + - Added SquigglePixmapIndicator to QsciScintilla::IndicatorStyle. + - The weight of a font (rather than whether it is just bold or not) is now + respected. + - Added SCLEX_AVS, SCLEX_COFFEESCRIPT, SCLEX_ECL, SCLEX_OSCRIPT, + SCLEX_TCMD and SCLEX_VISUALPROLOG to QsciScintillaBase. + - Added SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE and + SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE to QsciScintillaBase. + - Added SC_FONT_SIZE_MULTIPLIER to QsciScintillaBase. + - Added SC_WEIGHT_NORMAL, SC_WEIGHT_SEMIBOLD and SC_WEIGHT_BOLD to + QsciScintillaBase. + - Added SC_WRAPVISUALFLAG_MARGIN to QsciScintillaBase. + - Added INDIC_SQUIGGLEPIXMAP to QsciScintillaBase. + - Added SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR, + SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR, SCI_CALLTIPSETPOSITION, + SCI_COUNTCHARACTERS, SCI_CREATELOADER, SCI_DELETERANGE, + SCI_FINDINDICATORFLASH, SCI_FINDINDICATORHIDE, SCI_FINDINDICATORSHOW, + SCI_GETALLLINESVISIBLE, SCI_GETGAPPOSITION, SCI_GETPUNCTUATIONCHARS, + SCI_GETRANGEPOINTER, SCI_GETSELECTIONEMPTY, SCI_GETTECHNOLOGY, + SCI_GETWHITESPACECHARS, SCI_GETWORDCHARS, SCI_RGBAIMAGESETSCALE, + SCI_SETPUNCTUATIONCHARS, SCI_SETTECHNOLOGY, SCI_STYLESETSIZEFRACTIONAL, + SCI_STYLEGETSIZEFRACTIONAL, SCI_STYLESETWEIGHT and SCI_STYLEGETWEIGHT to + QsciScintillaBase. + - Removed SCI_GETUSEPALETTE and SCI_SETUSEPALETTE from QsciScintillaBase. + - Bug fixes. + +v2.6.2 20th June 2012 + - Added support for Qt v5-alpha. + - QsciLexer::wordCharacters() is now part of the public API. + - Bug fixes. + +v2.6.1 10th February 2012 + - Support SCI_NAMESPACE to enable all internal Scintilla classes to be put + into the Scintilla namespace. + - APIs now allow for spaces between the end of a word and the opening + parenthesis. + - Building against Qt v3 is fixed. + +v2.6 11th November 2011 + - Based on Scintilla v2.29. + - Added Command, command() and execute() to QsciCommand. + - Added boundTo() and find() to QsciCommandSet. + - Added createStandardContextMenu() to QsciScintilla. + - Added StraightBoxIndicator, DashesIndicator, DotsIndicator, + SquiggleLowIndicator and DotBoxIndicator to QsciScintilla::IndicatorStyle. + - Added markerDefine() to QsciScintilla. + - Added MoNone, MoSublineSelect, marginOptions() and setMarginOptions() to + QsciScintilla. + - Added registerImage() to QsciScintilla. + - Added setIndicatorOutlineColor() to QsciScintilla. + - Added setMatchedBraceIndicator(), resetMatchedBraceIndicator(), + setUnmatchedBraceIndicator() and resetUnmatchedBraceIndicator() to + QsciScintilla. + - Added highlightTripleQuotedStrings() and setHighlightTripleQuotedStrings() + to QsciLexerCpp. + - Added Label to QsciLexerLua. + - Added DoubleQuotedStringVar, Translation, RegexVar, SubstitutionVar, + BackticksVar, DoubleQuotedHereDocumentVar, BacktickHereDocumentVar, + QuotedStringQQVar, QuotedStringQXVar, QuotedStringQRVar, setFoldAtElse() + and foldAtElse() to QsciLexerPerl. + - Added highlightSubidentifiers() and setHighlightSubidentifiers() to + QsciLexerPython. + - Added INDIC_STRAIGHTBOX, INDIC_DASH, INDIC_DOTS, INDIC_SQUIGGLELOW and + INDIC_DOTBOX to QsciScintillaBase. + - Added SC_MARGINOPTION_NONE and SC_MARGINOPTION_SUBLINESELECT to + QsciScintillaBase. + - Added SC_MARK_RGBAIMAGE to QsciScintillaBase. + - Added SCI_BRACEBADLIGHTINDICATOR, SCI_BRACEHIGHLIGHTINDICATOR, + SCI_GETIDENTIFIER, SCI_GETMARGINOPTIONS, SCI_INDICGETOUTLINEALPHA, + SCI_INDICSETOUTLINEALPHA, SCI_MARKERDEFINERGBAIMAGE, + SCI_MARKERENABLEHIGHLIGHT, SCI_MARKERSETBACKSELECTED, + SCI_MOVESELECTEDLINESDOWN, SCI_MOVESELECTEDLINESUP, SCI_REGISTERRGBAIMAGE, + SCI_RGBAIMAGESETHEIGHT, SCI_RGBAIMAGESETWIDTH, SCI_SCROLLTOEND, + SCI_SCROLLTOSTART, SCI_SETEMPTYSELECTION, SCI_SETIDENTIFIER and + SCI_SETMARGINOPTIONS to QsciScintillaBase. + +v2.5.1 17th April 2011 + - Added QsciLexerMatlab and QsciLexerOctave. + +v2.5 29th March 2011 + - Based on Scintilla v2.25. + - Rectangular selections are now fully supported and compatible with SciTE. + - The signature of the fromMimeData() and toMimeData() methods of + QsciScintillaBase have changed incompatibly in order to support rectangular + selections. + - Added QsciScintilla::setAutoCompletionUseSingle() to replace the now + deprecated setAutoCompletionShowSingle(). + - Added QsciScintilla::autoCompletionUseSingle() to replace the now + deprecated autoCompletionShowSingle(). + - QsciScintilla::setAutoCompletionCaseSensitivity() is no longer ignored if a + lexer has been set. + - Added FullRectangle, LeftRectangle and Underline to the + QsciScintilla::MarkerSymbol enum. + - Added setExtraAscent(), extraAscent(), setExtraDescent() and extraDescent() + to QsciScintilla. + - Added setWhitespaceSize() and whitespaceSize() to QsciScintilla. + - Added replaceSelectedText() to QsciScintilla. + - Added setWhitespaceBackgroundColor() and setWhitespaceForegroundColor() to + QsciScintilla. + - Added setWrapIndentMode() and wrapIndentMode() to QsciScintilla. + - Added setFirstVisibleLine() to QsciScintilla. + - Added setContractedFolds() and contractedFolds() to QsciScintilla. + - Added the SCN_HOTSPOTRELEASECLICK() signal to QsciScintillaBase. + - The signature of the QsciScintillaBase::SCN_UPDATEUI() signal has changed. + - Added the RawString and inactive styles to QsciLexerCPP. + - Added MediaRule to QsciLexerCSS. + - Added BackquoteString, RawString, KeywordSet5, KeywordSet6 and KeywordSet7 + to QsciLexerD. + - Added setDjangoTemplates(), djangoTemplates(), setMakoTemplates() and + makoTemplates() to QsciLexerHTML. + - Added KeywordSet5, KeywordSet6, KeywordSet7 and KeywordSet8 to + QsciLexerLua. + - Added setInitialSpaces() and initialSpaces() to QsciLexerProperties. + - Added setFoldCompact(), foldCompact(), setStringsOverNewlineAllowed() and + stringsOverNewlineAllowed() to QsciLexerPython. + - Added setFoldComments(), foldComments(), setFoldCompact() and foldCompact() + to QsciLexerRuby. + - Added setFoldComments() and foldComments(), and removed setFoldCompact() + and foldCompact() from QsciLexerTCL. + - Added setFoldComments(), foldComments(), setFoldCompact(), foldCompact(), + setProcessComments(), processComments(), setProcessIf(), and processIf() to + QsciLexerTeX. + - Added QuotedIdentifier, setDottedWords(), dottedWords(), setFoldAtElse(), + foldAtElse(), setFoldOnlyBegin(), foldOnlyBegin(), setHashComments(), + hashComments(), setQuotedIdentifiers() and quotedIdentifiers() to + QsciLexerSQL. + - The Python bindings now allow optional arguments to be specified as keyword + arguments. + - The Python bindings will now build using the protected-is-public hack if + possible. + +v2.4.6 23rd December 2010 + - Added support for indicators to the high-level API, i.e. added the + IndicatorStyle enum, the clearIndicatorRange(), fillIndicatorRange(), + indicatorDefine(), indicatorDrawUnder(), setIndicatorDrawUnder() and + setIndicatorForegroundColor methods, and the indicatorClicked() and + indicatorReleased() signals to QsciScintilla. + - Added support for the Key style in QsciLexerProperties. + - Added an API file for Python v2.7. + - Added the --no-timestamp command line option to the Python bindings' + configure.py. + +v2.4.5 31st August 2010 + - A bug fix release. + +v2.4.4 12th July 2010 + - Added the canInsertFromMimeData(), fromMimeData() and toMimeData() methods + to QsciScintillaBase. + - QsciScintilla::markerDefine() now allows existing markers to be redefined. + +v2.4.3 17th March 2010 + - Added clearFolds() to QsciScintilla. + +v2.4.2 20th January 2010 + - Updated Spanish translations from Jaime Seuma. + - Fixed compilation problems with Qt v3 and Qt v4 prior to v4.5. + +v2.4.1 14th January 2010 + - Added the QsciLexerSpice and QsciLexerVerilog classes. + - Significant performance improvements when handling long lines. + - The Python bindings include automatically generated docstrings by default. + - Added an API file for Python v3. + +v2.4 5th June 2009 + - Based on Scintilla v1.78. + - Added the QsciLexerCustom, QsciStyle and QsciStyledText classes. + - Added annotate(), annotation(), clearAnnotations(), setAnnotationDisplay() + and annotationDisplay() to QsciScintilla. + - Added setMarginText(), clearMarginText(), setMarginType() and marginType() + to QsciScintilla. + - Added QsciLexer::lexerId() so that container lexers can be implemented. + - Added editor() and styleBitsNeeded() to QsciLexer. + - Added setDollarsAllowed() and dollarsAllowed() to QsciLexerCPP. + - Added setFoldScriptComments(), foldScriptComments(), + setFoldScriptHeredocs() and foldScriptHeredocs() to QsciLexerHTML. + - Added setSmartHighlighting() and smartHighlighting() to QsciLexerPascal. + (Note that the Scintilla Pascal lexer has changed so that any saved colour + and font settings will not be properly restored.) + - Added setFoldPackages(), foldPackages(), setFoldPODBlocks() and + foldPODBlocks() to QsciLexerPerl. + - Added setV2UnicodeAllowed(), v2UnicodeAllowed(), setV3BinaryOctalAllowed(), + v3BinaryOctalAllowed(), setV3BytesAllowed and v3BytesAllowed() to + QsciLexerPython. + - Added setScriptsStyled() and scriptsStyled() to QsciLexerXML. + - Added Spanish translations from Jaime Seuma. + +v2.3.2 17th November 2008 + - A bug fix release. + +v2.3.1 6th November 2008 + - Based on Scintilla v1.77. + - Added the read() and write() methods to QsciScintilla to allow a file to be + read and written while minimising the conversions. + - Added the positionFromLineIndex() and lineIndexFromPosition() methods to + QsciScintilla to convert between a Scintilla character address and a + QScintilla character address. + - Added QsciScintilla::wordAtPoint() to return the word at the given screen + coordinates. + - QSciScintilla::setSelection() now allows the carat to be left at either the + start or the end of the selection. + - 'with' is now treated as a keyword by the Python lexer. + +v2.3 20th September 2008 + - Based on Scintilla v1.76. + - The new QsciAbstractAPIs class allows applications to replace the default + implementation of the language APIs used for auto-completion lists and call + tips. + - Added QsciScintilla::apiContext() to allow applications to determine the + context used for auto-completion and call tips. + - Added the QsciLexerFortran, QsciLexerFortran77, QsciLexerPascal, + QsciLexerPostScript, QsciLexerTCL, QsciLexerXML and QsciLexerYAML classes. + - QsciScintilla::setFolding() will now accept an optional margin number. + +v2.2 27th February 2008 + - Based on Scintilla v1.75. + - A lexer's default colour, paper and font are now written to and read from + the settings. + - Windows64 is now supported. + - The signature of the QsciScintillaBase::SCN_MACRORECORD() signal has + changed slightly. + - Changed the licensing to match the current Qt licenses, including GPL v3. + +v2.1 1st June 2007 + - A slightly revised API, incompatible with QScintilla v2.0. + - Lexers now remember their style settings. A lexer no longer has to be the + current lexer when changing a style's color, end-of-line fill, font or + paper. + - The color(), eolFill(), font() and paper() methods of QsciLexer now return + the current values for a style rather than the default values. + - The setDefaultColor(), setDefaultFont() and setDefaultPaper() methods of + QsciLexer are no longer slots and no longer virtual. + - The defaultColor(), defaultFont() and defaultPaper() methods of QsciLexer + are no longer virtual. + - The color(), eolFill(), font() and paper() methods of all QsciLexer derived + classes (except for QsciLexer itself) have been renamed defaultColor(), + defaultEolFill(), defaultFont() and defaultPaper() respectively. + +v2.0 26th May 2007 + - A revised API, incompatible with QScintilla v1. + - Hugely improved autocompletion and call tips support. + - Supports both Qt v3 and Qt v4. + - Includes Python bindings. diff --git a/third_party/qscintilla/Python/README b/third_party/qscintilla/Python/README new file mode 100644 index 0000000..d3251e1 --- /dev/null +++ b/third_party/qscintilla/Python/README @@ -0,0 +1,50 @@ +QScintilla - Python Bindings for the QScintilla Programmers Editor Widget +========================================================================= + +QScintilla is a port to Qt of the Scintilla programmers editor widget. It +supports the traditional low-level Scintilla API and implements a high-level +API covering such things as auto-completion, code folding and lexer +configuration. + +These Python bindings implement a single extension module that sits on top of +PyQt5 and wraps both the low-level and high-level APIs. + + +Author +------ + +QScintilla is copyright (c) Riverbank Computing Limited. Its homepage is +https://www.riverbankcomputing.com/software/qscintilla/. + +Support may be obtained from the QScintilla mailing list at +https://www.riverbankcomputing.com/mailman/listinfo/qscintilla/. + + +License +------- + +QScintilla is released under the GPL v3 license and under a commercial license +that allows for the development of proprietary applications. + + +Documentation +------------- + +The documentation for the latest release can be found +`here `__. + + +Installation +------------ + +The GPL version of QScintilla can be installed from PyPI:: + + pip install QScintilla + +The wheels include a statically linked copy of the QScintilla C++ library. + +``pip`` will also build and install the bindings from the sdist package but +Qt's ``qmake`` tool must be on ``PATH``. + +The ``sip-install`` tool will also install the bindings from the sdist package +but will allow you to configure many aspects of the installation. diff --git a/third_party/qscintilla/Python/config-tests/cfgtest_Qsci.cpp b/third_party/qscintilla/Python/config-tests/cfgtest_Qsci.cpp new file mode 100644 index 0000000..8bc054e --- /dev/null +++ b/third_party/qscintilla/Python/config-tests/cfgtest_Qsci.cpp @@ -0,0 +1,22 @@ +#include +#include +#include + +#include + + +int main(int argc, char **argv) +{ + QCoreApplication app(argc, argv); + QFile outf(argv[1]); + + if (!outf.open(QIODevice::WriteOnly|QIODevice::Truncate|QIODevice::Text)) + return 1; + + QTextStream out(&outf); + + out << QSCINTILLA_VERSION << '\n'; + out << QSCINTILLA_VERSION_STR << '\n'; + + return 0; +} diff --git a/third_party/qscintilla/Python/project.py b/third_party/qscintilla/Python/project.py new file mode 100644 index 0000000..8a35605 --- /dev/null +++ b/third_party/qscintilla/Python/project.py @@ -0,0 +1,212 @@ +# This is the build script for the QScintilla Python bindings. +# +# Copyright (c) 2023 Riverbank Computing Limited +# +# This file is part of QScintilla. +# +# This file may be used under the terms of the GNU General Public License +# version 3.0 as published by the Free Software Foundation and appearing in +# the file LICENSE included in the packaging of this file. Please review the +# following information to ensure the GNU General Public License version 3.0 +# requirements will be met: http://www.gnu.org/copyleft/gpl.html. +# +# If you do not wish to use this file under the terms of the GPL version 3.0 +# then you may purchase a commercial license. For more information contact +# info@riverbankcomputing.com. +# +# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +import os + +from pyqtbuild import PyQtBindings, PyQtProject +from sipbuild import Option + + +class QScintilla(PyQtProject): + """ The QScintilla project. """ + + def __init__(self): + """ Initialise the project. """ + + super().__init__() + + self.bindings_factories = [Qsci] + + # If there is a 'src' subdirectory then we are part of an sdist rather + # than a full source distribution. If part of an sdist then the + # QScintilla source is compiled along with the bindings. Otherwise an + # external (ie. already built) QScintilla library is used (which may be + # static or dynamic). + self.qsci_external_lib = not os.path.isdir('src') + + def apply_user_defaults(self, tool): + """ Set default values for user options that haven't been set yet. """ + + super().apply_user_defaults(tool) + + if not self.qsci_external_lib: + # If a directory to install the .api files was given then add the + # bundled .api files as well. + if self.api_dir: + self.wheel_includes.append( + ('qsci/api/python/*.api', self.api_dir)) + + if self.qsci_translations_dir: + self.wheel_includes.append( + ('src/*.qm', self.qsci_translations_dir)) + + def get_options(self): + """ Return the list of configurable options. """ + + options = super().get_options() + + # The directory within the wheel to install the translation files to. + options.append( + Option('qsci_translations_dir', + help="the QScintilla translation files will be installed in DIR", + metavar="DIR", tools=['wheel'])) + + return options + + +class Qsci(PyQtBindings): + """ The Qsci bindings. """ + + def __init__(self, project): + """ Initialise the bindings. """ + + if project.qsci_external_lib: + qmake_CONFIG = ['qscintilla2'] + else: + qmake_CONFIG = [] + + super().__init__(project, 'Qsci', qmake_CONFIG=qmake_CONFIG) + + def apply_user_defaults(self, tool): + """ Set default values for user options that haven't been set yet. """ + + project = self.project + qt6 = (project.builder.qt_version >= 0x060000) + + # Set the name of the .sip file now that we know the Qt version number. + self.sip_file = 'qscimod6.sip' if qt6 else 'qscimod5.sip' + + if self.project.qsci_external_lib: + if self.qsci_features_dir is not None: + os.environ['QMAKEFEATURES'] = os.path.abspath( + self.qsci_features_dir) + + if self.qsci_include_dir is not None: + self.include_dirs.append( + os.path.abspath(self.qsci_include_dir)) + + if self.qsci_library_dir is not None: + self.library_dirs.append( + os.path.abspath(self.qsci_library_dir)) + else: + # We configure CONFIG and QT textually because it's too late to + # update qmake_CONFIG and qmake_QT. + self.builder_settings.append('QT += widgets') + + if project.py_platform != 'ios': + self.builder_settings.append('QT += printsupport') + + if project.py_platform in ('darwin', 'ios') and not qt6: + self.builder_settings.append('QT += macextras') + + self.builder_settings.append( + 'CONFIG += warn_off thread exceptions') + + self.define_macros.extend( + ['SCINTILLA_QT', 'SCI_LEXER', + 'INCLUDE_DEPRECATED_FEATURES']) + + self._add_internal_lib_sources() + + super().apply_user_defaults(tool) + + def get_options(self): + """ Return the list of configurable options. """ + + options = super().get_options() + + if self.project.qsci_external_lib: + # The directory containing the features file. + options.append( + Option('qsci_features_dir', + help="the qscintilla2.prf features file is in DIR", + metavar="DIR")) + + # The directory containing the include directory. + options.append( + Option('qsci_include_dir', + help="the Qsci include file directory is in DIR", + metavar="DIR")) + + # The directory containing the library. + options.append( + Option('qsci_library_dir', + help="the QScintilla library is in DIR", + metavar="DIR")) + + return options + + def handle_test_output(self, test_output): + """ Handle the output from the external test program and return True if + the bindings are buildable. + """ + + project = self.project + + installed_version = int(test_output[0]) + installed_version_str = test_output[1] + + if project.version != installed_version: + project.progress( + "QScintilla v{0} is required but QScintilla v{1} is " + "installed.".format(project.version_str, + installed_version_str)) + return False + + return True + + def is_buildable(self): + """ Return True if the bindings are buildable. """ + + # We need to check the compatibility of an external QScintilla library. + if self.project.qsci_external_lib: + return super().is_buildable() + + return True + + def _add_dir_sources(self, dname): + """ Add the headers and sources from a particular directory. """ + + for fn in os.listdir(dname): + # Skip the printer support on iOS. + if self.project.py_platform == 'ios' and fn.startswith('qsciprinter.'): + continue + + if fn.endswith('.h'): + self.headers.append(os.path.join(dname, fn)) + elif fn.endswith('.cpp'): + self.sources.append(os.path.join(dname, fn)) + + def _add_internal_lib_sources(self): + """ Add to the lists of include directories, header files and source + files to build the QScintilla library. + """ + + include_dirs = ['src'] + + for dn in ('include', 'lexers', 'lexlib', 'src'): + include_dirs.append(os.path.join('scintilla', dn)) + + self._add_dir_sources(os.path.join('src', 'Qsci')) + + for dn in include_dirs: + self._add_dir_sources(dn) + + self.include_dirs.extend(include_dirs) diff --git a/third_party/qscintilla/Python/pyproject-qt5.toml b/third_party/qscintilla/Python/pyproject-qt5.toml new file mode 100644 index 0000000..6273e04 --- /dev/null +++ b/third_party/qscintilla/Python/pyproject-qt5.toml @@ -0,0 +1,16 @@ +# Specify the build system. +[build-system] +requires = ["sip >=6.0.2, <7", "PyQt-builder >=1.6, <2"] +build-backend = "sipbuild.api" + +# Specify the PEP 566 metadata for the project. +[tool.sip.metadata] +name = "QScintilla" +version = "2.14.1" +summary = "Python bindings for the QScintilla programmers editor widget" +home-page = "https://www.riverbankcomputing.com/software/qscintilla/" +author = "Riverbank Computing Limited" +author-email = "info@riverbankcomputing.com" +license = "GPL v3" +description-file = "README" +requires-dist = "PyQt5 (>=5.15.4)" diff --git a/third_party/qscintilla/Python/pyproject-qt6.toml b/third_party/qscintilla/Python/pyproject-qt6.toml new file mode 100644 index 0000000..cbc84b9 --- /dev/null +++ b/third_party/qscintilla/Python/pyproject-qt6.toml @@ -0,0 +1,16 @@ +# Specify the build system. +[build-system] +requires = ["sip >=6.0.2, <7", "PyQt-builder >=1.6, <2"] +build-backend = "sipbuild.api" + +# Specify the PEP 566 metadata for the project. +[tool.sip.metadata] +name = "PyQt6-QScintilla" +version = "2.14.1" +summary = "Python bindings for the QScintilla programmers editor widget" +home-page = "https://www.riverbankcomputing.com/software/qscintilla/" +author = "Riverbank Computing Limited" +author-email = "info@riverbankcomputing.com" +license = "GPL v3" +description-file = "README" +requires-dist = "PyQt6 (>=6.0.3)" diff --git a/third_party/qscintilla/Python/sip/qsciabstractapis.sip b/third_party/qscintilla/Python/sip/qsciabstractapis.sip new file mode 100644 index 0000000..1c7a3ba --- /dev/null +++ b/third_party/qscintilla/Python/sip/qsciabstractapis.sip @@ -0,0 +1,42 @@ +// This is the SIP interface definition for QsciAbstractAPIs. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciAbstractAPIs : QObject +{ +%TypeHeaderCode +#include +%End + +public: + QsciAbstractAPIs(QsciLexer *lexer /TransferThis/); + virtual ~QsciAbstractAPIs(); + + QsciLexer *lexer() const; + + virtual void updateAutoCompletionList(const QStringList &context, + QStringList &list /In, Out/) = 0; + virtual void autoCompletionSelected(const QString &selection); + + virtual QStringList callTips(const QStringList &context, int commas, + QsciScintilla::CallTipsStyle style, QList &shifts) = 0; + +private: + QsciAbstractAPIs(const QsciAbstractAPIs &); +}; diff --git a/third_party/qscintilla/Python/sip/qsciapis.sip b/third_party/qscintilla/Python/sip/qsciapis.sip new file mode 100644 index 0000000..536284a --- /dev/null +++ b/third_party/qscintilla/Python/sip/qsciapis.sip @@ -0,0 +1,58 @@ +// This is the SIP interface definition for QsciAPIs. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciAPIs : QsciAbstractAPIs +{ +%TypeHeaderCode +#include +%End + +public: + QsciAPIs(QsciLexer *lexer /TransferThis/); + virtual ~QsciAPIs(); + + void add(const QString &entry); + void clear(); + bool load(const QString &fname); + void remove(const QString &entry); + void prepare(); + void cancelPreparation(); + QString defaultPreparedName() const; + bool isPrepared(const QString &filename = QString()) const; + bool loadPrepared(const QString &filename = QString()); + bool savePrepared(const QString &filename = QString()) const; + virtual bool event(QEvent *e); + QStringList installedAPIFiles() const; + + virtual void updateAutoCompletionList(const QStringList &context, + QStringList &list /In, Out/); + virtual void autoCompletionSelected(const QString &selection); + + virtual QStringList callTips(const QStringList &context, int commas, + QsciScintilla::CallTipsStyle style, QList &shifts); + +signals: + void apiPreparationCancelled(); + void apiPreparationStarted(); + void apiPreparationFinished(); + +private: + QsciAPIs(const QsciAPIs &); +}; diff --git a/third_party/qscintilla/Python/sip/qscicommand.sip b/third_party/qscintilla/Python/sip/qscicommand.sip new file mode 100644 index 0000000..43b80cb --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscicommand.sip @@ -0,0 +1,143 @@ +// This is the SIP interface definition for QsciCommand. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciCommand +{ +%TypeHeaderCode +#include +%End + +public: + enum Command { + LineDown, + LineDownExtend, + LineDownRectExtend, + LineScrollDown, + LineUp, + LineUpExtend, + LineUpRectExtend, + LineScrollUp, + ScrollToStart, + ScrollToEnd, + VerticalCentreCaret, + ParaDown, + ParaDownExtend, + ParaUp, + ParaUpExtend, + CharLeft, + CharLeftExtend, + CharLeftRectExtend, + CharRight, + CharRightExtend, + CharRightRectExtend, + WordLeft, + WordLeftExtend, + WordRight, + WordRightExtend, + WordLeftEnd, + WordLeftEndExtend, + WordRightEnd, + WordRightEndExtend, + WordPartLeft, + WordPartLeftExtend, + WordPartRight, + WordPartRightExtend, + Home, + HomeExtend, + HomeRectExtend, + HomeDisplay, + HomeDisplayExtend, + HomeWrap, + HomeWrapExtend, + VCHome, + VCHomeExtend, + VCHomeRectExtend, + VCHomeWrap, + VCHomeWrapExtend, + LineEnd, + LineEndExtend, + LineEndRectExtend, + LineEndDisplay, + LineEndDisplayExtend, + LineEndWrap, + LineEndWrapExtend, + DocumentStart, + DocumentStartExtend, + DocumentEnd, + DocumentEndExtend, + PageUp, + PageUpExtend, + PageUpRectExtend, + PageDown, + PageDownExtend, + PageDownRectExtend, + StutteredPageUp, + StutteredPageUpExtend, + StutteredPageDown, + StutteredPageDownExtend, + Delete, + DeleteBack, + DeleteBackNotLine, + DeleteWordLeft, + DeleteWordRight, + DeleteWordRightEnd, + DeleteLineLeft, + DeleteLineRight, + LineDelete, + LineCut, + LineCopy, + LineTranspose, + LineDuplicate, + SelectAll, + MoveSelectedLinesUp, + MoveSelectedLinesDown, + SelectionDuplicate, + SelectionLowerCase, + SelectionUpperCase, + SelectionCut, + SelectionCopy, + Paste, + EditToggleOvertype, + Newline, + Formfeed, + Tab, + Backtab, + Cancel, + Undo, + Redo, + ZoomIn, + ZoomOut, + ReverseLines, + }; + + Command command() const; + void execute(); + void setKey(int key); + void setAlternateKey(int altkey); + int key() const; + int alternateKey() const; + static bool validKey(int key); + QString description() const; + +private: + QsciCommand(QsciScintilla *qs, Command cmd, int key, int altkey, + const char *desc); + QsciCommand(const QsciCommand &); +}; diff --git a/third_party/qscintilla/Python/sip/qscicommandset.sip b/third_party/qscintilla/Python/sip/qscicommandset.sip new file mode 100644 index 0000000..ae89722 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscicommandset.sip @@ -0,0 +1,44 @@ +// This is the SIP interface definition for the QsciCommandSet. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciCommandSet +{ +%TypeHeaderCode +#include +%End + +public: + bool readSettings(QSettings &qs, const char *prefix = "/Scintilla"); + bool writeSettings(QSettings &qs, const char *prefix = "/Scintilla"); + + QList &commands(); + + void clearKeys(); + void clearAlternateKeys(); + + QsciCommand *boundTo(int key) const; + QsciCommand *find(QsciCommand::Command command) const; + +private: + QsciCommandSet(QsciScintilla *qs); + ~QsciCommandSet(); + + QsciCommandSet(const QsciCommandSet &); +}; diff --git a/third_party/qscintilla/Python/sip/qscidocument.sip b/third_party/qscintilla/Python/sip/qscidocument.sip new file mode 100644 index 0000000..0933299 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscidocument.sip @@ -0,0 +1,32 @@ +// This is the SIP interface definition for QsciDocument. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciDocument +{ +%TypeHeaderCode +#include +%End + +public: + QsciDocument(); + virtual ~QsciDocument(); + + QsciDocument(const QsciDocument &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexer.sip b/third_party/qscintilla/Python/sip/qscilexer.sip new file mode 100644 index 0000000..58e405e --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexer.sip @@ -0,0 +1,90 @@ +// This is the SIP interface definition for QsciLexer. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexer : QObject +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexer(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexer(); + + virtual const char *language() const = 0; + virtual const char *lexer() const; + virtual int lexerId() const; + QsciAbstractAPIs *apis() const; + virtual const char *autoCompletionFillups() const /Encoding="None"/; + virtual QStringList autoCompletionWordSeparators() const; + int autoIndentStyle(); + virtual const char *blockEnd(int *style = 0) const /Encoding="None"/; + virtual int blockLookback() const; + virtual const char *blockStart(int *style = 0) const /Encoding="None"/; + virtual const char *blockStartKeyword(int *style = 0) const /Encoding="None"/; + virtual int braceStyle() const; + virtual bool caseSensitive() const; + virtual QColor color(int style) const; + virtual bool eolFill(int style) const; + virtual QFont font(int style) const; + virtual int indentationGuideView() const; + virtual const char *keywords(int set) const; + virtual QString description(int style) const = 0; + virtual QColor paper(int style) const; + QColor defaultColor() const; + virtual QColor defaultColor(int style) const; + virtual bool defaultEolFill(int style) const; + QFont defaultFont() const; + virtual QFont defaultFont(int style) const; + QColor defaultPaper() const; + virtual QColor defaultPaper(int style) const; + virtual int defaultStyle() const; + QsciScintilla *editor() const; + virtual void refreshProperties(); + void setAPIs(QsciAbstractAPIs *apis); + void setDefaultColor(const QColor &c); + void setDefaultFont(const QFont &f); + void setDefaultPaper(const QColor &c); + virtual int styleBitsNeeded() const; + virtual const char *wordCharacters() const; + bool readSettings(QSettings &qs, const char *prefix = "/Scintilla"); + bool writeSettings(QSettings &qs, const char *prefix = "/Scintilla") const; + +public slots: + virtual void setAutoIndentStyle(int autoindentstyle); + virtual void setColor(const QColor &c, int style = -1); + virtual void setEolFill(bool eolfill, int style = -1); + virtual void setFont(const QFont &f, int style = -1); + virtual void setPaper(const QColor &c, int style = -1); + +signals: + void colorChanged(const QColor &c, int style); + void eolFillChanged(bool eolfilled, int style); + void fontChanged(const QFont &f, int style); + void paperChanged(const QColor &c, int style); + void propertyChanged(const char *prop, const char *val); + +protected: + virtual bool readProperties(QSettings &qs, const QString &prefix); + virtual bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexer(const QsciLexer &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerasm.sip b/third_party/qscintilla/Python/sip/qscilexerasm.sip new file mode 100644 index 0000000..94047b4 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerasm.sip @@ -0,0 +1,74 @@ +// This is the SIP interface definition for QsciLexerAsm. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerAsm : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Number, + DoubleQuotedString, + Operator, + Identifier, + CPUInstruction, + FPUInstruction, + Register, + Directive, + DirectiveOperand, + BlockComment, + SingleQuotedString, + UnclosedString, + ExtendedInstruction, + CommentDirective, + }; + + QsciLexerAsm(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerAsm(); + + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + QChar commentDelimiter() const; + bool foldSyntaxBased() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + virtual void setCommentDelimiter(QChar delimeter); + virtual void setFoldSyntaxBased(bool syntax_based); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerAsm(const QsciLexerAsm &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexeravs.sip b/third_party/qscintilla/Python/sip/qscilexeravs.sip new file mode 100644 index 0000000..61207cc --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexeravs.sip @@ -0,0 +1,73 @@ +// This is the SIP interface definition for QsciLexerAVS. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerAVS : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + BlockComment, + NestedBlockComment, + LineComment, + Number, + Operator, + Identifier, + String, + TripleString, + Keyword, + Filter, + Plugin, + Function, + ClipProperty, + KeywordSet6 + }; + + QsciLexerAVS(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerAVS(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + int braceStyle() const; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerAVS(const QsciLexerAVS &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerbash.sip b/third_party/qscintilla/Python/sip/qscilexerbash.sip new file mode 100644 index 0000000..9e0aac8 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerbash.sip @@ -0,0 +1,74 @@ +// This is the SIP interface definition for QsciLexerBash. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerBash : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Error, + Comment, + Number, + Keyword, + DoubleQuotedString, + SingleQuotedString, + Operator, + Identifier, + Scalar, + ParameterExpansion, + Backticks, + HereDocumentDelimiter, + SingleQuotedHereDocument + }; + + QsciLexerBash(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerBash(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + int braceStyle() const; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerBash(const QsciLexerBash &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerbatch.sip b/third_party/qscintilla/Python/sip/qscilexerbatch.sip new file mode 100644 index 0000000..6863809 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerbatch.sip @@ -0,0 +1,56 @@ +// This is the SIP interface definition for QsciLexerBatch. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerBatch : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Keyword, + Label, + HideCommandChar, + ExternalCommand, + Variable, + Operator + }; + + QsciLexerBatch(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerBatch(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + bool caseSensitive() const; + +private: + QsciLexerBatch(const QsciLexerBatch &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexercmake.sip b/third_party/qscintilla/Python/sip/qscilexercmake.sip new file mode 100644 index 0000000..39a5d8a --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexercmake.sip @@ -0,0 +1,69 @@ +// This is the SIP interface definition for QsciLexerCMake. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerCMake : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + String, + StringLeftQuote, + StringRightQuote, + Function, + Variable, + Label, + KeywordSet3, + BlockWhile, + BlockForeach, + BlockIf, + BlockMacro, + StringVariable, + Number + }; + + QsciLexerCMake(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerCMake(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + void refreshProperties(); + bool foldAtElse() const; + +public slots: + virtual void setFoldAtElse(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerCMake(const QsciLexerCMake &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexercoffeescript.sip b/third_party/qscintilla/Python/sip/qscilexercoffeescript.sip new file mode 100644 index 0000000..ecb4908 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexercoffeescript.sip @@ -0,0 +1,90 @@ +// This is the SIP interface definition for QsciLexerCoffeeScript. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerCoffeeScript : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + CommentLine, + CommentDoc, + Number, + Keyword, + DoubleQuotedString, + SingleQuotedString, + UUID, + PreProcessor, + Operator, + Identifier, + UnclosedString, + VerbatimString, + Regex, + CommentLineDoc, + KeywordSet2, + CommentDocKeyword, + CommentDocKeywordError, + GlobalClass, + CommentBlock, + BlockRegex, + BlockRegexComment, + InstanceProperty, + }; + + QsciLexerCoffeeScript(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerCoffeeScript(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + QStringList autoCompletionWordSeparators() const; + const char *blockEnd(int *style = 0) const /Encoding="None"/; + const char *blockStart(int *style = 0) const /Encoding="None"/; + const char *blockStartKeyword(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + + void refreshProperties(); + bool dollarsAllowed() const; + void setDollarsAllowed(bool allowed); + bool foldComments() const; + void setFoldComments(bool fold); + bool foldCompact() const; + void setFoldCompact(bool fold); + bool stylePreprocessor() const; + void setStylePreprocessor(bool style); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerCoffeeScript(const QsciLexerCoffeeScript &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexercpp.sip b/third_party/qscintilla/Python/sip/qscilexercpp.sip new file mode 100644 index 0000000..db164d7 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexercpp.sip @@ -0,0 +1,138 @@ +// This is the SIP interface definition for QsciLexerCPP. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerCPP : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + InactiveDefault, + Comment, + InactiveComment, + CommentLine, + InactiveCommentLine, + CommentDoc, + InactiveCommentDoc, + Number, + InactiveNumber, + Keyword, + InactiveKeyword, + DoubleQuotedString, + InactiveDoubleQuotedString, + SingleQuotedString, + InactiveSingleQuotedString, + UUID, + InactiveUUID, + PreProcessor, + InactivePreProcessor, + Operator, + InactiveOperator, + Identifier, + InactiveIdentifier, + UnclosedString, + InactiveUnclosedString, + VerbatimString, + InactiveVerbatimString, + Regex, + InactiveRegex, + CommentLineDoc, + InactiveCommentLineDoc, + KeywordSet2, + InactiveKeywordSet2, + CommentDocKeyword, + InactiveCommentDocKeyword, + CommentDocKeywordError, + InactiveCommentDocKeywordError, + GlobalClass, + InactiveGlobalClass, + RawString, + InactiveRawString, + TripleQuotedVerbatimString, + InactiveTripleQuotedVerbatimString, + HashQuotedString, + InactiveHashQuotedString, + PreProcessorComment, + InactivePreProcessorComment, + PreProcessorCommentLineDoc, + InactivePreProcessorCommentLineDoc, + UserLiteral, + InactiveUserLiteral, + TaskMarker, + InactiveTaskMarker, + EscapeSequence, + InactiveEscapeSequence, + }; + + QsciLexerCPP(QObject *parent /TransferThis/ = 0, + bool caseInsensitiveKeywords = false); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + QStringList autoCompletionWordSeparators() const; + const char *blockEnd(int *style = 0) const /Encoding="None"/; + const char *blockStart(int *style = 0) const /Encoding="None"/; + const char *blockStartKeyword(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + + void refreshProperties(); + bool foldAtElse() const; + bool foldComments() const; + bool foldCompact() const; + bool foldPreprocessor() const; + bool stylePreprocessor() const; + void setDollarsAllowed(bool allowed); + bool dollarsAllowed() const; + void setHighlightTripleQuotedStrings(bool enable); + bool highlightTripleQuotedStrings() const; + void setHighlightHashQuotedStrings(bool enable); + bool highlightHashQuotedStrings() const; + void setHighlightBackQuotedStrings(bool enabled); + bool highlightBackQuotedStrings() const; + void setHighlightEscapeSequences(bool enabled); + bool highlightEscapeSequences() const; + void setVerbatimStringEscapeSequencesAllowed(bool allowed); + bool verbatimStringEscapeSequencesAllowed() const; + +public slots: + virtual void setFoldAtElse(bool fold); + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + virtual void setFoldPreprocessor(bool fold); + virtual void setStylePreprocessor(bool style); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerCPP(const QsciLexerCPP &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexercsharp.sip b/third_party/qscintilla/Python/sip/qscilexercsharp.sip new file mode 100644 index 0000000..09d2fbd --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexercsharp.sip @@ -0,0 +1,41 @@ +// This is the SIP interface definition for QsciLexerCSharp. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerCSharp : QsciLexerCPP +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerCSharp(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerCSharp(); + + const char *language() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + +private: + QsciLexerCSharp(const QsciLexerCSharp &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexercss.sip b/third_party/qscintilla/Python/sip/qscilexercss.sip new file mode 100644 index 0000000..ba55ba2 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexercss.sip @@ -0,0 +1,88 @@ +// This is the SIP interface definition for QsciLexerCSS. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerCSS : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Tag, + ClassSelector, + PseudoClass, + UnknownPseudoClass, + Operator, + CSS1Property, + UnknownProperty, + Value, + Comment, + IDSelector, + Important, + AtRule, + DoubleQuotedString, + SingleQuotedString, + CSS2Property, + Attribute, + CSS3Property, + PseudoElement, + ExtendedCSSProperty, + ExtendedPseudoClass, + ExtendedPseudoElement, + MediaRule, + Variable, + }; + + QsciLexerCSS(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerCSS(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + const char *blockEnd(int *style = 0) const /Encoding="None"/; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + void setHSSLanguage(bool enable); + bool HSSLanguage() const; + void setLessLanguage(bool enable); + bool LessLanguage() const; + void setSCSSLanguage(bool enable); + bool SCSSLanguage() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerCSS(const QsciLexerCSS &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexercustom.sip b/third_party/qscintilla/Python/sip/qscilexercustom.sip new file mode 100644 index 0000000..651ae00 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexercustom.sip @@ -0,0 +1,42 @@ +// This is the SIP interface definition for QsciLexerCustom. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerCustom : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerCustom(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerCustom(); + + virtual void setEditor(QsciScintilla *editor); + virtual int styleBitsNeeded() const; + + void setStyling(int length, int style); + void setStyling(int length, const QsciStyle &style); + + void startStyling(int pos, int styleBits = 0); + virtual void styleText(int start, int end) = 0; + +private: + QsciLexerCustom(const QsciLexerCustom &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerd.sip b/third_party/qscintilla/Python/sip/qscilexerd.sip new file mode 100644 index 0000000..9ff3401 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerd.sip @@ -0,0 +1,88 @@ +// This is the SIP interface definition for QsciLexerD. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerD : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + CommentLine, + CommentDoc, + CommentNested, + Number, + Keyword, + KeywordSecondary, + KeywordDoc, + Typedefs, + String, + UnclosedString, + Character, + Operator, + Identifier, + CommentLineDoc, + CommentDocKeyword, + CommentDocKeywordError, + BackquoteString, + RawString, + KeywordSet5, + KeywordSet6, + KeywordSet7, + }; + + QsciLexerD(QObject *parent /TransferThis/ = 0); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + QStringList autoCompletionWordSeparators() const; + const char *blockEnd(int *style = 0) const /Encoding="None"/; + const char *blockStart(int *style = 0) const /Encoding="None"/; + const char *blockStartKeyword(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + + void refreshProperties(); + bool foldAtElse() const; + bool foldComments() const; + bool foldCompact() const; + +public slots: + virtual void setFoldAtElse(bool fold); + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerD(const QsciLexerD &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerdiff.sip b/third_party/qscintilla/Python/sip/qscilexerdiff.sip new file mode 100644 index 0000000..373c769 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerdiff.sip @@ -0,0 +1,54 @@ +// This is the SIP interface definition for QsciLexerDiff. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerDiff : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Command, + Header, + Position, + LineRemoved, + LineAdded, + LineChanged, + AddingPatchAdded, + RemovingPatchAdded, + AddingPatchRemoved, + RemovingPatchRemoved, + }; + + QsciLexerDiff(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerDiff(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QString description(int style) const; + const char *wordCharacters() const; + +private: + QsciLexerDiff(const QsciLexerDiff &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexeredifact.sip b/third_party/qscintilla/Python/sip/qscilexeredifact.sip new file mode 100644 index 0000000..e994eb6 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexeredifact.sip @@ -0,0 +1,50 @@ +// This is the SIP interface definition for QsciLexerEDIFACT. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerEDIFACT : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + SegmentStart, + SegmentEnd, + ElementSeparator, + CompositeSeparator, + ReleaseSeparator, + UNASegmentHeader, + UNHSegmentHeader, + BadSegment + }; + + QsciLexerEDIFACT(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerEDIFACT(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QString description(int style) const; + +private: + QsciLexerEDIFACT(const QsciLexerEDIFACT &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerfortran.sip b/third_party/qscintilla/Python/sip/qscilexerfortran.sip new file mode 100644 index 0000000..0bb220c --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerfortran.sip @@ -0,0 +1,36 @@ +// This is the SIP interface definition for QsciLexerFortran. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerFortran : QsciLexerFortran77 +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerFortran(QObject *parent /TransferThis/ = 0); + + const char *language() const; + const char *lexer() const; + const char *keywords(int set) const; + +private: + QsciLexerFortran(const QsciLexerFortran &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerfortran77.sip b/third_party/qscintilla/Python/sip/qscilexerfortran77.sip new file mode 100644 index 0000000..fd1fccc --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerfortran77.sip @@ -0,0 +1,71 @@ +// This is the SIP interface definition for QsciLexerFortran77. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerFortran77 : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Number, + SingleQuotedString, + DoubleQuotedString, + UnclosedString, + Operator, + Identifier, + Keyword, + IntrinsicFunction, + ExtendedFunction, + PreProcessor, + DottedOperator, + Label, + Continuation, + }; + + QsciLexerFortran77(QObject *parent /TransferThis/ = 0); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + int braceStyle() const; + + void refreshProperties(); + bool foldCompact() const; + +public slots: + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerFortran77(const QsciLexerFortran77 &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerhex.sip b/third_party/qscintilla/Python/sip/qscilexerhex.sip new file mode 100644 index 0000000..779a5ad --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerhex.sip @@ -0,0 +1,58 @@ +// This is the SIP interface definition for QsciLexerHex. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerHex : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + RecordStart, + RecordType, + UnknownRecordType, + ByteCount, + IncorrectByteCount, + NoAddress, + DataAddress, + RecordCount, + StartAddress, + ExtendedAddress, + OddData, + EvenData, + UnknownData, + Checksum, + IncorrectChecksum, + TrailingGarbage, + }; + + QsciLexerHex(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerHex(); + + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + QString description(int style) const; + +private: + QsciLexerHex(const QsciLexerHex &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerhtml.sip b/third_party/qscintilla/Python/sip/qscilexerhtml.sip new file mode 100644 index 0000000..497a683 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerhtml.sip @@ -0,0 +1,181 @@ +// This is the SIP interface definition for QsciLexerHTML. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerHTML : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Tag, + UnknownTag, + Attribute, + UnknownAttribute, + HTMLNumber, + HTMLDoubleQuotedString, + HTMLSingleQuotedString, + OtherInTag, + HTMLComment, + Entity, + XMLTagEnd, + XMLStart, + XMLEnd, + Script, + ASPAtStart, + ASPStart, + CDATA, + PHPStart, + HTMLValue, + ASPXCComment, + SGMLDefault, + SGMLCommand, + SGMLParameter, + SGMLDoubleQuotedString, + SGMLSingleQuotedString, + SGMLError, + SGMLSpecial, + SGMLEntity, + SGMLComment, + SGMLParameterComment, + SGMLBlockDefault, + JavaScriptStart, + JavaScriptDefault, + JavaScriptComment, + JavaScriptCommentLine, + JavaScriptCommentDoc, + JavaScriptNumber, + JavaScriptWord, + JavaScriptKeyword, + JavaScriptDoubleQuotedString, + JavaScriptSingleQuotedString, + JavaScriptSymbol, + JavaScriptUnclosedString, + JavaScriptRegex, + ASPJavaScriptStart, + ASPJavaScriptDefault, + ASPJavaScriptComment, + ASPJavaScriptCommentLine, + ASPJavaScriptCommentDoc, + ASPJavaScriptNumber, + ASPJavaScriptWord, + ASPJavaScriptKeyword, + ASPJavaScriptDoubleQuotedString, + ASPJavaScriptSingleQuotedString, + ASPJavaScriptSymbol, + ASPJavaScriptUnclosedString, + ASPJavaScriptRegex, + VBScriptStart, + VBScriptDefault, + VBScriptComment, + VBScriptNumber, + VBScriptKeyword, + VBScriptString, + VBScriptIdentifier, + VBScriptUnclosedString, + ASPVBScriptStart, + ASPVBScriptDefault, + ASPVBScriptComment, + ASPVBScriptNumber, + ASPVBScriptKeyword, + ASPVBScriptString, + ASPVBScriptIdentifier, + ASPVBScriptUnclosedString, + PythonStart, + PythonDefault, + PythonComment, + PythonNumber, + PythonDoubleQuotedString, + PythonSingleQuotedString, + PythonKeyword, + PythonTripleSingleQuotedString, + PythonTripleDoubleQuotedString, + PythonClassName, + PythonFunctionMethodName, + PythonOperator, + PythonIdentifier, + ASPPythonStart, + ASPPythonDefault, + ASPPythonComment, + ASPPythonNumber, + ASPPythonDoubleQuotedString, + ASPPythonSingleQuotedString, + ASPPythonKeyword, + ASPPythonTripleSingleQuotedString, + ASPPythonTripleDoubleQuotedString, + ASPPythonClassName, + ASPPythonFunctionMethodName, + ASPPythonOperator, + ASPPythonIdentifier, + PHPDefault, + PHPDoubleQuotedString, + PHPSingleQuotedString, + PHPKeyword, + PHPNumber, + PHPVariable, + PHPComment, + PHPCommentLine, + PHPDoubleQuotedVariable, + PHPOperator + }; + + QsciLexerHTML(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerHTML(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + const char *autoCompletionFillups() const /Encoding="None"/; + bool caseSensitive() const; + + void refreshProperties(); + bool caseSensitiveTags() const; + void setDjangoTemplates(bool enable); + bool djangoTemplates() const; + bool foldCompact() const; + bool foldPreprocessor() const; + void setFoldScriptComments(bool fold); + bool foldScriptComments() const; + void setFoldScriptHeredocs(bool fold); + bool foldScriptHeredocs() const; + void setMakoTemplates(bool enable); + bool makoTemplates() const; + +public slots: + virtual void setFoldCompact(bool fold); + virtual void setFoldPreprocessor(bool fold); + virtual void setCaseSensitiveTags(bool sens); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerHTML(const QsciLexerHTML &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexeridl.sip b/third_party/qscintilla/Python/sip/qscilexeridl.sip new file mode 100644 index 0000000..52347dc --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexeridl.sip @@ -0,0 +1,38 @@ +// This is the SIP interface definition for QsciLexerIDL. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerIDL : QsciLexerCPP +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerIDL(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerIDL(); + + const char *language() const; + QColor defaultColor(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + +private: + QsciLexerIDL(const QsciLexerIDL &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerintelhex.sip b/third_party/qscintilla/Python/sip/qscilexerintelhex.sip new file mode 100644 index 0000000..6384c9d --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerintelhex.sip @@ -0,0 +1,37 @@ +// This is the SIP interface definition for QsciLexerIntelHex. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerIntelHex : QsciLexerHex +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerIntelHex(QObject *parent = 0); + virtual ~QsciLexerIntelHex(); + + const char *language() const; + const char *lexer() const; + QString description(int style) const; + +private: + QsciLexerIntelHex(const QsciLexerIntelHex &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerjava.sip b/third_party/qscintilla/Python/sip/qscilexerjava.sip new file mode 100644 index 0000000..49699ae --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerjava.sip @@ -0,0 +1,36 @@ +// This is the SIP interface definition for QsciLexerJava. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerJava : QsciLexerCPP +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerJava(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerJava(); + + const char *language() const; + const char *keywords(int set) const; + +private: + QsciLexerJava(const QsciLexerJava &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerjavascript.sip b/third_party/qscintilla/Python/sip/qscilexerjavascript.sip new file mode 100644 index 0000000..1f648a7 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerjavascript.sip @@ -0,0 +1,41 @@ +// This is the SIP interface definition for QsciLexerJavaScript. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerJavaScript : QsciLexerCPP +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerJavaScript(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerJavaScript(); + + const char *language() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + +private: + QsciLexerJavaScript(const QsciLexerJavaScript &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerjson.sip b/third_party/qscintilla/Python/sip/qscilexerjson.sip new file mode 100644 index 0000000..5af1f1a --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerjson.sip @@ -0,0 +1,71 @@ +// This is the SIP interface definition for QsciLexerJSON. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerJSON : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Number, + String, + UnclosedString, + Property, + EscapeSequence, + CommentLine, + CommentBlock, + Operator, + IRI, + IRICompact, + Keyword, + KeywordLD, + Error, + }; + + QsciLexerJSON(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerJSON(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + void refreshProperties(); + void setHighlightComments(bool highlight); + bool highlightComments() const; + void setHighlightEscapeSequences(bool highlight); + bool highlightEscapeSequences() const; + void setFoldCompact(bool fold); + bool foldCompact() const; + +protected: + bool readProperties(QSettings &qs,const QString &prefix); + bool writeProperties(QSettings &qs,const QString &prefix) const; + +private: + QsciLexerJSON(const QsciLexerJSON &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerlua.sip b/third_party/qscintilla/Python/sip/qscilexerlua.sip new file mode 100644 index 0000000..475a840 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerlua.sip @@ -0,0 +1,79 @@ +// This is the SIP interface definition for QsciLexerLua. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerLua : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + LineComment, + Number, + Keyword, + String, + Character, + LiteralString, + Preprocessor, + Operator, + Identifier, + UnclosedString, + BasicFunctions, + StringTableMathsFunctions, + CoroutinesIOSystemFacilities, + KeywordSet5, + KeywordSet6, + KeywordSet7, + KeywordSet8, + Label, + }; + + QsciLexerLua(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerLua(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + QStringList autoCompletionWordSeparators() const; + const char *blockStart(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + + void refreshProperties(); + bool foldCompact() const; + +public slots: + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerLua(const QsciLexerLua &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexermakefile.sip b/third_party/qscintilla/Python/sip/qscilexermakefile.sip new file mode 100644 index 0000000..b060290 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexermakefile.sip @@ -0,0 +1,52 @@ +// This is the SIP interface definition for QsciLexerMakefile. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerMakefile : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Preprocessor, + Variable, + Operator, + Target, + Error + }; + + QsciLexerMakefile(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerMakefile(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + QString description(int style) const; + const char *wordCharacters() const; + +private: + QsciLexerMakefile(const QsciLexerMakefile &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexermarkdown.sip b/third_party/qscintilla/Python/sip/qscilexermarkdown.sip new file mode 100644 index 0000000..8786610 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexermarkdown.sip @@ -0,0 +1,65 @@ +// This is the SIP interface definition for QsciLexerMarkdown. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerMarkdown : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Special, + StrongEmphasisAsterisks, + StrongEmphasisUnderscores, + EmphasisAsterisks, + EmphasisUnderscores, + Header1, + Header2, + Header3, + Header4, + Header5, + Header6, + Prechar, + UnorderedListItem, + OrderedListItem, + BlockQuote, + StrikeOut, + HorizontalRule, + Link, + CodeBackticks, + CodeDoubleBackticks, + CodeBlock, + }; + + QsciLexerMarkdown(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerMarkdown(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + QString description(int style) const; + +private: + QsciLexerMarkdown(const QsciLexerMarkdown &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexermasm.sip b/third_party/qscintilla/Python/sip/qscilexermasm.sip new file mode 100644 index 0000000..b948f15 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexermasm.sip @@ -0,0 +1,36 @@ +// This is the SIP interface definition for QsciLexerMASM. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerMASM : QsciLexerAsm +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerMASM(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerMASM(); + + const char *language() const; + const char *lexer() const; + +private: + QsciLexerMASM(const QsciLexerMASM &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexermatlab.sip b/third_party/qscintilla/Python/sip/qscilexermatlab.sip new file mode 100644 index 0000000..252d19a --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexermatlab.sip @@ -0,0 +1,52 @@ +// This is the SIP interface definition for QsciLexerMatlab. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerMatlab : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Command, + Number, + Keyword, + SingleQuotedString, + Operator, + Identifier, + DoubleQuotedString + }; + + QsciLexerMatlab(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerMatlab(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + +private: + QsciLexerMatlab(const QsciLexerMatlab &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexernasm.sip b/third_party/qscintilla/Python/sip/qscilexernasm.sip new file mode 100644 index 0000000..130d20f --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexernasm.sip @@ -0,0 +1,36 @@ +// This is the SIP interface definition for QsciLexerNASM. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerNASM : QsciLexerAsm +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerNASM(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerNASM(); + + const char *language() const; + const char *lexer() const; + +private: + QsciLexerNASM(const QsciLexerNASM &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexeroctave.sip b/third_party/qscintilla/Python/sip/qscilexeroctave.sip new file mode 100644 index 0000000..5590cbe --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexeroctave.sip @@ -0,0 +1,37 @@ +// This is the SIP interface definition for QsciLexerOctave. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerOctave : QsciLexerMatlab +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerOctave(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerOctave(); + + const char *language() const; + const char *lexer() const; + const char *keywords(int set) const; + +private: + QsciLexerOctave(const QsciLexerOctave &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerpascal.sip b/third_party/qscintilla/Python/sip/qscilexerpascal.sip new file mode 100644 index 0000000..70cd48f --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerpascal.sip @@ -0,0 +1,82 @@ +// This is the SIP interface definition for QsciLexerPascal. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerPascal : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Identifier, + Comment, + CommentParenthesis, + CommentLine, + PreProcessor, + PreProcessorParenthesis, + Number, + HexNumber, + Keyword, + SingleQuotedString, + UnclosedString, + Character, + Operator, + Asm, + }; + + QsciLexerPascal(QObject *parent /TransferThis/ = 0); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + QStringList autoCompletionWordSeparators() const; + const char *blockEnd(int *style = 0) const /Encoding="None"/; + const char *blockStart(int *style = 0) const /Encoding="None"/; + const char *blockStartKeyword(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + bool foldPreprocessor() const; + + void setSmartHighlighting(bool enabled); + bool smartHighlighting() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + virtual void setFoldPreprocessor(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerPascal(const QsciLexerPascal &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerperl.sip b/third_party/qscintilla/Python/sip/qscilexerperl.sip new file mode 100644 index 0000000..65d18eb --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerperl.sip @@ -0,0 +1,111 @@ +// This is the SIP interface definition for QsciLexerPerl. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerPerl : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Error, + Comment, + POD, + Number, + Keyword, + DoubleQuotedString, + SingleQuotedString, + Operator, + Identifier, + Scalar, + Array, + Hash, + SymbolTable, + Regex, + Substitution, + Backticks, + DataSection, + HereDocumentDelimiter, + SingleQuotedHereDocument, + DoubleQuotedHereDocument, + BacktickHereDocument, + QuotedStringQ, + QuotedStringQQ, + QuotedStringQX, + QuotedStringQR, + QuotedStringQW, + PODVerbatim, + SubroutinePrototype, + FormatIdentifier, + FormatBody, + DoubleQuotedStringVar, + Translation, + RegexVar, + SubstitutionVar, + BackticksVar, + DoubleQuotedHereDocumentVar, + BacktickHereDocumentVar, + QuotedStringQQVar, + QuotedStringQXVar, + QuotedStringQRVar, + }; + + QsciLexerPerl(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerPerl(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + QStringList autoCompletionWordSeparators() const; + const char *blockEnd(int *style = 0) const /Encoding="None"/; + const char *blockStart(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + + void setFoldAtElse(bool fold); + bool foldAtElse() const; + void setFoldPackages(bool fold); + bool foldPackages() const; + void setFoldPODBlocks(bool fold); + bool foldPODBlocks() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerPerl(const QsciLexerPerl &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerpo.sip b/third_party/qscintilla/Python/sip/qscilexerpo.sip new file mode 100644 index 0000000..42a1b30 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerpo.sip @@ -0,0 +1,69 @@ +// This is the SIP interface definition for QsciLexerPO. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerPO : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + MessageId, + MessageIdText, + MessageString, + MessageStringText, + MessageContext, + MessageContextText, + Fuzzy, + ProgrammerComment, + Reference, + Flags, + MessageIdTextEOL, + MessageStringTextEOL, + MessageContextTextEOL + }; + + QsciLexerPO(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerPO(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + QString description(int style) const; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerPO(const QsciLexerPO &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerpostscript.sip b/third_party/qscintilla/Python/sip/qscilexerpostscript.sip new file mode 100644 index 0000000..caac048 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerpostscript.sip @@ -0,0 +1,78 @@ +// This is the SIP interface definition for QsciLexerPostScript. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerPostScript : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + DSCComment, + DSCCommentValue, + Number, + Name, + Keyword, + Literal, + ImmediateEvalLiteral, + ArrayParenthesis, + DictionaryParenthesis, + ProcedureParenthesis, + Text, + HexString, + Base85String, + BadStringCharacter + }; + + QsciLexerPostScript(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerPostScript(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + int braceStyle() const; + + void refreshProperties(); + bool tokenize() const; + int level() const; + bool foldCompact() const; + bool foldAtElse() const; + +public slots: + virtual void setTokenize(bool tokenize); + virtual void setLevel(int level); + virtual void setFoldCompact(bool fold); + virtual void setFoldAtElse(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerPostScript(const QsciLexerPostScript &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerpov.sip b/third_party/qscintilla/Python/sip/qscilexerpov.sip new file mode 100644 index 0000000..64511ba --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerpov.sip @@ -0,0 +1,79 @@ +// This is the SIP interface definition for QsciLexerPOV. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerPOV : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + CommentLine, + Number, + Operator, + Identifier, + String, + UnclosedString, + Directive, + BadDirective, + ObjectsCSGAppearance, + TypesModifiersItems, + PredefinedIdentifiers, + PredefinedFunctions, + KeywordSet6, + KeywordSet7, + KeywordSet8 + }; + + QsciLexerPOV(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerPOV(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + int braceStyle() const; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + bool foldDirectives() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + virtual void setFoldDirectives(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerPOV(const QsciLexerPOV &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerproperties.sip b/third_party/qscintilla/Python/sip/qscilexerproperties.sip new file mode 100644 index 0000000..c160f06 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerproperties.sip @@ -0,0 +1,63 @@ +// This is the SIP interface definition for QsciLexerProperties. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerProperties : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Section, + Assignment, + DefaultValue, + Key + }; + + QsciLexerProperties(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerProperties(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + QString description(int style) const; + const char *wordCharacters() const; + + void refreshProperties(); + bool foldCompact() const; + void setInitialSpaces(bool enable); + bool initialSpaces() const; + +public slots: + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerProperties(const QsciLexerProperties &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerpython.sip b/third_party/qscintilla/Python/sip/qscilexerpython.sip new file mode 100644 index 0000000..8e55efe --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerpython.sip @@ -0,0 +1,105 @@ +// This is the SIP interface definition for QsciLexerPython. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerPython : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Number, + DoubleQuotedString, + SingleQuotedString, + Keyword, + TripleSingleQuotedString, + TripleDoubleQuotedString, + ClassName, + FunctionMethodName, + Operator, + Identifier, + CommentBlock, + UnclosedString, + HighlightedIdentifier, + Decorator, + DoubleQuotedFString, + SingleQuotedFString, + TripleSingleQuotedFString, + TripleDoubleQuotedFString, + }; + + enum IndentationWarning { + NoWarning, + Inconsistent, + TabsAfterSpaces, + Spaces, + Tabs + }; + + QsciLexerPython(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerPython(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + QStringList autoCompletionWordSeparators() const; + int blockLookback() const; + const char *blockStart(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + int indentationGuideView() const; + + void refreshProperties(); + bool foldComments() const; + void setFoldCompact(bool fold); + bool foldCompact() const; + bool foldQuotes() const; + QsciLexerPython::IndentationWarning indentationWarning() const; + void setHighlightSubidentifiers(bool enabled); + bool highlightSubidentifiers() const; + void setStringsOverNewlineAllowed(bool allowed); + bool stringsOverNewlineAllowed() const; + void setV2UnicodeAllowed(bool allowed); + bool v2UnicodeAllowed() const; + void setV3BinaryOctalAllowed(bool allowed); + bool v3BinaryOctalAllowed() const; + void setV3BytesAllowed(bool allowed); + bool v3BytesAllowed() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldQuotes(bool fold); + virtual void setIndentationWarning(QsciLexerPython::IndentationWarning warn); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerPython(const QsciLexerPython &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerruby.sip b/third_party/qscintilla/Python/sip/qscilexerruby.sip new file mode 100644 index 0000000..9646983 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerruby.sip @@ -0,0 +1,91 @@ +// This is the SIP interface definition for QsciLexerRuby. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerRuby : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Error, + Comment, + POD, + Number, + Keyword, + DoubleQuotedString, + SingleQuotedString, + ClassName, + FunctionMethodName, + Operator, + Identifier, + Regex, + Global, + Symbol, + ModuleName, + InstanceVariable, + ClassVariable, + Backticks, + DataSection, + HereDocumentDelimiter, + HereDocument, + PercentStringq, + PercentStringQ, + PercentStringx, + PercentStringr, + PercentStringw, + DemotedKeyword, + Stdin, + Stdout, + Stderr + }; + + QsciLexerRuby(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerRuby(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int) const; + QString description(int style) const; + + const char *blockEnd(int *style = 0) const /Encoding="None"/; + const char *blockStart(int *style = 0) const /Encoding="None"/; + const char *blockStartKeyword(int *style = 0) const /Encoding="None"/; + int braceStyle() const; + + void refreshProperties(); + void setFoldComments(bool fold); + bool foldComments() const; + void setFoldCompact(bool fold); + bool foldCompact() const; + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerRuby(const QsciLexerRuby &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerspice.sip b/third_party/qscintilla/Python/sip/qscilexerspice.sip new file mode 100644 index 0000000..1d53536 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerspice.sip @@ -0,0 +1,54 @@ +// This is the SIP interface definition for QsciLexerSpice. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerSpice : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Identifier, + Command, + Function, + Parameter, + Number, + Delimiter, + Value, + Comment + }; + + QsciLexerSpice(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerSpice(); + + const char *language() const; + const char *lexer() const; + const char *keywords(int set) const; + QColor defaultColor(int style) const; + QFont defaultFont(int style) const; + QString description(int style) const; + + int braceStyle() const; + +private: + QsciLexerSpice(const QsciLexerSpice &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexersql.sip b/third_party/qscintilla/Python/sip/qscilexersql.sip new file mode 100644 index 0000000..7dbfa61 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexersql.sip @@ -0,0 +1,93 @@ +// This is the SIP interface definition for QsciLexerSQL. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerSQL : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + CommentLine, + CommentDoc, + Number, + Keyword, + DoubleQuotedString, + SingleQuotedString, + PlusKeyword, + PlusPrompt, + Operator, + Identifier, + PlusComment, + CommentLineHash, + CommentDocKeyword, + CommentDocKeywordError, + KeywordSet5, + KeywordSet6, + KeywordSet7, + KeywordSet8, + QuotedIdentifier, + QuotedOperator, + }; + + QsciLexerSQL(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerSQL(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + int braceStyle() const; + + void refreshProperties(); + bool backslashEscapes() const; + void setDottedWords(bool enable); + bool dottedWords() const; + void setFoldAtElse(bool fold); + bool foldAtElse() const; + bool foldComments() const; + bool foldCompact() const; + void setFoldOnlyBegin(bool fold); + bool foldOnlyBegin() const; + void setHashComments(bool enable); + bool hashComments() const; + void setQuotedIdentifiers(bool enable); + bool quotedIdentifiers() const; + +public slots: + virtual void setBackslashEscapes(bool enable); + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerSQL(const QsciLexerSQL &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexersrec.sip b/third_party/qscintilla/Python/sip/qscilexersrec.sip new file mode 100644 index 0000000..f6923c5 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexersrec.sip @@ -0,0 +1,37 @@ +// This is the SIP interface definition for QsciLexerSRec. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerSRec : QsciLexerHex +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerSRec(QObject *parent = 0); + virtual ~QsciLexerSRec(); + + const char *language() const; + const char *lexer() const; + QString description(int style) const; + +private: + QsciLexerSRec(const QsciLexerSRec &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexertcl.sip b/third_party/qscintilla/Python/sip/qscilexertcl.sip new file mode 100644 index 0000000..a3af386 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexertcl.sip @@ -0,0 +1,77 @@ +// This is the SIP interface definition for QsciLexerTCL. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerTCL : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + CommentLine, + Number, + QuotedKeyword, + QuotedString, + Operator, + Identifier, + Substitution, + SubstitutionBrace, + Modifier, + ExpandKeyword, + TCLKeyword, + TkKeyword, + ITCLKeyword, + TkCommand, + KeywordSet6, + KeywordSet7, + KeywordSet8, + KeywordSet9, + CommentBox, + CommentBlock + }; + + QsciLexerTCL(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerTCL(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + int braceStyle() const; + + void refreshProperties(); + void setFoldComments(bool fold); + bool foldComments() const; + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerTCL(const QsciLexerTCL &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexertekhex.sip b/third_party/qscintilla/Python/sip/qscilexertekhex.sip new file mode 100644 index 0000000..c2bca3e --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexertekhex.sip @@ -0,0 +1,37 @@ +// This is the SIP interface definition for QsciLexerTekHex. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerTekHex : QsciLexerHex +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerTekHex(QObject *parent = 0); + virtual ~QsciLexerTekHex(); + + const char *language() const; + const char *lexer() const; + QString description(int style) const; + +private: + QsciLexerTekHex(const QsciLexerTekHex &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexertex.sip b/third_party/qscintilla/Python/sip/qscilexertex.sip new file mode 100644 index 0000000..8d85043 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexertex.sip @@ -0,0 +1,63 @@ +// This is the SIP interface definition for QsciLexerTeX. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerTeX : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Special, + Group, + Symbol, + Command, + Text + }; + + QsciLexerTeX(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerTeX(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + void refreshProperties(); + void setFoldComments(bool fold); + bool foldComments() const; + void setFoldCompact(bool fold); + bool foldCompact() const; + void setProcessComments(bool enable); + bool processComments() const; + void setProcessIf(bool enable); + bool processIf() const; + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerTeX(const QsciLexerTeX &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerverilog.sip b/third_party/qscintilla/Python/sip/qscilexerverilog.sip new file mode 100644 index 0000000..7ed2bea --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerverilog.sip @@ -0,0 +1,106 @@ +// This is the SIP interface definition for QsciLexerVerilog. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerVerilog : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + InactiveDefault, + Comment, + InactiveComment, + CommentLine, + InactiveCommentLine, + CommentBang, + InactiveCommentBang, + Number, + InactiveNumber, + Keyword, + InactiveKeyword, + String, + InactiveString, + KeywordSet2, + InactiveKeywordSet2, + SystemTask, + InactiveSystemTask, + Preprocessor, + InactivePreprocessor, + Operator, + InactiveOperator, + Identifier, + InactiveIdentifier, + UnclosedString, + InactiveUnclosedString, + UserKeywordSet, + InactiveUserKeywordSet, + CommentKeyword, + InactiveCommentKeyword, + DeclareInputPort, + InactiveDeclareInputPort, + DeclareOutputPort, + InactiveDeclareOutputPort, + DeclareInputOutputPort, + InactiveDeclareInputOutputPort, + PortConnection, + InactivePortConnection, + }; + + QsciLexerVerilog(QObject *parent /TransferThis/ = 0); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + const char *wordCharacters() const; + + int braceStyle() const; + + void refreshProperties(); + + void setFoldAtElse(bool fold); + bool foldAtElse() const; + + void setFoldComments(bool fold); + bool foldComments() const; + + void setFoldCompact(bool fold); + bool foldCompact() const; + + void setFoldPreprocessor(bool fold); + bool foldPreprocessor() const; + + void setFoldAtModule(bool fold); + bool foldAtModule() const; + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerVerilog(const QsciLexerVerilog &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexervhdl.sip b/third_party/qscintilla/Python/sip/qscilexervhdl.sip new file mode 100644 index 0000000..a3af1e0 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexervhdl.sip @@ -0,0 +1,81 @@ +// This is the SIP interface definition for QsciLexerVHDL. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerVHDL : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + CommentLine, + Number, + String, + Operator, + Identifier, + UnclosedString, + Keyword, + StandardOperator, + Attribute, + StandardFunction, + StandardPackage, + StandardType, + KeywordSet7, + CommentBlock + }; + + QsciLexerVHDL(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerVHDL(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + int braceStyle() const; + + void refreshProperties(); + bool foldComments() const; + bool foldCompact() const; + bool foldAtElse() const; + bool foldAtBegin() const; + bool foldAtParenthesis() const; + +public slots: + virtual void setFoldComments(bool fold); + virtual void setFoldCompact(bool fold); + virtual void setFoldAtElse(bool fold); + virtual void setFoldAtBegin(bool fold); + virtual void setFoldAtParenthesis(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerVHDL(const QsciLexerVHDL &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexerxml.sip b/third_party/qscintilla/Python/sip/qscilexerxml.sip new file mode 100644 index 0000000..cb67ab3 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexerxml.sip @@ -0,0 +1,49 @@ +// This is the SIP interface definition for QsciLexerXML. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerXML : QsciLexerHTML +{ +%TypeHeaderCode +#include +%End + +public: + QsciLexerXML(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerXML(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + + void refreshProperties(); + void setScriptsStyled(bool styled); + bool scriptsStyled() const; + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerXML(const QsciLexerXML &); +}; diff --git a/third_party/qscintilla/Python/sip/qscilexeryaml.sip b/third_party/qscintilla/Python/sip/qscilexeryaml.sip new file mode 100644 index 0000000..a208263 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscilexeryaml.sip @@ -0,0 +1,65 @@ +// This is the SIP interface definition for QsciLexerYAML. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciLexerYAML : QsciLexer +{ +%TypeHeaderCode +#include +%End + +public: + enum { + Default, + Comment, + Identifier, + Keyword, + Number, + Reference, + DocumentDelimiter, + TextBlockMarker, + SyntaxErrorMarker, + Operator + }; + + QsciLexerYAML(QObject *parent /TransferThis/ = 0); + virtual ~QsciLexerYAML(); + + const char *language() const; + const char *lexer() const; + QColor defaultColor(int style) const; + bool defaultEolFill(int style) const; + QFont defaultFont(int style) const; + QColor defaultPaper(int style) const; + const char *keywords(int set) const; + QString description(int style) const; + + void refreshProperties(); + bool foldComments() const; + +public slots: + virtual void setFoldComments(bool fold); + +protected: + bool readProperties(QSettings &qs, const QString &prefix); + bool writeProperties(QSettings &qs, const QString &prefix) const; + +private: + QsciLexerYAML(const QsciLexerYAML &); +}; diff --git a/third_party/qscintilla/Python/sip/qscimacro.sip b/third_party/qscintilla/Python/sip/qscimacro.sip new file mode 100644 index 0000000..5a7bb2c --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscimacro.sip @@ -0,0 +1,44 @@ +// This is the SIP interface definition for QsciMacro. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciMacro : QObject +{ +%TypeHeaderCode +#include +%End + +public: + QsciMacro(QsciScintilla *parent /TransferThis/); + QsciMacro(const QString &asc, QsciScintilla *parent /TransferThis/); + + virtual ~QsciMacro(); + + void clear(); + bool load(const QString &asc); + QString save() const; + +public slots: + virtual void play(); + virtual void startRecording(); + virtual void endRecording(); + +private: + QsciMacro(const QsciMacro &); +}; diff --git a/third_party/qscintilla/Python/sip/qscimod5.sip b/third_party/qscintilla/Python/sip/qscimod5.sip new file mode 100644 index 0000000..06f2029 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscimod5.sip @@ -0,0 +1,23 @@ +// This is the SIP interface definition for the Qsci module of PyQt5. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +%Module(name=PyQt5.Qsci, keyword_arguments="Optional", use_limited_api=True) + +%Include qscimodcommon.sip diff --git a/third_party/qscintilla/Python/sip/qscimod6.sip b/third_party/qscintilla/Python/sip/qscimod6.sip new file mode 100644 index 0000000..61c6cfd --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscimod6.sip @@ -0,0 +1,23 @@ +// This is the SIP interface definition for the Qsci module of PyQt6. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +%Module(name=PyQt6.Qsci, keyword_arguments="Optional", use_limited_api=True) + +%Include qscimodcommon.sip diff --git a/third_party/qscintilla/Python/sip/qscimodcommon.sip b/third_party/qscintilla/Python/sip/qscimodcommon.sip new file mode 100644 index 0000000..425ad08 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscimodcommon.sip @@ -0,0 +1,112 @@ +// This is the SIP interface definition for the parts of the Qsci module common +// to PyQt5 and PyQt6. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +%Copying +Copyright (c) 2023 Riverbank Computing Limited + +This file is part of QScintilla. + +This file may be used under the terms of the GNU General Public License +version 3.0 as published by the Free Software Foundation and appearing in +the file LICENSE included in the packaging of this file. Please review the +following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you do not wish to use this file under the terms of the GPL version 3.0 +then you may purchase a commercial license. For more information contact +info@riverbankcomputing.com. + +This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +%End + + +%Import QtCore/QtCoremod.sip +%Import QtGui/QtGuimod.sip +%Import QtWidgets/QtWidgetsmod.sip + +%If (PyQt_Printer) +%Import QtPrintSupport/QtPrintSupportmod.sip +%End + + +const int QSCINTILLA_VERSION; +const char *QSCINTILLA_VERSION_STR; + + +%Include qsciscintillabase.sip +%Include qsciscintilla.sip +%Include qsciabstractapis.sip +%Include qsciapis.sip +%Include qscicommand.sip +%Include qscicommandset.sip +%Include qscidocument.sip +%Include qscilexer.sip +%Include qscilexerasm.sip +%Include qscilexeravs.sip +%Include qscilexerbash.sip +%Include qscilexerbatch.sip +%Include qscilexercmake.sip +%Include qscilexercoffeescript.sip +%Include qscilexercpp.sip +%Include qscilexercsharp.sip +%Include qscilexercss.sip +%Include qscilexercustom.sip +%Include qscilexerd.sip +%Include qscilexerdiff.sip +%Include qscilexerfortran.sip +%Include qscilexerfortran77.sip +%Include qscilexerhex.sip +%Include qscilexerhtml.sip +%Include qscilexeridl.sip +%Include qscilexerintelhex.sip +%Include qscilexerjava.sip +%Include qscilexerjavascript.sip +%Include qscilexerjson.sip +%Include qscilexerlua.sip +%Include qscilexermakefile.sip +%Include qscilexermarkdown.sip +%Include qscilexermasm.sip +%Include qscilexermatlab.sip +%Include qscilexernasm.sip +%Include qscilexeroctave.sip +%Include qscilexerpascal.sip +%Include qscilexerperl.sip +%Include qscilexerpostscript.sip +%Include qscilexerpo.sip +%Include qscilexerpov.sip +%Include qscilexerproperties.sip +%Include qscilexerpython.sip +%Include qscilexerruby.sip +%Include qscilexerspice.sip +%Include qscilexersql.sip +%Include qscilexersrec.sip +%Include qscilexertcl.sip +%Include qscilexertekhex.sip +%Include qscilexertex.sip +%Include qscilexerverilog.sip +%Include qscilexervhdl.sip +%Include qscilexerxml.sip +%Include qscilexeryaml.sip +%Include qscimacro.sip +%Include qsciprinter.sip +%Include qscistyle.sip +%Include qscistyledtext.sip diff --git a/third_party/qscintilla/Python/sip/qsciprinter.sip b/third_party/qscintilla/Python/sip/qsciprinter.sip new file mode 100644 index 0000000..fd53696 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qsciprinter.sip @@ -0,0 +1,47 @@ +// This is the SIP interface definition for QsciPrinter. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +%If (PyQt_Printer) + +class QsciPrinter : QPrinter +{ +%TypeHeaderCode +#include +%End + +public: + QsciPrinter(QPrinter::PrinterMode mode = QPrinter::ScreenResolution); + virtual ~QsciPrinter(); + + virtual void formatPage(QPainter &painter, bool drawing, QRect &area, + int pagenr); + int magnification() const; + virtual void setMagnification(int magnification); + virtual int printRange(QsciScintillaBase *qsb, QPainter &painter, + int from = -1, int to = -1); + virtual int printRange(QsciScintillaBase *qsb, int from = -1, int to = -1); + QsciScintilla::WrapMode wrapMode() const; + virtual void setWrapMode(QsciScintilla::WrapMode); + +private: + QsciPrinter(const QsciPrinter &); +}; + +%End diff --git a/third_party/qscintilla/Python/sip/qsciscintilla.sip b/third_party/qscintilla/Python/sip/qsciscintilla.sip new file mode 100644 index 0000000..5012bab --- /dev/null +++ b/third_party/qscintilla/Python/sip/qsciscintilla.sip @@ -0,0 +1,557 @@ +// This is the SIP interface definition for QsciScintilla. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciScintilla : QsciScintillaBase +{ +%TypeHeaderCode +#include +%End + +public: + enum { + AiMaintain, + AiOpening, + AiClosing + }; + + enum AnnotationDisplay { + AnnotationHidden, + AnnotationStandard, + AnnotationBoxed, + AnnotationIndented, + }; + + enum AutoCompletionSource { + AcsNone, + AcsAll, + AcsDocument, + AcsAPIs + }; + + enum AutoCompletionUseSingle { + AcusNever, + AcusExplicit, + AcusAlways + }; + + enum BraceMatch { + NoBraceMatch, + StrictBraceMatch, + SloppyBraceMatch + }; + + enum CallTipsPosition { + CallTipsBelowText, + CallTipsAboveText, + }; + + enum CallTipsStyle { + CallTipsNone, + CallTipsNoContext, + CallTipsNoAutoCompletionContext, + CallTipsContext + }; + + enum EdgeMode { + EdgeNone, + EdgeLine, + EdgeBackground, + EdgeMultipleLines, + }; + + enum EolMode { + EolWindows, + EolUnix, + EolMac + }; + + enum FoldStyle { + NoFoldStyle, + PlainFoldStyle, + CircledFoldStyle, + BoxedFoldStyle, + CircledTreeFoldStyle, + BoxedTreeFoldStyle + }; + + enum IndicatorStyle { + PlainIndicator, + SquiggleIndicator, + TTIndicator, + DiagonalIndicator, + StrikeIndicator, + HiddenIndicator, + BoxIndicator, + RoundBoxIndicator, + StraightBoxIndicator, + FullBoxIndicator, + DashesIndicator, + DotsIndicator, + SquiggleLowIndicator, + DotBoxIndicator, + SquigglePixmapIndicator, + ThickCompositionIndicator, + ThinCompositionIndicator, + TextColorIndicator, + TriangleIndicator, + TriangleCharacterIndicator, + GradientIndicator, + CentreGradientIndicator, + }; + + enum { + MoNone, + MoSublineSelect, + }; + + enum MarginType { + SymbolMargin, + SymbolMarginDefaultForegroundColor, + SymbolMarginDefaultBackgroundColor, + NumberMargin, + TextMargin, + TextMarginRightJustified, + SymbolMarginColor, + }; + + enum MarkerSymbol { + Circle, + Rectangle, + RightTriangle, + SmallRectangle, + RightArrow, + Invisible, + DownTriangle, + Minus, + Plus, + VerticalLine, + BottomLeftCorner, + LeftSideSplitter, + BoxedPlus, + BoxedPlusConnected, + BoxedMinus, + BoxedMinusConnected, + RoundedBottomLeftCorner, + LeftSideRoundedSplitter, + CircledPlus, + CircledPlusConnected, + CircledMinus, + CircledMinusConnected, + Background, + ThreeDots, + ThreeRightArrows, + FullRectangle, + LeftRectangle, + Underline, + Bookmark + }; + + enum TabDrawMode { + TabLongArrow, + TabStrikeOut, + }; + + enum WhitespaceVisibility { + WsInvisible, + WsVisible, + WsVisibleAfterIndent, + WsVisibleOnlyInIndent, + }; + + enum WrapMode { + WrapNone, + WrapWord, + WrapCharacter, + WrapWhitespace, + }; + + enum WrapVisualFlag { + WrapFlagNone, + WrapFlagByText, + WrapFlagByBorder, + WrapFlagInMargin, + }; + + enum WrapIndentMode { + WrapIndentFixed, + WrapIndentSame, + WrapIndentIndented, + WrapIndentDeeplyIndented, + }; + + QsciScintilla(QWidget *parent /TransferThis/ = 0); + virtual ~QsciScintilla(); + + virtual QStringList apiContext(int pos, int &context_start, + int &last_word_start); + + void annotate(int line, const QString &text, int style); + void annotate(int line, const QString &text, const QsciStyle &style); + void annotate(int line, const QsciStyledText &text); + void annotate(int line, const QList &text); + QString annotation(int line) const; + AnnotationDisplay annotationDisplay() const; + void clearAnnotations(int line = -1); + + bool autoCompletionCaseSensitivity() const; + bool autoCompletionFillupsEnabled() const; + bool autoCompletionReplaceWord() const; + bool autoCompletionShowSingle() const; + AutoCompletionSource autoCompletionSource() const; + int autoCompletionThreshold() const; + AutoCompletionUseSingle autoCompletionUseSingle() const; + bool autoIndent() const; + + bool backspaceUnindents() const; + void beginUndoAction(); + BraceMatch braceMatching() const; + QByteArray bytes(int start, int end) const; + + CallTipsPosition callTipsPosition() const; + CallTipsStyle callTipsStyle() const; + int callTipsVisible() const; + void cancelFind(); + void cancelList(); + bool caseSensitive() const; + void clearRegisteredImages(); + QColor color() const; + QList contractedFolds() const; + void convertEols(EolMode mode); + QMenu *createStandardContextMenu() /Factory/; + + QsciDocument document() const; + + void endUndoAction(); + QColor edgeColor() const; + int edgeColumn() const; + EdgeMode edgeMode() const; + EolMode eolMode() const; + bool eolVisibility() const; + + int extraAscent() const; + int extraDescent() const; + + virtual bool findFirst(const QString &expr, bool re, bool cs, bool wo, + bool wrap, bool forward = true, int line = -1, int index = -1, + bool show = true, bool posix = false, bool cxx11 = false); + virtual bool findFirstInSelection(const QString &expr, bool re, bool cs, + bool wo, bool forward = true, bool show = true, + bool posix = false, bool cxx11 = false); + virtual bool findNext(); + bool findMatchingBrace(long &brace, long &other, BraceMatch mode); + int firstVisibleLine() const; + FoldStyle folding() const; + + void getCursorPosition(int *line, int *index) const; + void getSelection(int *lineFrom, int *indexFrom, int *lineTo, + int *indexTo) const; + + bool hasSelectedText() const; + + int indentation(int line) const; + bool indentationGuides() const; + bool indentationsUseTabs() const; + int indentationWidth() const; + + void clearIndicatorRange(int lineFrom, int indexFrom, int lineTo, + int indexTo, int indicatorNumber); + void fillIndicatorRange(int lineFrom, int indexFrom, int lineTo, + int indexTo, int indicatorNumber); + int indicatorDefine(IndicatorStyle style, int indicatorNumber = -1); + bool indicatorDrawUnder(int indicatorNumber) const; + + bool isCallTipActive() const; + bool isListActive() const; + bool isModified() const; + bool isReadOnly() const; + bool isRedoAvailable() const; + bool isUndoAvailable() const; + bool isUtf8() const; + bool isWordCharacter(char ch) const; + + int lineAt(const QPoint &pos) const; + void lineIndexFromPosition(int position, int *line, int *index) const; + int lineLength(int line) const; + int lines() const; + int length() const; + QsciLexer *lexer() const; + + QColor marginBackgroundColor(int margin) const; + bool marginLineNumbers(int margin) const; + int marginMarkerMask(int margin) const; + int marginOptions() const; + bool marginSensitivity(int margin) const; + MarginType marginType(int margin) const; + int marginWidth(int margin) const; + int margins() const; + + int markerDefine(MarkerSymbol sym, int markerNumber = -1); + int markerDefine(char ch, int markerNumber = -1); + int markerDefine(const QPixmap &pm, int markerNumber = -1); + int markerDefine(const QImage &im, int markerNumber = -1); + int markerAdd(int linenr, int markerNumber); + unsigned markersAtLine(int linenr) const; + void markerDelete(int linenr, int markerNumber = -1); + void markerDeleteAll(int markerNumber = -1); + void markerDeleteHandle(int mhandle); + int markerLine(int mhandle) const; + int markerFindNext(int linenr, unsigned mask) const; + int markerFindPrevious(int linenr, unsigned mask) const; + + bool overwriteMode() const; + + QColor paper() const; + int positionFromLineIndex(int line, int index) const; + + bool read(QIODevice *io) /ReleaseGIL/; + virtual void recolor(int start = 0, int end = -1); + void registerImage(int id, const QPixmap &pm); + void registerImage(int id, const QImage &im); + virtual void replace(const QString &replaceStr); + void resetFoldMarginColors(); + void resetHotspotBackgroundColor(); + void resetHotspotForegroundColor(); + + int scrollWidth() const; + void setScrollWidth(int pixelWidth); + bool scrollWidthTracking() const; + void setScrollWidthTracking(bool enabled); + + void setFoldMarginColors(const QColor &fore, const QColor &back); + + void setAnnotationDisplay(AnnotationDisplay display); + + void setAutoCompletionFillupsEnabled(bool enabled); + void setAutoCompletionFillups(const char *fillups); + void setAutoCompletionWordSeparators(const QStringList &separators); + + void setCallTipsBackgroundColor(const QColor &col); + void setCallTipsForegroundColor(const QColor &col); + void setCallTipsHighlightColor(const QColor &col); + void setCallTipsPosition(CallTipsPosition position); + void setCallTipsStyle(CallTipsStyle style); + void setCallTipsVisible(int nr); + void setContractedFolds(const QList &folds); + + void setDocument(const QsciDocument &document); + + void addEdgeColumn(int colnr, const QColor &col); + void clearEdgeColumns(); + void setEdgeColor(const QColor &col); + void setEdgeColumn(int colnr); + void setEdgeMode(EdgeMode mode); + + void setFirstVisibleLine(int linenr); + void setFont(const QFont &f); + + void setHotspotBackgroundColor(const QColor &col); + void setHotspotForegroundColor(const QColor &col); + void setHotspotUnderline(bool enable); + void setHotspotWrap(bool enable); + + void setIndicatorDrawUnder(bool under, int indicatorNumber = -1); + void setIndicatorForegroundColor(const QColor &col, + int indicatorNumber = -1); + void setIndicatorHoverForegroundColor(const QColor &col, + int indicatorNumber = -1); + void setIndicatorHoverStyle(IndicatorStyle style, + int indicatorNumber = -1); + void setIndicatorOutlineColor(const QColor &col, int indicatorNumber = -1); + + void setMarginBackgroundColor(int margin, const QColor &col); + void setMarginOptions(int options); + void setMarginText(int line, const QString &text, int style); + void setMarginText(int line, const QString &text, const QsciStyle &style); + void setMarginText(int line, const QsciStyledText &text); + void setMarginText(int line, const QList &text); + void setMarginType(int margin, MarginType type); + void clearMarginText(int line = -1); + void setMargins(int margins); + + void setMarkerBackgroundColor(const QColor &col, int markerNumber = -1); + void setMarkerForegroundColor(const QColor &col, int markerNumber = -1); + + void setMatchedBraceBackgroundColor(const QColor &col); + void setMatchedBraceForegroundColor(const QColor &col); + void setMatchedBraceIndicator(int indicatorNumber); + void resetMatchedBraceIndicator(); + void setUnmatchedBraceBackgroundColor(const QColor &col); + void setUnmatchedBraceForegroundColor(const QColor &col); + void setUnmatchedBraceIndicator(int indicatorNumber); + void resetUnmatchedBraceIndicator(); + + void setWrapVisualFlags(WrapVisualFlag endFlag, + WrapVisualFlag startFlag = QsciScintilla::WrapFlagNone, + int indent = 0); + + QString selectedText() const; + bool selectionToEol() const; + void setSelectionToEol(bool filled); + + void setExtraAscent(int extra); + void setExtraDescent(int extra); + + void setOverwriteMode(bool overwrite); + + void setWhitespaceBackgroundColor(const QColor &col); + void setWhitespaceForegroundColor(const QColor &col); + void setWhitespaceSize(int size); + + void setWrapIndentMode(WrapIndentMode mode); + void showUserList(int id, const QStringList &list); + QsciCommandSet *standardCommands() const; + + void setTabDrawMode(TabDrawMode mode); + TabDrawMode tabDrawMode() const; + + bool tabIndents() const; + int tabWidth() const; + QString text() const; + QString text(int line) const; + QString text(int start, int end) const; + int textHeight(int linenr) const; + + int whitespaceSize() const; + WhitespaceVisibility whitespaceVisibility() const; + + QString wordAtLineIndex(int line, int index) const; + QString wordAtPoint(const QPoint &point) const; + const char *wordCharacters() const; + WrapMode wrapMode() const; + WrapIndentMode wrapIndentMode() const; + bool write(QIODevice *io) const /ReleaseGIL/; + +public slots: + virtual void append(const QString &text); + virtual void autoCompleteFromAll(); + virtual void autoCompleteFromAPIs(); + virtual void autoCompleteFromDocument(); + virtual void callTip(); + virtual void clear(); + virtual void copy(); + virtual void cut(); + + virtual void ensureCursorVisible(); + virtual void ensureLineVisible(int line); + virtual void foldAll(bool children = false); + virtual void foldLine(int line); + virtual void indent(int line); + virtual void insert(const QString &text); + virtual void insertAt(const QString &text, int line, int index); + virtual void moveToMatchingBrace(); + virtual void paste(); + virtual void redo(); + virtual void removeSelectedText(); + virtual void replaceSelectedText(const QString &text); + virtual void resetSelectionBackgroundColor(); + virtual void resetSelectionForegroundColor(); + virtual void selectAll(bool select = true); + virtual void selectToMatchingBrace(); + + virtual void setAutoCompletionCaseSensitivity(bool cs); + virtual void setAutoCompletionReplaceWord(bool replace); + virtual void setAutoCompletionShowSingle(bool single); + virtual void setAutoCompletionSource(AutoCompletionSource source); + virtual void setAutoCompletionThreshold(int thresh); + virtual void setAutoCompletionUseSingle(AutoCompletionUseSingle single); + virtual void setAutoIndent(bool autoindent); + virtual void setBraceMatching(BraceMatch bm); + virtual void setBackspaceUnindents(bool unindent); + virtual void setCaretForegroundColor(const QColor &col); + virtual void setCaretLineBackgroundColor(const QColor &col); + virtual void setCaretLineFrameWidth(int width); + virtual void setCaretLineVisible(bool enable); + virtual void setCaretWidth(int width); + virtual void setColor(const QColor &col); + virtual void setCursorPosition(int line, int index); + virtual void setEolMode(EolMode mode); + virtual void setEolVisibility(bool visible); + virtual void setFolding(FoldStyle fold, int margin=2); + void clearFolds(); + + virtual void setIndentation(int line, int indentation); + virtual void setIndentationGuides(bool enable); + virtual void setIndentationGuidesBackgroundColor(const QColor &col); + virtual void setIndentationGuidesForegroundColor(const QColor &col); + virtual void setIndentationsUseTabs(bool tabs); + virtual void setIndentationWidth(int width); + + virtual void setLexer(QsciLexer *lexer = 0); + + virtual void setMarginsBackgroundColor(const QColor &col); + virtual void setMarginsFont(const QFont &f); + virtual void setMarginsForegroundColor(const QColor &col); + + virtual void setMarginLineNumbers(int margin, bool lnrs); + virtual void setMarginMarkerMask(int margin, int mask); + virtual void setMarginSensitivity(int margin, bool sens); + virtual void setMarginWidth(int margin, int width); + virtual void setMarginWidth(int margin, const QString &s); + + virtual void setModified(bool m); + virtual void setPaper(const QColor &c); + virtual void setReadOnly(bool ro); + virtual void setSelection(int lineFrom, int indexFrom, int lineTo, + int indexTo); + virtual void setSelectionBackgroundColor(const QColor &col); + virtual void setSelectionForegroundColor(const QColor &col); + virtual void setTabIndents(bool indent); + virtual void setTabWidth(int width); + virtual void setText(const QString &text); + virtual void setUtf8(bool cp); + virtual void setWhitespaceVisibility(WhitespaceVisibility mode); + virtual void setWrapMode(WrapMode mode); + + virtual void undo(); + virtual void unindent(int line); + + virtual void zoomIn(int range); + virtual void zoomIn(); + virtual void zoomOut(int range); + virtual void zoomOut(); + virtual void zoomTo(int size); + +signals: + void cursorPositionChanged(int line, int index); + void copyAvailable(bool yes); + + void indicatorClicked(int line, int index, Qt::KeyboardModifiers state); + void indicatorReleased(int line, int index, Qt::KeyboardModifiers state); + + void linesChanged(); + + void marginClicked(int margin, int line, Qt::KeyboardModifiers state); + void marginRightClicked(int margin, int line, Qt::KeyboardModifiers state); + + void modificationAttempted(); + void modificationChanged(bool m); + void selectionChanged(); + void textChanged(); + void userListActivated(int id, const QString &string); + +protected: + virtual bool event(QEvent *event); + virtual void changeEvent(QEvent *event); + virtual void contextMenuEvent(QContextMenuEvent *event); + virtual void wheelEvent(QWheelEvent *event); + +private: + QsciScintilla(const QsciScintilla &); +}; diff --git a/third_party/qscintilla/Python/sip/qsciscintillabase.sip b/third_party/qscintilla/Python/sip/qsciscintillabase.sip new file mode 100644 index 0000000..3656eac --- /dev/null +++ b/third_party/qscintilla/Python/sip/qsciscintillabase.sip @@ -0,0 +1,1611 @@ +// This is the SIP interface definition for QsciScintillaBase. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciScintillaBase : QAbstractScrollArea +{ +%TypeHeaderCode +#include +%End + +public: + enum { + SCI_START, + SCI_OPTIONAL_START, + SCI_LEXER_START, + SCI_ADDTEXT, + SCI_ADDSTYLEDTEXT, + SCI_INSERTTEXT, + SCI_CLEARALL, + SCI_CLEARDOCUMENTSTYLE, + SCI_GETLENGTH, + SCI_GETCHARAT, + SCI_GETCURRENTPOS, + SCI_GETANCHOR, + SCI_GETSTYLEAT, + SCI_REDO, + SCI_SETUNDOCOLLECTION, + SCI_SELECTALL, + SCI_SETSAVEPOINT, + SCI_GETSTYLEDTEXT, + SCI_CANREDO, + SCI_MARKERLINEFROMHANDLE, + SCI_MARKERDELETEHANDLE, + SCI_GETUNDOCOLLECTION, + SCI_GETVIEWWS, + SCI_SETVIEWWS, + SCI_POSITIONFROMPOINT, + SCI_POSITIONFROMPOINTCLOSE, + SCI_GOTOLINE, + SCI_GOTOPOS, + SCI_SETANCHOR, + SCI_GETCURLINE, + SCI_GETENDSTYLED, + SCI_CONVERTEOLS, + SCI_GETEOLMODE, + SCI_SETEOLMODE, + SCI_STARTSTYLING, + SCI_SETSTYLING, + SCI_GETBUFFEREDDRAW, + SCI_SETBUFFEREDDRAW, + SCI_SETTABWIDTH, + SCI_GETTABWIDTH, + SCI_SETCODEPAGE, + SCI_MARKERDEFINE, + SCI_MARKERSETFORE, + SCI_MARKERSETBACK, + SCI_MARKERADD, + SCI_MARKERDELETE, + SCI_MARKERDELETEALL, + SCI_MARKERGET, + SCI_MARKERNEXT, + SCI_MARKERPREVIOUS, + SCI_MARKERDEFINEPIXMAP, + SCI_SETMARGINTYPEN, + SCI_GETMARGINTYPEN, + SCI_SETMARGINWIDTHN, + SCI_GETMARGINWIDTHN, + SCI_SETMARGINMASKN, + SCI_GETMARGINMASKN, + SCI_SETMARGINSENSITIVEN, + SCI_GETMARGINSENSITIVEN, + SCI_SETMARGINCURSORN, + SCI_GETMARGINCURSORN, + SCI_STYLECLEARALL, + SCI_STYLESETFORE, + SCI_STYLESETBACK, + SCI_STYLESETBOLD, + SCI_STYLESETITALIC, + SCI_STYLESETSIZE, + SCI_STYLESETFONT, + SCI_STYLESETEOLFILLED, + SCI_STYLERESETDEFAULT, + SCI_STYLESETUNDERLINE, + SCI_STYLESETCASE, + SCI_STYLESETCHARACTERSET, + SCI_SETSELFORE, + SCI_SETSELBACK, + SCI_SETCARETFORE, + SCI_ASSIGNCMDKEY, + SCI_CLEARCMDKEY, + SCI_CLEARALLCMDKEYS, + SCI_SETSTYLINGEX, + SCI_STYLESETVISIBLE, + SCI_GETCARETPERIOD, + SCI_SETCARETPERIOD, + SCI_SETWORDCHARS, + SCI_BEGINUNDOACTION, + SCI_ENDUNDOACTION, + SCI_INDICSETSTYLE, + SCI_INDICGETSTYLE, + SCI_INDICSETFORE, + SCI_INDICGETFORE, + SCI_SETWHITESPACEFORE, + SCI_SETWHITESPACEBACK, + SCI_SETWHITESPACESIZE, + SCI_GETWHITESPACESIZE, + SCI_SETSTYLEBITS, + SCI_GETSTYLEBITS, + SCI_SETLINESTATE, + SCI_GETLINESTATE, + SCI_GETMAXLINESTATE, + SCI_GETCARETLINEVISIBLE, + SCI_SETCARETLINEVISIBLE, + SCI_GETCARETLINEBACK, + SCI_SETCARETLINEBACK, + SCI_STYLESETCHANGEABLE, + SCI_AUTOCSHOW, + SCI_AUTOCCANCEL, + SCI_AUTOCACTIVE, + SCI_AUTOCPOSSTART, + SCI_AUTOCCOMPLETE, + SCI_AUTOCSTOPS, + SCI_AUTOCSETSEPARATOR, + SCI_AUTOCGETSEPARATOR, + SCI_AUTOCSELECT, + SCI_AUTOCSETCANCELATSTART, + SCI_AUTOCGETCANCELATSTART, + SCI_AUTOCSETFILLUPS, + SCI_AUTOCSETCHOOSESINGLE, + SCI_AUTOCGETCHOOSESINGLE, + SCI_AUTOCSETIGNORECASE, + SCI_AUTOCGETIGNORECASE, + SCI_USERLISTSHOW, + SCI_AUTOCSETAUTOHIDE, + SCI_AUTOCGETAUTOHIDE, + SCI_AUTOCSETDROPRESTOFWORD, + SCI_AUTOCGETDROPRESTOFWORD, + SCI_SETINDENT, + SCI_GETINDENT, + SCI_SETUSETABS, + SCI_GETUSETABS, + SCI_SETLINEINDENTATION, + SCI_GETLINEINDENTATION, + SCI_GETLINEINDENTPOSITION, + SCI_GETCOLUMN, + SCI_SETHSCROLLBAR, + SCI_GETHSCROLLBAR, + SCI_SETINDENTATIONGUIDES, + SCI_GETINDENTATIONGUIDES, + SCI_SETHIGHLIGHTGUIDE, + SCI_GETHIGHLIGHTGUIDE, + SCI_GETLINEENDPOSITION, + SCI_GETCODEPAGE, + SCI_GETCARETFORE, + SCI_GETREADONLY, + SCI_SETCURRENTPOS, + SCI_SETSELECTIONSTART, + SCI_GETSELECTIONSTART, + SCI_SETSELECTIONEND, + SCI_GETSELECTIONEND, + SCI_SETPRINTMAGNIFICATION, + SCI_GETPRINTMAGNIFICATION, + SCI_SETPRINTCOLOURMODE, + SCI_GETPRINTCOLOURMODE, + SCI_FINDTEXT, + SCI_FORMATRANGE, + SCI_GETFIRSTVISIBLELINE, + SCI_GETLINE, + SCI_GETLINECOUNT, + SCI_SETMARGINLEFT, + SCI_GETMARGINLEFT, + SCI_SETMARGINRIGHT, + SCI_GETMARGINRIGHT, + SCI_GETMODIFY, + SCI_SETSEL, + SCI_GETSELTEXT, + SCI_GETTEXTRANGE, + SCI_HIDESELECTION, + SCI_POINTXFROMPOSITION, + SCI_POINTYFROMPOSITION, + SCI_LINEFROMPOSITION, + SCI_POSITIONFROMLINE, + SCI_LINESCROLL, + SCI_SCROLLCARET, + SCI_REPLACESEL, + SCI_SETREADONLY, + SCI_NULL, + SCI_CANPASTE, + SCI_CANUNDO, + SCI_EMPTYUNDOBUFFER, + SCI_UNDO, + SCI_CUT, + SCI_COPY, + SCI_PASTE, + SCI_CLEAR, + SCI_SETTEXT, + SCI_GETTEXT, + SCI_GETTEXTLENGTH, + SCI_GETDIRECTFUNCTION, + SCI_GETDIRECTPOINTER, + SCI_SETOVERTYPE, + SCI_GETOVERTYPE, + SCI_SETCARETWIDTH, + SCI_GETCARETWIDTH, + SCI_SETTARGETSTART, + SCI_GETTARGETSTART, + SCI_SETTARGETEND, + SCI_GETTARGETEND, + SCI_REPLACETARGET, + SCI_REPLACETARGETRE, + SCI_SEARCHINTARGET, + SCI_SETSEARCHFLAGS, + SCI_GETSEARCHFLAGS, + SCI_CALLTIPSHOW, + SCI_CALLTIPCANCEL, + SCI_CALLTIPACTIVE, + SCI_CALLTIPPOSSTART, + SCI_CALLTIPSETHLT, + SCI_CALLTIPSETBACK, + SCI_CALLTIPSETFORE, + SCI_CALLTIPSETFOREHLT, + SCI_AUTOCSETMAXWIDTH, + SCI_AUTOCGETMAXWIDTH, + SCI_AUTOCSETMAXHEIGHT, + SCI_AUTOCGETMAXHEIGHT, + SCI_CALLTIPUSESTYLE, + SCI_VISIBLEFROMDOCLINE, + SCI_DOCLINEFROMVISIBLE, + SCI_SETFOLDLEVEL, + SCI_GETFOLDLEVEL, + SCI_GETLASTCHILD, + SCI_GETFOLDPARENT, + SCI_SHOWLINES, + SCI_HIDELINES, + SCI_GETLINEVISIBLE, + SCI_SETFOLDEXPANDED, + SCI_GETFOLDEXPANDED, + SCI_TOGGLEFOLD, + SCI_ENSUREVISIBLE, + SCI_SETFOLDFLAGS, + SCI_ENSUREVISIBLEENFORCEPOLICY, + SCI_WRAPCOUNT, + SCI_SETTABINDENTS, + SCI_GETTABINDENTS, + SCI_SETBACKSPACEUNINDENTS, + SCI_GETBACKSPACEUNINDENTS, + SCI_SETMOUSEDWELLTIME, + SCI_GETMOUSEDWELLTIME, + SCI_WORDSTARTPOSITION, + SCI_WORDENDPOSITION, + SCI_SETWRAPMODE, + SCI_GETWRAPMODE, + SCI_SETLAYOUTCACHE, + SCI_GETLAYOUTCACHE, + SCI_SETSCROLLWIDTH, + SCI_GETSCROLLWIDTH, + SCI_TEXTWIDTH, + SCI_SETENDATLASTLINE, + SCI_GETENDATLASTLINE, + SCI_TEXTHEIGHT, + SCI_SETVSCROLLBAR, + SCI_GETVSCROLLBAR, + SCI_APPENDTEXT, + SCI_GETTWOPHASEDRAW, + SCI_SETTWOPHASEDRAW, + SCI_AUTOCGETTYPESEPARATOR, + SCI_AUTOCSETTYPESEPARATOR, + SCI_TARGETFROMSELECTION, + SCI_LINESJOIN, + SCI_LINESSPLIT, + SCI_SETFOLDMARGINCOLOUR, + SCI_SETFOLDMARGINHICOLOUR, + SCI_MARKERSETBACKSELECTED, + SCI_MARKERENABLEHIGHLIGHT, + SCI_LINEDOWN, + SCI_LINEDOWNEXTEND, + SCI_LINEUP, + SCI_LINEUPEXTEND, + SCI_CHARLEFT, + SCI_CHARLEFTEXTEND, + SCI_CHARRIGHT, + SCI_CHARRIGHTEXTEND, + SCI_WORDLEFT, + SCI_WORDLEFTEXTEND, + SCI_WORDRIGHT, + SCI_WORDRIGHTEXTEND, + SCI_HOME, + SCI_HOMEEXTEND, + SCI_LINEEND, + SCI_LINEENDEXTEND, + SCI_DOCUMENTSTART, + SCI_DOCUMENTSTARTEXTEND, + SCI_DOCUMENTEND, + SCI_DOCUMENTENDEXTEND, + SCI_PAGEUP, + SCI_PAGEUPEXTEND, + SCI_PAGEDOWN, + SCI_PAGEDOWNEXTEND, + SCI_EDITTOGGLEOVERTYPE, + SCI_CANCEL, + SCI_DELETEBACK, + SCI_TAB, + SCI_BACKTAB, + SCI_NEWLINE, + SCI_FORMFEED, + SCI_VCHOME, + SCI_VCHOMEEXTEND, + SCI_ZOOMIN, + SCI_ZOOMOUT, + SCI_DELWORDLEFT, + SCI_DELWORDRIGHT, + SCI_LINECUT, + SCI_LINEDELETE, + SCI_LINETRANSPOSE, + SCI_LOWERCASE, + SCI_UPPERCASE, + SCI_LINESCROLLDOWN, + SCI_LINESCROLLUP, + SCI_DELETEBACKNOTLINE, + SCI_HOMEDISPLAY, + SCI_HOMEDISPLAYEXTEND, + SCI_LINEENDDISPLAY, + SCI_LINEENDDISPLAYEXTEND, + SCI_MOVECARETINSIDEVIEW, + SCI_LINELENGTH, + SCI_BRACEHIGHLIGHT, + SCI_BRACEBADLIGHT, + SCI_BRACEMATCH, + SCI_GETVIEWEOL, + SCI_SETVIEWEOL, + SCI_GETDOCPOINTER, + SCI_SETDOCPOINTER, + SCI_SETMODEVENTMASK, + SCI_GETEDGECOLUMN, + SCI_SETEDGECOLUMN, + SCI_GETEDGEMODE, + SCI_SETEDGEMODE, + SCI_GETEDGECOLOUR, + SCI_SETEDGECOLOUR, + SCI_SEARCHANCHOR, + SCI_SEARCHNEXT, + SCI_SEARCHPREV, + SCI_LINESONSCREEN, + SCI_USEPOPUP, + SCI_SELECTIONISRECTANGLE, + SCI_SETZOOM, + SCI_GETZOOM, + SCI_CREATEDOCUMENT, + SCI_ADDREFDOCUMENT, + SCI_RELEASEDOCUMENT, + SCI_GETMODEVENTMASK, + SCI_SETFOCUS, + SCI_GETFOCUS, + SCI_SETSTATUS, + SCI_GETSTATUS, + SCI_SETMOUSEDOWNCAPTURES, + SCI_GETMOUSEDOWNCAPTURES, + SCI_SETCURSOR, + SCI_GETCURSOR, + SCI_SETCONTROLCHARSYMBOL, + SCI_GETCONTROLCHARSYMBOL, + SCI_WORDPARTLEFT, + SCI_WORDPARTLEFTEXTEND, + SCI_WORDPARTRIGHT, + SCI_WORDPARTRIGHTEXTEND, + SCI_SETVISIBLEPOLICY, + SCI_DELLINELEFT, + SCI_DELLINERIGHT, + SCI_SETXOFFSET, + SCI_GETXOFFSET, + SCI_CHOOSECARETX, + SCI_GRABFOCUS, + SCI_SETXCARETPOLICY, + SCI_SETYCARETPOLICY, + SCI_LINEDUPLICATE, + SCI_REGISTERIMAGE, + SCI_SETPRINTWRAPMODE, + SCI_GETPRINTWRAPMODE, + SCI_CLEARREGISTEREDIMAGES, + SCI_STYLESETHOTSPOT, + SCI_SETHOTSPOTACTIVEFORE, + SCI_SETHOTSPOTACTIVEBACK, + SCI_SETHOTSPOTACTIVEUNDERLINE, + SCI_SETHOTSPOTSINGLELINE, + SCI_PARADOWN, + SCI_PARADOWNEXTEND, + SCI_PARAUP, + SCI_PARAUPEXTEND, + SCI_POSITIONBEFORE, + SCI_POSITIONAFTER, + SCI_COPYRANGE, + SCI_COPYTEXT, + SCI_SETSELECTIONMODE, + SCI_GETSELECTIONMODE, + SCI_GETLINESELSTARTPOSITION, + SCI_GETLINESELENDPOSITION, + SCI_LINEDOWNRECTEXTEND, + SCI_LINEUPRECTEXTEND, + SCI_CHARLEFTRECTEXTEND, + SCI_CHARRIGHTRECTEXTEND, + SCI_HOMERECTEXTEND, + SCI_VCHOMERECTEXTEND, + SCI_LINEENDRECTEXTEND, + SCI_PAGEUPRECTEXTEND, + SCI_PAGEDOWNRECTEXTEND, + SCI_STUTTEREDPAGEUP, + SCI_STUTTEREDPAGEUPEXTEND, + SCI_STUTTEREDPAGEDOWN, + SCI_STUTTEREDPAGEDOWNEXTEND, + SCI_WORDLEFTEND, + SCI_WORDLEFTENDEXTEND, + SCI_WORDRIGHTEND, + SCI_WORDRIGHTENDEXTEND, + SCI_SETWHITESPACECHARS, + SCI_SETCHARSDEFAULT, + SCI_AUTOCGETCURRENT, + SCI_ALLOCATE, + SCI_HOMEWRAP, + SCI_HOMEWRAPEXTEND, + SCI_LINEENDWRAP, + SCI_LINEENDWRAPEXTEND, + SCI_VCHOMEWRAP, + SCI_VCHOMEWRAPEXTEND, + SCI_LINECOPY, + SCI_FINDCOLUMN, + SCI_GETCARETSTICKY, + SCI_SETCARETSTICKY, + SCI_TOGGLECARETSTICKY, + SCI_SETWRAPVISUALFLAGS, + SCI_GETWRAPVISUALFLAGS, + SCI_SETWRAPVISUALFLAGSLOCATION, + SCI_GETWRAPVISUALFLAGSLOCATION, + SCI_SETWRAPSTARTINDENT, + SCI_GETWRAPSTARTINDENT, + SCI_MARKERADDSET, + SCI_SETPASTECONVERTENDINGS, + SCI_GETPASTECONVERTENDINGS, + SCI_SELECTIONDUPLICATE, + SCI_SETCARETLINEBACKALPHA, + SCI_GETCARETLINEBACKALPHA, + SCI_SETWRAPINDENTMODE, + SCI_GETWRAPINDENTMODE, + SCI_MARKERSETALPHA, + SCI_GETSELALPHA, + SCI_SETSELALPHA, + SCI_GETSELEOLFILLED, + SCI_SETSELEOLFILLED, + SCI_STYLEGETFORE, + SCI_STYLEGETBACK, + SCI_STYLEGETBOLD, + SCI_STYLEGETITALIC, + SCI_STYLEGETSIZE, + SCI_STYLEGETFONT, + SCI_STYLEGETEOLFILLED, + SCI_STYLEGETUNDERLINE, + SCI_STYLEGETCASE, + SCI_STYLEGETCHARACTERSET, + SCI_STYLEGETVISIBLE, + SCI_STYLEGETCHANGEABLE, + SCI_STYLEGETHOTSPOT, + SCI_GETHOTSPOTACTIVEFORE, + SCI_GETHOTSPOTACTIVEBACK, + SCI_GETHOTSPOTACTIVEUNDERLINE, + SCI_GETHOTSPOTSINGLELINE, + SCI_BRACEHIGHLIGHTINDICATOR, + SCI_BRACEBADLIGHTINDICATOR, + SCI_SETINDICATORCURRENT, + SCI_GETINDICATORCURRENT, + SCI_SETINDICATORVALUE, + SCI_GETINDICATORVALUE, + SCI_INDICATORFILLRANGE, + SCI_INDICATORCLEARRANGE, + SCI_INDICATORALLONFOR, + SCI_INDICATORVALUEAT, + SCI_INDICATORSTART, + SCI_INDICATOREND, + SCI_INDICSETUNDER, + SCI_INDICGETUNDER, + SCI_SETCARETSTYLE, + SCI_GETCARETSTYLE, + SCI_SETPOSITIONCACHE, + SCI_GETPOSITIONCACHE, + SCI_SETSCROLLWIDTHTRACKING, + SCI_GETSCROLLWIDTHTRACKING, + SCI_DELWORDRIGHTEND, + SCI_COPYALLOWLINE, + SCI_GETCHARACTERPOINTER, + SCI_INDICSETALPHA, + SCI_INDICGETALPHA, + SCI_SETEXTRAASCENT, + SCI_GETEXTRAASCENT, + SCI_SETEXTRADESCENT, + SCI_GETEXTRADESCENT, + SCI_MARKERSYMBOLDEFINED, + SCI_MARGINSETTEXT, + SCI_MARGINGETTEXT, + SCI_MARGINSETSTYLE, + SCI_MARGINGETSTYLE, + SCI_MARGINSETSTYLES, + SCI_MARGINGETSTYLES, + SCI_MARGINTEXTCLEARALL, + SCI_MARGINSETSTYLEOFFSET, + SCI_MARGINGETSTYLEOFFSET, + SCI_SETMARGINOPTIONS, + SCI_ANNOTATIONSETTEXT, + SCI_ANNOTATIONGETTEXT, + SCI_ANNOTATIONSETSTYLE, + SCI_ANNOTATIONGETSTYLE, + SCI_ANNOTATIONSETSTYLES, + SCI_ANNOTATIONGETSTYLES, + SCI_ANNOTATIONGETLINES, + SCI_ANNOTATIONCLEARALL, + SCI_ANNOTATIONSETVISIBLE, + SCI_ANNOTATIONGETVISIBLE, + SCI_ANNOTATIONSETSTYLEOFFSET, + SCI_ANNOTATIONGETSTYLEOFFSET, + SCI_SETEMPTYSELECTION, + SCI_GETMARGINOPTIONS, + SCI_INDICSETOUTLINEALPHA, + SCI_INDICGETOUTLINEALPHA, + SCI_ADDUNDOACTION, + SCI_CHARPOSITIONFROMPOINT, + SCI_CHARPOSITIONFROMPOINTCLOSE, + SCI_SETMULTIPLESELECTION, + SCI_GETMULTIPLESELECTION, + SCI_SETADDITIONALSELECTIONTYPING, + SCI_GETADDITIONALSELECTIONTYPING, + SCI_SETADDITIONALCARETSBLINK, + SCI_GETADDITIONALCARETSBLINK, + SCI_SCROLLRANGE, + SCI_GETSELECTIONS, + SCI_CLEARSELECTIONS, + SCI_SETSELECTION, + SCI_ADDSELECTION, + SCI_SETMAINSELECTION, + SCI_GETMAINSELECTION, + SCI_SETSELECTIONNCARET, + SCI_GETSELECTIONNCARET, + SCI_SETSELECTIONNANCHOR, + SCI_GETSELECTIONNANCHOR, + SCI_SETSELECTIONNCARETVIRTUALSPACE, + SCI_GETSELECTIONNCARETVIRTUALSPACE, + SCI_SETSELECTIONNANCHORVIRTUALSPACE, + SCI_GETSELECTIONNANCHORVIRTUALSPACE, + SCI_SETSELECTIONNSTART, + SCI_GETSELECTIONNSTART, + SCI_SETSELECTIONNEND, + SCI_GETSELECTIONNEND, + SCI_SETRECTANGULARSELECTIONCARET, + SCI_GETRECTANGULARSELECTIONCARET, + SCI_SETRECTANGULARSELECTIONANCHOR, + SCI_GETRECTANGULARSELECTIONANCHOR, + SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE, + SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE, + SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE, + SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE, + SCI_SETVIRTUALSPACEOPTIONS, + SCI_GETVIRTUALSPACEOPTIONS, + SCI_SETRECTANGULARSELECTIONMODIFIER, + SCI_GETRECTANGULARSELECTIONMODIFIER, + SCI_SETADDITIONALSELFORE, + SCI_SETADDITIONALSELBACK, + SCI_SETADDITIONALSELALPHA, + SCI_GETADDITIONALSELALPHA, + SCI_SETADDITIONALCARETFORE, + SCI_GETADDITIONALCARETFORE, + SCI_ROTATESELECTION, + SCI_SWAPMAINANCHORCARET, + SCI_SETADDITIONALCARETSVISIBLE, + SCI_GETADDITIONALCARETSVISIBLE, + SCI_AUTOCGETCURRENTTEXT, + SCI_SETFONTQUALITY, + SCI_GETFONTQUALITY, + SCI_SETFIRSTVISIBLELINE, + SCI_SETMULTIPASTE, + SCI_GETMULTIPASTE, + SCI_GETTAG, + SCI_CHANGELEXERSTATE, + SCI_CONTRACTEDFOLDNEXT, + SCI_VERTICALCENTRECARET, + SCI_MOVESELECTEDLINESUP, + SCI_MOVESELECTEDLINESDOWN, + SCI_SETIDENTIFIER, + SCI_GETIDENTIFIER, + SCI_RGBAIMAGESETWIDTH, + SCI_RGBAIMAGESETHEIGHT, + SCI_MARKERDEFINERGBAIMAGE, + SCI_REGISTERRGBAIMAGE, + SCI_SCROLLTOSTART, + SCI_SCROLLTOEND, + SCI_STARTRECORD, + SCI_STOPRECORD, + SCI_SETLEXER, + SCI_GETLEXER, + SCI_COLOURISE, + SCI_SETPROPERTY, + SCI_SETKEYWORDS, + SCI_SETLEXERLANGUAGE, + SCI_LOADLEXERLIBRARY, + SCI_GETPROPERTY, + SCI_GETPROPERTYEXPANDED, + SCI_GETPROPERTYINT, + SCI_GETSTYLEBITSNEEDED, + SCI_GETLEXERLANGUAGE, + SCI_PRIVATELEXERCALL, + SCI_PROPERTYNAMES, + SCI_PROPERTYTYPE, + SCI_DESCRIBEPROPERTY, + SCI_DESCRIBEKEYWORDSETS, + + SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR, + SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR, + SCI_AUTOCSETMULTI, + SCI_AUTOCGETMULTI, + SCI_CALLTIPSETPOSITION, + SCI_CALLTIPSETPOSSTART, + SCI_COUNTCHARACTERS, + SCI_CREATELOADER, + SCI_DELETERANGE, + SCI_FINDINDICATORFLASH, + SCI_FINDINDICATORHIDE, + SCI_FINDINDICATORSHOW, + SCI_GETALLLINESVISIBLE, + SCI_GETGAPPOSITION, + SCI_GETPUNCTUATIONCHARS, + SCI_GETRANGEPOINTER, + SCI_GETSELECTIONEMPTY, + SCI_GETTECHNOLOGY, + SCI_GETWHITESPACECHARS, + SCI_GETWORDCHARS, + SCI_RGBAIMAGESETSCALE, + SCI_SETPUNCTUATIONCHARS, + SCI_SETTECHNOLOGY, + SCI_STYLESETSIZEFRACTIONAL, + SCI_STYLEGETSIZEFRACTIONAL, + SCI_STYLESETWEIGHT, + SCI_STYLEGETWEIGHT, + + SCI_FOLDLINE, + SCI_FOLDCHILDREN, + SCI_EXPANDCHILDREN, + SCI_FOLDALL, + SCI_SETAUTOMATICFOLD, + SCI_GETAUTOMATICFOLD, + SCI_AUTOCSETORDER, + SCI_AUTOCGETORDER, + SCI_POSITIONRELATIVE, + SCI_DROPSELECTIONN, + SCI_CHANGEINSERTION, + SCI_GETPHASESDRAW, + SCI_SETPHASESDRAW, + SCI_CLEARTABSTOPS, + SCI_ADDTABSTOP, + SCI_GETNEXTTABSTOP, + SCI_GETIMEINTERACTION, + SCI_SETIMEINTERACTION, + SCI_INDICSETHOVERSTYLE, + SCI_INDICGETHOVERSTYLE, + SCI_INDICSETHOVERFORE, + SCI_INDICGETHOVERFORE, + SCI_INDICSETFLAGS, + SCI_INDICGETFLAGS, + SCI_SETTARGETRANGE, + SCI_GETTARGETTEXT, + SCI_RELEASEALLEXTENDEDSTYLES, + SCI_ALLOCATEEXTENDEDSTYLES, + SCI_SETMOUSESELECTIONRECTANGULARSWITCH, + SCI_GETMOUSESELECTIONRECTANGULARSWITCH, + SCI_GETCARETLINEVISIBLEALWAYS, + SCI_SETCARETLINEVISIBLEALWAYS, + SCI_SETLINEENDTYPESALLOWED, + SCI_GETLINEENDTYPESALLOWED, + SCI_GETLINEENDTYPESACTIVE, + SCI_SETREPRESENTATION, + SCI_GETREPRESENTATION, + SCI_CLEARREPRESENTATION, + SCI_GETLINEENDTYPESSUPPORTED, + SCI_ALLOCATESUBSTYLES, + SCI_GETSUBSTYLESSTART, + SCI_GETSUBSTYLESLENGTH, + SCI_GETSTYLEFROMSUBSTYLE, + SCI_GETPRIMARYSTYLEFROMSTYLE, + SCI_FREESUBSTYLES, + SCI_SETIDENTIFIERS, + SCI_DISTANCETOSECONDARYSTYLES, + SCI_GETSUBSTYLEBASES, + + SCI_GETLINECHARACTERINDEX, + SCI_ALLOCATELINECHARACTERINDEX, + SCI_RELEASELINECHARACTERINDEX, + SCI_LINEFROMINDEXPOSITION, + SCI_INDEXPOSITIONFROMLINE, + SCI_COUNTCODEUNITS, + SCI_POSITIONRELATIVECODEUNITS, + + SCI_GETNAMEDSTYLES, + SCI_NAMEOFSTYLE, + SCI_TAGSOFSTYLE, + SCI_DESCRIPTIONOFSTYLE, + + SCI_GETMOVEEXTENDSSELECTION, + SCI_SETCOMMANDEVENTS, + SCI_GETCOMMANDEVENTS, + SCI_GETDOCUMENTOPTIONS, + + SCI_SETIDLESTYLING, + SCI_GETIDLESTYLING, + SCI_SETMARGINBACKN, + SCI_GETMARGINBACKN, + SCI_SETMARGINS, + SCI_GETMARGINS, + SCI_SETMOUSEWHEELCAPTURES, + SCI_GETMOUSEWHEELCAPTURES, + SCI_GETTABDRAWMODE, + SCI_SETTABDRAWMODE, + SCI_ISRANGEWORD, + SCI_TARGETWHOLEDOCUMENT, + SCI_FOLDDISPLAYTEXTSETSTYLE, + SCI_TOGGLEFOLDSHOWTEXT, + SCI_MULTIEDGEADDLINE, + SCI_MULTIEDGECLEARALL, + SCI_MULTIPLESELECTADDNEXT, + SCI_MULTIPLESELECTADDEACH, + + SCI_SETACCESSIBILITY, + SCI_GETACCESSIBILITY, + SCI_SETCARETLINEFRAME, + SCI_GETCARETLINEFRAME, + SCI_LINEREVERSE, + }; + + enum { + SC_AC_FILLUP, + SC_AC_DOUBLECLICK, + SC_AC_TAB, + SC_AC_NEWLINE, + SC_AC_COMMAND, + }; + + enum { + SC_ALPHA_TRANSPARENT, + SC_ALPHA_OPAQUE, + SC_ALPHA_NOALPHA, + }; + + enum { + SC_CARETSTICKY_OFF, + SC_CARETSTICKY_ON, + SC_CARETSTICKY_WHITESPACE, + }; + + enum { + SC_DOCUMENTOPTION_DEFAULT, + SC_DOCUMENTOPTION_STYLES_NONE, + SC_DOCUMENTOPTION_TEXT_LARGE, + }; + + enum { + SC_EFF_QUALITY_MASK, + SC_EFF_QUALITY_DEFAULT, + SC_EFF_QUALITY_NON_ANTIALIASED, + SC_EFF_QUALITY_ANTIALIASED, + SC_EFF_QUALITY_LCD_OPTIMIZED, + }; + + enum { + SC_IDLESTYLING_NONE, + SC_IDLESTYLING_TOVISIBLE, + SC_IDLESTYLING_AFTERVISIBLE, + SC_IDLESTYLING_ALL, + }; + + enum { + SC_IME_WINDOWED, + SC_IME_INLINE, + }; + + enum { + SC_LINECHARACTERINDEX_NONE, + SC_LINECHARACTERINDEX_UTF32, + SC_LINECHARACTERINDEX_UTF16, + }; + + enum { + SC_MARGINOPTION_NONE, + SC_MARGINOPTION_SUBLINESELECT, + }; + + enum { + SC_MULTIAUTOC_ONCE, + SC_MULTIAUTOC_EACH, + }; + + enum { + SC_MULTIPASTE_ONCE, + SC_MULTIPASTE_EACH, + }; + + enum { + SC_POPUP_NEVER, + SC_POPUP_ALL, + SC_POPUP_TEXT, + }; + + enum { + SC_SEL_STREAM, + SC_SEL_RECTANGLE, + SC_SEL_LINES, + SC_SEL_THIN, + }; + + enum { + SC_STATUS_OK, + SC_STATUS_FAILURE, + SC_STATUS_BADALLOC, + SC_STATUS_WARN_START, + SC_STATUS_WARNREGEX, + }; + + enum { + SC_TYPE_BOOLEAN, + SC_TYPE_INTEGER, + SC_TYPE_STRING, + }; + + enum { + SC_UPDATE_CONTENT, + SC_UPDATE_SELECTION, + SC_UPDATE_V_SCROLL, + SC_UPDATE_H_SCROLL, + }; + + enum { + SC_WRAPVISUALFLAG_NONE, + SC_WRAPVISUALFLAG_END, + SC_WRAPVISUALFLAG_START, + SC_WRAPVISUALFLAG_MARGIN, + }; + + enum { + SC_WRAPVISUALFLAGLOC_DEFAULT, + SC_WRAPVISUALFLAGLOC_END_BY_TEXT, + SC_WRAPVISUALFLAGLOC_START_BY_TEXT + }; + + enum { + SCTD_LONGARROW, + SCTD_STRIKEOUT, + }; + + enum { + SCVS_NONE, + SCVS_RECTANGULARSELECTION, + SCVS_USERACCESSIBLE, + SCVS_NOWRAPLINESTART, + }; + + enum { + SCWS_INVISIBLE, + SCWS_VISIBLEALWAYS, + SCWS_VISIBLEAFTERINDENT, + SCWS_VISIBLEONLYININDENT, + }; + + enum { + SC_EOL_CRLF, + SC_EOL_CR, + SC_EOL_LF + }; + + enum { + SC_CP_DBCS, + SC_CP_UTF8 + }; + + enum { + SC_MARK_CIRCLE, + SC_MARK_ROUNDRECT, + SC_MARK_ARROW, + SC_MARK_SMALLRECT, + SC_MARK_SHORTARROW, + SC_MARK_EMPTY, + SC_MARK_ARROWDOWN, + SC_MARK_MINUS, + SC_MARK_PLUS, + SC_MARK_VLINE, + SC_MARK_LCORNER, + SC_MARK_TCORNER, + SC_MARK_BOXPLUS, + SC_MARK_BOXPLUSCONNECTED, + SC_MARK_BOXMINUS, + SC_MARK_BOXMINUSCONNECTED, + SC_MARK_LCORNERCURVE, + SC_MARK_TCORNERCURVE, + SC_MARK_CIRCLEPLUS, + SC_MARK_CIRCLEPLUSCONNECTED, + SC_MARK_CIRCLEMINUS, + SC_MARK_CIRCLEMINUSCONNECTED, + SC_MARK_BACKGROUND, + SC_MARK_DOTDOTDOT, + SC_MARK_ARROWS, + SC_MARK_PIXMAP, + SC_MARK_FULLRECT, + SC_MARK_LEFTRECT, + SC_MARK_AVAILABLE, + SC_MARK_UNDERLINE, + SC_MARK_RGBAIMAGE, + SC_MARK_BOOKMARK, + SC_MARK_CHARACTER + }; + + enum { + SC_MARKNUM_FOLDEREND, + SC_MARKNUM_FOLDEROPENMID, + SC_MARKNUM_FOLDERMIDTAIL, + SC_MARKNUM_FOLDERTAIL, + SC_MARKNUM_FOLDERSUB, + SC_MARKNUM_FOLDER, + SC_MARKNUM_FOLDEROPEN, + SC_MASK_FOLDERS + }; + + enum { + SC_MARGIN_SYMBOL, + SC_MARGIN_NUMBER, + SC_MARGIN_BACK, + SC_MARGIN_FORE, + SC_MARGIN_TEXT, + SC_MARGIN_RTEXT, + SC_MARGIN_COLOUR, + }; + + enum { + STYLE_DEFAULT, + STYLE_LINENUMBER, + STYLE_BRACELIGHT, + STYLE_BRACEBAD, + STYLE_CONTROLCHAR, + STYLE_INDENTGUIDE, + STYLE_CALLTIP, + STYLE_FOLDDISPLAYTEXT, + STYLE_LASTPREDEFINED, + STYLE_MAX + }; + + enum { + SC_CHARSET_ANSI, + SC_CHARSET_DEFAULT, + SC_CHARSET_BALTIC, + SC_CHARSET_CHINESEBIG5, + SC_CHARSET_EASTEUROPE, + SC_CHARSET_GB2312, + SC_CHARSET_GREEK, + SC_CHARSET_HANGUL, + SC_CHARSET_MAC, + SC_CHARSET_OEM, + SC_CHARSET_RUSSIAN, + SC_CHARSET_OEM866, + SC_CHARSET_CYRILLIC, + SC_CHARSET_SHIFTJIS, + SC_CHARSET_SYMBOL, + SC_CHARSET_TURKISH, + SC_CHARSET_JOHAB, + SC_CHARSET_HEBREW, + SC_CHARSET_ARABIC, + SC_CHARSET_VIETNAMESE, + SC_CHARSET_THAI, + SC_CHARSET_8859_15, + }; + + enum { + SC_CASE_MIXED, + SC_CASE_UPPER, + SC_CASE_LOWER, + SC_CASE_CAMEL, + }; + + enum + { + SC_IV_NONE, + SC_IV_REAL, + SC_IV_LOOKFORWARD, + SC_IV_LOOKBOTH + }; + + enum { + INDIC_PLAIN, + INDIC_SQUIGGLE, + INDIC_TT, + INDIC_DIAGONAL, + INDIC_STRIKE, + INDIC_HIDDEN, + INDIC_BOX, + INDIC_ROUNDBOX, + INDIC_STRAIGHTBOX, + INDIC_DASH, + INDIC_DOTS, + INDIC_SQUIGGLELOW, + INDIC_DOTBOX, + INDIC_SQUIGGLEPIXMAP, + INDIC_COMPOSITIONTHICK, + INDIC_COMPOSITIONTHIN, + INDIC_FULLBOX, + INDIC_TEXTFORE, + INDIC_POINT, + INDIC_POINTCHARACTER, + INDIC_GRADIENT, + INDIC_GRADIENTCENTRE, + + INDIC_IME, + INDIC_IME_MAX, + + INDIC_CONTAINER, + INDIC_MAX, + INDIC0_MASK, + INDIC1_MASK, + INDIC2_MASK, + INDICS_MASK, + + SC_INDICVALUEBIT, + SC_INDICVALUEMASK, + SC_INDICFLAG_VALUEBEFORE, + }; + + enum { + SC_PRINT_NORMAL, + SC_PRINT_INVERTLIGHT, + SC_PRINT_BLACKONWHITE, + SC_PRINT_COLOURONWHITE, + SC_PRINT_COLOURONWHITEDEFAULTBG, + SC_PRINT_SCREENCOLOURS, + }; + + enum { + SCFIND_WHOLEWORD, + SCFIND_MATCHCASE, + SCFIND_WORDSTART, + SCFIND_REGEXP, + SCFIND_POSIX, + SCFIND_CXX11REGEX, + }; + + enum { + SC_FOLDDISPLAYTEXT_HIDDEN, + SC_FOLDDISPLAYTEXT_STANDARD, + SC_FOLDDISPLAYTEXT_BOXED, + }; + + enum { + SC_FOLDLEVELBASE, + SC_FOLDLEVELWHITEFLAG, + SC_FOLDLEVELHEADERFLAG, + SC_FOLDLEVELNUMBERMASK + }; + + enum { + SC_FOLDFLAG_LINEBEFORE_EXPANDED, + SC_FOLDFLAG_LINEBEFORE_CONTRACTED, + SC_FOLDFLAG_LINEAFTER_EXPANDED, + SC_FOLDFLAG_LINEAFTER_CONTRACTED, + SC_FOLDFLAG_LEVELNUMBERS, + SC_FOLDFLAG_LINESTATE, + }; + + enum { + SC_LINE_END_TYPE_DEFAULT, + SC_LINE_END_TYPE_UNICODE, + }; + + enum { + SC_TIME_FOREVER + }; + + enum { + SC_WRAP_NONE, + SC_WRAP_WORD, + SC_WRAP_CHAR, + SC_WRAP_WHITESPACE, + }; + + enum { + SC_WRAPINDENT_FIXED, + SC_WRAPINDENT_SAME, + SC_WRAPINDENT_INDENT, + SC_WRAPINDENT_DEEPINDENT, + }; + + enum { + SC_CACHE_NONE, + SC_CACHE_CARET, + SC_CACHE_PAGE, + SC_CACHE_DOCUMENT + }; + + enum { + SC_PHASES_ONE = 0, + SC_PHASES_TWO = 1, + SC_PHASES_MULTIPLE = 2, + }; + + enum { + ANNOTATION_HIDDEN, + ANNOTATION_STANDARD, + ANNOTATION_BOXED, + ANNOTATION_INDENTED, + }; + + enum { + EDGE_NONE, + EDGE_LINE, + EDGE_BACKGROUND, + EDGE_MULTILINE, + }; + + enum { + SC_CURSORNORMAL, + SC_CURSORARROW, + SC_CURSORWAIT, + SC_CURSORREVERSEARROW + }; + + enum { + UNDO_MAY_COALESCE, + }; + + enum { + VISIBLE_SLOP, + VISIBLE_STRICT + }; + + enum { + CARET_SLOP, + CARET_STRICT, + CARET_JUMPS, + CARET_EVEN + }; + + enum + { + CARETSTYLE_INVISIBLE, + CARETSTYLE_LINE, + CARETSTYLE_BLOCK + }; + + enum { + SC_MOD_INSERTTEXT, + SC_MOD_DELETETEXT, + SC_MOD_CHANGESTYLE, + SC_MOD_CHANGEFOLD, + SC_PERFORMED_USER, + SC_PERFORMED_UNDO, + SC_PERFORMED_REDO, + SC_MULTISTEPUNDOREDO, + SC_LASTSTEPINUNDOREDO, + SC_MOD_CHANGEMARKER, + SC_MOD_BEFOREINSERT, + SC_MOD_BEFOREDELETE, + SC_MULTILINEUNDOREDO, + SC_STARTACTION, + SC_MOD_CHANGEINDICATOR, + SC_MOD_CHANGELINESTATE, + SC_MOD_CHANGEMARGIN, + SC_MOD_CHANGEANNOTATION, + SC_MOD_CONTAINER, + SC_MOD_LEXERSTATE, + SC_MOD_INSERTCHECK, + SC_MOD_CHANGETABSTOPS, + SC_MODEVENTMASKALL + }; + + enum { + SCK_DOWN, + SCK_UP, + SCK_LEFT, + SCK_RIGHT, + SCK_HOME, + SCK_END, + SCK_PRIOR, + SCK_NEXT, + SCK_DELETE, + SCK_INSERT, + SCK_ESCAPE, + SCK_BACK, + SCK_TAB, + SCK_RETURN, + SCK_ADD, + SCK_SUBTRACT, + SCK_DIVIDE, + SCK_WIN, + SCK_RWIN, + SCK_MENU + }; + + enum { + SCMOD_NORM, + SCMOD_SHIFT, + SCMOD_CTRL, + SCMOD_ALT, + SCMOD_SUPER, + SCMOD_META, + }; + + enum { + SCLEX_CONTAINER, + SCLEX_NULL, + SCLEX_PYTHON, + SCLEX_CPP, + SCLEX_HTML, + SCLEX_XML, + SCLEX_PERL, + SCLEX_SQL, + SCLEX_VB, + SCLEX_PROPERTIES, + SCLEX_ERRORLIST, + SCLEX_MAKEFILE, + SCLEX_BATCH, + SCLEX_LATEX, + SCLEX_LUA, + SCLEX_DIFF, + SCLEX_CONF, + SCLEX_PASCAL, + SCLEX_AVE, + SCLEX_ADA, + SCLEX_LISP, + SCLEX_RUBY, + SCLEX_EIFFEL, + SCLEX_EIFFELKW, + SCLEX_TCL, + SCLEX_NNCRONTAB, + SCLEX_BULLANT, + SCLEX_VBSCRIPT, + SCLEX_ASP, + SCLEX_PHP, + SCLEX_BAAN, + SCLEX_MATLAB, + SCLEX_SCRIPTOL, + SCLEX_ASM, + SCLEX_CPPNOCASE, + SCLEX_FORTRAN, + SCLEX_F77, + SCLEX_CSS, + SCLEX_POV, + SCLEX_LOUT, + SCLEX_ESCRIPT, + SCLEX_PS, + SCLEX_NSIS, + SCLEX_MMIXAL, + SCLEX_CLW, + SCLEX_CLWNOCASE, + SCLEX_LOT, + SCLEX_YAML, + SCLEX_TEX, + SCLEX_METAPOST, + SCLEX_POWERBASIC, + SCLEX_FORTH, + SCLEX_ERLANG, + SCLEX_OCTAVE, + SCLEX_MSSQL, + SCLEX_VERILOG, + SCLEX_KIX, + SCLEX_GUI4CLI, + SCLEX_SPECMAN, + SCLEX_AU3, + SCLEX_APDL, + SCLEX_BASH, + SCLEX_ASN1, + SCLEX_VHDL, + SCLEX_CAML, + SCLEX_BLITZBASIC, + SCLEX_PUREBASIC, + SCLEX_HASKELL, + SCLEX_PHPSCRIPT, + SCLEX_TADS3, + SCLEX_REBOL, + SCLEX_SMALLTALK, + SCLEX_FLAGSHIP, + SCLEX_CSOUND, + SCLEX_FREEBASIC, + SCLEX_INNOSETUP, + SCLEX_OPAL, + SCLEX_SPICE, + SCLEX_D, + SCLEX_CMAKE, + SCLEX_GAP, + SCLEX_PLM, + SCLEX_PROGRESS, + SCLEX_ABAQUS, + SCLEX_ASYMPTOTE, + SCLEX_R, + SCLEX_MAGIK, + SCLEX_POWERSHELL, + SCLEX_MYSQL, + SCLEX_PO, + SCLEX_TAL, + SCLEX_COBOL, + SCLEX_TACL, + SCLEX_SORCUS, + SCLEX_POWERPRO, + SCLEX_NIMROD, + SCLEX_SML, + SCLEX_MARKDOWN, + SCLEX_TXT2TAGS, + SCLEX_A68K, + SCLEX_MODULA, + SCLEX_COFFEESCRIPT, + SCLEX_TCMD, + SCLEX_AVS, + SCLEX_ECL, + SCLEX_OSCRIPT, + SCLEX_VISUALPROLOG, + SCLEX_LITERATEHASKELL, + SCLEX_STTXT, + SCLEX_KVIRC, + SCLEX_RUST, + SCLEX_DMAP, + SCLEX_AS, + SCLEX_DMIS, + SCLEX_REGISTRY, + SCLEX_BIBTEX, + SCLEX_SREC, + SCLEX_IHEX, + SCLEX_TEHEX, + SCLEX_JSON, + SCLEX_EDIFACT, + SCLEX_INDENT, + SCLEX_MAXIMA, + SCLEX_STATA, + SCLEX_SAS, + }; + + enum { + SC_WEIGHT_NORMAL, + SC_WEIGHT_SEMIBOLD, + SC_WEIGHT_BOLD, + }; + + enum { + SC_TECHNOLOGY_DEFAULT, + SC_TECHNOLOGY_DIRECTWRITE, + SC_TECHNOLOGY_DIRECTWRITERETAIN, + SC_TECHNOLOGY_DIRECTWRITEDC, + }; + + enum { + SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE, + SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE, + }; + + enum { + SC_FONT_SIZE_MULTIPLIER, + }; + + enum + { + SC_FOLDACTION_CONTRACT, + SC_FOLDACTION_EXPAND, + SC_FOLDACTION_TOGGLE, + }; + + enum + { + SC_AUTOMATICFOLD_SHOW, + SC_AUTOMATICFOLD_CLICK, + SC_AUTOMATICFOLD_CHANGE, + }; + + enum + { + SC_ORDER_PRESORTED, + SC_ORDER_PERFORMSORT, + SC_ORDER_CUSTOM, + }; + + explicit QsciScintillaBase(QWidget *parent /TransferThis/ = 0); + virtual ~QsciScintillaBase(); + +%ConvertToSubClassCode +static struct class_graph { + const char *name; + sipTypeDef **type; + int yes, no; +} graph[] = { + {sipName_QsciAbstractAPIs, &sipType_QsciAbstractAPIs, 4, 1}, + {sipName_QsciLexer, &sipType_QsciLexer, 5, 2}, + {sipName_QsciMacro, &sipType_QsciMacro, -1, 3}, + {sipName_QsciScintillaBase, &sipType_QsciScintillaBase, 51, -1}, + {sipName_QsciAPIs, &sipType_QsciAPIs, -1, -1}, + {sipName_QsciLexerAVS, &sipType_QsciLexerAVS, -1, 6}, + {sipName_QsciLexerAsm, &sipType_QsciLexerAsm, 39, 7}, + {sipName_QsciLexerBash, &sipType_QsciLexerBash, -1, 8}, + {sipName_QsciLexerBatch, &sipType_QsciLexerBatch, -1, 9}, + {sipName_QsciLexerCMake, &sipType_QsciLexerCMake, -1, 10}, + {sipName_QsciLexerCPP, &sipType_QsciLexerCPP, 41, 11}, + {sipName_QsciLexerCSS, &sipType_QsciLexerCSS, -1, 12}, + {sipName_QsciLexerCoffeeScript, &sipType_QsciLexerCoffeeScript, -1, 13}, + {sipName_QsciLexerCustom, &sipType_QsciLexerCustom, -1, 14}, + {sipName_QsciLexerD, &sipType_QsciLexerD, -1, 15}, + {sipName_QsciLexerDiff, &sipType_QsciLexerDiff, -1, 16}, + {sipName_QsciLexerFortran77, &sipType_QsciLexerFortran77, 45, 17}, + {sipName_QsciLexerHTML, &sipType_QsciLexerHTML, 46, 18}, + {sipName_QsciLexerHex, &sipType_QsciLexerHex, 47, 19}, + {sipName_QsciLexerJSON, &sipType_QsciLexerJSON, -1, 20}, + {sipName_QsciLexerLua, &sipType_QsciLexerLua, -1, 21}, + {sipName_QsciLexerMakefile, &sipType_QsciLexerMakefile, -1, 22}, + {sipName_QsciLexerMarkdown, &sipType_QsciLexerMarkdown, -1, 23}, + {sipName_QsciLexerMatlab, &sipType_QsciLexerMatlab, 50, 24}, + {sipName_QsciLexerPO, &sipType_QsciLexerPO, -1, 25}, + {sipName_QsciLexerPOV, &sipType_QsciLexerPOV, -1, 26}, + {sipName_QsciLexerPascal, &sipType_QsciLexerPascal, -1, 27}, + {sipName_QsciLexerPerl, &sipType_QsciLexerPerl, -1, 28}, + {sipName_QsciLexerPostScript, &sipType_QsciLexerPostScript, -1, 29}, + {sipName_QsciLexerProperties, &sipType_QsciLexerProperties, -1, 30}, + {sipName_QsciLexerPython, &sipType_QsciLexerPython, -1, 31}, + {sipName_QsciLexerRuby, &sipType_QsciLexerRuby, -1, 32}, + {sipName_QsciLexerSQL, &sipType_QsciLexerSQL, -1, 33}, + {sipName_QsciLexerSpice, &sipType_QsciLexerSpice, -1, 34}, + {sipName_QsciLexerTCL, &sipType_QsciLexerTCL, -1, 35}, + {sipName_QsciLexerTeX, &sipType_QsciLexerTeX, -1, 36}, + {sipName_QsciLexerVHDL, &sipType_QsciLexerVHDL, -1, 37}, + {sipName_QsciLexerVerilog, &sipType_QsciLexerVerilog, -1, 38}, + {sipName_QsciLexerYAML, &sipType_QsciLexerYAML, -1, -1}, + {sipName_QsciLexerMASM, &sipType_QsciLexerMASM, -1, 40}, + {sipName_QsciLexerNASM, &sipType_QsciLexerNASM, -1, -1}, + {sipName_QsciLexerCSharp, &sipType_QsciLexerCSharp, -1, 42}, + {sipName_QsciLexerIDL, &sipType_QsciLexerIDL, -1, 43}, + {sipName_QsciLexerJava, &sipType_QsciLexerJava, -1, 44}, + {sipName_QsciLexerJavaScript, &sipType_QsciLexerJavaScript, -1, -1}, + {sipName_QsciLexerFortran, &sipType_QsciLexerFortran, -1, -1}, + {sipName_QsciLexerXML, &sipType_QsciLexerXML, -1, -1}, + {sipName_QsciLexerIntelHex, &sipType_QsciLexerIntelHex, -1, 48}, + {sipName_QsciLexerSRec, &sipType_QsciLexerSRec, -1, 49}, + {sipName_QsciLexerTekHex, &sipType_QsciLexerTekHex, -1, -1}, + {sipName_QsciLexerOctave, &sipType_QsciLexerOctave, -1, -1}, + {sipName_QsciScintilla, &sipType_QsciScintilla, -1, -1}, +}; + +int i = 0; + +sipType = NULL; + +do +{ + struct class_graph *cg = &graph[i]; + + if (cg->name != NULL && sipCpp->inherits(cg->name)) + { + sipType = *cg->type; + i = cg->yes; + } + else + i = cg->no; +} +while (i >= 0); +%End + + static QsciScintillaBase *pool(); + + void replaceHorizontalScrollBar(QScrollBar *scrollBar /Transfer/); + void replaceVerticalScrollBar(QScrollBar *scrollBar /Transfer/); + + long SendScintilla(unsigned int msg, SIP_PYOBJECT wParam = 0, + long lParam = 0) const; +%MethodCode + if (!a1) + { + // The argument was omitted. + sipRes = sipCpp->SendScintilla(a0, 0UL, a2); + } + else + { + unsigned long ul_a1 = sipLong_AsUnsignedLong(a1); + + if (PyErr_Occurred()) + { + if (PyErr_ExceptionMatches(PyExc_OverflowError)) + { + PyErr_Clear(); + + // This shouldn't fail. + long l_a1 = sipLong_AsLong(a1); + + // The argument was signed. + sipRes = sipCpp->SendScintilla(a0, + static_cast(l_a1), a2); + } + else + { + // A type error so try the next overload. + sipError = sipErrorContinue; + } + } + else + { + // The argument was unsigned. + sipRes = sipCpp->SendScintilla(a0, ul_a1, a2); + } + } +%End + + long SendScintilla(unsigned int msg, unsigned long wParam, + void *lParam) const; + long SendScintilla(unsigned int msg, unsigned long wParam, + const char *lParam /Encoding="None"/) const; +%MethodCode + sipRes = sipCpp->SendScintilla(a0, static_cast(a1), a2); +%End + long SendScintilla(unsigned int msg, + const char *lParam /Encoding="None"/); const + long SendScintilla(unsigned int msg, + const char *wParam /Encoding="None"/, + const char *lParam /Encoding="None"/) const; + //long SendScintilla(unsigned int msg, long wParam) const; + //long SendScintilla(unsigned int msg, int wParam) const; + long SendScintilla(unsigned int msg, long cpMin, long cpMax, + char *lpstrText /Encoding="None"/) const; + long SendScintilla(unsigned int msg, unsigned long wParam, + const QColor &col) const; + long SendScintilla(unsigned int msg, const QColor &col) const; + long SendScintilla(unsigned int msg, unsigned long wParam, QPainter *hdc, + const QRect &rc, long cpMin, long cpMax) const; + long SendScintilla(unsigned int msg, unsigned long wParam, + const QPixmap &lParam) const; + long SendScintilla(unsigned int msg, unsigned long wParam, + const QImage &lParam) const; + + void *SendScintillaPtrResult(unsigned int msg) const; + +signals: + void QSCN_SELCHANGED(bool yes); + + void SCEN_CHANGE(); + + void SCN_AUTOCCANCELLED(); + void SCN_AUTOCCHARDELETED(); + void SCN_AUTOCCOMPLETED(const char *selection, int position, int ch, int method); + void SCN_AUTOCSELECTION(const char *selection, int position, int ch, int method); + void SCN_AUTOCSELECTION(const char *selection, int position); + void SCN_AUTOCSELECTIONCHANGE(const char *selection, int id, int position); + void SCN_CALLTIPCLICK(int direction); + void SCN_CHARADDED(int charadded); + void SCN_DOUBLECLICK(int position, int line, int modifiers); + void SCN_DWELLEND(int, int, int); + void SCN_DWELLSTART(int, int, int); + void SCN_FOCUSIN(); + void SCN_FOCUSOUT(); + void SCN_HOTSPOTCLICK(int position, int modifiers); + void SCN_HOTSPOTDOUBLECLICK(int position, int modifiers); + void SCN_HOTSPOTRELEASECLICK(int position, int modifiers); + void SCN_INDICATORCLICK(int position, int modifiers); + void SCN_INDICATORRELEASE(int position, int modifiers); + void SCN_MACRORECORD(unsigned int, ulong, void *); + void SCN_MARGINCLICK(int position, int modifiers, int margin); + void SCN_MARGINRIGHTCLICK(int position, int modifiers, int margin); + void SCN_MODIFIED(int, int, const char *, int, int, int, int, int, int, int); + void SCN_MODIFYATTEMPTRO(); + void SCN_NEEDSHOWN(int, int); + void SCN_PAINTED(); + void SCN_SAVEPOINTLEFT(); + void SCN_SAVEPOINTREACHED(); + void SCN_STYLENEEDED(int position); + void SCN_URIDROPPED(const QUrl &url); + void SCN_UPDATEUI(int updated); + void SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method, int position); + void SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method); + void SCN_USERLISTSELECTION(const char *selection, int id); + void SCN_ZOOM(); + +protected: + virtual bool canInsertFromMimeData(const QMimeData *source) const; + virtual QByteArray fromMimeData(const QMimeData *source, bool &rectangular) const; + virtual QMimeData *toMimeData(const QByteArray &text, bool rectangular) const; + + virtual void changeEvent(QEvent *e); + virtual void contextMenuEvent(QContextMenuEvent *e); + virtual void dragEnterEvent(QDragEnterEvent *e); + virtual void dragLeaveEvent(QDragLeaveEvent *e); + virtual void dragMoveEvent(QDragMoveEvent *e); + virtual void dropEvent(QDropEvent *e); + virtual void focusInEvent(QFocusEvent *e); + virtual void focusOutEvent(QFocusEvent *e); + virtual bool focusNextPrevChild(bool next); + virtual void keyPressEvent(QKeyEvent *e); + virtual void inputMethodEvent(QInputMethodEvent *e); + virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const; + virtual void mouseDoubleClickEvent(QMouseEvent *e); + virtual void mouseMoveEvent(QMouseEvent *e); + virtual void mousePressEvent(QMouseEvent *e); + virtual void mouseReleaseEvent(QMouseEvent *e); + virtual void paintEvent(QPaintEvent *e); + virtual void resizeEvent(QResizeEvent *e); + virtual void scrollContentsBy(int dx, int dy); + +private: + QsciScintillaBase(const QsciScintillaBase &); +}; diff --git a/third_party/qscintilla/Python/sip/qscistyle.sip b/third_party/qscintilla/Python/sip/qscistyle.sip new file mode 100644 index 0000000..01d91cc --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscistyle.sip @@ -0,0 +1,69 @@ +// This is the SIP interface definition for QsciStyle. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciStyle +{ +%TypeHeaderCode +#include +%End + +public: + enum TextCase { + OriginalCase, + UpperCase, + LowerCase + }; + + QsciStyle(int style = -1); + QsciStyle(int style, const QString &description, const QColor &color, + const QColor &paper, const QFont &font, bool eolFill = false); + + void setStyle(int style); + int style() const; + + void setDescription(const QString &description); + QString description() const; + + void setColor(const QColor &color); + QColor color() const; + + void setPaper(const QColor &paper); + QColor paper() const; + + void setFont(const QFont &font); + QFont font() const; + + void setEolFill(bool fill); + bool eolFill() const; + + void setTextCase(TextCase text_case); + TextCase textCase() const; + + void setVisible(bool visible); + bool visible() const; + + void setChangeable(bool changeable); + bool changeable() const; + + void setHotspot(bool hotspot); + bool hotspot() const; + + void refresh(); +}; diff --git a/third_party/qscintilla/Python/sip/qscistyledtext.sip b/third_party/qscintilla/Python/sip/qscistyledtext.sip new file mode 100644 index 0000000..3e416d2 --- /dev/null +++ b/third_party/qscintilla/Python/sip/qscistyledtext.sip @@ -0,0 +1,33 @@ +// This is the SIP interface definition for QsciStyledText. +// +// Copyright (c) 2023 Riverbank Computing Limited +// +// This file is part of QScintilla. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +class QsciStyledText +{ +%TypeHeaderCode +#include +%End + +public: + QsciStyledText(const QString &text, int style); + QsciStyledText(const QString &text, const QsciStyle &style); + + const QString &text(); + int style() const; +}; diff --git a/third_party/qscintilla/designer/designer.pro b/third_party/qscintilla/designer/designer.pro new file mode 100644 index 0000000..f238460 --- /dev/null +++ b/third_party/qscintilla/designer/designer.pro @@ -0,0 +1,22 @@ +# This is the qmake file for the QScintilla plugin for Qt Designer. + + +TEMPLATE = lib +TARGET = qscintillaplugin + +# Comment this in to build a dynamic library supporting multiple architectures +# on macOS. +#QMAKE_APPLE_DEVICE_ARCHS = x86_64 arm64 + +CONFIG += plugin qscintilla2 + +QT += designer + +# Work around QTBUG-39300. +CONFIG -= android_install + +HEADERS = qscintillaplugin.h +SOURCES = qscintillaplugin.cpp + +target.path = $$[QT_INSTALL_PLUGINS]/designer +INSTALLS += target diff --git a/third_party/qscintilla/designer/qscintillaplugin.cpp b/third_party/qscintilla/designer/qscintillaplugin.cpp new file mode 100644 index 0000000..6e43782 --- /dev/null +++ b/third_party/qscintilla/designer/qscintillaplugin.cpp @@ -0,0 +1,167 @@ +// This implements the QScintilla plugin for Qt Designer. + + +#include "qscintillaplugin.h" + +#include + +#include + + +static const char *qscintilla_pixmap[] = { + "22 22 35 1", + "m c #000000", + "n c #000033", + "p c #003300", + "r c #003333", + "v c #330000", + "o c #330033", + "l c #333300", + "h c #333333", + "c c #333366", + "d c #336666", + "u c #336699", + "E c #3366cc", + "k c #663333", + "i c #663366", + "b c #666666", + "e c #666699", + "A c #6666cc", + "G c #669966", + "f c #669999", + "j c #6699cc", + "y c #6699ff", + "t c #996666", + "a c #999999", + "g c #9999cc", + "s c #9999ff", + "C c #99cc99", + "x c #99cccc", + "w c #99ccff", + "F c #cc99ff", + "q c #cccccc", + "# c #ccccff", + "B c #ccffcc", + "z c #ccffff", + "D c #ffffcc", + ". c none", + "........#abcda........", + "......abefghdidcf.....", + ".....cadhfaehjheck....", + "....leh.m.ncbehjddo...", + "...depn.hqhqhr#mccch..", + "..bb.hcaeh.hqersjhjcd.", + ".tcm.uqn.hc.uvwxhuygha", + ".feh.n.hb.hhzemcwhmuAm", + "Bgehghqqme.eo#wlnysbnj", + "awhdAzn.engjepswhmuyuj", + "bCh#m.de.jpqwbmcwemlcz", + "hcb#xh.nd#qrbswfehwzbm", + "bd#d.A#zor#qmgbzwgjgws", + "ajbcuqhqzchwwbemewchmr", + "Dcn#cwmhgwehgsxbmhEjAc", + ".uanauFrhbgeahAAbcbuhh", + ".bohdAegcccfbbebuucmhe", + "..briuauAediddeclchhh.", + "...hcbhjccdecbceccch..", + "....nhcmeccdccephcp...", + ".....crbhchhhrhhck....", + "......tcmdhohhcnG....." +}; + + +QScintillaPlugin::QScintillaPlugin(QObject *parent) + : QObject(parent), initialized(false) +{ +} + + +QScintillaPlugin::~QScintillaPlugin() +{ +} + + +void QScintillaPlugin::initialize(QDesignerFormEditorInterface * /* core */) +{ + initialized = true; +} + + +bool QScintillaPlugin::isInitialized() const +{ + return initialized; +} + + +QWidget *QScintillaPlugin::createWidget(QWidget *parent) +{ + return new QsciScintilla(parent); +} + + +QString QScintillaPlugin::name() const +{ + return "QsciScintilla"; +} + + +QString QScintillaPlugin::group() const +{ + return "Input Widgets"; +} + + +QIcon QScintillaPlugin::icon() const +{ + return QIcon(QPixmap(qscintilla_pixmap)); +} + + +QString QScintillaPlugin::toolTip() const +{ + return "QScintilla Programmer's Editor"; +} + + +QString QScintillaPlugin::whatsThis() const +{ + return "A port to Qt of the Scintilla programmer's editor"; +} + + +bool QScintillaPlugin::isContainer() const +{ + return false; +} + + +QString QScintillaPlugin::domXml() const +{ + return "\n" + " \n" + " \n" + " 0\n" + " 0\n" + " 400\n" + " 200\n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + "\n"; +} + + +QString QScintillaPlugin::includeFile() const +{ + return "Qsci/qsciscintilla.h"; +} + + +#if QT_VERSION < 0x050000 +Q_EXPORT_PLUGIN2(qscintillaplugin, QScintillaPlugin) +#endif diff --git a/third_party/qscintilla/designer/qscintillaplugin.h b/third_party/qscintilla/designer/qscintillaplugin.h new file mode 100644 index 0000000..12f0377 --- /dev/null +++ b/third_party/qscintilla/designer/qscintillaplugin.h @@ -0,0 +1,38 @@ +// This defines the QScintilla plugin for Qt Designer. + + +#ifndef _QSCINTILLAPLUGIN_H +#define _QSCINTILLAPLUGIN_H + +#include + + +class QScintillaPlugin : public QObject, public QDesignerCustomWidgetInterface +{ + Q_OBJECT +#if QT_VERSION >= 0x050000 + Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QDesignerCustomWidgetInterface") +#endif + Q_INTERFACES(QDesignerCustomWidgetInterface) + +public: + QScintillaPlugin(QObject *parent = 0); + virtual ~QScintillaPlugin(); + + bool isContainer() const; + bool isInitialized() const; + QIcon icon() const; + QString domXml() const; + QString group() const; + QString includeFile() const; + QString name() const; + QString toolTip() const; + QString whatsThis() const; + QWidget *createWidget(QWidget *parent); + void initialize(QDesignerFormEditorInterface *core); + +private: + bool initialized; +}; + +#endif diff --git a/third_party/qscintilla/doc/README.doc b/third_party/qscintilla/doc/README.doc new file mode 100644 index 0000000..e2f2400 --- /dev/null +++ b/third_party/qscintilla/doc/README.doc @@ -0,0 +1,204 @@ +/*! \mainpage QScintilla - a Port to Qt v5 and Qt v6 of Scintilla + +

      Introduction

      + +QScintilla +is a port to Qt of the Scintilla +editing component. + +As well as features found in standard text editing components, Scintilla +includes features especially useful when editing and debugging source code: + +
        +
      • syntax styling with support for over 70 languages +
      • error indicators +
      • code completion +
      • call tips +
      • code folding +
      • margins can contain markers like those used in debuggers to indicate + breakpoints and the current line. +
      • recordable macros +
      • multiple views +
      • printing. +
      + +QScintilla is a port or Scintilla to the Qt GUI toolkit from +The Qt Company and runs on any operating system +supported by Qt (eg. Windows, Linux, macOS, iOS and Android). QScintilla works +with Qt v5 and v6. + +QScintilla also includes language bindings for +Python. These require that +PyQt v5 or v6 +is also installed. + +This version of QScintilla is based on Scintilla v3.10.1. + + +

      Licensing

      + +QScintilla is available under the +GNU General Public License v3 +and the Riverbank Commercial License. + +The commercial license allows closed source applications using QScintilla to be +developed and distributed. At the moment the commercial version of QScintilla +is bundled with, but packaged separately from, the commercial version of +PyQt. + +The Scintilla code within QScintilla is released under the following license: + +
      + License for Scintilla and SciTE
      +
      + Copyright 1998-2003 by Neil Hodgson 
      +
      + All Rights Reserved
      +
      + Permission to use, copy, modify, and distribute this software and its
      + documentation for any purpose and without fee is hereby granted,
      + provided that the above copyright notice appear in all copies and that
      + both that copyright notice and this permission notice appear in
      + supporting documentation.
      +
      + NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
      + SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
      + AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY
      + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
      + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
      + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
      + OR PERFORMANCE OF THIS SOFTWARE.
      +
      + + +

      Installation

      + +As supplied QScintilla will be built as a shared library/DLL and installed in +the same directories as the Qt libraries and include files. + +If you wish to build a static version of the library then pass +CONFIG+=staticlib on the qmake command line. + +On macOS, if you wish to build a dynamic version of the library that supports +both x86_64 and arm64 architectures then edit the file +qscintilla.pro in the src directory and comment in the +definition of QMAKE_APPLE_DEVICE_ARCHS. Similar changes can be made +to the .pro files for the Designer plugin and the example application. + +If you want to make more significant changes to the configuration then edit the +file qscintilla.pro in the src directory. + +If you do make changes, specifically to the names of the installation +directories or the name of the library, then you may also need to update the +src/features/qscintilla2.prf file. + +See your qmake documentation for more details. + +To build and install QScintilla, run: + +
      +    cd src
      +    qmake
      +    make
      +    make install
      +
      + +If you have multiple versions of Qt installed then make sure you use the +correct version of qmake. + +The underlying Scintilla code may support additional compile-time options. +These can be configured by passing appropriate arguments to qmake. +For example, if you have an old C++ compiler that does not have a working +std::regex then invoke qmake as follows: + +
      +    qmake DEFINES+=NO_CXX11_REGEX=1
      +
      + + +

      Installation on Windows

      + +Before compiling QScintilla on Windows you should remove the Qsci +directory containing the QScintilla header files from any previous +installation. This is because the Makefile generated by +qmake will find these older header files instead of the new ones. + +Depending on the compiler you are using you may need to run nmake +rather than make. + +If you have built a Windows DLL then you probably also want to run: + +
      +    copy %%QTDIR%\\lib\\qscintilla2.dll %%QTDIR%\\bin
      +
      + + +

      Integration with qmake

      + +To configure qmake to find your QScintilla installation, add the +following line to your application's .pro file: + +
      +    CONFIG += qscintilla2
      +
      + + +

      Qt Designer Plugin

      + +QScintilla includes an optional plugin for Qt Designer that allows QScintilla +instances to be included in GUI designs just like any other Qt widget. + +To build the plugin on all platforms, make sure QScintilla is installed and +then run (as root or administrator): + +
      +    cd designer
      +    qmake
      +    make
      +    make install
      +
      + +On Windows (and depending on the compiler you are using) you may need to run +nmake rather than make. + + +

      Example Application

      + +The example application provided is a port of the standard Qt +application example with the QsciScintilla class being used instead of +Qt's QTextEdit class. + +The example does not demonstrate all of the extra features of QScintilla. + +To build the example, run: + +
      +    cd example
      +    qmake
      +    make
      +
      + +On Windows (and depending on the compiler you are using) you may need to run +nmake rather than make. + + +

      Python Bindings

      + +The Python bindings are in the Python sub-directory. You must have +either PyQt5 or PyQt6 already installed and PyQt-builder. QScintilla must also +already be built and installed. + +The Python sub-directory contains a pyproject-qt5.toml file +and a pyproject-qt6.toml file. If you are building for PyQt5 and Qt +v5 then you must copy the pyproject-qt5.toml file to +pyproject.toml. If instead you are building for PyQt6 and Qt v6 then +you must copy the pyproject-qt6.toml file to pyproject.toml. + +To build and install the bindings, run: + +
      +    cd Python
      +    sip-install
      +
      +*/ diff --git a/third_party/qscintilla/doc/Scintilla/Design.html b/third_party/qscintilla/doc/Scintilla/Design.html new file mode 100644 index 0000000..9cb5b22 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/Design.html @@ -0,0 +1,246 @@ + + + + + + + + + + Scintilla and SciTE + + + + + + + + +
      + Scintilla icon + + Scintilla + Component Design +
      +

      + Top level structure +

      +

      + Scintilla consists of three major layers of C++ code +

      +
        +
      • + Portability Library +
      • +
      • + Core Code +
      • +
      • + Platform Events and API +
      • +
      +

      + The primary purpose of this structure is to separate the platform dependent code from the + platform independent core code. This makes it easier to port Scintilla to a new platform and + ensures that most readers of the code do not have to deal with platform details. To minimise + portability problems and avoid code bloat, a conservative subset of C++ is used in Scintilla + with no exception handling, run time type information or use of the standard C++ + library and with limited use of templates. +

      +

      + The currently supported platforms, Windows, GTK+/Linux, Cocoa and wxWidgets are fairly similar in + many ways. + Each has windows, menus and bitmaps. These features generally work in similar ways so each + has a way to move a window or draw a red line. Sometimes one platform requires a sequence of + calls rather than a single call. At other times, the differences are more profound. Reading + the Windows clipboard occurs synchronously but reading the GTK+ clipboard requires a request + call that will be asynchronously answered with a message containing the clipboard data. + The wxWidgets platform is available from the wxWidgets site +

      +
      +

      + Portability Library +

      +

      + This is a fairly small and thin layer over the platform's native capabilities. +

      +

      + The portability library is defined in Platform.h and is implemented once for each platform. + PlatWin.cxx defines the Windows variants of the methods and PlatGTK.cxx the GTK+ variants. +

      +

      + Several of the classes here hold platform specific object identifiers and act as proxies to + these platform objects. Most client code can thus manipulate the platform objects without + caring which is the current platform. Sometimes client code needs access to the underlying + object identifiers and this is provided by the GetID method. The underlying types of the + platform specific identifiers are typedefed to common names to allow them to be transferred + around in client code where needed. +

      +

      + Point, PRectangle +

      +

      + These are simple classes provided to hold the commonly used geometric primitives. A + PRectangle follows the Mac / Windows convention of not including its bottom and right sides + instead of including all its sides as is normal in GTK+. It is not called Rectangle as this may be + the name of a macro on Windows. +

      +

      + ColourDesired +

      +

      + This is a simple class holding an expected colour. It is internally represented as a single + 32 bit integer in BGR format with 8 bits per colour, but also provides a convenient API to fetch + each component separately. + As a platform might not be able to represent the exact desired colour if it doesn't have 24 bit + depth available, it might not actually represent the exact desired colour but select a best fit + that it can actually render. +

      +

      + Font +

      +

      + Font holds a platform specific font identifier - HFONT for Windows, PangoFontDescription* for GTK+. It + does not own the identifier and so will not delete the platform font object in its + destructor. Client code should call Destroy at appropriate times. +

      +

      + Surface +

      +

      + Surface is an abstraction over each platform's concept of somewhere that graphical drawing + operations can be done. It may wrap an already created drawing place such as a window or be + used to create a bitmap that can be drawn into and later copied onto another surface. On + Windows it wraps a HDC and possibly a HBITMAP. On GTK+ it wraps a cairo_surface_t*. + Other platform specific objects are created (and correctly destroyed) whenever + required to perform drawing actions. +

      +

      + Drawing operations provided include drawing filled and unfilled polygons, lines, rectangles, + ellipses and text. The height and width of text as well as other details can be measured. + Operations can be clipped to a rectangle. Most of the calls are stateless with all parameters + being passed at each call. The exception to this is line drawing which is performed by + calling MoveTo and then LineTo. +

      +

      + Window +

      +

      + Window acts as a proxy to a platform window allowing operations such as showing, moving, + redrawing, and destroying to be performed. It contains a platform specific window identifier + - HWND for Windows, GtkWidget* for GTK+. +

      +

      + ListBox +

      +

      + ListBox is a subclass of Window and acts as a proxy to a platform listbox adding methods for + operations such as adding, retrieving, and selecting items. +

      +

      + Menu +

      +

      + Menu is a small helper class for constructing popup menus. It contains the platform specific + menu identifier - HMENU for Windows, GtkMenu* for GTK+. Most of the work in + constructing menus requires access to platform events and so is done in the Platform Events + and API layer. +

      +

      + Platform +

      +

      + The Platform class is used to access the facilities of the platform. System wide parameters + such as double click speed and chrome colour are available from Platform. Utility functions + such as DebugPrintf are also available from Platform. +

      +

      + Core Code +

      +

      + The bulk of Scintilla's code is platform independent. This is made up of the CellBuffer, + ContractionState, Document, Editor, Indicator, LineMarker, Style, ViewStyle, KeyMap, + ScintillaBase, CallTip, + and AutoComplete primary classes. +

      +

      + CellBuffer +

      +

      + A CellBuffer holds text and styling information, the undo stack, the assignment of line + markers to lines, and the fold structure. +

      +

      + A cell contains a character byte and its associated style byte. The current state of the + cell buffer is the sequence of cells that make up the text and a sequence of line information + containing the starting position of each line and any markers assigned to each line. +

      +

      + The undo stack holds a sequence of actions on the cell buffer. Each action is one of a text + insertion, a text deletion or an undo start action. The start actions are used to group + sequences of text insertions and deletions together so they can be undone together. To + perform an undo operation, each insertion or deletion is undone in reverse sequence. + Similarly, redo reapplies each action to the buffer in sequence. Whenever a character is + inserted in the buffer either directly through a call such as InsertString or through undo or + redo, its styling byte is initially set to zero. Client code is responsible for styling each + character whenever convenient. Styling information is not stored in undo actions. +

      +

      + Document +

      +

      + A document contains a CellBuffer and deals with some higher level abstractions such as + words, DBCS character sequences and line end character sequences. It is responsible for + managing the styling process and for notifying other objects when changes occur to the + document. +

      +

      + Editor +

      +

      + The Editor object is central to Scintilla. It is responsible for displaying a document and + responding to user actions and requests from the container. It uses ContractionState, Indicator, + LineMarker, Style, and ViewStyle objects to display the document and a KeyMap class to + map key presses to functions. + The visibility of each line is kept in the ContractionState which is also responsible for mapping + from display lines to documents lines and vice versa. +

      +

      + There may be multiple Editor objects attached to one Document object. Changes to a + document are broadcast to the editors through the DocWatcher mechanism. +

      +

      + ScintillaBase +

      +

      + ScintillaBase is a subclass of Editor and adds extra windowing features including display of + calltips, autocompletion lists and context menus. These features use CallTip and AutoComplete + objects. This class is optional so a lightweight implementation of Scintilla may bypass it if + the added functionality is not required. +

      +

      + Platform Events and API +

      +

      + Each platform uses different mechanisms for receiving events. On Windows, events are + received through messages and COM. On GTK+, callback functions are used. +

      +

      + For each platform, a class is derived from ScintillaBase (and thus from Editor). This is + ScintillaWin on Windows and ScintillaGTK on GTK+. These classes are responsible for + connecting to the platforms event mechanism and also to implement some virtual methods in + Editor and ScintillaBase which are different on the platforms. For example, this layer has to + support this difference between the synchronous Windows clipboard and the asynchronous GTK+ + clipboard. +

      +

      + The external API is defined in this layer as each platform has different preferred styles of + API - messages on Windows and function calls on GTK+. This also allows multiple APIs to be + defined on a platform. The currently available API on GTK+ is similar to the Windows API and + does not follow platform conventions well. A second API could be implemented here that did + follow platform conventions. +

      + + + diff --git a/third_party/qscintilla/doc/Scintilla/Icons.html b/third_party/qscintilla/doc/Scintilla/Icons.html new file mode 100644 index 0000000..d6053f1 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/Icons.html @@ -0,0 +1,57 @@ + + + + + + + + + + Scintilla icons + + + + + + + + +
      + Scintilla icon + + Scintilla + and SciTE +
      +

      + Icons +

      +

      + These images may be used under the same license as Scintilla. +

      +

      + Drawn by Iago Rubio, Philippe Lhoste, and Neil Hodgson. +

      +

      + zip format (70K) +

      + + + + + + + + + + + + + + + + + +
      For autocompletion listsFor margin markers
      12x1216x1624x2432x32
      + + diff --git a/third_party/qscintilla/doc/Scintilla/LPegLexer.html b/third_party/qscintilla/doc/Scintilla/LPegLexer.html new file mode 100644 index 0000000..1a00497 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/LPegLexer.html @@ -0,0 +1,2608 @@ + + + + + + + + Lua LPeg Lexers + + + + + + + + + + + +
      Scintilla iconScintilla
      + +

      Lua LPeg Lexers

      + +

      Scintilla's LPeg lexer adds dynamic Lua + LPeg lexers to + Scintilla. It is the quickest way to add new or customized syntax + highlighting and code folding for programming languages to any + Scintilla-based text editor or IDE.

      + +

      Features

      + +
        +
      • Support for over 100 programming languages.
      • +
      • Easy lexer embedding for multi-language lexers.
      • +
      • Universal color themes.
      • +
      • Comparable speed to native Scintilla lexers.
      • +
      + +

      Enabling and Configuring the LPeg Lexer

      + +

      Scintilla is not compiled with the LPeg lexer enabled by + default (it is present, but empty). You need to manually enable it with the + LPEG_LEXER flag when building Scintilla and its lexers. You + also need to build and link the Lua source files contained in Scintilla's + lua/src/ directory to lexers/LexLPeg.cxx. If your + application has its own copy of Lua, you can ignore Scintilla's copy and + link to yours. + +

      At this time, only the GTK, curses, and MinGW32 (for win32) platform + makefiles facilitate enabling the LPeg lexer. For example, when building + Scintilla, run make LPEG_LEXER=1. User contributions to + facilitate this for the other platforms is encouraged.

      + +

      When Scintilla is compiled with the LPeg lexer enabled, and after + selecting it as the lexer to use via + SCI_SETLEXER or + SCI_SETLEXERLANGUAGE, + the following property must be set via + SCI_SETPROPERTY:

      + + + + + + + + + +
      lexer.lpeg.homeThe directory containing the Lua lexers. This is the path + where you included Scintilla's lexlua/ directory in + your application's installation location.
      + +

      The following properties are optional and may or may not be set:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      lexer.lpeg.color.themeThe color theme to use. Color themes are located in the + lexlua/themes/ directory. Currently supported themes + are light, dark, scite, and + curses. Your application can define colors and styles + manually through Scintilla properties. The theme files have + examples.
      foldFor Lua lexers that have a folder, folding is turned on if + fold is set to 1. The default is + 0.
      fold.by.indentation + + For Lua lexers that do not have a folder, if + fold.by.indentation is set to 1, folding is + done based on indentation level (like Python). The default is + 0.
      fold.line.commentsIf fold.line.comments is set to 1, + multiple, consecutive line comments are folded, and only the top-level + comment is shown. There is a small performance penalty for large + source files when this option and folding are enabled. The default is + 0.
      fold.on.zero.sum.linesIf fold.on.zero.sum.lines is set to 1, + lines that contain both an ending and starting fold point are marked + as fold points. For example, the C line } else { would be + marked as a fold point. The default is 0.
      + +

      Using the LPeg Lexer

      + +

      Your application communicates with the LPeg lexer using Scintilla's + SCI_PRIVATELEXERCALL + API. The operation constants recognized by the LPeg lexer are based on + Scintilla's existing named constants. Note that some of the names of the + operations do not make perfect sense. This is a tradeoff in order to reuse + Scintilla's existing constants.

      + +

      In the descriptions that follow, + SCI_PRIVATELEXERCALL(int operation, void *pointer) means you + would call Scintilla like + SendScintilla(sci, SCI_PRIVATELEXERCALL, operation, pointer);

      + +

      Usage Example

      + +

      The curses platform demo, jinx, has a C-source example for using the LPeg + lexer. Additionally, here is a pseudo-code example:

      + +
      
      +    init_app() {
      +      sci = scintilla_new()
      +    }
      +
      +    create_doc() {
      +      doc = SendScintilla(sci, SCI_CREATEDOCUMENT, 0, 0)
      +      SendScintilla(sci, SCI_SETDOCPOINTER, 0, doc)
      +      SendScintilla(sci, SCI_SETLEXERLANGUAGE, 0, "lpeg")
      +      home = "/home/mitchell/app/lua_lexers"
      +      SendScintilla(sci, SCI_SETPROPERTY, "lexer.lpeg.home", home)
      +      SendScintilla(sci, SCI_SETPROPERTY, "lexer.lpeg.color.theme", "light")
      +      fn = SendScintilla(sci, SCI_GETDIRECTFUNCTION, 0, 0)
      +      SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_GETDIRECTFUNCTION, fn)
      +      psci = SendScintilla(sci, SCI_GETDIRECTPOINTER, 0, 0)
      +      SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_SETDOCPOINTER, psci)
      +      SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_SETLEXERLANGUAGE, "lua")
      +    }
      +
      +    set_lexer(lang) {
      +      psci = SendScintilla(sci, SCI_GETDIRECTPOINTER, 0, 0)
      +      SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_SETDOCPOINTER, psci)
      +      SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_SETLEXERLANGUAGE, lang)
      +    }
      +    
      + + SCI_PRIVATELEXERCALL(SCI_CHANGELEXERSTATE, lua_State *L)
      + SCI_PRIVATELEXERCALL(SCI_GETDIRECTFUNCTION, int SciFnDirect)
      + SCI_PRIVATELEXERCALL(SCI_GETLEXERLANGUAGE, char *languageName) → int
      + SCI_PRIVATELEXERCALL(SCI_GETSTATUS, char *errorMessage) → int
      + SCI_PRIVATELEXERCALL(int styleNum, char *styleName) → int
      + SCI_PRIVATELEXERCALL(SCI_SETDOCPOINTER, int sci)
      + SCI_PRIVATELEXERCALL(SCI_SETLEXERLANGUAGE, languageName)
      +
      + +

      SCI_PRIVATELEXERCALL(SCI_CHANGELEXERSTATE, lua_State *L)
      + Tells the LPeg lexer to use L as its Lua state instead of + creating a separate state.

      + +

      L must have already opened the "base", "string", "table", + "package", and "lpeg" libraries. If L is a Lua 5.1 state, it + must have also opened the "io" library.

      + +

      The LPeg lexer will create a single lexer package (that can + be used with Lua's require function), as well as a number of + other variables in the LUA_REGISTRYINDEX table with the "sci_" + prefix.

      + +

      Rather than including the path to Scintilla's Lua lexers in the + package.path of the given Lua state, set the "lexer.lpeg.home" + property instead. The LPeg lexer uses that property to find and load + lexers.

      + +

      Usage:

      + +
      
      +    lua = luaL_newstate()
      +    SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_CHANGELEXERSTATE, lua)
      +    
      + +

      SCI_PRIVATELEXERCALL(SCI_GETDIRECTFUNCTION, SciFnDirect)
      + Tells the LPeg lexer the address of SciFnDirect, the function + that handles Scintilla messages.

      + +

      Despite the name SCI_GETDIRECTFUNCTION, it only notifies the + LPeg lexer what the value of SciFnDirect obtained from + SCI_GETDIRECTFUNCTION + is. It does not return anything. Use this if you would like to have the LPeg + lexer set all Lua lexer styles automatically. This is useful for maintaining + a consistent color theme. Do not use this if your application maintains its + own color theme.

      + +

      If you use this call, it must be made once for each + Scintilla document that was created using Scintilla's + SCI_CREATEDOCUMENT. + You must also use the + SCI_SETDOCPOINTER LPeg lexer + API call.

      + +

      Usage:

      + +
      
      +    fn = SendScintilla(sci, SCI_GETDIRECTFUNCTION, 0, 0)
      +    SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_GETDIRECTFUNCTION, fn)
      +    
      + +

      See also: SCI_SETDOCPOINTER

      + +

      SCI_PRIVATELEXERCALL(SCI_GETLEXERLANGUAGE, char *languageName) → int
      + Returns the length of the string name of the current Lua lexer or stores the + name into the given buffer. If the buffer is long enough, the name is + terminated by a 0 character.

      + +

      For parent lexers with embedded children or child lexers embedded into + parents, the name is in "lexer/current" format, where "lexer" is the actual + lexer's name and "current" is the parent or child lexer at the current caret + position. In order for this to work, you must have called + SCI_GETDIRECTFUNCTION + and + SCI_SETDOCPOINTER.

      + +

      SCI_PRIVATELEXERCALL(SCI_GETSTATUS, char *errorMessage) → int
      + Returns the length of the error message of the LPeg lexer or Lua lexer error + that occurred (if any), or stores the error message into the given buffer.

      + +

      If no error occurred, the returned message will be empty.

      + +

      Since the LPeg lexer does not throw errors as they occur, errors can only + be handled passively. Note that the LPeg lexer does print all errors to + stderr.

      + +

      Usage:

      + +
      
      +    SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_GETSTATUS, errmsg)
      +    if (strlen(errmsg) > 0) { /* handle error */ }
      +    
      + +

      SCI_PRIVATELEXERCALL(int styleNum, char *styleName) → int
      + Returns the length of the token name associated with the given style number + or stores the style name into the given buffer. If the buffer is long + enough, the string is terminated by a 0 character.

      + +

      Usage:

      + +
      
      +    style = SendScintilla(sci, SCI_GETSTYLEAT, pos, 0)
      +    SendScintilla(sci, SCI_PRIVATELEXERCALL, style, token)
      +    // token now contains the name of the style at pos
      +    
      + +

      SCI_PRIVATELEXERCALL(SCI_SETDOCPOINTER, int sci)
      + Tells the LPeg lexer the address of the Scintilla window (obtained via + Scintilla's + SCI_GETDIRECTPOINTER) + currently in use.

      + +

      Despite the name SCI_SETDOCPOINTER, it has no relationship + to Scintilla documents.

      + +

      Use this call only if you are using the + SCI_GETDIRECTFUNCTION + LPeg lexer API call. It must be made before each call to + the SCI_SETLEXERLANGUAGE + LPeg lexer API call.

      + +

      Usage:

      + +
      
      +    SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_SETDOCPOINTER, sci)
      +    
      + +

      See also: SCI_GETDIRECTFUNCTION, + SCI_SETLEXERLANGUAGE

      + +

      SCI_PRIVATELEXERCALL(SCI_SETLEXERLANGUAGE, const char *languageName)
      + Sets the current Lua lexer to languageName.

      + +

      If you are having the LPeg lexer set the Lua lexer styles automatically, + make sure you call the + SCI_SETDOCPOINTER + LPeg lexer API first.

      + +

      Usage:

      + +
      
      +    SendScintilla(sci, SCI_PRIVATELEXERCALL, SCI_SETLEXERLANGUAGE, "lua")
      +    
      + +

      See also: SCI_SETDOCPOINTER

      + +

      Writing Lua Lexers

      + +

      Lexers highlight the syntax of source code. Scintilla (the editing component + behind Textadept) traditionally uses static, compiled C++ + lexers which are notoriously difficult to create and/or extend. On the other + hand, Lua makes it easy to to rapidly create new lexers, extend existing + ones, and embed lexers within one another. Lua lexers tend to be more + readable than C++ lexers too.

      + +

      Lexers are Parsing Expression Grammars, or PEGs, composed with the Lua + LPeg library. The following table comes from the LPeg documentation and + summarizes all you need to know about constructing basic LPeg patterns. This + module provides convenience functions for creating and working with other + more advanced patterns and concepts.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operator Description
      lpeg.P(string) Matches string literally.
      lpeg.P(n) Matches exactly n characters.
      lpeg.S(string) Matches any character in set string.
      lpeg.R("xy") Matches any character between range x and y.
      patt^n Matches at least n repetitions of patt.
      patt^-n Matches at most n repetitions of patt.
      patt1 * patt2 Matches patt1 followed by patt2.
      patt1 + patt2 Matches patt1 or patt2 (ordered choice).
      patt1 - patt2 Matches patt1 if patt2 does not match.
      -patt Equivalent to ("" - patt).
      #patt Matches patt but consumes no input.
      + + +

      The first part of this document deals with rapidly constructing a simple + lexer. The next part deals with more advanced techniques, such as custom + coloring and embedding lexers within one another. Following that is a + discussion about code folding, or being able to tell Scintilla which code + blocks are "foldable" (temporarily hideable from view). After that are + instructions on how to use Lua lexers with the aforementioned Textadept + editor. Finally there are comments on lexer performance and limitations.

      + +

      + +

      Lexer Basics

      + +

      The lexlua/ directory contains all lexers, including your new one. Before + attempting to write one from scratch though, first determine if your + programming language is similar to any of the 100+ languages supported. If + so, you may be able to copy and modify that lexer, saving some time and + effort. The filename of your lexer should be the name of your programming + language in lower case followed by a .lua extension. For example, a new Lua + lexer has the name lua.lua.

      + +

      Note: Try to refrain from using one-character language names like "c", "d", + or "r". For example, Lua lexers for those languages are named "ansi_c", "dmd", and "rstats", + respectively.

      + +

      + +

      New Lexer Template

      + +

      There is a lexlua/template.txt file that contains a simple template for a + new lexer. Feel free to use it, replacing the '?'s with the name of your + lexer. Consider this snippet from the template:

      + +
      
      +    -- ? LPeg lexer.
      +
      +    local lexer = require('lexer')
      +    local token, word_match = lexer.token, lexer.word_match
      +    local P, R, S = lpeg.P, lpeg.R, lpeg.S
      +
      +    local lex = lexer.new('?')
      +
      +    -- Whitespace.
      +    local ws = token(lexer.WHITESPACE, lexer.space^1)
      +    lex:add_rule('whitespace', ws)
      +
      +    [...]
      +
      +    return lex
      +    
      + +

      The first 3 lines of code simply define often used convenience variables. The + fourth and last lines define and return the lexer object + Scintilla uses; they are very important and must be part of every lexer. The + fifth line defines something called a "token", an essential building block of + lexers. You will learn about tokens shortly. The sixth line defines a lexer + grammar rule, which you will learn about later, as well as token styles. (Be + aware that it is common practice to combine these two lines for short rules.) + Note, however, the local prefix in front of variables, which is needed + so-as not to affect Lua's global environment. All in all, this is a minimal, + working lexer that you can build on.

      + +

      + +

      Tokens

      + +

      Take a moment to think about your programming language's structure. What kind + of key elements does it have? In the template shown earlier, one predefined + element all languages have is whitespace. Your language probably also has + elements like comments, strings, and keywords. Lexers refer to these elements + as "tokens". Tokens are the fundamental "building blocks" of lexers. Lexers + break down source code into tokens for coloring, which results in the syntax + highlighting familiar to you. It is up to you how specific your lexer is when + it comes to tokens. Perhaps only distinguishing between keywords and + identifiers is necessary, or maybe recognizing constants and built-in + functions, methods, or libraries is desirable. The Lua lexer, for example, + defines 11 tokens: whitespace, keywords, built-in functions, constants, + built-in libraries, identifiers, strings, comments, numbers, labels, and + operators. Even though constants, built-in functions, and built-in libraries + are subsets of identifiers, Lua programmers find it helpful for the lexer to + distinguish between them all. It is perfectly acceptable to just recognize + keywords and identifiers.

      + +

      In a lexer, tokens consist of a token name and an LPeg pattern that matches a + sequence of characters recognized as an instance of that token. Create tokens + using the lexer.token() function. Let us examine the "whitespace" token + defined in the template shown earlier:

      + +
      
      +    local ws = token(lexer.WHITESPACE, lexer.space^1)
      +    
      + +

      At first glance, the first argument does not appear to be a string name and + the second argument does not appear to be an LPeg pattern. Perhaps you + expected something like:

      + +
      
      +    local ws = token('whitespace', S('\t\v\f\n\r ')^1)
      +    
      + +

      The lexer module actually provides a convenient list of common token names + and common LPeg patterns for you to use. Token names include + lexer.DEFAULT, lexer.WHITESPACE, lexer.COMMENT, + lexer.STRING, lexer.NUMBER, lexer.KEYWORD, + lexer.IDENTIFIER, lexer.OPERATOR, lexer.ERROR, + lexer.PREPROCESSOR, lexer.CONSTANT, lexer.VARIABLE, + lexer.FUNCTION, lexer.CLASS, lexer.TYPE, lexer.LABEL, + lexer.REGEX, and lexer.EMBEDDED. Patterns include + lexer.any, lexer.ascii, lexer.extend, lexer.alpha, + lexer.digit, lexer.alnum, lexer.lower, lexer.upper, + lexer.xdigit, lexer.cntrl, lexer.graph, lexer.print, + lexer.punct, lexer.space, lexer.newline, + lexer.nonnewline, lexer.nonnewline_esc, lexer.dec_num, + lexer.hex_num, lexer.oct_num, lexer.integer, + lexer.float, and lexer.word. You may use your own token names if + none of the above fit your language, but an advantage to using predefined + token names is that your lexer's tokens will inherit the universal syntax + highlighting color theme used by your text editor.

      + +

      + +
      Example Tokens
      + +

      So, how might you define other tokens like keywords, comments, and strings? + Here are some examples.

      + +

      Keywords

      + +

      Instead of matching n keywords with n P('keyword_n') ordered + choices, use another convenience function: lexer.word_match(). It is + much easier and more efficient to write word matches like:

      + +
      
      +    local keyword = token(lexer.KEYWORD, lexer.word_match[[
      +      keyword_1 keyword_2 ... keyword_n
      +    ]])
      +
      +    local case_insensitive_keyword = token(lexer.KEYWORD, lexer.word_match([[
      +      KEYWORD_1 keyword_2 ... KEYword_n
      +    ]], true))
      +
      +    local hyphened_keyword = token(lexer.KEYWORD, lexer.word_match[[
      +      keyword-1 keyword-2 ... keyword-n
      +    ]])
      +    
      + +

      In order to more easily separate or categorize keyword sets, you can use Lua + line comments within keyword strings. Such comments will be ignored. For + example:

      + +
      
      +    local keyword = token(lexer.KEYWORD, lexer.word_match[[
      +      -- Version 1 keywords.
      +      keyword_11, keyword_12 ... keyword_1n
      +      -- Version 2 keywords.
      +      keyword_21, keyword_22 ... keyword_2n
      +      ...
      +      -- Version N keywords.
      +      keyword_m1, keyword_m2 ... keyword_mn
      +    ]])
      +    
      + +

      Comments

      + +

      Line-style comments with a prefix character(s) are easy to express with LPeg:

      + +
      
      +    local shell_comment = token(lexer.COMMENT, '#' * lexer.nonnewline^0)
      +    local c_line_comment = token(lexer.COMMENT,
      +                                 '//' * lexer.nonnewline_esc^0)
      +    
      + +

      The comments above start with a '#' or "//" and go to the end of the line. + The second comment recognizes the next line also as a comment if the current + line ends with a '\' escape character.

      + +

      C-style "block" comments with a start and end delimiter are also easy to + express:

      + +
      
      +    local c_comment = token(lexer.COMMENT,
      +                            '/*' * (lexer.any - '*/')^0 * P('*/')^-1)
      +    
      + +

      This comment starts with a "/*" sequence and contains anything up to and + including an ending "*/" sequence. The ending "*/" is optional so the lexer + can recognize unfinished comments as comments and highlight them properly.

      + +

      Strings

      + +

      It is tempting to think that a string is not much different from the block + comment shown above in that both have start and end delimiters:

      + +
      
      +    local dq_str = '"' * (lexer.any - '"')^0 * P('"')^-1
      +    local sq_str = "'" * (lexer.any - "'")^0 * P("'")^-1
      +    local simple_string = token(lexer.STRING, dq_str + sq_str)
      +    
      + +

      However, most programming languages allow escape sequences in strings such + that a sequence like "\"" in a double-quoted string indicates that the + '"' is not the end of the string. The above token incorrectly matches + such a string. Instead, use the lexer.delimited_range() convenience + function.

      + +
      
      +    local dq_str = lexer.delimited_range('"')
      +    local sq_str = lexer.delimited_range("'")
      +    local string = token(lexer.STRING, dq_str + sq_str)
      +    
      + +

      In this case, the lexer treats '\' as an escape character in a string + sequence.

      + +

      Numbers

      + +

      Most programming languages have the same format for integer and float tokens, + so it might be as simple as using a couple of predefined LPeg patterns:

      + +
      
      +    local number = token(lexer.NUMBER, lexer.float + lexer.integer)
      +    
      + +

      However, some languages allow postfix characters on integers.

      + +
      
      +    local integer = P('-')^-1 * (lexer.dec_num * S('lL')^-1)
      +    local number = token(lexer.NUMBER, lexer.float + lexer.hex_num + integer)
      +    
      + +

      Your language may need other tweaks, but it is up to you how fine-grained you + want your highlighting to be. After all, you are not writing a compiler or + interpreter!

      + +

      + +

      Rules

      + +

      Programming languages have grammars, which specify valid token structure. For + example, comments usually cannot appear within a string. Grammars consist of + rules, which are simply combinations of tokens. Recall from the lexer + template the lexer.add_rule() call, which adds a rule to the lexer's + grammar:

      + +
      
      +    lex:add_rule('whitespace', ws)
      +    
      + +

      Each rule has an associated name, but rule names are completely arbitrary and + serve only to identify and distinguish between different rules. Rule order is + important: if text does not match the first rule added to the grammar, the + lexer tries to match the second rule added, and so on. Right now this lexer + simply matches whitespace tokens under a rule named "whitespace".

      + +

      To illustrate the importance of rule order, here is an example of a + simplified Lua lexer:

      + +
      
      +    lex:add_rule('whitespace', token(lexer.WHITESPACE, ...))
      +    lex:add_rule('keyword', token(lexer.KEYWORD, ...))
      +    lex:add_rule('identifier', token(lexer.IDENTIFIER, ...))
      +    lex:add_rule('string', token(lexer.STRING, ...))
      +    lex:add_rule('comment', token(lexer.COMMENT, ...))
      +    lex:add_rule('number', token(lexer.NUMBER, ...))
      +    lex:add_rule('label', token(lexer.LABEL, ...))
      +    lex:add_rule('operator', token(lexer.OPERATOR, ...))
      +    
      + +

      Note how identifiers come after keywords. In Lua, as with most programming + languages, the characters allowed in keywords and identifiers are in the same + set (alphanumerics plus underscores). If the lexer added the "identifier" + rule before the "keyword" rule, all keywords would match identifiers and thus + incorrectly highlight as identifiers instead of keywords. The same idea + applies to function, constant, etc. tokens that you may want to distinguish + between: their rules should come before identifiers.

      + +

      So what about text that does not match any rules? For example in Lua, the '!' + character is meaningless outside a string or comment. Normally the lexer + skips over such text. If instead you want to highlight these "syntax errors", + add an additional end rule:

      + +
      
      +    lex:add_rule('whitespace', ws)
      +    ...
      +    lex:add_rule('error', token(lexer.ERROR, lexer.any))
      +    
      + +

      This identifies and highlights any character not matched by an existing + rule as a lexer.ERROR token.

      + +

      Even though the rules defined in the examples above contain a single token, + rules may consist of multiple tokens. For example, a rule for an HTML tag + could consist of a tag token followed by an arbitrary number of attribute + tokens, allowing the lexer to highlight all tokens separately. That rule + might look something like this:

      + +
      
      +    lex:add_rule('tag', tag_start * (ws * attributes)^0 * tag_end^-1)
      +    
      + +

      Note however that lexers with complex rules like these are more prone to lose + track of their state, especially if they span multiple lines.

      + +

      + +

      Summary

      + +

      Lexers primarily consist of tokens and grammar rules. At your disposal are a + number of convenience patterns and functions for rapidly creating a lexer. If + you choose to use predefined token names for your tokens, you do not have to + define how the lexer highlights them. The tokens will inherit the default + syntax highlighting color theme your editor uses.

      + +

      + +

      Advanced Techniques

      + +

      + +

      Styles and Styling

      + +

      The most basic form of syntax highlighting is assigning different colors to + different tokens. Instead of highlighting with just colors, Scintilla allows + for more rich highlighting, or "styling", with different fonts, font sizes, + font attributes, and foreground and background colors, just to name a few. + The unit of this rich highlighting is called a "style". Styles are simply + strings of comma-separated property settings. By default, lexers associate + predefined token names like lexer.WHITESPACE, lexer.COMMENT, + lexer.STRING, etc. with particular styles as part of a universal color + theme. These predefined styles include lexer.STYLE_CLASS, + lexer.STYLE_COMMENT, lexer.STYLE_CONSTANT, + lexer.STYLE_ERROR, lexer.STYLE_EMBEDDED, + lexer.STYLE_FUNCTION, lexer.STYLE_IDENTIFIER, + lexer.STYLE_KEYWORD, lexer.STYLE_LABEL, lexer.STYLE_NUMBER, + lexer.STYLE_OPERATOR, lexer.STYLE_PREPROCESSOR, + lexer.STYLE_REGEX, lexer.STYLE_STRING, lexer.STYLE_TYPE, + lexer.STYLE_VARIABLE, and lexer.STYLE_WHITESPACE. Like with + predefined token names and LPeg patterns, you may define your own styles. At + their core, styles are just strings, so you may create new ones and/or modify + existing ones. Each style consists of the following comma-separated settings:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Setting Description
      font:name The name of the font the style uses.
      size:int The size of the font the style uses.
      [not]bold Whether or not the font face is bold.
      weight:int The weight or boldness of a font, between 1 and 999.
      [not]italics Whether or not the font face is italic.
      [not]underlined Whether or not the font face is underlined.
      fore:color The foreground color of the font face.
      back:color The background color of the font face.
      [not]eolfilled Does the background color extend to the end of the line?
      case:char The case of the font ('u': upper, 'l': lower, 'm': normal).
      [not]visible Whether or not the text is visible.
      [not]changeable Whether the text is changeable or read-only.
      + + +

      Specify font colors in either "#RRGGBB" format, "0xBBGGRR" format, or the + decimal equivalent of the latter. As with token names, LPeg patterns, and + styles, there is a set of predefined color names, but they vary depending on + the current color theme in use. Therefore, it is generally not a good idea to + manually define colors within styles in your lexer since they might not fit + into a user's chosen color theme. Try to refrain from even using predefined + colors in a style because that color may be theme-specific. Instead, the best + practice is to either use predefined styles or derive new color-agnostic + styles from predefined ones. For example, Lua "longstring" tokens use the + existing lexer.STYLE_STRING style instead of defining a new one.

      + +

      + +
      Example Styles
      + +

      Defining styles is pretty straightforward. An empty style that inherits the + default theme settings is simply an empty string:

      + +
      
      +    local style_nothing = ''
      +    
      + +

      A similar style but with a bold font face looks like this:

      + +
      
      +    local style_bold = 'bold'
      +    
      + +

      If you want the same style, but also with an italic font face, define the new + style in terms of the old one:

      + +
      
      +    local style_bold_italic = style_bold..',italics'
      +    
      + +

      This allows you to derive new styles from predefined ones without having to + rewrite them. This operation leaves the old style unchanged. Thus if you + had a "static variable" token whose style you wanted to base off of + lexer.STYLE_VARIABLE, it would probably look like:

      + +
      
      +    local style_static_var = lexer.STYLE_VARIABLE..',italics'
      +    
      + +

      The color theme files in the lexlua/themes/ folder give more examples of + style definitions.

      + +

      + +

      Token Styles

      + +

      Lexers use the lexer.add_style() function to assign styles to + particular tokens. Recall the token definition and from the lexer template:

      + +
      
      +    local ws = token(lexer.WHITESPACE, lexer.space^1)
      +    lex:add_rule('whitespace', ws)
      +    
      + +

      Why is a style not assigned to the lexer.WHITESPACE token? As mentioned + earlier, lexers automatically associate tokens that use predefined token + names with a particular style. Only tokens with custom token names need + manual style associations. As an example, consider a custom whitespace token:

      + +
      
      +    local ws = token('custom_whitespace', lexer.space^1)
      +    
      + +

      Assigning a style to this token looks like:

      + +
      
      +    lex:add_style('custom_whitespace', lexer.STYLE_WHITESPACE)
      +    
      + +

      Do not confuse token names with rule names. They are completely different + entities. In the example above, the lexer associates the "custom_whitespace" + token with the existing style for lexer.WHITESPACE tokens. If instead you + prefer to color the background of whitespace a shade of grey, it might look + like:

      + +
      
      +    local custom_style = lexer.STYLE_WHITESPACE..',back:$(color.grey)'
      +    lex:add_style('custom_whitespace', custom_style)
      +    
      + +

      Notice that the lexer peforms Scintilla-style "$()" property expansion. + You may also use "%()". Remember to refrain from assigning specific colors in + styles, but in this case, all user color themes probably define the + "color.grey" property.

      + +

      + +

      Line Lexers

      + +

      By default, lexers match the arbitrary chunks of text passed to them by + Scintilla. These chunks may be a full document, only the visible part of a + document, or even just portions of lines. Some lexers need to match whole + lines. For example, a lexer for the output of a file "diff" needs to know if + the line started with a '+' or '-' and then style the entire line + accordingly. To indicate that your lexer matches by line, create the lexer + with an extra parameter:

      + +
      
      +    local lex = lexer.new('?', {lex_by_line = true})
      +    
      + +

      Now the input text for the lexer is a single line at a time. Keep in mind + that line lexers do not have the ability to look ahead at subsequent lines.

      + +

      + +

      Embedded Lexers

      + +

      Lexers embed within one another very easily, requiring minimal effort. In the + following sections, the lexer being embedded is called the "child" lexer and + the lexer a child is being embedded in is called the "parent". For example, + consider an HTML lexer and a CSS lexer. Either lexer stands alone for styling + their respective HTML and CSS files. However, CSS can be embedded inside + HTML. In this specific case, the CSS lexer is the "child" lexer with the HTML + lexer being the "parent". Now consider an HTML lexer and a PHP lexer. This + sounds a lot like the case with CSS, but there is a subtle difference: PHP + embeds itself into HTML while CSS is embedded in HTML. This fundamental + difference results in two types of embedded lexers: a parent lexer that + embeds other child lexers in it (like HTML embedding CSS), and a child lexer + that embeds itself into a parent lexer (like PHP embedding itself in HTML).

      + +

      + +
      Parent Lexer
      + +

      Before embedding a child lexer into a parent lexer, the parent lexer needs to + load the child lexer. This is done with the lexer.load() function. For + example, loading the CSS lexer within the HTML lexer looks like:

      + +
      
      +    local css = lexer.load('css')
      +    
      + +

      The next part of the embedding process is telling the parent lexer when to + switch over to the child lexer and when to switch back. The lexer refers to + these indications as the "start rule" and "end rule", respectively, and are + just LPeg patterns. Continuing with the HTML/CSS example, the transition from + HTML to CSS is when the lexer encounters a "style" tag with a "type" + attribute whose value is "text/css":

      + +
      
      +    local css_tag = P('<style') * P(function(input, index)
      +      if input:find('^[^>]+type="text/css"', index) then
      +        return index
      +      end
      +    end)
      +    
      + +

      This pattern looks for the beginning of a "style" tag and searches its + attribute list for the text "type="text/css"". (In this simplified example, + the Lua pattern does not consider whitespace between the '=' nor does it + consider that using single quotes is valid.) If there is a match, the + functional pattern returns a value instead of nil. In this case, the value + returned does not matter because we ultimately want to style the "style" tag + as an HTML tag, so the actual start rule looks like this:

      + +
      
      +    local css_start_rule = #css_tag * tag
      +    
      + +

      Now that the parent knows when to switch to the child, it needs to know when + to switch back. In the case of HTML/CSS, the switch back occurs when the + lexer encounters an ending "style" tag, though the lexer should still style + the tag as an HTML tag:

      + +
      
      +    local css_end_rule = #P('</style>') * tag
      +    
      + +

      Once the parent loads the child lexer and defines the child's start and end + rules, it embeds the child with the lexer.embed() function:

      + +
      
      +    lex:embed(css, css_start_rule, css_end_rule)
      +    
      + +

      + +
      Child Lexer
      + +

      The process for instructing a child lexer to embed itself into a parent is + very similar to embedding a child into a parent: first, load the parent lexer + into the child lexer with the lexer.load() function and then create + start and end rules for the child lexer. However, in this case, call + lexer.embed() with switched arguments. For example, in the PHP lexer:

      + +
      
      +    local html = lexer.load('html')
      +    local php_start_rule = token('php_tag', '<?php ')
      +    local php_end_rule = token('php_tag', '?>')
      +    lex:add_style('php_tag', lexer.STYLE_EMBEDDED)
      +    html:embed(lex, php_start_rule, php_end_rule)
      +    
      + +

      + +

      Lexers with Complex State

      + +

      A vast majority of lexers are not stateful and can operate on any chunk of + text in a document. However, there may be rare cases where a lexer does need + to keep track of some sort of persistent state. Rather than using lpeg.P + function patterns that set state variables, it is recommended to make use of + Scintilla's built-in, per-line state integers via lexer.line_state. It + was designed to accommodate up to 32 bit flags for tracking state. + lexer.line_from_position() will return the line for any position given + to an lpeg.P function pattern. (Any positions derived from that position + argument will also work.)

      + +

      Writing stateful lexers is beyond the scope of this document.

      + +

      + +

      Code Folding

      + +

      When reading source code, it is occasionally helpful to temporarily hide + blocks of code like functions, classes, comments, etc. This is the concept of + "folding". In many Scintilla-based editors, such as Textadept, little indicators + in the editor margins appear next to code that can be folded at places called + "fold points". When the user clicks an indicator, the editor hides the code + associated with the indicator until the user clicks the indicator again. The + lexer specifies these fold points and what code exactly to fold.

      + +

      The fold points for most languages occur on keywords or character sequences. + Examples of fold keywords are "if" and "end" in Lua and examples of fold + character sequences are '{', '}', "/*", and "*/" in C for code block and + comment delimiters, respectively. However, these fold points cannot occur + just anywhere. For example, lexers should not recognize fold keywords that + appear within strings or comments. The lexer.add_fold_point() function + allows you to conveniently define fold points with such granularity. For + example, consider C:

      + +
      
      +    lex:add_fold_point(lexer.OPERATOR, '{', '}')
      +    lex:add_fold_point(lexer.COMMENT, '/*', '*/')
      +    
      + +

      The first assignment states that any '{' or '}' that the lexer recognized as + an lexer.OPERATOR token is a fold point. Likewise, the second assignment + states that any "/*" or "*/" that the lexer recognizes as part of a + lexer.COMMENT token is a fold point. The lexer does not consider any + occurrences of these characters outside their defined tokens (such as in a + string) as fold points. How do you specify fold keywords? Here is an example + for Lua:

      + +
      
      +    lex:add_fold_point(lexer.KEYWORD, 'if', 'end')
      +    lex:add_fold_point(lexer.KEYWORD, 'do', 'end')
      +    lex:add_fold_point(lexer.KEYWORD, 'function', 'end')
      +    lex:add_fold_point(lexer.KEYWORD, 'repeat', 'until')
      +    
      + +

      If your lexer has case-insensitive keywords as fold points, simply add a + case_insensitive_fold_points = true option to lexer.new(), and + specify keywords in lower case.

      + +

      If your lexer needs to do some additional processing in order to determine if + a token is a fold point, pass a function that returns an integer to + lex:add_fold_point(). Returning 1 indicates the token is a beginning fold + point and returning -1 indicates the token is an ending fold point. + Returning 0 indicates the token is not a fold point. For example:

      + +
      
      +    local function fold_strange_token(text, pos, line, s, symbol)
      +      if ... then
      +        return 1 -- beginning fold point
      +      elseif ... then
      +        return -1 -- ending fold point
      +      end
      +      return 0
      +    end
      +
      +    lex:add_fold_point('strange_token', '|', fold_strange_token)
      +    
      + +

      Any time the lexer encounters a '|' that is a "strange_token", it calls the + fold_strange_token function to determine if '|' is a fold point. The lexer + calls these functions with the following arguments: the text to identify fold + points in, the beginning position of the current line in the text to fold, + the current line's text, the position in the current line the fold point text + starts at, and the fold point text itself.

      + +

      + +

      Fold by Indentation

      + +

      Some languages have significant whitespace and/or no delimiters that indicate + fold points. If your lexer falls into this category and you would like to + mark fold points based on changes in indentation, create the lexer with a + fold_by_indentation = true option:

      + +
      
      +    local lex = lexer.new('?', {fold_by_indentation = true})
      +    
      + +

      + +

      Using Lexers

      + +

      + +

      Textadept

      + +

      Put your lexer in your ~/.textadept/lexers/ directory so you do not + overwrite it when upgrading Textadept. Also, lexers in this directory + override default lexers. Thus, Textadept loads a user lua lexer instead of + the default lua lexer. This is convenient for tweaking a default lexer to + your liking. Then add a file type for your lexer if necessary.

      + +

      + +

      Migrating Legacy Lexers

      + +

      Legacy lexers are of the form:

      + +
      
      +    local l = require('lexer')
      +    local token, word_match = l.token, l.word_match
      +    local P, R, S = lpeg.P, lpeg.R, lpeg.S
      +
      +    local M = {_NAME = '?'}
      +
      +    [... token and pattern definitions ...]
      +
      +    M._rules = {
      +      {'rule', pattern},
      +      [...]
      +    }
      +
      +    M._tokenstyles = {
      +      'token' = 'style',
      +      [...]
      +    }
      +
      +    M._foldsymbols = {
      +      _patterns = {...},
      +      ['token'] = {['start'] = 1, ['end'] = -1},
      +      [...]
      +    }
      +
      +    return M
      +    
      + +

      While such legacy lexers will be handled just fine without any + changes, it is recommended that you migrate yours. The migration process is + fairly straightforward:

      + +
        +
      1. Replace all instances of l with lexer, as it's better practice and + results in less confusion.
      2. +
      3. Replace local M = {_NAME = '?'} with local lex = lexer.new('?'), where + ? is the name of your legacy lexer. At the end of the lexer, change + return M to return lex.
      4. +
      5. Instead of defining rules towards the end of your lexer, define your rules + as you define your tokens and patterns using + lex:add_rule().
      6. +
      7. Similarly, any custom token names should have their styles immediately + defined using lex:add_style().
      8. +
      9. Convert any table arguments passed to lexer.word_match() to a + space-separated string of words.
      10. +
      11. Replace any calls to lexer.embed(M, child, ...) and + lexer.embed(parent, M, ...) with + lex:embed(child, ...) and parent:embed(lex, ...), + respectively.
      12. +
      13. Define fold points with simple calls to + lex:add_fold_point(). No need to mess with Lua + patterns anymore.
      14. +
      15. Any legacy lexer options such as M._FOLDBYINDENTATION, M._LEXBYLINE, + M._lexer, etc. should be added as table options to lexer.new().
      16. +
      17. Any external lexer rule fetching and/or modifications via lexer._RULES + should be changed to use lexer.get_rule() and + lexer.modify_rule().
      18. +
      + + +

      As an example, consider the following sample legacy lexer:

      + +
      
      +    local l = require('lexer')
      +    local token, word_match = l.token, l.word_match
      +    local P, R, S = lpeg.P, lpeg.R, lpeg.S
      +
      +    local M = {_NAME = 'legacy'}
      +
      +    local ws = token(l.WHITESPACE, l.space^1)
      +    local comment = token(l.COMMENT, '#' * l.nonnewline^0)
      +    local string = token(l.STRING, l.delimited_range('"'))
      +    local number = token(l.NUMBER, l.float + l.integer)
      +    local keyword = token(l.KEYWORD, word_match{'foo', 'bar', 'baz'})
      +    local custom = token('custom', P('quux'))
      +    local identifier = token(l.IDENTIFIER, l.word)
      +    local operator = token(l.OPERATOR, S('+-*/%^=<>,.()[]{}'))
      +
      +    M._rules = {
      +      {'whitespace', ws},
      +      {'keyword', keyword},
      +      {'custom', custom},
      +      {'identifier', identifier},
      +      {'string', string},
      +      {'comment', comment},
      +      {'number', number},
      +      {'operator', operator}
      +    }
      +
      +    M._tokenstyles = {
      +      'custom' = l.STYLE_KEYWORD..',bold'
      +    }
      +
      +    M._foldsymbols = {
      +      _patterns = {'[{}]'},
      +      [l.OPERATOR] = {['{'] = 1, ['}'] = -1}
      +    }
      +
      +    return M
      +    
      + +

      Following the migration steps would yield:

      + +
      
      +    local lexer = require('lexer')
      +    local token, word_match = lexer.token, lexer.word_match
      +    local P, R, S = lpeg.P, lpeg.R, lpeg.S
      +
      +    local lex = lexer.new('legacy')
      +
      +    lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
      +    lex:add_rule('keyword', token(lexer.KEYWORD, word_match[[foo bar baz]]))
      +    lex:add_rule('custom', token('custom', P('quux')))
      +    lex:add_style('custom', lexer.STYLE_KEYWORD..',bold')
      +    lex:add_rule('identifier', token(lexer.IDENTIFIER, lexer.word))
      +    lex:add_rule('string', token(lexer.STRING, lexer.delimited_range('"')))
      +    lex:add_rule('comment', token(lexer.COMMENT, '#' * lexer.nonnewline^0))
      +    lex:add_rule('number', token(lexer.NUMBER, lexer.float + lexer.integer))
      +    lex:add_rule('operator', token(lexer.OPERATOR, S('+-*/%^=<>,.()[]{}')))
      +
      +    lex:add_fold_point(lexer.OPERATOR, '{', '}')
      +
      +    return lex
      +    
      + +

      + +

      Considerations

      + +

      + +

      Performance

      + +

      There might be some slight overhead when initializing a lexer, but loading a + file from disk into Scintilla is usually more expensive. On modern computer + systems, I see no difference in speed between Lua lexers and Scintilla's C++ + ones. Optimize lexers for speed by re-arranging lexer.add_rule() calls so + that the most common rules match first. Do keep in mind that order matters + for similar rules.

      + +

      In some cases, folding may be far more expensive than lexing, particularly + in lexers with a lot of potential fold points. If your lexer is exhibiting + signs of slowness, try disabling folding your text editor first. If that + speeds things up, you can try reducing the number of fold points you added, + overriding lexer.fold() with your own implementation, or simply eliminating + folding support from your lexer.

      + +

      + +

      Limitations

      + +

      Embedded preprocessor languages like PHP cannot completely embed in their + parent languages in that the parent's tokens do not support start and end + rules. This mostly goes unnoticed, but code like

      + +
      
      +    <div id="<?php echo $id; ?>">
      +    
      + +

      will not style correctly.

      + +

      + +

      Troubleshooting

      + +

      Errors in lexers can be tricky to debug. Lexers print Lua errors to + io.stderr and _G.print() statements to io.stdout. Running your editor + from a terminal is the easiest way to see errors as they occur.

      + +

      + +

      Risks

      + +

      Poorly written lexers have the ability to crash Scintilla (and thus its + containing application), so unsaved data might be lost. However, I have only + observed these crashes in early lexer development, when syntax errors or + pattern errors are present. Once the lexer actually starts styling text + (either correctly or incorrectly, it does not matter), I have not observed + any crashes.

      + +

      + +

      Acknowledgements

      + +

      Thanks to Peter Odding for his lexer post on the Lua mailing list + that inspired me, and thanks to Roberto Ierusalimschy for LPeg.

      + +

      Lua lexer module API fields

      + +

      + +

      lexer.CLASS (string)

      + +

      The token name for class tokens.

      + +

      + +

      lexer.COMMENT (string)

      + +

      The token name for comment tokens.

      + +

      + +

      lexer.CONSTANT (string)

      + +

      The token name for constant tokens.

      + +

      + +

      lexer.DEFAULT (string)

      + +

      The token name for default tokens.

      + +

      + +

      lexer.ERROR (string)

      + +

      The token name for error tokens.

      + +

      + +

      lexer.FOLD_BASE (number)

      + +

      The initial (root) fold level.

      + +

      + +

      lexer.FOLD_BLANK (number)

      + +

      Flag indicating that the line is blank.

      + +

      + +

      lexer.FOLD_HEADER (number)

      + +

      Flag indicating the line is fold point.

      + +

      + +

      lexer.FUNCTION (string)

      + +

      The token name for function tokens.

      + +

      + +

      lexer.IDENTIFIER (string)

      + +

      The token name for identifier tokens.

      + +

      + +

      lexer.KEYWORD (string)

      + +

      The token name for keyword tokens.

      + +

      + +

      lexer.LABEL (string)

      + +

      The token name for label tokens.

      + +

      + +

      lexer.NUMBER (string)

      + +

      The token name for number tokens.

      + +

      + +

      lexer.OPERATOR (string)

      + +

      The token name for operator tokens.

      + +

      + +

      lexer.PREPROCESSOR (string)

      + +

      The token name for preprocessor tokens.

      + +

      + +

      lexer.REGEX (string)

      + +

      The token name for regex tokens.

      + +

      + +

      lexer.STRING (string)

      + +

      The token name for string tokens.

      + +

      + +

      lexer.STYLE_BRACEBAD (string)

      + +

      The style used for unmatched brace characters.

      + +

      + +

      lexer.STYLE_BRACELIGHT (string)

      + +

      The style used for highlighted brace characters.

      + +

      + +

      lexer.STYLE_CALLTIP (string)

      + +

      The style used by call tips if buffer.call_tip_use_style is set. + Only the font name, size, and color attributes are used.

      + +

      + +

      lexer.STYLE_CLASS (string)

      + +

      The style typically used for class definitions.

      + +

      + +

      lexer.STYLE_COMMENT (string)

      + +

      The style typically used for code comments.

      + +

      + +

      lexer.STYLE_CONSTANT (string)

      + +

      The style typically used for constants.

      + +

      + +

      lexer.STYLE_CONTROLCHAR (string)

      + +

      The style used for control characters. + Color attributes are ignored.

      + +

      + +

      lexer.STYLE_DEFAULT (string)

      + +

      The style all styles are based off of.

      + +

      + +

      lexer.STYLE_EMBEDDED (string)

      + +

      The style typically used for embedded code.

      + +

      + +

      lexer.STYLE_ERROR (string)

      + +

      The style typically used for erroneous syntax.

      + +

      + +

      lexer.STYLE_FOLDDISPLAYTEXT (string)

      + +

      The style used for fold display text.

      + +

      + +

      lexer.STYLE_FUNCTION (string)

      + +

      The style typically used for function definitions.

      + +

      + +

      lexer.STYLE_IDENTIFIER (string)

      + +

      The style typically used for identifier words.

      + +

      + +

      lexer.STYLE_INDENTGUIDE (string)

      + +

      The style used for indentation guides.

      + +

      + +

      lexer.STYLE_KEYWORD (string)

      + +

      The style typically used for language keywords.

      + +

      + +

      lexer.STYLE_LABEL (string)

      + +

      The style typically used for labels.

      + +

      + +

      lexer.STYLE_LINENUMBER (string)

      + +

      The style used for all margins except fold margins.

      + +

      + +

      lexer.STYLE_NUMBER (string)

      + +

      The style typically used for numbers.

      + +

      + +

      lexer.STYLE_OPERATOR (string)

      + +

      The style typically used for operators.

      + +

      + +

      lexer.STYLE_PREPROCESSOR (string)

      + +

      The style typically used for preprocessor statements.

      + +

      + +

      lexer.STYLE_REGEX (string)

      + +

      The style typically used for regular expression strings.

      + +

      + +

      lexer.STYLE_STRING (string)

      + +

      The style typically used for strings.

      + +

      + +

      lexer.STYLE_TYPE (string)

      + +

      The style typically used for static types.

      + +

      + +

      lexer.STYLE_VARIABLE (string)

      + +

      The style typically used for variables.

      + +

      + +

      lexer.STYLE_WHITESPACE (string)

      + +

      The style typically used for whitespace.

      + +

      + +

      lexer.TYPE (string)

      + +

      The token name for type tokens.

      + +

      + +

      lexer.VARIABLE (string)

      + +

      The token name for variable tokens.

      + +

      + +

      lexer.WHITESPACE (string)

      + +

      The token name for whitespace tokens.

      + +

      + +

      lexer.alnum (pattern)

      + +

      A pattern that matches any alphanumeric character ('A'-'Z', 'a'-'z', + '0'-'9').

      + +

      + +

      lexer.alpha (pattern)

      + +

      A pattern that matches any alphabetic character ('A'-'Z', 'a'-'z').

      + +

      + +

      lexer.any (pattern)

      + +

      A pattern that matches any single character.

      + +

      + +

      lexer.ascii (pattern)

      + +

      A pattern that matches any ASCII character (codes 0 to 127).

      + +

      + +

      lexer.cntrl (pattern)

      + +

      A pattern that matches any control character (ASCII codes 0 to 31).

      + +

      + +

      lexer.dec_num (pattern)

      + +

      A pattern that matches a decimal number.

      + +

      + +

      lexer.digit (pattern)

      + +

      A pattern that matches any digit ('0'-'9').

      + +

      + +

      lexer.extend (pattern)

      + +

      A pattern that matches any ASCII extended character (codes 0 to 255).

      + +

      + +

      lexer.float (pattern)

      + +

      A pattern that matches a floating point number.

      + +

      + +

      lexer.fold_level (table, Read-only)

      + +

      Table of fold level bit-masks for line numbers starting from zero. + Fold level masks are composed of an integer level combined with any of the + following bits:

      + +
        +
      • lexer.FOLD_BASE + The initial fold level.
      • +
      • lexer.FOLD_BLANK + The line is blank.
      • +
      • lexer.FOLD_HEADER + The line is a header, or fold point.
      • +
      + + +

      + +

      lexer.graph (pattern)

      + +

      A pattern that matches any graphical character ('!' to '~').

      + +

      + +

      lexer.hex_num (pattern)

      + +

      A pattern that matches a hexadecimal number.

      + +

      + +

      lexer.indent_amount (table, Read-only)

      + +

      Table of indentation amounts in character columns, for line numbers + starting from zero.

      + +

      + +

      lexer.integer (pattern)

      + +

      A pattern that matches either a decimal, hexadecimal, or octal number.

      + +

      + +

      lexer.line_state (table)

      + +

      Table of integer line states for line numbers starting from zero. + Line states can be used by lexers for keeping track of persistent states.

      + +

      + +

      lexer.lower (pattern)

      + +

      A pattern that matches any lower case character ('a'-'z').

      + +

      + +

      lexer.newline (pattern)

      + +

      A pattern that matches any set of end of line characters.

      + +

      + +

      lexer.nonnewline (pattern)

      + +

      A pattern that matches any single, non-newline character.

      + +

      + +

      lexer.nonnewline_esc (pattern)

      + +

      A pattern that matches any single, non-newline character or any set of end + of line characters escaped with '\'.

      + +

      + +

      lexer.oct_num (pattern)

      + +

      A pattern that matches an octal number.

      + +

      + +

      lexer.path (string)

      + +

      The path used to search for a lexer to load. + Identical in format to Lua's package.path string. + The default value is package.path.

      + +

      + +

      lexer.print (pattern)

      + +

      A pattern that matches any printable character (' ' to '~').

      + +

      + +

      lexer.property (table)

      + +

      Map of key-value string pairs.

      + +

      + +

      lexer.property_expanded (table, Read-only)

      + +

      Map of key-value string pairs with $() and %() variable replacement + performed in values.

      + +

      + +

      lexer.property_int (table, Read-only)

      + +

      Map of key-value pairs with values interpreted as numbers, or 0 if not + found.

      + +

      + +

      lexer.punct (pattern)

      + +

      A pattern that matches any punctuation character ('!' to '/', ':' to '@', + '[' to ''', '{' to '~').

      + +

      + +

      lexer.space (pattern)

      + +

      A pattern that matches any whitespace character ('\t', '\v', '\f', '\n', + '\r', space).

      + +

      + +

      lexer.style_at (table, Read-only)

      + +

      Table of style names at positions in the buffer starting from 1.

      + +

      + +

      lexer.upper (pattern)

      + +

      A pattern that matches any upper case character ('A'-'Z').

      + +

      + +

      lexer.word (pattern)

      + +

      A pattern that matches a typical word. Words begin with a letter or + underscore and consist of alphanumeric and underscore characters.

      + +

      + +

      lexer.xdigit (pattern)

      + +

      A pattern that matches any hexadecimal digit ('0'-'9', 'A'-'F', 'a'-'f').

      + +

      Lua lexer module API functions

      + +

      + +

      lexer.add_fold_point (lexer, token_name, start_symbol, end_symbol)

      + +

      Adds to lexer lexer a fold point whose beginning and end tokens are string + token_name tokens with string content start_symbol and end_symbol, + respectively. + In the event that start_symbol may or may not be a fold point depending on + context, and that additional processing is required, end_symbol may be a + function that ultimately returns 1 (indicating a beginning fold point), + -1 (indicating an ending fold point), or 0 (indicating no fold point). + That function is passed the following arguments:

      + +
        +
      • text: The text being processed for fold points.
      • +
      • pos: The position in text of the beginning of the line currently + being processed.
      • +
      • line: The text of the line currently being processed.
      • +
      • s: The position of start_symbol in line.
      • +
      • symbol: start_symbol itself.
      • +
      + + +

      Fields:

      + +
        +
      • lexer: The lexer to add a fold point to.
      • +
      • token_name: The token name of text that indicates a fold point.
      • +
      • start_symbol: The text that indicates the beginning of a fold point.
      • +
      • end_symbol: Either the text that indicates the end of a fold point, or + a function that returns whether or not start_symbol is a beginning fold + point (1), an ending fold point (-1), or not a fold point at all (0).
      • +
      + + +

      Usage:

      + +
        +
      • lex:add_fold_point(lexer.OPERATOR, '{', '}')
      • +
      • lex:add_fold_point(lexer.KEYWORD, 'if', 'end')
      • +
      • lex:add_fold_point(lexer.COMMENT, '#', lexer.fold_line_comments('#'))
      • +
      • lex:add_fold_point('custom', function(text, pos, line, s, symbol) + ... end)
      • +
      + + +

      + +

      lexer.add_rule (lexer, id, rule)

      + +

      Adds pattern rule identified by string id to the ordered list of rules + for lexer lexer.

      + +

      Fields:

      + +
        +
      • lexer: The lexer to add the given rule to.
      • +
      • id: The id associated with this rule. It does not have to be the same + as the name passed to token().
      • +
      • rule: The LPeg pattern of the rule.
      • +
      + + +

      See also:

      + + + + +

      + +

      lexer.add_style (lexer, token_name, style)

      + +

      Associates string token_name in lexer lexer with Scintilla style string + style. + Style strings are comma-separated property settings. Available property + settings are:

      + +
        +
      • font:name: Font name.
      • +
      • size:int: Font size.
      • +
      • bold or notbold: Whether or not the font face is bold.
      • +
      • weight:int: Font weight (between 1 and 999).
      • +
      • italics or notitalics: Whether or not the font face is italic.
      • +
      • underlined or notunderlined: Whether or not the font face is + underlined.
      • +
      • fore:color: Font face foreground color in "#RRGGBB" or 0xBBGGRR format.
      • +
      • back:color: Font face background color in "#RRGGBB" or 0xBBGGRR format.
      • +
      • eolfilled or noteolfilled: Whether or not the background color + extends to the end of the line.
      • +
      • case:char: Font case ('u' for uppercase, 'l' for lowercase, and 'm' for + mixed case).
      • +
      • visible or notvisible: Whether or not the text is visible.
      • +
      • changeable or notchangeable: Whether or not the text is changeable or + read-only.
      • +
      + + +

      Property settings may also contain "$(property.name)" expansions for + properties defined in Scintilla, theme files, etc.

      + +

      Fields:

      + +
        +
      • lexer: The lexer to add a style to.
      • +
      • token_name: The name of the token to associated with the style.
      • +
      • style: A style string for Scintilla.
      • +
      + + +

      Usage:

      + +
        +
      • lex:add_style('longstring', lexer.STYLE_STRING)
      • +
      • lex:add_style('deprecated_function', lexer.STYLE_FUNCTION..',italics')
      • +
      • lex:add_style('visible_ws', + lexer.STYLE_WHITESPACE..',back:$(color.grey)')
      • +
      + + +

      + +

      lexer.delimited_range (chars, single_line, no_escape, balanced)

      + +

      Creates and returns a pattern that matches a range of text bounded by + chars characters. + This is a convenience function for matching more complicated delimited ranges + like strings with escape characters and balanced parentheses. single_line + indicates whether or not the range must be on a single line, no_escape + indicates whether or not to ignore '\' as an escape character, and balanced + indicates whether or not to handle balanced ranges like parentheses and + requires chars to be composed of two characters.

      + +

      Fields:

      + +
        +
      • chars: The character(s) that bound the matched range.
      • +
      • single_line: Optional flag indicating whether or not the range must be + on a single line.
      • +
      • no_escape: Optional flag indicating whether or not the range end + character may be escaped by a '\' character.
      • +
      • balanced: Optional flag indicating whether or not to match a balanced + range, like the "%b" Lua pattern. This flag only applies if chars + consists of two different characters (e.g. "()").
      • +
      + + +

      Usage:

      + +
        +
      • local dq_str_escapes = lexer.delimited_range('"')
      • +
      • local dq_str_noescapes = lexer.delimited_range('"', false, true)
      • +
      • local unbalanced_parens = lexer.delimited_range('()')
      • +
      • local balanced_parens = lexer.delimited_range('()', false, false, + true)
      • +
      + + +

      Return:

      + +
        +
      • pattern
      • +
      + + +

      See also:

      + + + + +

      + +

      lexer.embed (lexer, child, start_rule, end_rule)

      + +

      Embeds child lexer child in parent lexer lexer using patterns + start_rule and end_rule, which signal the beginning and end of the + embedded lexer, respectively.

      + +

      Fields:

      + +
        +
      • lexer: The parent lexer.
      • +
      • child: The child lexer.
      • +
      • start_rule: The pattern that signals the beginning of the embedded + lexer.
      • +
      • end_rule: The pattern that signals the end of the embedded lexer.
      • +
      + + +

      Usage:

      + +
        +
      • html:embed(css, css_start_rule, css_end_rule)
      • +
      • html:embed(lex, php_start_rule, php_end_rule) -- from php lexer
      • +
      + + +

      + +

      lexer.fold (lexer, text, start_pos, start_line, start_level)

      + +

      Determines fold points in a chunk of text text using lexer lexer, + returning a table of fold levels associated with line numbers. + text starts at position start_pos on line number start_line with a + beginning fold level of start_level in the buffer.

      + +

      Fields:

      + +
        +
      • lexer: The lexer to fold text with.
      • +
      • text: The text in the buffer to fold.
      • +
      • start_pos: The position in the buffer text starts at, starting at + zero.
      • +
      • start_line: The line number text starts on.
      • +
      • start_level: The fold level text starts on.
      • +
      + + +

      Return:

      + +
        +
      • table of fold levels associated with line numbers.
      • +
      + + +

      + +

      lexer.fold_line_comments (prefix)

      + +

      Returns a fold function (to be passed to lexer.add_fold_point()) that folds + consecutive line comments that start with string prefix.

      + +

      Fields:

      + +
        +
      • prefix: The prefix string defining a line comment.
      • +
      + + +

      Usage:

      + +
        +
      • lex:add_fold_point(lexer.COMMENT, '--', + lexer.fold_line_comments('--'))
      • +
      • lex:add_fold_point(lexer.COMMENT, '//', + lexer.fold_line_comments('//'))
      • +
      + + +

      + +

      lexer.get_rule (lexer, id)

      + +

      Returns the rule identified by string id.

      + +

      Fields:

      + +
        +
      • lexer: The lexer to fetch a rule from.
      • +
      • id: The id of the rule to fetch.
      • +
      + + +

      Return:

      + +
        +
      • pattern
      • +
      + + +

      + +

      lexer.last_char_includes (s)

      + +

      Creates and returns a pattern that verifies that string set s contains the + first non-whitespace character behind the current match position.

      + +

      Fields:

      + +
        +
      • s: String character set like one passed to lpeg.S().
      • +
      + + +

      Usage:

      + +
        +
      • local regex = lexer.last_char_includes('+-*!%^&|=,([{') * + lexer.delimited_range('/')
      • +
      + + +

      Return:

      + +
        +
      • pattern
      • +
      + + +

      + +

      lexer.lex (lexer, text, init_style)

      + +

      Lexes a chunk of text text (that has an initial style number of + init_style) using lexer lexer, returning a table of token names and + positions.

      + +

      Fields:

      + +
        +
      • lexer: The lexer to lex text with.
      • +
      • text: The text in the buffer to lex.
      • +
      • init_style: The current style. Multiple-language lexers use this to + determine which language to start lexing in.
      • +
      + + +

      Return:

      + +
        +
      • table of token names and positions.
      • +
      + + +

      + +

      lexer.line_from_position (pos)

      + +

      Returns the line number of the line that contains position pos, which + starts from 1.

      + +

      Fields:

      + +
        +
      • pos: The position to get the line number of.
      • +
      + + +

      Return:

      + +
        +
      • number
      • +
      + + +

      + +

      lexer.load (name, alt_name, cache)

      + +

      Initializes or loads and returns the lexer of string name name. + Scintilla calls this function in order to load a lexer. Parent lexers also + call this function in order to load child lexers and vice-versa. The user + calls this function in order to load a lexer when using this module as a Lua + library.

      + +

      Fields:

      + +
        +
      • name: The name of the lexing language.
      • +
      • alt_name: The alternate name of the lexing language. This is useful for + embedding the same child lexer with multiple sets of start and end tokens.
      • +
      • cache: Flag indicating whether or not to load lexers from the cache. + This should only be true when initially loading a lexer (e.g. not from + within another lexer for embedding purposes). + The default value is false.
      • +
      + + +

      Return:

      + +
        +
      • lexer object
      • +
      + + +

      + +

      lexer.modify_rule (lexer, id, rule)

      + +

      Replaces in lexer lexer the existing rule identified by string id with + pattern rule.

      + +

      Fields:

      + +
        +
      • lexer: The lexer to modify.
      • +
      • id: The id associated with this rule.
      • +
      • rule: The LPeg pattern of the rule.
      • +
      + + +

      + +

      lexer.nested_pair (start_chars, end_chars)

      + +

      Returns a pattern that matches a balanced range of text that starts with + string start_chars and ends with string end_chars. + With single-character delimiters, this function is identical to + delimited_range(start_chars..end_chars, false, true, true).

      + +

      Fields:

      + +
        +
      • start_chars: The string starting a nested sequence.
      • +
      • end_chars: The string ending a nested sequence.
      • +
      + + +

      Usage:

      + +
        +
      • local nested_comment = lexer.nested_pair('/*', '*/')
      • +
      + + +

      Return:

      + +
        +
      • pattern
      • +
      + + +

      See also:

      + + + + +

      + +

      lexer.new (name, opts)

      + +

      Creates a returns a new lexer with the given name.

      + +

      Fields:

      + +
        +
      • name: The lexer's name.
      • +
      • opts: Table of lexer options. Options currently supported: + +
          +
        • lex_by_line: Whether or not the lexer only processes whole lines of + text (instead of arbitrary chunks of text) at a time. + Line lexers cannot look ahead to subsequent lines. + The default value is false.
        • +
        • fold_by_indentation: Whether or not the lexer does not define any fold + points and that fold points should be calculated based on changes in line + indentation. + The default value is false.
        • +
        • case_insensitive_fold_points: Whether or not fold points added via + lexer.add_fold_point() ignore case. + The default value is false.
        • +
        • inherit: Lexer to inherit from. + The default value is nil.
        • +
        +
      • +
      + + +

      Usage:

      + +
        +
      • lexer.new('rhtml', {inherit = lexer.load('html')})
      • +
      + + +

      + +

      lexer.starts_line (patt)

      + +

      Creates and returns a pattern that matches pattern patt only at the + beginning of a line.

      + +

      Fields:

      + +
        +
      • patt: The LPeg pattern to match on the beginning of a line.
      • +
      + + +

      Usage:

      + +
        +
      • local preproc = token(lexer.PREPROCESSOR, lexer.starts_line('#') * + lexer.nonnewline^0)
      • +
      + + +

      Return:

      + +
        +
      • pattern
      • +
      + + +

      + +

      lexer.token (name, patt)

      + +

      Creates and returns a token pattern with token name name and pattern + patt. + If name is not a predefined token name, its style must be defined via + lexer.add_style().

      + +

      Fields:

      + +
        +
      • name: The name of token. If this name is not a predefined token name, + then a style needs to be assiciated with it via lexer.add_style().
      • +
      • patt: The LPeg pattern associated with the token.
      • +
      + + +

      Usage:

      + +
        +
      • local ws = token(lexer.WHITESPACE, lexer.space^1)
      • +
      • local annotation = token('annotation', '@' * lexer.word)
      • +
      + + +

      Return:

      + +
        +
      • pattern
      • +
      + + +

      + +

      lexer.word_match (words, case_insensitive, word_chars)

      + +

      Creates and returns a pattern that matches any single word in string words. + case_insensitive indicates whether or not to ignore case when matching + words. + This is a convenience function for simplifying a set of ordered choice word + patterns. + If words is a multi-line string, it may contain Lua line comments (--) + that will ultimately be ignored.

      + +

      Fields:

      + +
        +
      • words: A string list of words separated by spaces.
      • +
      • case_insensitive: Optional boolean flag indicating whether or not the + word match is case-insensitive. The default value is false.
      • +
      • word_chars: Unused legacy parameter.
      • +
      + + +

      Usage:

      + +
        +
      • local keyword = token(lexer.KEYWORD, word_match[[foo bar baz]])
      • +
      • local keyword = token(lexer.KEYWORD, word_match([[foo-bar foo-baz + bar-foo bar-baz baz-foo baz-bar]], true))
      • +
      + + +

      Return:

      + +
        +
      • pattern
      • +
      + +

      Supported Languages

      + +

      Scintilla has Lua lexers for all of the languages below. Languages + denoted by a * have native + folders. For languages without + native folding support, folding based on indentation can be used if + fold.by.indentation is enabled.

      + +
        +
      1. Actionscript*
      2. +
      3. Ada
      4. +
      5. ANTLR*
      6. +
      7. APDL*
      8. +
      9. APL
      10. +
      11. Applescript
      12. +
      13. ASM* (NASM)
      14. +
      15. ASP*
      16. +
      17. AutoIt
      18. +
      19. AWK*
      20. +
      21. Batch*
      22. +
      23. BibTeX*
      24. +
      25. Boo
      26. +
      27. C*
      28. +
      29. C++*
      30. +
      31. C#*
      32. +
      33. ChucK
      34. +
      35. CMake*
      36. +
      37. Coffeescript
      38. +
      39. ConTeXt*
      40. +
      41. CSS*
      42. +
      43. CUDA*
      44. +
      45. D*
      46. +
      47. Dart*
      48. +
      49. Desktop Entry
      50. +
      51. Diff
      52. +
      53. Django*
      54. +
      55. Dockerfile
      56. +
      57. Dot*
      58. +
      59. Eiffel*
      60. +
      61. Elixir
      62. +
      63. Erlang*
      64. +
      65. F#
      66. +
      67. Faust
      68. +
      69. Fish*
      70. +
      71. Forth
      72. +
      73. Fortran
      74. +
      75. GAP*
      76. +
      77. gettext
      78. +
      79. Gherkin
      80. +
      81. GLSL*
      82. +
      83. Gnuplot
      84. +
      85. Go*
      86. +
      87. Groovy*
      88. +
      89. Gtkrc*
      90. +
      91. Haskell
      92. +
      93. HTML*
      94. +
      95. Icon*
      96. +
      97. IDL
      98. +
      99. Inform
      100. +
      101. ini
      102. +
      103. Io*
      104. +
      105. Java*
      106. +
      107. Javascript*
      108. +
      109. JSON*
      110. +
      111. JSP*
      112. +
      113. LaTeX*
      114. +
      115. Ledger
      116. +
      117. LESS*
      118. +
      119. LilyPond
      120. +
      121. Lisp*
      122. +
      123. Literate Coffeescript
      124. +
      125. Logtalk
      126. +
      127. Lua*
      128. +
      129. Makefile
      130. +
      131. Man Page
      132. +
      133. Markdown
      134. +
      135. MATLAB*
      136. +
      137. MoonScript
      138. +
      139. Myrddin
      140. +
      141. Nemerle*
      142. +
      143. Nim
      144. +
      145. NSIS
      146. +
      147. Objective-C*
      148. +
      149. OCaml
      150. +
      151. Pascal
      152. +
      153. Perl*
      154. +
      155. PHP*
      156. +
      157. PICO-8*
      158. +
      159. Pike*
      160. +
      161. PKGBUILD*
      162. +
      163. Postscript
      164. +
      165. PowerShell*
      166. +
      167. Prolog
      168. +
      169. Properties
      170. +
      171. Pure
      172. +
      173. Python
      174. +
      175. R
      176. +
      177. rc*
      178. +
      179. REBOL*
      180. +
      181. Rexx*
      182. +
      183. ReStructuredText*
      184. +
      185. RHTML*
      186. +
      187. Ruby*
      188. +
      189. Ruby on Rails*
      190. +
      191. Rust*
      192. +
      193. Sass*
      194. +
      195. Scala*
      196. +
      197. Scheme*
      198. +
      199. Shell*
      200. +
      201. Smalltalk*
      202. +
      203. Standard ML
      204. +
      205. SNOBOL4
      206. +
      207. SQL
      208. +
      209. TaskPaper
      210. +
      211. Tcl*
      212. +
      213. TeX*
      214. +
      215. Texinfo*
      216. +
      217. TOML
      218. +
      219. Vala*
      220. +
      221. VBScript
      222. +
      223. vCard*
      224. +
      225. Verilog*
      226. +
      227. VHDL
      228. +
      229. Visual Basic
      230. +
      231. Windows Script File*
      232. +
      233. XML*
      234. +
      235. Xtend*
      236. +
      237. YAML
      238. +
      + +

      Code Contributors

      + +
        +
      • Alejandro Baez
      • +
      • Alex Saraci
      • +
      • Brian Schott
      • +
      • Carl Sturtivant
      • +
      • Chris Emerson
      • +
      • Christian Hesse
      • +
      • David B. Lamkins
      • +
      • Heck Fy
      • +
      • Jason Schindler
      • +
      • Jeff Stone
      • +
      • Joseph Eib
      • +
      • Joshua Krämer
      • +
      • Klaus Borges
      • +
      • Larry Hynes
      • +
      • M Rawash
      • +
      • Marc André Tanner
      • +
      • Markus F.X.J. Oberhumer
      • +
      • Martin Morawetz
      • +
      • Michael Forney
      • +
      • Michael T. Richter
      • +
      • Michel Martens
      • +
      • Murray Calavera
      • +
      • Neil Hodgson
      • +
      • Olivier Guibé
      • +
      • Peter Odding
      • +
      • Piotr Orzechowski
      • +
      • Richard Philips
      • +
      • Robert Gieseke
      • +
      • Roberto Ierusalimschy
      • +
      • S. Gilles
      • +
      • Stéphane Rivière
      • +
      • Tymur Gubayev
      • +
      • Wolfgang Seeberg
      • +
      + + + diff --git a/third_party/qscintilla/doc/Scintilla/Lexer.txt b/third_party/qscintilla/doc/Scintilla/Lexer.txt new file mode 100644 index 0000000..9b9e54f --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/Lexer.txt @@ -0,0 +1,226 @@ +How to write a scintilla lexer + +A lexer for a particular language determines how a specified range of +text shall be colored. Writing a lexer is relatively straightforward +because the lexer need only color given text. The harder job of +determining how much text actually needs to be colored is handled by +Scintilla itself, that is, the lexer's caller. + + +Parameters + +The lexer for language LLL has the following prototype: + + static void ColouriseLLLDoc ( + unsigned int startPos, int length, + int initStyle, + WordList *keywordlists[], + Accessor &styler); + +The styler parameter is an Accessor object. The lexer must use this +object to access the text to be colored. The lexer gets the character +at position i using styler.SafeGetCharAt(i); + +The startPos and length parameters indicate the range of text to be +recolored; the lexer must determine the proper color for all characters +in positions startPos through startPos+length. + +The initStyle parameter indicates the initial state, that is, the state +at the character before startPos. States also indicate the coloring to +be used for a particular range of text. + +Note: the character at StartPos is assumed to start a line, so if a +newline terminates the initStyle state the lexer should enter its +default state (or whatever state should follow initStyle). + +The keywordlists parameter specifies the keywords that the lexer must +recognize. A WordList class object contains methods that simplify +the recognition of keywords. Present lexers use a helper function +called classifyWordLLL to recognize keywords. These functions show how +to use the keywordlists parameter to recognize keywords. This +documentation will not discuss keywords further. + + +The lexer code + +The task of a lexer can be summarized briefly: for each range r of +characters that are to be colored the same, the lexer should call + + styler.ColourTo(i, state) + +where i is the position of the last character of the range r. The lexer +should set the state variable to the coloring state of the character at +position i and continue until the entire text has been colored. + +Note 1: the styler (Accessor) object remembers the i parameter in the +previous calls to styler.ColourTo, so the single i parameter suffices to +indicate a range of characters. + +Note 2: As a side effect of calling styler.ColourTo(i,state), the +coloring states of all characters in the range are remembered so that +Scintilla may set the initStyle parameter correctly on future calls to +the +lexer. + + +Lexer organization + +There are at least two ways to organize the code of each lexer. Present +lexers use what might be called a "character-based" approach: the outer +loop iterates over characters, like this: + + lengthDoc = startPos + length ; + for (unsigned int i = startPos; i < lengthDoc; i++) { + chNext = styler.SafeGetCharAt(i + 1); + << handle special cases >> + switch(state) { + // Handlers examine only ch and chNext. + // Handlers call styler.ColorTo(i,state) if the state changes. + case state_1: << handle ch in state 1 >> + case state_2: << handle ch in state 2 >> + ... + case state_n: << handle ch in state n >> + } + chPrev = ch; + } + styler.ColourTo(lengthDoc - 1, state); + + +An alternative would be to use a "state-based" approach. The outer loop +would iterate over states, like this: + + lengthDoc = startPos+lenth ; + for ( unsigned int i = startPos ;; ) { + char ch = styler.SafeGetCharAt(i); + int new_state = 0 ; + switch ( state ) { + // scanners set new_state if they set the next state. + case state_1: << scan to the end of state 1 >> break ; + case state_2: << scan to the end of state 2 >> break ; + case default_state: + << scan to the next non-default state and set new_state >> + } + styler.ColourTo(i, state); + if ( i >= lengthDoc ) break ; + if ( ! new_state ) { + ch = styler.SafeGetCharAt(i); + << set state based on ch in the default state >> + } + } + styler.ColourTo(lengthDoc - 1, state); + +This approach might seem to be more natural. State scanners are simpler +than character scanners because less needs to be done. For example, +there is no need to test for the start of a C string inside the scanner +for a C comment. Also this way makes it natural to define routines that +could be used by more than one scanner; for example, a scanToEndOfLine +routine. + +However, the special cases handled in the main loop in the +character-based approach would have to be handled by each state scanner, +so both approaches have advantages. These special cases are discussed +below. + +Special case: Lead characters + +Lead bytes are part of DBCS processing for languages such as Japanese +using an encoding such as Shift-JIS. In these encodings, extended +(16-bit) characters are encoded as a lead byte followed by a trail byte. + +Lead bytes are rarely of any lexical significance, normally only being +allowed within strings and comments. In such contexts, lexers should +ignore ch if styler.IsLeadByte(ch) returns TRUE. + +Note: UTF-8 is simpler than Shift-JIS, so no special handling is +applied for it. All UTF-8 extended characters are >= 128 and none are +lexically significant in programming languages which, so far, use only +characters in ASCII for operators, comment markers, etc. + + +Special case: Folding + +Folding may be performed in the lexer function. It is better to use a +separate folder function as that avoids some troublesome interaction +between styling and folding. The folder function will be run after the +lexer function if folding is enabled. The rest of this section explains +how to perform folding within the lexer function. + +During initialization, lexers that support folding set + + bool fold = styler.GetPropertyInt("fold"); + +If folding is enabled in the editor, fold will be TRUE and the lexer +should call: + + styler.SetLevel(line, level); + +at the end of each line and just before exiting. + +The line parameter is simply the count of the number of newlines seen. +It's initial value is styler.GetLine(startPos) and it is incremented +(after calling styler.SetLevel) whenever a newline is seen. + +The level parameter is the desired indentation level in the low 12 bits, +along with flag bits in the upper four bits. The indentation level +depends on the language. For C++, it is incremented when the lexer sees +a '{' and decremented when the lexer sees a '}' (outside of strings and +comments, of course). + +The following flag bits, defined in Scintilla.h, may be set or cleared +in the flags parameter. The SC_FOLDLEVELWHITEFLAG flag is set if the +lexer considers that the line contains nothing but whitespace. The +SC_FOLDLEVELHEADERFLAG flag indicates that the line is a fold point. +This normally means that the next line has a greater level than present +line. However, the lexer may have some other basis for determining a +fold point. For example, a lexer might create a header line for the +first line of a function definition rather than the last. + +The SC_FOLDLEVELNUMBERMASK mask denotes the level number in the low 12 +bits of the level param. This mask may be used to isolate either flags +or level numbers. + +For example, the C++ lexer contains the following code when a newline is +seen: + + if (fold) { + int lev = levelPrev; + + // Set the "all whitespace" bit if the line is blank. + if (visChars == 0) + lev |= SC_FOLDLEVELWHITEFLAG; + + // Set the "header" bit if needed. + if ((levelCurrent > levelPrev) && (visChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + styler.SetLevel(lineCurrent, lev); + + // reinitialize the folding vars describing the present line. + lineCurrent++; + visChars = 0; // Number of non-whitespace characters on the line. + levelPrev = levelCurrent; + } + +The following code appears in the C++ lexer just before exit: + + // Fill in the real level of the next line, keeping the current flags + // as they will be filled in later. + if (fold) { + // Mask off the level number, leaving only the previous flags. + int flagsNext = styler.LevelAt(lineCurrent); + flagsNext &= ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); + } + + +Don't worry about performance + +The writer of a lexer may safely ignore performance considerations: the +cost of redrawing the screen is several orders of magnitude greater than +the cost of function calls, etc. Moreover, Scintilla performs all the +important optimizations; Scintilla ensures that a lexer will be called +only to recolor text that actually needs to be recolored. Finally, it +is not necessary to avoid extra calls to styler.ColourTo: the sytler +object buffers calls to ColourTo to avoid multiple updates of the +screen. + +Page contributed by Edward K. Ream \ No newline at end of file diff --git a/third_party/qscintilla/doc/Scintilla/Privacy.html b/third_party/qscintilla/doc/Scintilla/Privacy.html new file mode 100644 index 0000000..85cb801 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/Privacy.html @@ -0,0 +1,70 @@ + + + + + + + + + Privacy Policy + + + + + + + + +
      + Scintilla icon + + Scintilla + and SciTE +
      +

      + Privacy Policy for scintilla.org +

      +

      + Information Collected +

      +

      + Logs are collected to allow analysis of which pages are viewed. + The advertisements collect viewing information through Google Analytics which is + used by Google and advertisers. + No personally identifiable information is collected by scintilla.org. +

      +

      + External Links +

      +

      + Other web sites are linked to from this site. + These web sites have their own privacy policies which may differ significantly to those of scintilla.org. +

      +

      + Cookies +

      +

      + A cookie is a text file placed on the hard drive of a computer by some web pages which is used to remember + when a particular user returns to that site. + The advertisements shown on the main pages may use cookies. +

      +

      + Contact +

      +

      + This web site is the responsibility of Neil Hodgson. + Most queries about the site contents should go to one of the mailing lists mentioned on the main pages. + Queries about the privacy policy may be sent to neilh @ scintilla.org. +

      +

      + Changes to this Policy +

      +

      + This policy may change. If it does then this page will be updated and the date at the bottom will change. +

      +

      + This policy was last updated 2 June 2015. +

      + + diff --git a/third_party/qscintilla/doc/Scintilla/SciBreak.jpg b/third_party/qscintilla/doc/Scintilla/SciBreak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b63b09f9a7c14a916f07915d6eba32b8d8332260 GIT binary patch literal 33592 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�loFt(b7SKu7H@pW%D7+aTJc`Xo5S38riu_-@e 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 literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/Scintilla/SciCoding.html b/third_party/qscintilla/doc/Scintilla/SciCoding.html new file mode 100644 index 0000000..c5debf5 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/SciCoding.html @@ -0,0 +1,294 @@ + + + + + + + + + Scintilla and SciTE Code Style Preferences + + + + + + + + + +
      + Scintilla icon + + Scintilla + and SciTE +
      +

      + Code Style +

      +

      + Introduction +

      +

      + The source code of Scintilla and SciTE follow my preferences. + Some of these decisions are arbitrary and based on my sense of aesthetics + but its good to have all the code look the same even if its not exactly how + everyone would prefer. +

      +

      + Code that does not follow these conventions will be accepted, but will be modified + as time goes by to fit the conventions. Scintilla code follows the conventions more + closely than SciTE except for lexers which are relatively independent modules. + Lexers that are maintained by others are left as they are submitted except that + warnings will be fixed so the whole project can compile cleanly. +

      +

      + The AStyle formatting + program with '-taOHUKk3 -M8' arguments formats code in much the right way although + there are a few bugs in AStyle. +

      +

      + Language features +

      +

      + Design goals for Scintilla and SciTE include portability to currently available C++ + compilers on diverse platforms with high performance and low resource usage. + Scintilla has stricter portability requirements to SciTE as it may be ported to + low capability platforms. + Scintilla code must build with C++03 which can be checked with "g++ --std=gnu++03". + SciTE can use C++11 features that are widely available from g++ 4.6, MSVC 2012 and clang 3.4 compilers. +

      +

      + To achieve portability, only a subset of C++ features are used. + Exceptions and templates may be used but, since Scintilla can be used from C as well as + C++, exceptions may not be thrown out of Scintilla and all exceptions should be caught + before returning from Scintilla. + Run-time type information adds to memory use so is turned off. + A 'Scintilla' name space is used. This helps with name clashes on OS X. +

      +

      + The goto statement is not used because of bad memories from my first job + maintaining FORTRAN programs. The union feature is not used as it can lead to + non-type-safe value access. +

      +

      + The SCI_METHOD preprocessor definition should be used when implementing + interfaces which include it like ILexer and only there. +

      +

      + Headers should always be included in the same order as given by the + scripts/HeaderOrder.txt file. +

      +

      + Casting +

      +

      + Do not use old C style casts like (char *)s. Instead use the most strict form of C++ + cast possible like const_cast<char *>(s). Use static_cast and const_cast + where possible rather than reinterpret_cast. +

      +

      + The benefit to using the new style casts is that they explicitly detail what evil is + occurring and act as signals that something potentially unsafe is being done. +

      +

      + Code that treats const seriously is easier to reason about both for humans + and compilers, so use const parameters and avoid const_cast. +

      +

      + Warnings +

      +

      + To help ensure code is well written and portable, it is compiled with almost all + warnings turned on. This sometimes results in warnings about code that is + completely good (false positives) but changing the code to avoid the warnings + is generally fast and has little impact on readability. +

      +

      + Initialise all variables and minimise the scope of variables. If a variable is defined + just before its use then it can't be misused by code before that point. + Use loop declarations that are compatible with both the C++ standard and currently + available compilers. +

      +

      + Allocation +

      +

      + Memory exhaustion can occur in many Scintilla methods. + This should be checked for and handled but once it has happened, it is very difficult to do + anything as Scintilla's data structures may be in an inconsistent state. + Fixed length buffers are often used as these are simple and avoid the need to + worry about memory exhaustion but then require that buffer lengths are + respected. +

      +

      + The C++ new and delete operators are preferred over C's malloc and free + as new and delete are type safe. +

      +

      + Bracketing +

      +

      + Start brackets, '{', should be located on the line of the control structure they + start and end brackets, '}', should be at the indented start of a line. When there is + an else clause, this occurs on the same line as the '}'. + This format uses less lines than alternatives, allowing more code to be seen on screen. + Fully bracketed control + structures are preferred because this makes it more likely that modifications will + be correct and it allows Scintilla's folder to work. No braces on returned + expressions as return is a keyword, not a function call. +

      +bool fn(int a) {
      +        
      if (a) {
      +                
      s();
      +                
      t();
      +        
      } else {
      +                
      u();
      +        
      }
      +        
      return !a;
      +
      }
      +

      + Spacing +

      +

      + Spaces on both sides of '=' and comparison operators and no attempt to line up '='. + No space before or after '(', when used in calls, but a space after every ','. + No spaces between tokens in short expressions but may be present in + longer expressions. Space before '{'. No space before ';'. + No space after '*' when used to mean pointer and no space after '[' or ']'. + One space between keywords and '('. +

      +void StoreConditionally(int c, const char *s) {
      +        
      if (c && (baseSegment == trustSegment["html"])) {
      +                
      baseSegment = s+1;
      +                
      Store(s, baseSegment, "html");
      +        
      }
      +
      } +

      + Names +

      +

      + Identifiers use mixed case and no underscores. + Class, function and method names start with an uppercase letter and use + further upper case letters to distinguish words. Variables start with a lower + case letter and use upper case letters to distinguish words. + Loop counters and similar variables can have simple names like 'i'. + Function calls should be differentiated from method calls with an initial '::' + global scope modifier. +

      +class StorageZone {
      +
      public:
      +        
      void Store(const char *s) {
      +                
      Media *mediaStore = ::GetBaseMedia(zoneDefault);
      +                
      for (int i=mediaStore->cursor; mediaStore[i], i++) {
      +                        
      mediaStore->Persist(s[i]);
      +                
      }
      +        
      }
      +
      }; +

      + Submitting a lexer +

      + +

      Add a public feature request to the Feature Request Tracker.

      +

      Send all the modified and new files as full text (not patches) in an archive (.zip or .tgz).

      +

      Define all of the lexical states in a modified Scintilla.iface.

      +

      Ensure there are no warnings under the compiler you use. Warnings from other compilers + will be noted on the feature request.

      +

      sc.ch is an int: do not pass this around as a char.

      +

      The ctype functions like isalnum and isdigit only work on ASCII (0..127) and may cause + undefined behaviour including crashes if used on other values. Check with IsASCII before calling is*.

      +

      Functions, structs and classes in lexers should be in an unnamed namespace (see LexCPP) + or be marked "static" so they will not leak into other lexers.

      +

      If you copy from an existing lexer, remove any code that is not needed since it makes it + more difficult to maintain and review.

      +

      When modifying an existing lexer, try to maintain as much compatibility as possible. + Do not renumber lexical styles as current client code may be built against the earlier values.

      +

      + Properties +

      +

      + Properties provided by a new lexer should follow the naming conventions + and should include a comment suitable for showing to end users. + The convention is for properties that control styling to be named + lexer.<lexername>.* and those that control folding to be named + fold.<lexername>.*. + Examples are "lexer.python.literals.binary" and "fold.haskell.imports". +

      +

      + The properties "fold" and "fold.comment" are generic and can be used by + any lexer. +

      +

      + See LexPython for examples of properties in an object lexer and LexHTML for a functional lexer. +

      + + diff --git a/third_party/qscintilla/doc/Scintilla/SciRest.jpg b/third_party/qscintilla/doc/Scintilla/SciRest.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b052239cd953c92a5ec4bc22fb9aed2cc545a1b GIT binary patch literal 16680 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 Uw^L7}bKU68RwQB4@Net?2Xk}R0ssI2 literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/Scintilla/SciTEIco.png b/third_party/qscintilla/doc/Scintilla/SciTEIco.png new file mode 100644 index 0000000000000000000000000000000000000000..d0cc869b8c56c3d77ba76ff1a81b22609836022e GIT binary patch literal 10091 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 N002ovPDHLkV1k*@zUlw~ literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/Scintilla/SciWord.jpg b/third_party/qscintilla/doc/Scintilla/SciWord.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60e70e897b41b1943952b42aab2592cfe6452883 GIT binary patch literal 6164 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 literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/Scintilla/ScintillaDoc.html b/third_party/qscintilla/doc/Scintilla/ScintillaDoc.html new file mode 100644 index 0000000..fdf1e36 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/ScintillaDoc.html @@ -0,0 +1,8483 @@ + + + + + + + + + + Scintilla Documentation + + + + + + + + + + + +
      Scintilla iconScintilla
      + +

      Scintilla Documentation

      + +

      Last edited 6 June 2018 NH

      + +

      There is an overview of the internal design of + Scintilla.
      + Some notes on using Scintilla.
      + How to use the Scintilla Edit Control on Windows.
      + A simple sample using Scintilla from + C++ on Windows.
      + A simple sample using Scintilla from + Visual Basic.
      + Bait is a tiny sample using Scintilla + on GTK+.
      + A detailed description of how to write a lexer, including a + discussion of folding.
      + + How to implement a lexer in the container.
      + + How to implement folding.
      + + Beginner's Guide to lexing and folding.
      + How to write lexers in Lua.
      + The coding style used in Scintilla and SciTE is + worth following if you want to contribute code to Scintilla but is not compulsory.

      + +

      Introduction

      + +

      The Windows version of Scintilla is a Windows Control. As such, its primary programming + interface is through Windows messages. Early versions of Scintilla emulated much of the API + defined by the standard Windows Edit and RichEdit controls but those APIs are now deprecated in + favour of Scintilla's own, more consistent API. In addition to messages performing the actions + of a normal Edit control, Scintilla allows control of syntax styling, folding, markers, autocompletion + and call tips.

      + +

      The GTK+ version also uses messages in a similar way to the Windows version. This is + different to normal GTK+ practice but made it easier to implement rapidly.

      + +

      Scintilla also builds with Cocoa on OS X, with Qt, and with curses, and follows the conventions of + those platforms.

      + +

      Scintilla does not properly support right-to-left languages like Arabic and Hebrew. + While text in these languages may appear correct, it is not possible to interact with this text + as is normal with other editing components.

      + +

      This documentation describes the individual messages and notifications used by Scintilla. It + does not describe how to link them together to form a useful editor. For now, the best way to + work out how to develop using Scintilla is to see how SciTE uses it. SciTE exercises most of + Scintilla's facilities.

      + +

      In the descriptions that follow, the messages are described as function calls with zero, one + or two arguments. These two arguments are the standard wParam and + lParam familiar to Windows programmers. These parameters are integers that + are large enough to hold pointers, and the return value is also an integer large enough to contain a + pointer. + Although the commands only use the + arguments described, because all messages have two arguments whether Scintilla uses them or + not, it is strongly recommended that any unused arguments are set to 0. This allows future + enhancement of messages without the risk of breaking existing code. Common argument types + are:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      boolArguments expect the values 0 for false and 1 for + true.
      intArguments are 32-bit or 64-bit signed integers depending on the platform. + Equivalent to intptr_t.
      const char *Arguments point at text that is being passed to Scintilla but not modified. The text + may be zero terminated or another argument may specify the character count, the + description will make this clear.
      char *Arguments point at text buffers that Scintilla will fill with text. In some cases, + another argument will tell Scintilla the buffer size. In others, you must make sure that + the buffer is big enough to hold the requested text. If a NULL pointer (0) is passed + then, for SCI_* calls, the length that should be allocated, not including any terminating + NUL, is returned. Some calls (marked "NUL-terminated") add a NUL character to the result but other calls do + not: to generically handle both types, allocate one more byte than indicated and set it to NUL.
      colourColours are set using the RGB format (Red, Green, Blue). The intensity of each colour + is set in the range 0 to 255. If you have three such intensities, they are combined as: + red | (green << 8) | (blue << 16). If you set all intensities to 255, the + colour is white. If you set all intensities to 0, the colour is black. When you set a + colour, you are making a request. What you will get depends on the capabilities of the + system and the current screen mode.
      alphaTranslucency is set using an alpha value. + Alpha ranges from 0 (SC_ALPHA_TRANSPARENT) which is completely transparent to + 255 (SC_ALPHA_OPAQUE) which is opaque. The value 256 (SC_ALPHA_NOALPHA) + is opaque and uses code that is not alpha-aware and may be faster. Not all platforms support + translucency and only some Scintilla features implement translucency. + The default alpha value for most features is SC_ALPHA_NOALPHA.
      <unused>This is an unused argument. Setting it to 0 will ensure compatibility with future + enhancements.
      + +

      Contents

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + scrolling + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Text retrieval and + modificationSearching and replacingOvertype
      Cut, copy and pasteError handlingUndo and Redo
      Selection and informationBy character or UTF-16 code unitMultiple Selection and Virtual Space
      Scrolling and automatic + + White spaceCursor
      Mouse captureLine endingsWords
      StylingStyle definitionCaret, selection, and hotspot styles
      Character representationsMarginsAnnotations
      Other settingsBrace highlightingTabs and Indentation + Guides
      MarkersIndicatorsAutocompletion
      User listsCall tipsKeyboard commands
      Key bindingsPopup edit menuMacro recording
      PrintingDirect accessMultiple views
      Background loading and savingFoldingLine wrapping
      ZoomingLong linesAccessibility
      LexerLexer objectsNotifications
      ImagesGTK+Provisional messages
      Deprecated messagesEdit messages never + supported by ScintillaRemoved features
      Building Scintilla
      + +

      Messages with names of the form SCI_SETxxxxx often have a companion + SCI_GETxxxxx. To save tedious repetition, if the SCI_GETxxxxx message + returns the value set by the SCI_SETxxxxx message, the SET routine is + described and the GET routine is left to your imagination.

      + +

      Text retrieval and modification

      + +

      Each byte in a Scintilla document is associated with a byte of styling + information. The combination of a character byte and a style byte is called a cell. Style bytes + are interpreted an index into an array of styles.

      + +

      In this document, 'character' normally refers to a byte even when multi-byte characters are used. + Lengths measure the numbers of bytes, not the amount of characters in those bytes.

      + +

      Positions within the Scintilla document refer to a character or the gap before that + character. The first character in a document is 0, the second 1 and so on. If a document + contains nLen characters, the last character is numbered nLen-1. + The caret exists between character positions and can be located from before the first character (0) + to after the last character (nLen).

      + +

      There are places where the caret can not go where two character bytes make up one character. + This occurs when a DBCS character from a language like Japanese is included in the document or + when line ends are marked with the CP/M standard of a carriage return followed by a line feed. + The INVALID_POSITION constant (-1) represents an invalid position within the + document.

      + +

      All lines of text in Scintilla are the same height, and this height is calculated from the + largest font in any current style. This restriction is for performance; if lines differed in + height then calculations involving positioning of text would require the text to be styled + first.

      + SCI_GETTEXT(int length, char *text) → int
      + SCI_SETTEXT(<unused>, const char *text)
      + SCI_SETSAVEPOINT
      + SCI_GETLINE(int line, char *text) → int
      + SCI_REPLACESEL(<unused>, const char + *text)
      + SCI_SETREADONLY(bool readOnly)
      + SCI_GETREADONLY → bool
      + SCI_GETTEXTRANGE(<unused>, Sci_TextRange *tr) → int
      + SCI_ALLOCATE(int bytes)
      + SCI_ADDTEXT(int length, const char *text)
      + SCI_ADDSTYLEDTEXT(int length, cell *c)
      + SCI_APPENDTEXT(int length, const char *text)
      + SCI_INSERTTEXT(int pos, const char *text)
      + SCI_CHANGEINSERTION(int length, const char *text)
      + SCI_CLEARALL
      + SCI_DELETERANGE(int start, int lengthDelete)
      + SCI_CLEARDOCUMENTSTYLE
      + SCI_GETCHARAT(int pos) → int
      + SCI_GETSTYLEAT(int pos) → int
      + SCI_GETSTYLEDTEXT(<unused>, Sci_TextRange *tr) → int
      + SCI_RELEASEALLEXTENDEDSTYLES
      + SCI_ALLOCATEEXTENDEDSTYLES(int numberStyles) → int
      + SCI_TARGETASUTF8(<unused>, char *s) → int
      + SCI_ENCODEDFROMUTF8(const char *utf8, char *encoded) → int
      + SCI_SETLENGTHFORENCODE(int bytes)
      +
      + +

      SCI_GETTEXT(int length, char *text NUL-terminated) → int
      + This returns length-1 characters of text from the start of the document plus one + terminating 0 character. To collect all the text in a document, use SCI_GETLENGTH + to get the number of characters in the document (nLen), allocate a character + buffer of length nLen+1 bytes, then call SCI_GETTEXT(nLen+1, char + *text). If the text argument is 0 then the length that should be allocated to store the + entire document is returned. + If you then save the text, you should use SCI_SETSAVEPOINT to mark + the text as unmodified.

      + +

      See also: SCI_GETSELTEXT, + SCI_GETCURLINE, + SCI_GETLINE, + SCI_GETSTYLEDTEXT, + SCI_GETTEXTRANGE

      + +

      SCI_SETTEXT(<unused>, const char *text)
      + This replaces all the text in the document with the zero terminated text string you pass + in.

      + +

      SCI_SETSAVEPOINT
      + This message tells Scintilla that the current state of the document is unmodified. This is + usually done when the file is saved or loaded, hence the name "save point". As Scintilla + performs undo and redo operations, it notifies the container that it has entered or left the + save point with SCN_SAVEPOINTREACHED and SCN_SAVEPOINTLEFT notification messages, allowing the container to know if the file + should be considered dirty or not.

      + +

      See also: SCI_EMPTYUNDOBUFFER, SCI_GETMODIFY

      + +

      SCI_GETLINE(int line, char *text) → int
      + This fills the buffer defined by text with the contents of the nominated line (lines start at + 0). The buffer is not terminated by a 0 character. It is up to you to make sure that the buffer + is long enough for the text, use SCI_LINELENGTH(int line). The returned value is the + number of characters copied to the buffer. The returned text includes any end of line + characters. If you ask for a line number outside the range of lines in the document, 0 + characters are copied. If the text argument is 0 then the length that should be allocated + to store the entire line is returned.

      + +

      See also: SCI_GETCURLINE, + SCI_GETSELTEXT, + SCI_GETTEXTRANGE, + SCI_GETSTYLEDTEXT, + SCI_GETTEXT

      + +

      SCI_REPLACESEL(<unused>, const char *text)
      + The currently selected text between the anchor + and the current position is replaced by the 0 terminated text string. If the anchor and + current position are the same, the text is inserted at the caret position. The caret is + positioned after the inserted text and the caret is scrolled into view.

      + +

      SCI_SETREADONLY(bool readOnly)
      + SCI_GETREADONLY → bool
      + These messages set and get the read-only flag for the document. If you mark a document as read + only, attempts to modify the text cause the SCN_MODIFYATTEMPTRO notification.

      + +

      SCI_GETTEXTRANGE(<unused>, Sci_TextRange *tr) → int
      + This collects the text between the positions cpMin and cpMax and + copies it to lpstrText (see struct Sci_TextRange in + Scintilla.h). If cpMax is -1, text is returned to the end of the + document. The text is 0 terminated, so you must supply a buffer that is at least 1 character + longer than the number of characters you wish to read. The return value is the length of the + returned text not including the terminating 0.

      + +

      See also: SCI_GETSELTEXT, + SCI_GETLINE, + SCI_GETCURLINE, + SCI_GETSTYLEDTEXT, + SCI_GETTEXT

      + +

      SCI_GETSTYLEDTEXT(<unused>, Sci_TextRange *tr) → int
      + This collects styled text into a buffer using two bytes for each cell, with the character at + the lower address of each pair and the style byte at the upper address. Characters between the + positions cpMin and cpMax are copied to lpstrText (see + struct Sci_TextRange in Scintilla.h). Two 0 bytes are added to the end of + the text, so the buffer that lpstrText points at must be at least + 2*(cpMax-cpMin)+2 bytes long. No check is made for sensible values of + cpMin or cpMax. Positions outside the document return character codes + and style bytes of 0.

      + +

      See also: SCI_GETSELTEXT, + SCI_GETLINE, + SCI_GETCURLINE, + SCI_GETTEXTRANGE, + SCI_GETTEXT

      + +

      SCI_ALLOCATE(int bytes)
      + Allocate a document buffer large enough to store a given number of bytes. + The document will not be made smaller than its current contents.

      + +

      SCI_ADDTEXT(int length, const char *text)
      + This inserts the first length characters from the string + text + at the current position. This will include any 0's in the string that you might have expected + to stop the insert operation. The current position is set at the end of the inserted text, + but it is not scrolled into view.

      + +

      SCI_ADDSTYLEDTEXT(int length, cell *c)
      + This behaves just like SCI_ADDTEXT, but inserts styled text.

      + +

      SCI_APPENDTEXT(int length, const char *text)
      + This adds the first length characters from the string + text to the end + of the document. This will include any 0's in the string that you might have expected to stop + the operation. The current selection is not changed and the new text is not scrolled into + view.

      + +

      SCI_INSERTTEXT(int pos, const char *text)
      + This inserts the zero terminated text string at position pos or at + the current position if pos is -1. If the current position is after the insertion point + then it is moved along with its surrounding text but no scrolling is performed.

      + +

      SCI_CHANGEINSERTION(int length, const char *text)
      + This may only be called from a SC_MOD_INSERTCHECK + notification handler and will change the text being inserted to that provided.

      + +

      SCI_CLEARALL
      + Unless the document is read-only, this deletes all the text.

      + +

      SCI_DELETERANGE(int start, int lengthDelete)
      + Deletes a range of text in the document.

      + +

      SCI_CLEARDOCUMENTSTYLE
      + When wanting to completely restyle the document, for example after choosing a lexer, the + SCI_CLEARDOCUMENTSTYLE can be used to clear all styling information and reset the + folding state.

      + +

      SCI_GETCHARAT(int pos) → int
      + This returns the character at pos in the document or 0 if pos is + negative or past the end of the document.

      + +

      SCI_GETSTYLEAT(int pos) → int
      + This returns the style at pos in the document, or 0 if pos is + negative or past the end of the document.

      + +

      SCI_RELEASEALLEXTENDEDSTYLES
      + SCI_ALLOCATEEXTENDEDSTYLES(int numberStyles) → int
      + Extended styles are used for features like textual margins and annotations as well as internally by Scintilla. + They are outside the range 0..255 used for the styles bytes associated with document bytes. + These functions manage the use of extended styles to ensures that components cooperate in defining styles. + SCI_RELEASEALLEXTENDEDSTYLES releases any extended styles allocated by the container. + SCI_ALLOCATEEXTENDEDSTYLES allocates a range of style numbers after the byte style values and returns + the number of the first allocated style. + Ranges for margin and annotation styles should be allocated before calling + SCI_MARGINSETSTYLEOFFSET or + SCI_ANNOTATIONSETSTYLEOFFSET.

      + +

      Sci_TextRange and Sci_CharacterRange
      + These structures are defined to be exactly the same shape as the Win32 TEXTRANGE + and CHARRANGE, so that older code that treats Scintilla as a RichEdit will + work.

      +

      In a future release the type Sci_PositionCR will be redefined to be 64-bits when Scintilla is + built for 64-bits on all platforms.

      +
      +typedef long Sci_PositionCR;
      +
      +struct Sci_CharacterRange {
      +    Sci_PositionCR cpMin;
      +    Sci_PositionCR cpMax;
      +};
      +
      +struct Sci_TextRange {
      +    struct Sci_CharacterRange chrg;
      +    char *lpstrText;
      +};
      +
      + +

      Specific to GTK+, Cocoa and Windows only: Access to encoded text

      + +

      SCI_TARGETASUTF8(<unused>, char *s) → int
      + This method retrieves the value of the target encoded as UTF-8 which is the default + encoding of GTK+ so is useful for retrieving text for use in other parts of the user interface, + such as find and replace dialogs. The length of the encoded text in bytes is returned. + Cocoa uses UTF-16 which is easily converted from UTF-8 so this method can be used to perform the + more complex work of transcoding from the various encodings supported. +

      + +

      SCI_ENCODEDFROMUTF8(const char *utf8, char *encoded) → int
      + SCI_SETLENGTHFORENCODE(int bytes)
      + SCI_ENCODEDFROMUTF8 converts a UTF-8 string into the document's + encoding which is useful for taking the results of a find dialog, for example, and receiving + a string of bytes that can be searched for in the document. Since the text can contain nul bytes, + the SCI_SETLENGTHFORENCODE method can be used to set the + length that will be converted. If set to -1, the length is determined by finding a nul byte. + The length of the converted string is returned. +

      + + +

      Searching

      +

      + There are methods to search for text and for regular expressions. + Most applications should use + SCI_SEARCHINTARGET + as the basis for their search implementations. + Other calls augment this or were implemented before SCI_SEARCHINTARGET. +

      +

      + The base regular expression support + is limited and should only be used for simple cases and initial development. + The C++ runtime <regex> library may be used by setting the SCFIND_CXX11REGEX search flag. + The C++11 <regex> support may be disabled by + compiling Scintilla with NO_CXX11_REGEX defined. + A different regular expression + library can be integrated into Scintilla + or can be called from the container using direct access to the buffer contents through + SCI_GETCHARACTERPOINTER. +

      + +

      Search and replace using the target

      + +

      Searching can be performed within the target range with SCI_SEARCHINTARGET, + which uses a counted string to allow searching for null characters. It returns the + position of the start of the matching text range or -1 for failure, in which case the target is not moved. The flags used by + SCI_SEARCHINTARGET such as SCFIND_MATCHCASE, + SCFIND_WHOLEWORD, SCFIND_WORDSTART, and SCFIND_REGEXP + can be set with SCI_SETSEARCHFLAGS.

      + SCI_SETTARGETSTART(int start)
      + SCI_GETTARGETSTART → position
      + SCI_SETTARGETEND(int end)
      + SCI_GETTARGETEND → position
      + SCI_SETTARGETRANGE(int start, int end)
      + SCI_TARGETFROMSELECTION
      + SCI_TARGETWHOLEDOCUMENT
      + SCI_SETSEARCHFLAGS(int searchFlags)
      + SCI_GETSEARCHFLAGS → int
      + SCI_SEARCHINTARGET(int length, const char *text) → int
      + SCI_GETTARGETTEXT(<unused>, char *text) → int
      + SCI_REPLACETARGET(int length, const char *text) → int
      + SCI_REPLACETARGETRE(int length, const char *text) → int
      + SCI_GETTAG(int tagNumber, char *tagValue) → int
      +
      + +

      SCI_SETTARGETSTART(int start)
      + SCI_GETTARGETSTART → position
      + SCI_SETTARGETEND(int end)
      + SCI_GETTARGETEND → position
      + SCI_SETTARGETRANGE(int start, int end)
      + These functions set and return the start and end of the target. When searching + you can set start greater than end to find the last matching text in the + target rather than the first matching text. The target is also set by a successful + SCI_SEARCHINTARGET.

      + +

      SCI_TARGETFROMSELECTION
      + Set the target start and end to the start and end positions of the selection.

      + +

      SCI_TARGETWHOLEDOCUMENT
      + Set the target start to the start of the document and target end to the end of the document.

      + +

      SCI_SETSEARCHFLAGS(int searchFlags)
      + SCI_GETSEARCHFLAGS → int
      + These get and set the searchFlags used by + SCI_SEARCHINTARGET. There are several option flags including a simple regular + expression search.

      + +

      SCI_SEARCHINTARGET(int length, const char *text) → int
      + This searches for the first occurrence of a text string in the target defined by + SCI_SETTARGETSTART and SCI_SETTARGETEND. The text string is not zero + terminated; the size is set by length. The search is modified by the search flags + set by SCI_SETSEARCHFLAGS. If the search succeeds, the target is set to the found + text and the return value is the position of the start of the matching text. If the search + fails, the result is -1.

      + +

      SCI_GETTARGETTEXT(<unused>, char *text) → int
      + Retrieve the value in the target.

      + +

      SCI_REPLACETARGET(int length, const char *text) → int
      + If length is -1, text is a zero terminated string, otherwise + length sets the number of character to replace the target with. + After replacement, the target range refers to the replacement text. + The return value + is the length of the replacement string.
      + Note that the recommended way to delete text in the document is to set the target to the text to be removed, + and to perform a replace target with an empty string.

      + +

      SCI_REPLACETARGETRE(int length, const char *text) → int
      + This replaces the target using regular expressions. If length is -1, + text is a zero terminated string, otherwise length is the number of + characters to use. The replacement string is formed from the text string with any sequences of + \1 through \9 replaced by tagged matches from the most recent regular + expression search. \0 is replaced with all the matched text from the most recent search. + After replacement, the target range refers to the replacement text. + The return value is the length of the replacement string.

      + +

      SCI_GETTAG(int tagNumber, char *tagValue NUL-terminated) → int
      + Discover what text was matched by tagged expressions in a regular expression search. + This is useful if the application wants to interpret the replacement string itself.

      + +

      See also: SCI_FINDTEXT

      + +

      searchFlags
      + Several of the search routines use flag options, which include a simple regular expression + search. Combine the flag options by adding them:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SCFIND_MATCHCASEA match only occurs with text that matches the case of the search string.
      SCFIND_WHOLEWORDA match only occurs if the characters before and after are not word characters as defined + by SCI_SETWORDCHARS.
      SCFIND_WORDSTARTA match only occurs if the character before is not a word character as defined + by SCI_SETWORDCHARS.
      SCFIND_REGEXPThe search string should be interpreted as a regular expression. + Uses Scintilla's base implementation unless combined with SCFIND_CXX11REGEX.
      SCFIND_POSIXTreat regular expression in a more POSIX compatible manner + by interpreting bare ( and ) for tagged sections rather than \( and \). + Has no effect when SCFIND_CXX11REGEX is set.
      SCFIND_CXX11REGEXThis flag may be set to use C++11 <regex> instead of Scintilla's basic regular expressions. + If the regular expression is invalid then -1 is returned and status is set to + SC_STATUS_WARN_REGEX. + The ECMAScript flag is set on the regex object and UTF-8 documents will exhibit Unicode-compliant + behaviour. For MSVC, where wchar_t is 16-bits, the reular expression ".." will match a single + astral-plane character. There may be other differences between compilers. + Must also have SCFIND_REGEXP set.
      + +

      In a regular expression, using Scintilla's base implementation, + special characters interpreted are:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      .Matches any character
      \(This marks the start of a region for tagging a match.
      \)This marks the end of a tagged region.
      \nWhere n is 1 through 9 refers to the first through ninth tagged region + when replacing. For example, if the search string was Fred\([1-9]\)XXX and + the replace string was Sam\1YYY, when applied to Fred2XXX this + would generate Sam2YYY. + \0 refers to all of the matching text.
      \<This matches the start of a word using Scintilla's definitions of words.
      \>This matches the end of a word using Scintilla's definition of words.
      \xThis allows you to use a character x that would otherwise have a special meaning. For + example, \[ would be interpreted as [ and not as the start of a character set.
      [...]This indicates a set of characters, for example, [abc] means any of the characters a, + b or c. You can also use ranges, for example [a-z] for any lower case character.
      [^...]The complement of the characters in the set. For example, [^A-Za-z] means any + character except an alphabetic character.
      ^This matches the start of a line (unless used inside a set, see above).
      $This matches the end of a line.
      *This matches 0 or more times. For example, Sa*m matches Sm, + Sam, Saam, Saaam and so on.
      +This matches 1 or more times. For example, Sa+m matches + Sam, Saam, Saaam and so on.
      + +

      Regular expressions will only match ranges within a single line, never matching over multiple lines.

      + +

      When using SCFIND_CXX11REGEX more features are available, + generally similar to regular expression support in JavaScript. + See the documentation of your C++ runtime for details on what is supported.

      + + SCI_FINDTEXT(int searchFlags, Sci_TextToFind *ft) → position
      + SCI_SEARCHANCHOR
      + SCI_SEARCHNEXT(int searchFlags, const char *text) → int
      + SCI_SEARCHPREV(int searchFlags, const char *text) → int
      +
      + +

      SCI_FINDTEXT(int searchFlags, Sci_TextToFind *ft) → position
      + This message searches for text in the document. It does not use or move the current selection. + The searchFlags argument controls the + search type, which includes regular expression searches.

      + +

      You can + search backwards to find the previous occurrence of a search string by setting the end of the + search range before the start.

      + +

      The Sci_TextToFind structure is defined in Scintilla.h; set + chrg.cpMin and chrg.cpMax with the range of positions in the document + to search. You can search backwards by + setting chrg.cpMax less than chrg.cpMin. + Set the lpstrText member of Sci_TextToFind to point at a zero terminated + text string holding the search pattern. If your language makes the use of Sci_TextToFind + difficult, you should consider using SCI_SEARCHINTARGET instead.

      + +

      The return value is -1 if the search fails or the position of the start of the found text if + it succeeds. The chrgText.cpMin and chrgText.cpMax members of + Sci_TextToFind are filled in with the start and end positions of the found text.

      + +

      See also: SCI_SEARCHINTARGET

      + +

      Sci_TextToFind
      + This structure is defined to have exactly the same shape as the Win32 structure + FINDTEXTEX for old code that treated Scintilla as a RichEdit control.

      +
      +struct Sci_TextToFind {
      +    struct Sci_CharacterRange chrg;     // range to search
      +    const char *lpstrText;                // the search pattern (zero terminated)
      +    struct Sci_CharacterRange chrgText; // returned as position of matching text
      +};
      +
      + +

      SCI_SEARCHANCHOR
      + SCI_SEARCHNEXT(int searchFlags, const char *text) → int
      + SCI_SEARCHPREV(int searchFlags, const char *text) → int
      + These messages provide relocatable search support. This allows multiple incremental + interactive searches to be macro recorded while still setting the selection to found text so + the find/select operation is self-contained. These three messages send SCN_MACRORECORD notifications if macro recording is enabled.

      + +

      SCI_SEARCHANCHOR sets the search start point used by + SCI_SEARCHNEXT and SCI_SEARCHPREV to the start of the current + selection, that is, the end of the selection that is nearer to the start of the document. You + should always call this before calling either of SCI_SEARCHNEXT or + SCI_SEARCHPREV.

      + +

      SCI_SEARCHNEXT and SCI_SEARCHPREV search for the next and previous + occurrence of the zero terminated search string pointed at by text. The search is modified by + the searchFlags.

      + +

      The return value is -1 if nothing is found, otherwise the return value is the start position + of the matching text. The selection is updated to show the matched text, but is not scrolled + into view.

      + +

      See also: SCI_SEARCHINTARGET, + SCI_FINDTEXT

      + +

      Overtype

      + + SCI_SETOVERTYPE(bool overType)
      + SCI_GETOVERTYPE → bool
      +
      + +

      SCI_SETOVERTYPE(bool overType)
      + SCI_GETOVERTYPE → bool
      + When overtype is enabled, each typed character replaces the character to the right of the text + caret. When overtype is disabled, characters are inserted at the caret. + SCI_GETOVERTYPE returns true (1) if overtyping is active, otherwise + false (0) will be returned. Use SCI_SETOVERTYPE to set the overtype + mode.

      + +

      Cut, copy and paste

      + + SCI_CUT
      + SCI_COPY
      + SCI_PASTE
      + SCI_CLEAR
      + SCI_CANPASTE → bool
      + SCI_COPYRANGE(int start, int end)
      + SCI_COPYTEXT(int length, const char *text)
      + SCI_COPYALLOWLINE
      + SCI_SETPASTECONVERTENDINGS(bool convert)
      + SCI_GETPASTECONVERTENDINGS → bool
      +
      + +

      SCI_CUT
      + SCI_COPY
      + SCI_PASTE
      + SCI_CLEAR
      + SCI_CANPASTE → bool
      + SCI_COPYALLOWLINE
      + These commands perform the standard tasks of cutting and copying data to the clipboard, + pasting from the clipboard into the document, and clearing the document. + SCI_CANPASTE returns non-zero if the document isn't read-only and if the selection + doesn't contain protected text. If you need a "can copy" or "can cut", use + SCI_GETSELECTIONEMPTY(), which will be zero if there are any non-empty + selection ranges implying that a copy or cut to the clipboard should work.

      + +

      GTK+ does not really support SCI_CANPASTE and always returns true + unless the document is read-only.

      + +

      On X, the clipboard is asynchronous and may require several messages between + the destination and source applications. Data from SCI_PASTE will not arrive in the + document immediately.

      + +

      SCI_COPYALLOWLINE works the same as SCI_COPY except that if the + selection is empty then the current line is copied. On Windows, an extra "MSDEVLineSelect" marker + is added to the clipboard which is then used in SCI_PASTE to paste + the whole line before the current line.

      + + SCI_COPYRANGE(int start, int end)
      + SCI_COPYTEXT(int length, const char *text)
      +

      SCI_COPYRANGE copies a range of text from the document to + the system clipboard and SCI_COPYTEXT copies a supplied piece of + text to the system clipboard.

      + +

      SCI_SETPASTECONVERTENDINGS(bool convert)
      + SCI_GETPASTECONVERTENDINGS → bool
      + If this property is set then when text is pasted any line ends are converted to match the document's + end of line mode as set with + SCI_SETEOLMODE. + Defaults to true.

      + +

      Error handling

      + + SCI_SETSTATUS(int status)
      + SCI_GETSTATUS → int
      +
      + +

      SCI_SETSTATUS(int status)
      + SCI_GETSTATUS → int
      + If an error occurs, Scintilla may set an internal error number that can be retrieved with + SCI_GETSTATUS. + To clear the error status call SCI_SETSTATUS(0). + Status values from 1 to 999 are errors and status SC_STATUS_WARN_START (1000) + and above are warnings. + The currently defined statuses are: +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SC_STATUS_OK0No failures
      SC_STATUS_FAILURE1Generic failure
      SC_STATUS_BADALLOC2Memory is exhausted
      SC_STATUS_WARN_REGEX1001Regular expression is invalid
      + +

      Undo and Redo

      + +

      Scintilla has multiple level undo and redo. It will continue to collect undoable actions + until memory runs out. Scintilla saves actions that change the document. Scintilla does not + save caret and selection movements, view scrolling and the like. Sequences of typing or + deleting are compressed into single transactions to make it easier to undo and redo at a sensible + level of detail. Sequences of actions can be combined into transactions that are undone as a unit. + These sequences occur between SCI_BEGINUNDOACTION and + SCI_ENDUNDOACTION messages. These transactions can be nested and only the top-level + sequences are undone as units.

      + SCI_UNDO
      + SCI_CANUNDO → bool
      + SCI_EMPTYUNDOBUFFER
      + SCI_REDO
      + SCI_CANREDO → bool
      + SCI_SETUNDOCOLLECTION(bool collectUndo)
      + SCI_GETUNDOCOLLECTION → bool
      + SCI_BEGINUNDOACTION
      + SCI_ENDUNDOACTION
      + SCI_ADDUNDOACTION(int token, int flags)
      +
      + +

      SCI_UNDO
      + SCI_CANUNDO → bool
      + SCI_UNDO undoes one action, or if the undo buffer has reached a + SCI_ENDUNDOACTION point, all the actions back to the corresponding + SCI_BEGINUNDOACTION.

      + +

      SCI_CANUNDO returns 0 if there is nothing to undo, and 1 if there is. You would + typically use the result of this message to enable/disable the Edit menu Undo command.

      + +

      SCI_REDO
      + SCI_CANREDO → bool
      + SCI_REDO undoes the effect of the last SCI_UNDO operation.

      + +

      SCI_CANREDO returns 0 if there is no action to redo and 1 if there are undo + actions to redo. You could typically use the result of this message to enable/disable the Edit + menu Redo command.

      + +

      SCI_EMPTYUNDOBUFFER
      + This command tells Scintilla to forget any saved undo or redo history. It also sets the save + point to the start of the undo buffer, so the document will appear to be unmodified. This does + not cause the SCN_SAVEPOINTREACHED notification to be sent to the + container.

      + +

      See also: SCI_SETSAVEPOINT

      + +

      SCI_SETUNDOCOLLECTION(bool collectUndo)
      + SCI_GETUNDOCOLLECTION → bool
      + You can control whether Scintilla collects undo information with + SCI_SETUNDOCOLLECTION. Pass in true (1) to collect information and + false (0) to stop collecting. If you stop collection, you should also use + SCI_EMPTYUNDOBUFFER to avoid the undo buffer being unsynchronized with the data in + the buffer.

      + +

      You might wish to turn off saving undo information if you use the Scintilla to store text + generated by a program (a Log view) or in a display window where text is often deleted and + regenerated.

      + +

      SCI_BEGINUNDOACTION
      + SCI_ENDUNDOACTION
      + Send these two messages to Scintilla to mark the beginning and end of a set of operations that + you want to undo all as one operation but that you have to generate as several operations. + Alternatively, you can use these to mark a set of operations that you do not want to have + combined with the preceding or following operations if they are undone.

      + +

      SCI_ADDUNDOACTION(int token, int flags)
      + The container can add its own actions into the undo stack by calling + SCI_ADDUNDOACTION and an SCN_MODIFIED + notification will be sent to the container with the + SC_MOD_CONTAINER + flag when it is time to undo (SC_PERFORMED_UNDO) or + redo (SC_PERFORMED_REDO) the action. The token argument supplied is + returned in the token field of the notification.

      +

      For example, if the container wanted to allow undo and redo of a 'toggle bookmark' command then + it could call SCI_ADDUNDOACTION(line, 0) each time the command is performed. + Then when it receives a notification to undo or redo it toggles a bookmark on the line given by + the token field. If there are different types of commands or parameters that need to be stored into the undo + stack then the container should maintain a stack of its own for the document and use the current + position in that stack as the argument to SCI_ADDUNDOACTION(line). + SCI_ADDUNDOACTION commands are not combined together + into a single undo transaction unless grouped with SCI_BEGINUNDOACTION + and SCI_ENDUNDOACTION.

      + +

      The flags argument can be UNDO_MAY_COALESCE (1) if the container action may be + coalesced along with any insertion and deletion actions into a single compound action, otherwise 0. + Coalescing treats coalescible container actions as transparent so will still only group together insertions that + look like typing or deletions that look like multiple uses of the Backspace or Delete keys. +

      +

      Selection and information

      + +

      Scintilla maintains a selection that stretches between two points, the anchor and the + current position. If the anchor and the current position are the same, there is no selected + text. Positions in the document range from 0 (before the first character), to the document size + (after the last character). If you use messages, there is nothing to stop you setting a + position that is in the middle of a CRLF pair, or in the middle of a 2 byte character. However, + keyboard commands will not move the caret into such positions.

      + SCI_GETTEXTLENGTH → int
      + SCI_GETLENGTH → int
      + SCI_GETLINECOUNT → int
      + SCI_LINESONSCREEN → int
      + SCI_GETMODIFY → bool
      + SCI_SETSEL(int anchor, int caret)
      + SCI_GOTOPOS(int caret)
      + SCI_GOTOLINE(int line)
      + SCI_SETCURRENTPOS(int caret)
      + SCI_GETCURRENTPOS → position
      + SCI_SETANCHOR(int anchor)
      + SCI_GETANCHOR → position
      + SCI_SETSELECTIONSTART(int anchor)
      + SCI_GETSELECTIONSTART → position
      + SCI_SETSELECTIONEND(int caret)
      + SCI_GETSELECTIONEND → position
      + SCI_SETEMPTYSELECTION(int caret)
      + SCI_SELECTALL
      + SCI_LINEFROMPOSITION(int pos) → int
      + SCI_POSITIONFROMLINE(int line) → position
      + SCI_GETLINEENDPOSITION(int line) → position
      + SCI_LINELENGTH(int line) → int
      + SCI_GETCOLUMN(int pos) → int
      + SCI_FINDCOLUMN(int line, int column) → int
      + SCI_POSITIONFROMPOINT(int x, int y) → position
      + SCI_POSITIONFROMPOINTCLOSE(int x, int y) → position
      + SCI_CHARPOSITIONFROMPOINT(int x, int y) → position
      + SCI_CHARPOSITIONFROMPOINTCLOSE(int x, int y) → position
      + SCI_POINTXFROMPOSITION(<unused>, int pos) → int
      + SCI_POINTYFROMPOSITION(<unused>, int pos) → int
      + SCI_HIDESELECTION(bool hide)
      + SCI_GETSELTEXT(<unused>, char *text) → int
      + SCI_GETCURLINE(int length, char *text) → int
      + SCI_SELECTIONISRECTANGLE → bool
      + SCI_SETSELECTIONMODE(int selectionMode)
      + SCI_GETSELECTIONMODE → int
      + SCI_GETMOVEEXTENDSSELECTION → bool
      + SCI_GETLINESELSTARTPOSITION(int line) → position
      + SCI_GETLINESELENDPOSITION(int line) → position
      + SCI_MOVECARETINSIDEVIEW
      + SCI_POSITIONBEFORE(int pos) → position
      + SCI_POSITIONAFTER(int pos) → position
      + SCI_TEXTWIDTH(int style, const char *text) → int
      + SCI_TEXTHEIGHT(int line) → int
      + SCI_CHOOSECARETX
      + SCI_MOVESELECTEDLINESUP
      + SCI_MOVESELECTEDLINESDOWN
      + SCI_SETMOUSESELECTIONRECTANGULARSWITCH(bool mouseSelectionRectangularSwitch)
      + SCI_GETMOUSESELECTIONRECTANGULARSWITCH → bool
      +
      + +

      SCI_GETTEXTLENGTH → int
      + SCI_GETLENGTH → int
      + Both these messages return the length of the document in bytes.

      + +

      SCI_GETLINECOUNT → int
      + This returns the number of lines in the document. An empty document contains 1 line. A + document holding only an end of line sequence has 2 lines.

      + +

      SCI_LINESONSCREEN → int
      + This returns the number of complete lines visible on the screen. With a constant line height, + this is the vertical space available divided by the line separation. Unless you arrange to size + your window to an integral number of lines, there may be a partial line visible at the bottom + of the view.

      + +

      SCI_GETMODIFY → bool
      + This returns non-zero if the document is modified and 0 if it is unmodified. The modified + status of a document is determined by the undo position relative to the save point. The save + point is set by SCI_SETSAVEPOINT, + usually when you have saved data to a file.

      + +

      If you need to be notified when the document becomes modified, Scintilla notifies the + container that it has entered or left the save point with the SCN_SAVEPOINTREACHED and SCN_SAVEPOINTLEFT notification messages.

      + +

      SCI_SETSEL(int anchor, int caret)
      + This message sets both the anchor and the current position. If caret is + negative, it means the end of the document. If anchor is negative, it means + remove any selection (i.e. set the anchor to the same position as caret). The + caret is scrolled into view after this operation.

      + +

      SCI_GOTOPOS(int caret)
      + This removes any selection, sets the caret at caret and scrolls the view to make + the caret visible, if necessary. It is equivalent to + SCI_SETSEL(caret, caret). The anchor position is set the same as the current + position.

      + +

      SCI_GOTOLINE(int line)
      + This removes any selection and sets the caret at the start of line number line + and scrolls the view (if needed) to make it visible. The anchor position is set the same as the + current position. If line is outside the lines in the document (first line is 0), + the line set is the first or last.

      + +

      SCI_SETCURRENTPOS(int caret)
      + This sets the current position and creates a selection between the anchor and the current + position. The caret is not scrolled into view.

      + +

      See also: SCI_SCROLLCARET

      + +

      SCI_GETCURRENTPOS → position
      + This returns the current position.

      + +

      SCI_SETANCHOR(int anchor)
      + This sets the anchor position and creates a selection between the anchor position and the + current position. The caret is not scrolled into view.

      + +

      See also: SCI_SCROLLCARET

      + +

      SCI_GETANCHOR → position
      + This returns the current anchor position.

      + +

      SCI_SETSELECTIONSTART(int anchor)
      + SCI_SETSELECTIONEND(int caret)
      + These set the selection based on the assumption that the anchor position is less than the + current position. They do not make the caret visible. The table shows the positions of the + anchor and the current position after using these messages.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + New value for + anchorcaret
      SCI_SETSELECTIONSTARTanchorMax(anchor, current)
      SCI_SETSELECTIONENDMin(anchor, caret)caret
      + +

      See also: SCI_SCROLLCARET

      + +

      SCI_GETSELECTIONSTART → position
      + SCI_GETSELECTIONEND → position
      + These return the start and end of the selection without regard to which end is the current + position and which is the anchor. SCI_GETSELECTIONSTART returns the smaller of the + current position or the anchor position. SCI_GETSELECTIONEND returns the larger of + the two values.

      + +

      SCI_SETEMPTYSELECTION(int caret)
      + This removes any selection and sets the caret at caret. The caret is not scrolled into view.

      + +

      SCI_SELECTALL
      + This selects all the text in the document. The current position is not scrolled into view.

      + +

      SCI_LINEFROMPOSITION(int pos) → int
      + This message returns the line that contains the position pos in the document. The + return value is 0 if pos <= 0. The return value is the last line if + pos is beyond the end of the document.

      + +

      SCI_POSITIONFROMLINE(int line) → position
      + This returns the document position that corresponds with the start of the line. If + line is negative, the position of the line holding the start of the selection is + returned. If line is greater than the lines in the document, the return value is + -1. If line is equal to the number of lines in the document (i.e. 1 line past the + last line), the return value is the end of the document.

      + +

      SCI_GETLINEENDPOSITION(int line) → position
      + This returns the position at the end of the line, before any line end characters. If line + is the last line in the document (which does not have any end of line characters) or greater, + the result is the size of the document. + If line is negative the result is undefined.

      + +

      SCI_LINELENGTH(int line) → int
      + This returns the length of the line, including any line end characters. If line + is negative or beyond the last line in the document, the result is 0. If you want the length of + the line not including any end of line characters, use SCI_GETLINEENDPOSITION(line) - SCI_POSITIONFROMLINE(line).

      + +

      SCI_GETSELTEXT(<unused>, char *text NUL-terminated) → int
      + This copies the currently selected text and a terminating 0 byte to the text + buffer. The buffer size should be determined by calling with a NULL pointer for the text argument + SCI_GETSELTEXT(0,0). + This allows for rectangular and discontiguous selections as well as simple selections. + See Multiple Selection for information on + how multiple and rectangular selections and virtual space are copied.

      + +

      See also: SCI_GETCURLINE, + SCI_GETLINE, + SCI_GETTEXT, + SCI_GETSTYLEDTEXT, + SCI_GETTEXTRANGE +

      + +

      SCI_GETCURLINE(int length, char *text NUL-terminated) → int
      + This retrieves the text of the line containing the caret and returns the position within the + line of the caret. Pass in char* text pointing at a buffer large enough to hold + the text you wish to retrieve and a terminating 0 character. + Set length to the + length of the buffer which must be at least 1 to hold the terminating 0 character. + If the text argument is 0 then the length that should be allocated + to store the entire current line is returned.

      + +

      See also: SCI_GETSELTEXT, SCI_GETLINE, SCI_GETTEXT, SCI_GETSTYLEDTEXT, SCI_GETTEXTRANGE

      + +

      SCI_SELECTIONISRECTANGLE → bool
      + This returns 1 if the current selection is in rectangle mode, 0 if not.

      + +

      SCI_SETSELECTIONMODE(int selectionMode)
      + SCI_GETSELECTIONMODE → int
      + The two functions set and get the selection mode, which can be + stream (SC_SEL_STREAM=0) or + rectangular (SC_SEL_RECTANGLE=1) or + by lines (SC_SEL_LINES=2) + or thin rectangular (SC_SEL_THIN=3). + When set in these modes, regular caret moves will extend or reduce the selection, + until the mode is cancelled by a call with same value or with SCI_CANCEL. + The get function returns the current mode even if the selection was made by mouse + or with regular extended moves. + SC_SEL_THIN is the mode after a rectangular selection has been typed into and ensures + that no characters are selected.

      + +

      SCI_GETMOVEEXTENDSSELECTION → bool
      + This returns 1 if regular caret moves will extend or reduce the selection, 0 if not. + SCI_SETSELECTIONMODE toggles this setting between on and off.

      + +

      SCI_GETLINESELSTARTPOSITION(int line) → position
      + SCI_GETLINESELENDPOSITION(int line) → position
      + Retrieve the position of the start and end of the selection at the given line with + INVALID_POSITION returned if no selection on this line.

      + +

      SCI_MOVECARETINSIDEVIEW
      + If the caret is off the top or bottom of the view, it is moved to the nearest line that is + visible to its current position. Any selection is lost.

      + +

      SCI_POSITIONBEFORE(int pos) → position
      + SCI_POSITIONAFTER(int pos) → position
      + These messages return the position before and after another position + in the document taking into account the current code page. The minimum + position returned is 0 and the maximum is the last position in the document. + If called with a position within a multi byte character will return the position + of the start/end of that character.

      + +

      SCI_TEXTWIDTH(int style, const char *text) → int
      + This returns the pixel width of a string drawn in the given style which can + be used, for example, to decide how wide to make the line number margin in order to display a + given number of numerals.

      + +

      SCI_TEXTHEIGHT(int line) → int
      + This returns the height in pixels of a particular line. Currently all lines are the same + height.

      + +

      SCI_GETCOLUMN(int pos) → int
      + This message returns the column number of a position pos within the document + taking the width of tabs into account. This returns the column number of the last tab on the + line before pos, plus the number of characters between the last tab and + pos. If there are no tab characters on the line, the return value is the number of + characters up to the position on the line. In both cases, double byte characters count as a + single character. This is probably only useful with monospaced fonts.

      + +

      SCI_FINDCOLUMN(int line, int column) → int
      + This message returns the position of a column on a line + taking the width of tabs into account. It treats a multi-byte character as a single column. + Column numbers, like lines start at 0.

      + +

      SCI_POSITIONFROMPOINT(int x, int y) → position
      + SCI_POSITIONFROMPOINTCLOSE(int x, int y) → position
      + SCI_POSITIONFROMPOINT finds the closest character position to a point and + SCI_POSITIONFROMPOINTCLOSE is similar but returns -1 if the point is outside the + window or not close to any characters.

      + +

      SCI_CHARPOSITIONFROMPOINT(int x, int y) → position
      + SCI_CHARPOSITIONFROMPOINTCLOSE(int x, int y) → position
      + SCI_CHARPOSITIONFROMPOINT finds the closest character to a point and + SCI_CHARPOSITIONFROMPOINTCLOSE is similar but returns -1 if the point is outside the + window or not close to any characters. This is similar to the previous methods but finds characters rather than + inter-character positions.

      + +

      SCI_POINTXFROMPOSITION(<unused>, int pos) → int
      + SCI_POINTYFROMPOSITION(<unused>, int pos) → int
      + These messages return the x and y display pixel location of text at position pos + in the document.

      + +

      SCI_HIDESELECTION(bool hide)
      + The normal state is to make the selection visible by drawing it as set by SCI_SETSELFORE and SCI_SETSELBACK. However, if you hide the selection, it + is drawn as normal text.

      + +

      SCI_CHOOSECARETX
      + Scintilla remembers the x value of the last position horizontally moved to explicitly by the + user and this value is then used when moving vertically such as by using the up and down keys. + This message sets the current x position of the caret as the remembered value.

      + +

      SCI_MOVESELECTEDLINESUP
      + Move the selected lines up one line, shifting the line above after the selection. + The selection will be automatically extended to the beginning of the selection's first line and the end of the selection's last line. + If nothing was selected, the line the cursor is currently at will be selected.

      + +

      SCI_MOVESELECTEDLINESDOWN
      + Move the selected lines down one line, shifting the line below before the selection. + The selection will be automatically extended to the beginning of the selection's first line and the end of the selection's last line. + If nothing was selected, the line the cursor is currently at will be selected.

      + +

      SCI_SETMOUSESELECTIONRECTANGULARSWITCH(bool + mouseSelectionRectangularSwitch)
      + SCI_GETMOUSESELECTIONRECTANGULARSWITCH → bool
      + Enable or disable the ability to switch to rectangular selection mode while making a selection with the mouse. + When this option is turned on, mouse selections in stream mode can be switched to rectangular mode by pressing + the corresponding modifier key. They then stick to rectangular mode even when the modifier key is released again. + When this option is turned off, mouse selections will always stick to the mode the selection was started in. It + is off by default.

      + +

      By character or UTF-16 code unit

      + +

      Most Scintilla APIs use byte positions but some applications want to use positions based on counting + (UTF-32) characters or (UTF-16) code units + or need to communicate with other code written in terms of characters or code units. + With only byte positions, this may require examining many bytes to count characters or code units in the document + but this may be sped up in some cases by indexing the line starts by character or code unit.

      + + + SCI_POSITIONRELATIVE(int pos, int relative) → position
      + SCI_POSITIONRELATIVECODEUNITS(int pos, int relative) → position
      + SCI_COUNTCHARACTERS(int start, int end) → int
      + SCI_COUNTCODEUNITS(int start, int end) → int
      + SCI_GETLINECHARACTERINDEX → int
      + SCI_ALLOCATELINECHARACTERINDEX(int lineCharacterIndex)
      + SCI_RELEASELINECHARACTERINDEX(int lineCharacterIndex)
      + SCI_LINEFROMINDEXPOSITION(int pos, int lineCharacterIndex) → int
      + SCI_INDEXPOSITIONFROMLINE(int line, int lineCharacterIndex) → position
      +
      + +

      SCI_POSITIONRELATIVE(int pos, int relative) → position
      + Count a number of whole characters before or after the argument position and return that position. + The minimum position returned is 0 and the maximum is the last position in the document. + If the position goes past the document end then 0 is returned. +

      + +

      SCI_COUNTCHARACTERS(int start, int end) → int
      + Returns the number of whole characters between two positions.

      + +

      SCI_POSITIONRELATIVECODEUNITS(int pos, int relative) → position
      + SCI_COUNTCODEUNITS(int start, int end) → int
      + These are the UTF-16 versions of SCI_POSITIONRELATIVE and SCI_COUNTCHARACTERS + working in terms of UTF-16 code units.

      + +

      SCI_GETLINECHARACTERINDEX → int
      + Returns which if any indexes are active. It may be SC_LINECHARACTERINDEX_NONE(0) or one or more + of SC_LINECHARACTERINDEX_UTF32(1) if whole characters are indexed or + SC_LINECHARACTERINDEX_UTF16(2) if UTF-16 code units are indexed. + Character indexes are currently only supported for UTF-8 documents.

      + +

      SCI_ALLOCATELINECHARACTERINDEX(int lineCharacterIndex)
      + SCI_RELEASELINECHARACTERINDEX(int lineCharacterIndex)
      + Allocate or release one or more indexes using same enumeration as SCI_GETLINECHARACTERINDEX. + Different aspects of an application may need indexes for different periods and should allocate for those periods. + Indexes use additional memory so releasing them can help minimize memory but they also take time to recalculate. + Scintilla may also allocate indexes to support features like accessibility or input method editors. + Only one index of each type is created for a document at a time.

      + +

      SCI_LINEFROMINDEXPOSITION(int pos, int lineCharacterIndex) → int
      + SCI_INDEXPOSITIONFROMLINE(int line, int lineCharacterIndex) → position
      + The document line of a particular character or code unit may be found by calling SCI_LINEFROMINDEXPOSITION with one of + SC_LINECHARACTERINDEX_UTF32(1) or SC_LINECHARACTERINDEX_UTF16(2). + The inverse action, finds the starting position of a document line either in characters or code units from the document start by calling + SCI_INDEXPOSITIONFROMLINE with the same lineCharacterIndex argument.

      + +

      Multiple Selection and Virtual Space

      + + + SCI_SETMULTIPLESELECTION(bool multipleSelection)
      + SCI_GETMULTIPLESELECTION → bool
      + SCI_SETADDITIONALSELECTIONTYPING(bool additionalSelectionTyping)
      + SCI_GETADDITIONALSELECTIONTYPING → bool
      + SCI_SETMULTIPASTE(int multiPaste)
      + SCI_GETMULTIPASTE → int
      + SCI_SETVIRTUALSPACEOPTIONS(int virtualSpaceOptions)
      + SCI_GETVIRTUALSPACEOPTIONS → int
      + SCI_SETRECTANGULARSELECTIONMODIFIER(int modifier)
      + SCI_GETRECTANGULARSELECTIONMODIFIER → int
      +
      + + SCI_GETSELECTIONS → int
      + SCI_GETSELECTIONEMPTY → bool
      + SCI_CLEARSELECTIONS
      + SCI_SETSELECTION(int caret, int anchor)
      + SCI_ADDSELECTION(int caret, int anchor)
      + SCI_DROPSELECTIONN(int selection)
      + SCI_SETMAINSELECTION(int selection)
      + SCI_GETMAINSELECTION → int
      +
      + + SCI_SETSELECTIONNCARET(int selection, int caret)
      + SCI_GETSELECTIONNCARET(int selection) → position
      + SCI_SETSELECTIONNCARETVIRTUALSPACE(int selection, int space)
      + SCI_GETSELECTIONNCARETVIRTUALSPACE(int selection) → int
      + SCI_SETSELECTIONNANCHOR(int selection, int anchor)
      + SCI_GETSELECTIONNANCHOR(int selection) → position
      + SCI_SETSELECTIONNANCHORVIRTUALSPACE(int selection, int space)
      + SCI_GETSELECTIONNANCHORVIRTUALSPACE(int selection) → int
      + SCI_SETSELECTIONNSTART(int selection, int anchor)
      + SCI_GETSELECTIONNSTART(int selection) → position
      + SCI_SETSELECTIONNEND(int selection, int caret)
      + SCI_GETSELECTIONNEND(int selection) → position
      +
      + + SCI_SETRECTANGULARSELECTIONCARET(int caret)
      + SCI_GETRECTANGULARSELECTIONCARET → position
      + SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE(int space)
      + SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE → int
      + SCI_SETRECTANGULARSELECTIONANCHOR(int anchor)
      + SCI_GETRECTANGULARSELECTIONANCHOR → position
      + SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE(int space)
      + SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE → int
      +
      + + SCI_SETADDITIONALSELALPHA(alpha alpha)
      + SCI_GETADDITIONALSELALPHA → int
      + SCI_SETADDITIONALSELFORE(colour fore)
      + SCI_SETADDITIONALSELBACK(colour back)
      + SCI_SETADDITIONALCARETFORE(colour fore)
      + SCI_GETADDITIONALCARETFORE → colour
      + SCI_SETADDITIONALCARETSBLINK(bool additionalCaretsBlink)
      + SCI_GETADDITIONALCARETSBLINK → bool
      + SCI_SETADDITIONALCARETSVISIBLE(bool additionalCaretsVisible)
      + SCI_GETADDITIONALCARETSVISIBLE → bool
      +
      + + SCI_SWAPMAINANCHORCARET
      + SCI_ROTATESELECTION
      + SCI_MULTIPLESELECTADDNEXT
      + SCI_MULTIPLESELECTADDEACH
      +
      + +

      + There may be multiple selections active at one time. + More selections are made by holding down the Ctrl key while dragging with the mouse. + The most recent selection is the main selection and determines which part of the document is shown automatically. + Any selection apart from the main selection is called an additional selection. + The calls in the previous section operate on the main selection. + There is always at least one selection. + The selection can be simplified down to just the main selection by + SCI_CANCEL + which is normally mapped to the Esc key. +

      + +

      + Rectangular selections are handled as multiple selections although the original rectangular range is remembered so that + subsequent operations may be handled differently for rectangular selections. For example, pasting a rectangular selection + places each piece in a vertical column. +

      + +

      + Virtual space is space beyond the end of each line. The caret may be moved into virtual space but no real space will be + added to the document until there is some text typed or some other text insertion command is used. +

      + +

      When discontiguous selections are copied to the clipboard, each selection is added to the clipboard text + in order with no delimiting characters. + For rectangular selections the document's line end is added after each line's text. Rectangular selections + are always copied from top line to bottom, not in the in order of selection.Virtual space is not copied.

      + +

      + SCI_SETMULTIPLESELECTION(bool multipleSelection)
      + SCI_GETMULTIPLESELECTION → bool
      + Enable or disable multiple selection. When multiple selection is disabled, it is not possible to select + multiple ranges by holding down the Ctrl key while dragging with the mouse.

      + +

      + SCI_SETADDITIONALSELECTIONTYPING(bool additionalSelectionTyping)
      + SCI_GETADDITIONALSELECTIONTYPING → bool
      + Whether typing, new line, cursor left/right/up/down, backspace, delete, home, and end work + with multiple selections simultaneously. + Also allows selection and word and line deletion commands.

      + +

      + SCI_SETMULTIPASTE(int multiPaste)
      + SCI_GETMULTIPASTE → int
      + When pasting into multiple selections, the pasted text can go into just the main selection with SC_MULTIPASTE_ONCE=0 + or into each selection with SC_MULTIPASTE_EACH=1. SC_MULTIPASTE_ONCE is the default.

      + +

      + SCI_SETVIRTUALSPACEOPTIONS(int virtualSpaceOptions)
      + SCI_GETVIRTUALSPACEOPTIONS → int
      + Virtual space can be enabled or disabled for rectangular selections or in other circumstances or in both. + There are three bit flags SCVS_RECTANGULARSELECTION=1, + SCVS_USERACCESSIBLE=2, and + SCVS_NOWRAPLINESTART=4 which can be set independently. + SCVS_NONE=0, the default, disables all use of virtual space.

      +

      SCVS_NOWRAPLINESTART prevents left arrow movement and selection + from wrapping to the previous line. + This is most commonly desired in conjunction with virtual space but is an independent + setting so works without virtual space.

      + +

      + SCI_SETRECTANGULARSELECTIONMODIFIER(int modifier)
      + SCI_GETRECTANGULARSELECTIONMODIFIER → int
      + On GTK+ and Qt, the key used to indicate that a rectangular selection should be created when combined with a mouse drag can be set. + The three possible values are SCMOD_CTRL=2, SCMOD_ALT=4 (default) or SCMOD_SUPER=8. + Since SCMOD_ALT may already be used by a window manager, the window manager may need configuring to allow this choice. + SCMOD_SUPER is often a system dependent modifier key such as the Left Windows key on a Windows keyboard or the + Command key on a Mac.

      + +

      + SCI_GETSELECTIONS → int
      + Return the number of selections currently active. There is always at least one selection.

      + +

      + SCI_GETSELECTIONEMPTY → bool
      + Return 1 if every selected range is empty else 0.

      + +

      + SCI_CLEARSELECTIONS
      + Set a single empty selection at 0 as the only selection.

      + +

      + SCI_SETSELECTION(int caret, int anchor)
      + Set a single selection from anchor to caret as the only selection.

      + +

      + SCI_ADDSELECTION(int caret, int anchor)
      + Add a new selection from anchor to caret as the main selection retaining all other + selections as additional selections. + Since there is always at least one selection, to set a list of selections, the first selection should be + added with SCI_SETSELECTION and later selections added with SCI_ADDSELECTION

      + +

      + SCI_DROPSELECTIONN(int selection)
      + If there are multiple selections, remove the indicated selection. + If this was the main selection then make the previous selection the main and if it was the first then the last selection becomes main. + If there is only one selection, or there is no selection selection, then there is no effect.

      + +

      + SCI_SETMAINSELECTION(int selection)
      + SCI_GETMAINSELECTION → int
      + One of the selections is the main selection which is used to determine what range of text is automatically visible. + The main selection may be displayed in different colours or with a differently styled caret. + Only an already existing selection can be made main.

      + +

      + SCI_SETSELECTIONNCARET(int selection, int caret)
      + SCI_GETSELECTIONNCARET(int selection) → position
      + SCI_SETSELECTIONNCARETVIRTUALSPACE(int selection, int space)
      + SCI_GETSELECTIONNCARETVIRTUALSPACE(int selection) → int
      + SCI_SETSELECTIONNANCHOR(int selection, int anchor)
      + SCI_GETSELECTIONNANCHOR(int selection) → position
      + SCI_SETSELECTIONNANCHORVIRTUALSPACE(int selection, int space)
      + SCI_GETSELECTIONNANCHORVIRTUALSPACE(int selection) → int
      + Set or query the position and amount of virtual space for the caret and anchor of each already existing selection.

      + +

      + SCI_SETSELECTIONNSTART(int selection, int anchor)
      + SCI_GETSELECTIONNSTART(int selection) → position
      + SCI_SETSELECTIONNEND(int selection, int caret)
      + SCI_GETSELECTIONNEND(int selection) → position
      + Set or query the start and end position of each already existing selection. + Mostly of use to query each range for its text. The selection parameter is zero-based.

      + +

      + SCI_SETRECTANGULARSELECTIONCARET(int caret)
      + SCI_GETRECTANGULARSELECTIONCARET → position
      + SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE(int space)
      + SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE → int
      + SCI_SETRECTANGULARSELECTIONANCHOR(int anchor)
      + SCI_GETRECTANGULARSELECTIONANCHOR → position
      + SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE(int space)
      + SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE → int
      + Set or query the position and amount of virtual space for the caret and anchor of the rectangular selection. + After setting the rectangular selection, this is broken down into multiple selections, one for each line.

      + +

      + SCI_SETADDITIONALSELALPHA(alpha alpha)
      + SCI_GETADDITIONALSELALPHA → int
      + SCI_SETADDITIONALSELFORE(colour fore)
      + SCI_SETADDITIONALSELBACK(colour back)
      + Modify the appearance of additional selections so that they can be differentiated from the main selection which has its appearance set with + SCI_SETSELALPHA, + SCI_GETSELALPHA, + SCI_SETSELFORE, and + SCI_SETSELBACK. + SCI_SETADDITIONALSELFORE and + SCI_SETADDITIONALSELBACK calls have no + effect until SCI_SETSELFORE + and SCI_SETSELBACK are + called with useSelection*Colour value set to true. Subsequent calls to + SCI_SETSELFORE, + and SCI_SETSELBACK will + overwrite the values set by SCI_SETADDITIONALSEL* functions.

      +

      + SCI_SETADDITIONALCARETFORE(colour fore)
      + SCI_GETADDITIONALCARETFORE → colour
      + SCI_SETADDITIONALCARETSBLINK(bool additionalCaretsBlink)
      + SCI_GETADDITIONALCARETSBLINK → bool
      + Modify the appearance of additional carets so that they can be differentiated from the main caret which has its appearance set with + SCI_SETCARETFORE, + SCI_GETCARETFORE, + SCI_SETCARETPERIOD, and + SCI_GETCARETPERIOD.

      + +

      + SCI_SETADDITIONALCARETSVISIBLE(bool additionalCaretsVisible)
      + SCI_GETADDITIONALCARETSVISIBLE → bool
      + Determine whether to show additional carets (defaults to true).

      + +

      + SCI_SWAPMAINANCHORCARET
      + SCI_ROTATESELECTION
      + SCI_MULTIPLESELECTADDNEXT
      + SCI_MULTIPLESELECTADDEACH
      + These commands may be assigned to keys to make it possible to manipulate multiple selections. + SCI_SWAPMAINANCHORCARET moves the caret to the opposite end of the main selection. + SCI_ROTATESELECTION makes the next selection be the main selection.
      + SCI_MULTIPLESELECTADDNEXT adds the next occurrence of the main selection + within the target to the set of selections as main. If the current selection is empty then select word around caret. + The current searchFlags + are used so the application may choose case sensitivity and word search options.
      + SCI_MULTIPLESELECTADDEACH is similar to + SCI_MULTIPLESELECTADDNEXT but adds multiple occurrences instead of just one. +

      + +

      Scrolling and automatic scrolling

      + + SCI_SETFIRSTVISIBLELINE(int displayLine)
      + SCI_GETFIRSTVISIBLELINE → int
      + SCI_SETXOFFSET(int xOffset)
      + SCI_GETXOFFSET → int
      + SCI_LINESCROLL(int columns, int lines)
      + SCI_SCROLLCARET
      + SCI_SCROLLRANGE(int secondary, int primary)
      + SCI_SETXCARETPOLICY(int caretPolicy, int + caretSlop)
      + SCI_SETYCARETPOLICY(int caretPolicy, int + caretSlop)
      + SCI_SETVISIBLEPOLICY(int visiblePolicy, int + visibleSlop)
      + SCI_SETHSCROLLBAR(bool visible)
      + SCI_GETHSCROLLBAR → bool
      + SCI_SETVSCROLLBAR(bool visible)
      + SCI_GETVSCROLLBAR → bool
      + SCI_SETSCROLLWIDTH(int pixelWidth)
      + SCI_GETSCROLLWIDTH → int
      + SCI_SETSCROLLWIDTHTRACKING(bool tracking)
      + SCI_GETSCROLLWIDTHTRACKING → bool
      + SCI_SETENDATLASTLINE(bool + endAtLastLine)
      + SCI_GETENDATLASTLINE → bool
      +
      + +

      SCI_SETFIRSTVISIBLELINE(int displayLine)
      + SCI_GETFIRSTVISIBLELINE → int
      + These messages retrieve and set the line number of the first visible line in the Scintilla view. The first line + in the document is numbered 0. The value is a visible line rather than a document line.

      + +

      SCI_SETXOFFSET(int xOffset)
      + SCI_GETXOFFSET → int
      + The xOffset is the horizontal scroll position in pixels of the start of the text + view. A value of 0 is the normal position with the first text column visible at the left of the + view.

      + +

      SCI_LINESCROLL(int columns, int lines)
      + This will attempt to scroll the display by the number of columns and lines that you specify. + Positive line values increase the line number at the top of the screen (i.e. they move the text + upwards as far as the user is concerned), Negative line values do the reverse.

      + +

      The column measure is the width of a space in the default style. Positive values increase + the column at the left edge of the view (i.e. they move the text leftwards as far as the user + is concerned). Negative values do the reverse.

      + +

      See also: SCI_SETXOFFSET

      + +

      SCI_SCROLLCARET
      + If the current position (this is the caret if there is no selection) is not visible, the view + is scrolled to make it visible according to the current caret policy.

      + +

      SCI_SCROLLRANGE(int secondary, int primary)
      + Scroll the argument positions and the range between them into view giving + priority to the primary position then the secondary position. + The behaviour is similar to SCI_SCROLLCARET + with the primary position used instead of the caret. An effort is then made to ensure that the secondary + position and range between are also visible. + This may be used to make a search match visible.

      + +

      SCI_SETXCARETPOLICY(int caretPolicy, int caretSlop)
      + SCI_SETYCARETPOLICY(int caretPolicy, int caretSlop)
      + These set the caret policy. The value of caretPolicy is a combination of + CARET_SLOP, CARET_STRICT, CARET_JUMPS and + CARET_EVEN.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      CARET_SLOPIf set, we can define a slop value: caretSlop. This value defines an + unwanted zone (UZ) where the caret is... unwanted. This zone is defined as a number of + pixels near the vertical margins, and as a number of lines near the horizontal margins. + By keeping the caret away from the edges, it is seen within its context. This makes it + likely that the identifier that the caret is on can be completely seen, and that the + current line is seen with some of the lines following it, which are often dependent on + that line.
      CARET_STRICTIf set, the policy set by CARET_SLOP is enforced... strictly. The caret + is centred on the display if caretSlop is not set, and cannot go in the UZ + if caretSlop is set.
      CARET_JUMPSIf set, the display is moved more energetically so the caret can move in the same + direction longer before the policy is applied again. '3UZ' notation is used to indicate + three time the size of the UZ as a distance to the margin.
      CARET_EVENIf not set, instead of having symmetrical UZs, the left and bottom UZs are extended + up to right and top UZs respectively. This way, we favour the displaying of useful + information: the beginning of lines, where most code reside, and the lines after the + caret, for example, the body of a function.
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      slopstrictjumpsevenCaret can go to the marginOn reaching limit (going out of visibility
      + or going into the UZ) display is...
      0000Yesmoved to put caret on top/on right
      0001Yesmoved by one position
      0010Yesmoved to put caret on top/on right
      0011Yescentred on the caret
      01-0Caret is always on top/on right of display-
      01-1No, caret is always centred-
      1000Yesmoved to put caret out of the asymmetrical UZ
      1001Yesmoved to put caret out of the UZ
      1010Yesmoved to put caret at 3UZ of the top or right margin
      1011Yesmoved to put caret at 3UZ of the margin
      11-0Caret is always at UZ of top/right margin-
      1101No, kept out of UZmoved by one position
      1110No, kept out of UZmoved to put caret at 3UZ of the margin
      + +

      SCI_SETVISIBLEPOLICY(int visiblePolicy, int visibleSlop)
      + This determines how the vertical positioning is determined when SCI_ENSUREVISIBLEENFORCEPOLICY is + called. It takes VISIBLE_SLOP and VISIBLE_STRICT flags for the policy + parameter. It is similar in operation to SCI_SETYCARETPOLICY(int caretPolicy, int + caretSlop).

      + +

      SCI_SETHSCROLLBAR(bool visible)
      + SCI_GETHSCROLLBAR → bool
      + The horizontal scroll bar is only displayed if it is needed for the assumed width. + If you never wish to see it, call + SCI_SETHSCROLLBAR(0). Use SCI_SETHSCROLLBAR(1) to enable it again. + SCI_GETHSCROLLBAR returns the current state. The default state is to display it + when needed.

      +

      See also: SCI_SETSCROLLWIDTH.

      + +

      SCI_SETVSCROLLBAR(bool visible)
      + SCI_GETVSCROLLBAR → bool
      + By default, the vertical scroll bar is always displayed when required. You can choose to hide + or show it with SCI_SETVSCROLLBAR and get the current state with + SCI_GETVSCROLLBAR.

      + +

      See also: SCI_LINESCROLL

      + +

      SCI_SETSCROLLWIDTH(int pixelWidth)
      + SCI_GETSCROLLWIDTH → int
      + For performance, Scintilla does not measure the display width of the document to determine + the properties of the horizontal scroll bar. Instead, an assumed width is used. + These messages set and get the document width in pixels assumed by Scintilla. + The default value is 2000. + To ensure the width of the currently visible lines can be scrolled use + SCI_SETSCROLLWIDTHTRACKING

      + +

      SCI_SETSCROLLWIDTHTRACKING(bool tracking)
      + SCI_GETSCROLLWIDTHTRACKING → bool
      + If scroll width tracking is enabled then the scroll width is adjusted to ensure that all of the lines currently + displayed can be completely scrolled. This mode never adjusts the scroll width to be narrower.

      + +

      SCI_SETENDATLASTLINE(bool endAtLastLine)
      + SCI_GETENDATLASTLINE → bool
      + SCI_SETENDATLASTLINE sets the scroll range so that maximum scroll position has + the last line at the bottom of the view (default). Setting this to false allows + scrolling one page below the last line.

      + +

      White space

      + SCI_SETVIEWWS(int viewWS)
      + SCI_GETVIEWWS → int
      + SCI_SETWHITESPACEFORE(bool + useSetting, colour fore)
      + SCI_SETWHITESPACEBACK(bool + useSetting, colour back)
      + SCI_SETWHITESPACESIZE(int + size)
      + SCI_GETWHITESPACESIZE → int
      + SCI_SETTABDRAWMODE(int tabDrawMode)
      + SCI_GETTABDRAWMODE → int
      + SCI_SETEXTRAASCENT(int extraAscent)
      + SCI_GETEXTRAASCENT → int
      + SCI_SETEXTRADESCENT(int extraDescent)
      + SCI_GETEXTRADESCENT → int
      +
      + +

      SCI_SETVIEWWS(int viewWS)
      + SCI_GETVIEWWS → int
      + White space can be made visible which may be useful for languages in which white space is + significant, such as Python. Space characters appear as small centred dots and tab characters + as light arrows pointing to the right. There are also ways to control the display of end of line characters. The two messages set and get the + white space display mode. The viewWS argument can be one of:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SCWS_INVISIBLE0The normal display mode with white space displayed as an empty background + colour.
      SCWS_VISIBLEALWAYS1White space characters are drawn as dots and arrows,
      SCWS_VISIBLEAFTERINDENT2White space used for indentation is displayed normally but after the first visible + character, it is shown as dots and arrows.
      SCWS_VISIBLEONLYININDENT3White space used for indentation is displayed as dots and arrows.
      + +

      The effect of using any other viewWS value is undefined.

      + +

      SCI_SETWHITESPACEFORE(bool useSetting, colour fore)
      + SCI_SETWHITESPACEBACK(bool useSetting, colour back)
      + By default, the colour of visible white space is determined by the lexer in use. The + foreground and/or background colour of all visible white space can be set globally, overriding + the lexer's colours with SCI_SETWHITESPACEFORE and + SCI_SETWHITESPACEBACK.

      + +

      SCI_SETWHITESPACESIZE(int size)
      + SCI_GETWHITESPACESIZE → int
      + SCI_SETWHITESPACESIZE sets the size of the dots used for mark space characters. + The SCI_GETWHITESPACESIZE message retrieves the current size. +

      + +

      SCI_SETTABDRAWMODE(int tabDrawMode)
      + SCI_GETTABDRAWMODE → int
      + These two messages get and set how tab characters are drawn when white space is visible. + The tabDrawMode argument can be one of:

      + + + + + + + + + + + + + + + + + + + +
      SCTD_LONGARROW0The default mode of an arrow stretching until the tabstop.
      SCTD_STRIKEOUT1A horizontal line stretching until the tabstop.
      + +

      The effect of using any other tabDrawMode value is undefined.

      + +

      + SCI_SETEXTRAASCENT(int extraAscent)
      + SCI_GETEXTRAASCENT → int
      + SCI_SETEXTRADESCENT(int extraDescent)
      + SCI_GETEXTRADESCENT → int
      + Text is drawn with the base of each character on a 'baseline'. The height of a line is found from the maximum + that any style extends above the baseline (its 'ascent'), added to the maximum that any style extends below the + baseline (its 'descent'). + Space may be added to the maximum ascent (SCI_SETEXTRAASCENT) and the + maximum descent (SCI_SETEXTRADESCENT) to allow for more space between lines. + This may done to make the text easier to read or to accommodate underlines or highlights. +

      + +

      Cursor

      + SCI_SETCURSOR(int cursorType)
      + SCI_GETCURSOR → int
      + +

      SCI_SETCURSOR(int cursorType)
      + SCI_GETCURSOR → int
      + The cursor is normally chosen in a context sensitive way, so it will be different over the + margin than when over the text. When performing a slow action, you may wish to change to a wait + cursor. You set the cursor type with SCI_SETCURSOR. The cursorType + argument can be:

      + + + + + + + + + + + + + + + + + + + +
      SC_CURSORNORMAL-1The normal cursor is displayed.
      SC_CURSORWAIT 4The wait cursor is displayed when the mouse is over or owned by the Scintilla + window.
      + +

      Cursor values 1 through 7 have defined cursors, but only SC_CURSORWAIT is + usefully controllable. Other values of cursorType cause a pointer to be displayed. + The SCI_GETCURSOR message returns the last cursor type you set, or + SC_CURSORNORMAL (-1) if you have not set a cursor type.

      + +

      Mouse capture

      + SCI_SETMOUSEDOWNCAPTURES(bool captures)
      + SCI_GETMOUSEDOWNCAPTURES → bool
      + SCI_SETMOUSEWHEELCAPTURES(bool captures)
      + SCI_GETMOUSEWHEELCAPTURES → bool
      + +

      SCI_SETMOUSEDOWNCAPTURES(bool captures)
      + SCI_GETMOUSEDOWNCAPTURES → bool
      + When the mouse is pressed inside Scintilla, it is captured so future mouse movement events are + sent to Scintilla. This behaviour may be turned off with + SCI_SETMOUSEDOWNCAPTURES(0).

      + +

      SCI_SETMOUSEWHEELCAPTURES(bool captures)
      + SCI_GETMOUSEWHEELCAPTURES → bool
      + On Windows, Scintilla captures all WM_MOUSEWHEEL messages if it has the + focus, even if the mouse pointer is nowhere near the Scintilla editor window. This + behavior can be changed with SCI_SETMOUSEWHEELCAPTURES(0) so that + Scintilla passes the WM_MOUSEWHEEL messages to its parent window. + Scintilla will still react to the mouse wheel if the mouse pointer is over + the editor window.

      + +

      Line endings

      + +

      Scintilla can handle the major line end conventions and, depending on settings and + the current lexer also support additional Unicode line ends.

      + +

      Scintilla can interpret any of the Macintosh (\r), Unix (\n) and Windows (\r\n) + line ends. + When the user presses the Enter key, one of these line + end strings is inserted into the buffer. The default is \r\n in Windows and \n in Unix, but + this can be changed with the SCI_SETEOLMODE message. You can also convert the + entire document to one of these line endings with SCI_CONVERTEOLS. Finally, you + can choose to display the line endings with SCI_SETVIEWEOL.

      + +

      For the UTF-8 encoding, three additional Unicode line ends, + Next Line (NEL=U+0085), Line Separator (LS=U+2028), and Paragraph Separator (PS=U+2029) + may optionally be interpreted when Unicode line ends is turned on and the current lexer also supports + Unicode line ends.

      + + SCI_SETEOLMODE(int eolMode)
      + SCI_GETEOLMODE → int
      + SCI_CONVERTEOLS(int eolMode)
      + SCI_SETVIEWEOL(bool visible)
      + SCI_GETVIEWEOL → bool
      + + SCI_GETLINEENDTYPESSUPPORTED → int
      + SCI_SETLINEENDTYPESALLOWED(int lineEndBitSet)
      + SCI_GETLINEENDTYPESALLOWED → int
      + SCI_GETLINEENDTYPESACTIVE → int
      + +

      SCI_SETEOLMODE(int eolMode)
      + SCI_GETEOLMODE → int
      + SCI_SETEOLMODE sets the characters that are added into the document when the user + presses the Enter key. You can set eolMode to one of SC_EOL_CRLF (0), + SC_EOL_CR (1), or SC_EOL_LF (2). The SCI_GETEOLMODE + message retrieves the current state.

      + +

      SCI_CONVERTEOLS(int eolMode)
      + This message changes all the end of line characters in the document to match + eolMode. Valid values are: SC_EOL_CRLF (0), SC_EOL_CR + (1), or SC_EOL_LF (2).

      + +

      SCI_SETVIEWEOL(bool visible)
      + SCI_GETVIEWEOL → bool
      + Normally, the end of line characters are hidden, but SCI_SETVIEWEOL allows you to + display (or hide) them by setting visible true (or + false). The visible rendering of the end of line characters is similar to + (CR), (LF), or (CR)(LF). SCI_GETVIEWEOL + returns the current state.

      + +

      SCI_GETLINEENDTYPESSUPPORTED → int
      + SCI_GETLINEENDTYPESSUPPORTED reports the different types of line ends supported + by the current lexer. This is a bit set although there is currently only a single choice + with either SC_LINE_END_TYPE_DEFAULT (0) or SC_LINE_END_TYPE_UNICODE (1). + These values are also used by the other messages concerned with Unicode line ends.

      + +

      SCI_SETLINEENDTYPESALLOWED(int lineEndBitSet)
      + SCI_GETLINEENDTYPESALLOWED → int
      + By default, only the ASCII line ends are interpreted. Unicode line ends may be requested with + SCI_SETLINEENDTYPESALLOWED(SC_LINE_END_TYPE_UNICODE) + but this will be ineffective unless the lexer also allows you Unicode line ends. + SCI_GETLINEENDTYPESALLOWED returns the current state.

      + +

      SCI_GETLINEENDTYPESACTIVE → int
      + SCI_GETLINEENDTYPESACTIVE reports the set of line ends currently interpreted + by Scintilla. It is SCI_GETLINEENDTYPESSUPPORTED & SCI_GETLINEENDTYPESALLOWED.

      + +

      Words

      + +

      There is support for selecting, navigating by, and searching for words.

      + +

      + Words are contiguous sequences of characters from a particular set of characters. + 4 categories define words: word, whitespace, punctuation, and line ends with each category + having a role in word functions. + Double clicking selects the word at that point, which may be a sequence of word, punctuation, + or whitespace bytes. + Line ends are not selected by double clicking but do act as word separators. +

      + +

      Words are defined in terms of characters and the sets of characters in each category can be customized to an extent. + The NUL character (0) is always a space as the APIs to set categories use NUL-terminated strings. + For single-byte encodings a category may be assigned to any character (1 to 0xFF). + For multi-byte encodings a category may be assigned to characters from 1 to 0x7F with static behaviour from 0x80. + For UTF-8, characters from 0x80 will use a category based on their Unicode general category. + For Asian encodings, code pages 932, 936, 949, 950, and 1361, characters from 0x80 are treated as word characters. +

      + +

      Identifiers in programming languages are often sequences of words with capitalisation + (aCamelCaseIdentifier) or underscores (an_under_bar_ident) used to mark word boundaries. + The SCI_WORDPART* commands are used for moving between word parts: + SCI_WORDPARTLEFT, + SCI_WORDPARTLEFTEXTEND, + SCI_WORDPARTRIGHT, and + SCI_WORDPARTRIGHTEXTEND. +

      + + SCI_WORDENDPOSITION(int pos, bool onlyWordCharacters) → int
      + SCI_WORDSTARTPOSITION(int pos, bool onlyWordCharacters) → int
      + SCI_ISRANGEWORD(int start, int end) → bool
      + + SCI_SETWORDCHARS(<unused>, const char *characters)
      + SCI_GETWORDCHARS(<unused>, char *characters) → int
      + SCI_SETWHITESPACECHARS(<unused>, const char *characters)
      + SCI_GETWHITESPACECHARS(<unused>, char *characters) → int
      + SCI_SETPUNCTUATIONCHARS(<unused>, const char *characters)
      + SCI_GETPUNCTUATIONCHARS(<unused>, char *characters) → int
      + SCI_SETCHARSDEFAULT
      + +

      SCI_WORDENDPOSITION(int pos, bool onlyWordCharacters) → int
      + SCI_WORDSTARTPOSITION(int pos, bool onlyWordCharacters) → int
      + These messages return the start and end of words using the same definition of words as used + internally within Scintilla. You can set your own list of characters that count as words with + SCI_SETWORDCHARS. The position + sets the start or the search, which is forwards when searching for the end and backwards when + searching for the start.

      + +

      SCI_ISRANGEWORD(int start, int end) → bool
      + Is the range start..end a word or set of words? This message checks that start is at a word start transition and that + end is at a word end transition. It does not check whether there are any spaces inside the range.

      + + SCI_ISRANGEWORD(int start, int end) → bool
      + +

      Set onlyWordCharacters to true (1) to stop searching at the first + non-word character in the search direction. If onlyWordCharacters is + false (0), the first character in the search direction sets the type of the search + as word or non-word and the search stops at the first non-matching character. Searches are also + terminated by the start or end of the document.

      + +

      If "w" represents word characters and "." represents non-word characters and "|" represents + the position and true or false is the state of + onlyWordCharacters:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Initial stateend, trueend, falsestart, truestart, false
      ..ww..|..ww....ww..|..ww....ww....|ww....ww..|..ww....ww|....ww..
      ....ww|ww........wwww|........wwww|........|wwww........|wwww....
      ..ww|....ww....ww|....ww....ww....|ww....|ww....ww....|ww....ww..
      ..ww....|ww....ww....ww|....ww....ww|....ww....|ww....ww|....ww..
      + +

      SCI_SETWORDCHARS(<unused>, const char *characters)
      + This message defines which characters are members of the word category. + The character categories are set to default values before processing this function. + For example, if you don't allow '_' in your set of characters + use:
      + SCI_SETWORDCHARS(0, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789");

      + +

      SCI_GETWORDCHARS(<unused>, char *characters) → int
      + This fills the characters parameter with all the characters included in words. + The characters parameter must be large enough to hold all of the characters. + If the characters parameter is 0 then the length that should be allocated + to store the entire set is returned.

      + +

      For multi-byte encodings, this API will not return meaningful values for 0x80 and above.

      + +

      SCI_SETWHITESPACECHARS(<unused>, const char *characters)
      + SCI_GETWHITESPACECHARS(<unused>, char *characters) → int
      + Similar to SCI_SETWORDCHARS, this message allows the user to define which chars Scintilla considers + as whitespace. Setting the whitespace chars allows the user to fine-tune Scintilla's behaviour doing + such things as moving the cursor to the start or end of a word; for example, by defining punctuation chars + as whitespace, they will be skipped over when the user presses ctrl+left or ctrl+right. + This function should be called after SCI_SETWORDCHARS as it will + reset the whitespace characters to the default set. + SCI_GETWHITESPACECHARS behaves similarly to SCI_GETWORDCHARS.

      + +

      SCI_SETPUNCTUATIONCHARS(<unused>, const char *characters)
      + SCI_GETPUNCTUATIONCHARS(<unused>, char *characters) → int
      + Similar to SCI_SETWORDCHARS and SCI_SETWHITESPACECHARS, this message + allows the user to define which chars Scintilla considers as punctuation. + SCI_GETPUNCTUATIONCHARS behaves similarly to SCI_GETWORDCHARS.

      + +

      SCI_SETCHARSDEFAULT
      + Use the default sets of word and whitespace characters. This sets whitespace to space, tab and other + characters with codes less than 0x20, with word characters set to alphanumeric and '_'. +

      + +

      Word keyboard commands are:

      +
        +
      • SCI_WORDLEFT
      • +
      • SCI_WORDLEFTEXTEND
      • +
      • SCI_WORDRIGHT
      • +
      • SCI_WORDRIGHTEXTEND
      • +
      • SCI_WORDLEFTEND
      • +
      • SCI_WORDLEFTENDEXTEND
      • +
      • SCI_WORDRIGHTEND
      • +
      • SCI_WORDRIGHTENDEXTEND
      • +
      • SCI_WORDPARTLEFT
      • +
      • SCI_WORDPARTLEFTEXTEND
      • +
      • SCI_WORDPARTRIGHT
      • +
      • SCI_WORDPARTRIGHTEXTEND
      • +
      • SCI_DELWORDLEFT
      • +
      • SCI_DELWORDRIGHT
      • +
      • SCI_DELWORDRIGHTEND
      • +
      + +

      Styling

      + +

      The styling messages allow you to assign styles to text. If your styling needs can be met by + one of the standard lexers, or if you can write your own, then a lexer is probably the easiest + way to style your document. If you choose to use the container to do the styling you can use + the SCI_SETLEXER command to select + SCLEX_CONTAINER, in which case the container is sent a SCN_STYLENEEDED notification each time text needs styling for display. As another + alternative, you might use idle time to style the document. Even if you use a lexer, you might + use the styling commands to mark errors detected by a compiler. The following commands can be + used.

      + SCI_GETENDSTYLED → position
      + SCI_STARTSTYLING(int start, int unused)
      + SCI_SETSTYLING(int length, int style)
      + SCI_SETSTYLINGEX(int length, const char + *styles)
      + SCI_SETIDLESTYLING(int idleStyling)
      + SCI_GETIDLESTYLING → int
      + SCI_SETLINESTATE(int line, int state)
      + SCI_GETLINESTATE(int line) → int
      + SCI_GETMAXLINESTATE → int
      +
      + +

      SCI_GETENDSTYLED → position
      + Scintilla keeps a record of the last character that is likely to be styled correctly. This is + moved forwards when characters after it are styled and moved backwards if changes are made to + the text of the document before it. Before drawing text, this position is checked to see if any + styling is needed and, if so, a SCN_STYLENEEDED notification message is sent to the + container. The container can send SCI_GETENDSTYLED to work out where it needs to + start styling. Scintilla will always ask to style whole lines.

      + +

      SCI_STARTSTYLING(int start, int unused)
      + This prepares for styling by setting the styling position start to start at. + The unused argument was used in earlier versions but is now ignored. + After + SCI_STARTSTYLING, send multiple SCI_SETSTYLING messages for each + lexical entity to style or send SCI_SETSTYLINGEX to style in blocks.

      + +

      SCI_SETSTYLING(int length, int style)
      + This message sets the style of length characters starting at the styling position + and then increases the styling position by length, ready for the next call. + SCI_STARTSTYLING should be called before the first call to this. +

      + +

      SCI_SETSTYLINGEX(int length, const char *styles)
      + As an alternative to SCI_SETSTYLING, which applies the same style to each byte, + you can use this message which specifies the styles for each of length bytes from + the styling position and then increases the styling position by length, ready for + the next call. + SCI_STARTSTYLING should be called before the first call to this. +

      + +

      SCI_SETIDLESTYLING(int idleStyling)
      + SCI_GETIDLESTYLING → int
      + By default, SC_IDLESTYLING_NONE (0), + syntax styling is performed for all the currently visible text before displaying it. + On very large files, this may make scrolling down slow. + With SC_IDLESTYLING_TOVISIBLE (1), + a small amount of styling is performed before display and then + further styling is performed incrementally in the background as an idle-time task. + This may result in the text initially appearing uncoloured and then, some time later, it is coloured. + Text after the currently visible portion may be styled in the background with SC_IDLESTYLING_AFTERVISIBLE (2). + To style both before and after the visible text in the background use SC_IDLESTYLING_ALL (3). +

      +

      + Since wrapping also needs to perform styling and also uses idle time, this setting has no effect when + the document is displayed wrapped. +

      + +

      SCI_SETLINESTATE(int line, int state)
      + SCI_GETLINESTATE(int line) → int
      + As well as the 8 bits of lexical state stored for each character there is also an integer + stored for each line. This can be used for longer lived parse states such as what the current + scripting language is in an ASP page. Use SCI_SETLINESTATE to set the integer + value and SCI_GETLINESTATE to get the value. + Changing the value produces a SC_MOD_CHANGELINESTATE notification. +

      + +

      SCI_GETMAXLINESTATE → int
      + This returns the last line that has any line state.

      + +

      Style definition

      + +

      While the style setting messages mentioned above change the style numbers associated with + text, these messages define how those style numbers are interpreted visually. There are 256 + lexer styles that can be set, numbered 0 to STYLE_MAX (255). + There are also some + predefined numbered styles starting at 32, The following STYLE_* constants are + defined.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      STYLE_DEFAULT32This style defines the attributes that all styles receive when the + SCI_STYLECLEARALL message is used.
      STYLE_LINENUMBER33This style sets the attributes of the text used to display line numbers in a line + number margin. The background colour set for this style also sets the background colour + for all margins that do not have any folding mask bits set. That is, any margin for which + mask & SC_MASK_FOLDERS is 0. See SCI_SETMARGINMASKN for more about masks.
      STYLE_BRACELIGHT34This style sets the attributes used when highlighting braces with the SCI_BRACEHIGHLIGHT message and + when highlighting the corresponding indentation with SCI_SETHIGHLIGHTGUIDE.
      STYLE_BRACEBAD35This style sets the display attributes used when marking an unmatched brace with the + SCI_BRACEBADLIGHT + message.
      STYLE_CONTROLCHAR36This style sets the font used when drawing control characters. + Only the font, size, bold, italics, and character set attributes are used and not + the colour attributes. See + also: SCI_SETCONTROLCHARSYMBOL.
      STYLE_INDENTGUIDE37This style sets the foreground and background colours used when drawing the + indentation guides.
      STYLE_CALLTIP38 Call tips normally use the font attributes defined by STYLE_DEFAULT. + Use of SCI_CALLTIPUSESTYLE + causes call tips to use this style instead. Only the font face name, font size, + foreground and background colours and character set attributes are used.
      STYLE_FOLDDISPLAYTEXT39This is the style used for drawing text tags attached to folded text.
      STYLE_LASTPREDEFINED39To make it easier for client code to discover the range of styles that are + predefined, this is set to the style number of the last predefined style.
      STYLE_MAX255This is not a style but is the number of the maximum style that can be set. Styles + between STYLE_LASTPREDEFINED and STYLE_MAX may be used.
      + +

      For each style you can set the font name, size and use of bold, italic and underline, + foreground and background colour and the character set. You can also choose to hide text with a + given style, display all characters as upper or lower case and fill from the last character on + a line to the end of the line (for embedded languages). There is also an experimental attribute + to make text read-only.

      + +

      It is entirely up to you how you use styles. If you want to use syntax colouring you might + use style 0 for white space, style 1 for numbers, style 2 for keywords, style 3 for strings, + style 4 for preprocessor, style 5 for operators, and so on.

      + SCI_STYLERESETDEFAULT
      + SCI_STYLECLEARALL
      + SCI_STYLESETFONT(int style, const char + *fontName)
      + SCI_STYLEGETFONT(int style, char *fontName) → int
      + SCI_STYLESETSIZE(int style, int + sizePoints)
      + SCI_STYLEGETSIZE(int style) → int
      + SCI_STYLESETSIZEFRACTIONAL(int style, int + sizeHundredthPoints)
      + SCI_STYLEGETSIZEFRACTIONAL(int style) → int
      + SCI_STYLESETBOLD(int style, bool + bold)
      + SCI_STYLEGETBOLD(int style) → bool
      + SCI_STYLESETWEIGHT(int style, int + weight)
      + SCI_STYLEGETWEIGHT(int style) → int
      + SCI_STYLESETITALIC(int style, bool + italic)
      + SCI_STYLEGETITALIC(int style) → bool
      + SCI_STYLESETUNDERLINE(int style, bool + underline)
      + SCI_STYLEGETUNDERLINE(int style) → bool
      + SCI_STYLESETFORE(int style, colour fore)
      + SCI_STYLEGETFORE(int style) → colour
      + SCI_STYLESETBACK(int style, colour back)
      + SCI_STYLEGETBACK(int style) → colour
      + SCI_STYLESETEOLFILLED(int style, bool + eolFilled)
      + SCI_STYLEGETEOLFILLED(int style) → bool
      + SCI_STYLESETCHARACTERSET(int style, + int characterSet)
      + SCI_STYLEGETCHARACTERSET(int style) → int
      + SCI_STYLESETCASE(int style, int + caseVisible)
      + SCI_STYLEGETCASE(int style) → int
      + SCI_STYLESETVISIBLE(int style, bool + visible)
      + SCI_STYLEGETVISIBLE(int style) → bool
      + SCI_STYLESETCHANGEABLE(int style, bool + changeable)
      + SCI_STYLEGETCHANGEABLE(int style) → bool
      + SCI_STYLESETHOTSPOT(int style, bool + hotspot)
      + SCI_STYLEGETHOTSPOT(int style) → bool
      +
      + +

      SCI_STYLERESETDEFAULT
      + This message resets STYLE_DEFAULT to its state when Scintilla was + initialised.

      + +

      SCI_STYLECLEARALL
      + This message sets all styles to have the same attributes as STYLE_DEFAULT. If you + are setting up Scintilla for syntax colouring, it is likely that the lexical styles you set + will be very similar. One way to set the styles is to:
      + 1. Set STYLE_DEFAULT to the common features of all styles.
      + 2. Use SCI_STYLECLEARALL to copy this to all styles.
      + 3. Set the style attributes that make your lexical styles different.

      + +

      SCI_STYLESETFONT(int style, const char *fontName)
      + SCI_STYLEGETFONT(int style, char *fontName NUL-terminated) → int
      + SCI_STYLESETSIZE(int style, int sizePoints)
      + SCI_STYLEGETSIZE(int style) → int
      + SCI_STYLESETSIZEFRACTIONAL(int style, int sizeHundredthPoints)
      + SCI_STYLEGETSIZEFRACTIONAL(int style) → int
      + SCI_STYLESETBOLD(int style, bool bold)
      + SCI_STYLEGETBOLD(int style) → bool
      + SCI_STYLESETWEIGHT(int style, int weight)
      + SCI_STYLEGETWEIGHT(int style) → int
      + SCI_STYLESETITALIC(int style, bool italic)
      + SCI_STYLEGETITALIC(int style) → bool
      + These messages (plus SCI_STYLESETCHARACTERSET) set the font + attributes that are used to match the fonts you request to those available.

      +

      The + fontName is a zero terminated string holding the name of a font. Under Windows, + only the first 32 characters of the name are used, the name is decoded as UTF-8, and the name is not case sensitive. For + internal caching, Scintilla tracks fonts by name and does care about the casing of font names, + so please be consistent. + On GTK+, Pango is used to display text and the name is sent directly to Pango without transformation. + On Qt, the name is decoded as UTF-8. + On Cocoa, the name is decoded as MacRoman.

      +

      Sizes can be set to a whole number of points with SCI_STYLESETSIZE + or to a fractional point size in hundredths of a point with SCI_STYLESETSIZEFRACTIONAL + by multiplying the size by 100 (SC_FONT_SIZE_MULTIPLIER). + For example, a text size of 9.4 points is set with SCI_STYLESETSIZEFRACTIONAL(<style>, 940). +

      +

      The weight or boldness of a font can be set with SCI_STYLESETBOLD + or SCI_STYLESETWEIGHT. The weight is a number between 1 and 999 with 1 being very light + and 999 very heavy. While any value can be used, fonts often only support between 2 and 4 weights with three weights + being common enough to have symbolic names: + SC_WEIGHT_NORMAL (400), + SC_WEIGHT_SEMIBOLD (600), and + SC_WEIGHT_BOLD (700). + The SCI_STYLESETBOLD message takes a boolean argument with 0 choosing SC_WEIGHT_NORMAL + and 1 SC_WEIGHT_BOLD. +

      + +

      SCI_STYLESETUNDERLINE(int style, bool + underline)
      + SCI_STYLEGETUNDERLINE(int style) → bool
      + You can set a style to be underlined. The underline is drawn in the foreground colour. All + characters with a style that includes the underline attribute are underlined, even if they are + white space.

      + +

      SCI_STYLESETFORE(int style, colour fore)
      + SCI_STYLEGETFORE(int style) → colour
      + SCI_STYLESETBACK(int style, colour back)
      + SCI_STYLEGETBACK(int style) → colour
      + Text is drawn in the foreground colour. The space in each character cell that is not occupied + by the character is drawn in the background colour.

      + +

      SCI_STYLESETEOLFILLED(int style, bool + eolFilled)
      + SCI_STYLEGETEOLFILLED(int style) → bool
      + If the last character in the line has a style with this attribute set, the remainder of the + line up to the right edge of the window is filled with the background colour set for the last + character. This is useful when a document contains embedded sections in another language such + as HTML pages with embedded JavaScript. By setting eolFilled to true + and a consistent background colour (different from the background colour set for the HTML + styles) to all JavaScript styles then JavaScript sections will be easily distinguished from + HTML.

      + +

      SCI_STYLESETCHARACTERSET(int style, int + characterSet)
      + SCI_STYLEGETCHARACTERSET(int style) → int
      + You can set a style to use a different character set than the default. The places where such + characters sets are likely to be useful are comments and literal strings. For example, + SCI_STYLESETCHARACTERSET(SCE_C_STRING, SC_CHARSET_RUSSIAN) would ensure that + strings in Russian would display correctly in C and C++ (SCE_C_STRING is the style + number used by the C and C++ lexer to display literal strings; it has the value 6). This + feature works differently on Windows and GTK+.
      + The default character set is SC_CHARSET_DEFAULT.

      +

      SC_CHARSET_ANSI and SC_CHARSET_DEFAULT specify European Windows code page 1252 unless the code page is set.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Character SetWindowsGTK+Cocoa
      SC_CHARSET_ANSI✓ (8859-1)
      SC_CHARSET_ARABIC
      SC_CHARSET_BALTIC
      SC_CHARSET_CHINESEBIG5
      SC_CHARSET_DEFAULT✓ (8859-1)✓ (8859-1)
      SC_CHARSET_EASTEUROPE
      SC_CHARSET_GB2312
      SC_CHARSET_GREEK
      SC_CHARSET_HANGUL
      SC_CHARSET_HEBREW
      SC_CHARSET_JOHAB
      SC_CHARSET_MAC
      SC_CHARSET_OEM
      SC_CHARSET_RUSSIAN✓ (cp1251)✓ (koi8-r)✓ (cp1251)
      SC_CHARSET_SHIFTJIS
      SC_CHARSET_SYMBOL
      SC_CHARSET_THAI
      SC_CHARSET_TURKISH
      SC_CHARSET_VIETNAMESE
      SC_CHARSET_OEM866✓ (cp866)
      SC_CHARSET_CYRILLIC✓ (cp1251)✓ (cp1251)
      SC_CHARSET_8859_15
      + +

      SCI_STYLESETCASE(int style, int caseVisible)
      + SCI_STYLEGETCASE(int style) → int
      + The value of caseVisible determines how text is displayed. You can set upper case + (SC_CASE_UPPER, 1) or lower case (SC_CASE_LOWER, 2) or camel case (SC_CASE_CAMEL, 3) + or display normally (SC_CASE_MIXED, 0). This does not change the stored text, only how it is + displayed.

      + +

      SCI_STYLESETVISIBLE(int style, bool visible)
      + SCI_STYLEGETVISIBLE(int style) → bool
      + Text is normally visible. However, you can completely hide it by giving it a style with the + visible set to 0. This could be used to hide embedded formatting instructions or + hypertext keywords in HTML or XML. + Invisible text may not be deleted by user actions but the application may delete invisible text by calling + SCI_DELETERANGE.

      + +

      SCI_STYLESETCHANGEABLE(int style, bool + changeable)
      + SCI_STYLEGETCHANGEABLE(int style) → bool
      + This is an experimental and incompletely implemented style attribute. The default setting is + changeable set true but when set false it makes text + read-only. The user can not move the caret within not-changeable text and not-changeable + text may not be deleted by the user. + The application may delete not-changeable text by calling + SCI_DELETERANGE.

      + +

      SCI_STYLESETHOTSPOT(int style, bool + hotspot)
      + SCI_STYLEGETHOTSPOT(int style) → bool
      + This style is used to mark ranges of text that can detect mouse clicks. + The cursor changes to a hand over hotspots, and the foreground, and background colours + may change and an underline appear to indicate that these areas are sensitive to clicking. + This may be used to allow hyperlinks to other documents.

      + +

      Caret, selection, and hotspot styles

      + +

      The selection is shown by changing the foreground and/or background colours. If one of these + is not set then that attribute is not changed for the selection. The default is to show the + selection by changing the background to light grey and leaving the foreground the same as when + it was not selected. When there is no selection, the current insertion point is marked by the + text caret. This is a vertical line that is normally blinking on and off to attract the users + attention.

      + SCI_SETSELFORE(bool useSetting, colour fore)
      + SCI_SETSELBACK(bool useSetting, colour back)
      + SCI_SETSELALPHA(alpha alpha)
      + SCI_GETSELALPHA → int
      + SCI_SETSELEOLFILLED(bool filled)
      + SCI_GETSELEOLFILLED → bool
      + SCI_SETCARETFORE(colour fore)
      + SCI_GETCARETFORE → colour
      + SCI_SETCARETLINEVISIBLE(bool show)
      + SCI_GETCARETLINEVISIBLE → bool
      + SCI_SETCARETLINEBACK(colour back)
      + SCI_GETCARETLINEBACK → colour
      + SCI_SETCARETLINEBACKALPHA(alpha alpha)
      + SCI_GETCARETLINEBACKALPHA → int
      + SCI_SETCARETLINEFRAME(int width)
      + SCI_GETCARETLINEFRAME → int
      + SCI_SETCARETLINEVISIBLEALWAYS(bool alwaysVisible)
      + SCI_GETCARETLINEVISIBLEALWAYS → bool
      + SCI_SETCARETPERIOD(int periodMilliseconds)
      + SCI_GETCARETPERIOD → int
      + SCI_SETCARETSTYLE(int caretStyle)
      + SCI_GETCARETSTYLE → int
      + SCI_SETCARETWIDTH(int pixelWidth)
      + SCI_GETCARETWIDTH → int
      + SCI_SETHOTSPOTACTIVEFORE(bool useSetting, colour fore)
      + SCI_GETHOTSPOTACTIVEFORE → colour
      + SCI_SETHOTSPOTACTIVEBACK(bool useSetting, colour back)
      + SCI_GETHOTSPOTACTIVEBACK → colour
      + SCI_SETHOTSPOTACTIVEUNDERLINE(bool underline)
      + SCI_GETHOTSPOTACTIVEUNDERLINE → bool
      + SCI_SETHOTSPOTSINGLELINE(bool singleLine)
      + SCI_GETHOTSPOTSINGLELINE → bool
      + SCI_SETCARETSTICKY(int useCaretStickyBehaviour)
      + SCI_GETCARETSTICKY → int
      + SCI_TOGGLECARETSTICKY
      +
      + +

      SCI_SETSELFORE(bool useSetting, colour fore)
      + SCI_SETSELBACK(bool useSetting, colour back)
      + You can choose to override the default selection colouring with these two messages. The colour + you provide is used if you set useSelection*Colour to true. If it is + set to false, the default styled colouring is used and the + fore or back + argument has no effect.

      +

      SCI_SETSELALPHA(alpha alpha)
      + SCI_GETSELALPHA → int
      + The selection can be drawn translucently in the selection background colour by + setting an alpha value.

      + +

      SCI_SETSELEOLFILLED(bool filled)
      + SCI_GETSELEOLFILLED → bool
      + The selection can be drawn up to the right hand border by setting this property.

      + +

      SCI_SETCARETFORE(colour fore)
      + SCI_GETCARETFORE → colour
      + The colour of the caret can be set with SCI_SETCARETFORE and retrieved with + SCI_GETCARETFORE.

      + +

      SCI_SETCARETLINEVISIBLE(bool show)
      + SCI_GETCARETLINEVISIBLE → bool
      + SCI_SETCARETLINEBACK(colour back)
      + SCI_GETCARETLINEBACK → colour
      + SCI_SETCARETLINEBACKALPHA(alpha alpha)
      + SCI_GETCARETLINEBACKALPHA → int
      + SCI_SETCARETLINEFRAME(int width)
      + SCI_GETCARETLINEFRAME → int
      + You can choose to make the background colour of the line containing the caret different with + these messages. To do this, set the desired background colour with + SCI_SETCARETLINEBACK, then use SCI_SETCARETLINEVISIBLE(true) to + enable the effect. You can cancel the effect with SCI_SETCARETLINEVISIBLE(false). + The two SCI_GETCARET* functions return the state and the colour. This form of + background colouring has highest priority when a line has markers that would otherwise change + the background colour. + The caret line may also be drawn translucently which allows other background colours to show + through. This is done by setting the alpha (translucency) value by calling + SCI_SETCARETLINEBACKALPHA. When the alpha is not SC_ALPHA_NOALPHA, + the caret line is drawn after all other features so will affect the colour of all other features. + Alternatively SCI_SETCARETLINEFRAME can be used to display the caret line framed + instead of filling the whole background. Set width != 0 to enable this option and width = 0 to disable it. +

      + +

      SCI_SETCARETLINEVISIBLEALWAYS(bool alwaysVisible)
      + SCI_GETCARETLINEVISIBLEALWAYS → bool
      + Choose to make the caret line always visible even when the window is not in focus. + Default behaviour SCI_SETCARETLINEVISIBLEALWAYS(false) the caret line is only visible when the window is in focus. +

      + +

      SCI_SETCARETPERIOD(int periodMilliseconds)
      + SCI_GETCARETPERIOD → int
      + The rate at which the caret blinks can be set with SCI_SETCARETPERIOD which + determines the time in milliseconds that the caret is visible or invisible before changing + state. Setting the period to 0 stops the caret blinking. The default value is 500 milliseconds. + SCI_GETCARETPERIOD returns the current setting.

      + +

      SCI_SETCARETSTYLE(int caretStyle)
      + SCI_GETCARETSTYLE → int
      + The style of the caret can be set with SCI_SETCARETSTYLE to be a line caret + (CARETSTYLE_LINE=1), a block caret (CARETSTYLE_BLOCK=2) or to not draw at all + (CARETSTYLE_INVISIBLE=0). The default value is the line caret (CARETSTYLE_LINE=1). + You can determine the current caret style setting using SCI_GETCARETSTYLE.

      + +

      The block character draws most combining and multibyte character sequences successfully, + though some fonts like Thai Fonts (and possibly others) can sometimes appear strange when + the cursor is positioned at these characters, which may result in only drawing a part of the + cursor character sequence. This is most notable on Windows platforms.

      + +

      SCI_SETCARETWIDTH(int pixelWidth)
      + SCI_GETCARETWIDTH → int
      + The width of the line caret can be set with SCI_SETCARETWIDTH to a value of + 0, 1, 2 or 3 pixels. The default width is 1 pixel. You can read back the current width with + SCI_GETCARETWIDTH. A width of 0 makes the caret invisible (added at version + 1.50), similar to setting the caret style to CARETSTYLE_INVISIBLE (though not interchangeable). + This setting only affects the width of the cursor when the cursor style is set to line caret + mode, it does not affect the width for a block caret.

      + +

      SCI_SETHOTSPOTACTIVEFORE(bool useSetting, colour fore)
      + SCI_GETHOTSPOTACTIVEFORE → colour
      + SCI_SETHOTSPOTACTIVEBACK(bool useSetting, + colour back)
      + SCI_GETHOTSPOTACTIVEBACK → colour
      + SCI_SETHOTSPOTACTIVEUNDERLINE(bool underline)
      + SCI_GETHOTSPOTACTIVEUNDERLINE → bool
      + SCI_SETHOTSPOTSINGLELINE(bool singleLine)
      + SCI_GETHOTSPOTSINGLELINE → bool
      + While the cursor hovers over text in a style with the hotspot attribute set, + the default colouring can be modified and an underline drawn with these settings. + Single line mode stops a hotspot from wrapping onto next line.

      + +

      SCI_SETCARETSTICKY(int useCaretStickyBehaviour)
      + SCI_GETCARETSTICKY → int
      + SCI_TOGGLECARETSTICKY
      + These messages set, get or toggle the caretSticky setting which controls when the last position + of the caret on the line is saved.

      + +

      When set to SC_CARETSTICKY_OFF (0), the sticky flag is off; all text changes + (and all caret position changes) will remember the + caret's new horizontal position when moving to different lines. This is the default.

      + +

      When set to SC_CARETSTICKY_ON (1), the sticky flag is on, and the only thing which will cause the editor to remember the + horizontal caret position is moving the caret with mouse or keyboard (left/right arrow keys, home/end keys, etc).

      + +

      When set to SC_CARETSTICKY_WHITESPACE (2), the caret acts like mode 0 (sticky off) except under one + special case; when space or tab characters are inserted. (Including pasting only space/tabs -- undo, redo, + etc. do not exhibit this behaviour..).

      + +

      SCI_TOGGLECARETSTICKY switches from SC_CARETSTICKY_ON and SC_CARETSTICKY_WHITESPACE + to SC_CARETSTICKY_OFF and from SC_CARETSTICKY_OFF to SC_CARETSTICKY_ON.

      + +

      Character representations

      + +

      Some characters, such as control characters and invalid bytes, do not have a visual glyph or use a glyph that is hard to distinguish.

      + +

      Control characters (characters with codes less than 32, or between 128 and 159 in some encodings) + are displayed by Scintilla using their mnemonics inverted in a rounded rectangle. These mnemonics come from the + early days of signalling, though some are still used (LF = Line Feed, BS = Back Space, CR = + Carriage Return, for example).

      + +

      For the low 'C0' values: "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL", + "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI", "DLE", "DC1", "DC2", "DC3", "DC4", "NAK", + "SYN", "ETB", "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US".

      + +

      For the high 'C1' values: + "PAD", "HOP", "BPH", "NBH", "IND", "NEL", "SSA", "ESA", + "HTS", "HTJ", "VTS", "PLD", "PLU", "RI", "SS2", "SS3", + "DCS", "PU1", "PU2", "STS", "CCH", "MW", "SPA", "EPA", + "SOS", "SGCI", "SCI", "CSI", "ST", "OSC", "PM", "APC".

      + +

      Invalid bytes are shown in a similar way with an 'x' followed by their value in hexadecimal, like "xFE".

      + + + SCI_SETREPRESENTATION(const char *encodedCharacter, const char *representation)
      + SCI_GETREPRESENTATION(const char *encodedCharacter, char *representation) → int
      + SCI_CLEARREPRESENTATION(const char *encodedCharacter)
      + SCI_SETCONTROLCHARSYMBOL(int symbol)
      + SCI_GETCONTROLCHARSYMBOL → int
      +
      + +

      SCI_SETREPRESENTATION(const char *encodedCharacter, const char *representation)
      + SCI_GETREPRESENTATION(const char *encodedCharacter, char *representation NUL-terminated) → int
      + SCI_CLEARREPRESENTATION(const char *encodedCharacter)
      + Any character, including those normally displayed as mnemonics may be represented by a + string inverted in a rounded rectangle.

      + +

      For example, the Ohm sign Ω U+2126 looks very similar to the Greek Omega character Ω U+03C9 so, + for the UTF-8 encoding, to distinguish the Ohm sign as "U+2126 Ω" this call could be made: + SCI_SETREPRESENTATION("\xe2\x84\xa6", "U+2126 \xe2\x84\xa6")

      + +

      The encodedCharacter parameter is a NUL-terminated string of the bytes for one character in the + current encoding. This can not be used to set a representation for multiple-character strings.

      + +

      The NUL (0) character is a special case since the encodedCharacter parameter is NUL terminated, the NUL + character is specified as an empty string.

      + +

      SCI_SETCONTROLCHARSYMBOL(int symbol)
      + SCI_GETCONTROLCHARSYMBOL → int
      + The mnemonics may be replaced by a nominated symbol with an ASCII code in the + range 32 to 255. If you set a symbol value less than 32, all control characters are displayed + as mnemonics. The symbol you set is rendered in the font of the style set for the character. + You can read back the current symbol with the SCI_GETCONTROLCHARSYMBOL message. + The default symbol value is 0.

      + +

      Margins

      + +

      There may be multiple margins to the left of the text display plus a gap either side of the text. + 5 margins are allocated initially numbered from 0 to SC_MAX_MARGIN (4) + but this may be changed by calling + SCI_SETMARGINS. + Each margin can be set to display only symbols, line numbers, or text with + SCI_SETMARGINTYPEN. + Textual margins may also display symbols. + The markers + that can be displayed in each margin are set with SCI_SETMARGINMASKN. Any markers not associated with + a visible margin will be displayed as changes in background colour in the text. A width in + pixels can be set for each margin. Margins with a zero width are ignored completely. You can + choose if a mouse click in a margin sends a SCN_MARGINCLICK or SCN_MARGINRIGHTCLICK notification to the container or + selects a line of text.

      + +

      Using a margin number outside the valid range has no + effect. By default, margin 0 is set to display line numbers, but is given a width of 0, so it + is hidden. Margin 1 is set to display non-folding symbols and is given a width of 16 pixels, so + it is visible. Margin 2 is set to display the folding symbols, but is given a width of 0, so it + is hidden. Of course, you can set the margins to be whatever you wish.

      + +

      Styled text margins used to show revision and blame information:

      +

      Styled text margins used to show revision and blame information

      + + + SCI_SETMARGINS(int margins)
      + SCI_GETMARGINS → int
      + SCI_SETMARGINTYPEN(int margin, int marginType)
      + SCI_GETMARGINTYPEN(int margin) → int
      + SCI_SETMARGINWIDTHN(int margin, int + pixelWidth)
      + SCI_GETMARGINWIDTHN(int margin) → int
      + SCI_SETMARGINMASKN(int margin, int + mask)
      + SCI_GETMARGINMASKN(int margin) → int
      + SCI_SETMARGINSENSITIVEN(int margin, bool + sensitive)
      + SCI_GETMARGINSENSITIVEN(int margin) → bool
      + SCI_SETMARGINCURSORN(int margin, int + cursor)
      + SCI_GETMARGINCURSORN(int margin) → int
      + SCI_SETMARGINBACKN(int margin, colour back)
      + SCI_GETMARGINBACKN(int margin) → colour
      + SCI_SETMARGINLEFT(<unused>, int + pixelWidth)
      + SCI_GETMARGINLEFT → int
      + SCI_SETMARGINRIGHT(<unused>, int + pixelWidth)
      + SCI_GETMARGINRIGHT → int
      + SCI_SETFOLDMARGINCOLOUR(bool useSetting, colour back)
      + SCI_SETFOLDMARGINHICOLOUR(bool useSetting, colour fore)
      + SCI_MARGINSETTEXT(int line, const char *text)
      + SCI_MARGINGETTEXT(int line, char *text) → int
      + SCI_MARGINSETSTYLE(int line, int style)
      + SCI_MARGINGETSTYLE(int line) → int
      + SCI_MARGINSETSTYLES(int line, const char *styles)
      + SCI_MARGINGETSTYLES(int line, char *styles) → int
      + SCI_MARGINTEXTCLEARALL
      + SCI_MARGINSETSTYLEOFFSET(int style)
      + SCI_MARGINGETSTYLEOFFSET → int
      + SCI_SETMARGINOPTIONS(int marginOptions)
      + SCI_GETMARGINOPTIONS → int
      +
      + +

      SCI_SETMARGINS(int margins)
      + SCI_GETMARGINS → int
      + Allocate the number of margins or find the number of margins currently allocated.

      + +

      SCI_SETMARGINTYPEN(int margin, int marginType)
      + SCI_GETMARGINTYPEN(int margin) → int
      + These two routines set and get the type of a margin. The margin argument should be 0, 1, 2, 3 or 4. + You can use the predefined constants SC_MARGIN_SYMBOL (0) and + SC_MARGIN_NUMBER (1) to set a margin as either a line number or a symbol margin. + A margin with application defined text may use SC_MARGIN_TEXT (4) or + SC_MARGIN_RTEXT (5) to right justify the text. + By convention, margin 0 is used for line numbers and the next two are used for symbols. You can + also use the constants SC_MARGIN_BACK (2), SC_MARGIN_FORE (3), + and SC_MARGIN_COLOUR (6) for + symbol margins that set their background colour to match the STYLE_DEFAULT background and + foreground colours or a specified colour.

      + +

      SCI_SETMARGINWIDTHN(int margin, int pixelWidth)
      + SCI_GETMARGINWIDTHN(int margin) → int
      + These routines set and get the width of a margin in pixels. A margin with zero width is + invisible. By default, Scintilla sets margin 1 for symbols with a width of 16 pixels, so this + is a reasonable guess if you are not sure what would be appropriate. Line number margins widths + should take into account the number of lines in the document and the line number style. You + could use something like SCI_TEXTWIDTH(STYLE_LINENUMBER, "_99999") to get a + suitable width.

      + +

      SCI_SETMARGINMASKN(int margin, int mask)
      + SCI_GETMARGINMASKN(int margin) → int
      + The mask is a 32-bit value. Each bit corresponds to one of 32 logical symbols that can be + displayed in a margin that is enabled for symbols. There is a useful constant, + SC_MASK_FOLDERS (0xFE000000 or -33554432), that is a mask for the 7 logical + symbols used to denote folding. You can assign a wide range of symbols and colours to each of + the 32 logical symbols, see Markers for more information. If (mask + & SC_MASK_FOLDERS)==0, the margin background colour is controlled by style 33 (STYLE_LINENUMBER).

      + +

      You add logical markers to a line with SCI_MARKERADD. If a line has an associated marker that + does not appear in the mask of any margin with a non-zero width, the marker changes the + background colour of the line. For example, suppose you decide to use logical marker 10 to mark + lines with a syntax error and you want to show such lines by changing the background colour. + The mask for this marker is 1 shifted left 10 times (1<<10) which is 0x400. If you make + sure that no symbol margin includes 0x400 in its mask, any line with the marker gets the + background colour changed.

      + +

      To set a non-folding margin 1 use SCI_SETMARGINMASKN(1, ~SC_MASK_FOLDERS) + which is the default set by Scintilla. + To set a folding margin 2 use SCI_SETMARGINMASKN(2, SC_MASK_FOLDERS). + ~SC_MASK_FOLDERS is 0x1FFFFFF in hexadecimal or 33554431 + decimal. Of course, you may need to display all 32 symbols in a margin, in which case use + SCI_SETMARGINMASKN(margin, -1).

      + +

      SCI_SETMARGINSENSITIVEN(int margin, bool + sensitive)
      + SCI_GETMARGINSENSITIVEN(int margin) → bool
      + Each of the five margins can be set sensitive or insensitive to mouse clicks. A click in a + sensitive margin sends a SCN_MARGINCLICK or SCN_MARGINRIGHTCLICK notification to the container. Margins that are not sensitive act as + selection margins which make it easy to select ranges of lines. By default, all margins are + insensitive.

      + +

      SCI_SETMARGINCURSORN(int margin, int + cursor)
      + SCI_GETMARGINCURSORN(int margin) → int
      + A reversed arrow cursor is normally shown over all margins. This may be changed to a normal arrow with + SCI_SETMARGINCURSORN(margin, SC_CURSORARROW) or restored to a + reversed arrow with + SCI_SETMARGINCURSORN(margin, SC_CURSORREVERSEARROW).

      +

      SCI_SETMARGINBACKN(int margin, colour back)
      + SCI_GETMARGINBACKN(int margin) → colour
      + A margin of type SC_MARGIN_COLOUR + may have its colour set with SCI_SETMARGINBACKN.

      + +

      SCI_SETMARGINLEFT(<unused>, int pixelWidth)
      + SCI_GETMARGINLEFT → int
      + SCI_SETMARGINRIGHT(<unused>, int pixelWidth)
      + SCI_GETMARGINRIGHT → int
      + These messages set and get the width of the blank margin on both sides of the text in pixels. + The default is to one pixel on each side.

      + +

      SCI_SETFOLDMARGINCOLOUR(bool useSetting, colour back)
      + SCI_SETFOLDMARGINHICOLOUR(bool useSetting, colour fore)
      + These messages allow changing the colour of the fold margin and fold margin highlight. + On Windows the fold margin colour defaults to ::GetSysColor(COLOR_3DFACE) and the fold margin highlight + colour to ::GetSysColor(COLOR_3DHIGHLIGHT).

      + +

      + SCI_MARGINSETTEXT(int line, const char *text)
      + SCI_MARGINGETTEXT(int line, char *text) → int
      + SCI_MARGINSETSTYLE(int line, int style)
      + SCI_MARGINGETSTYLE(int line) → int
      + SCI_MARGINSETSTYLES(int line, const char *styles)
      + SCI_MARGINGETSTYLES(int line, char *styles) → int
      + SCI_MARGINTEXTCLEARALL
      + Text margins are created with the type SC_MARGIN_TEXT or SC_MARGIN_RTEXT. + A different string may be set for each line with SCI_MARGINSETTEXT. + The whole of the text margin on a line may be displayed in a particular style with + SCI_MARGINSETSTYLE or each character may be individually styled with + SCI_MARGINSETSTYLES which uses an array of bytes with each byte setting the style + of the corresponding text byte similar to SCI_SETSTYLINGEX. + Setting a text margin will cause a + SC_MOD_CHANGEMARGIN + notification to be sent. +

      +

      + Only some style attributes are active in text margins: font, size/sizeFractional, bold/weight, italics, fore, back, and characterSet. +

      +

      + SCI_MARGINSETSTYLEOFFSET(int style)
      + SCI_MARGINGETSTYLEOFFSET → int
      + Margin styles may be completely separated from standard text styles by setting a style offset. For example, + SCI_MARGINSETSTYLEOFFSET(256) would allow the margin styles to be numbered from + 256 up to 511 so they do not overlap styles set by lexers. Each style number set with SCI_MARGINSETSTYLE + or SCI_MARGINSETSTYLES has the offset added before looking up the style. +

      +

      + Always call SCI_ALLOCATEEXTENDEDSTYLES + before SCI_MARGINSETSTYLEOFFSET and use the result as the argument to SCI_MARGINSETSTYLEOFFSET. +

      +

      + SCI_SETMARGINOPTIONS(int marginOptions)
      + SCI_GETMARGINOPTIONS → int
      + Define margin options by enabling appropriate bit flags. At the moment, only one flag is available + SC_MARGINOPTION_SUBLINESELECT=1, which controls how wrapped lines are selected when clicking + on margin in front of them. If SC_MARGINOPTION_SUBLINESELECT is set only sub line of wrapped + line is selected, otherwise whole wrapped line is selected. Margin options are set to + SC_MARGINOPTION_NONE=0 by default. +

      + +

      Annotations

      + +

      Annotations are read-only lines of text underneath each line of editable text. + An annotation may consist of multiple lines separated by '\n'. + Annotations can be used to display an assembler version of code for debugging or to show diagnostic messages inline or to + line up different versions of text in a merge tool.

      +

      Annotations count as display lines for the methods + SCI_VISIBLEFROMDOCLINE and + SCI_DOCLINEFROMVISIBLE

      +

      Annotations used for inline diagnostics:

      +

      Annotations used for inline diagnostics

      + + + SCI_ANNOTATIONSETTEXT(int line, const char *text)
      + SCI_ANNOTATIONGETTEXT(int line, char *text) → int
      + SCI_ANNOTATIONSETSTYLE(int line, int style)
      + SCI_ANNOTATIONGETSTYLE(int line) → int
      + SCI_ANNOTATIONSETSTYLES(int line, const char *styles)
      + SCI_ANNOTATIONGETSTYLES(int line, char *styles) → int
      + SCI_ANNOTATIONGETLINES(int line) → int
      + SCI_ANNOTATIONCLEARALL
      + SCI_ANNOTATIONSETVISIBLE(int visible)
      + SCI_ANNOTATIONGETVISIBLE → int
      + SCI_ANNOTATIONSETSTYLEOFFSET(int style)
      + SCI_ANNOTATIONGETSTYLEOFFSET → int
      +
      + +

      + SCI_ANNOTATIONSETTEXT(int line, const char *text)
      + SCI_ANNOTATIONGETTEXT(int line, char *text) → int
      + SCI_ANNOTATIONSETSTYLE(int line, int style)
      + SCI_ANNOTATIONGETSTYLE(int line) → int
      + SCI_ANNOTATIONSETSTYLES(int line, const char *styles)
      + SCI_ANNOTATIONGETSTYLES(int line, char *styles) → int
      + SCI_ANNOTATIONGETLINES(int line) → int
      + SCI_ANNOTATIONCLEARALL
      + A different string may be set for each line with SCI_ANNOTATIONSETTEXT. + To clear annotations call SCI_ANNOTATIONSETTEXT with a NULL pointer. + The whole of the text ANNOTATION on a line may be displayed in a particular style with + SCI_ANNOTATIONSETSTYLE or each character may be individually styled with + SCI_ANNOTATIONSETSTYLES which uses an array of bytes with each byte setting the style + of the corresponding text byte similar to SCI_SETSTYLINGEX. The text must be set first as it + specifies how long the annotation is so how many bytes of styling to read. + Setting an annotation will cause a + SC_MOD_CHANGEANNOTATION + notification to be sent. +

      +

      + The number of lines annotating a line can be retrieved with SCI_ANNOTATIONGETLINES. + All the lines can be cleared of annotations with SCI_ANNOTATIONCLEARALL + which is equivalent to clearing each line (setting to 0) and then deleting other memory used for this feature. +

      +

      + Only some style attributes are active in annotations: font, size/sizeFractional, bold/weight, italics, fore, back, and characterSet. +

      +

      + SCI_ANNOTATIONSETVISIBLE(int visible)
      + SCI_ANNOTATIONGETVISIBLE → int
      + Annotations can be made visible in a view and there is a choice of display style when visible. + The two messages set and get the annotation display mode. The visible + argument can be one of:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ANNOTATION_HIDDEN0Annotations are not displayed.
      ANNOTATION_STANDARD1Annotations are drawn left justified with no adornment.
      ANNOTATION_BOXED2Annotations are indented to match the text and are surrounded by a box.
      ANNOTATION_INDENTED3Annotations are indented to match the text.
      + +

      + SCI_ANNOTATIONSETSTYLEOFFSET(int style)
      + SCI_ANNOTATIONGETSTYLEOFFSET → int
      + Annotation styles may be completely separated from standard text styles by setting a style offset. For example, + SCI_ANNOTATIONSETSTYLEOFFSET(512) would allow the annotation styles to be numbered from + 512 up to 767 so they do not overlap styles set by lexers (or margins if margins offset is 256). + Each style number set with SCI_ANNOTATIONSETSTYLE + or SCI_ANNOTATIONSETSTYLES has the offset added before looking up the style. +

      +

      + Always call SCI_ALLOCATEEXTENDEDSTYLES + before SCI_ANNOTATIONSETSTYLEOFFSET and use the result as the argument to SCI_ANNOTATIONSETSTYLEOFFSET. +

      + +

      Other settings

      + + SCI_SETBUFFEREDDRAW(bool buffered)
      + SCI_GETBUFFEREDDRAW → bool
      + SCI_SETPHASESDRAW(int phases)
      + SCI_GETPHASESDRAW → int
      + SCI_SETTWOPHASEDRAW(bool twoPhase)
      + SCI_GETTWOPHASEDRAW → bool
      + SCI_SETTECHNOLOGY(int technology)
      + SCI_GETTECHNOLOGY → int
      + SCI_SETFONTQUALITY(int fontQuality)
      + SCI_GETFONTQUALITY → int
      + SCI_SETCODEPAGE(int codePage)
      + SCI_GETCODEPAGE → int
      + SCI_SETIMEINTERACTION(int imeInteraction)
      + SCI_GETIMEINTERACTION → int
      + SCI_GRABFOCUS
      + SCI_SETFOCUS(bool focus)
      + SCI_GETFOCUS → bool
      +
      + +

      To forward a message (WM_XXXX, WPARAM, LPARAM) to Scintilla, you can use + SendMessage(hScintilla, WM_XXXX, WPARAM, LPARAM) where hScintilla is + the handle to the Scintilla window you created as your editor.

      + +

      While we are on the subject of forwarding messages in Windows, the top level window should + forward any WM_SETTINGCHANGE messages to Scintilla (this is currently used to + collect changes to mouse settings, but could be used for other user interface items in the + future).

      + +

      SCI_SETBUFFEREDDRAW(bool buffered)
      + SCI_GETBUFFEREDDRAW → bool
      + These messages turn buffered drawing on or off and report the buffered drawing state. Buffered + drawing draws each line into a bitmap rather than directly to the screen and then copies the + bitmap to the screen. This avoids flickering although it does take longer. The default is for + drawing to be buffered on Win32 and GTK+ and to not be buffered on Cocoa and Qt. + Buffered drawing is not supported on Cocoa. +

      + +

      Current platforms perform window buffering so it is almost always better for this option to be turned off. + For Win32 and GTK+, client code should turn off buffering at initialisation. + There are some older platforms and unusual modes where buffering may still be useful. +

      + +

      SCI_SETPHASESDRAW(int phases)
      + SCI_GETPHASESDRAW → int
      + There are several orders in which the text area may be drawn offering a trade-off between speed + and allowing all pixels of text to be seen even when they overlap other elements.

      +

      In single phase drawing (SC_PHASES_ONE) each + run of characters in one style is drawn along with its background. + If a character overhangs the end of a run, such as in "V_" where the + "V" is in a different style from the "_", then this can cause the right hand + side of the "V" to be overdrawn by the background of the "_" which + cuts it off.

      +

      Two phase drawing (SC_PHASES_TWO) + fixes this by drawing all the backgrounds of a line first and then drawing the text + in transparent mode. Lines are drawn separately and no line will overlap another + so any pixels that overlap into another line such as extreme ascenders and + descenders on characters will be cut off. + Two phase drawing may flicker more than single phase + unless buffered drawing is on or the platform is naturally buffered. + The default is for drawing to be two phase.

      +

      Multiple phase drawing (SC_PHASES_MULTIPLE) + draws the whole area multiple times, once for each feature, building up the + the appearance in layers or phases. The coloured backgrounds for all lines are + drawn before any text and then all the text is drawn in transparent mode over this + combined background without clipping text to the line boundaries. This allows + extreme ascenders and descenders to overflow into the adjacent lines. + This mode is incompatible with buffered drawing and will act as SC_PHASES_TWO + if buffered drawing is turned on. + Multiple phase drawing is slower than two phase drawing. + Setting the layout cache with + + SCI_SETLAYOUTCACHE(SC_CACHE_PAGE) + or higher can ensure that multiple phase drawing is not significantly slower.

      + +

      SCI_SETTWOPHASEDRAW(bool twoPhase)
      + SCI_GETTWOPHASEDRAW → bool
      + This property has been replaced with the preceding PHASESDRAW property which is more general, + allowing multiple phase drawing as well as one and two phase drawing.

      + +

      SCI_SETTECHNOLOGY(int technology)
      + SCI_GETTECHNOLOGY → int
      + The technology property allows choosing between different drawing APIs and options. + On most platforms, the only choice is SC_TECHNOLOGY_DEFAULT (0). + On Windows Vista or later, SC_TECHNOLOGY_DIRECTWRITE (1), + SC_TECHNOLOGY_DIRECTWRITERETAIN (2), or + SC_TECHNOLOGY_DIRECTWRITEDC (3) + can be chosen to use the Direct2D and DirectWrite APIs for higher quality antialiased drawing. + SC_TECHNOLOGY_DIRECTWRITERETAIN differs from + SC_TECHNOLOGY_DIRECTWRITE by requesting that the frame + is retained after being presented which may prevent drawing failures on some cards and drivers. + SC_TECHNOLOGY_DIRECTWRITEDC differs from + SC_TECHNOLOGY_DIRECTWRITE by using DirectWrite to draw into a GDI DC. + Since Direct2D buffers drawing, Scintilla's buffering can be turned off with + SCI_SETBUFFEREDDRAW(0).

      + +

      SCI_SETFONTQUALITY(int fontQuality)
      + SCI_GETFONTQUALITY → int
      + Manage font quality (antialiasing method). Currently, the following values are available on Windows: + SC_EFF_QUALITY_DEFAULT (backward compatible), + SC_EFF_QUALITY_NON_ANTIALIASED, + SC_EFF_QUALITY_ANTIALIASED, + SC_EFF_QUALITY_LCD_OPTIMIZED.

      +

      In case it is necessary to squeeze more options into this property, only a limited number of bits defined + by SC_EFF_QUALITY_MASK (0xf) will be used for quality.

      + +

      SCI_SETCODEPAGE(int codePage)
      + SCI_GETCODEPAGE → int
      + Scintilla supports UTF-8, Japanese, Chinese and Korean DBCS along with single byte encodings like Latin-1. + UTF-8 (SC_CP_UTF8) is the default. Use this message with + codePage set to the code page number to set Scintilla to use code page information + to ensure multiple byte characters are treated as one character rather than multiple. This also stops + the caret from moving between the bytes in a multi-byte character. + Do not use this message to choose between different single byte character sets - use + SCI_STYLESETCHARACTERSET. + Call with + codePage set to zero to disable multi-byte support.

      + +

      Code page SC_CP_UTF8 (65001) sets Scintilla into Unicode mode with the document + treated as a sequence of characters expressed in UTF-8. The text is converted to the platform's + normal Unicode encoding before being drawn by the OS and thus can display Hebrew, Arabic, + Cyrillic, and Han characters. Languages which can use two characters stacked vertically in one + horizontal space, such as Thai, will mostly work but there are some issues where the characters + are drawn separately leading to visual glitches. Bi-directional text is not supported.

      + +

      Code page can be set to 65001 (UTF-8), 932 (Japanese Shift-JIS), 936 (Simplified Chinese GBK), + 949 (Korean Unified Hangul Code), 950 (Traditional Chinese Big5), or 1361 (Korean Johab).

      + +

      SCI_SETIMEINTERACTION(int imeInteraction)
      + SCI_GETIMEINTERACTION → int
      + When entering text in Chinese, Japanese, or Korean an Input Method Editor (IME) may be displayed. + The IME may be an extra window appearing above Scintilla or may be displayed by Scintilla itself + as text. On some platforms there is a choice between the two techniques. + A windowed IME SC_IME_WINDOWED (0) may be more similar in appearance and + behaviour to the IME in other applications. + An inline IME SC_IME_INLINE (1) may work better with some Scintilla features such as + rectangular and multiple selection.

      +

      The windowed behaviour can be chosen with SCI_SETIMEINTERACTION(SC_IME_WINDOWED) + and the inline behaviour with SCI_SETIMEINTERACTION(SC_IME_INLINE). + Scintilla may ignore this call in some cases. For example, the inline behaviour might only be supported for some languages.

      +

      When the inline IME mode is active, characters are added tentatively before being finalised and an + SCN_CHARADDED + notification is sent for each character.

      + +

      SCI_GRABFOCUS
      + SCI_SETFOCUS(bool focus)
      + SCI_GETFOCUS → bool
      + Scintilla can be told to grab the focus with this message. This is needed more on GTK+ where + focus handling is more complicated than on Windows.

      + +

      The internal focus flag can be set with SCI_SETFOCUS. This is used by clients + that have complex focus requirements such as having their own window that gets the real focus + but with the need to indicate that Scintilla has the logical focus.

      + +

      Brace highlighting

      + SCI_BRACEHIGHLIGHT(int posA, int + posB)
      + SCI_BRACEBADLIGHT(int pos)
      + SCI_BRACEHIGHLIGHTINDICATOR(bool useSetting, int indicator)
      + SCI_BRACEBADLIGHTINDICATOR(bool useSetting, int indicator)
      + SCI_BRACEMATCH(int pos, int maxReStyle) → position
      +
      + +

      SCI_BRACEHIGHLIGHT(int posA, int posB)
      + Up to two characters can be highlighted in a 'brace highlighting style', which is defined as + style number STYLE_BRACELIGHT (34). + If you have enabled indent guides, you may also wish to highlight the indent that corresponds + with the brace. You can locate the column with SCI_GETCOLUMN and highlight the indent with SCI_SETHIGHLIGHTGUIDE.

      + +

      SCI_BRACEBADLIGHT(int pos)
      + If there is no matching brace then the brace + badlighting style, style STYLE_BRACEBAD (35), can be used to show the brace + that is unmatched. Using a position of INVALID_POSITION (-1) removes the + highlight.

      + +

      SCI_BRACEHIGHLIGHTINDICATOR(bool useSetting, int indicator)
      + Use specified indicator to highlight matching braces instead of changing their style.

      + +

      SCI_BRACEBADLIGHTINDICATOR(bool useSetting, int indicator)
      + Use specified indicator to highlight non matching brace instead of changing its style.

      + +

      SCI_BRACEMATCH(int pos, int maxReStyle) → position
      + The SCI_BRACEMATCH message finds a corresponding matching brace given + pos, the position of one brace. The brace characters handled are '(', ')', '[', + ']', '{', '}', '<', and '>'. The search is forwards from an opening brace and backwards + from a closing brace. If the character at position is not a brace character, or a matching + brace cannot be found, the return value is -1. Otherwise, the return value is the position of + the matching brace.

      + +

      A match only occurs if the style of the matching brace is the same as the starting brace or + the matching brace is beyond the end of styling. Nested braces are handled correctly. The + maxReStyle parameter must currently be 0 - it may be used in the future to limit + the length of brace searches.

      + +

      Tabs and Indentation Guides

      + +

      Indentation (the white space at the start of a line) is often used by programmers to clarify + program structure and in some languages, for example Python, it may be part of the language + syntax. Tabs are normally used in editors to insert a tab character or to pad text with spaces + up to the next tab.

      + +

      When Scintilla is laying out a section of text, text after a tab character will usually be + displayed at the next multiple of TABWIDTH columns from the left. However, it is also possible + to explicitly set tabstops in pixels for each line.

      + +

      Scintilla can be set to treat tab and backspace in the white space at the start of a line in + a special way: inserting a tab indents the line to the next indent position rather than just + inserting a tab at the current character position and backspace unindents the line rather than + deleting a character. Scintilla can also display indentation guides (vertical lines) to help + you to generate code.

      + SCI_SETTABWIDTH(int tabWidth)
      + SCI_GETTABWIDTH → int
      + SCI_CLEARTABSTOPS(int line)
      + SCI_ADDTABSTOP(int line, int x)
      + SCI_GETNEXTTABSTOP(int line, int x) → int
      + SCI_SETUSETABS(bool useTabs)
      + SCI_GETUSETABS → bool
      + SCI_SETINDENT(int indentSize)
      + SCI_GETINDENT → int
      + SCI_SETTABINDENTS(bool tabIndents)
      + SCI_GETTABINDENTS → bool
      + SCI_SETBACKSPACEUNINDENTS(bool + bsUnIndents)
      + SCI_GETBACKSPACEUNINDENTS → bool
      + SCI_SETLINEINDENTATION(int line, int + indentation)
      + SCI_GETLINEINDENTATION(int line) → int
      + SCI_GETLINEINDENTPOSITION(int line) → position
      + SCI_SETINDENTATIONGUIDES(int indentView)
      + SCI_GETINDENTATIONGUIDES → int
      + SCI_SETHIGHLIGHTGUIDE(int column)
      + SCI_GETHIGHLIGHTGUIDE → int
      +
      + +

      SCI_SETTABWIDTH(int tabWidth)
      + SCI_GETTABWIDTH → int
      + SCI_SETTABWIDTH sets the size of a tab as a multiple of the size of a space + character in STYLE_DEFAULT. The default tab width is 8 characters. There are no + limits on tab sizes, but values less than 1 or large values may have undesirable effects.

      + +

      SCI_CLEARTABSTOPS(int line)
      + SCI_ADDTABSTOP(int line, int x)
      + SCI_GETNEXTTABSTOP(int line, int x) → int
      + SCI_CLEARTABSTOPS clears explicit tabstops on a line. SCI_ADDTABSTOP + adds an explicit tabstop at the specified distance from the left (in pixels), and + SCI_GETNEXTTABSTOP gets the next explicit tabstop position set after the given x position, + or zero if there aren't any. + Changing tab stops produces a SC_MOD_CHANGETABSTOPS notification. +

      + +

      SCI_SETUSETABS(bool useTabs)
      + SCI_GETUSETABS → bool
      + SCI_SETUSETABS determines whether indentation should be created out of a mixture + of tabs and spaces or be based purely on spaces. Set useTabs to false + (0) to create all tabs and indents out of spaces. The default is true. You can use + SCI_GETCOLUMN to get the column of a + position taking the width of a tab into account.

      +

      SCI_SETINDENT(int indentSize)
      + SCI_GETINDENT → int
      + SCI_SETINDENT sets the size of indentation in terms of the width of a space in STYLE_DEFAULT. If you set a width of + 0, the indent size is the same as the tab size. There are no limits on indent sizes, but values + less than 0 or large values may have undesirable effects. +

      + +

      SCI_SETTABINDENTS(bool tabIndents)
      + SCI_GETTABINDENTS → bool
      + SCI_SETBACKSPACEUNINDENTS(bool bsUnIndents)
      + SCI_GETBACKSPACEUNINDENTS → bool
      +

      + +

      Inside indentation white space, the tab and backspace keys can be made to indent and + unindent rather than insert a tab character or delete a character with the + SCI_SETTABINDENTS and SCI_SETBACKSPACEUNINDENTS functions.

      + +

      SCI_SETLINEINDENTATION(int line, int indentation)
      + SCI_GETLINEINDENTATION(int line) → int
      + The amount of indentation on a line can be discovered and set with + SCI_GETLINEINDENTATION and SCI_SETLINEINDENTATION. The indentation is + measured in character columns, which correspond to the width of space characters.

      + +

      SCI_GETLINEINDENTPOSITION(int line) → position
      + This returns the position at the end of indentation of a line.

      + +

      SCI_SETINDENTATIONGUIDES(int indentView)
      + SCI_GETINDENTATIONGUIDES → int
      + Indentation guides are dotted vertical lines that appear within indentation white space every + indent size columns. They make it easy to see which constructs line up especially when they + extend over multiple pages. Style STYLE_INDENTGUIDE (37) is used to specify the + foreground and background colour of the indentation guides.

      + +

      There are 4 indentation guide views. + SC_IV_NONE turns the feature off but the other 3 states determine how far the guides appear on + empty lines.

      + + + + + + + + + + + + + + + + + + + + + + + +
      SC_IV_NONENo indentation guides are shown.
      SC_IV_REALIndentation guides are shown inside real indentation white space.
      SC_IV_LOOKFORWARDIndentation guides are shown beyond the actual indentation up to the level of the + next non-empty line. + If the previous non-empty line was a fold header then indentation guides are shown for + one more level of indent than that line. This setting is good for Python.
      SC_IV_LOOKBOTHIndentation guides are shown beyond the actual indentation up to the level of the + next non-empty line or previous non-empty line whichever is the greater. + This setting is good for most languages.
      + +

      SCI_SETHIGHLIGHTGUIDE(int column)
      + SCI_GETHIGHLIGHTGUIDE → int
      + When brace highlighting occurs, the indentation guide corresponding to the braces may be + highlighted with the brace highlighting style, STYLE_BRACELIGHT (34). Set column to 0 to + cancel this highlight.

      + +

      Markers

      + +

      There are 32 markers, numbered 0 to MARKER_MAX (31), and you can assign any combination of them to each + line in the document. Markers appear in the selection + margin to the left of the text. If the selection margin is set to zero width, the + background colour of the whole line is changed instead. Marker numbers 25 to 31 are used by + Scintilla in folding margins, and have symbolic names of the form SC_MARKNUM_*, + for example SC_MARKNUM_FOLDEROPEN.

      + +

      Marker numbers 0 to 24 have no pre-defined function; you can use them to mark syntax errors + or the current point of execution, break points, or whatever you need marking. If you do not + need folding, you can use all 32 for any purpose you wish.

      + +

      Each marker number has a symbol associated with it. You can also set the foreground and + background colour for each marker number, so you can use the same symbol more than once with + different colouring for different uses. Scintilla has a set of symbols you can assign + (SC_MARK_*) or you can use characters. By default, all 32 markers are set to + SC_MARK_CIRCLE with a black foreground and a white background.

      + +

      The markers are drawn in the order of their numbers, so higher numbered markers appear on + top of lower numbered ones. Markers try to move with their text by tracking where the start of + their line moves. When a line is deleted, its markers are combined, by an OR + operation, with the markers of the next line.

      + SCI_MARKERDEFINE(int markerNumber, int + markerSymbol)
      + SCI_MARKERDEFINEPIXMAP(int markerNumber, + const char *pixmap)
      + SCI_RGBAIMAGESETWIDTH(int width)
      + SCI_RGBAIMAGESETHEIGHT(int height)
      + SCI_RGBAIMAGESETSCALE(int scalePercent)
      + SCI_MARKERDEFINERGBAIMAGE(int markerNumber, + const char *pixels)
      + SCI_MARKERSYMBOLDEFINED(int markerNumber) → int
      + SCI_MARKERSETFORE(int markerNumber, colour + fore)
      + SCI_MARKERSETBACK(int markerNumber, colour + back)
      + SCI_MARKERSETBACKSELECTED(int markerNumber, colour + back)
      + SCI_MARKERENABLEHIGHLIGHT(bool enabled)
      + SCI_MARKERSETALPHA(int markerNumber, alpha alpha)
      + SCI_MARKERADD(int line, int markerNumber) → int
      + SCI_MARKERADDSET(int line, int markerSet)
      + SCI_MARKERDELETE(int line, int + markerNumber)
      + SCI_MARKERDELETEALL(int markerNumber)
      + SCI_MARKERGET(int line) → int
      + SCI_MARKERNEXT(int lineStart, int markerMask) → int
      + SCI_MARKERPREVIOUS(int lineStart, int markerMask) → int
      + SCI_MARKERLINEFROMHANDLE(int markerHandle) → int
      + SCI_MARKERDELETEHANDLE(int markerHandle)
      +
      + +

      SCI_MARKERDEFINE(int markerNumber, int markerSymbol)
      + This message associates a marker number in the range 0 to 31 with one of the marker symbols or + an ASCII character. The general-purpose marker symbols currently available are:
      + SC_MARK_CIRCLE, + SC_MARK_ROUNDRECT, + SC_MARK_ARROW, + SC_MARK_SMALLRECT, + SC_MARK_SHORTARROW, + SC_MARK_EMPTY, + SC_MARK_ARROWDOWN, + SC_MARK_MINUS, + SC_MARK_PLUS, + SC_MARK_ARROWS, + SC_MARK_DOTDOTDOT, + SC_MARK_BACKGROUND, + SC_MARK_LEFTRECT, + SC_MARK_FULLRECT, + SC_MARK_BOOKMARK, and + SC_MARK_UNDERLINE. +

      + +

      The SC_MARK_BACKGROUND marker changes the background colour of the line only. + The SC_MARK_FULLRECT symbol mirrors this, changing only the margin background colour. + SC_MARK_UNDERLINE draws an underline across the text. + The SC_MARK_EMPTY symbol is invisible, allowing client code to track the movement + of lines. You would also use it if you changed the folding style and wanted one or more of the + SC_FOLDERNUM_* markers to have no associated symbol.

      + +

      Applications may use the marker symbol SC_MARK_AVAILABLE to indicate that + plugins may allocate that marker number. +

      + +

      There are also marker symbols designed for use in the folding margin in a flattened tree + style.
      + SC_MARK_BOXMINUS, + SC_MARK_BOXMINUSCONNECTED, + SC_MARK_BOXPLUS, + SC_MARK_BOXPLUSCONNECTED, + SC_MARK_CIRCLEMINUS, + SC_MARK_CIRCLEMINUSCONNECTED, + SC_MARK_CIRCLEPLUS, + SC_MARK_CIRCLEPLUSCONNECTED, + SC_MARK_LCORNER, + SC_MARK_LCORNERCURVE, + SC_MARK_TCORNER, + SC_MARK_TCORNERCURVE, and + SC_MARK_VLINE.

      + Characters can be used as markers by adding the ASCII value of the character to + SC_MARK_CHARACTER (10000). For example, to use 'A' (ASCII code 65) as marker + number 1 use:
      + SCI_MARKERDEFINE(1, SC_MARK_CHARACTER+65).
      + +

      The marker numbers SC_MARKNUM_FOLDER and SC_MARKNUM_FOLDEROPEN are + used for showing that a fold is present and open or closed. Any symbols may be assigned for + this purpose although the (SC_MARK_PLUS, SC_MARK_MINUS) pair or the + (SC_MARK_ARROW, SC_MARK_ARROWDOWN) pair are good choices. As well as + these two, more assignments are needed for the flattened tree style: + SC_MARKNUM_FOLDEREND, SC_MARKNUM_FOLDERMIDTAIL, + SC_MARKNUM_FOLDEROPENMID, SC_MARKNUM_FOLDERSUB, and + SC_MARKNUM_FOLDERTAIL. The bits used for folding are specified by + SC_MASK_FOLDERS, which is commonly used as an argument to + SCI_SETMARGINMASKN when defining a margin to be used for folding.

      + +

      This table shows which SC_MARK_* symbols should be assigned to which + SC_MARKNUM_* marker numbers to obtain four folding styles: Arrow (mimics + Macintosh), plus/minus shows folded lines as '+' and opened folds as '-', Circle tree, Box + tree.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SC_MARKNUM_*ArrowPlus/minusCircle treeBox tree
      FOLDEROPENARROWDOWNMINUSCIRCLEMINUSBOXMINUS
      FOLDERARROWPLUSCIRCLEPLUSBOXPLUS
      FOLDERSUBEMPTYEMPTYVLINEVLINE
      FOLDERTAILEMPTYEMPTYLCORNERCURVELCORNER
      FOLDERENDEMPTYEMPTYCIRCLEPLUSCONNECTEDBOXPLUSCONNECTED
      FOLDEROPENMIDEMPTYEMPTYCIRCLEMINUSCONNECTEDBOXMINUSCONNECTED
      FOLDERMIDTAILEMPTYEMPTYTCORNERCURVETCORNER
      +

      Marker samples

      + +

      SCI_MARKERDEFINEPIXMAP(int markerNumber, const char + *pixmap)
      + Markers can be set to pixmaps with this message. The + XPM format is used for the pixmap. + Pixmaps use the SC_MARK_PIXMAP marker symbol.

      + +

      + SCI_RGBAIMAGESETWIDTH(int width)
      + SCI_RGBAIMAGESETHEIGHT(int height)
      + SCI_RGBAIMAGESETSCALE(int scalePercent)
      + SCI_MARKERDEFINERGBAIMAGE(int markerNumber, const char *pixels)
      + Markers can be set to translucent pixmaps with this message. The + RGBA format is used for the pixmap. + The width and height must previously been set with the SCI_RGBAIMAGESETWIDTH and + SCI_RGBAIMAGESETHEIGHT messages.

      +

      A scale factor in percent may be set with SCI_RGBAIMAGESETSCALE. This is useful on OS X with + a retina display where each display unit is 2 pixels: use a factor of 200 so that each image pixel is displayed using a screen pixel. + The default scale, 100, will stretch each image pixel to cover 4 screen pixels on a retina display.

      +

      Pixmaps use the SC_MARK_RGBAIMAGE marker symbol.

      + +

      SCI_MARKERSYMBOLDEFINED(int markerNumber) → int
      + Returns the symbol defined for a markerNumber with SCI_MARKERDEFINE + or SC_MARK_PIXMAP if defined with SCI_MARKERDEFINEPIXMAP + or SC_MARK_RGBAIMAGE if defined with SCI_MARKERDEFINERGBAIMAGE.

      + +

      SCI_MARKERSETFORE(int markerNumber, colour fore)
      + SCI_MARKERSETBACK(int markerNumber, colour back)
      + These two messages set the foreground and background colour of a marker number.
      + SCI_MARKERSETBACKSELECTED(int markerNumber, colour back)
      + This message sets the highlight background colour of a marker number when its folding block is selected. The default colour is #FF0000.

      +

      SCI_MARKERENABLEHIGHLIGHT(bool enabled)
      + This message allows to enable/disable the highlight folding block when it is selected. (i.e. block that contains the caret)

      +

      SCI_MARKERSETALPHA(int markerNumber, + alpha alpha)
      + When markers are drawn in the content area, either because there is no margin for them or + they are of SC_MARK_BACKGROUND or SC_MARK_UNDERLINE types, they may be drawn translucently by + setting an alpha value.

      + +

      SCI_MARKERADD(int line, int markerNumber) → int
      + This message adds marker number markerNumber to a line. The message returns -1 if + this fails (illegal line number, out of memory) or it returns a marker handle number that + identifies the added marker. You can use this returned handle with SCI_MARKERLINEFROMHANDLE to find where a + marker is after moving or combining lines and with SCI_MARKERDELETEHANDLE to delete the marker + based on its handle. The message does not check the value of markerNumber, nor does it + check if the line already contains the marker.

      + +

      SCI_MARKERADDSET(int line, int markerSet)
      + This message can add one or more markers to a line with a single call, specified in the same "one-bit-per-marker" 32-bit integer format returned by + SCI_MARKERGET + (and used by the mask-based marker search functions + SCI_MARKERNEXT and + SCI_MARKERPREVIOUS). + As with + SCI_MARKERADD, no check is made + to see if any of the markers are already present on the targeted line.

      + +

      SCI_MARKERDELETE(int line, int markerNumber)
      + This searches the given line number for the given marker number and deletes it if it is + present. If you added the same marker more than once to the line, this will delete one copy + each time it is used. If you pass in a marker number of -1, all markers are deleted from the + line.

      + +

      SCI_MARKERDELETEALL(int markerNumber)
      + This removes markers of the given number from all lines. If markerNumber is -1, it deletes all + markers from all lines.

      + +

      SCI_MARKERGET(int line) → int
      + This returns a 32-bit integer that indicates which markers were present on the line. Bit 0 is + set if marker 0 is present, bit 1 for marker 1 and so on.

      + +

      SCI_MARKERNEXT(int lineStart, int markerMask) → int
      + SCI_MARKERPREVIOUS(int lineStart, int markerMask) → int
      + These messages search efficiently for lines that include a given set of markers. The search + starts at line number lineStart and continues forwards to the end of the file + (SCI_MARKERNEXT) or backwards to the start of the file + (SCI_MARKERPREVIOUS). The markerMask argument should have one bit set + for each marker you wish to find. Set bit 0 to find marker 0, bit 1 for marker 1 and so on. The + message returns the line number of the first line that contains one of the markers in + markerMask or -1 if no marker is found.

      + +

      SCI_MARKERLINEFROMHANDLE(int markerHandle) → int
      + The markerHandle argument is an identifier for a marker returned by SCI_MARKERADD. This function searches + the document for the marker with this handle and returns the line number that contains it or -1 + if it is not found.

      + +

      SCI_MARKERDELETEHANDLE(int markerHandle)
      + The markerHandle argument is an identifier for a marker returned by SCI_MARKERADD. This function searches + the document for the marker with this handle and deletes the marker if it is found.

      + +

      Indicators

      + +

      Indicators are used to display additional information over the top of styling. + They can be used to show, for example, syntax errors, deprecated names and bad indentation + by drawing underlines under text or boxes around text.

      + +

      Indicators may have a different "hover" colour and style when the mouse is over them or the caret is moved into them. + This may be used, for example, to indicate that a URL can be clicked.

      + +

      Indicators may be displayed as simple underlines, squiggly underlines, a + line of small 'T' shapes, a line of diagonal hatching, a strike-out or a rectangle around the text. + They may also be invisible when used to track pieces of content for the application as INDIC_HIDDEN.

      + +

      The SCI_INDIC* messages allow you to get and set the visual appearance of the + indicators. They all use an indicator argument in the range 0 to INDIC_MAX(35) + to set the indicator to style. To prevent interference the set of indicators is divided up into a range for use + by lexers (0..7) a range for use by containers + (8=INDIC_CONTAINER .. 31=INDIC_IME-1) + and a range for IME indicators (32=INDIC_IME .. 35=INDIC_IME_MAX).

      + +

      Indicators are stored in a format similar to run length encoding which is efficient in both + speed and storage for sparse information.

      +

      An indicator may store different values for each range but normally all values are drawn the same. + The SCI_INDICSETFLAGS + API may be used to display different colours for different values.

      + +

      Originally, Scintilla used a different technique for indicators but this + has been removed + and the APIs perform no action. + While both techniques were supported, the term "modern indicators" was used for the + newer implementation.

      + + SCI_INDICSETSTYLE(int indicator, int + indicatorStyle)
      + SCI_INDICGETSTYLE(int indicator) → int
      + SCI_INDICSETFORE(int indicator, colour + fore)
      + SCI_INDICGETFORE(int indicator) → colour
      + SCI_INDICSETALPHA(int indicator, alpha alpha)
      + SCI_INDICGETALPHA(int indicator) → int
      + SCI_INDICSETOUTLINEALPHA(int indicator, alpha alpha)
      + SCI_INDICGETOUTLINEALPHA(int indicator) → int
      + SCI_INDICSETUNDER(int indicator, bool under)
      + SCI_INDICGETUNDER(int indicator) → bool
      + SCI_INDICSETHOVERSTYLE(int indicator, int + indicatorStyle)
      + SCI_INDICGETHOVERSTYLE(int indicator) → int
      + SCI_INDICSETHOVERFORE(int indicator, colour + fore)
      + SCI_INDICGETHOVERFORE(int indicator) → colour
      + SCI_INDICSETFLAGS(int indicator, int flags)
      + SCI_INDICGETFLAGS(int indicator) → int
      +
      + + SCI_SETINDICATORCURRENT(int indicator)
      + SCI_GETINDICATORCURRENT → int
      + SCI_SETINDICATORVALUE(int value)
      + SCI_GETINDICATORVALUE → int
      + SCI_INDICATORFILLRANGE(int start, int lengthFill)
      + SCI_INDICATORCLEARRANGE(int start, int lengthClear)
      + SCI_INDICATORALLONFOR(int pos) → int
      + SCI_INDICATORVALUEAT(int indicator, int pos) → int
      + SCI_INDICATORSTART(int indicator, int pos) → int
      + SCI_INDICATOREND(int indicator, int pos) → int
      + + SCI_FINDINDICATORSHOW(int start, int end)
      + SCI_FINDINDICATORFLASH(int start, int end)
      + SCI_FINDINDICATORHIDE
      +
      + +

      SCI_INDICSETSTYLE(int indicator, int + indicatorStyle)
      + SCI_INDICGETSTYLE(int indicator) → int
      + These two messages set and get the style for a particular indicator. The indicator styles + currently available are:
      + + Indicator samples

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueVisual effect
      INDIC_PLAIN0Underlined with a single, straight line.
      INDIC_SQUIGGLE1A squiggly underline. Requires 3 pixels of descender space.
      INDIC_TT2A line of small T shapes.
      INDIC_DIAGONAL3Diagonal hatching.
      INDIC_STRIKE4Strike out.
      INDIC_HIDDEN5An indicator with no visual effect.
      INDIC_BOX6A rectangle around the text.
      INDIC_ROUNDBOX7A rectangle with rounded corners around the text using translucent drawing with the + interior usually more transparent than the border. You can use + SCI_INDICSETALPHA and + SCI_INDICSETOUTLINEALPHA + to control the alpha transparency values. The default alpha values are 30 for fill colour and 50 for outline colour.
      INDIC_STRAIGHTBOX8A rectangle around the text using translucent drawing with the + interior usually more transparent than the border. You can use + SCI_INDICSETALPHA and + SCI_INDICSETOUTLINEALPHA + to control the alpha transparency values. The default alpha values are 30 for fill colour and 50 for outline colour. + This indicator does not colour the top pixel of the line so that indicators on contiguous lines are visually distinct + and disconnected.
      INDIC_FULLBOX16A rectangle around the text using translucent drawing similar to INDIC_STRAIGHTBOX + but covering the entire character area.
      INDIC_DASH9A dashed underline.
      INDIC_DOTS10A dotted underline.
      INDIC_SQUIGGLELOW11Similar to INDIC_SQUIGGLE but only using 2 vertical pixels + so will fit under small fonts.
      INDIC_DOTBOX12A dotted rectangle around the text using translucent drawing. + Translucency alternates between the alpha and outline alpha settings with the top-left pixel using the alpha setting. + SCI_INDICSETALPHA and + SCI_INDICSETOUTLINEALPHA + control the alpha transparency values. The default values are 30 for alpha and 50 for outline alpha. + To avoid excessive memory allocation the maximum width of a dotted box is 4000 pixels.
      INDIC_GRADIENT20A vertical gradient between a colour and alpha at top to fully transparent at bottom.
      INDIC_GRADIENTCENTRE21A vertical gradient with the specified colour and alpha in the middle + fading to fully transparent at top and bottom.
      INDIC_SQUIGGLEPIXMAP13A version of INDIC_SQUIGGLE that draws using a pixmap instead of + as a series of line segments for performance. + Measured to be between 3 and 6 times faster than INDIC_SQUIGGLE on GTK+. + Appearance will not be as good as INDIC_SQUIGGLE on OS X in HiDPI mode.
      INDIC_COMPOSITIONTHICK14A 2-pixel thick underline located at the bottom of the line to try to avoid touching the character base. + Each side is inset 1 pixel so that different indicators in this style covering a range appear isolated. + This is similar to an appearance used for the target in Asian language input composition.
      INDIC_COMPOSITIONTHIN15A 1-pixel thick underline located just before the bottom of the line. + Each side is inset 1 pixel so that different indicators in this style covering a range appear isolated. + This is similar to an appearance used for non-target ranges in Asian language input composition.
      INDIC_TEXTFORE17Change the colour of the text to the indicator's fore colour.
      INDIC_POINT18Draw a triangle below the start of the indicator range.
      INDIC_POINTCHARACTER19Draw a triangle below the centre of the first character of the indicator range.
      + +

      The default indicator styles are equivalent to:
      + SCI_INDICSETSTYLE(0, INDIC_SQUIGGLE);
      + SCI_INDICSETSTYLE(1, INDIC_TT);
      + SCI_INDICSETSTYLE(2, INDIC_PLAIN);

      + +

      SCI_INDICSETFORE(int indicator, colour fore)
      + SCI_INDICGETFORE(int indicator) → colour
      + These two messages set and get the colour used to draw an indicator. The default indicator + colours are equivalent to:
      + SCI_INDICSETFORE(0, 0x007f00); (dark green)
      + SCI_INDICSETFORE(1, 0xff0000); (light blue)
      + SCI_INDICSETFORE(2, 0x0000ff); (light red)

      + +

      SCI_INDICSETALPHA(int indicator, alpha alpha)
      + SCI_INDICGETALPHA(int indicator) → int
      + These two messages set and get the alpha transparency used for drawing the + fill colour of the INDIC_ROUNDBOX and INDIC_STRAIGHTBOX rectangle. The alpha value can range from + 0 (completely transparent) to 255 (no transparency). +

      + +

      SCI_INDICSETOUTLINEALPHA(int indicator, alpha alpha)
      + SCI_INDICGETOUTLINEALPHA(int indicator) → int
      + These two messages set and get the alpha transparency used for drawing the + outline colour of the INDIC_ROUNDBOX and INDIC_STRAIGHTBOX rectangle. The alpha value can range from + 0 (completely transparent) to 255 (no transparency). +

      + +

      SCI_INDICSETUNDER(int indicator, bool under)
      + SCI_INDICGETUNDER(int indicator) → bool
      + These two messages set and get whether an indicator is drawn under text or over(default). + Drawing under text works only for indicators when two phase drawing + is enabled.

      + +

      SCI_INDICSETHOVERSTYLE(int indicator, int + indicatorStyle)
      + SCI_INDICGETHOVERSTYLE(int indicator) → int
      + SCI_INDICSETHOVERFORE(int indicator, colour fore)
      + SCI_INDICGETHOVERFORE(int indicator) → colour
      + These messages set and get the colour and style used to draw indicators when the mouse is over them or the caret moved into them. + The mouse cursor also changes when an indicator is drawn in hover style. + The default is for the hover appearance to be the same as the normal appearance and calling + SCI_INDICSETFORE or + SCI_INDICSETSTYLE will + also reset the hover attribute.

      + +

      SCI_INDICSETFLAGS(int indicator, int flags)
      + SCI_INDICGETFLAGS(int indicator) → int
      + These messages set and get the flags associated with an indicator. + There is currently one flag defined, SC_INDICFLAG_VALUEFORE: when this flag is set + the colour used by the indicator is not from the indicator's fore setting but instead from the value of the indicator at + that point in the file. This allows many colours to be displayed for a single indicator. The value is an RGB integer colour that has been ored with SC_INDICVALUEBIT(0x1000000) + when calling SCI_SETINDICATORVALUE. + To find the colour from the value, and the value with SC_INDICVALUEMASK(0xFFFFFF). +

      + +

      + SCI_SETINDICATORCURRENT(int indicator)
      + SCI_GETINDICATORCURRENT → int
      + These two messages set and get the indicator that will be affected by calls to + SCI_INDICATORFILLRANGE(int start, int lengthFill) and + SCI_INDICATORCLEARRANGE(int start, int lengthClear). +

      + +

      + SCI_SETINDICATORVALUE(int value)
      + SCI_GETINDICATORVALUE → int
      + These two messages set and get the value that will be set by calls to + SCI_INDICATORFILLRANGE. +

      + +

      + SCI_INDICATORFILLRANGE(int start, int lengthFill)
      + SCI_INDICATORCLEARRANGE(int start, int lengthClear)
      + These two messages fill or clear a range for the current indicator. + SCI_INDICATORFILLRANGE fills with the + the current value. +

      + +

      + SCI_INDICATORALLONFOR(int pos) → int
      + Retrieve a bitmap value representing which indicators are non-zero at a position. + Only the first 32 indicators are represented in the result so no IME indicators are included. +

      + +

      + SCI_INDICATORVALUEAT(int indicator, int pos) → int
      + Retrieve the value of a particular indicator at a position. +

      + +

      + SCI_INDICATORSTART(int indicator, int pos) → int
      + SCI_INDICATOREND(int indicator, int pos) → int
      + Find the start or end of a range with one value from a position within the range. + Can be used to iterate through the document to discover all the indicator positions. +

      + +

      OS X Find Indicator

      + +

      On OS X search matches are highlighted with an animated gold rounded rectangle. + The indicator shows, then briefly grows 25% and shrinks to the original size to draw the user's attention. + While this feature is currently only implemented on OS X, it may be implemented on other platforms + in the future.

      + +

      SCI_FINDINDICATORSHOW(int start, int end)
      + SCI_FINDINDICATORFLASH(int start, int end)
      + These two messages show and animate the find indicator. The indicator remains visible with + SCI_FINDINDICATORSHOW and fades out after showing for half a second with + SCI_FINDINDICATORFLASH. + SCI_FINDINDICATORSHOW behaves similarly to the OS X TextEdit and Safari applications + and is best suited to editing documentation where the search target is often a word. + SCI_FINDINDICATORFLASH is similar to Xcode and is suited to editing source code + where the match will often be located next to operators which would otherwise be hidden under the indicator's + padding. +

      + +

      SCI_FINDINDICATORHIDE
      + This message hides the find indicator. +

      + +

      Earlier versions of Scintilla allowed partitioning style bytes + between style numbers and indicators and provided APIs for setting and querying this.

      + + +

      Autocompletion

      + +

      Autocompletion displays a list box showing likely identifiers based upon the user's typing. + The user chooses the currently selected item by pressing the tab character or another character + that is a member of the fillup character set defined with SCI_AUTOCSETFILLUPS. + Autocompletion is triggered by your application. For example, in C if you detect that the user + has just typed fred. you could look up fred, and if it has a known + list of members, you could offer them in an autocompletion list. Alternatively, you could + monitor the user's typing and offer a list of likely items once their typing has narrowed down + the choice to a reasonable list. As yet another alternative, you could define a key code to + activate the list.

      + +

      When the user makes a selection from the list the container is sent a SCN_AUTOCSELECTION notification message. On return from the notification Scintilla will insert + the selected text and the container is sent a SCN_AUTOCCOMPLETED notification message unless the autocompletion list has been cancelled, for example by the container sending + SCI_AUTOCCANCEL.

      + +

      To make use of autocompletion you must monitor each character added to the document. See + SciTEBase::CharAdded() in SciTEBase.cxx for an example of autocompletion.

      + SCI_AUTOCSHOW(int lengthEntered, const char + *itemList)
      + SCI_AUTOCCANCEL
      + SCI_AUTOCACTIVE → bool
      + SCI_AUTOCPOSSTART → position
      + SCI_AUTOCCOMPLETE
      + SCI_AUTOCSTOPS(<unused>, const char + *characterSet)
      + SCI_AUTOCSETSEPARATOR(int + separatorCharacter)
      + SCI_AUTOCGETSEPARATOR → int
      + SCI_AUTOCSELECT(<unused>, const char + *select)
      + SCI_AUTOCGETCURRENT → int
      + SCI_AUTOCGETCURRENTTEXT(<unused>, char *text) → int
      + SCI_AUTOCSETCANCELATSTART(bool + cancel)
      + SCI_AUTOCGETCANCELATSTART → bool
      + SCI_AUTOCSETFILLUPS(<unused>, const char + *characterSet)
      + SCI_AUTOCSETCHOOSESINGLE(bool + chooseSingle)
      + SCI_AUTOCGETCHOOSESINGLE → bool
      + SCI_AUTOCSETIGNORECASE(bool + ignoreCase)
      + SCI_AUTOCGETIGNORECASE → bool
      + SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR(int behaviour)
      + SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR → int
      + SCI_AUTOCSETMULTI(int multi)
      + SCI_AUTOCGETMULTI → int
      + SCI_AUTOCSETORDER(int order)
      + SCI_AUTOCGETORDER → int
      + SCI_AUTOCSETAUTOHIDE(bool autoHide)
      + SCI_AUTOCGETAUTOHIDE → bool
      + SCI_AUTOCSETDROPRESTOFWORD(bool + dropRestOfWord)
      + SCI_AUTOCGETDROPRESTOFWORD → bool
      + SCI_REGISTERIMAGE(int type, const char *xpmData)
      + SCI_REGISTERRGBAIMAGE(int type, const char *pixels)
      + SCI_CLEARREGISTEREDIMAGES
      + SCI_AUTOCSETTYPESEPARATOR(int separatorCharacter)
      + SCI_AUTOCGETTYPESEPARATOR → int
      + SCI_AUTOCSETMAXHEIGHT(int rowCount)
      + SCI_AUTOCGETMAXHEIGHT → int
      + SCI_AUTOCSETMAXWIDTH(int characterCount)
      + SCI_AUTOCGETMAXWIDTH → int
      +
      + +

      SCI_AUTOCSHOW(int lengthEntered, const char *itemList)
      + This message causes a list to be displayed. lengthEntered is the number of + characters of the word already entered and itemList is the list of words separated by + separator characters. The initial separator character is a space but this can be set or got + with SCI_AUTOCSETSEPARATOR + and SCI_AUTOCGETSEPARATOR.

      + +

      With default settings, the list of words should be in sorted order. + If set to ignore case mode with SCI_AUTOCSETIGNORECASE, then + strings are matched after being converted to upper case. One result of this is that the list + should be sorted with the punctuation characters '[', '\', ']', '^', '_', and '`' sorted after + letters. + Alternative handling of list order may be specified with SCI_AUTOCSETORDER +

      + +

      SCI_AUTOCCANCEL
      + This message cancels any displayed autocompletion list. When in autocompletion mode, the list + should disappear when the user types a character that can not be part of the autocompletion, + such as '.', '(' or '[' when typing an identifier. A set of characters that will cancel + autocompletion can be specified with SCI_AUTOCSTOPS.

      + +

      SCI_AUTOCACTIVE → bool
      + This message returns non-zero if there is an active autocompletion list and zero if there is + not.

      + +

      SCI_AUTOCPOSSTART → position
      + This returns the value of the current position when SCI_AUTOCSHOW started display + of the list.

      + +

      SCI_AUTOCCOMPLETE
      + This message triggers autocompletion. This has the same effect as the tab key.

      + +

      SCI_AUTOCSTOPS(<unused>, const char *characterSet)
      + The characterSet argument is a string containing a list of characters that will + automatically cancel the autocompletion list. When you start the editor, this list is + empty.

      + +

      SCI_AUTOCSETSEPARATOR(int separatorCharacter)
      + SCI_AUTOCGETSEPARATOR → int
      + These two messages set and get the separator character used to separate words in the + SCI_AUTOCSHOW list. The default is the space character.

      + +

      SCI_AUTOCSELECT(<unused>, const char *select)
      + SCI_AUTOCGETCURRENT → int
      + This message selects an item in the autocompletion list. It searches the list of words for the + first that matches select. By default, comparisons are case sensitive, but you can + change this with SCI_AUTOCSETIGNORECASE. The match is character + by character for the length of the select string. That is, if select is "Fred" it + will match "Frederick" if this is the first item in the list that begins with "Fred". If an + item is found, it is selected. If the item is not found, the autocompletion list closes if + auto-hide is true (see SCI_AUTOCSETAUTOHIDE).
      + The current selection index can be retrieved with SCI_AUTOCGETCURRENT.

      + +

      SCI_AUTOCGETCURRENTTEXT(<unused>, char *text NUL-terminated) → int
      + This message retrieves the current selected text in the autocompletion list. Normally the + SCN_AUTOCSELECTION notification + is used instead.

      + +

      The value is copied to the text buffer, returning the length (not including the + terminating 0). If not found, an empty string is copied to the buffer and 0 is returned.

      + +

      If the value argument is 0 then the length that should be allocated to store the value is + returned; again, the terminating 0 is not included.

      + +

      SCI_AUTOCSETCANCELATSTART(bool cancel)
      + SCI_AUTOCGETCANCELATSTART → bool
      + The default behaviour is for the list to be cancelled if the caret moves to the location it + was at when the list was displayed. By calling this message with a false argument, + the list is not cancelled until the caret moves at least one character before the word being + completed.

      + +

      SCI_AUTOCSETFILLUPS(<unused>, const char *characterSet)
      + If a fillup character is typed with an autocompletion list active, the currently selected item + in the list is added into the document, then the fillup character is added. Common fillup + characters are '(', '[' and '.' but others are possible depending on the language. By default, + no fillup characters are set.

      + +

      SCI_AUTOCSETCHOOSESINGLE(bool chooseSingle)
      + SCI_AUTOCGETCHOOSESINGLE → bool
      + If you use SCI_AUTOCSETCHOOSESINGLE(1) and a list has only one item, it is + automatically added and no list is displayed. The default is to display the list even if there + is only a single item.

      + +

      SCI_AUTOCSETIGNORECASE(bool ignoreCase)
      + SCI_AUTOCGETIGNORECASE → bool
      + By default, matching of characters to list members is case sensitive. These messages let you + set and get case sensitivity.

      + +

      SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR(int behaviour)
      + SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR → int
      + When autocompletion is set to ignore case (SCI_AUTOCSETIGNORECASE), by default it will + nonetheless select the first list member that matches in a case sensitive way to entered characters. + This corresponds to a behaviour property of SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE (0). + If you want autocompletion to ignore case at all, choose SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE (1).

      + +

      SCI_AUTOCSETMULTI(int multi)
      + SCI_AUTOCGETMULTI → int
      + When autocompleting with multiple selections present, the autocompleted text can go into just the main selection with + SC_MULTIAUTOC_ONCE (0) or into each selection with SC_MULTIAUTOC_EACH (1). + The default is SC_MULTIAUTOC_ONCE.

      + +

      SCI_AUTOCSETORDER(int order)
      + SCI_AUTOCGETORDER → int
      + The default setting SC_ORDER_PRESORTED (0) requires that the list be provided in alphabetical sorted order. +

      +

      Sorting the list can be done by Scintilla instead of the application with SC_ORDER_PERFORMSORT (1). + This will take additional time. +

      +

      Applications that wish to prioritize some values and show the list in order of priority instead + of alphabetical order can use SC_ORDER_CUSTOM (2). + This requires extra processing in SCI_AUTOCSHOW to create a sorted index. +

      +

      Setting the order should be done before calling SCI_AUTOCSHOW. +

      + +

      SCI_AUTOCSETAUTOHIDE(bool autoHide)
      + SCI_AUTOCGETAUTOHIDE → bool
      + By default, the list is cancelled if there are no viable matches (the user has typed + characters that no longer match a list entry). If you want to keep displaying the original + list, set autoHide to false. This also effects SCI_AUTOCSELECT.

      + +

      SCI_AUTOCSETDROPRESTOFWORD(bool dropRestOfWord)
      + SCI_AUTOCGETDROPRESTOFWORD → bool
      + When an item is selected, any word characters following the caret are first erased if + dropRestOfWord is set true. The default is false.

      + +

      + SCI_REGISTERIMAGE(int type, const char *xpmData)
      + SCI_REGISTERRGBAIMAGE(int type, const char *pixels)
      + SCI_CLEARREGISTEREDIMAGES
      + SCI_AUTOCSETTYPESEPARATOR(int separatorCharacter)
      + SCI_AUTOCGETTYPESEPARATOR → int
      + + Autocompletion list items may display an image as well as text. Each image is first registered with an integer + type. Then this integer is included in the text of the list separated by a '?' from the text. For example, + "fclose?2 fopen" displays image 2 before the string "fclose" and no image before "fopen". + The images are in either the XPM format (SCI_REGISTERIMAGE) or + RGBA format (SCI_REGISTERRGBAIMAGE). + For SCI_REGISTERRGBAIMAGE the width and height must previously been set with + the SCI_RGBAIMAGESETWIDTH and + SCI_RGBAIMAGESETHEIGHT messages. + The set of registered images can be cleared with SCI_CLEARREGISTEREDIMAGES and the '?' separator changed + with SCI_AUTOCSETTYPESEPARATOR. +

      + +

      + SCI_AUTOCSETMAXHEIGHT(int rowCount)
      + SCI_AUTOCGETMAXHEIGHT → int
      + + Get or set the maximum number of rows that will be visible in an autocompletion list. If there are more rows in the list, then a vertical + scrollbar is shown. The default is 5. +

      + +

      + SCI_AUTOCSETMAXWIDTH(int characterCount)
      + SCI_AUTOCGETMAXWIDTH → int
      + + Get or set the maximum width of an autocompletion list expressed as the number of characters in the longest item that will be totally visible. + If zero (the default) then the list's width is calculated to fit the item with the most characters. Any items that cannot be fully displayed within + the available width are indicated by the presence of ellipsis. +

      + +

      User lists

      + +

      User lists use the same internal mechanisms as autocompletion lists, and all the calls + listed for autocompletion work on them; you cannot display a user list at the same time as an + autocompletion list is active. They differ in the following respects:

      + + SCI_USERLISTSHOW(int listType, const char *itemList)
      + +

      o The SCI_AUTOCSETCHOOSESINGLE message has no + effect.
      + o When the user makes a selection you are sent a SCN_USERLISTSELECTION notification message rather than SCN_AUTOCSELECTION.

      + +

      BEWARE: if you have set fillup characters or stop characters, these will still be active + with the user list, and may result in items being selected or the user list cancelled due to + the user typing into the editor.

      + +

      SCI_USERLISTSHOW(int listType, const char *itemList)
      + The listType parameter is returned to the container as the wParam + field of the SCNotification + structure. It must be greater than 0 as this is how Scintilla tells the difference between an + autocompletion list and a user list. If you have different types of list, for example a list of + buffers and a list of macros, you can use listType to tell which one has returned + a selection.

      + +

      Call tips

      + +

      Call tips are small windows displaying the arguments to a function and are displayed after + the user has typed the name of the function. They normally display characters using the font + facename, size and character set defined by + STYLE_DEFAULT. You can choose to + use STYLE_CALLTIP to define the + facename, size, foreground and background colours and character set with + SCI_CALLTIPUSESTYLE. + This also enables support for Tab characters. + + There is some interaction between call tips and autocompletion lists in that showing a + call tip cancels any active autocompletion list, and vice versa.

      + +

      Call tips are not implemented on Qt.

      + +

      Call tips can highlight part of the text within them. You could use this to highlight the + current argument to a function by counting the number of commas (or whatever separator your + language uses). See SciTEBase::CharAdded() in SciTEBase.cxx for an + example of call tip use.

      + +

      The mouse may be clicked on call tips and this causes a + SCN_CALLTIPCLICK + notification to be sent to the container. Small up and down arrows may be displayed within + a call tip by, respectively, including the characters '\001', or '\002'. This is useful + for showing that there are overloaded variants of one function name and that the user can + click on the arrows to cycle through the overloads.

      + +

      Alternatively, call tips can be displayed when you leave the mouse pointer for a while over + a word in response to the SCN_DWELLSTART notification and cancelled in response to SCN_DWELLEND. This method could be used in a debugger to give + the value of a variable, or during editing to give information about the word under the + pointer.

      + SCI_CALLTIPSHOW(int pos, const char + *definition)
      + SCI_CALLTIPCANCEL
      + SCI_CALLTIPACTIVE → bool
      + SCI_CALLTIPPOSSTART → position
      + SCI_CALLTIPSETPOSSTART(int posStart)
      + SCI_CALLTIPSETHLT(int highlightStart, int + highlightEnd)
      + SCI_CALLTIPSETBACK(colour back)
      + SCI_CALLTIPSETFORE(colour fore)
      + SCI_CALLTIPSETFOREHLT(colour fore)
      + SCI_CALLTIPUSESTYLE(int tabSize)
      + SCI_CALLTIPSETPOSITION(bool above)
      +
      + +

      SCI_CALLTIPSHOW(int pos, const char *definition)
      + This message starts the process by displaying the call tip window. If a call tip is already + active, this has no effect.
      + pos is the position in the document at which to align the call tip. The call + tip text is aligned to start 1 line below this character unless you have included up and/or + down arrows in the call tip text in which case the tip is aligned to the right-hand edge of + the rightmost arrow. The assumption is that you will start the text with something like + "\001 1 of 3 \002".
      + definition is the call tip text. This can contain multiple lines separated by + '\n' (Line Feed, ASCII code 10) characters. Do not include '\r' (Carriage Return, ASCII + code 13), as this will most likely print as an empty box. '\t' (Tab, ASCII code 9) is + supported if you set a tabsize with + SCI_CALLTIPUSESTYLE.
      + The position of the caret is remembered here so that the call tip can be cancelled automatically if subsequent deletion + moves the caret before this position.

      + +

      SCI_CALLTIPCANCEL
      + This message cancels any displayed call tip. Scintilla will also cancel call tips for you if + you use any keyboard commands that are not compatible with editing the argument list of a + function. + Call tips are cancelled if you delete back past the position where the caret was when the tip was triggered.

      + +

      SCI_CALLTIPACTIVE → bool
      + This returns 1 if a call tip is active and 0 if it is not active.

      + +

      SCI_CALLTIPPOSSTART → position
      + SCI_CALLTIPSETPOSSTART(int posStart)
      + This message returns or sets the value of the current position when SCI_CALLTIPSHOW + started to display the tip.

      + +

      SCI_CALLTIPSETHLT(int highlightStart, int highlightEnd)
      + This sets the region of the call tips text to display in a highlighted style. + highlightStart is the zero-based index into the string of the first character to + highlight and highlightEnd is the index of the first character after the highlight. + highlightEnd must be greater than highlightStart; + highlightEnd-highlightStart is the + number of characters to highlight. Highlights can extend over line ends if this is + required.

      + +

      Unhighlighted text is drawn in a mid grey. Selected text is drawn in a dark blue. The + background is white. These can be changed with + SCI_CALLTIPSETBACK, + SCI_CALLTIPSETFORE, and + SCI_CALLTIPSETFOREHLT. +

      + +

      SCI_CALLTIPSETBACK(colour back)
      + The background colour of call tips can be set with this message; the default colour is white. + It is not a good idea to set a dark colour as the background as the default colour for normal + calltip text is mid grey and the default colour for highlighted text is dark blue. This also + sets the background colour of STYLE_CALLTIP.

      + +

      SCI_CALLTIPSETFORE(colour fore)
      + The colour of call tip text can be set with this message; the default colour is mid grey. + This also sets the foreground colour of STYLE_CALLTIP.

      + +

      SCI_CALLTIPSETFOREHLT(colour fore)
      + The colour of highlighted call tip text can be set with this message; the default colour + is dark blue.

      + +

      SCI_CALLTIPUSESTYLE(int tabSize)
      + This message changes the style used for call tips from STYLE_DEFAULT to + STYLE_CALLTIP and sets a tab size in screen pixels. If tabsize is + less than 1, Tab characters are not treated specially. Once this call has been used, the + call tip foreground and background colours are also taken from the style.

      + +

      SCI_CALLTIPSETPOSITION(bool above)
      + By default the calltip is displayed below the text, setting above to true + (1) will display it above the text.

      + + +

      Keyboard commands

      + +

      To allow the container application to perform any of the actions available to the user with + keyboard, all the keyboard actions are messages. They do not take any parameters. These + commands are also used when redefining the key bindings with the SCI_ASSIGNCMDKEY message.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SCI_LINEDOWNSCI_LINEDOWNEXTENDSCI_LINEDOWNRECTEXTENDSCI_LINESCROLLDOWN
      SCI_LINEUPSCI_LINEUPEXTENDSCI_LINEUPRECTEXTENDSCI_LINESCROLLUP
      SCI_PARADOWNSCI_PARADOWNEXTENDSCI_PARAUPSCI_PARAUPEXTEND
      SCI_CHARLEFTSCI_CHARLEFTEXTENDSCI_CHARLEFTRECTEXTEND
      SCI_CHARRIGHTSCI_CHARRIGHTEXTENDSCI_CHARRIGHTRECTEXTEND
      SCI_WORDLEFTSCI_WORDLEFTEXTENDSCI_WORDRIGHTSCI_WORDRIGHTEXTEND
      SCI_WORDLEFTENDSCI_WORDLEFTENDEXTENDSCI_WORDRIGHTENDSCI_WORDRIGHTENDEXTEND
      SCI_WORDPARTLEFTSCI_WORDPARTLEFTEXTENDSCI_WORDPARTRIGHTSCI_WORDPARTRIGHTEXTEND
      SCI_HOMESCI_HOMEEXTENDSCI_HOMERECTEXTEND
      SCI_HOMEDISPLAYSCI_HOMEDISPLAYEXTENDSCI_HOMEWRAPSCI_HOMEWRAPEXTEND
      SCI_VCHOMESCI_VCHOMEEXTENDSCI_VCHOMERECTEXTEND
      SCI_VCHOMEWRAPSCI_VCHOMEWRAPEXTENDSCI_VCHOMEDISPLAYSCI_VCHOMEDISPLAYEXTEND
      SCI_LINEENDSCI_LINEENDEXTENDSCI_LINEENDRECTEXTEND
      SCI_LINEENDDISPLAYSCI_LINEENDDISPLAYEXTENDSCI_LINEENDWRAPSCI_LINEENDWRAPEXTEND
      SCI_DOCUMENTSTARTSCI_DOCUMENTSTARTEXTENDSCI_DOCUMENTENDSCI_DOCUMENTENDEXTEND
      SCI_PAGEUPSCI_PAGEUPEXTENDSCI_PAGEUPRECTEXTEND
      SCI_PAGEDOWNSCI_PAGEDOWNEXTENDSCI_PAGEDOWNRECTEXTEND
      SCI_STUTTEREDPAGEUPSCI_STUTTEREDPAGEUPEXTEND
      SCI_STUTTEREDPAGEDOWNSCI_STUTTEREDPAGEDOWNEXTEND
      SCI_DELETEBACKSCI_DELETEBACKNOTLINE
      SCI_DELWORDLEFTSCI_DELWORDRIGHTSCI_DELWORDRIGHTEND
      SCI_DELLINELEFTSCI_DELLINERIGHTSCI_LINEDELETESCI_LINECUT
      SCI_LINECOPYSCI_LINETRANSPOSESCI_LINEREVERSESCI_LINEDUPLICATE
      SCI_LOWERCASESCI_UPPERCASESCI_CANCELSCI_EDITTOGGLEOVERTYPE
      SCI_NEWLINESCI_FORMFEEDSCI_TABSCI_BACKTAB
      SCI_SELECTIONDUPLICATESCI_VERTICALCENTRECARET
      SCI_MOVESELECTEDLINESUPSCI_MOVESELECTEDLINESDOWN
      SCI_SCROLLTOSTARTSCI_SCROLLTOEND
      + +

      The SCI_*EXTEND messages extend the selection.

      + +

      The SCI_*RECTEXTEND messages extend the rectangular selection + (and convert regular selection to rectangular one, if any).

      + +

      The SCI_WORDPART* commands are used to move between word segments marked by + capitalisation (aCamelCaseIdentifier) or underscores (an_under_bar_ident).

      + +

      The SCI_WORD[LEFT|RIGHT]END* commands are + similar to SCI_WORD[LEFT|RIGHT]* but move between word ends instead of word starts.

      + +

      The SCI_HOME* commands move the caret to the start of the line, while the + SCI_VCHOME* commands move the caret to the first non-blank character of the line + (ie. just after the indentation) unless it is already there; in this case, it acts as SCI_HOME*.

      + +

      The SCI_[HOME|LINEEND]DISPLAY* commands are used when in line wrap mode to + allow movement to the start or end of display lines as opposed to the normal + SCI_[HOME|LINEEND] commands which move to the start or end of document lines.

      + +

      The SCI_[[VC]HOME|LINEEND]WRAP* commands are like their namesakes + SCI_[[VC]HOME|LINEEND]* except they behave differently when word-wrap is enabled: + They go first to the start / end of the display line, like SCI_[HOME|LINEEND]DISPLAY*, + but if the cursor is already at the point, it goes on to the start or end of the document line, + as appropriate for SCI_[[VC]HOME|LINEEND]*. +

      + +

      The SCI_SCROLLTO[START|END] commands scroll the document to the start + or end without changing the selection. These commands match OS X platform conventions for the behaviour of the + home and end keys. Scintilla can be made to match OS X applications + by binding the home and end keys to these commands. +

      + +

      The SCI_CANCEL command cancels autocompletion and + calltip display and drops any additional selections. +

      + +

      Key bindings

      + +

      There is a default binding of keys to commands that is defined in the Scintilla source in + the file KeyMap.cxx by the constant KeyMap::MapDefault[]. This table + maps key definitions to SCI_* messages with no parameters (mostly the keyboard commands discussed above, but any Scintilla + command that has no arguments can be mapped). You can change the mapping to suit your own + requirements.

      + SCI_ASSIGNCMDKEY(int keyDefinition, int + sciCommand)
      + SCI_CLEARCMDKEY(int keyDefinition)
      + SCI_CLEARALLCMDKEYS
      + SCI_NULL
      +
      + +

      keyDefinition
      + A key definition contains the key code in the low 16-bits and the key modifiers in the high + 16-bits. To combine keyCode and keyMod set:
      +
      + keyDefinition = keyCode + (keyMod << 16)

      + +

      The key code is a visible or control character or a key from the SCK_* + enumeration, which contains:
      + SCK_ADD, SCK_BACK, SCK_DELETE, SCK_DIVIDE, + SCK_DOWN, SCK_END, SCK_ESCAPE, SCK_HOME, + SCK_INSERT, SCK_LEFT, SCK_MENU, SCK_NEXT (Page Down), + SCK_PRIOR (Page Up), SCK_RETURN, SCK_RIGHT, + SCK_RWIN, + SCK_SUBTRACT, SCK_TAB, SCK_UP, and + SCK_WIN.

      + +

      The modifiers are a combination of zero or more of SCMOD_ALT, + SCMOD_CTRL, SCMOD_SHIFT, + SCMOD_META, and SCMOD_SUPER. + On OS X, the Command key is mapped to SCMOD_CTRL and the Control key to + SCMOD_META. + SCMOD_SUPER is only available on GTK+ which is commonly the Windows key. + If you are building a table, you might + want to use SCMOD_NORM, which has the value 0, to mean no modifiers.

      + +

      SCI_ASSIGNCMDKEY(int keyDefinition, int sciCommand)
      + This assigns the given key definition to a Scintilla command identified by + sciCommand. sciCommand can be any SCI_* command that has + no arguments.

      + +

      SCI_CLEARCMDKEY(int keyDefinition)
      + This makes the given key definition do nothing by assigning the action SCI_NULL + to it.

      + +

      SCI_CLEARALLCMDKEYS
      + This command removes all keyboard command mapping by setting an empty mapping table.

      + +

      SCI_NULL
      + The SCI_NULL does nothing and is the value assigned to keys that perform no + action. SCI_NULL ensures that keys do not propagate to the parent window as that may + cause focus to move. If you want the standard platform behaviour use the constant 0 instead.

      + +

      Popup edit menu

      + + SCI_USEPOPUP(int popUpMode)
      +
      + +

      SCI_USEPOPUP(int popUpMode)
      + Clicking the wrong button on the mouse pops up a short default editing menu. This may be + turned off with SCI_USEPOPUP(SC_POPUP_NEVER). If you turn it off, context menu commands (in + Windows, WM_CONTEXTMENU) will not be handled by Scintilla, so the parent of the + Scintilla window will have the opportunity to handle the message.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueMeaning
      SC_POPUP_NEVER0Never show default editing menu.
      SC_POPUP_ALL1Show default editing menu if clicking on scintilla.
      SC_POPUP_TEXT2Show default editing menu only if clicking on text area.
      + +

      Macro recording

      + +

      Start and stop macro recording mode. In macro recording mode, actions are reported to the + container through SCN_MACRORECORD + notifications. It is then up to the container to + record these actions for future replay.

      + + SCI_STARTRECORD
      + SCI_STOPRECORD
      +
      + +

      SCI_STARTRECORD
      + SCI_STOPRECORD
      + These two messages turn macro recording on and off.

      + +

      Printing

      + +

      SCI_FORMATRANGE can be used to draw the text onto a display surface + which can include a printer display surface. Printed output shows text styling as on the + screen, but it hides all margins except a line number margin. All special marker effects are + removed and the selection and caret are hidden.

      + +

      Different platforms use different display surface ID types to print on. On Windows, these are + HDCs., on GTK+ 3.x cairo_t *, + and on Cocoa CGContextRef is used.

      + + SCI_FORMATRANGE(bool draw, Sci_RangeToFormat *fr) → position
      + SCI_SETPRINTMAGNIFICATION(int + magnification)
      + SCI_GETPRINTMAGNIFICATION → int
      + SCI_SETPRINTCOLOURMODE(int mode)
      + SCI_GETPRINTCOLOURMODE → int
      + SCI_SETPRINTWRAPMODE(int wrapMode)
      + SCI_GETPRINTWRAPMODE → int
      +
      + +

      SCI_FORMATRANGE(bool draw, Sci_RangeToFormat *fr) → position
      + This call renders a range of text into a device context. If you use + this for printing, you will probably want to arrange a page header and footer; Scintilla does + not do this for you. See SciTEWin::Print() in SciTEWinDlg.cxx for an + example. Each use of this message renders a range of text into a rectangular area and returns + the position in the document of the next character to print.

      + +

      draw controls if any output is done. Set this to false if you are paginating + (for example, if you use this with MFC you will need to paginate in + OnBeginPrinting() before you output each page.

      +
      +struct Sci_Rectangle { int left; int top; int right; int bottom; };
      +
      +struct Sci_RangeToFormat {
      +    Sci_SurfaceID hdc;        // The Surface ID we print to
      +    Sci_SurfaceID hdcTarget;  // The Surface ID we use for measuring (may be same as hdc)
      +    Sci_Rectangle rc;         // Rectangle in which to print
      +    Sci_Rectangle rcPage;     // Physically printable page size
      +    Sci_CharacterRange chrg;  // Range of characters to print
      +};
      +
      + +

      On Windows, hdc and hdcTarget should both be set to the device context handle + of the output device (usually a printer). If you print to a metafile these will not be the same + as Windows metafiles (unlike extended metafiles) do not implement the full API for returning + information. In this case, set hdcTarget to the screen DC.
      + rcPage is the rectangle {0, 0, maxX, maxY} where maxX+1 + and maxY+1 are the number of physically printable pixels in x and y.
      + rc is the rectangle to render the text in (which will, of course, fit within the + rectangle defined by rcPage).
      + chrg.cpMin and chrg.cpMax define the start position and maximum + position of characters to output. All of each line within this character range is drawn.

      + +

      On Cocoa, the surface IDs for printing (draw=1) should be the graphics port of the current context + ((CGContextRef) [[NSGraphicsContext currentContext] graphicsPort]) when the view's drawRect method is called. + The Surface IDs are not really used for measurement (draw=0) but can be set + to a bitmap context (created with CGBitmapContextCreate) to avoid runtime warnings.

      + +

      On GTK+, the surface IDs to use can be found from the printing context with + gtk_print_context_get_cairo_context(context).

      + +

      chrg.cpMin and chrg.cpMax define the start position and maximum + position of characters to output. All of each line within this character range is drawn.

      + +

      When printing, the most tedious part is always working out what the margins should be to + allow for the non-printable area of the paper and printing a header and footer. If you look at + the printing code in SciTE, you will find that most of it is taken up with this. The loop that + causes Scintilla to render text is quite simple if you strip out all the margin, non-printable + area, header and footer code.

      + +

      SCI_SETPRINTMAGNIFICATION(int magnification)
      + SCI_GETPRINTMAGNIFICATION → int
      + SCI_GETPRINTMAGNIFICATION lets you to print at a different size than the screen + font. magnification is the number of points to add to the size of each screen + font. A value of -3 or -4 gives reasonably small print. You can get this value with + SCI_GETPRINTMAGNIFICATION.

      + +

      SCI_SETPRINTCOLOURMODE(int mode)
      + SCI_GETPRINTCOLOURMODE → int
      + These two messages set and get the method used to render coloured text on a printer that is + probably using white paper. It is especially important to consider the treatment of colour if + you use a dark or black screen background. Printing white on black uses up toner and ink very + many times faster than the other way around. You can set the mode to one of:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValuePurpose
      SC_PRINT_NORMAL0Print using the current screen colours with the exception of line number margins which print on a white background. + This is the default.
      SC_PRINT_INVERTLIGHT1If you use a dark screen background this saves ink by inverting the light value of + all colours and printing on a white background.
      SC_PRINT_BLACKONWHITE2Print all text as black on a white background.
      SC_PRINT_COLOURONWHITE3Everything prints in its own colour on a white background.
      SC_PRINT_COLOURONWHITEDEFAULTBG4Everything prints in its own foreground colour but all styles up to and including STYLE_LINENUMBER will print + on a white background.
      SC_PRINT_SCREENCOLOURS5Print using the current screen colours for both foreground and background. + This is the only mode that does not set the background colour of the line number margin to white.
      + +

      SCI_SETPRINTWRAPMODE(int wrapMode)
      + SCI_GETPRINTWRAPMODE → int
      + These two functions get and set the printer wrap mode. wrapMode can be + set to SC_WRAP_NONE (0), SC_WRAP_WORD (1) or + SC_WRAP_CHAR (2). The default is + SC_WRAP_WORD, which wraps printed output so that all characters fit + into the print rectangle. If you set SC_WRAP_NONE, each line of text + generates one line of output and the line is truncated if it is too long to fit + into the print area.
      + SC_WRAP_WORD tries to wrap only between words as indicated by + white space or style changes although if a word is longer than a line, it will be wrapped before + the line end. SC_WRAP_CHAR is preferred to + SC_WRAP_WORD for Asian languages where there is no white space + between words.

      + +

      Direct access

      + SCI_GETDIRECTFUNCTION → int
      + SCI_GETDIRECTPOINTER → int
      + SCI_GETCHARACTERPOINTER → int
      + SCI_GETRANGEPOINTER(int start, int lengthRange) → int
      + SCI_GETGAPPOSITION → position
      +
      + +

      On Windows, the message-passing scheme used to communicate between the container and + Scintilla is mediated by the operating system SendMessage function and can lead to + bad performance when calling intensively. To avoid this overhead, Scintilla provides messages + that allow you to call the Scintilla message function directly. The code to do this in C/C++ is + of the form:

      +
      +#include "Scintilla.h"
      +SciFnDirect pSciMsg = (SciFnDirect)SendMessage(hSciWnd, SCI_GETDIRECTFUNCTION, 0, 0);
      +sptr_t pSciWndData = (sptr_t)SendMessage(hSciWnd, SCI_GETDIRECTPOINTER, 0, 0);
      +
      +// now a wrapper to call Scintilla directly
      +sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
      +    return pSciMsg(pSciWndData, iMessage, wParam, lParam);
      +}
      +
      + +

      SciFnDirect, sptr_t and uptr_t are declared in + Scintilla.h. hSciWnd is the window handle returned when you created + the Scintilla window.

      + +

      While faster, this direct calling will cause problems if performed from a different thread + to the native thread of the Scintilla window in which case SendMessage(hSciWnd, SCI_*, + wParam, lParam) should be used to synchronize with the window's thread.

      + +

      This feature also works on GTK+ but has no significant impact on speed.

      + +

      From version 1.47 on Windows, Scintilla exports a function called + Scintilla_DirectFunction that can be used the same as the function returned by + SCI_GETDIRECTFUNCTION. This saves you the call to + SCI_GETDIRECTFUNCTION and the need to call Scintilla indirectly via the function + pointer.

      + +

      SCI_GETDIRECTFUNCTION → int
      + This message returns the address of the function to call to handle Scintilla messages without + the overhead of passing through the Windows messaging system. You need only call this once, + regardless of the number of Scintilla windows you create.

      + +

      SCI_GETDIRECTPOINTER → int
      + This returns a pointer to data that identifies which Scintilla window is in use. You must call + this once for each Scintilla window you create. When you call the direct function, you must + pass in the direct pointer associated with the target window.

      + +

      SCI_GETCHARACTERPOINTER → int
      + SCI_GETRANGEPOINTER(int start, int lengthRange) → int
      + SCI_GETGAPPOSITION → position
      + Grant temporary direct read-only access to the memory used by Scintilla to store + the document.

      +

      SCI_GETCHARACTERPOINTER moves the gap within Scintilla so that the + text of the document is stored consecutively + and ensure there is a NUL character after the text, then returns a pointer to the first character. + Applications may then pass this to a function that accepts a character pointer such as a regular + expression search or a parser. The pointer should not be written to as that may desynchronize + the internal state of Scintilla.

      +

      Since any action in Scintilla may change its internal state + this pointer becomes invalid after any call or by allowing user interface activity. The application + should reacquire the pointer after making any call to Scintilla or performing any user-interface calls such + as modifying a progress indicator.

      +

      This call takes similar time to inserting a character at the end of the document and this may + include moving the document contents. Specifically, all the characters after the document gap + are moved to before the gap. This compacted state should persist over calls and user interface + actions that do not change the document contents so reacquiring the pointer afterwards is very + quick. If this call is used to implement a global replace operation, then each replacement will + move the gap so if SCI_GETCHARACTERPOINTER is called after + each replacement then the operation will become O(n^2) rather than O(n). Instead, all + matches should be found and remembered, then all the replacements performed.

      + +

      SCI_GETRANGEPOINTER provides direct access to just the + range requested. The gap is not moved unless it is within the requested range so this call + can be faster than SCI_GETCHARACTERPOINTER. + This can be used by application code that is able to act on blocks of text or ranges of lines.

      + +

      SCI_GETGAPPOSITION returns the current gap position. + This is a hint that applications can use to avoid calling SCI_GETRANGEPOINTER + with a range that contains the gap and consequent costs of moving the gap.

      + +

      Multiple views

      + +

      A Scintilla window and the document that it displays are separate entities. When you create + a new window, you also create a new, empty document. Each document has a reference count that + is initially set to 1. The document also has a list of the Scintilla windows that are linked to + it so when any window changes the document, all other windows in which it appears are notified + to cause them to update. The system is arranged in this way so that you can work with many + documents in a single Scintilla window and so you can display a single document in multiple + windows (for use with splitter windows).

      + +

      Although these messages use document *doc, to ensure compatibility with future + releases of Scintilla you should treat doc as an opaque void*. That + is, you can use and store the pointer as described in this section but you should not + dereference it.

      + SCI_GETDOCPOINTER → document *
      + SCI_SETDOCPOINTER(<unused>, document + *doc)
      + SCI_CREATEDOCUMENT(int bytes, int documentOptions) → document *
      + SCI_ADDREFDOCUMENT(<unused>, document + *doc)
      + SCI_RELEASEDOCUMENT(<unused>, document + *doc)
      + SCI_GETDOCUMENTOPTIONS → int
      +
      + +

      SCI_GETDOCPOINTER → document *
      + This returns a pointer to the document currently in use by the window. It has no other + effect.

      + +

      SCI_SETDOCPOINTER(<unused>, document *doc)
      + This message does the following:
      + 1. It removes the current window from the list held by the current document.
      + 2. It reduces the reference count of the current document by 1.
      + 3. If the reference count reaches 0, the document is deleted.
      + 4. doc is set as the new document for the window.
      + 5. If doc was 0, a new, empty document is created and attached to the + window.
      + 6. If doc was not 0, its reference count is increased by 1.

      + +

      SCI_CREATEDOCUMENT(int bytes, int documentOptions) → document *
      + This message creates a new, empty document and returns a pointer to it. This document is not + selected into the editor and starts with a reference count of 1. This means that you have + ownership of it and must either reduce its reference count by 1 after using + SCI_SETDOCPOINTER so that the Scintilla window owns it or you must make sure that + you reduce the reference count by 1 with SCI_RELEASEDOCUMENT before you close the + application to avoid memory leaks. The bytes argument determines + the initial memory allocation for the document as it is more efficient + to allocate once rather than rely on the buffer growing as data is added. + If SCI_CREATEDOCUMENT fails then 0 is returned.

      + +

      The documentOptions argument + chooses between different document capabilities which affect memory allocation and performance with + SC_DOCUMENTOPTION_DEFAULT (0) choosing standard options. + SC_DOCUMENTOPTION_STYLES_NONE (0x1) stops allocation of memory to style characters + which saves significant memory, often 40% with the whole document treated as being style 0. + Lexers may still produce visual styling by using indicators. + SC_DOCUMENTOPTION_TEXT_LARGE (0x100) accomodates documents larger than 2 GigaBytes + in 64-bit executables. +

      + +

      With SC_DOCUMENTOPTION_STYLES_NONE, lexers are still active and may display + indicators. Some may produce folding information althoough most require lexical styles to correctly determine folding. + Its often more efficient to set the null lexer SCLEX_NULL so no lexer is run. +

      + +

      The SC_DOCUMENTOPTION_TEXT_LARGE option is experimental and has not been + thoroughly tested. Lexers may fail or hang when lexing past 2GB or 4GB. + Applications using this option should be tested to ensure the option works in their circumstances and each lexer + included should also be tested with documents larger than 4GB. + For many applications lexing documents larger than 4GB will be too sluggish so SC_DOCUMENTOPTION_STYLES_NONE + and the null lexer SCLEX_NULL can be used. Another approach is to turn on idle styling with + SCI_SETIDLESTYLING. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      SC_DOCUMENTOPTION_DEFAULT0Standard behaviour
      SC_DOCUMENTOPTION_STYLES_NONE0x1Stop allocation of memory for styles and treat all text as style 0.
      SC_DOCUMENTOPTION_TEXT_LARGE0x100Allow document to be larger than 2 GB.
      + +

      SCI_ADDREFDOCUMENT(<unused>, document *doc)
      + This increases the reference count of a document by 1. If you want to replace the current + document in the Scintilla window and take ownership of the current document, for example if you + are editing many documents in one window, do the following:
      + 1. Use SCI_GETDOCPOINTER to get a pointer to the document, + doc.
      + 2. Use SCI_ADDREFDOCUMENT(0, doc) to increment the reference count.
      + 3. Use SCI_SETDOCPOINTER(0, docNew) to set a different document or + SCI_SETDOCPOINTER(0, 0) to set a new, empty document.

      + +

      SCI_RELEASEDOCUMENT(<unused>, document *doc)
      + This message reduces the reference count of the document identified by doc. doc + must be the result of SCI_GETDOCPOINTER or SCI_CREATEDOCUMENT and + must point at a document that still exists. If you call this on a document with a reference + count of 1 that is still attached to a Scintilla window, bad things will happen. To keep the + world spinning in its orbit you must balance each call to SCI_CREATEDOCUMENT or + SCI_ADDREFDOCUMENT with a call to SCI_RELEASEDOCUMENT.

      + +

      SCI_GETDOCUMENTOPTIONS → int
      + Returns the options that were used to create the document.

      + +

      Background loading and saving

      + +

      To ensure a responsive user interface, applications may decide to load and save documents using a separate thread + from the user interface.

      + +

      Loading in the background

      + + SCI_CREATELOADER(int bytes, int documentOptions) → int
      +
      + +

      An application can load all of a file into a buffer it allocates on a background thread and then add the data in that buffer + into a Scintilla document on the user interface thread. That technique uses extra memory to store a complete copy of the + file and also means that the time that Scintilla takes to perform initial line end discovery blocks the user interface.

      + +

      To avoid these issues, a loader object may be created and used to load the file. The loader object supports the ILoader interface.

      + +

      SCI_CREATELOADER(int bytes, int documentOptions) → int
      + Create an object that supports the ILoader interface which can be used to load data and then + be turned into a Scintilla document object for attachment to a view object. + The bytes argument determines the initial memory allocation for the document as it is more efficient + to allocate once rather than rely on the buffer growing as data is added. + If SCI_CREATELOADER fails then 0 is returned.

      + +

      The documentOptions argument + is described in the SCI_CREATEDOCUMENT section.

      + +

      ILoader

      + +
      +class ILoader {
      +public:
      +        virtual int SCI_METHOD Release() = 0;
      +        // Returns a status code from SC_STATUS_*
      +        virtual int SCI_METHOD AddData(const char *data, Sci_Position length) = 0;
      +        virtual void * SCI_METHOD ConvertToDocument() = 0;
      +};
      +
      + +

      The application should call the AddData method with each block of data read from the file. + AddData will return SC_STATUS_OK unless a failure, such as memory exhaustion occurs. + If a failure occurs in AddData or in a file reading call then loading can be abandoned and the loader released with + the Release call. + When the whole file has been read, ConvertToDocument should be called to produce a Scintilla + document pointer. The newly created document will have a reference count of 1 in the same way as a document pointer + returned from + SCI_CREATEDOCUMENT. + There is no need to call Release after ConvertToDocument.

      + +

      Saving in the background

      + +

      An application that wants to save in the background should lock the document with SCI_SETREADONLY(1) + to prevent modifications and retrieve a pointer to the unified document contents with + SCI_GETCHARACTERPOINTER. + The buffer of a locked document will not move so the pointer is valid until the application calls SCI_SETREADONLY(0).

      + +

      If the user tries to performs a modification while the document is locked then a SCN_MODIFYATTEMPTRO notification is sent to the application. + The application may then decide to ignore the modification or to terminate the background saving thread and reenable + modification before returning from the notification.

      + +

      Folding

      + +

      The fundamental operation in folding is making lines invisible or visible. Line visibility + is a property of the view rather than the document so each view may be displaying a different + set of lines. From the point of view of the user, lines are hidden and displayed using fold + points. Generally, the fold points of a document are based on the hierarchical structure of the + document contents. In Python, the hierarchy is determined by indentation and in C++ by brace + characters. This hierarchy can be represented within a Scintilla document object by attaching a + numeric "fold level" to each line. The fold level is most easily set by a lexer, but you can + also set it with messages.

      + +

      It is up to your code to set the connection between user actions and folding and unfolding. + The best way to see how this is done is to search the SciTE source code for the messages used + in this section of the documentation and see how they are used. You will also need to use + markers and a folding margin to complete your folding implementation. + The "fold" property should be set to "1" with + SCI_SETPROPERTY("fold", "1") to enable folding.

      + SCI_VISIBLEFROMDOCLINE(int docLine) → int
      + SCI_DOCLINEFROMVISIBLE(int displayLine) → int
      + SCI_SHOWLINES(int lineStart, int lineEnd)
      + SCI_HIDELINES(int lineStart, int lineEnd)
      + SCI_GETLINEVISIBLE(int line) → bool
      + SCI_GETALLLINESVISIBLE → bool
      + SCI_SETFOLDLEVEL(int line, int level)
      + SCI_GETFOLDLEVEL(int line) → int
      + SCI_SETAUTOMATICFOLD(int automaticFold)
      + SCI_GETAUTOMATICFOLD → int
      + SCI_SETFOLDFLAGS(int flags)
      + SCI_GETLASTCHILD(int line, int level) → int
      + SCI_GETFOLDPARENT(int line) → int
      + SCI_SETFOLDEXPANDED(int line, bool + expanded)
      + SCI_GETFOLDEXPANDED(int line) → bool
      + SCI_CONTRACTEDFOLDNEXT(int lineStart) → int
      + SCI_TOGGLEFOLD(int line)
      + SCI_TOGGLEFOLDSHOWTEXT(int line, const char *text)
      + SCI_FOLDDISPLAYTEXTSETSTYLE(int style)
      + SCI_FOLDLINE(int line, int action)
      + SCI_FOLDCHILDREN(int line, int action)
      + SCI_FOLDALL(int action)
      + SCI_EXPANDCHILDREN(int line, int level)
      + SCI_ENSUREVISIBLE(int line)
      + SCI_ENSUREVISIBLEENFORCEPOLICY(int + line)
      +
      + +

      SCI_VISIBLEFROMDOCLINE(int docLine) → int
      + When some lines are hidden and/or annotations are displayed, then a particular line in the + document may be displayed at a + different position to its document position. If no lines are hidden and there are no annotations, + this message returns + docLine. Otherwise, this returns the display line (counting the very first visible + line as 0). The display line of an invisible line is the same as the previous visible line. The + display line number of the first line in the document is 0. If lines are hidden and + docLine is outside the range of lines in the document, the return value is -1. + Lines can occupy more than one display line if they wrap.

      + +

      SCI_DOCLINEFROMVISIBLE(int displayLine) → int
      + When some lines are hidden and/or annotations are displayed, then a particular line in the + document may be displayed at a + different position to its document position. This message returns the document line number that + corresponds to a display line (counting the display line of the first line in the document as + 0). If displayLine is less than or equal to 0, the result is 0. If + displayLine is greater than or equal to the number of displayed lines, the result + is the number of lines in the document.

      + +

      SCI_SHOWLINES(int lineStart, int lineEnd)
      + SCI_HIDELINES(int lineStart, int lineEnd)
      + SCI_GETLINEVISIBLE(int line) → bool
      + SCI_GETALLLINESVISIBLE → bool
      + The first two messages mark a range of lines as visible or invisible and then redraw the + display. + SCI_GETLINEVISIBLE reports on the visible state of a line and returns 1 if it is + visible and 0 if it is not visible. + SCI_GETALLLINESVISIBLE returns 1 if all lines are visible and 0 + if some lines are hidden. + These messages have no effect on fold levels or fold + flags. The first line can not be hidden.

      + +

      SCI_SETFOLDLEVEL(int line, int level)
      + SCI_GETFOLDLEVEL(int line) → int
      + These two messages set and get a 32-bit value that contains the fold level of a line and some + flags associated with folding. The fold level is a number in the range 0 to + SC_FOLDLEVELNUMBERMASK (0x0FFF). However, the initial fold level is set to + SC_FOLDLEVELBASE (0x400) to allow unsigned arithmetic on folding levels. There are + two addition flag bits. SC_FOLDLEVELWHITEFLAG indicates that the line is blank and + allows it to be treated slightly different then its level may indicate. For example, blank + lines should generally not be fold points and will be considered part of the preceding section even though + they may have a lesser fold level. + SC_FOLDLEVELHEADERFLAG indicates that + the line is a header (fold point).

      + +

      Use SCI_GETFOLDLEVEL(line) & SC_FOLDLEVELNUMBERMASK to get the fold level + of a line. Likewise, use SCI_GETFOLDLEVEL(line) & SC_FOLDLEVEL*FLAG to get the + state of the flags. To set the fold level you must or in the associated flags. For instance, to + set the level to thisLevel and mark a line as being a fold point use: + SCI_SETFOLDLEVEL(line, thisLevel | SC_FOLDLEVELHEADERFLAG).

      + If you use a lexer, you should not need to use SCI_SETFOLDLEVEL as this is far + better handled by the lexer. You will need to use SCI_GETFOLDLEVEL to decide how + to handle user folding requests. If you do change the fold levels, the folding margin will + update to match your changes. + +

      SCI_SETFOLDFLAGS(int flags)
      + In addition to showing markers in the folding margin, you can indicate folds to the user by + drawing lines in the text area. The lines are drawn in the foreground colour set for STYLE_DEFAULT. Bits set in + flags determine where folding lines are drawn:
      +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      1Experimental feature that has been removed.
      SC_FOLDFLAG_LINEBEFORE_EXPANDED2Draw above if expanded
      SC_FOLDFLAG_LINEBEFORE_CONTRACTED4Draw above if not expanded
      SC_FOLDFLAG_LINEAFTER_EXPANDED8Draw below if expanded
      SC_FOLDFLAG_LINEAFTER_CONTRACTED16Draw below if not expanded
      SC_FOLDFLAG_LEVELNUMBERS64display hexadecimal fold levels in line margin to aid debugging of + folding. The appearance of this feature may change in the future.
      SC_FOLDFLAG_LINESTATE128display hexadecimal line state in line margin to aid debugging of lexing and folding. + May not be used at the same time as SC_FOLDFLAG_LEVELNUMBERS.
      + +

      This message causes the display to redraw.

      + +

      SCI_GETLASTCHILD(int line, int level) → int
      + This message searches for the next line after line, that has a folding level + that is less than or equal to level and then returns the previous line number. If + you set level to -1, level is set to the folding level of line + line. If from is a fold point, SCI_GETLASTCHILD(from, + -1) returns the last line that would be in made visible or hidden by toggling the fold + state.

      + +

      SCI_GETFOLDPARENT(int line) → int
      + This message returns the line number of the first line before line that is + marked as a fold point with SC_FOLDLEVELHEADERFLAG and has a fold level less than + the line. If no line is found, or if the header flags and fold levels are + inconsistent, the return value is -1.

      + +

      SCI_TOGGLEFOLD(int line)
      + SCI_TOGGLEFOLDSHOWTEXT(int line, const char *text)
      + Each fold point may be either expanded, displaying all its child lines, or contracted, hiding + all the child lines. These messages toggle the folding state of the given line as long as it has + the SC_FOLDLEVELHEADERFLAG set. These messages take care of folding or expanding + all the lines that depend on the line. The display updates after this message.

      +

      An optional text tag may be shown to the right of the folded text with the + text argument to + SCI_TOGGLEFOLDSHOWTEXT. + The text is drawn with the + STYLE_FOLDDISPLAYTEXT style.

      + +

      SCI_FOLDDISPLAYTEXTSETSTYLE(int style)
      + This message changes the appearance of fold text tags.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      SC_FOLDDISPLAYTEXT_HIDDEN0Do not display the text tags. This is the default.
      SC_FOLDDISPLAYTEXT_STANDARD1Display the text tags.
      SC_FOLDDISPLAYTEXT_BOXED2Display the text tags with a box drawn around them.
      + +

      SCI_SETFOLDEXPANDED(int line, bool expanded)
      + SCI_GETFOLDEXPANDED(int line) → bool
      + These messages set and get the expanded state of a single line. The set message has no effect + on the visible state of the line or any lines that depend on it. It does change the markers in + the folding margin. If you ask for the expansion state of a line that is outside the document, + the result is false (0).

      + +

      If you just want to toggle the fold state of one line and handle all the lines that are + dependent on it, it is much easier to use SCI_TOGGLEFOLD. You would use the + SCI_SETFOLDEXPANDED message to process many folds without updating the display + until you had finished. See SciTEBase::FoldAll() and + SciTEBase::Expand() for examples of the use of these messages.

      + +

      SCI_FOLDLINE(int line, int action)
      + SCI_FOLDCHILDREN(int line, int action)
      + SCI_FOLDALL(int action)
      + These messages provide a higher-level approach to folding instead of setting expanded flags and showing + or hiding individual lines.

      +

      An individual fold can be contracted/expanded/toggled with SCI_FOLDLINE. + To affect all child folds as well call SCI_FOLDCHILDREN.

      +

      To affect the entire document call SCI_FOLDALL. With SC_FOLDACTION_TOGGLE + the first fold header in the document is examined to decide whether to expand or contract. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      SC_FOLDACTION_CONTRACT0Contract.
      SC_FOLDACTION_EXPAND1Expand.
      SC_FOLDACTION_TOGGLE2Toggle between contracted and expanded.
      + +

      SCI_EXPANDCHILDREN(int line, int level)
      + This is used to respond to a change to a line causing its fold level or whether it is a header to change, + perhaps when adding or removing a '{'.

      +

      By the time the container has received the notification that the line has changed, + the fold level has already been set, so the container has to use the previous level in this call + so that any range hidden underneath this line can be shown. +

      + +

      SCI_SETAUTOMATICFOLD(int automaticFold)
      + SCI_GETAUTOMATICFOLD → int
      + Instead of implementing all the logic for handling folding in the container, Scintilla can provide behaviour + that is adequate for many applications. The automaticFold argument is a bit set defining + which of the 3 pieces of folding implementation should be enabled. Most applications should be able to use the + SC_AUTOMATICFOLD_SHOW and SC_AUTOMATICFOLD_CHANGE + flags unless they wish to implement quite different behaviour such as defining their own fold structure. + SC_AUTOMATICFOLD_CLICK is more likely to be set off when an application would + like to add or change click behaviour such as showing method headers only when Shift+Alt is used in + conjunction with a click. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      SC_AUTOMATICFOLD_SHOW1Automatically show lines as needed. + This avoids sending the SCN_NEEDSHOWN notification.
      SC_AUTOMATICFOLD_CLICK2Handle clicks in fold margin automatically. + This avoids sending the SCN_MARGINCLICK notification for folding margins.
      SC_AUTOMATICFOLD_CHANGE4Show lines as needed when fold structure is changed. + The SCN_MODIFIED notification is still sent unless it is disabled by the + container.
      + +

      SCI_CONTRACTEDFOLDNEXT(int lineStart) → int
      + Search efficiently for lines that are contracted fold headers. + This is useful when saving the user's folding when switching documents or saving folding with a file. + The search starts at line number lineStart and continues forwards to the end of the file. + lineStart is returned if it is a contracted fold header otherwise the next contracted + fold header is returned. If there are no more contracted fold headers then -1 is returned.

      + +

      SCI_ENSUREVISIBLE(int line)
      + SCI_ENSUREVISIBLEENFORCEPOLICY(int line)
      + A line may be hidden because more than one of its parent lines is contracted. Both these + message travels up the fold hierarchy, expanding any contracted folds until they reach the top + level. The line will then be visible. If you use SCI_ENSUREVISIBLEENFORCEPOLICY, + the vertical caret policy set by SCI_SETVISIBLEPOLICY is then applied.

      + +

      Line wrapping

      + + SCI_SETWRAPMODE(int wrapMode)
      + SCI_GETWRAPMODE → int
      + SCI_SETWRAPVISUALFLAGS(int wrapVisualFlags)
      + SCI_GETWRAPVISUALFLAGS → int
      + SCI_SETWRAPVISUALFLAGSLOCATION(int wrapVisualFlagsLocation)
      + SCI_GETWRAPVISUALFLAGSLOCATION → int
      + SCI_SETWRAPINDENTMODE(int wrapIndentMode)
      + SCI_GETWRAPINDENTMODE → int
      + SCI_SETWRAPSTARTINDENT(int indent)
      + SCI_GETWRAPSTARTINDENT → int
      + SCI_SETLAYOUTCACHE(int cacheMode)
      + SCI_GETLAYOUTCACHE → int
      + SCI_SETPOSITIONCACHE(int size)
      + SCI_GETPOSITIONCACHE → int
      + SCI_LINESSPLIT(int pixelWidth)
      + SCI_LINESJOIN
      + SCI_WRAPCOUNT(int docLine) → int
      +
      + +

      By default, Scintilla does not wrap lines of text. If you enable line wrapping, lines wider + than the window width are continued on the following lines. Lines are broken after space or tab + characters or between runs of different styles. If this is not possible because a word in one + style is wider than the window then the break occurs after the last character that completely + fits on the line. The horizontal scroll bar does not appear when wrap mode is on.

      + +

      For wrapped lines Scintilla can draw visual flags (little arrows) at end of a a subline of a + wrapped line and at begin of the next subline. These can be enabled individually, but if Scintilla + draws the visual flag at the beginning of the next subline this subline will be indented by one char. + Independent from drawing a visual flag at the begin the subline can have an indention.

      + +

      Much of the time used by Scintilla is spent on laying out and drawing text. The same text + layout calculations may be performed many times even when the data used in these calculations + does not change. To avoid these unnecessary calculations in some circumstances, the line layout + cache can store the results of the calculations. The cache is invalidated whenever the + underlying data, such as the contents or styling of the document changes. Caching the layout of + the whole document has the most effect, making dynamic line wrap as much as 20 times faster but + this requires 7 times the memory required by the document contents plus around 80 bytes per + line.

      + +

      Wrapping is not performed immediately there is a change but is delayed until the display + is redrawn. This delay improves performance by allowing a set of changes to be performed + and then wrapped and displayed once. Because of this, some operations may not occur as + expected. If a file is read and the scroll position moved to a particular line in the text, + such as occurs when a container tries to restore a previous editing session, then + the scroll position will have been determined before wrapping so an unexpected range + of text will be displayed. To scroll to the position correctly, delay the scroll until the + wrapping has been performed by waiting for an initial + SCN_PAINTED notification.

      + +

      SCI_SETWRAPMODE(int wrapMode)
      + SCI_GETWRAPMODE → int
      + Set wrapMode to SC_WRAP_WORD (1) to enable wrapping + on word or style boundaries, SC_WRAP_CHAR (2) to enable wrapping + between any characters, SC_WRAP_WHITESPACE (3) to enable + wrapping on whitespace, and SC_WRAP_NONE (0) to disable line + wrapping. SC_WRAP_CHAR is preferred for Asian languages where + there is no white space between words. +

      + + +

      SCI_SETWRAPVISUALFLAGS(int wrapVisualFlags)
      + SCI_GETWRAPVISUALFLAGS → int
      + You can enable the drawing of visual flags to indicate a line is wrapped. Bits set in + wrapVisualFlags determine which visual flags are drawn. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      SC_WRAPVISUALFLAG_NONE0No visual flags
      SC_WRAPVISUALFLAG_END1Visual flag at end of subline of a wrapped line.
      SC_WRAPVISUALFLAG_START2Visual flag at begin of subline of a wrapped line.
      + Subline is indented by at least 1 to make room for the flag.
      +
      SC_WRAPVISUALFLAG_MARGIN4Visual flag in line number margin.
      + +

      SCI_SETWRAPVISUALFLAGSLOCATION(int wrapVisualFlagsLocation)
      + SCI_GETWRAPVISUALFLAGSLOCATION → int
      + You can set whether the visual flags to indicate a line is wrapped are drawn near the border or near the text. + Bits set in wrapVisualFlagsLocation set the location to near the text for the corresponding visual flag. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      SC_WRAPVISUALFLAGLOC_DEFAULT0Visual flags drawn near border
      SC_WRAPVISUALFLAGLOC_END_BY_TEXT1Visual flag at end of subline drawn near text
      SC_WRAPVISUALFLAGLOC_START_BY_TEXT2Visual flag at beginning of subline drawn near text
      + +

      SCI_SETWRAPINDENTMODE(int wrapIndentMode)
      + SCI_GETWRAPINDENTMODE → int
      + Wrapped sublines can be indented to the position of their first subline or one more indent level. + The default is SC_WRAPINDENT_FIXED. + The modes are: +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueEffect
      SC_WRAPINDENT_FIXED0 + Wrapped sublines aligned to left of window plus amount set by + SCI_SETWRAPSTARTINDENT +
      SC_WRAPINDENT_SAME1Wrapped sublines are aligned to first subline indent
      SC_WRAPINDENT_INDENT2Wrapped sublines are aligned to first subline indent plus one more level of indentation
      SC_WRAPINDENT_DEEPINDENT3Wrapped sublines are aligned to first subline indent plus two more levels of indentation
      + +

      SCI_SETWRAPSTARTINDENT(int indent)
      + SCI_GETWRAPSTARTINDENT → int
      + SCI_SETWRAPSTARTINDENT sets the size of indentation of sublines for + wrapped lines in terms of the average character width in + STYLE_DEFAULT. + There are no limits on indent sizes, but values less than 0 or large values may have + undesirable effects.
      + The indention of sublines is independent of visual flags, but if + SC_WRAPVISUALFLAG_START is set an indent of at least 1 is used. +

      + +

      SCI_SETLAYOUTCACHE(int cacheMode)
      + SCI_GETLAYOUTCACHE → int
      + You can set cacheMode to one of the symbols in the table:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueLayout cached for these lines
      SC_CACHE_NONE0No lines are cached.
      SC_CACHE_CARET1The line containing the text caret. This is the default.
      SC_CACHE_PAGE2Visible lines plus the line containing the caret.
      SC_CACHE_DOCUMENT3All lines in the document.
      + +

      SCI_SETPOSITIONCACHE(int size)
      + SCI_GETPOSITIONCACHE → int
      + The position cache stores position information for short runs of text + so that their layout can be determined more quickly if the run recurs. + The size in entries of this cache can be set with SCI_SETPOSITIONCACHE.

      + +

      SCI_LINESSPLIT(int pixelWidth)
      + Split a range of lines indicated by the target into lines that are at most pixelWidth wide. + Splitting occurs on word boundaries wherever possible in a similar manner to line wrapping. + When pixelWidth is 0 then the width of the window is used. +

      + +

      SCI_LINESJOIN
      + Join a range of lines indicated by the target into one line by + removing line end characters. + Where this would lead to no space between words, an extra space is inserted. +

      + +

      SCI_WRAPCOUNT(int docLine) → int
      + Document lines can occupy more than one display line if they wrap and this + returns the number of display lines needed to wrap a document line.

      + +

      Zooming

      + +

      Scintilla incorporates a "zoom factor" that lets you make all the text in the document + larger or smaller in steps of one point. The displayed point size never goes below 2, whatever + zoom factor you set. You can set zoom factors in the range -10 to +20 points.

      + SCI_ZOOMIN
      + SCI_ZOOMOUT
      + SCI_SETZOOM(int zoomInPoints)
      + SCI_GETZOOM → int
      +
      + +

      SCI_ZOOMIN
      + SCI_ZOOMOUT
      + SCI_ZOOMIN increases the zoom factor by one point if the current zoom factor is + less than 20 points. SCI_ZOOMOUT decreases the zoom factor by one point if the + current zoom factor is greater than -10 points.

      + +

      SCI_SETZOOM(int zoomInPoints)
      + SCI_GETZOOM → int
      + These messages let you set and get the zoom factor directly. There is no limit set on the + factors you can set, so limiting yourself to -10 to +20 to match the incremental zoom functions + is a good idea.

      + +

      Long lines

      + +

      You can choose to mark lines that exceed a given length by drawing a vertical line or by + colouring the background of characters that exceed the set length.

      + SCI_SETEDGEMODE(int edgeMode)
      + SCI_GETEDGEMODE → int
      + SCI_SETEDGECOLUMN(int column)
      + SCI_GETEDGECOLUMN → int
      + SCI_SETEDGECOLOUR(colour edgeColour)
      + SCI_GETEDGECOLOUR → colour
      +
      + SCI_MULTIEDGEADDLINE(int column, colour edgeColour)
      + SCI_MULTIEDGECLEARALL
      +
      + +

      SCI_SETEDGEMODE(int edgeMode)
      + SCI_GETEDGEMODE → int
      + These two messages set and get the mode used to display long lines. You can set one of the + values in the table:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueLong line display mode
      EDGE_NONE0Long lines are not marked. This is the default state.
      EDGE_LINE1A vertical line is drawn at the column number set by SCI_SETEDGECOLUMN. + This works well for monospaced fonts. The line is drawn at a position based on the width + of a space character in STYLE_DEFAULT, so it may not work very well if + your styles use proportional fonts or if your style have varied font sizes or you use a + mixture of bold, italic and normal text.
      EDGE_BACKGROUND2The background colour of characters after the column limit is changed to the colour + set by SCI_SETEDGECOLOUR. This is recommended for proportional fonts.
      EDGE_MULTILINE3This is similar to EDGE_LINE but in contrary to showing only one single + line a configurable set of vertical lines can be shown simultaneously. This edgeMode + uses a completely independent dataset that can only be configured by using the + SCI_MULTIEDGE* messages.
      + +

      SCI_SETEDGECOLUMN(int column)
      + SCI_GETEDGECOLUMN → int
      + These messages set and get the column number at which to display the long line marker. When + drawing lines, the column sets a position in units of the width of a space character in + STYLE_DEFAULT. When setting the background colour, the column is a character count + (allowing for tabs) into the line.

      + +

      SCI_SETEDGECOLOUR(colour edgeColour)
      + SCI_GETEDGECOLOUR → colour
      + These messages set and get the colour of the marker used to show that a line has exceeded the + length set by SCI_SETEDGECOLUMN.

      + +

      SCI_MULTIEDGEADDLINE(int column, + colour edgeColour)
      + SCI_MULTIEDGECLEARALL
      + SCI_MULTIEDGEADDLINE adds a new vertical edge to the view. The edge will be + displayed at the given column number. The resulting edge position depends on the metric + of a space character in STYLE_DEFAULT. All the edges can be cleared with + SCI_MULTIEDGECLEARALL.

      + +

      Accessibility

      + +

      Scintilla supports some platform accessibility features. + This support differs between platforms. + On GTK+ and Cocoa the platform accessibility APIs are implemented sufficiently to + make screen readers work. + On Win32, the system caret is manipulated to help screen readers. +

      + + SCI_SETACCESSIBILITY(int accessibility)
      + SCI_GETACCESSIBILITY → int
      +
      + +

      SCI_SETACCESSIBILITY(int accessibility)
      + SCI_GETACCESSIBILITY → int
      + These messages may enable or disable accessibility and report its current status.

      + +

      On most platforms, accessibility is either implemented or not implemented and this can be + discovered with SCI_GETACCESSIBILITY with + SCI_SETACCESSIBILITY performing no action. + On GTK+, there are storage and performance costs to accessibility, so it can be disabled + by calling SCI_SETACCESSIBILITY. +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueAccessibility status
      SC_ACCESSIBILITY_DISABLED0Accessibility is disabled.
      SC_ACCESSIBILITY_ENABLED1Accessibility is enabled.
      + +

      Lexer

      + +

      If you define the symbol SCI_LEXER when building Scintilla, (this is sometimes + called the SciLexer version of Scintilla), lexing support for a wide range of programming + languages is included and the messages in this section are supported. If you want to set + styling and fold points for an unsupported language you can either do this in the container or + better still, write your own lexer following the pattern of one of the existing ones.

      + +

      Scintilla also supports external lexers. These are DLLs (on Windows) or .so modules (on GTK+/Linux) that export three + functions: GetLexerCount, GetLexerName, and + GetLexerFactory. See externalLexer.cxx for more.

      + SCI_SETLEXER(int lexer)
      + SCI_GETLEXER → int
      + SCI_SETLEXERLANGUAGE(<unused>, const char + *language)
      + SCI_GETLEXERLANGUAGE(<unused>, char *language) → int
      + SCI_LOADLEXERLIBRARY(<unused>, const char + *path)
      + SCI_COLOURISE(int start, int end)
      + SCI_CHANGELEXERSTATE(int start, int end) → int
      + SCI_PROPERTYNAMES(<unused>, char *names) → int
      + SCI_PROPERTYTYPE(const char *name) → int
      + SCI_DESCRIBEPROPERTY(const char *name, char *description) → int
      + SCI_SETPROPERTY(const char *key, const char *value)
      + SCI_GETPROPERTY(const char *key, char *value) → int
      + SCI_GETPROPERTYEXPANDED(const char *key, char *value) → int
      + SCI_GETPROPERTYINT(const char *key, int defaultValue) → int
      + SCI_DESCRIBEKEYWORDSETS(<unused>, char *descriptions) → int
      + SCI_SETKEYWORDS(int keyWordSet, const char + *keyWords)
      + + SCI_GETSUBSTYLEBASES(<unused>, char *styles) → int
      + SCI_DISTANCETOSECONDARYSTYLES → int
      + SCI_ALLOCATESUBSTYLES(int styleBase, int numberStyles) → int
      + SCI_FREESUBSTYLES
      + SCI_GETSUBSTYLESSTART(int styleBase) → int
      + SCI_GETSUBSTYLESLENGTH(int styleBase) → int
      + SCI_GETSTYLEFROMSUBSTYLE(int subStyle) → int
      + SCI_GETPRIMARYSTYLEFROMSTYLE(int style) → int
      + SCI_SETIDENTIFIERS(int style, const char *identifiers)
      + SCI_PRIVATELEXERCALL(int operation, int pointer) → int
      + SCI_GETNAMEDSTYLES → int
      + SCI_NAMEOFSTYLE(int style, char *name) → int
      + SCI_TAGSOFSTYLE(int style, char *tags) → int
      + SCI_DESCRIPTIONOFSTYLE(int style, char *description) → int
      + +

      SCI_SETLEXER(int lexer)
      + SCI_GETLEXER → int
      + You can select the lexer to use with an integer code from the SCLEX_* enumeration + in Scintilla.h. There are two codes in this sequence that do not use lexers: + SCLEX_NULL to select no lexing action and SCLEX_CONTAINER which sends + the SCN_STYLENEEDED notification to + the container whenever a range of text needs to be styled. You cannot use the + SCLEX_AUTOMATIC value; this identifies additional external lexers that Scintilla + assigns unused lexer numbers to.

      + +

      SCI_SETLEXERLANGUAGE(<unused>, const char *language)
      + SCI_GETLEXERLANGUAGE(<unused>, char *language NUL-terminated) → int
      + SCI_SETLEXERLANGUAGE lets you select a lexer by name, and is the only method if you are using an + external lexer or if you have written a lexer module for a language of your own and do not wish + to assign it an explicit lexer number. To select an existing lexer, set language to + match the (case sensitive) name given to the module, for example "ada" or "python", not "Ada" + or "Python". To locate the name for the built-in lexers, open the relevant + Lex*.cxx file and search for LexerModule. The third argument in the + LexerModule constructor is the name to use.

      + +

      To test if your lexer assignment worked, use SCI_GETLEXER before and after setting the new lexer to + see if the lexer number changed.

      + +

      SCI_GETLEXERLANGUAGE retrieves the name of the lexer.

      + +

      SCI_LOADLEXERLIBRARY(<unused>, const char *path)
      + Load a lexer implemented in a shared library. This is a .so file on GTK+/Linux or a .DLL file on Windows. +

      + +

      SCI_COLOURISE(int start, int end)
      + This requests the current lexer or the container (if the lexer is set to + SCLEX_CONTAINER) to style the document between start and + end. If end is -1, the document is styled from + start to the end. If the "fold" property is set to + "1" and your lexer or container supports folding, fold levels are also set. This + message causes a redraw.

      + +

      SCI_CHANGELEXERSTATE(int start, int end) → int
      + Indicate that the internal state of a lexer has changed over a range and therefore + there may be a need to redraw.

      + +

      SCI_PROPERTYNAMES(<unused>, char *names NUL-terminated) → int
      + SCI_PROPERTYTYPE(const char *name) → int
      + SCI_DESCRIBEPROPERTY(const char *name, char *description NUL-terminated) → int
      + Information may be retrieved about the properties that can be set for the current lexer. + This information is only available for newer lexers. + SCI_PROPERTYNAMES returns a string with all of the valid properties separated by "\n". + If the lexer does not support this call then an empty string is returned. + Properties may be boolean (SC_TYPE_BOOLEAN), integer (SC_TYPE_INTEGER), + or string (SC_TYPE_STRING) and this is found with SCI_PROPERTYTYPE. + A description of a property in English is returned by SCI_DESCRIBEPROPERTY.

      + +

      SCI_SETPROPERTY(const char *key, const char *value)
      + You can communicate settings to lexers with keyword:value string pairs. There is no limit to + the number of keyword pairs you can set, other than available memory. key is a + case sensitive keyword, value is a string that is associated with the keyword. If + there is already a value string associated with the keyword, it is replaced. If you pass a zero + length string, the message does nothing. Both key and value are used + without modification; extra spaces at the beginning or end of key are + significant.

      + +

      The value string can refer to other keywords. For example, + SCI_SETPROPERTY("foldTimes10", "$(fold)0") stores the string + "$(fold)0", but when this is accessed, the $(fold) is replaced by the + value of the "fold" keyword (or by nothing if this keyword does not exist).

      + +

      Currently the "fold" property is defined for most of the lexers to set the fold structure if + set to "1". SCLEX_PYTHON understands "tab.timmy.whinge.level" as a + setting that determines how to indicate bad indentation. Most keywords have values that are + interpreted as integers. Search the lexer sources for GetPropertyInt to see how + properties are used.

      + +

      There is a convention for naming properties used by lexers so that the set of properties can be found by scripts. + Property names should start with "lexer.<lexer>." or "fold.<lexer>." when they apply to one + lexer or start with "lexer." or "fold." if they apply to multiple lexers.

      + +

      Applications may discover the set of properties used by searching the source code of lexers for lines that contain + GetProperty and a double quoted string and extract the value of the double quoted string as the property name. + The scintilla/scripts/LexGen.py script does this and can be used as an example. + Documentation for the property may be located above the call as a multi-line comment starting with +
      // property <property-name>

      + +

      SCI_GETPROPERTY(const char *key, char *value NUL-terminated) → int
      + Lookup a keyword:value pair using the specified key; if found, copy the value to the user-supplied + buffer and return the length (not including the terminating 0). If not found, copy an empty string + to the buffer and return 0.

      + +

      Note that "keyword replacement" as described in + SCI_SETPROPERTY will not be performed.

      + +

      If the value argument is 0 then the length that should be allocated to store the value is returned; + again, the terminating 0 is not included.

      + +

      SCI_GETPROPERTYEXPANDED(const char *key, char *value) → int
      + Lookup a keyword:value pair using the specified key; if found, copy the value to the user-supplied + buffer and return the length (not including the terminating 0). If not found, copy an empty string + to the buffer and return 0.

      + +

      Note that "keyword replacement" as described in + SCI_SETPROPERTY will be performed.

      + +

      If the value argument is 0 then the length that should be allocated to store the value (including any indicated keyword replacement) + is returned; again, the terminating 0 is not included.

      + +

      SCI_GETPROPERTYINT(const char *key, int defaultValue) → int
      + Lookup a keyword:value pair using the specified key; if found, interpret the value as an integer and return it. + If not found (or the value is an empty string) then return the supplied default. If the keyword:value pair is found but is not + a number, then return 0.

      + +

      Note that "keyword replacement" as described in + SCI_SETPROPERTY will be performed before any numeric interpretation.

      + +

      SCI_SETKEYWORDS(int keyWordSet, const char *keyWords)
      + You can set up to 9 lists of keywords for use by the current lexer. + keyWordSet can be 0 to 8 (actually 0 to KEYWORDSET_MAX) + and selects which keyword list to replace. keyWords is a list of keywords + separated by spaces, tabs, "\n" or "\r" or any combination of these. + It is expected that the keywords will be composed of standard ASCII printing characters, + but there is nothing to stop you using any non-separator character codes from 1 to 255 + (except common sense).

      + +

      How these keywords are used is entirely up to the lexer. Some languages, such as HTML may + contain embedded languages, VBScript and JavaScript are common for HTML. For HTML, key word set + 0 is for HTML, 1 is for JavaScript and 2 is for VBScript, 3 is for Python, 4 is for PHP and 5 + is for SGML and DTD keywords. Review the lexer code to see examples of keyword list. A fully + conforming lexer sets the fourth argument of the LexerModule constructor to be a + list of strings that describe the uses of the keyword lists.

      + +

      Alternatively, you might use set 0 for general keywords, set 1 for keywords that cause + indentation and set 2 for keywords that cause unindentation. Yet again, you might have a simple + lexer that colours keywords and you could change languages by changing the keywords in set 0. + There is nothing to stop you building your own keyword lists into the lexer, but this means + that the lexer must be rebuilt if more keywords are added.

      + +

      SCI_DESCRIBEKEYWORDSETS(<unused>, char *descriptions NUL-terminated) → int
      + A description of all of the keyword sets separated by "\n" is returned by SCI_DESCRIBEKEYWORDSETS.

      + +

      Substyles

      +

      Lexers may support several different sublanguages and each sublanguage may want to style some number of + sets of identifiers (or similar lexemes such as documentation keywords) uniquely. Preallocating a large number for each + purpose would exhaust the number of allowed styles quickly. + This is alleviated by substyles which allow the application to determine how many sets of identifiers to allocate for + each purpose. + Lexers have to explicitly support this feature by implementing the methods in ILexerWithSubStyles.

      + +

      SCI_GETSUBSTYLEBASES(<unused>, char *styles NUL-terminated) → int
      + Fill styles with a byte for each style that can be split into substyles.

      + +

      SCI_DISTANCETOSECONDARYSTYLES → int
      + Returns the distance between a primary style and its corresponding secondary style.

      + +

      SCI_ALLOCATESUBSTYLES(int styleBase, int numberStyles) → int
      + Allocate some number of substyles for a particular base style returning the first substyle number allocated. + Substyles are allocated contiguously.

      + +

      SCI_FREESUBSTYLES
      + Free all allocated substyles.

      + +

      SCI_GETSUBSTYLESSTART(int styleBase) → int
      + SCI_GETSUBSTYLESLENGTH(int styleBase) → int
      + Return the start and length of the substyles allocated for a base style.

      + +

      SCI_GETSTYLEFROMSUBSTYLE(int subStyle) → int
      + For a sub style, return the base style, else return the argument.

      + +

      SCI_GETPRIMARYSTYLEFROMSTYLE(int style) → int
      + For a secondary style, return the primary style, else return the argument.

      + +

      SCI_SETIDENTIFIERS(int style, const char *identifiers)
      + Similar to SCI_SETKEYWORDS but for substyles. + The prefix feature available with SCI_SETKEYWORDS is not implemented for SCI_SETIDENTIFIERS.

      + +

      SCI_PRIVATELEXERCALL(int operation, int pointer) → int
      + Call into a lexer in a way not understood by Scintilla.

      + +

      Style Metadata

      +

      Lexers may provide information on the styles they use. + Lexers have to explicitly support this feature by implementing particular methods.

      + +

      SCI_GETNAMEDSTYLES → int
      + Retrieve the number of named styles for the lexer.

      + +

      SCI_NAMEOFSTYLE(int style, char *name) → int
      + Retrieve the name of a style. This is a C preprocessor symbol like "SCE_C_COMMENTDOC".

      + +

      SCI_TAGSOFSTYLE(int style, char *tags) → int
      + Retrieve the tags of a style. This is a space-separated set of words like "comment documentation".

      + +

      SCI_DESCRIPTIONOFSTYLE(int style, char *description) → int
      + Retrieve an English-language description of a style which may be suitable for display in a user interface. + This looks like "Doc comment: block comments beginning with /** or /*!".

      + +

      Lexer Objects

      + +

      Lexers are programmed as objects that implement the ILexer interface and that interact + with the document they are lexing through the IDocument interface. + Previously lexers were defined by providing lexing and folding functions but creating an object + to handle the interaction of a lexer with a document allows the lexer to store state information that + can be used during lexing. For example a C++ lexer may store a set of preprocessor definitions + or variable declarations and style these depending on their role.

      + +

      A set of helper classes allows older lexers defined by functions to be used in Scintilla.

      +

      ILexer

      + +
      +class ILexer {
      +public:
      +    virtual + int SCI_METHOD + Version() +const = + 0;
      +    virtual + void SCI_METHOD + Release() += 0;
      +    virtual +const +char +* +SCI_METHOD PropertyNames() + = 0;
      +    virtual + int SCI_METHOD PropertyType(const char *name) = 0;
      +    virtual + const char * SCI_METHOD DescribeProperty(const char *name) = 0;
      +    virtual + Sci_Position SCI_METHOD + PropertySet(const char *key, const char *val) = 0;
      +    virtual + const char * SCI_METHOD + DescribeWordListSets() = 0;
      +    virtual + Sci_Position SCI_METHOD + WordListSet(int n, const char *wl) = 0;
      +    virtual + void SCI_METHOD + Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) = 0;
      +    virtual + void SCI_METHOD + Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) = 0;
      +    virtual + void * SCI_METHOD + PrivateCall(int operation, void *pointer) = 0;
      +};
      +
      + +

      +The types Sci_Position and Sci_PositionU are used for positions and line numbers in the document. +Before release 3.6.0 the types int and unsigned int were used instead and, for 3.6.0, +Sci_Position is defined as int and Sci_PositionU is defined as unsigned int. +In a future release, 64-bit builds will define these as 64-bit types to allow documents larger than 2 GB. +

      + +

      +Methods that return strings as const char * are not required to maintain separate allocations indefinitely: +lexer implementations may own a single buffer that is reused for each call. +Callers should make an immediate copy of returned strings. +

      + +

      +The return values from PropertySet and WordListSet are used to indicate whether the change requires +performing lexing or folding over any of the document. It is the position at which to restart lexing and folding or -1 +if the change does not require any extra work on the document. +A simple approach is to return 0 if there is any possibility that a change requires lexing the document again while an +optimisation could be to remember where a setting first affects the document and return that position. +

      + +

      Version returns an enumerated value specifying which version of the interface is implemented: +lvOriginal for ILexer, lvSubStyles for ILexerWithSubStyles, +and lvMetaData for ILexerWithMetaData.

      + +

      Release is called to destroy the lexer object.

      + +

      PrivateCall allows for direct communication between the +application and a lexer. An example would be where an application +maintains a single large data structure containing symbolic information +about system headers (like Windows.h) and provides this to the lexer +where it can be applied to each document. This avoids the costs of +constructing the system header information for each document. This is +invoked with the SCI_PRIVATELEXERCALL API.

      + +

      Fold is called with the exact range that needs folding. +Previously, lexers were called with a range that started one line before the range that +needs to be folded as this allowed fixing up the last line from the previous folding. +The new approach allows the lexer to decide whether to backtrack or to handle this +more efficiently.

      + +

      ILexerWithSubStyles

      + +

      +To allow lexers to report which line ends they support, and to support substyles, +Ilexer is extended to ILexerWithSubStyles. +

      + +
      +class ILexerWithSubStyles : public ILexer {
      +public:
      +        virtual int SCI_METHOD LineEndTypesSupported() = 0;
      +        virtual int SCI_METHOD AllocateSubStyles(int styleBase, int numberStyles) = 0;
      +        virtual int SCI_METHOD SubStylesStart(int styleBase) = 0;
      +        virtual int SCI_METHOD SubStylesLength(int styleBase) = 0;
      +        virtual int SCI_METHOD StyleFromSubStyle(int subStyle) = 0;
      +        virtual int SCI_METHOD PrimaryStyleFromStyle(int style) = 0;
      +        virtual void SCI_METHOD FreeSubStyles() = 0;
      +        virtual void SCI_METHOD SetIdentifiers(int style, const char *identifiers) = 0;
      +        virtual int SCI_METHOD DistanceToSecondaryStyles() = 0;
      +        virtual const char * SCI_METHOD GetSubStyleBases() = 0;
      +};
      +
      + +

      ILexerWithMetaData

      + +

      NamedStyles, NameOfStyle, +TagsOfStyle, and DescriptionOfStyle +are used to provide information on the set of styles used by this lexer. +NameOfStyle is the C-language identifier like "SCE_LUA_COMMENT". +TagsOfStyle is a set of tags describing the style in a standardized way like "literal string multiline raw". +A set of common tags and conventions for combining them is described here. +DescriptionOfStyle is an English description of the style like "Function or method name definition". +

      + +
      +class ILexerWithMetaData : public ILexerWithSubStyles {
      +public:
      +        virtual int SCI_METHOD NamedStyles() = 0;
      +        virtual const char * SCI_METHOD NameOfStyle(int style) = 0;
      +        virtual const char * SCI_METHOD TagsOfStyle(int style) = 0;
      +        virtual const char * SCI_METHOD DescriptionOfStyle(int style) = 0;
      +};
      +
      + +

      IDocument

      + +
      +class IDocument {
      +public:
      +        virtual int SCI_METHOD Version() const = 0;
      +        virtual void SCI_METHOD SetErrorStatus(int status) = 0;
      +        virtual Sci_Position SCI_METHOD Length() const = 0;
      +        virtual void SCI_METHOD GetCharRange(char *buffer, Sci_Position position, Sci_Position lengthRetrieve) const = 0;
      +        virtual char SCI_METHOD StyleAt(Sci_Position position) const = 0;
      +        virtual Sci_Position SCI_METHOD LineFromPosition(Sci_Position position) const = 0;
      +        virtual Sci_Position SCI_METHOD LineStart(Sci_Position line) const = 0;
      +        virtual int SCI_METHOD GetLevel(Sci_Position line) const = 0;
      +        virtual int SCI_METHOD SetLevel(Sci_Position line, int level) = 0;
      +        virtual int SCI_METHOD GetLineState(Sci_Position line) const = 0;
      +        virtual int SCI_METHOD SetLineState(Sci_Position line, int state) = 0;
      +        virtual void SCI_METHOD StartStyling(Sci_Position position, char mask) = 0;
      +        virtual bool SCI_METHOD SetStyleFor(Sci_Position length, char style) = 0;
      +        virtual bool SCI_METHOD SetStyles(Sci_Position length, const char *styles) = 0;
      +        virtual void SCI_METHOD DecorationSetCurrentIndicator(int indicator) = 0;
      +        virtual void SCI_METHOD DecorationFillRange(Sci_Position position, int value, Sci_Position fillLength) = 0;
      +        virtual void SCI_METHOD ChangeLexerState(Sci_Position start, Sci_Position end) = 0;
      +        virtual int SCI_METHOD CodePage() const = 0;
      +        virtual bool SCI_METHOD IsDBCSLeadByte(char ch) const = 0;
      +        virtual const char * SCI_METHOD BufferPointer() = 0;
      +        virtual int SCI_METHOD GetLineIndentation(Sci_Position line) = 0;
      +};
      +
      + +

      Scintilla tries to minimize the consequences of modifying text to +only relex and redraw the line of the change where possible. Lexer +objects contain their own private extra state which can affect later +lines. For example, if the C++ lexer is greying out inactive code +segments then changing the statement #define BEOS 0 to #define + BEOS 1 may require restyling and redisplaying later parts of the + document. The lexer can call ChangeLexerState to signal to + the document that it should relex and display more.

      + +

      For StartStyling the mask argument has no effect. It was used in version 3.4.2 and earlier.

      + +

      SetErrorStatus is used to notify the document of +exceptions. Exceptions should not be thrown over build boundaries as the + two sides may be built with different compilers or incompatible +exception options.

      + +

      IDocumentWithLineEnd

      + +

      +To allow lexers to determine the end position of a line and thus more easily support Unicode line ends +IDocument is extended to IDocumentWithLineEnd.

      +

      GetRelativePosition navigates the document by whole characters, +returning INVALID_POSITION for movement beyond the start and end of the document.

      +

      GetCharacterAndWidth provides a standard +conversion from UTF-8 bytes to a UTF-32 character or from DBCS to a 16 bit value. +Bytes in invalid UTF-8 are reported individually with values 0xDC80+byteValue, which are +not valid Unicode code points. +The pWidth argument can be NULL if the caller does not need to know the number of +bytes in the character. +

      + +
      +class IDocumentWithLineEnd : public IDocument {
      +public:
      +        virtual Sci_Position SCI_METHOD LineEnd(Sci_Position line) const = 0;
      +        virtual Sci_Position SCI_METHOD GetRelativePosition(Sci_Position positionStart, Sci_Position characterOffset) const = 0;
      +        virtual int SCI_METHOD GetCharacterAndWidth(Sci_Position position, Sci_Position *pWidth) const = 0;
      +};
      +
      + +

      The ILexer, ILexerWithSubStyles, IDocument, and +IDocumentWithLineEnd interfaces may be +expanded in the future with extended versions (ILexer2...). + The Version method indicates which interface is +implemented and thus which methods may be called.

      + +

      Notifications

      + +

      Notifications are sent (fired) from the Scintilla control to its container when an event has + occurred that may interest the container.

      +

      Notifications are sent using the + WM_NOTIFY message on Windows.

      +

      On GTK+, the "sci-notify" signal is sent and the signal handler should have the signature + handler(GtkWidget *, gint, SCNotification *notification, gpointer userData).

      +

      On Cocoa, a delegate implementing the ScintillaNotificationProtocol + may be set to receive notifications or the ScintillaView class may be subclassed and the + notification: method overridden. Overriding notification: allows the + subclass to control whether default handling is performed.

      +

      The container is + passed a SCNotification structure containing information about the event.

      +
      +struct Sci_NotifyHeader {   // This matches the Win32 NMHDR structure
      +    void *hwndFrom;     // environment specific window handle/pointer
      +    uptr_t idFrom;        // CtrlID of the window issuing the notification
      +    unsigned int code;  // The SCN_* notification code
      +};
      +
      +struct SCNotification {
      +	struct Sci_NotifyHeader nmhdr;
      +	Sci_Position position;
      +	/* SCN_STYLENEEDED, SCN_DOUBLECLICK, SCN_MODIFIED, SCN_MARGINCLICK, */
      +	/* SCN_MARGINRIGHTCLICK, SCN_NEEDSHOWN, SCN_DWELLSTART, SCN_DWELLEND, */
      +	/* SCN_CALLTIPCLICK, SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK, */
      +	/* SCN_HOTSPOTRELEASECLICK, SCN_INDICATORCLICK, SCN_INDICATORRELEASE, */
      +	/* SCN_USERLISTSELECTION, SCN_AUTOCSELECTION, SCN_AUTOCSELECTIONCHANGE */
      +
      +	int ch;
      +	/* SCN_CHARADDED, SCN_KEY, SCN_AUTOCCOMPLETE, SCN_AUTOCSELECTION, */
      +	/* SCN_USERLISTSELECTION */
      +	int modifiers;
      +	/* SCN_KEY, SCN_DOUBLECLICK, SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK, */
      +	/* SCN_HOTSPOTRELEASECLICK, SCN_INDICATORCLICK, SCN_INDICATORRELEASE, */
      +
      +	int modificationType;	/* SCN_MODIFIED */
      +	const char *text;
      +	/* SCN_MODIFIED, SCN_USERLISTSELECTION, SCN_AUTOCSELECTION, SCN_URIDROPPED, */
      +	/* SCN_AUTOCSELECTIONCHANGE */
      +
      +	Sci_Position length;		/* SCN_MODIFIED */
      +	Sci_Position linesAdded;	/* SCN_MODIFIED */
      +	int message;	/* SCN_MACRORECORD */
      +	uptr_t wParam;	/* SCN_MACRORECORD */
      +	sptr_t lParam;	/* SCN_MACRORECORD */
      +	Sci_Position line;		/* SCN_MODIFIED */
      +	int foldLevelNow;	/* SCN_MODIFIED */
      +	int foldLevelPrev;	/* SCN_MODIFIED */
      +	int margin;		/* SCN_MARGINCLICK, SCN_MARGINRIGHTCLICK */
      +	int listType;	/* SCN_USERLISTSELECTION, SCN_AUTOCSELECTIONCHANGE */
      +	int x;			/* SCN_DWELLSTART, SCN_DWELLEND */
      +	int y;		/* SCN_DWELLSTART, SCN_DWELLEND */
      +	int token;		/* SCN_MODIFIED with SC_MOD_CONTAINER */
      +	int annotationLinesAdded;	/* SCN_MODIFIED with SC_MOD_CHANGEANNOTATION */
      +	int updated;	/* SCN_UPDATEUI */
      +	int listCompletionMethod;
      +	/* SCN_AUTOCSELECTION, SCN_AUTOCCOMPLETED, SCN_USERLISTSELECTION */
      +
      +};
      +
      + +

      The notification messages that your container can choose to handle and the messages + associated with them are:

      + SCN_STYLENEEDED
      + SCN_CHARADDED
      + SCN_SAVEPOINTREACHED
      + SCN_SAVEPOINTLEFT
      + SCN_MODIFYATTEMPTRO
      + SCN_KEY
      + SCN_DOUBLECLICK
      + SCN_UPDATEUI
      + SCN_MODIFIED
      + SCN_MACRORECORD
      + SCN_MARGINCLICK
      + SCN_NEEDSHOWN
      + SCN_PAINTED
      + SCN_USERLISTSELECTION
      + SCN_URIDROPPED
      + SCN_DWELLSTART
      + SCN_DWELLEND
      + SCN_ZOOM
      + SCN_HOTSPOTCLICK
      + SCN_HOTSPOTDOUBLECLICK
      + SCN_HOTSPOTRELEASECLICK
      + SCN_INDICATORCLICK
      + SCN_INDICATORRELEASE
      + SCN_CALLTIPCLICK
      + SCN_AUTOCSELECTION
      + SCN_AUTOCCANCELLED
      + SCN_AUTOCCHARDELETED
      + SCN_FOCUSIN
      + SCN_FOCUSOUT
      + SCN_AUTOCCOMPLETED
      + SCN_MARGINRIGHTCLICK
      + SCN_AUTOCSELECTIONCHANGE
      +
      + +

      The following SCI_* messages are associated with these notifications:

      + SCI_SETMODEVENTMASK(int eventMask)
      + SCI_GETMODEVENTMASK → int
      + SCI_SETCOMMANDEVENTS(bool commandEvents)
      + SCI_GETCOMMANDEVENTS → bool
      + SCI_SETMOUSEDWELLTIME(int periodMilliseconds)
      + SCI_GETMOUSEDWELLTIME → int
      + SCI_SETIDENTIFIER(int identifier)
      + SCI_GETIDENTIFIER → int
      +
      + +

      The following additional notifications are sent using a secondary "command" method and should + be avoided in new code as the primary "notification" method provides all the same events with richer + information. + The WM_COMMAND message is used on Windows. + This emulates the Windows Edit control. Only the lower + 16 bits of the control's ID is passed in these notifications.

      +

      On GTK+, the "command" signal is sent and the signal handler should have the signature + handler(GtkWidget *, gint wParam, gpointer lParam, gpointer userData).

      + SCEN_CHANGE
      + SCEN_SETFOCUS
      + SCEN_KILLFOCUS
      +
      + +

      SCI_SETIDENTIFIER(int identifier)
      + SCI_GETIDENTIFIER → int
      + These two messages set and get the identifier of the Scintilla instance which is included in notifications as the + idFrom field. + When an application creates multiple Scintilla widgets, this allows the source of each notification to be found. + On Windows, this value is initialised in the CreateWindow call and stored as the + GWLP_ID attribute of the window. + The value should be small, preferably less than 16 bits, + rather than a pointer as some of the functions will only transmit 16 or 32 bits. +

      + +

      SCN_STYLENEEDED
      + If you used SCI_SETLEXER(SCLEX_CONTAINER) to make the container act as the + lexer, you will receive this notification when Scintilla is about to display or print text that + requires styling. You are required to style the text from the line that contains the position + returned by SCI_GETENDSTYLED up to + the position passed in SCNotification.position. Symbolically, you need code of the + form:

      +
      +    startPos = SCI_GETENDSTYLED()
      +    lineNumber = SCI_LINEFROMPOSITION(startPos);
      +    startPos = SCI_POSITIONFROMLINE(lineNumber);
      +    MyStyleRoutine(startPos, SCNotification.position);
      +
      + +

      SCN_CHARADDED
      + This is sent when the user types an ordinary text character (as opposed to a command + character) that is entered into the text. The container can use this to decide to display a call tip or an auto + completion list. The character is in SCNotification.ch. + This notification is sent before the character has been styled so processing that depends on + styling should instead be performed in the SCN_UPDATEUI notification.

      + +

      SCN_SAVEPOINTREACHED
      + SCN_SAVEPOINTLEFT
      + Sent to the container when the save point is entered or left, allowing the container to + display a "document dirty" indicator and change its menus.
      + See also: SCI_SETSAVEPOINT, SCI_GETMODIFY

      + +

      SCN_MODIFYATTEMPTRO
      + When in read-only mode, this notification is sent to the container if the user tries to change + the text. This can be used to check the document out of a version control system. You can set + the read-only state of a document with SCI_SETREADONLY.

      + +

      SCN_KEY
      + Reports all keys pressed but not consumed by Scintilla. Used on GTK+ because of + some problems with keyboard focus and is not sent by the Windows version. SCNotification.ch holds the key code and + SCNotification.modifiers holds the modifiers. This notification is sent if the + modifiers include SCMOD_ALT or SCMOD_CTRL and the key code is less + than 256.

      + +

      SCN_DOUBLECLICK
      + The mouse button was double clicked in editor. The position field is set to the text position of the + double click, the line field is set to the line of the double click, and + the modifiers field is set to the key modifiers + held down in a similar manner to SCN_KEY.

      + +

      SCN_UPDATEUI
      + Either the text or styling of the document has changed or the selection range or scroll position may have changed. + Now would be a good time to update any container UI elements that depend on document or view state. + As it is sometimes difficult to determine whether a change has occurred, these events may also fire when there + has been no actual change. + The updated field is set to the bit set of things changed since the previous notification.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueMeaning
      SC_UPDATE_CONTENT0x01Contents, styling or markers may have been changed.
      SC_UPDATE_SELECTION0x02Selection may have been changed.
      SC_UPDATE_V_SCROLL0x04May have scrolled vertically.
      SC_UPDATE_H_SCROLL0x08May have scrolled horizontally.
      + +

      SCN_MODIFIED
      + This notification is sent when the text or styling of the document changes or is about to + change. You can set a mask for the notifications that are sent to the container with SCI_SETMODEVENTMASK. The + notification structure contains information about what changed, how the change occurred and + whether this changed the number of lines in the document. No modifications may be performed + while in a SCN_MODIFIED event. The SCNotification fields used + are:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      FieldUsage
      modificationTypeA set of flags that identify the change(s) made. See the next + table.
      positionStart position of a text or styling change. Set to 0 if not used.
      lengthLength of the change in bytes when the text or styling + changes. Set to 0 if not used.
      linesAddedNumber of added lines. If negative, the number of deleted lines. Set to + 0 if not used or no lines added or deleted.
      textValid for text changes, not for style changes. If we are collecting undo + information this holds a pointer to the text that is handed to the Undo system, otherwise + it is zero. For user performed SC_MOD_BEFOREDELETE the text field is 0.
      lineThe line number at which a fold level or marker change occurred. This is + 0 if unused and may be -1 if more than one line changed.
      foldLevelNowThe new fold level applied to the line or 0 if this field is + unused.
      foldLevelPrevThe previous folding level of the line or 0 if this field is + unused.
      + +

      The SCNotification.modificationType field has bits set to tell you what has + been done. The SC_MOD_* bits correspond to actions. The + SC_PERFORMED_* bits tell you if the action was done by the user, or the result of + Undo or Redo of a previous action.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueMeaningSCNotification fields
      SC_MOD_INSERTTEXT0x01Text has been inserted into the document.position, length, text, linesAdded
      SC_MOD_DELETETEXT0x02Text has been removed from the document.position, length, text, linesAdded
      SC_MOD_CHANGESTYLE0x04A style change has occurred.position, length
      SC_MOD_CHANGEFOLD0x08A folding change has occurred.line, foldLevelNow, foldLevelPrev
      SC_PERFORMED_USER0x10Information: the operation was done by the user.None
      SC_PERFORMED_UNDO0x20Information: this was the result of an Undo.None
      SC_PERFORMED_REDO0x40Information: this was the result of a Redo.None
      SC_MULTISTEPUNDOREDO0x80This is part of a multi-step Undo or Redo transaction.None
      SC_LASTSTEPINUNDOREDO0x100This is the final step in an Undo or Redo transaction.None
      SC_MOD_CHANGEMARKER0x200One or more markers has changed in a line.line
      SC_MOD_BEFOREINSERT0x400Text is about to be inserted into the document.position, if performed by user then text in bytes, length in bytes
      SC_MOD_BEFOREDELETE0x800Text is about to be deleted from the document.position, length
      SC_MOD_CHANGEINDICATOR0x4000An indicator has been added or removed from a range of text.position, length
      SC_MOD_CHANGELINESTATE0x8000A line state has changed because SCI_SETLINESTATE + was called.line
      SC_MOD_CHANGETABSTOPS0x200000The explicit tab stops on a line have changed because SCI_CLEARTABSTOPS or + SCI_ADDTABSTOP was called.line
      SC_MOD_LEXERSTATE0x80000The internal state of a lexer has changed over a range.position, length
      SC_MOD_CHANGEMARGIN0x10000A text margin has changed.line
      SC_MOD_CHANGEANNOTATION0x20000An annotation has changed.line
      SC_MOD_INSERTCHECK0x100000Text is about to be inserted. The handler may change the text being inserted by calling + SCI_CHANGEINSERTION. + No other modifications may be made in this handler.position, length, text
      SC_MULTILINEUNDOREDO0x1000This is part of an Undo or Redo with multi-line changes.None
      SC_STARTACTION0x2000This is set on a SC_PERFORMED_USER action when it is the + first or only step in an undo transaction. This can be used to integrate the Scintilla + undo stack with an undo stack in the container application by adding a Scintilla + action to the container's stack for the currently opened container transaction or + to open a new container transaction if there is no open container transaction. + None
      SC_MOD_CONTAINER0x40000This is set on for actions that the container stored into the undo stack with + SCI_ADDUNDOACTION. + token
      SC_MODEVENTMASKALL0x1FFFFFThis is a mask for all valid flags. This is the default mask state set by SCI_SETMODEVENTMASK.None
      + +

      SCEN_CHANGE
      + SCEN_CHANGE (768) is fired when the text (not the style) of the document changes. + This notification is sent using the WM_COMMAND message on Windows and the + "command" signal on GTK+ as this is the behaviour of the standard Edit control + (SCEN_CHANGE has the same value as the Windows Edit control + EN_CHANGE). No other information is sent. If you need more detailed information + use SCN_MODIFIED. You can filter the + types of changes you are notified about with SCI_SETMODEVENTMASK and + SCI_SETCOMMANDEVENTS.

      + +

      SCI_SETMODEVENTMASK(int eventMask)
      + SCI_GETMODEVENTMASK → int
      + These messages set and get an event mask that determines which document change events are + notified to the container with SCN_MODIFIED and SCEN_CHANGE. For example, a container may decide to see + only notifications about changes to text and not styling changes by calling + SCI_SETMODEVENTMASK(SC_MOD_INSERTTEXT|SC_MOD_DELETETEXT).

      + +

      The possible notification types are the same as the modificationType bit flags + used by SCN_MODIFIED: SC_MOD_INSERTTEXT, + SC_MOD_DELETETEXT, SC_MOD_CHANGESTYLE, + SC_MOD_CHANGEFOLD, SC_PERFORMED_USER, SC_PERFORMED_UNDO, + SC_PERFORMED_REDO, SC_MULTISTEPUNDOREDO, + SC_LASTSTEPINUNDOREDO, SC_MOD_CHANGEMARKER, + SC_MOD_BEFOREINSERT, SC_MOD_BEFOREDELETE, + SC_MULTILINEUNDOREDO, and SC_MODEVENTMASKALL.

      + +

      SCI_SETCOMMANDEVENTS(bool commandEvents)
      + SCI_GETCOMMANDEVENTS → bool
      + These messages set and get whether SCEN_* command events are + sent to the container. For SCEN_CHANGE this acts as an additional filter over + SCI_SETMODEVENTMASK. + Most applications should set this off to avoid overhead and only use + SCN_MODIFIED.

      + +

      SCEN_SETFOCUS
      + SCEN_KILLFOCUS
      + SCEN_SETFOCUS (512) is fired when Scintilla receives focus and + SCEN_KILLFOCUS (256) when it loses focus. These notifications are sent using the + WM_COMMAND message on Windows and the "command" signal on GTK+ as this is the + behaviour of the standard Edit control. Unfortunately, these codes do not match the Windows Edit + notification codes EN_SETFOCUS (256) and EN_KILLFOCUS (512). It is + now too late to change the Scintilla codes as clients depend on the current values.

      + +

      SCN_MACRORECORD
      + The SCI_STARTRECORD and SCI_STOPRECORD messages enable and + disable macro recording. When enabled, each time a recordable change occurs, the + SCN_MACRORECORD notification is sent to the container. It is up to the container + to record the action. To see the complete list of SCI_* messages that are + recordable, search the Scintilla source Editor.cxx for + Editor::NotifyMacroRecord. The fields of SCNotification set in this + notification are:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      FieldUsage
      messageThe SCI_* message that caused the notification.
      wParamThe value of wParam in the SCI_* message.
      lParamThe value of lParam in the SCI_* message.
      + +

      SCN_MARGINCLICK
      + SCN_MARGINRIGHTCLICK
      + These notifications tell the container that the mouse was clicked or right clicked inside a margin that was marked as sensitive (see SCI_SETMARGINSENSITIVEN). This can be used to + perform folding or to place breakpoints. The following SCNotification fields are + used:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      FieldUsage
      modifiersThe appropriate combination of SCI_SHIFT, + SCI_CTRL and SCI_ALT to indicate the keys that were held down + at the time of the margin click.
      positionThe position of the start of the line in the document that corresponds + to the margin click.
      marginThe margin number that was clicked.
      + +

      SCN_NEEDSHOWN
      + Scintilla has determined that a range of lines that is currently invisible should be made + visible. An example of where this may be needed is if the end of line of a contracted fold + point is deleted. This message is sent to the container in case it wants to make the line + visible in some unusual way such as making the whole document visible. Most containers will + just ensure each line in the range is visible by calling SCI_ENSUREVISIBLE. The position and + length fields of SCNotification indicate the range of the document + that should be made visible. The container code will be similar to the following code + skeleton:

      +
      +firstLine = SCI_LINEFROMPOSITION(scn.position)
      +lastLine = SCI_LINEFROMPOSITION(scn.position+scn.length-1)
      +for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next
      +
      + +

      SCN_PAINTED
      + Painting has just been done. Useful when you want to update some other widgets based on a + change in Scintilla, but want to have the paint occur first to appear more responsive. There is + no other information in SCNotification.

      + +

      SCN_USERLISTSELECTION
      + The user has selected an item in a user list. The + SCNotification fields used are:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      FieldUsage
      listTypeThis is set to the listType parameter from the SCI_USERLISTSHOW message that + initiated the list.
      textThe text of the selection.
      positionThe position the list was displayed at.
      chIf a fillup character was the method of selection, the used + character, otherwise 0.
      listCompletionMethodA value indicating the way in which the completion + occurred. See the table below.
      +
      + + See the SCN_AUTOCCOMPLETED notification + for the possible values for listCompletionMethod. +

      SCN_URIDROPPED
      + Only on the GTK+ version. Indicates that the user has dragged a URI such as a file name or Web + address onto Scintilla. The container could interpret this as a request to open the file. The + text field of SCNotification points at the URI text.

      + +

      SCN_DWELLSTART
      + SCN_DWELLEND
      + SCN_DWELLSTART is generated when the user keeps the mouse in one position for the + dwell period (see SCI_SETMOUSEDWELLTIME). SCN_DWELLEND is + generated after a SCN_DWELLSTART and the mouse is moved or other activity such as + key press indicates the dwell is over. Both notifications set the same fields in + SCNotification:

      + + + + + + + + + + + + + + + + + + + + + + + +
      FieldUsage
      positionThis is the nearest position in the document to the position where the + mouse pointer was lingering.
      x, yWhere the pointer lingered. The position field is set to + SCI_POSITIONFROMPOINTCLOSE(x, y).
      +
      + +

      SCI_SETMOUSEDWELLTIME(int periodMilliseconds)
      + SCI_GETMOUSEDWELLTIME → int
      + These two messages set and get the time the mouse must sit still, in milliseconds, to generate + a SCN_DWELLSTART notification. If + set to SC_TIME_FOREVER, the default, no dwell events are generated.

      + +

      SCN_ZOOM
      + This notification is generated when the user zooms the display using the keyboard or the + SCI_SETZOOM method is called. This + notification can be used to recalculate positions, such as the width of the line number margin + to maintain sizes in terms of characters rather than pixels. SCNotification has no + additional information.

      + +

      + SCN_HOTSPOTCLICK
      + SCN_HOTSPOTDOUBLECLICK
      + SCN_HOTSPOTRELEASECLICK
      + These notifications are generated when the user clicks or double clicks on + text that is in a style with the hotspot attribute set. + This notification can be used to link to variable definitions or web pages. + In the notification handler, you should avoid calling any function that modifies the current selection or caret position. + The position field is set the text position of the click or + double click and the modifiers field set to the key modifiers + held down in a similar manner to SCN_KEY. + Only the state of the Ctrl key is reported for SCN_HOTSPOTRELEASECLICK.

      + +

      + SCN_INDICATORCLICK
      + SCN_INDICATORRELEASE
      + These notifications are generated when the user clicks or releases the mouse on + text that has an indicator. + The position field is set the text position of the click or + double click and the modifiers field set to the key modifiers + held down in a similar manner to SCN_KEY.

      + +

      SCN_CALLTIPCLICK
      + This notification is generated when the user clicks on a calltip. + This notification can be used to display the next function prototype when a + function name is overloaded with different arguments. + The position field is set to 1 if the click is in an up arrow, + 2 if in a down arrow, and 0 if elsewhere.

      + +

      SCN_AUTOCSELECTION
      + The user has selected an item in an autocompletion list. The + notification is sent before the selection is inserted. Automatic insertion can be cancelled by sending a + SCI_AUTOCCANCEL message + before returning from the notification. The SCNotification fields used are:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      FieldUsage
      positionThe start position of the word being completed.
      textThe text of the selection.
      chIf a fillup character was the method of selection, the used + character, otherwise 0.
      listCompletionMethodA value indicating the way in which the completion + occurred. See the table below.
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SymbolValueMeaning
      SC_AC_FILLUP1A fillup character triggered the completion. The character used is + in ch.
      SC_AC_DOUBLECLICK2A double-click triggered the completion. ch is 0.
      SC_AC_TAB3The tab key or SCI_TAB triggered the completion. ch is 0.
      SC_AC_NEWLINE4A new line or SCI_NEWLINE triggered the completion. ch is 0.
      SC_AC_COMMAND5The + + SCI_AUTOCSELECT message + triggered the completion. ch is 0.
      + +

      SCN_AUTOCCANCELLED
      + The user has cancelled an autocompletion list. + There is no other information in SCNotification.

      + +

      SCN_AUTOCCHARDELETED
      + The user deleted a character while autocompletion list was active. + There is no other information in SCNotification.

      + + +

      SCN_AUTOCCOMPLETED
      +
      This notification is generated after an autocompletion has inserted its + text. The fields are identical to the + + SCN_AUTOCSELECTION + notification.

      + +

      SCN_AUTOCSELECTIONCHANGE
      +
      This notification is sent when items are highlighted in an autocompletion or user list. + The + SCNotification fields used are:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      FieldUsage
      listTypeThis is set to the listType parameter from the SCI_USERLISTSHOW message + or 0 for an autocompletion.
      textThe text of the selection.
      positionThe position the list was displayed at.
      + +

      SCN_FOCUSIN
      + SCN_FOCUSOUT
      + SCN_FOCUSIN (2028) is fired when Scintilla receives focus and + SCN_FOCUSOUT (2029) when it loses focus.

      + +

      Images

      + +

      Two formats are supported for images used in margin markers and autocompletion lists, RGBA and XPM.

      + +

      RGBA

      + +

      The RGBA format allows translucency with an alpha + value for each pixel. It is simpler than + XPM and more capable.

      + +

      The data is a sequence of 4 byte pixel values starting with the pixels for the top line, with the + leftmost pixel first, then continuing with the pixels for subsequent lines. There is no gap between + lines for alignment reasons.

      + +

      Each pixel consists of, in order, a red byte, a green byte, a blue byte and an alpha byte. + The colour bytes are not premultiplied by the alpha value. That is, a fully red pixel that is + 25% opaque will be [FF, 00, 00, 3F]

      + +

      Since the RGBA pixel data does not include any size information the + width and height must previously been set with the + SCI_RGBAIMAGESETWIDTH and + SCI_RGBAIMAGESETHEIGHT messages.

      + +

      GUI platforms often include functions for reading image file formats like PNG into memory + in the RGBA form or a similar form. + If there is no suitable platform support, the LodePNG and picoPNG libraries are small libraries + for loading and decoding PNG files available under a BSD-style license.

      + +

      RGBA format is supported on Windows, GTK+ and OS X Cocoa.

      + +

      XPM

      + +

      The XPM format is + described here. + Scintilla is only able to handle XPM pixmaps that use one character per pixel with no named colours. + There may be a completely transparent colour named "None".

      +

      There are two forms of data structure used for XPM images, the first "lines form" format is well suited + to embedding an image inside C source code and the "text form" is suited to reading from a file. + In the lines form, an array of strings is used with the first string indicating the dimensions and number of colours + used. This is followed by a string for each colour and that section is followed by the image with one string per line. + The text form contains the same data as one null terminated block formatted as C source code starting + with a "/* XPM */" comment to mark the format.

      +

      Either format may be used with Scintilla APIs with the bytes at the location pointed to examined + to determine which format: if the bytes start with "/* XPM */" then it is treated as text form, + otherwise it is treated as lines form.

      + +

      XPM format is supported on on all platforms.

      + +

      GTK+

      +

      On GTK+, the following functions create a Scintilla widget, communicate with it and allow + resources to be released after all Scintilla widgets have been destroyed.

      + GtkWidget *scintilla_new()
      + void scintilla_set_id(ScintillaObject *sci, uptr_t id)
      + sptr_t scintilla_send_message(ScintillaObject *sci,unsigned int iMessage, uptr_t wParam, sptr_t lParam)
      + void scintilla_release_resources()
      +
      + +

      GtkWidget *scintilla_new()
      + Create a new Scintilla widget. The returned pointer can be added to a container and displayed in the same way as other + widgets.

      + +

      void scintilla_set_id(ScintillaObject *sci, uptr_t id)
      + Set the control ID which will be used in the idFrom field of the Sci_NotifyHeader structure of all + notifications for this instance. + This is equivalent to SCI_SETIDENTIFIER.

      + +

      sptr_t scintilla_send_message(ScintillaObject *sci,unsigned int iMessage, uptr_t wParam, sptr_t lParam)
      + The main entry point allows sending any of the messages described in this document.

      + +

      void scintilla_release_resources()
      + Call this to free any remaining resources after all the Scintilla widgets have been destroyed.

      + +

      Provisional messages

      + +

      Complex new features may be added as 'provisional' to allow further changes to the API. + Provisional features may even be removed if experience shows they are a mistake.

      + +

      Provisional features are displayed in this document with a distinctive background colour.

      + +

      There are currently no provisional messages or values.

      + +

      Some developers may want to only use features that are stable and have graduated from + provisional status. To avoid using provisional messages compile with the symbol + SCI_DISABLE_PROVISIONAL defined.

      + +

      Deprecated messages and notifications

      + +

      The following messages are currently supported to emulate existing Windows controls, but + they will be removed in future versions of Scintilla. If you use these messages you should + replace them with the Scintilla equivalent.

      +
      +WM_GETTEXT(int length, char *text)
      +WM_SETTEXT(<unused>, const char *text)
      +EM_GETLINE(int line, char *text)
      +EM_REPLACESEL(<unused>, const char *text)
      +EM_SETREADONLY
      +EM_GETTEXTRANGE(<unused>, TEXTRANGE *tr)
      +WM_CUT
      +WM_COPY
      +WM_PASTE
      +WM_CLEAR
      +WM_UNDO
      +EM_CANUNDO
      +EM_EMPTYUNDOBUFFER
      +WM_GETTEXTLENGTH
      +EM_GETFIRSTVISIBLELINE
      +EM_GETLINECOUNT
      +EM_GETMODIFY
      +EM_SETMODIFY(bool isModified)
      +EM_GETRECT(RECT *rect)
      +EM_GETSEL(int *start, int *end)
      +EM_EXGETSEL(<unused>, CHARRANGE *cr)
      +EM_SETSEL(int start, int end)
      +EM_EXSETSEL(<unused>, CHARRANGE *cr)
      +EM_GETSELTEXT(<unused>, char *text)
      +EM_LINEFROMCHAR(int position)
      +EM_EXLINEFROMCHAR(int position)
      +EM_LINEINDEX(int line)
      +EM_LINELENGTH(int position)
      +EM_SCROLL(int line)
      +EM_LINESCROLL(int column, int line)
      +EM_SCROLLCARET()
      +EM_CANPASTE
      +EM_CHARFROMPOS(<unused>, POINT *location)
      +EM_POSFROMCHAR(int position, POINT *location)
      +EM_SELECTIONTYPE
      +EM_HIDESELECTION(bool hide)
      +EM_FINDTEXT(int flags, FINDTEXTEX *ft)
      +EM_FINDTEXTEX(int flags, FINDTEXTEX *ft)
      +EM_GETMARGINS
      +EM_SETMARGINS(EC_LEFTMARGIN or EC_RIGHTMARGIN or EC_USEFONTINFO, int val)
      +EM_FORMATRANGE
      +
      + +

      The following are features that are only included if you define + INCLUDE_DEPRECATED_FEATURES in Scintilla.h. To ensure future + compatibility you should change them as indicated.

      + + + SCI_SETKEYSUNICODE(bool keysUnicode)
      + SCI_GETKEYSUNICODE → bool
      + SCI_SETSTYLEBITS(int bits)
      + SCI_GETSTYLEBITS → int
      + SCI_GETSTYLEBITSNEEDED → int
      +
      + +

      SCI_SETKEYSUNICODE(bool keysUnicode) Deprecated
      + SCI_GETKEYSUNICODE → bool Deprecated
      + On Windows, Scintilla no longer supports narrow character windows so input is always treated as Unicode.

      + +

      The following are features that should be removed from calling code but are still + defined to avoid breaking callers.

      + +

      SCI_SETSTYLEBITS(int bits) Deprecated
      + SCI_GETSTYLEBITS → int Deprecated
      + SCI_GETSTYLEBITSNEEDED → int Deprecated
      + INDIC0_MASK, INDIC1_MASK, INDIC2_MASK, INDICS_MASK Deprecated
      + Scintilla no longer supports style byte indicators. The last version to support style byte indicators was 3.4.2. + Any use of these symbols should be removed and replaced with standard indicators. + SCI_GETSTYLEBITS and SCI_GETSTYLEBITSNEEDED always return 8, + indicating that 8 bits are used for styling and there are 256 styles.

      + +

      Edit messages never supported by Scintilla

      +
      +EM_GETWORDBREAKPROC EM_GETWORDBREAKPROCEX
      +EM_SETWORDBREAKPROC EM_SETWORDBREAKPROCEX
      +EM_GETWORDWRAPMODE EM_SETWORDWRAPMODE
      +EM_LIMITTEXT EM_EXLIMITTEXT
      +EM_SETRECT EM_SETRECTNP
      +EM_FMTLINES
      +EM_GETHANDLE EM_SETHANDLE
      +EM_GETPASSWORDCHAR EM_SETPASSWORDCHAR
      +EM_SETTABSTOPS
      +EM_FINDWORDBREAK
      +EM_GETCHARFORMAT EM_SETCHARFORMAT
      +EM_GETOLEINTERFACE EM_SETOLEINTERFACE
      +EM_SETOLECALLBACK
      +EM_GETPARAFORMAT EM_SETPARAFORMAT
      +EM_PASTESPECIAL
      +EM_REQUESTRESIZE
      +EM_GETBKGNDCOLOR EM_SETBKGNDCOLOR
      +EM_STREAMIN EM_STREAMOUT
      +EM_GETIMECOLOR EM_SETIMECOLOR
      +EM_GETIMEOPTIONS EM_SETIMEOPTIONS
      +EM_GETOPTIONS EM_SETOPTIONS
      +EM_GETPUNCTUATION EM_SETPUNCTUATION
      +EM_GETTHUMB
      +EM_GETEVENTMASK
      +EM_SETEVENTMASK
      +EM_DISPLAYBAND
      +EM_SETTARGETDEVICE
      +
      + +

      Scintilla tries to be a superset of the standard windows Edit and RichEdit controls wherever + that makes sense. As it is not intended for use in a word processor, some edit messages can not + be sensibly handled. Unsupported messages have no effect.

      + +

      Removed features

      + +

      These features have now been removed completely.

      + +

      SC_CP_DBCS Removed in 2016 with release 3.7.1
      + This was used to set a DBCS (Double Byte Character Set) mode on GTK+. + An explicit DBCS code page should be used when calling SCI_SETCODEPAGE

      + +

      SCI_SETUSEPALETTE(bool usePalette) Removed in 2016 with release 3.7.1
      + SCI_GETUSEPALETTE → bool Removed in 2016 with release 3.7.1
      + Scintilla no longer supports palette mode. The last version to support palettes was 2.29. + Any calls to these methods must be removed.

      + +

      Previous versions of Scintilla allowed indicators to be stored in bits of each style byte. + This was deprecated in 2007 and removed in 2014 with release 3.4.3. + All uses of style byte indicators should be replaced with standard indicators.

      + +

      Building Scintilla

      + +

      To build Scintilla or SciTE, see the README file present in both the Scintilla and SciTE + directories. + The compiler must support C++11. + For Windows, GCC 4.8 or Microsoft Visual C++ 2015 can be used + for building. For GTK+, GCC 4.8 or newer should be used. GTK+ 2.24+ and 3.x are + supported with glib 2.22+. The version of GTK+ installed should be detected automatically. + When both GTK+ 2 and GTK+ 3 are present, building for GTK+ 3.x requires defining GTK3 + on the command line.

      + +

      Static linking

      + +

      On Windows, Scintilla is normally used as a dynamic library as a .DLL file. If you want to + link Scintilla directly into your application .EXE or .DLL file, then you can link to the static library + bin/libscintilla.lib (or .a if using GCC) and call Scintilla_RegisterClasses. + Scintilla_RegisterClasses takes the HINSTANCE of your + application and ensures that the "Scintilla" window class is registered.

      +

      When producing a stand-alone Scintilla DLL, the ScintillaDLL.cxx file should be compiled and + linked in to provide DllMain and Scintilla_RegisterClasses.

      + +

      Ensuring lexers are linked into Scintilla

      + +

      Depending on the compiler and linker used, the lexers may be stripped out. This is most + often caused when building a static library. To ensure the lexers are linked in, the + Scintilla_LinkLexers() function may be called.

      + +

      Changing set of lexers

      + +

      To change the set of lexers in Scintilla, add and remove lexer source files + (Lex*.cxx) from the scintilla/lexers directory and run the + scripts/LexGen.py script from the scripts directory to update the make files + and Catalogue.cxx. LexGen.py requires Python 2.5 or later. If you do + not have access to Python, you can hand edit Catalogue.cxx in a simple-minded way, + following the patterns of other lexers. The important thing is to include + LINK_LEXER(lmMyLexer); to correspond with the LexerModule + lmMyLexer(...); in your lexer source code.

      + +

      Building with an alternative Regular Expression implementation

      + +

      A simple interface provides support for switching the Regular Expressions engine at + compile time. You must implement RegexSearchBase for your chosen engine, + look at the built-in implementation BuiltinRegex to see how this is done. + You then need to implement the factory method CreateRegexSearch + to create an instance of your class. You must disable the built-in implementation by defining + SCI_OWNREGEX.

      + + + + diff --git a/third_party/qscintilla/doc/Scintilla/ScintillaDownload.html b/third_party/qscintilla/doc/Scintilla/ScintillaDownload.html new file mode 100644 index 0000000..f3cb72b --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/ScintillaDownload.html @@ -0,0 +1,71 @@ + + + + + + + + + + Download Scintilla + + + + + + + + +
      + Scintilla icon + + Download + Scintilla +
      + + + + +
      + + Windows   + + GTK+/Linux   + +
      +

      + Download. +

      +

      + The license for using Scintilla or SciTE is similar to that of Python + containing very few restrictions. +

      +

      + Release 3.10.1 +

      +

      + Source Code +

      + The source code package contains all of the source code for Scintilla but no binary + executable code and is available in +
        +
      • zip format (1600K) commonly used on Windows
      • +
      • tgz format (1400K) commonly used on Linux and compatible operating systems
      • +
      + Instructions for building on both Windows and Linux are included in the readme file. +

      + Windows Executable Code +

      + There is no download available containing only the Scintilla DLL. + However, it is included in the SciTE + executable full download as SciLexer.DLL. +

      + SciTE is a good demonstration of Scintilla. +

      +

      + Previous versions can be downloaded from the history + page. +

      + + diff --git a/third_party/qscintilla/doc/Scintilla/ScintillaHistory.html b/third_party/qscintilla/doc/Scintilla/ScintillaHistory.html new file mode 100644 index 0000000..6d67c2f --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/ScintillaHistory.html @@ -0,0 +1,12065 @@ + + + + + + + + + + Scintilla and SciTE + + + + + + + + + +
      + Scintilla icon + + Scintilla + and SciTE +
      +

      + History of Scintilla and SciTE +

      +

      + Contributors +

      +

      + Thanks to all the people that have contributed patches, bug reports and suggestions. +

      +

      + Source code and documentation have been contributed by +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Atsuo IshimotoMark HammondFrancois Le CoguiecDale Nagata
      Ralf ReinhardtPhilippe LhosteAndrew McKinlayStephan R. A. Deibel
      Hans EckardtVassili BourdoMaksim LinRobin Dunn
      John EhresmanSteffen GoeldnerDeepak S.DevelopMentor
      Yann GaillardAubin PaulJason DiamondAhmad Baitalmal
      Paul WinwoodMaxim BaranovRagnar HøjlandChristian Obrecht
      Andreas NeukoetterAdam GatesSteve LhommeFerdinand Prantl
      Jan DriesMarkus GritschTahir KaracaAhmad Zawawi
      Laurent le TynevezWalter BraeuAshley CambrellGarrett Serack
      Holger SchmidtActiveStateJames LarcombeAlexey Yutkin
      Jan HercekRichard PeclEdward K. ReamValery Kondakoff
      Smári McCarthyClemens WyssSimon SteeleSerge A. Baranov
      Xavier NodetWilly DevauxDavid ClainBrendon Yenson
      Vamsi PotluruPraveen AmbekarAlan KnowlesKengo Jinno
      Valentin ValchevMarcos E. WurziusMartin AldersonRobert Gustavsson
      José FonsecaHolger KiemesFrancis IrvingScott Kirkwood
      Brian QuinlanUbiMichael R. DuerigDeepak T
      Don Paul BeletskyGerhard KalabOlivier DagenaisJosh Wingstrom
      Bruce DodsonSergey KoshcheyevChuan-jian ShenShane Caraveo
      Alexander ScripnikRyan ChristiansonMartin SteffensenJakub Vrána
      The Black HorusBernd KreussThomas LauerMike Lansdaal
      Yukihiro NakaiJochen TuchtGreg SmithSteve Schoettler
      Mauritius ThinnesDarren SchroederPedro GuerreiroSteven te Brinke
      Dan PetittBiswapesh ChattopadhyayKein-Hong ManPatrizio Bekerle
      Nigel HathawayHrishikesh DesaiSergey PuljajevMathias Rauen
      Angelo MandatoDenis SureauKaspar SchiessChristoph Hösler
      João Paulo F FariasRon SchofieldStefan WosnikMarius Gheorghe
      Naba KumarSean O'DellStefanos TogoulidisHans Hagen
      Jim CapeRoland WalterBrian MosherNicholas Nemtsev
      Roy WoodPeter-Henry ManderRobert BoucherChristoph Dalitz
      April WhiteS. UmarTrent MickFilip Yaghob
      Avi YegudinVivi OrunitiaManfred BeckerDimitris Keletsekis
      YuigaDavide ScolaJason BoggsReinhold Niesner
      Jos van der ZandePescumaPavol BosikJohannes Schmid
      Blair McGlashanMikael HultgrenFlorian BalmerHadar Raz
      Herr PfarrerBen KeyGene BarryNiki Spahiev
      Carsten SperberPhil ReidIago RubioRégis Vaquette
      Massimo CoràElias PschernigChris JonesJosiah Reynolds
      Robert Roessler rftp.comSteve DonovanJan Martin PettersenSergey Philippov
      BorujoaMichael OwensFranck MarciaMassimo Maria Ghisalberti
      Frank WunderlichJosepmaria RocaTobias EngvallSuzumizaki Kimitaka
      Michael CartmellPascal HurniAndreRandy Butler
      Georg RitterMichael GoffioulBen HarperAdam Strzelecki
      Kamen StanevSteve MenardOliver YeohEric Promislow
      Joseph GalbraithJeffrey RenArmel AsselinJim Pattee
      Friedrich VedderSebastian PippingAndre ArpinStanislav Maslovski
      Martin StoneFabien ProriolmimirNicola Civran
      SnowMitchell ForalPieter HoltzhausenWaldemar Augustyn
      Jason HaslamSebastian SteinlechnerChris RickardRob McMullen
      Stefan SchwendelerCristian AdamNicolas ChachereauIstvan Szollosi
      Xie RenhuiEnrico TrögerTodd WhitemanYuval Papish
      instantonSergio LucatoVladVRODmitry Maslov
      chupakabraJuan Carlos Arevalo BaezaNick TreleavenStephen Stagg
      Jean-Paul IribarrenTim GerundtSam HarwellBoris
      Jason OsterGertjan KloostermanalexbodnSergiu Dotenco
      Anders KarlssonozlooperMarko NjezicEugen Bitter
      Christoph BaumannChristopher BeanSergey KishchenkoKai Liu
      Andreas RumpfJames MoffattYuzhou XinNic Jansma
      Evan JonesMike LischkeEric KiddmaXmo
      David SeverwrightJon StraitOliver KiddleEtienne Girondel
      Haimag RenAndrey MoskalyovXaviToby Inkster
      Eric ForgeotColomban WendlingNeoJordan Russell
      Farshid LashkariSam RawlinsMichael MullinCarlos SS
      vimMartial DemolinsTino WeinkaufJérôme Laforge
      Udo LechnerMarco FaldaDariusz KnocińskiBen Fisher
      Don GobinJohn YeungAdobeElizabeth A. Irizarry
      Mike SchroederMorten MacFlyJaime GimenoThomas Linder Puls
      Artyom ZuikovGerritOccam's RazorBen Bluemel
      David WolfendaleChris AngelicoMarat DukhanStefan Weil
      Rex ConnRoss McKayBruno BarbieriGordon Smith
      dimitarSébastien GranjouxzenikoJames Ribe
      Markus NißlMartin PanterMark YenPhilippe Elsass
      Dimitar ZhekovFan YangDenis Shelomovskijdarmar
      John VellaChinh NguyenSakshi VermaJoel B. Mohler
      IsiledhelVidya WasiG. HuByron Hawkins
      AlphaJohn DonoghuekudahIgor Shaula
      Pavel BulochkinYosef Or BoczkoBrian GriffinÖzgür Emir
      NeomiOmegaPhilSiegeLordErik
      TJFMark RobinsonThomas Martitzfelix
      Christian WaltherEbbenRobert GiesekeMike M
      nkmathewAndreas TscharnerLee Wilmottjohnsonj
      VicenteNick GravgaardIan GoldbyHolger Stenger
      danselmiMat BerchtoldMichael StaszewskiBaurzhan Muftakhidinov
      Erik AngelinYusuf Ramazan KaragözMarkus HeidelbergJoe Mueller
      Mika AttilaJoMazMMarkus MoserStefan Küng
      Jiří TechetJonathan HuntSerg StetsukJordan Jueckstock
      Yury DubinskySam HocevarLuyomiMatt Gilarde
      Mark CJohannes SasongkofstirlitzRobin Haberkorn
      Pavel SountsovDirk LorenzenKasper B. GraversenChris Mayo
      Van de BuggerTse Kit YamSmartShare SystemsMorten Brørup
      Alexey DenisovJustin DaileyoirfeodentA-R-C-A
      Roberto RossiKenny LiuIain Clarkedesto
      John FlatnessThorsten KaniBernhard M. WiedemannBaldur Karlsson
      Martin KleusbergJannickZufu LiuSimon Sobisch
      Georger AraújoDimitar RadevGunter KönigsmannNicholai Benalal
      Andreas RönnquistHenrik HankLuke Rasmussen
      maboroshinGokul Krishnan
      +

      + Images used in GTK+ version +

      +
        +
      • + + Icons Copyright(C) 1998 by Dean S. Jones
        +
      • +
      +

      + Release 3.10.1 +

      +
        +
      • + Released 31 October 2018. +
      • +
      • + Add SCI_SETCOMMANDEVENTS API to allow turning off command events as they + can be a significant performance cost. +
      • +
      • + Optional indexing of line starts in UTF-8 documents by UTF-32 code points and UTF-16 code units added. + This can improve performance for clients that provide UTF-32 or UTF-16 interfaces or that need to interoperate + with UTF-32 or UTF-16 components. +
      • +
      • + Lexers added for SAS and Stata. + Feature #1185. +
      • +
      • + Improve efficiency of idle wrapping by wrapping in blocks as large as possible while + still remaining responsive. +
      • +
      • + Updated case conversion and character categories to Unicode 11. +
      • +
      • + C++ lexer fixes evaluation of "#elif". + Bug #2045. +
      • +
      • + Markdown lexer fixes highlighting of non-ASCII characters in links. +
      • +
      • + SCI_MARKERADD returns -1 for invalid lines as documented instead of 0. + Bug #2051. +
      • +
      • + Shell folder folds "if", "do", and "case". + Feature #1144. +
      • +
      • + Fix margin cursor on Cocoa to point more accurately. +
      • +
      • + Updated ConTeXt Lua LPeg lexer. +
      • +
      • + Improved folding of traditionally single elements in HTML Lua LPeg lexer. +
      • +
      • + Improved accuracy of Markdown Lua LPeg lexer. +
      • +
      +

      + Release 3.10.0 +

      +
        +
      • + Released 30 June 2018. +
      • +
      • + Add experimental SC_DOCUMENTOPTION_TEXT_LARGE option to accomodate documents larger than + 2 GigaBytes. +
      • +
      • + The platform layer interface has changed with the removal of the ElapsedTime + class in favor of C++11's chrono. +
      • +
      • + Additional print option SC_PRINT_SCREENCOLOURS prints with the same colours used on screen + including line numbers. +
      • +
      • + INDIC_GRADIENT and INDIC_GRADIENTCENTRE indicator types added. + INDIC_GRADIENT starts with a specified colour and alpha at top of line and fades + to fully transparent at bottom. + INDIC_GRADIENTCENTRE starts with a specified colour and alpha at centre of line and fades + to fully transparent at top and bottom. +
      • +
      • + Wrap indent mode SC_WRAPINDENT_DEEPINDENT added which indents two tabs from previous line. +
      • +
      • + Indicators are drawn for line end characters when displayed. +
      • +
      • + Most invalid bytes in DBCS encodings are displayed as blobs to make problems clear + and ensure something is shown. +
      • +
      • + Curses platform fixed potential crash with newer versions of ncurses. +
      • +
      • + Diff lexer adds styles for diffs containing patches. +
      • +
      • + Regular expression crash fixed on macOS when linking to libstdc++. +
      • +
      • + EDIFACT lexer adds property lexer.edifact.highlight.un.all to highlight all UN* segments. + Feature #1166. +
      • +
      • + Fortran folder understands "change team" and "endteam". + Feature #1216. +
      • +
      • + Markdown Lua LPeg lexer fixes incorrect highlighting of markdown lists. +
      • +
      • + Fixed child Lua LPeg lexers that embed themselves into parents. Also fixed proxy lexers. +
      • +
      • + Fixed legacy Lua LPeg lexers with custom fold functions. +
      • +
      • + C# Lua LPeg lexer highlights "var" keyword. +
      • +
      • + Set the last X chosen when SCI_REPLACESEL called to ensure macros work + when text insertion followed by caret up or down. +
      • +
      • + Bugs fixed in regular expression searches in Scintilla where some matches did not occur in an + effort to avoid infinite loops when replacing on empty matches like "^" and "$". + Applications should always handle empty matches in a way that avoids infinite loops, commonly + by incrementing the search position after replacing an empty match. + SciTE fixes a bug where replacing "^" always matched on the first line even when it was an + "in selection" replace and the selection started after the line start. +
      • +
      • + Crashes fixed on macOS for invalid DBCS characters when dragging text, + changing case of text, case-insensitive searching, and retrieving text as UTF-8. +
      • +
      • + Regular expression crash fixed on macOS when linking to libstdc++. +
      • +
      • + On Win32, a new file, ScintillaDLL.cxx, provides + the DllMain function required for a stand-alone Scintilla DLL. Build and project files should include this + file when producing a DLL and omit it when producing a static library or linking Scintilla statically. + The STATIC_BUILD preprocessor symbol is no longer used. +
      • +
      • + On Win32, Direct2D support is no longer automatically detected during build. + DISABLE_D2D may still be defined to remove Direct2D features. +
      • +
      • + In some cases, invalid UTF-8 is handled in a way that is a little friendlier. + For example, when copying to the clipboard on Windows, an invalid lead byte will be copied as the + equivalent ISO 8859-1 character and will not hide the following byte. + Feature #1211. +
      • +
      +

      + Release 3.8.0 +

      +
        +
      • + Released 29 Mar 2018. +
      • +
      • + Lua can be used to write lexers with the new, optional, LPeg lexer. +
      • +
      • + New curses platform support. +
      • +
      • + Support dropped for GTK+ versions before 2.24. +
      • +
      • + A new lexer interface ILexerWithMetaData with additional style metadata methods was added. +
      • +
      • + The platform layer interface has changed with unused methods removed, a new mechanism for + reporting events, removal of methods that take individual keyboard modifiers, and removal of old timer methods. +
      • +
      • + Style metadata may be retrieved from lexers that support this through the SCI_GETNAMEDSTYLES, SCI_NAMEOFSTYLE, + SCI_TAGSOFSTYLE, and SCI_DESCRIPTIONOFSTYLE APIs. +
      • +
      • + The default encoding in Scintilla is UTF-8. +
      • +
      • + An SCN_AUTOCSELECTIONCHANGE notification is sent when items are highlighted in an autocompletion or user list. +
      • +
      • + The data parameter to ILoader::AddData made const. + Bug #1955. +
      • +
      • + The ILoader interface is defined in its own header ILoader.h as it is not + related to lexing so doesn't belong in ILexer.h. +
      • +
      • + The Scintilla namespace is always active for internal symbols and for the lexer and document interfaces. +
      • +
      • + SCI_CREATEDOCUMENT adds a bytes argument to allocate memory for an initial size. + SCI_CREATELOADER and SCI_CREATEDOCUMENT add a documentOption argument to + allow choosing different document capabilities. +
      • +
      • + Add SC_DOCUMENTOPTION_STYLES_NONE option to stop allocating memory for styles. +
      • +
      • + Add SCI_GETMOVEEXTENDSSELECTION to allow applications to add more + complex selection commands. +
      • +
      • + For rectangular selections, pressing Home or End now moves the caret to the Home or End + position instead of the limit of the rectangular selection. +
      • +
      • + On Win32, the standard makefiles build a libscintilla static library as well as the existing dynamic libraries. +
      • +
      • + Fix move-extends-selection mode for rectangular and line selections. +
      • +
      • + On GTK+, change lifetime of selection widget to avoid runtime warnings. +
      • +
      • + Fix building on Mingw/MSYS to perform file copies and deletions. + Bug #1993. +
      • +
      • + Lexer added for the Maxima computer algebra language. + Feature #1210. +
      • +
      • + Fix hang in Lua lexer when lexing a label upto the terminating "::". + Bug #1999. +
      • +
      • + Lua lexer matches identifier chains with dots and colons. + Bug #1952. +
      • +
      • + Fix HTML lexer handling of Django so that nesting a {{ }} or {% %} + Django tag inside of a {# #} Django comment does not break highlighting of rest of file +
      • +
      • + The Matlab folder now treats "while" as a fold start. + Bug #1985. +
      • +
      • + Improve VHDL lexer's handling of character literals and escape characters in strings. +
      • +
      • + The Baan lexer checks that matches to 3rd set of keywords are function calls and leaves as identifiers if not. + Baan lexer and folder support #context_on / #context_off preprocessor feature. +
      • +
      • + The C++ lexer improved preprocessor conformance.
        + Default value of 0 for undefined preprocessor symbols.
        + #define A is treated as #define A 1.
        + "defined A" removes "A" before replacing "defined" with value. + Bug #1966. +
      • +
      • + The Python folder treats triple-quoted f-strings like triple-quoted strings. + Bug #1977. +
      • +
      • + The SQL lexer uses sql.backslash.escapes for double quoted strings. + Bug #1968. +
      • +
      • + The Matlab lexer treats 'end' as a number rather than a keyword when used as a index. + This also stops incorrect folding. + Bug #1951. +
      • +
      • + The Matlab folder implements "fold", "fold.comment", and "fold.compact" properties. + Bug #1965. +
      • +
      • + The Rust lexer recognizes 'usize' numeric literal suffixes. + Bug #1919. +
      • +
      • + Minor undefined behaviour fixed. + Bug #1978. +
      • +
      • + Fix double tap word selection on Windows 10 1709 Fall Creators Update. + Bug #1983. +
      • +
      • + Fix closing autocompletion lists on Cocoa for macOS 10.13 where the window + was emptying but staying visible. + Bug #1981. +
      • +
      • + Fix Cocoa hang when Scintilla loaded from SMB share on macOS 10.13. + Bug #1979. +
      • +
      • + On Cocoa, improve scrolling on macOS 10.12. + Bug #1885. +
      • +
      • + On Cocoa, fix line selection by clicking in the margin when scrolled. + Bug #1971. +
      • +
      • + Ensure redraw when application changes overtype mode so caret change visible even when not blinking. + Notify application with SC_UPDATE_SELECTION when overtype changed - previously + sent SC_UPDATE_CONTENT. +
      • +
      • + Fix drawing failure when in wrap mode for delete to start/end of line which + affects later lines but did not redraw them. + Also fixed drawing for wrap mode on GTK+ 2.x. + Bug #1949. +
      • +
      • + On GTK+ fix drawing problems including incorrect scrollbar redrawing and flickering of text. + Bug #1876. +
      • +
      • + On Linux, both for GTK+ and Qt, the default modifier key for rectangular selection is now Alt. + This is the same as Windows and macOS. + This was changed from Ctrl as window managers are less likely to intercept Alt+Drag for + moving windows than in the past. +
      • +
      • + On Cocoa, fix doCommandBySelector but avoid double effect of 'delete' + key. + Bug #1958. +
      • +
      • + On Qt, the updateUi signal includes the 'updated' flags. + No updateUi signal is sent for focus in events. + These changes make Qt behave more like the other platforms. +
      • +
      • + On Qt, dropping files on Scintilla now fires the SCN_URIDROPPED notification + instead of inserting text. +
      • +
      • + On Qt, focus changes send the focusChanged signal. + Bug #1957. +
      • +
      • + On Qt, mouse tracking is reenabled when the window is reshown. + Bug #1948. +
      • +
      • + On Windows, the DirectWrite modes SC_TECHNOLOGY_DIRECTWRITEDC and + SC_TECHNOLOGY_DIRECTWRITERETAIN are no longer provisional. +
      • +
      +

      + Release 3.7.6 +

      +
        +
      • + Released 8 August 2017. +
      • +
      • + This is the first release of the + long term branch + which avoids using features from C++14 or later in order to support older systems. +
      • +
      • + The Baan lexer correctly highlights numbers when followed by an operator. +
      • +
      • + On Cocoa, fix a bug with retrieving encoded bytes. +
      • +
      +

      + Release 3.7.5 +

      +
        +
      • + Released 26 May 2017. +
      • +
      • + Support dropped for Microsoft Visual C++ 2013 due to increased use of C++11 features. +
      • +
      • + Added a caret line frame as an alternative visual for highlighting the caret line. +
      • +
      • + Added "Reverse Selected Lines" feature. +
      • +
      • + SciTE adds "Select All Bookmarks" command. +
      • +
      • + SciTE adds a save.path.suggestion setting to suggest a file name when saving an + unnamed buffer. +
      • +
      • + Updated case conversion and character categories to Unicode 9. +
      • +
      • + The Baan lexer recognizes numeric literals in a more compliant manner including + hexadecimal numbers and exponentials. +
      • +
      • + The Bash lexer recognizes strings in lists in more cases. + Bug #1944. +
      • +
      • + The Fortran lexer recognizes a preprocessor line after a line continuation &. + Bug #1935. +
      • +
      • + The Fortran folder can fold comments. + Bug #1936. +
      • +
      • + The PowerShell lexer recognizes escaped quotes in strings. + Bug #1929. +
      • +
      • + The Python lexer recognizes identifiers more accurately when they include non-ASCII characters. +
      • +
      • + The Python folder treats comments at the end of the file as separate from the preceding structure. +
      • +
      • + The YAML lexer recognizes comments in more situations and styles a + "..." line like a "---" line. + Bug #1931. +
      • +
      • + Update scroll bar when annotations added, removed, or visibility changed. + Feature #1187. +
      • +
      • + Canceling modes with the Esc key preserves a rectangular selection. + Bug #1940. +
      • +
      • + Builds are made with a sorted list of lexers to be more reproducible. + Bug #1946. +
      • +
      • + On Cocoa, a leak of mouse tracking areas was fixed. +
      • +
      • + On Cocoa, the autocompletion is 4 pixels wider to avoid text truncation. +
      • +
      • + On Windows, stop drawing a focus rectangle on the autocompletion list and + raise the default list length to 9 items. +
      • +
      • + SciTE examines at most 1 MB of a file to automatically determine indentation + for indent.auto to avoid a lengthy pause when loading very large files. +
      • +
      • + SciTE user interface uses lighter colours and fewer 3D elements to match current desktop environments. +
      • +
      • + SciTE sets buffer dirty and shows message when file deleted if load.on.activate on. +
      • +
      • + SciTE on Windows Find strip Find button works in incremental no-close mode. + Bug #1926. +
      • +
      +

      + Release 3.7.4 +

      +
        +
      • + Released 21 March 2017. +
      • +
      • + Requires a C++11 compiler. GCC 4.8 and MSVC 2015 are supported. +
      • +
      • + Support dropped for Windows NT 4. +
      • +
      • + Accessibility support may be queried with SCI_GETACCESSIBILITY. + On GTK+, accessibility may be disabled by calling SCI_SETACCESSIBILITY. +
      • +
      • + Lexer added for "indent" language which is styled as plain text but folded by indentation level. +
      • +
      • + The Progress ABL lexer handles nested comments where comment starts or ends + are adjacent like "/*/*" or "*/*/". +
      • +
      • + In the Python lexer, improve f-string support. + Add support for multiline expressions in triple quoted f-strings. + Handle nested "()", "[]", and "{}" in f-string expressions and terminate expression colouring at ":" or "!". + End f-string if ending quote is seen in a "{}" expression. + Fix terminating single quoted f-string at EOL. + Bug #1918. +
      • +
      • + The VHDL folder folds an "entity" on the first line of the file. +
      • +
      • + For IMEs, do not clear selected text when there is no composition text to show. +
      • +
      • + Fix to crash with fold tags where line inserted at start. +
      • +
      • + Fix to stream selection mode when moving caret up or down. + Bug #1905. +
      • +
      • + Drawing fixes for fold tags include fully drawing lines and not overlapping some + drawing and ensuring edges and mark underlines are visible. +
      • +
      • + Fix Cocoa failure to display accented character chooser for European + languages by partially reverting a change made to prevent a crash with + Chinese input by special-casing the Cangjie input source. + Bug #1881. +
      • +
      • + Fix potential problems with IME on Cocoa when document contains invalid + UTF-8. +
      • +
      • + Fix crash on Cocoa with OS X 10.9 due to accessibility API not available. + Bug #1915. +
      • +
      • + Improved speed of accessibility code on GTK+ by using additional memory + as a cache. + Bug #1910. +
      • +
      • + Fix crash in accessibility code on GTK+ < 3.3.6 caused by previous bug fix. + Bug #1907. +
      • +
      • + Fix to prevent double scrolling on GTK+ with X11. + Bug #1901. +
      • +
      • + SciTE on GTK+ adds an "accessibility" property to allow disabling accessibility + on GTK+ as an optimization. +
      • +
      • + SciTE on GTK+ has changed file chooser behaviour for some actions: + overwriting an existing file shows a warning; + the default session file name "SciTE.session" is shown and a "*.session" filter is applied; + appropriate filters are applied when exporting; + the current file name is displayed in "Save As" even when that file no longer exists. +
      • +
      • + SciTE fixed a bug where, on GTK+, when the output pane had focus, menu commands + performed by mouse were sent instead to the edit pane. +
      • +
      • + SciTE on Windows 8+ further restricts the paths searched for DLLs to the application + and system directories which may prevent some binary planting attacks. +
      • +
      • + Fix failure to load Direct2D on Windows when used on old versions of Windows. + Bug #1653. +
      • +
      +

      + Release 3.7.3 +

      +
        +
      • + Released 19 February 2017. +
      • +
      • + Display block caret over the character at the end of a selection to be similar + to other editors. +
      • +
      • + In SciTE can choose colours for fold markers. + Feature #1172. +
      • +
      • + In SciTE can hide buffer numbers in tabs. + Feature #1173. +
      • +
      • + The Diff lexer recognizes deleted lines that start with "--- ". +
      • +
      • + The Lua lexer requires the first line to start with "#!" to be treated as a shebang comment, + not just "#". + Bug #1900. +
      • +
      • + The Matlab lexer requires block comment start and end to be alone on a line. + Bug #1902. +
      • +
      • + The Python lexer supports f-strings with new styles, allows Unicode identifiers, + and no longer allows @1 to be a decorator. + Bug #1848. +
      • +
      • + Fix folding inconsistency when fold header added above a folded part. + Avoid unnecessary unfolding when a deletion does not include a line end. + Bug #1896. +
      • +
      • + Fix finalization crash on Cocoa. + Bug #1909. +
      • +
      • + SciTE on GTK+ can have a wide divider between the panes with the + split.wide property. +
      • +
      • + Fix display of autocompletion lists and calltips on GTK+ 3.22 on Wayland. + Newer APIs used on GTK+ 3.22 as older APIs were deprecated. +
      • +
      • + Fix crash in accessibility code on GTK+ due to signal receipt after destruction. + Bug #1907. +
      • +
      • + Make trackpad scrolling work on Wayland. + Bug #1901. +
      • +
      +

      + Release 3.7.2 +

      +
        +
      • + Released 30 December 2016. +
      • +
      • + Minimize redrawing for SCI_SETSELECTIONN* APIs. + Bug #1888. +
      • +
      • + Use more precision to allow selecting individual lines in files with + more than 16.7 million lines. +
      • +
      • + For Qt 5, define QT_WS_MAC or QT_WS_X11 on those platforms. + Bug #1887. +
      • +
      • + For Cocoa, fix crash on view destruction with macOS 10.12.2. + Bug #1891. +
      • +
      • + Fix crash on GTK+ <3.8 due to incorrect lifetime of accessibility object. + More accurate reporting of attribute ranges and deletion lengths for accessibility. +
      • +
      • + In SciTE, if a Lua script causes a Scintilla failure exception, display error + message in output pane instead of exiting. + Bug #1773. +
      • +
      +

      + Release 3.7.1 +

      +
        +
      • + Released 4 December 2016. +
      • +
      • + The Scintilla namespace is no longer applied to struct definitions in Scintilla.h even + when SCI_NAMESPACE defined. + Client code should not define SCI_NAMESPACE. +
      • +
      • + Structure names in Scintilla.h without prefixes are deprecated and will now only + be usable with INCLUDE_DEPRECATED_FEATURES defined.
        + Use the newer names with the "Sci_" prefix:
        + CharacterRange → Sci_CharacterRange
        + TextRange → Sci_TextRange
        + TextToFind → Sci_TextToFind
        + RangeToFormat → Sci_RangeToFormat
        + NotifyHeader → Sci_NotifyHeader +
      • +
      • + Previously deprecated features SC_CP_DBCS, SCI_SETUSEPALETTE. and SCI_GETUSEPALETTE + have been removed and can no longer be used in client code. +
      • +
      • + Accessibility support allowing screen readers to work added on GTK+ and Cocoa. +
      • +
      • + Textual tags may be displayed to the right on folded lines with SCI_TOGGLEFOLDSHOWTEXT. + This is commonly something like "{ ... }" or "<tr>...</tr>". + It is displayed with the STYLE_FOLDDISPLAYTEXT style and may have a box drawn around it + with SCI_FOLDDISPLAYTEXTSETSTYLE. +
      • +
      • + A mouse right-click over the margin may send an SCN_MARGINRIGHTCLICK event. + This only occurs when popup menus are turned off. + SCI_USEPOPUP now has three states: SC_POPUP_NEVER, SC_POPUP_ALL, or SC_POPUP_TEXT. +
      • +
      • + INDIC_POINT and INDIC_POINTCHARACTER indicators added to display small arrows + underneath positions or characters. +
      • +
      • + Added alternate appearance for visible tabs which looks like a horizontal line. + Controlled with SCI_SETTABDRAWMODE. + Feature #1165. +
      • +
      • + On Cocoa, a modulemap file is included to allow Scintilla to be treated as a module. + This makes it easier to use Scintilla from the Swift language. +
      • +
      • + Baan folder accommodates sections and lexer fixes definition of SCE_BAAN_FUNCDEF. +
      • +
      • + EDIFACT lexer and folder added. + Feature #1166. +
      • +
      • + JSON folder fixed where it didn't resume folding with the correct fold level. +
      • +
      • + Matlab folder based on syntax instead of indentation so more accurate. + Bug #1692. +
      • +
      • + YAML lexer fixed style of references and keywords when followed by a comment. + Bug #1872. +
      • +
      • + Margin click to select line now clears rectangular and additional selections. +
      • +
      • + Fixed a NULL access bug on GTK+ where the scrollbars could be used during destruction. + Bug #1873. +
      • +
      • + A potential bug on GTK+ fixed where asynchronous clipboard could be delivered after its + target Scintilla instance was destroyed. +
      • +
      • + Cocoa IME made more compliant with documented behaviour to avoid bugs that caused + huge allocations. + Bug #1881. +
      • +
      • + On Win32 fix EM_SETSEL to match Microsoft documentation.. + Bug #1886. +
      • +
      • + SciTE on GTK+ allows localizing tool bar tool tips. + Feature #1167. +
      • +
      • + SciTE on Windows restores focus to edit pane after closing user strip. +
      • +
      • + SciTE measures files larger that 2 GB which allows it to refuse to open huge files more consistently + and to show better warning messages. +
      • +
      +

      + Release 3.7.0 +

      +
        +
      • + Released 16 October 2016. +
      • +
      • + Word selection, navigation, and manipulation is now performed on characters instead of bytes + leading to more natural behaviour for multi-byte encodings like UTF-8. + For UTF-8 characters 0x80 and above, classification into word; punctuation; space; or line-end + is based on the Unicode general category of the character and is not customizable. + Bug #1832. +
      • +
      • + Two enums changed in Scintilla.iface which may lead to changed bindings. + There were 2 FontQuality enums and the first is now PhasesDraw. + The prefix for FoldAction was SC_FOLDACTION and is now SC_FOLDACTION_ + which is similar to other enums. + These changes do not affect the standard C/C++ binding. +
      • +
      • + EDGE_MULTILINE and SCI_MULTIEDGEADDLINE added to allow displaying multiple + vertical edges simultaneously. +
      • +
      • + The number of margins can be changed with SCI_SETMARGINS. +
      • +
      • + Margin type SC_MARGIN_COLOUR added so that the application may + choose any colour for a margin with SCI_SETMARGINBACKN. +
      • +
      • + On Win32, mouse wheel scrolling can be restricted to only occur when the mouse is + within the window. +
      • +
      • + The WordList class in lexlib used by lexers adds an InListAbridged method for + matching keywords that have particular prefixes and/or suffixes. +
      • +
      • + The Baan lexer was changed significantly with more lexical states, keyword sets, + and support for abridged keywords. +
      • +
      • + The CoffeeScript lexer styles interpolated code in strings. + Bug #1865. +
      • +
      • + The Progress lexer "progress" has been replaced with a new lexer "abl" + (Advanced Business Language) + with a different set of lexical states and more functionality. + The lexical state prefix has changed from SCE_4GL_ to SCE_ABL_. + Feature #1143. +
      • +
      • + The PowerShell lexer understands the grave accent escape character. + Bug #1868. +
      • +
      • + The YAML lexer recognizes inline comments. + Bug #1660. +
      • +
      • + SciTE on Windows can retain coloured selection when inactive with + selection.always.visible property. +
      • +
      • + SciTE on Windows adds a state to close.on.find to close the find strip when + a match is found. +
      • +
      • + Fix caret position after left or right movement with rectangular selection. + Bug #1861. +
      • +
      • + In SciTE, optional prefix argument added to scite.ConstantName method. + Bug #1860. +
      • +
      • + On Cocoa, include ILexer.h in the public headers of the framework. + Bug #1855. +
      • +
      • + On Cocoa, allow subclass of SCIContentView to set cursor. + Bug #1863. +
      • +
      • + On Cocoa, recognize the numeric keypad '+', '-', and '/' keys as + SCK_ADD, SCK_SUBTRACT, and SCK_DIVIDE. + Bug #1867. +
      • +
      • + On GTK+ 3.21+ fix incorrect font size in auto-completion list. + Bug #1859. +
      • +
      • + Fix SciTE crash when command.mode ends with comma. + Bug #1857. +
      • +
      • + SciTE on Windows has a full size toolbar icon for "Close". +
      • +
      +

      + Release 3.6.7 +

      +
        +
      • + Released 4 September 2016. +
      • +
      • + C++11 range-based for loops used in SciTE so GCC 4.6 is now the minimum supported version. +
      • +
      • + SC_CHARSET_DEFAULT now means code page 1252 on Windows unless a code page is set. + This prevents unexpected behaviour and crashes on East Asian systems where default locales are commonly DBCS. + Projects which want to default to DBCS code pages in East Asian locales should set the code page and + character set explicitly. +
      • +
      • + SCVS_NOWRAPLINESTART option stops left arrow from wrapping to the previous line. + Most commonly wanted when virtual space is used. + Bug #1648. +
      • +
      • + The C++ lexer can fold on #else and #elif with the fold.cpp.preprocessor.at.else property. + Bug #210. +
      • +
      • + The errorlist lexer detects warnings from Visual C++ which do not contain line numbers. +
      • +
      • + The HTML lexer no longer treats "<?" inside a string in a script as potentially starting an XML document. + Bug #767. +
      • +
      • + The HTML lexer fixes a problem resuming at a script start where the starting state continued + past where it should. + Bug #1849. +
      • +
      • + When inserting spaces for virtual space and the position is in indentation and tabs are enabled + for indentation then use tabs. + Bug #1850. +
      • +
      • + Fix fold expand when some child text not styled. + Caused by fixes for Bug #1799. + Bug #1842. +
      • +
      • + Fix key binding bug on Cocoa for control+. + Bug #1854. +
      • +
      • + Fix scroll bar size warnings on GTK+ caused by #1831. + Bug #1851. +
      • +
      • + Small fixes for GTK+ makefile. + Bug #1844. + Bug #1845. + Bug #1846. +
      • +
      • + Fix SciTE indentation after code like "void function () {}". +
      • +
      • + Fix SciTE global regex replace of "^" with something which missed the line after empty + lines with LF line ends. + Bug #1839. +
      • +
      • + Fix SciTE on GTK+ 3.20 bug where toggle buttons on find and replace strips + did not show active state. + Bug #1853. +
      • +
      +

      + Release 3.6.6 +

      +
        +
      • + Released 24 May 2016. +
      • +
      • + C++ 11 <regex> support built by default. Can be disabled by defining NO_CXX11_REGEX. +
      • +
      • + SciTE_USERHOME environment variable allows separate location for writeable properties files. + Feature #965. +
      • +
      • + GObject introspection supports notify and command events. +
      • +
      • + The Progress lexer now allows comments preceded by a tab. +
      • +
      • + Scripts reading Scintilla.iface file include comments for enu and lex definitions. + Bug #1829. +
      • +
      • + Fix crashes on GTK+ if idle work active when destroyed. + Bug #1827. +
      • +
      • + Fixed bugs when used on GTK+ 3.20. + Bug #1825. + Bug #1831. +
      • +
      • + Fix SciTE search field background with dark theme on GTK+ 2.x. + Bug #1826. +
      • +
      • + Fixed bug on Win32 that allowed resizing autocompletion from bottom when it was + located above the caret. +
      • +
      • + On Win32, when using a screen reader and selecting text using Shift+Arrow, + fix bug when scrolling made the caret stay at the same screen location + so the screen reader did not speak the added or removed selection. +
      • +
      +

      + Release 3.6.5 +

      +
        +
      • + Released 26 April 2016. +
      • +
      • + JSON lexer added. + Feature #1140. +
      • +
      • + The C++ lexer fixes a bug with multi-line strings with line continuation where the string style + overflowed after an edit. + Bug #1824. +
      • +
      • + The Python lexer treats '@' as an operator except when it is the first visible character on a line. + This is for Python 3.5. +
      • +
      • + The Rust lexer allows '?' as an operator. + Feature #1146. +
      • +
      • + Doubled size of compiled regex buffer. + Bug #1822. +
      • +
      • + For GTK+, the Super modifier key can be used in key bindings. + Feature #1142. +
      • +
      • + For GTK+, fix some crashes when using multiple threads. +
      • +
      • + Platform layer font cache removed on GTK+ as platform-independent caches are used. + This avoids the use of thread locking and initialization of threads so any GTK+ + applications that rely on Scintilla initializing threads will have to do that themselves. +
      • +
      • + SciTE bug fixed with exported HTML where extra line shown. + Bug #1816. +
      • +
      • + SciTE on Windows fixes bugs with pop-up menus in the find and replace strips. + For the replace strip, menu choices change the state. + For the find strip, menu choices are reflected in the appearance of their corresponding buttons. +
      • +
      • + SciTE on Windows on high DPI displays fixes the height of edit boxes in user strips. +
      • +
      +

      + Release 3.6.4 +

      +
        +
      • + Released 13 March 2016. +
      • +
      • + SciTE allows setting the autocompletion type separator character. +
      • +
      • + The C++ folder folds code on '(' and ')' to allow multi-line calls to be folded. + Feature #1138. +
      • +
      • + For the HTML lexer, limit the extent of Mako line comments to finish before + the line end characters. +
      • +
      • + Folds unfolded when two fold regions are merged by either deleting an intervening line + or changing its fold level by adding characters. + This was fixed both in Scintilla and in SciTE's equivalent code. + Bug #1799.
        +
      • +
      • + The Progress lexer supports hexadecimal numeric literals, + single-line comments, abbreviated keywords and + extends nested comments to unlimited levels. +
      • +
      • + Ruby lexer treats alternate hash key syntax "key:" as a symbol. + Bug #1810. +
      • +
      • + Rust lexer handles bracketed Unicode string escapes like "\u{123abc}". + Bug #1809. +
      • +
      • + For GTK+ on Windows fix 64-bit build which was broken in 3.6.3. +
      • +
      • + For Qt, release builds have assertions turned off. +
      • +
      • + For Qt on Windows, fix compilation failure for Qt 4.x. +
      • +
      • + IME target range displayed on Qt for OS X. +
      • +
      • + On Windows, make clipboard operations more robust by retrying OpenClipboard if it fails + as this may occur when another application has opened the clipboard. +
      • +
      • + On Windows back out change that removed use of def file to ensure + Scintilla_DirectFunction exported without name mangling. + Bug #1813. +
      • +
      • + On GTK+ and Qt over Win32 in Korean fix bug caused by last release's word input change. +
      • +
      • + For SciTE, more descriptive error messages are displayed when there are problems loading the + Lua startup script. + Feature #1139. +
      • +
      +

      + Release 3.6.3 +

      +
        +
      • + Released 18 January 2016. +
      • +
      • + Allow painting without first styling all visible text then styling in the background + using idle-time. This helps performance when scrolling down in very large documents. + Can also incrementally style after the visible area to the end of the document so that + the document is already styled when the user scrolls to it. +
      • +
      • + Support GObject introspection on GTK+. +
      • +
      • + SciTE supports pasting to each selection with the selection.multipaste setting. + Feature #1123. +
      • +
      • + SciTE can optionally display a read-only indicator on tabs and in the Buffers menu. +
      • +
      • + Bash lexer flags incomplete here doc delimiters as syntax errors. + Bug #1789.
        + Support added for using '#' in non-comment ways as is possible with zsh. + Bug #1794.
        + Recognize more characters as here-doc delimiters. + Bug #1778. +
      • +
      • + Errorlist lexer highlights warning messages from the Microsoft linker. +
      • +
      • + Errorlist lexer fixes bug with final line in escape sequence recognition mode. +
      • +
      • + Lua lexer includes '&' and '|' bitwise operators for Lua 5.3. + Bug #1790. +
      • +
      • + Perl lexer updated for Perl 5.20 and 5.22.
        + Allow '_' for subroutine prototypes. + Bug #1791.
        + Double-diamond operator <<>>.
        + Hexadecimal floating point literals.
        + Repetition in list assignment. + Bug #1793.
        + Highlight changed subroutine prototype syntax for Perl 5.20. + Bug #1797.
        + Fix module ::-syntax when special characters such as 'x' are used.
        + Added ' and " detection as prefix chars for x repetition operator. + Bug #1800. +
      • +
      • + Visual Prolog lexer recognizes numbers more accurately and allows non-ASCII verbatim + quoting characters. + Feature #1130. +
      • +
      • + Send SCN_UPDATEUI with SC_UPDATE_SELECTION when the application changes multiple + selection. +
      • +
      • + Expand folded areas before deleting fold header line. + Bug #1796. +
      • +
      • + Treat Unicode line ends like common line ends when maintaining fold state. +
      • +
      • + Highlight whole run for hover indicator when wrapped. + Bug #1784. +
      • +
      • + On Cocoa, fix crash when autocompletion list closed during scroll bounce-back. + Bug #1788. +
      • +
      • + On Windows, fix non-BMP input through WM_CHAR and allow WM_UNICHAR to work + with non-BMP characters and on non-Unicode documents. + Bug #1779. +
      • +
      • + On Windows using DirectWrite, for ligatures and other character clusters, + display caret and selections part-way through clusters so that the caret doesn't stick + to the end of the cluster making it easier to understand editing actions. +
      • +
      • + On Windows, Scintilla no longer uses a .DEF file during linking as it duplicates + source code directives. +
      • +
      • + On GTK+ and Qt, Korean input by word fixed. +
      • +
      • + On GTK+, Qt, and Win32 block IME input when document is read-only or any selected text + is protected. +
      • +
      • + On GTK+ on OS X, fix warning during destruction. + Bug #1777. +
      • +
      • + Fix SciTE crashes when using LPEG lexers. +
      • +
      +

      + Release 3.6.2 +

      +
        +
      • + Released 6 November 2015. +
      • +
      • + Whitespace may be made visible just in indentation. +
      • +
      • + Whitespace dots are centred when larger than 1 pixel. +
      • +
      • + The Scintilla framework on Cocoa now contains version numbers. +
      • +
      • + SciTE's standard properties collect values from all active .properties file to produce the Language menu + and the file types pull-down in the File open dialog. +
      • +
      • + The single executable version of SciTE, Sc1, uses 'module' statements within its embedded + properties. This makes it act more like the full distribution allowing languages to be turned on + and off by setting imports.include and imports.exclude. + The default imports.exclude property adds eiffel, erlang, ps, and pov so these languages are + turned off by default. +
      • +
      • + SciTE adds an output.blank.margin.left property to allow setting the output pane + margin to a different width than the edit pane. +
      • +
      • + CoffeeScript lexer highlights ranges correctly. + Bug #1765. +
      • +
      • + Markdown lexer treats line starts consistently to always highlight *foo* or similar at line start. + Bug #1766. +
      • +
      • + Optimize marker redrawing by only drawing affected lines when markers shown in the text. +
      • +
      • + On Cocoa, timers and idling now work in modal dialogs. This also stops some crashes. +
      • +
      • + On Cocoa, fix crashes when deleting a ScintillaView. These crashes could occur when scrolling + at the time the ScintillaView was deleted although there may have been other cases. +
      • +
      • + On GTK+ 2.x, fix height of lines in autocompletion lists. + Bug #1774. +
      • +
      • + Fix bug with SCI_LINEENDDISPLAY where the caret moved to the next document line instead of the + end of the display line. + Bug #1772. +
      • +
      • + Report error (SC_STATUS_FAILURE) when negative length passed to SCI_SETSTYLING. + Bug #1768. +
      • +
      • + When SC_MARK_UNDERLINE is not assigned to a margin, stop drawing the whole line. +
      • +
      • + When reverting an untitled document in SciTE, just clear it with no message about a file. + Bug #1764. +
      • +
      • + SciTE on GTK+ allows use of Ctrl+A (Select All) inside find and replace strips. + Bug #1769. +
      • +
      +

      + Release 3.6.1 +

      +
        +
      • + Released 15 September 2015. +
      • +
      • + The oldest version of GTK+ supported now is 2.18 and for glib it is 2.22. +
      • +
      • + On GTK+, SC_CHARSET_OEM866 added to allow editing Russian files encoded in code page 866. + Feature #1019. +
      • +
      • + On Windows, reconversion is performed when requested by the IME. +
      • +
      • + CoffeeScript lexer adds lexical class for instance properties and fixes some cases of regex highlighting. + Bug #1749. +
      • +
      • + The errorlist lexer understands some ANSI escape sequences to change foreground colour and intensity. + This is sufficient to colour diagnostic output from gcc and clang when -fdiagnostics-color set. +
      • +
      • + The errorlist lexer allows the line number to be 0 in GCC errors as some tools report whole file + errors as line 0. +
      • +
      • + MySql lexer fixes empty comments /**/ so the comment state does not continue. +
      • +
      • + VHDL folder supports "protected" keyword. +
      • +
      • + Treat CRLF line end as two characters in SCI_COUNTCHARACTERS. + Bug #1757. +
      • +
      • + On GTK+ 3.x, fix height of lines in autocompletion lists to match the font. + Switch from deprecated style calls to CSS styling. + Removed setting list colours on GTK+ 3.16+ as no longer appears needed. +
      • +
      • + On GTK+, avoid "Invalid rectangle passed" warning messages by never reporting the client + rectangle with a negative width or height. + Bug #1743. +
      • +
      • + On Cocoa, copy Sci_Position.h into the framework so clients can build. +
      • +
      • + On Cocoa fix bug with drag and drop that could lead to crashes. + Bug #1751. +
      • +
      • + Fix SciTE disk exhaustion bug by reporting failures when writing files. + Bug #1760. +
      • +
      • + Fix find strip in SciTE on Windows XP to be visible. +
      • +
      • + SciTE on Windows changes the way it detects that a tool has finished executing to ensure all output data + from the process is read. +
      • +
      • + SciTE on Windows improves the time taken to read output from tools that produce a large amount + of output by a factor of around 10. +
      • +
      • + On GTK+ the keyboard command for View | End of Line was changed to Ctrl+Shift+N + to avoid clash with Search | Selection Add Next. + Bug #1750. +
      • +
      +

      + Release 3.6.0 +

      +
        +
      • + Released 3 August 2015. +
      • +
      • + External interfaces use the Sci_Position and Sci_PositionU typedefs instead of int and unsigned int + to allow for changes to a 64-bit interface on 64-bit platforms in the future. + Applications and external lexers should start using the new type names so that + they will be compatible when the 64-bit change occurs. + There is also Sci_PositionCR (long) for use in the Sci_CharacterRange struct which will + also eventually become 64-bit. +
      • +
      • + Multiple selection now works over more key commands. + The new multiple-selection handling commands include horizontal movement and selection commands, + line up and down movement and selection commands, word and line deletion commands, and + line end insertion. + This change in behaviours is conditional on setting the SCI_SETADDITIONALSELECTIONTYPING property. +
      • +
      • + Autocompletion lists send an SCN_AUTOCCOMPLETED notification after the text has been inserted. + Feature #1109. +
      • +
      • + The case mode style attribute can now be SC_CASE_CAMEL. +
      • +
      • + The Python lexer supports substyles for identifiers. +
      • +
      • + SciTE adds support for substyles. +
      • +
      • + SciTE's Export as RTF and Copy as RTF commands support UTF-8. +
      • +
      • + SciTE can display autocompletion on all IME input with ime.autocomplete property. +
      • +
      • + SciTE properties files now discard trailing white space on variable names. +
      • +
      • + Calling SCI_SETIDENTIFIERS resets styling to ensure any added identifier are highlighted. +
      • +
      • + Avoid candidate box randomly popping up away from edit pane with (especially + Japanese) IME input. +
      • +
      • + On Cocoa fix problems with positioning of autocompletion lists near screen edge + or under dock. Cancel autocompletion when window moved. + Bug #1740. +
      • +
      • + Fix drawing problem when control characters are in a hidden style as they then + have a zero width rectangle to draw but modify that rectangle in a way that + clears some pixels. +
      • +
      • + Report error when attempt to resize buffer to more than 2GB with SC_STATUS_FAILURE. +
      • +
      • + Fix bug on GTK+ with scroll bars leaking. + Bug #1742. +
      • +
      • + LexOthers.cxx file split into one file per lexer: LexBatch, LexDiff, + LexErrorList, LexMake, LexNull, and LexProps. +
      • +
      • + SciTE exporters handle styles > 127 correctly now. +
      • +
      • + SciTE on Windows can scale window element sizes based on the system DPI setting. +
      • +
      • + SciTE implements find.in.files.close.on.find on all platforms, not just Windows. +
      • +
      +

      + Release 3.5.7 +

      +
        +
      • + Released 20 June 2015. +
      • +
      • + Added SCI_MULTIPLESELECTADDNEXT to add the next occurrence of the main selection within the + target to the set of selections as main. If the current selection is empty then select word around caret. + SCI_MULTIPLESELECTADDEACH adds each occurrence of the main selection within the + target to the set of selections. +
      • +
      • + SciTE adds "Selection Add Next" and "Selection Add Each" commands to the Search menu. +
      • +
      • + Added SCI_ISRANGEWORD to determine if the parameters are at the start and end of a word. +
      • +
      • + Added SCI_TARGETWHOLEDOCUMENT to set the target to the whole document. +
      • +
      • + Verilog lexer recognizes protected regions and the folder folds protected regions. +
      • +
      • + A performance problem with markers when deleting many lines was fixed. + Bug #1733. +
      • +
      • + On Cocoa fix crash when ScintillaView destroyed if no autocompletion ever displayed. + Bug #1728. +
      • +
      • + On Cocoa fix crash in drag and drop. +
      • +
      • + On GTK+ 3.4+, when there are both horizontal and vertical scrollbars, draw the lower-right corner + so that it does not appear black when text selected. + Bug #1611. +
      • +
      • + Fixed most calls deprecated in GTK+ 3.16. Does not fix style override calls + as they are more complex. +
      • +
      • + SciTE on GTK+ 3.x uses a different technique for highlighting the search strip when there is + no match which is more compatible with future and past versions and different themes. +
      • +
      +

      + Release 3.5.6 +

      +
        +
      • + Released 26 May 2015. +
      • +
      • + On Qt, use fractional positioning calls and avoid rounding to ensure consistency. +
      • +
      • + SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 implemented on + Win32 as well as GTK+ and Cocoa. +
      • +
      • + C++ lexer fixes empty backquoted string. + Bug #1711. +
      • +
      • + C++ lexer fixes #undef directive. + Bug #1719. +
      • +
      • + Fortran folder fixes handling of "selecttype" and "selectcase". + Bug #1724. +
      • +
      • + Verilog folder folds interface definitions. +
      • +
      • + VHDL folder folds units declarations and fixes a case insensitivity bug with not treating "IS" the same as "is". +
      • +
      • + Fix bug when drawing text margins in buffered mode which would use default + encoding instead of chosen encoding. + Bug #1703. +
      • +
      • + Fix bug with Korean Hanja conversions in DBCS encoding on Windows. +
      • +
      • + Fix for reading a UTF-16 file in SciTE where a non-BMP character is split over a read buffer boundary. + Bug #1710. +
      • +
      • + Fix bug on GTK+ 2.x for Windows where there was an ABI difference between + compiler version. + Bug #1726. +
      • +
      • + Fix undo bug on Cocoa that could lose data.. +
      • +
      • + Fix link error on Windows when SCI_NAMESPACE used. +
      • +
      • + Fix exporting from SciTE when using Scintillua for lexing. +
      • +
      • + SciTE does not report twice that a search string can not be found when "Replace" pressed. + Bug #1716. +
      • +
      • + SciTE on GTK+ 3.x disables arrow in search combo when no entries. + Bug #1717. +
      • +
      +

      + Release 3.5.5 +

      +
        +
      • + Released 17 April 2015. +
      • +
      • + Scintilla on Windows is now always a wide character window so SCI_SETKEYSUNICODE has no effect + and SCI_GETKEYSUNICODE always returns true. These APIs are deprecated and should not be called. +
      • +
      • + The wxWidgets-specific ascent member of Font has been removed which breaks + compatibility with current wxStyledTextCtrl. + Bug #1682. +
      • +
      • + IME on Qt supports multiple carets and behaves more like other platforms. +
      • +
      • + Always use inline IME on GTK+ for Korean. +
      • +
      • + SQL lexer fixes handling of '+' and '-' in numbers so the '-' in '1-1' is seen as an operator and for + '1--comment' the comment is recognized. +
      • +
      • + TCL lexer reverts change to string handling. + Bug #1642. +
      • +
      • + Verilog lexer fixes bugs with macro styling. + Verilog folder fixes bugs with `end completing an `if* instead of `endif and fold.at.else, and implements + folding at preprocessor `else. +
      • +
      • + VHDL lexer supports extended identifiers. +
      • +
      • + Fix bug on Cocoa where the calltip would display incorrectly when + switching calltips and the new calltip required a taller window. +
      • +
      • + Fix leak on Cocoa with autocompletion lists. + Bug #1706. +
      • +
      • + Fix potential crash on Cocoa with drag and drop. + Bug #1709. +
      • +
      • + Fix bug on Windows when compiling with MinGW-w64 which caused text to not be drawn + when in wrap mode. + Bug #1705. +
      • +
      • + Fix SciTE bug with missing file open filters and add hex to excluded set of properties files so that its + settings don't appear. + Bug #1707. +
      • +
      • + Fix SciTE bug where files without extensions like "makefile" were not highlighted correctly. +
      • +
      +

      + Release 3.5.4 +

      +
        +
      • + Released 8 March 2015. +
      • +
      • + Indicators may have a different colour and style when the mouse is over them or the caret is moved into them. +
      • +
      • + An indicator may display in a large variety of colours with the SC_INDICFLAG_VALUEFORE + flag taking the colour from the indicator's value, which may differ for every character, instead of its + foreground colour attribute. +
      • +
      • + On Cocoa, additional IME methods implemented so that more commands are enabled. + For Japanese: Reverse Conversion, Convert to Related Character, and Search Similar Kanji + can now be performed. + The global definition hotkey Command+Control+D and the equivalent three finger tap gesture + can be used. +
      • +
      • + Minimum version of Qt supported is now 4.8 due to the use of QElapsedTimer::nsecsElapsed. +
      • +
      • + On Windows, for Korean, the VK_HANJA key is implemented to choose Hanja for Hangul and + to convert from Hanja to Hangul. +
      • +
      • + C++ lexer adds lexer.cpp.verbatim.strings.allow.escapes option that allows verbatim (@") strings + to contain escape sequences. This should remain off (0) for C# and be turned on (1) for Objective C. +
      • +
      • + Rust lexer accepts new 'is'/'us' integer suffixes instead of 'i'/'u'. + Bug #1098. +
      • +
      • + Ruby folder can fold multiline comments. + Bug #1697. +
      • +
      • + SQL lexer fixes a bug with the q-quote operator. +
      • +
      • + TCL lexer fixes a bug with some strings. + Bug #1642. +
      • +
      • + Verilog lexer handles escaped identifiers that begin with \ and end with space like \reset* . + Verilog folder fixes one bug with inconsistent folding when fold.comment is on and another + with typedef class statements creating a fold point, expecting an endclass statement. +
      • +
      • + VHDL folder fixes hang in folding when document starts with "entity". +
      • +
      • + Add new indicators INDIC_COMPOSITIONTHIN, INDIC_FULLBOX, and INDIC_TEXTFORE. + INDIC_COMPOSITIONTHIN is a thin underline that mimics the appearance of non-target segments in OS X IME. + INDIC_FULLBOX is similar to INDIC_STRAIGHTBOX but covers the entire character area which means that + indicators with this style on contiguous lines may touch. INDIC_TEXTFORE changes the text foreground colour. +
      • +
      • + Fix adaptive scrolling speed for GTK+ on OS X with GTK Quartz backend (as opposed to X11 backend). + Bug #1696. +
      • +
      • + Fix position of autocompletion and calltips on Cocoa when there were two screens stacked vertically. +
      • +
      • + Fix crash in SciTE when saving large files in background when closing application. + Bug #1691. +
      • +
      • + Fix decoding of MSVC warnings in SciTE so that files in the C:\Program Files (x86)\ directory can be opened. + This is a common location of system include files. +
      • +
      • + Fix compilation failure of C++11 <regex> on Windows using gcc. +
      • +
      +

      + Release 3.5.3 +

      +
        +
      • + Released 20 January 2015. +
      • +
      • + Support removed for Windows 95, 98, and ME. +
      • +
      • + Lexers added for Motorola S-Record files, Intel hex files, and Tektronix extended hex files with folding for Intel hex files. + Feature #1091. + Feature #1093. + Feature #1095. + Feature #1096. +
      • +
      • + C++ folder allows folding on square brackets '['. + Feature #1087. +
      • +
      • + Shell lexer fixes three issues with here-documents. + Bug #1672. +
      • +
      • + Verilog lexer highlights doc comment keywords; has separate styles for input, output, and inout ports + (lexer.verilog.portstyling); fixes a bug in highlighting numbers; can treat upper-case identifiers as + keywords (lexer.verilog.allupperkeywords); and can use different styles for code that is inactive due + to preprocessor commands (lexer.verilog.track.preprocessor, lexer.verilog.update.preprocessor). +
      • +
      • + When the calltip window is taller than the Scintilla window, leave it in a + position that avoids overlapping the Scintilla text. +
      • +
      • + When a text margin is displayed, for annotation lines, use the background colour of the base line. +
      • +
      • + On Windows GDI, assume font names are encoded in UTF-8. This matches the Direct2D code path. +
      • +
      • + Fix paste for GTK+ on OS X. + Bug #1677. +
      • +
      • + Reverted a fix on Qt where Qt 5.3 has returned to the behaviour of 4.x. + Bug #1575. +
      • +
      • + When the mouse is on the line between margin and text changed to treat as within text. + This makes the PLAT_CURSES character cell platform work better. +
      • +
      • + Fix a crash in SciTE when the command line is just "-close:". + Bug #1675. +
      • +
      • + Fix unexpected dialog in SciTE on Windows when the command line has a quoted filename then ends with a space. + Bug #1673. +
      • +
      • + On Windows and GTK+, use indicators for inline IME. +
      • +
      • + SciTE shuts down quicker when there is no user-written OnClose function and no directors are attached. +
      • +
      +

      + Release 3.5.2 +

      +
        +
      • + Released 2 December 2014. +
      • +
      • + For OS X Cocoa switch C++ runtime to libc++ to enable use of features that will never + be added to libstdc++ including those part of C++11. + Scintilla will now run only on OS X 10.7 or later and only in 64-bit mode. +
      • +
      • + Include support for using C++11 <regex> for regular expression searches. + Enabling this requires rebuilding Scintilla with a non-default option. + This is a provisional feature and may change API before being made permanent. +
      • +
      • + Allocate indicators used for Input Method Editors after 31 which was the previous limit of indicators to + ensure no clash between the use of indicators for IME and for the application. +
      • +
      • + ANNOTATION_INDENTED added which is similar to ANNOTATION_BOXED in terms of positioning + but does not show a border. + Feature #1086. +
      • +
      • + Allow platform overrides for drawing tab arrows, wrap markers, and line markers. + Size of double click detection area is a variable. + These enable better visuals and behaviour for PLAT_CURSES as it is character cell based. +
      • +
      • + CoffeeScript lexer fixes "/*" to not be a comment. + Bug #1420. +
      • +
      • + VHDL folder fixes "block" keyword. + Bug #1664. +
      • +
      • + Prevent caret blinking when holding down Delete key. + Bug #1657. +
      • +
      • + On Windows, allow right click selection in popup menu. + Feature #1080. +
      • +
      • + On Windows, only call ShowCaret in GDI mode as it interferes with caret drawing when using Direct2D. + Bug #1643. +
      • +
      • + On Windows, another DirectWrite mode SC_TECHNOLOGY_DIRECTWRITEDC added + which may avoid drawing failures in some circumstances by drawing into a GDI DC. + This feature is provisional and may be changed or removed if a better solution is found. +
      • +
      • + On Windows, avoid processing mouse move events where the mouse has not moved as these can + cause unexpected dwell start notifications. + Bug #1670. +
      • +
      • + For GTK+ on Windows, avoid extra space when pasting from external application. +
      • +
      • + On GTK+ 2.x allow Scintilla to be used inside tool tips by changing when preedit window created. + Bug #1662. +
      • +
      • + Support MinGW compilation under Linux. + Feature #1077. +
      • +
      +

      + Release 3.5.1 +

      +
        +
      • + Released 30 September 2014. +
      • +
      • + BibTeX lexer added. + Feature #1071. +
      • +
      • + SQL lexer supports the q-quote operator as SCE_SQL_QOPERATOR(24). +
      • +
      • + VHDL lexer supports block comments. + Bug #1527. +
      • +
      • + VHDL folder fixes case where "component" used before name. + Bug #613. +
      • +
      • + Restore fractional pixel tab positioning which was truncated to whole pixels in 3.5.0. + Bug #1652. +
      • +
      • + Allow choice between windowed and inline IME on some platforms. +
      • +
      • + On GTK+ cache autocomplete window to avoid platform bug where windows + were sometimes lost. + Bug #1649. +
      • +
      • + On GTK+ size autocomplete window more accurately. +
      • +
      • + On Windows only unregister windows classes registered. + Bug #1639. +
      • +
      • + On Windows another DirectWrite mode SC_TECHNOLOGY_DIRECTWRITERETAIN added + which may avoid drawing failures on some cards and drivers. + This feature is provisional and may be changed or removed if a better solution is found. +
      • +
      • + On Windows support the Visual Studio 2010+ clipboard format that indicates a line copy. + Bug #1636. +
      • +
      • + SciTE session files remember the scroll position. +
      • +
      +

      + Release 3.5.0 +

      +
        +
      • + Released 13 August 2014. +
      • +
      • + Text may share space vertically so that extreme ascenders and descenders are + not cut off by calling SCI_SETPHASESDRAW(SC_PHASES_MULTIPLE). +
      • +
      • + Separate timers are used for each type of periodic activity and they are turned on and off + as required. This saves power as there are fewer wake ups. + On recent releases of OS X Cocoa and Windows, coalescing timers are used to further + save power. + Bug #1086. + Bug #1532. +
      • +
      • + Explicit tab stops may be set for each line. +
      • +
      • + On Windows and GTK+, when using Korean input methods, IME composition is moved from a + separate window into the Scintilla window. +
      • +
      • + SciTE adds a "Clean" command to the "Tools" menu which is meant to be bound to a command like + "make clean". +
      • +
      • + Lexer added for Windows registry files. +
      • +
      • + HTML lexer fixes a crash with SGML after a Mako comment. + Bug #1622. +
      • +
      • + KiXtart lexer adds a block comment state. + Feature #1053. +
      • +
      • + Matlab lexer fixes transpose operations like "X{1}'". + Bug #1629. +
      • +
      • + Ruby lexer fixes bugs with the syntax of symbols including allowing a symbol to end with '?'. + Bug #1627. +
      • +
      • + Rust lexer supports byte string literals, naked CR can be escaped in strings, and files starting with + "#![" are not treated as starting with a hashbang comment. + Feature #1063. +
      • +
      • + Bug fixed where style data was stale when deleting a rectangular selection. +
      • +
      • + Bug fixed where annotations disappeared when SCI_CLEARDOCUMENTSTYLE called. +
      • +
      • + Bug fixed where selection not redrawn after SCI_DELWORDRIGHT. + Bug #1633. +
      • +
      • + Change the function prototypes to be complete for functions exported as "C". + Bug #1618. +
      • +
      • + Fix a memory leak on GTK+ with autocompletion lists. + Bug #1638. +
      • +
      • + On GTK+, use the full character width for the overstrike caret for multibyte characters. +
      • +
      • + On Qt, set list icon size to largest icon. Add padding on OS X. + Bug #1634. +
      • +
      • + On Qt, fix building on FreeBSD 9.2. + Bug #1635. +
      • +
      • + On Qt, add a get_character method on the document. + Feature #1064. +
      • +
      • + On Qt, add SCI_* for methods to ScintillaConstants.py. + Feature #1065. +
      • +
      • + SciTE on GTK+ crash fixed with Insert Abbreviation command. +
      • +
      • + For SciTE with read-only files and are.you.sure=0 reenable choice to save to another + location when using Save or Close commands. +
      • +
      • + Fix SciTE bug where toggle bookmark did not work after multiple lines with bookmarks merged. + Bug #1617. +
      • +
      +

      + Release 3.4.4 +

      +
        +
      • + Released 3 July 2014. +
      • +
      • + Style byte indicators removed. They were deprecated in 2007. Standard indicators should be used instead. + Some elements used by lexers no longer take number of bits or mask arguments so lexers may need to be + updated for LexAccessor::StartAt, LexAccessor::SetFlags (removed), LexerModule::LexerModule. +
      • +
      • + When multiple selections are active, autocompletion text may be inserted at each selection with new + SCI_AUTOCSETMULTI method. +
      • +
      • + C++ lexer fixes crash for "#define x(". + Bug #1614. +
      • +
      • + C++ lexer fixes raw string recognition so that R"xxx(blah)xxx" is styled as SCE_C_STRINGRAW. +
      • +
      • + The Postscript lexer no longer marks token edges with indicators as this used style byte indicators. +
      • +
      • + The Scriptol lexer no longer displays indicators for poor indentation as this used style byte indicators. +
      • +
      • + TCL lexer fixes names of keyword sets. + Bug #1615. +
      • +
      • + Shell lexer fixes fold matching problem caused by "<<<". + Bug #1605. +
      • +
      • + Fix bug where indicators were not removed when fold highlighting on. + Bug #1604. +
      • +
      • + Fix bug on Cocoa where emoji were treated as being zero width. +
      • +
      • + Fix crash on GTK+ with Ubuntu 12.04 and overlay scroll bars. +
      • +
      • + Avoid creating a Cairo context when measuring text on GTK+ as future versions of GTK+ + may prohibit calling gdk_cairo_create except inside drawing handlers. This prohibition may + be required on Wayland. +
      • +
      • + On Cocoa, the registerNotifyCallback method is now marked as deprecated so client code that + uses it will display an error message. + Client code should use the delegate mechanism or subclassing instead. + The method will be removed in the next version. +
      • +
      • + On Cocoa, package Scintilla more in compliance with platform conventions. + Only publish public headers in the framework headers directory. + Only define the Scintilla namespace in Scintilla.h when compiling as C++. + Use the Cocoa NS_ENUM and NS_OPTIONS macros for exposed enumerations. + Hide internal methods from public headers. + These changes are aimed towards publishing Scintilla as a module which will allow it to + be used from the Swift programming language, although more changes will be needed here. +
      • +
      • + Fix crash in SciTE when stream comment performed at line end. + Bug #1610. +
      • +
      • + For SciTE on Windows, display error message when common dialogs fail. + Bug #156. +
      • +
      • + For SciTE on GTK+ fix bug with initialization of toggle buttons in find and replace strips. + Bug #1612. +
      • +
      +

      + Release 3.4.3 +

      +
        +
      • + Released 27 May 2014. +
      • +
      • + Fix hangs and crashes in DLL at shutdown on Windows when using Direct2D. +
      • +
      +

      + Release 3.4.2 +

      +
        +
      • + Released 22 May 2014. +
      • +
      • + Insertions can be filtered or modified by calling SCI_CHANGEINSERTION inside a handler for + SC_MOD_INSERTCHECK. +
      • +
      • + DMIS lexer added. DMIS is a language for coordinate measuring machines. + Feature #1049. +
      • +
      • + Line state may be displayed in the line number margin to aid in debugging lexing and folding with + SC_FOLDFLAG_LINESTATE (128). +
      • +
      • + C++ lexer understands more preprocessor statements. #if defined SYMBOL is understood. + Some macros with arguments can be understood and these may be predefined in keyword set 4 + (keywords5 for SciTE) + with syntax similar to CHECKVERSION(x)=(x<3). + Feature #1051. +
      • +
      • + C++ lexer can highlight task marker keywords in comments as SCE_C_TASKMARKER. +
      • +
      • + C++ lexer can optionally highlight escape sequences in strings as SCE_C_ESCAPESEQUENCE. +
      • +
      • + C++ lexer supports Go back quoted raw string literals with lexer.cpp.backquoted.strings option. + Feature #1047. +
      • +
      • + SciTE performs word and search match highlighting as an idle task to improve interactivity + and allow use of these features on large files. +
      • +
      • + Bug fixed on Cocoa where previous caret lines were visible. + Bug #1593. +
      • +
      • + Bug fixed where caret remained invisible when period set to 0. + Bug #1592. +
      • +
      • + Fixed display flashing when scrolling with GTK+ 3.10. + Bug #1567. +
      • +
      • + Fixed calls and constants deprecated in GTK+ 3.10. +
      • +
      • + Fixed bug on Windows where WM_GETTEXT did not provide data in UTF-16 for Unicode window. + Bug #685. +
      • +
      • + For SciTE, protect access to variables used by threads with a mutex to prevent data races. +
      • +
      • + For SciTE on GTK+ fix thread object leaks. + Display the version of GTK+ compiled against in the about box. +
      • +
      • + For SciTE on GTK+ 3.10, fix the size of the tab bar's content and use + freedesktop.org standard icon names where possible. +
      • +
      • + For SciTE on Windows, fix bug where invoking help resubmitted the + running program. + Bug #272. +
      • +
      • + SciTE's highlight current word feature no longer matches the selection when it contains space. +
      • +
      • + For building SciTE in Visual C++, the win\SciTE.vcxproj project file should be used. + The boundscheck directory and its project and solution files have been removed. +
      • +
      +

      + Release 3.4.1 +

      +
        +
      • + Released 1 April 2014. +
      • +
      • + Display Unicode line ends as [LS], [PS], and [NEL] blobs. +
      • +
      • + Bug fixed where cursor down failed on wrapped lines. + Bug #1585. +
      • +
      • + Caret positioning changed a little to appear inside characters less often by + rounding the caret position to the pixel grid instead of truncating. + Bug #1588. +
      • +
      • + Bug fixed where automatic indentation wrong when caret in virtual space. + Bug #1586. +
      • +
      • + Bug fixed on Windows where WM_LBUTTONDBLCLK was no longer sent to window. + Bug #1587. +
      • +
      • + Bug fixed with SciTE on Windows XP where black stripes appeared inside the find and + replace strips. +
      • +
      • + Crash fixed in SciTE with recursive properties files. + Bug #1507. +
      • +
      • + Bug fixed with SciTE where Ctrl+E before an unmatched end brace jumps to file start. + Bug #315. +
      • +
      • + Fixed scrolling on Cocoa to avoid display glitches and be smoother. +
      • +
      • + Fixed crash on Cocoa when character composition used when autocompletion list active. +
      • +
      +

      + Release 3.4.0 +

      +
        +
      • + Released 22 March 2014. +
      • +
      • + The Unicode line ends and substyles features added as provisional in 3.2.5 are now finalized. + There are now no provisional features. +
      • +
      • + Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on style changes. +
      • +
      • + SciTE find and replace strips can perform incremental searching and temporary highlighting of all + matches with the find.strip.incremental, replace.strip.incremental, and find.indicator.incremental settings. +
      • +
      • + SciTE default settings changed to use strips for find and replace and to draw with Direct2D and + DirectWrite on Windows. +
      • +
      • + SciTE on Windows scales image buttons on the find and replace strips to match the current system scale factor. +
      • +
      • + Additional assembler lexer variant As(SCLEX_AS) for Unix assembly code which uses '#' for comments and + ';' to separate statements. +
      • +
      • + Fix Coffeescript lexer for keyword style extending past end of word. + Also fixes styling 0...myArray.length all as a number. + Bug #1583. +
      • +
      • + Fix crashes and other bugs in Fortran folder by removing folding of do-label constructs. +
      • +
      • + Deleting a whole line deletes the annotations on that line instead of the annotations on the next line. + Bug #1577. +
      • +
      • + Changed position of tall calltips to prefer lower half of screen to cut off end instead of start. +
      • +
      • + Fix Qt bug where double click treated as triple click. + Bug #1575. +
      • +
      • + On Qt, selecting an item in an autocompletion list that is not currently visible positions it at the top. +
      • +
      • + Fix bug on Windows when resizing autocompletion list with only short strings caused the list to move. +
      • +
      • + On Cocoa reduce scrollable height by one line to fix bugs with moving caret + up or down. +
      • +
      • + On Cocoa fix calltips which did not appear when they were created in an off-screen position. +
      • +
      +

      + Release 3.3.9 +

      +
        +
      • + Released 31 January 2014. +
      • +
      • + Fix 3.3.8 bug where external lexers became inaccessible. + Bug #1574. +
      • +
      +

      + Release 3.3.8 +

      +
        +
      • + Released 28 January 2014. +
      • +
      • + DropSelectionN API added to drop a selection from a multiple selection. +
      • +
      • + CallTipSetPosStart API added to change the position at which backspacing removes the calltip. +
      • +
      • + SC_MARK_BOOKMARK marker symbol added which looks like bookmark ribbons used in + book reading applications. +
      • +
      • + Basic lexer highlights hex, octal, and binary numbers in FreeBASIC which use the prefixes + &h, &o and &b respectively. + Feature #1041. +
      • +
      • + C++ lexer fixes bug where keyword followed immediately by quoted string continued + keyword style. + Bug #1564. +
      • +
      • + Matlab lexer treats '!' differently for Matlab and Octave languages. + Bug #1571. +
      • +
      • + Rust lexer improved with nested comments, more compliant doc-comment detection, + octal literals, NUL characters treated as valid, and highlighting of raw string literals and float literals fixed. + Feature #1038. + Bug #1570. +
      • +
      • + On Qt expose the EOLMode on the document object. +
      • +
      • + Fix hotspot clicking where area was off by half a character width. + Bug #1562. +
      • +
      • + Tweaked scroll positioning by either 2 pixels or 1 pixel when caret is at left or right of view + to ensure caret is inside visible area. +
      • +
      • + Send SCN_UPDATEUI with SC_UPDATE_SELECTION for Shift+Tab inside text. +
      • +
      • + On Windows update the system caret position when scrolling to help screen readers + see the scroll quickly. +
      • +
      • + On Cocoa, GTK+, and Windows/Direct2D draw circles more accurately so that + circular folding margin markers appear circular, of consistent size, and centred. + Make SC_MARK_ARROWS drawing more even. + Fix corners of SC_MARK_ROUNDRECT with Direct2D to be similar to other platforms. +
      • +
      • + SciTE uses a bookmark ribbon symbol for bookmarks as it scales better to higher resolutions + than the previous blue gem bitmap. +
      • +
      • + SciTE will change the width of margins while running when the margin.width and fold.margin.width + properties are changed. +
      • +
      • + SciTE on Windows can display a larger tool bar with the toolbar.large property. +
      • +
      • + SciTE displays a warning message when asked to open a directory. + Bug #1568. +
      • +
      +

      + Release 3.3.7 +

      +
        +
      • + Released 12 December 2013. +
      • +
      • + Lexer added for DMAP language. + Feature #1026. +
      • +
      • + Basic lexer supports multiline comments in FreeBASIC. + Feature #1023. +
      • +
      • + Bash lexer allows '#' inside words.. + Bug #1553. +
      • +
      • + C++ lexer recognizes C++11 user-defined literals and applies lexical class SCE_C_USERLITERAL. +
      • +
      • + C++ lexer allows single quote characters as digit separators in numeric literals like 123'456 as this is + included in C++14. +
      • +
      • + C++ lexer fixes bug with #include statements without " or > terminating filename. + Bug #1538. +
      • +
      • + C++ lexer fixes split of Doxygen keywords @code{.fileExtension} and @param[in,out]. + Bug #1551. +
      • +
      • + C++ lexer styles Doxygen keywords at end of document. +
      • +
      • + Cmake lexer fixes bug with empty comments. + Bug #1550. +
      • +
      • + Fortran folder improved. Treats "else" as fold header. + Feature #962. +
      • +
      • + Fix bug with adjacent instances of the same indicator with different values where only the first was drawn. + Bug #1560. +
      • +
      • + For DirectWrite, use the GDI ClearType gamma value for SC_EFF_QUALITY_LCD_OPTIMIZED as + this results in text that is similar in colour intensity to GDI. + For the duller default DirectWrite ClearType text appearance, use SC_EFF_QUALITY_DEFAULT. + Feature #887. +
      • +
      • + Fix another problem with drawing on Windows with Direct2D when returning from lock screen. + The whole window is redrawn as just redrawing the initially required area left other areas black. +
      • +
      • + When scroll width is tracked, take width of annotation lines into account. +
      • +
      • + For Cocoa on OS X 10.9, responsive scrolling is supported. +
      • +
      • + On Cocoa, apply font quality setting to line numbers. + Bug #1544. +
      • +
      • + On Cocoa, clicking in margin now sets focus. + Bug #1542. +
      • +
      • + On Cocoa, correct cursor displayed in margin after showing dialog. +
      • +
      • + On Cocoa, multipaste mode now works. + Bug #1541. +
      • +
      • + On GTK+, chain up to superclass finalize so that all finalization is performed. + Bug #1549. +
      • +
      • + On GTK+, fix horizontal scroll bar range to not be double the needed width. + Bug #1546. +
      • +
      • + On OS X GTK+, report control key as SCI_META for mouse down events. +
      • +
      • + On Qt, bug fixed with drawing of scrollbars, where previous contents were not drawn over with some + themes. +
      • +
      • + On Qt, bug fixed with finding monitor rectangle which could lead to autocomplete showing at wrong location. +
      • +
      • + SciTE fix for multiple message boxes when failing to save a file with save.on.deactivate. + Bug #1540. +
      • +
      • + SciTE on GTK+ fixes SIGCHLD handling so that Lua scripts can determine the exit status of processes + they start. + Bug #1557. +
      • +
      • + SciTE on Windows XP fixes bad display of find and replace values when using strips. +
      • +
      +

      + Release 3.3.6 +

      +
        +
      • + Released 15 October 2013. +
      • +
      • + Added functions to help convert between substyles and base styles and between secondary and primary styles. + SCI_GETSTYLEFROMSUBSTYLE finds the base style of substyles. + Can be used to treat all substyles of a style equivalent to that style. + SCI_GETPRIMARYSTYLEFROMSTYLE finds the primary style of secondary styles. + StyleFromSubStyle and PrimaryStyleFromStyle methods were added to ILexerWithSubStyles so each lexer can implement these. +
      • +
      • + Lexer added for Rust language. + Feature #1024. +
      • +
      • + Avoid false matches in errorlist lexer which is used for the SciTE output pane + by stricter checking of ctags lines. +
      • +
      • + Perl lexer fixes bugs with multi-byte characters, including in HEREDOCs and PODs. + Bug #1528. +
      • +
      • + SQL folder folds 'create view' statements. + Feature #1020. +
      • +
      • + Visual Prolog lexer updated with better support for string literals and Unicode. + Feature #1025. +
      • +
      • + For SCI_SETIDENTIFIERS, \t, \r, and \n are allowed as well as space between identifiers. + Bug #1521. +
      • +
      • + Gaining and losing focus is now reported as a notification with the code set to SCN_FOCUSIN + or SCN_FOCUSOUT. + This allows clients to uniformly use notifications instead of commands. + Since there is no longer a need for commands they will be deprecated in a future version. + Clients should switch any code that currently uses SCEN_SETFOCUS or SCEN_KILLFOCUS. +
      • +
      • + On Cocoa, clients should use the delegate mechanism or subclass ScintillaView in preference + to registerNotifyCallback: which will be deprecated in the future. +
      • +
      • + On Cocoa, the ScintillaView.h header hides internal implementation details from Platform.h and ScintillaCocoa.h. + InnerView was renamed to SCIContentView and MarginView was renamed to SCIMarginView. + dealloc removed from @interface. +
      • +
      • + On Cocoa, clients may customize SCIContentView by subclassing both SCIContentView and ScintillaView + and implementing the contentViewClass class method on the ScintillaView subclass to return the class of + the SCIContentView subclass. +
      • +
      • + On Cocoa, fixed appearance of alpha rectangles to use specified alpha and colour for outline as well as corner size. + This makes INDIC_STRAIGHTBOX and INDIC_ROUNDBOX look correct. +
      • +
      • + On Cocoa, memory leak fixed for MarginView. +
      • +
      • + On Cocoa, make drag and drop work when destination view is empty. + Bug #1534. +
      • +
      • + On Cocoa, drag image fixed when view scrolled. +
      • +
      • + On Cocoa, SCI_POSITIONFROMPOINTCLOSE fixed when view scrolled. + Feature #1021. +
      • +
      • + On Cocoa, don't send selection change notification when scrolling. + Bug #1522. +
      • +
      • + On Qt, turn off idle events on destruction to prevent repeatedly calling idle. +
      • +
      • + Qt bindings in ScintillaEdit changed to use signed first parameter. +
      • +
      • + Compilation errors fixed on Windows and GTK+ with SCI_NAMESPACE. +
      • +
      • + On Windows, building with gcc will check if Direct2D headers are available and enable Direct2D if they are. +
      • +
      • + Avoid attempts to redraw empty areas when lexing beyond the currently visible lines. +
      • +
      • + Control more attributes of indicators in SciTE with find.mark.indicator and highlight.current.word.indicator + properties. +
      • +
      • + Fix SciTE bug with buffers becoming read-only. + Bug #1525. +
      • +
      • + Fix linking SciTE on non-Linux Unix systems with GNU toolchain by linking to libdl. + Bug #1523. +
      • +
      • + On Windows, SciTE's Incremental Search displays match failures by changing the background colour + instead of not adding the character that caused failure. +
      • +
      • + Fix SciTE on GTK+ 3.x incremental search to change foreground colour when no match as + changing background colour is difficult. +
      • +
      +

      + Release 3.3.5 +

      +
        +
      • + Released 31 August 2013. +
      • +
      • + Characters may be represented by strings. + In Unicode mode C1 control characters are represented by their mnemonics. +
      • +
      • + Added SCI_POSITIONRELATIVE to optimize navigation by character. +
      • +
      • + Option to allow mouse selection to switch to rectangular by pressing Alt after start of gesture. + Feature #1007. +
      • +
      • + Lexer added for KVIrc script. + Feature #1008. +
      • +
      • + Bash lexer fixed quoted HereDoc delimiters. + Bug #1500. +
      • +
      • + MS SQL lexer fixed ';' to appear as an operator. + Bug #1509. +
      • +
      • + Structured Text lexer fixed styling of enumeration members. + Bug #1508. +
      • +
      • + Fixed bug with horizontal caret position when margin changed. + Bug #1512. +
      • +
      • + Fixed bug on Cocoa where coordinates were relative to text subview instead of whole view. +
      • +
      • + Ensure selection redrawn correctly in two cases. + When switching from stream to rectangular selection with Alt+Shift+Up. + When reducing the range of an additional selection by moving mouse up. + Feature #1007. +
      • +
      • + Copy and paste of rectangular selections compatible with Borland Delphi IDE on Windows. + Feature #1002. + Bug #1513. +
      • +
      • + Initialize extended styles to the default style. +
      • +
      • + On Windows, fix painting on an explicit HDC when first paint attempt abandoned. +
      • +
      • + Qt bindings in ScintillaEdit made to work on 64-bit Unix systems. +
      • +
      • + Easier access to printing on Qt with formatRange method. +
      • +
      • + Fixed SciTE failure to save initial buffer in single buffer mode. + Bug #1339. +
      • +
      • + Fixed compilation problem with Visual C++ in non-English locales. + Bug #1506. +
      • +
      • + Disable Direct2D when compiling with MinGW gcc on Windows because of changes in the recent MinGW release. +
      • +
      • + SciTE crash fixed for negative line.margin.width. + Bug #1504. +
      • +
      • + SciTE fix for infinite dialog boxes when failing to automatically save a file. + Bug #1503. +
      • +
      • + SciTE settings buffered.draw, two.phase.draw, and technology are applied to the + output pane as well as the edit pane. +
      • +
      +

      + Release 3.3.4 +

      +
        +
      • + Released 19 July 2013. +
      • +
      • + Handling of UTF-8 and DBCS text in lexers improved with methods ForwardBytes and + GetRelativeCharacter added to StyleContext. + Bug #1483. +
      • +
      • + For Unicode text, case-insensitive searching and making text upper or lower case is now + compliant with Unicode standards on all platforms and is much faster for non-ASCII characters. +
      • +
      • + A CategoriseCharacter function was added to return the Unicode general category of a character + which can be useful in lexers. +
      • +
      • + On Cocoa, the LCD Optimized font quality level turns font smoothing on. +
      • +
      • + SciTE 'immediate' subsystem added to allow scripts that work while tools are executed. +
      • +
      • + Font quality exposed in SciTE as font.quality setting. +
      • +
      • + On Cocoa, message:... methods simplify direct access to Scintilla and avoid call layers.. +
      • +
      • + A68K lexer updated. +
      • +
      • + CoffeeScript lexer fixes a bug with comment blocks. + Bug #1495 +
      • +
      • + ECL lexer regular expression code fixed. + Bug #1491. +
      • +
      • + errorlist lexer only recognizes Perl diagnostics when there is a filename between + "at" and "line". Had been triggering for MSVC errors containing "at line". +
      • +
      • + Haskell lexer fixed to avoid unnecessary full redraws. + Don't highlight CPP inside comments when styling.within.preprocessor is on. + Bug #1459. +
      • +
      • + Lua lexer fixes bug in labels with UTF-8 text. + Bug #1483. +
      • +
      • + Perl lexer fixes bug in string interpolation with UTF-8 text. + Bug #1483. +
      • +
      • + Fixed bugs with case conversion when the result was longer or shorter than the original text. + Could access past end of string potentially crashing. + Selection now updated to result length. +
      • +
      • + Fixed bug where data being inserted and removed was not being reported in + notification messages. Bug was introduced in 3.3.2. +
      • +
      • + Word wrap bug fixed where the last line could be shown twice. +
      • +
      • + Word wrap bug fixed for lines wrapping too short on Windows and GTK+. +
      • +
      • + Word wrap performance improved. +
      • +
      • + Minor memory leak fixed. + Bug #1487. +
      • +
      • + On Cocoa, fixed insertText: method which was broken when implementing a newer protocol. +
      • +
      • + On Cocoa, fixed a crash when performing string folding for bytes that do not represent a character + in the current encoding. +
      • +
      • + On Qt, fixed layout problem when QApplication construction delayed. +
      • +
      • + On Qt, find_text reports failure with -1 as first element of return value. +
      • +
      • + Fixed SciTE on GTK+ bug where a tool command could be performed using the keyboard while one was + already running leading to confusion and crashes. + Bug #1486. +
      • +
      • + Fixed SciTE bug in Copy as RTF which was limited to first 32 styles. + Bug #1011. +
      • +
      • + Fixed SciTE on Windows user strip height when the system text scaling factor is 125% or 150%. +
      • +
      • + Compile time checks for Digital Mars C++ removed. +
      • +
      • + Visual C++ 2013 supported. + Bug #1492. +
      • +
      • + Python scripts used for building and maintenance improved and moved into scripts directory. +
      • +
      • + Testing scripts now work on Linux using Qt and PySide. +
      • +
      • + Tk platform defined. + Implementation for Tk will be available separately from main Scintilla distribution. +
      • +
      +

      + Release 3.3.3 +

      +
        +
      • + Released 2 June 2013. +
      • +
      • + Lexer and folder added for Structured Text language. + Feature #959. +
      • +
      • + Out of bounds access fixed for GTK+. + Bug #1480. +
      • +
      • + Crash fixed for GTK+ on Windows paste. +
      • +
      • + Bug fixed with incorrect event copying on GTK+ 3.x. + Bug #1481. +
      • +
      • + Bug fixed with right to left locales, like Hebrew, on GTK+. + Bug #1477. +
      • +
      • + Bug fixed with undo grouping of tab and backtab commands. + Bug #1478. +
      • +
      +

      + Release 3.3.2 +

      +
        +
      • + Released 22 May 2013. +
      • +
      • + Basic implementations of common folding methods added to Scintilla to make it + easier for containers to implement folding. +
      • +
      • + Add indicator INDIC_COMPOSITIONTHICK, a thick low underline, to mimic an + appearance used for Asian language input composition. +
      • +
      • + On Cocoa, implement font quality setting. + Feature #988. +
      • +
      • + On Cocoa, implement automatic enabling of commands and added clear command. + Feature #987. +
      • +
      • + C++ lexer adds style for preprocessor doc comment. + Feature #990. +
      • +
      • + Haskell lexer and folder improved. Separate mode for literate Haskell "literatehaskell" SCLEX_LITERATEHASKELL. + Bug #1459 . +
      • +
      • + LaTeX lexer bug fixed for Unicode character following '\'. + Bug #1468 . +
      • +
      • + PowerShell lexer recognizes here strings and doccomment keywords. + #region folding added. + Feature #985. +
      • +
      • + Fix multi-typing when two carets are located in virtual space on one line so that spaces + are preserved. +
      • +
      • + Fixes to input composition on Cocoa and implementation of accented character input through + press and hold. Set selection correctly so that changes to pieces of composition text are easier to perform. + Restore undo collection after a sequence of composition actions. + Composition popups appear near input. +
      • +
      • + Fix lexer problem where no line end was seen at end of document. +
      • +
      • + Fix crash on Cocoa when view deallocated. + Bug #1466. +
      • +
      • + Fix Qt window positioning to not assume the top right of a monitor is at 0, 0. +
      • +
      • + Fix Qt to not track mouse when widget is hidden. +
      • +
      • + Qt now supports Qt 5.0. + Bug #1448. +
      • +
      • + Fix drawing on Windows with Direct2D when returning from lock screen. + The render target had to be recreated and an area would be black since the drawing was not retried. +
      • +
      • + Fix display of DBCS documents on Windows Direct2D/DirectWrite with default character set. +
      • +
      • + For SciTE on Windows, fixed most-recently-used menu when files opened through check.if.already.opened. +
      • +
      • + In SciTE, do not call OnSave twice when files saved asynchronously. +
      • +
      • + Scintilla no longer builds with Visual C++ 6.0. +
      • +
      +

      + Release 3.3.1 +

      +
        +
      • + Released 11 April 2013. +
      • +
      • + Autocompletion lists can now appear in priority order or be sorted by Scintilla. + Feature #981. +
      • +
      • + Most lexers now lex an extra NUL byte at the end of the + document which makes it more likely they will classify keywords at document end correctly. + Bug #574, + Bug #588. +
      • +
      • + Haskell lexer improved in several ways. + Bug #1459. +
      • +
      • + Matlab/Octave lexer recognizes block comments and ... comments. + Bug #1414. +
      • +
      • + Ruby lexer crash fixed with keyword at start of document. +
      • +
      • + The PLAT_NCURSES platform now called PLAT_CURSES as may work on other implementations. +
      • +
      • + Bug on Cocoa fixed where input composition with multiple selection or virtual space selection + could make undo stop working. +
      • +
      • + Direct2D/DirectWrite mode on Windows now displays documents in non-Latin1 8-bit encodings correctly. +
      • +
      • + Character positioning corrected in Direct2D/DirectWrite mode on Windows to avoid text moving and cutting off + lower parts of characters. +
      • +
      • + Position of calltip and autocompletion lists fixed on Cocoa. +
      • +
      • + While regular expression search in DBCS text is still not working, matching partial characters is now avoided + by moving end of match to end of character. +
      • +
      +

      + Release 3.3.0 +

      +
        +
      • + Released 30 March 2013. +
      • +
      • + Overlay scrollers and kinetic scrolling implemented on Cocoa. +
      • +
      • + To improve display smoothness, styling and UI Update notifications will, when possible, be performed in + a high-priority idle task on Cocoa instead of during painting. + Performing these jobs inside painting can cause paints to be abandoned and a new paint scheduled. + On GTK+, the high-priority idle task is used in more cases. +
      • +
      • + SCI_SCROLLRANGE added to scroll the view to display a range of text. + If the whole range can not be displayed, priority is given to one end. +
      • +
      • + C++ lexer no longer recognizes raw (R"") strings when the first character after " + is invalid. + Bug #1454. +
      • +
      • + HTML lexer recognizes JavaScript RegEx literals in more contexts. + Bug #1412. +
      • +
      • + Fixed automatic display of folded text when return pressed at end of fold header and + first folded line was blank. + Bug #1455. +
      • +
      • + SCI_VISIBLEFROMDOCLINE fixed to never return a line beyond the document end. +
      • +
      • + SCI_LINESCROLL fixed for a negative column offset. + Bug #1450. +
      • +
      • + On GTK+, fix tab markers so visible if indent markers are visible. + Bug #1453. +
      • +
      +

      + Release 3.2.5 +

      +
        +
      • + Released 26 February 2013. +
      • +
      • + To allow cooperation between different uses of extended (beyond 255) styles they should be allocated + using SCI_ALLOCATEEXTENDEDSTYLES. +
      • +
      • + For Unicode documents, lexers that use StyleContext will retrieve whole characters + instead of bytes. + LexAccessor provides a LineEnd method which can be a more efficient way to + handle line ends and can enable Unicode line ends. +
      • +
      • + The C++ lexer understands the #undef directive when determining preprocessor definitions. + Feature #978. +
      • +
      • + The errorlist lexer recognizes gcc include path diagnostics that appear before an error. +
      • +
      • + Folding implemented for GetText (PO) translation language. + Bug #1437. +
      • +
      • + HTML lexer does not interrupt comment style for processing instructions. + Bug #1447. +
      • +
      • + Fix SciTE forgetting caret x-position when switching documents. + Bug #1442. +
      • +
      • + Fixed bug where vertical scrollbar thumb appeared at beginning of document when + scrollbar shown. + Bug #1446. +
      • +
      • + Fixed brace-highlighting bug on OS X 10.8 where matching brace is on a different line. +
      • +
      • + Provisional features + are new features that may change or be removed if they cause problems but should become + permanent if they work well. + For this release Unicode line ends and + substyles + are provisional features. +
      • +
      +

      + Release 3.2.4 +

      +
        +
      • + Released 17 January 2013. +
      • +
      • + Caret line highlight can optionally remain visible when window does not have focus. + Feature #964. +
      • +
      • + Delegate mechanism for notifications added on Cocoa. +
      • +
      • + NUL characters in selection are copied to clipboard as spaces to avoid truncating + at the NUL. + Bug #1289. +
      • +
      • + C++ lexer fixes problem with showing inactive sections when preprocessor lines contain trailing comment. + Bug #1413. +
      • +
      • + C++ lexer fixes problem with JavaScript regular expressions with '/' in character ranges. + Bug #1415. +
      • +
      • + LaTeX folder added. + Feature #970. +
      • +
      • + LaTeX lexer improves styling of math environments. + Feature #970. +
      • +
      • + MySQL lexer implements hidden commands. +
      • +
      • + Only produce a single undo step when autocompleting a single word. + Bug #1421. +
      • +
      • + Fixed crash when printing lines longer than 8000 characters. + Bug #1430. +
      • +
      • + Fixed problem in character movement extends selection mode where reversing + direction collapsed the selection. +
      • +
      • + Memory issues fixed on Cocoa, involving object ownership, + lifetime of timers, and images held by the info bar. + Bug #1436. +
      • +
      • + Cocoa key binding for Alt+Delete changed to delete previous word to be more compatible with + platform standards. +
      • +
      • + Fixed crash on Cocoa with scrollbar when there is no scrolling possible. + Bug #1416. +
      • +
      • + On Cocoa with retina display fixed positioning of autocompletion lists. +
      • +
      • + Fixed SciTE on Windows failure to run a batch file with a name containing a space by + quoting the path in the properties file. + Bug #1423. +
      • +
      • + Fixed scaling bug when printing on GTK+. + Bug #1427. +
      • +
      • + SciTE on GTK toolbar.detachable feature removed. +
      • +
      • + Fixed some background saving bugs in SciTE. + Bug #1366. + Bug #1339. +
      • +
      +

      + Release 3.2.3 +

      +
        +
      • + Released 21 October 2012. +
      • +
      • + Improve speed when performing multiple searches. +
      • +
      • + SciTE adds definition of PLAT_UNIX for both PLAT_GTK and PLAT_MAC to allow consolidation of + settings valid on all Unix variants. +
      • +
      • + Signal autoCompleteCancelled added on Qt. +
      • +
      • + Bash lexer supports nested delimiter pairs. + Feature #3569352. + Bug #1515556. + Bug #3008483. + Bug #3512208. + Bug #3515392. +
      • +
      • + For C/C++, recognize exponent in floating point hexadecimal literals. + Bug #3576454. +
      • +
      • + For C #include statements, do not treat // in the path as a comment. + Bug #3519260. +
      • +
      • + Lexer for GetText translations (PO) improved with additional styles and single instance limitation fixed. +
      • +
      • + Ruby for loop folding fixed. + Bug #3240902. + Bug #3567391. +
      • +
      • + Ruby recognition of here-doc after class or instance variable fixed. + Bug #3567809. +
      • +
      • + SQL folding of loop and case fixed. + Bug #3567905. +
      • +
      • + SQL folding of case with assignment fixed. + Bug #3571820. +
      • +
      • + Fix hang when removing all characters from indicator at end of document. +
      • +
      • + Fix failure of \xhh in regular expression search for values greater than 0x79. +
      • +
      • + On Cocoa on OS X 10.8, fix inverted drawing of find indicator. +
      • +
      • + On Cocoa, fix double drawing when horizontal scroll range small and user swipes horizontally. +
      • +
      • + On Cocoa, remove incorrect setting of save point when reading information through 'string' and 'selectedString'. +
      • +
      • + On Cocoa, fix incorrect memory management of infoBar. +
      • +
      • + On GTK+ 3 Ubuntu, fix crash when drawing margin. +
      • +
      • + On ncurses, fix excessive spacing with italics line end. +
      • +
      • + On Windows, search for D2D1.DLL and DWRITE.DLL in system directory to avoid loading from earlier + in path where could be planted by malware. +
      • +
      +

      + Release 3.2.2 +

      +
        +
      • + Released 31 August 2012. +
      • +
      • + Retina display support for Cocoa. Text size fixed. + Scale factor for images implemented so they can be displayed in high definition. +
      • +
      • + Implement INDIC_SQUIGGLEPIXMAP as a faster version of INDIC_SQUIGGLE. + Avoid poor drawing at right of INDIC_SQUIGGLE. + Align INDIC_DOTBOX to pixel grid for full intensity. +
      • +
      • + Implement SCI_GETSELECTIONEMPTY API. + Bug #3543121. +
      • +
      • + Added SCI_VCHOMEDISPLAY and SCI_VCHOMEDISPLAYEXTEND key commands. + Feature #3561433. +
      • +
      • + Allow specifying SciTE Find in Files directory with find.in.directory property. + Feature #3558594. +
      • +
      • + Override SciTE global strip.trailing.spaces with strip.trailing.spaces by pattern files. + Feature #3556320. +
      • +
      • + Fix long XML script tag handling in XML lexer. + Bug #3534190. +
      • +
      • + Fix rectangular selection range after backspace. + Bug #3543097. +
      • +
      • + Send SCN_UPDATEUI with SC_UPDATE_SELECTION for backspace in virtual space. + Bug #3543121. +
      • +
      • + Avoid problems when calltip highlight range is negative. + Bug #3545938. +
      • +
      • + On Cocoa, fix image drawing code so that image is not accessed after being freed + and is drawn in the correct location. +
      • +
      • + On Cocoa, limit horizontal touch scrolling to existing established width. +
      • +
      • + On Cocoa, decrease sensitivity of pinch-zoom. +
      • +
      • + Fix Cocoa drawing where style changes were not immediately visible. +
      • +
      • + Fix Cocoa memory leak due to reference cycle. +
      • +
      • + Fix Cocoa bug where notifications were sent after Scintilla was freed. +
      • +
      • + SciTE on OS X user shortcuts treats "Ctrl+D" as equivalent to "Ctrl+d". +
      • +
      • + On Windows, saving SciTE's Lua startup script causes it to run. +
      • +
      • + Limit time allowed to highlight current word in SciTE to 0.25 seconds to remain responsive. +
      • +
      • + Fixed SciTE read-only mode to stick with buffer. +
      • +
      • + For SciTE on Windows, enable Ctrl+Z, Ctrl+X, and Ctrl+C (Undo, Cut, and Copy) in the + editable fields of find and replace strips +
      • +
      • + Remove limit on logical line length in SciTE .properties files. + Bug #3544312. +
      • +
      • + Improve performance of SciTE Save As command. +
      • +
      • + Fix SciTE crash with empty .properties files. Bug #3545938. + Bug #3555308. +
      • +
      • + Fix repeated letter in SciTE calltips. + Bug #3545938. +
      • +
      • + Refine build time checking for Direct2D and DirectWrite. +
      • +
      • + Avoid potential build problems on Windows with MultiMon.h by explicitly checking for multi-monitor APIs. +
      • +
      • + Automatically disable themed drawing in SciTE when building on Windows 2000. + Reenable building for Windows NT 4 on NT 4 . +
      • +
      • + Added ncurses platform definitions. Implementation is maintained separately as + Scinterm. +
      • +
      +

      + Release 3.2.1 +

      +
        +
      • + Released 14 July 2012. +
      • +
      • + In Scintilla.iface, specify features as properties instead of functions where possible and fix some enumerations. +
      • +
      • + In SciTE Lua scripts, string properties in Scintilla API can be retrieved as well as set using property notation. +
      • +
      • + Added character class APIs: SCI_SETPUNCTUATIONCHARS, SCI_GETWORDCHARS, SCI_GETWHITESPACECHARS, + and SCI_GETPUNCTUATIONCHARS. + Feature #3529805. +
      • +
      • + Less/Hss support added to CSS lexer. + Feature #3532413. +
      • +
      • + C++ lexer style SCE_C_PREPROCESSORCOMMENT added for stream comments in preprocessor. + Bug #3487406. +
      • +
      • + Fix incorrect styling of inactive code in C++ lexer. + Bug #3533036. +
      • +
      • + Fix incorrect styling by C++ lexer after empty lines in preprocessor style. +
      • +
      • + C++ lexer option "lexer.cpp.allow.dollars" fixed so can be turned off after being on. + Bug #3541461. +
      • +
      • + Fortran fixed format lexer fixed to style comments from column 73. + Bug #3540486. +
      • +
      • + Fortran folder folds CRITICAL .. END CRITICAL. + Bug #3540486. +
      • +
      • + Fortran lexer fixes styling after comment line ending with '&'. + Bug #3087226. +
      • +
      • + Fortran lexer styles preprocessor lines so they do not trigger incorrect folding. + Bug #2906275. +
      • +
      • + Fortran folder fixes folding of nested ifs. + Bug #2809176. +
      • +
      • + HTML folder fixes folding of CDATA when fold.html.preprocessor=0. + Bug #3540491. +
      • +
      • + On Cocoa, fix autocompletion font lifetime issue and row height computation. +
      • +
      • + In 'choose single' mode, autocompletion will close an existing list if asked to display a single entry list. +
      • +
      • + Fixed SCI_MARKERDELETE to only delete one marker per call. + Bug #3535806. +
      • +
      • + Properly position caret after undoing coalesced delete operations. + Bug #3523326. +
      • +
      • + Ensure margin is redrawn when SCI_MARGINSETSTYLE called. +
      • +
      • + Fix clicks in first pixel of margins to send SCN_MARGINCLICK. +
      • +
      • + Fix infinite loop when drawing block caret for a zero width space character at document start. +
      • +
      • + Crash fixed for deleting negative range. +
      • +
      • + For characters that overlap the beginning of their space such as italics descenders and bold serifs, allow start + of text to draw 1 pixel into margin. + Bug #699587. + Bug #3537799. +
      • +
      • + Fixed problems compiling Scintilla for Qt with GCC 4.7.1 x64. +
      • +
      • + Fixed problem with determining GTK+ sub-platform caused when adding Qt support in 3.2.0. +
      • +
      • + Fix incorrect measurement of untitled file in SciTE on Linux leading to message "File ...' is 2147483647 bytes long". + Bug #3537764. +
      • +
      • + In SciTE, fix open of selected filename with line number to go to that line. +
      • +
      • + Fix problem with last visible buffer closing in SciTE causing invisible buffers to be active. +
      • +
      • + Avoid blinking of SciTE's current word highlight when output pane changes. +
      • +
      • + SciTE properties files can be longer than 60K. +
      • +
      +

      + Release 3.2.0 +

      +
        +
      • + Released 1 June 2012. +
      • +
      • + Platform layer added for the Qt open-source cross-platform application and user interface framework + for development in C++ or in Python with the PySide bindings for Qt. +
      • +
      • + Direct access provided to the document bytes for ranges within Scintilla. + This is similar to the existing SCI_GETCHARACTERPOINTER API but allows for better performance. +
      • +
      • + Ctrl+Double Click and Ctrl+Triple Click add the word or line to the set of selections. + Feature #3520037. +
      • +
      • + A SCI_DELETERANGE API was added for deleting a range of text. +
      • +
      • + Line wrap markers may now be drawn in the line number margin. + Feature #3518198. +
      • +
      • + SciTE on OS X adds option to hide hidden files in the open dialog box. +
      • +
      • + Lexer added for OScript language. + Feature #3523197. +
      • +
      • + Lexer added for Visual Prolog language. + Feature #3523018. +
      • +
      • + UTF-8 validity is checked more stringently and consistently. All 66 non-characters are now treated as invalid. +
      • +
      • + HTML lexer bug fixed with inconsistent highlighting for PHP when attribute on separate line from tag. + Bug #3520027. +
      • +
      • + HTML lexer bug fixed for JavaScript block comments. + Bug #3520032. +
      • +
      • + Annotation drawing bug fixed when box displayed with different colours on different lines. + Bug #3519872. +
      • +
      • + On Windows with Direct2D, fix drawing with 125% and 150% DPI system settings. +
      • +
      • + Virtual space selection bug fixed for rectangular selections. + Bug #3519246. +
      • +
      • + Replacing multiple selection with newline changed to only affect main selection. + Bug #3522251. +
      • +
      • + Replacing selection with newline changed to group deletion and insertion as a single undo action. + Bug #3522250. +
      • +
      • + Auto-completion lists on GTK+ 3 set height correctly instead of showing too few lines. +
      • +
      • + Mouse wheel scrolling changed to avoid GTK+ bug in recent distributions. +
      • +
      • + IME bug on Windows fixed for horizontal jump. + Bug #3529728. +
      • +
      • + SciTE case-insensitive autocompletion filters equal identifiers better. + Calltip arrows work with bare word identifiers. + Bug #3517810. +
      • +
      • + SciTE bug fixed where shbang lines not setting file type when switching + to file loaded in background. +
      • +
      • + SciTE on GTK+ shows open and save dialogs with the directory of the current file displayed. +
      • +
      +

      + Release 3.1.0 +

      +
        +
      • + Released 20 April 2012. +
      • +
      • + Animated find indicator added on Cocoa. +
      • +
      • + Buttons can be made default in SciTE user strips. +
      • +
      • + SciTE allows find and replace histories to be saved in session. +
      • +
      • + Option added to allow case-insensitive selection in auto-completion lists. + Bug #3516538. +
      • +
      • + Replace \0 by complete found text in regular expressions. + Feature #3510979. +
      • +
      • + Fixed single quoted strings in bash lexer. + Bug #3512208. +
      • +
      • + Incorrect highlighting fixed in C++ lexer for continued lines. + Bug #3509317. +
      • +
      • + Hang fixed in diff lexer. + Bug #3508602. +
      • +
      • + Folding improved for SQL CASE/MERGE statement. + Bug #3503277. +
      • +
      • + Fix extra drawing of selection inside word wrap indentation. + Bug #3515555. +
      • +
      • + Fix problem with determining the last line that needs styling when drawing. + Bug #3514882. +
      • +
      • + Fix problems with drawing in margins. + Bug #3514882. +
      • +
      • + Fix printing crash when using Direct2D to display on-screen. + Bug #3513946. +
      • +
      • + Fix SciTE bug where background.*.size disabled restoration of bookmarks and positions from session. + Bug #3514885. +
      • +
      • + Fixed the Move Selected Lines command when last line does not end with a line end character. + Bug #3511023. +
      • +
      • + Fix word wrap indentation printing to use printer settings instead of screen settings. + Bug #3512961. +
      • +
      • + Fix SciTE bug where executing an empty command prevented executing further commands + Bug #3512976. +
      • +
      • + Fix SciTE bugs with focus in user strips and made strips more robust with invalid definitions. +
      • +
      • + Suppress SciTE regular expression option when searching with find next selection. + Bug #3510985. +
      • +
      • + SciTE Find in Files command matches empty pattern to all files. + Feature #3495918. +
      • +
      • + Fix scroll with mouse wheel on GTK+. + Bug #3501321. +
      • +
      • + Fix column finding method so that tab is counted correctly. + Bug #3483713. +
      • +
      +

      + Release 3.0.4 +

      +
        +
      • + Released 8 March 2012. +
      • +
      • + SciTE scripts can create user interfaces as strips. +
      • +
      • + SciTE can save files automatically in the background. +
      • +
      • + Pinch zoom implemented on Cocoa. +
      • +
      • + ECL lexer added. + Feature #3488209. +
      • +
      • + CPP lexer fixes styling after document comment keywords. + Bug #3495445. +
      • +
      • + Pascal folder improves handling of some constructs. + Feature #3486385. +
      • +
      • + XML lexer avoids entering a bad mode due to complex preprocessor instructions. + Bug #3488060. +
      • +
      • + Duplicate command is always remembered as a distinct command for undo. + Bug #3495836. +
      • +
      • + SciTE xml.auto.close.tags no longer closes with PHP code similar to <a $this-> + Bug #3488067. +
      • +
      • + Fix bug where setting an indicator for the whole document would fail. + Bug #3487440. +
      • +
      • + Crash fixed for SCI_MOVESELECTEDLINESDOWN with empty vertical selection. + Bug #3496403. +
      • +
      • + Differences between buffered and unbuffered mode on Direct2D eliminated. + Bug #3495791. +
      • +
      • + Font leading implemented for Direct2D to improve display of character blobs. + Bug #3494744. +
      • +
      • + Fractional widths used for line numbers, character markers and other situations. + Bug #3494492. +
      • +
      • + Translucent rectangles drawn using Direct2D with sharper corners. + Bug #3494492. +
      • +
      • + RGBA markers drawn sharper when centred using Direct2D. + Bug #3494202. +
      • +
      • + RGBA markers are drawn centred when taller than line. + Bug #3494184. +
      • +
      • + Image marker drawing problem fixed for markers taller than line. + Bug #3493503. +
      • +
      • + Markers are drawn horizontally off-centre based on margin type instead of dimensions. + Bug #3488696. +
      • +
      • + Fold tail markers drawn vertically centred. + Feature #3488289. +
      • +
      • + On Windows, Scintilla is more responsive in wrap mode. + Bug #3487397. +
      • +
      • + Unimportant "Gdk-CRITICAL" messages are no longer displayed. + Bug #3488481. +
      • +
      • + SciTE on Windows Find in Files sets focus to dialog when already created; allows opening dialog when a job is running. + Bug #3480635. + Bug #3486657. +
      • +
      • + Fixed problems with multiple clicks in margin and with mouse actions combined with virtual space. + Bug #3484370. +
      • +
      • + Fixed bug with using page up and down and not returning to original line. + Bug #3485669. +
      • +
      • + Down arrow with wrapped text no longer skips lines. + Bug #1776560. +
      • +
      • + Fix problem with dwell ending immediately due to word wrap. + Bug #3484416. +
      • +
      • + Wrapped lines are rewrapped more consistently while resizing window. + Bug #3484179. +
      • +
      • + Selected line ends are highlighted more consistently. + Bug #3484330. +
      • +
      • + Fix grey background on files that use shbang to choose language. + Bug #3482777. +
      • +
      • + Fix failure messages from empty commands in SciTE. + Bug #3480645. +
      • +
      • + Redrawing reduced for some marker calls. + Feature #3493530. +
      • +
      • + Match brace and select brace commands work in SciTE output pane. + Feature #3486598. +
      • +
      • + Performing SciTE "Show Calltip" command when a calltip is already visible shows the next calltip. + Feature #3487017. +
      • +
      • + SciTE allows saving file even when file unchanged. + Feature #3486654. +
      • +
      • + SciTE allows optional use of character escapes in calltips. + Feature #3495239. +
      • +
      • + SciTE can open file:// URLs with Ctrl+Shift+O. + Feature #3495389. +
      • +
      • + Key modifiers updated for GTK+ on OS X to match upstream changes. +
      • +
      • + SciTE hang when marking all occurrences of regular expressions fixed. +
      • +
      +

      + Release 3.0.3 +

      +
        +
      • + Released 28 January 2012. +
      • +
      • + Printing works on GTK+ version 2.x as well as 3.x. +
      • +
      • + Lexer added for the AviSynth language. + Feature #3475611. +
      • +
      • + Lexer added for the Take Command / TCC scripting language. + Feature #3462462. +
      • +
      • + CSS lexer gains support for SCSS. + Feature #3268017. +
      • +
      • + CPP lexer fixes problems in the preprocessor structure caused by continuation lines. + Bug #3458508. +
      • +
      • + Errorlist lexer handles column numbers for GCC format diagnostics. + In SciTE, Next Message goes to column where this can be decoded from GCC format diagnostics. + Feature #3453075. +
      • +
      • + HTML folder fixes spurious folds on some tags. + Bug #3459262. +
      • +
      • + Ruby lexer fixes bug where '=' at start of file caused whole file to appear as a comment. + Bug #3452488. +
      • +
      • + SQL folder folds blocks of single line comments. + Feature #3467425. +
      • +
      • + On Windows using Direct2D, defer invalidation of render target until completion of painting to avoid failures. +
      • +
      • + Further support of fractional positioning. Spaces, tabs, and single character tokens can take fractional space + and wrapped lines are positioned taking fractional positions into account. + Bug #3471998. +
      • +
      • + On Windows using Direct2D, fix extra carets appearing. + Bug #3471998. +
      • +
      • + For autocompletion lists Page Up and Down move by the list height instead of by 5 lines. + Bug #3455493. +
      • +
      • + For SCI_LINESCROLLDOWN/UP don't select into virtual space. + Bug #3451681. +
      • +
      • + Fix fold highlight not being fully drawn. + Bug #3469936. +
      • +
      • + Fix selection margin appearing black when starting in wrap mode. +
      • +
      • + Fix crash when changing end of document after adding an annotation. + Bug #3476637. +
      • +
      • + Fix problems with building to make RPMs. + Bug #3476149. +
      • +
      • + Fix problem with building on GTK+ where recent distributions could not find gmodule. + Bug #3469056. +
      • +
      • + Fix problem with installing SciTE on GTK+ due to icon definition in .desktop file including an extension. + Bug #3476117. +
      • +
      • + Fix SciTE bug where new buffers inherited some properties from previously opened file. + Bug #3457060. +
      • +
      • + Fix focus when closing tab in SciTE with middle click. Focus moves to edit pane instead of staying on tab bar. + Bug #3440142. +
      • +
      • + For SciTE on Windows fix bug where Open Selected Filename for URL would append a file extension. + Feature #3459185. +
      • +
      • + For SciTE on Windows fix key handling of control characters in Parameters dialog so normal editing (Ctrl+C, ...) works. + Bug #3459345. +
      • +
      • + Fix SciTE bug where files became read-only after saving. Drop the "*" dirty marker after save completes. + Bug #3467432. +
      • +
      • + For SciTE handling of diffs with "+++" and "---" lines, also handle case where not followed by tab. + Go to correct line for diff "+++" message. + Bug #3467143. + Bug #3467178. +
      • +
      • + SciTE on GTK+ now performs threaded actions even on GTK+ versions before 2.12. +
      • +
      +

      + Release 3.0.2 +

      +
        +
      • + Released 9 December 2011. +
      • +
      • + SciTE saves files in the background without blocking the user interface. +
      • +
      • + Printing implemented in SciTE on GTK+ 3.x. +
      • +
      • + ILoader interface for background loading finalized and documented. +
      • +
      • + CoffeeScript lexer added. +
      • +
      • + C++ lexer fixes crash with "#if defined( XXX 1". +
      • +
      • + Crash with Direct2D on Windows fixed. +
      • +
      • + Backspace removing protected range fixed. + Bug #3445911. +
      • +
      • + Cursor setting failure on Windows when screen saver on fixed. + Bug #3438780. +
      • +
      • + SciTE on GTK+ hang fixed with -open:file option. + Bug #3441980. +
      • +
      • + Failure to evaluate shbang fixed in SciTE. + Bug #3441801. +
      • +
      • + SciTE failure to treat files starting with "<?xml" as XML fixed. + Bug #3440718. +
      • +
      • + Made untitled tab saveable when created by closing all files. + Bug #3440244. +
      • +
      • + SciTE crash fixed when using Scintillua. +
      • +
      • + SciTE revert command fixed so that undo works on individual actions instead of undoing to revert point. +
      • +
      • + Focus loss in SciTE when opening a recent file fixed. + Bug #3440142. +
      • +
      • + Fixed SciTE SelLength property to measure characters instead of bytes. + Bug #3283519. +
      • +
      +

      + Release 3.0.1 +

      +
        +
      • + Released 15 November 2011. +
      • +
      • + SciTE on Windows now runs Lua scripts directly on the main thread instead of starting them on a + secondary thread and then moving back to the main thread. +
      • +
      • + Highlight "else" as a keyword for TCL in the same way as other languages. + Bug #1836954. +
      • +
      • + Fix problems with setting fonts for autocompletion lists on Windows where + font handles were copied and later deleted causing a system default font to be used. +
      • +
      • + Fix font size used on Windows for Asian language input methods which sometimes led to IME not being visible. + Bug #3436753. +
      • +
      • + Fixed polygon drawing on Windows so fold symbols are visible again. + Bug #3433558. +
      • +
      • + Changed background drawing on GTK+ to allow for fractional character positioning as occurs on OS X + as this avoids faint lines at lexeme boundaries. +
      • +
      • + Ensure pixmaps allocated before painting as there was a crash when Scintilla drew without common initialization calls. + Bug #3432354. +
      • +
      • + Fixed SciTE on Windows bug causing wrong caret position after indenting a selection. + Bug #3433433. +
      • +
      • + Fixed SciTE session saving to store buffer position matching buffer. + Bug #3434372. +
      • +
      • + Fixed leak of document objects in SciTE. +
      • +
      • + Recognize URL characters '?' and '%' for Open Selected command in SciTE. + Bug #3429409. +
      • +
      +

      + Release 3.0.0 +

      +
        +
      • + Released 1 November 2011. +
      • +
      • + Carbon platform support removed. OS X applications should switch to Cocoa. +
      • +
      • + On Windows Vista or newer, drawing may be performed with Direct2D and DirectWrite instead of GDI. +
      • +
      • + Cairo is now used for all drawing on GTK+. GDK drawing was removed. +
      • +
      • + Paletted display support removed. +
      • +
      • + Fractional font sizes can be specified. +
      • +
      • + Different weights of text supported on some platforms instead of just normal and bold. +
      • +
      • + Sub-pixel character positioning supported. +
      • +
      • + SciTE loads files in the background without blocking the user interface. +
      • +
      • + SciTE can display diagnostic messages interleaved with the text of files immediately after the + line referred to by the diagnostic. +
      • +
      • + New API to see if all lines are visible which can be used to optimize processing fold structure notifications. +
      • +
      • + Scrolling optimized by avoiding invalidation of fold margin when redrawing whole window. +
      • +
      • + Optimized SCI_MARKERNEXT. +
      • +
      • + C++ lexer supports Pike hash quoted strings when turned on with lexer.cpp.hashquoted.strings. +
      • +
      • + Fixed incorrect line height with annotations in wrapped mode when there are multiple views. + Bug #3388159. +
      • +
      • + Calltips may be displayed above the text as well as below. + Bug #3410830. +
      • +
      • + For huge files SciTE only examines the first megabyte for newline discovery. +
      • +
      • + SciTE on GTK+ removes the fileselector.show.hidden property and check box as this was buggy and GTK+ now + supports an equivalent feature. + Bug #3413630. +
      • +
      • + SciTE on GTK+ supports mnemonics in dynamic menus. +
      • +
      • + SciTE on GTK+ displays the user's home directory as '~' in menus to make them shorter. +
      • +
      +

      + Release 2.29 +

      +
        +
      • + Released 16 September 2011. +
      • +
      • + To automatically discover the encoding of a file when opening it, SciTE can run a program set with command.discover.properties. + Feature #3324341. +
      • +
      • + Cairo always used for drawing on GTK+. +
      • +
      • + The set of properties files imported by SciTE can be controlled with the properties imports.include and imports.exclude. + The import statement has been extended to allow "import *". + The properties files for some languages are no longer automatically loaded by default. The properties files affected are + avenue, baan, escript, lot, metapost, and mmixal. +
      • +
      • + C++ lexer fixed a bug with raw strings being recognized too easily. + Bug #3388122. +
      • +
      • + LaTeX lexer improved with more states and fixes to most outstanding bugs. + Bug #1493111. + Bug #1856356. + Bug #3081692. +
      • +
      • + Lua lexer updates for Lua 5.2 beta with goto labels and "\z" string escape. + Feature #3386330. +
      • +
      • + Perl string styling highlights interpolated variables. + Feature #3394258. + Bug #3076629. +
      • +
      • + Perl lexer updated for Perl 5.14.0 with 0X and 0B numeric literal prefixes, break keyword and "+" supported in subroutine prototypes. + Feature #3388802. +
      • +
      • + Perl bug fixed with CRLF line endings. +
      • +
      • + Markdown lexer fixed to not change state with "_" in middle of word. + Bug #3398184. +
      • +
      • + Cocoa restores compatibility with OS X 10.5. +
      • +
      • + Mouse pointer changes over selection to an arrow near start when scrolled horizontally. + Bug #3389055. +
      • +
      • + Indicators that finish at the end of the document no longer expand when text is appended. + Bug #3378718. +
      • +
      • + SparseState merge fixed to check if other range is empty. + Bug #3387053. +
      • +
      • + On Windows, autocompletion lists will scroll instead of document when mouse wheel spun. + Feature #3403600. +
      • +
      • + SciTE performs more rapid polling for command completion so will return faster and report more accurate times. +
      • +
      • + SciTE resizes panes proportionally when switched between horizontal and vertical layout. + Feature #3376784. +
      • +
      • + SciTE on GTK+ opens multiple files into a single instance more reliably. + Bug #3363754. +
      • +
      +

      + Release 2.28 +

      +
        +
      • + Released 1 August 2011. +
      • +
      • + GTK+ Cairo support works back to GTK+ version 2.8. Requires changing Scintilla source code to enable before GTK+ 2.22. + Bug #3322351. +
      • +
      • + Translucent images in RGBA format can be used for margin markers and in autocompletion lists. +
      • +
      • + INDIC_DOTBOX added as a translucent dotted rectangular indicator. +
      • +
      • + Asian text input using IME works for GTK+ 3.x and GTK+ 2.x with Cairo. +
      • +
      • + On GTK+, IME works for Ctrl+Shift+U Unicode input in Scintilla. For SciTE, Ctrl+Shift+U is still Make Selection Uppercase. +
      • +
      • + Key bindings for GTK+ on OS X made compatible with Cocoa port and platform conventions. +
      • +
      • + Cocoa port supports different character encodings, improves scrolling performance and drag image appearance. + The control ID is included in WM_COMMAND notifications. Text may be deleted by dragging to the trash. + ScrollToStart and ScrollToEnd key commands added to simplify implementation of standard OS X Home and End + behaviour. +
      • +
      • + SciTE on GTK+ uses a paned widget to contain the edit and output panes instead of custom code. + This allows the divider to be moved easily on GTK+ 3 and its appearance follows GTK+ conventions more closely. +
      • +
      • + SciTE builds and installs on BSD. + Bug #3324644. +
      • +
      • + Cobol supports fixed format comments. + Bug #3014850. +
      • +
      • + Mako template language block syntax extended and ## comments recognized. + Feature #3325178. + Bug #3318818. +
      • +
      • + Folding of Mako template language within HTML fixed. + Bug #3324563. +
      • +
      • + Python lexer has lexer.python.keywords2.no.sub.identifiers option to avoid highlighting second set of + keywords following '.'. + Bug #3325333. +
      • +
      • + Python folder fixes bug where fold would not extend to final line. + Bug #3349157. +
      • +
      • + SciTE treats LPEG lexers the same as script lexers by setting all 8 style bits. +
      • +
      • + For Cocoa, crashes with unsupported font variants and memory leaks for colour objects fixed. +
      • +
      • + Shift-JIS lead byte ranges modified to match Windows. +
      • +
      • + Mouse pointer changes over selection to an arrow more consistently. + Bug #3315756. +
      • +
      • + Bug fixed with annotations beyond end of document. + Bug #3347268. +
      • +
      • + Incorrect drawing fixed for combination of background colour change and translucent selection. + Bug #3377116. +
      • +
      • + Lexers initialized correctly when started at position other than start of line. + Bug #3377148. +
      • +
      • + Fold highlight drawing fixed for some situations. + Bug #3323015. + Bug #3323805. +
      • +
      • + Case insensitive search fixed for cases where folded character uses fewer bytes than base character. + Bug #3362038. +
      • +
      • + SciTE bookmark.alpha setting fixed. + Bug #3373907. +
      • +
      +

      + Release 2.27 +

      +
        +
      • + Released 20 June 2011. +
      • +
      • + On recent GTK+ 2.x versions when using Cairo, bug fixed where wrong colours were drawn. +
      • +
      • + SciTE on GTK+ slow performance in menu maintenance fixed. + Bug #3315233. +
      • +
      • + Cocoa platform supports 64-bit builds and uses only non-deprecated APIs. + Asian Input Method Editors are supported. + Autocompletion lists and calltips implemented. + Control identifier used in notifications. +
      • +
      • + On Cocoa, rectangular selection now uses Option/Alt key to be compatible with Apple Human + Interface Guidelines and other applications. + The Control key is reported with an SCMOD_META modifier bit. +
      • +
      • + API added for setting and retrieving the identifier number used in notifications. +
      • +
      • + SCI_SETEMPTYSELECTION added to set selection without scrolling or redrawing more than needed. + Feature #3314877. +
      • +
      • + Added new indicators. INDIC_DASH and INDIC_DOTS are variants of underlines. + INDIC_SQUIGGLELOW indicator added as shorter alternative to INDIC_SQUIGGLE for small fonts. + Bug #3314591 +
      • +
      • + Margin line selection can be changed to select display lines instead of document lines. + Bug #3312763. +
      • +
      • + On Windows, SciTE can perform reverse searches by pressing Shift+Enter + in the Find or Replace strips or dialogs. +
      • +
      • + Matlab lexer does not special case '\' in single quoted strings. + Bug #948757 + Bug #1755950 + Bug #1888738 + Bug #3316852. +
      • +
      • + Verilog lexer supports SystemVerilog folding and keywords. +
      • +
      • + Font leak fixed. + Bug #3306156. +
      • +
      • + Automatic scrolling works for long wrapped lines. + Bug #3312763. +
      • +
      • + Multiple typing works for cases where selections collapse together. + Bug #3309906. +
      • +
      • + Fold expanded when needed in word wrap mode. + Bug #3291579. +
      • +
      • + Bug fixed with edge drawn in wrong place on wrapped lines. + Bug #3314807. +
      • +
      • + Bug fixed with unnecessary scrolling for SCI_GOTOLINE. + Bug #3303406. +
      • +
      • + Bug fixed where extra step needed to undo SCI_CLEAR in virtual space. + Bug #3159691. +
      • +
      • + Regular expression search fixed for \$ on last line of search range. + Bug #3313746. +
      • +
      • + SciTE performance improved when switching to a tab with a very large file. + Bug #3311421. +
      • +
      • + On Windows, SciTE advanced search remembers the "Search only in this style" setting. + Bug #3313344. +
      • +
      • + On GTK+, SciTE opens help using "xdg-open" instead of "netscape" as "netscape" no longer commonly installed. + Bug #3314377. +
      • +
      • + SciTE script lexers can use 256 styles. +
      • +
      • + SciTE word highlight works for words containing DBCS characters. + Bug #3315173. +
      • +
      • + Compilation fixed for wxWidgets. + Bug #3306156. +
      • +
      +

      + Release 2.26 +

      +
        +
      • + Released 25 May 2011. +
      • +
      • + Folding margin symbols can be highlighted for the current folding block. + Feature #3147069. +
      • +
      • + Selected lines can be moved up or down together. + Feature #3304850. +
      • +
      • + SciTE can highlight all occurrences of the current word or selected text. + Feature #3291636. +
      • +
      • + Experimental GTK+ 3.0 support: build with "make GTK3=1". +
      • +
      • + INDIC_STRAIGHTBOX added. Is similar to INDIC_ROUNDBOX but without rounded corners. + Bug #3290435. +
      • +
      • + Can show brace matching and mismatching with indicators instead of text style. + Translucency of outline can be altered for INDIC_ROUNDBOX and INDIC_STRAIGHTBOX. + Feature #3290434. +
      • +
      • + SciTE can automatically indent python by examining previous line for scope-starting ':' with indent.python.colon. +
      • +
      • + Batch file lexer allows braces '(' or ')' inside variable names. +
      • +
      • + The cpp lexer only recognizes Vala triple quoted strings when lexer.cpp.triplequoted.strings property is set. + Bug #3239234. +
      • +
      • + Make file lexer treats a variable with a nested variable like $(f$(qx)b) as one variable. + Bug #3298223. +
      • +
      • + Folding bug fixed for JavaScript with nested PHP. + Bug #3193530. +
      • +
      • + HTML lexer styles Django's {# #} comments. + Bug #3013798. +
      • +
      • + HTML lexer styles JavaScript regular expression correctly for /abc/i.test('abc');. + Bug #3209108. +
      • +
      • + Inno Setup Script lexer now works properly when it restarts from middle of [CODE] section. + Bug #3283880. + Bug #3129044. +
      • +
      • + Lua lexer updated for Lua 5.2 with hexadecimal floating-point numbers and '\*' whitespace escaping in strings. + Feature #3243811. +
      • +
      • + Perl folding folds "here doc"s and adds options fold.perl.at.else and fold.perl.comment.explicit. Fold structure for Perl fixed. + Feature #3112671. + Bug #3265401. +
      • +
      • + Python lexer supports cpdef keyword for Cython. + Bug #3279728. +
      • +
      • + SQL folding option lexer.sql.fold.at.else renamed to fold.sql.at.else. + Bug #3271474. +
      • +
      • + SQL lexer no longer treats ';' as terminating a comment. + Bug #3196071. +
      • +
      • + Text drawing and measurement segmented into smaller runs to avoid platform bugs. + Bug #3277449. + Bug #3165743. +
      • +
      • + SciTE on Windows adds temp.files.sync.load property to open dropped temporary files synchronously as they may + be removed before they can be opened asynchronously. + Bug #3072009. +
      • +
      • + Bug fixed with indentation guides ignoring first line in SC_IV_LOOKBOTH mode. + Bug #3291317. +
      • +
      • + Bugs fixed in backward regex search. + Bug #3292659. +
      • +
      • + Bugs with display of folding structure fixed for wrapped lines and where there is a fold header but no body. + Bug #3291579. + Bug #3265401. +
      • +
      • + SciTE on Windows cursor changes to an arrow now when over horizontal splitter near top of window. + Bug #3286620. +
      • +
      • + Fixed default widget size problem on GTK+. + Bug #3267892. +
      • +
      • + Fixed font size when using Cairo on GTK+. + Bug #3272662. +
      • +
      • + Fixed primary selection and cursor issues on GTK+ when unrealized then realized. + Bug #3256153. +
      • +
      • + Right click now cancels selection on GTK+ like on Windows. + Bug #3235190. +
      • +
      • + SciTE on GTK+ implements z-order buffer switching like on Windows. + Bug #3228384. +
      • +
      • + Improve selection position after SciTE Insert Abbreviation command when abbreviation expansion includes '|'. +
      • +
      +

      + Release 2.25 +

      +
        +
      • + Released 21 March 2011. +
      • +
      • + SparseState class makes it easier to write lexers which have to remember complex state between lines. +
      • +
      • + Visual Studio project (.dsp) files removed. The make files should be used instead as described in the README. +
      • +
      • + Modula 3 lexer added along with SciTE support. + Feature #3173374. +
      • +
      • + Asm, Basic, and D lexers add extra folding properties. +
      • +
      • + Raw string literals for C++0x supported in C++ lexer. +
      • +
      • + Triple-quoted strings used in Vala language supported in C++ lexer. + Feature #3177601. +
      • +
      • + The errorlist lexer used in SciTE's output pane colours lines that start with '<' as diff deletions. + Feature #3172878. +
      • +
      • + The Fortran lexer correctly folds type-bound procedures from Fortran 2003. +
      • +
      • + LPeg lexer support‎ improved in SciTE. +
      • +
      • + SciTE on Windows-64 fixes for menu localization and Lua scripts. + Bug #3204502. +
      • +
      • + SciTE on Windows avoids locking folders when using the open or save dialogs. + Bug #1795484. +
      • +
      • + Diff lexer fixes problem where diffs of diffs producing lines that start with "----". + Bug #3197952. +
      • +
      • + Bug fixed when searching upwards in Chinese code page 936. + Bug #3176271. +
      • +
      • + On Cocoa, translucent drawing performed as on other platforms instead of 2.5 times less translucent. +
      • +
      • + Performance issue and potential bug fixed on GTK+ with caret line for long lines. +
      • +
      +

      + Release 2.24 +

      +
        +
      • + Released 3 February 2011. +
      • +
      • + Fixed memory leak in GTK+ Cairo code. + Feature #3157655. +
      • +
      • + Insert Abbreviation dialog added to SciTE on GTK+. +
      • +
      • + SCN_UPDATEUI notifications received when window scrolled. An 'updated' bit mask indicates which + types of update have occurred from SC_UPDATE_SELECTION, SC_UPDATE_CONTENT, SC_UPDATE_H_SCROLL + or SC_UPDATE_V_SCROLL. + Feature #3125977. +
      • +
      • + On Windows, to ensure reverse arrow cursor matches platform default, it is now generated by + reflecting the platform arrow cursor. + Feature #3143968. +
      • +
      • + Can choose mouse cursor used in margins. + Feature #3161326. +
      • +
      • + On GTK+, SciTE sets a mime type of text/plain in its .desktop file so that it will appear in the shell context menu. + Feature #3137126. +
      • +
      • + Bash folder handles here docs. + Feature #3118223. +
      • +
      • + C++ folder adds fold.cpp.syntax.based, fold.cpp.comment.multiline, fold.cpp.explicit.start, fold.cpp.explicit.end, + and fold.cpp.explicit.anywhere properties to allow more control over folding and choice of explicit fold markers. +
      • +
      • + C++ lexer fixed to always handle single quote strings continued past a line end. + Bug #3150522. +
      • +
      • + Ruby folder handles here docs. + Feature #3118224. +
      • +
      • + SQL lexer allows '.' to be part of words. + Feature #3103129. +
      • +
      • + SQL folder handles case statements in more situations. + Feature #3135027. +
      • +
      • + SQL folder adds fold points inside expressions based on bracket structure. + Feature #3165488. +
      • +
      • + SQL folder drops fold.sql.exists property as 'exists' is handled automatically. + Bug #3164194. +
      • +
      • + SciTE only forwards properties to lexers when they have been explicitly set so the defaults set by lexers are used + rather than 0. +
      • +
      • + Mouse double click word selection chooses the word around the character under the mouse rather than + the inter-character position under the mouse. This makes double clicking select what the user is pointing + at and avoids selecting adjacent non-word characters. + Bug #3111174. +
      • +
      • + Fixed mouse double click to always perform word select, not line select. + Bug #3143635. +
      • +
      • + Right click cancels autocompletion. + Bug #3144531. +
      • +
      • + Fixed multiPaste to work when additionalSelectionTyping off. + Bug #3126221. +
      • +
      • + Fixed virtual space problems when text modified at caret. + Bug #3154986. +
      • +
      • + Fixed memory leak in lexer object code. + Bug #3133672. +
      • +
      • + Fixed SciTE on GTK+ search failure when using regular expression. + Bug #3156217. +
      • +
      • + Avoid unnecessary full window redraw for SCI_GOTOPOS. + Feature #3146650. +
      • +
      • + Avoid unnecessary redraw when indicator fill range makes no real change. +
      • +
      +

      + Release 2.23 +

      +
        +
      • + Released 7 December 2010. +
      • +
      • + On GTK+ version 2.22 and later, drawing is performed with Cairo rather than GDK. + This is in preparation for GTK+ 3.0 which will no longer support GDK drawing. + The appearance of some elements will be different with Cairo as it is anti-aliased and uses sub-pixel positioning. + Cairo may be turned on for GTK+ versions before 2.22 by defining USE_CAIRO although this has not + been extensively tested. +
      • +
      • + New lexer a68k for Motorola 68000 assembler. + Feature #3101598. +
      • +
      • + Borland C++ is no longer supported for building Scintilla or SciTE on Windows. +
      • +
      • + Performance improved when creating large rectangular selections. +
      • +
      • + PHP folder recognizes #region and #endregion comments. + Feature #3101624. +
      • +
      • + SQL lexer has a lexer.sql.numbersign.comment option to turn off use of '#' comments + as these are a non-standard feature only available in some implementations. + Feature #3098071. +
      • +
      • + SQL folder recognizes case statements and understands the fold.at.else property. + Bug #3104091. + Bug #3107362. +
      • +
      • + SQL folder fixes bugs with end statements when fold.sql.only.begin=1. + Bug #3104091. +
      • +
      • + SciTE on Windows bug fixed with multi-line tab bar not adjusting correctly when maximizing and demaximizing. + Bug #3097517. +
      • +
      • + Crash fixed on GTK+ when Scintilla widget destroyed while it still has an outstanding style idle pending. +
      • +
      • + Bug fixed where searching backwards in DBCS text (code page 936 or similar) failed to find occurrences at the start of the line. + Bug #3103936. +
      • +
      • + SciTE on Windows supports Unicode file names when executing help applications with winhelp and htmlhelp subsystems. +
      • +
      +

      + Release 2.22 +

      +
        +
      • + Released 27 October 2010. +
      • +
      • + SciTE includes support for integrating with Scintillua which allows lexers to be implemented in Lua as a + Parsing Expression Grammar (PEG). +
      • +
      • + Regular expressions allow use of '?' for non-greedy matches or to match 0 or 1 instances of an item. +
      • +
      • + SCI_CONTRACTEDFOLDNEXT added to allow rapid retrieval of folding state. +
      • +
      • + SCN_HOTSPOTRELEASECLICK notification added which is similar to SCN_HOTSPOTCLICK but occurs + when the mouse is released. + Feature #3082409. +
      • +
      • + Command added for centring current line in window. + Feature #3064696. +
      • +
      • + SciTE performance improved by not examining document for line ends when switching buffers and not + storing folds when folding turned off. +
      • +
      • + Bug fixed where scrolling to ensure the caret is visible did not take into account all pixels of the line. + Bug #3081721. +
      • +
      • + Bug fixed for autocompletion list overlapping text when WS_EX_CLIENTEDGE used. + Bug #3079778. +
      • +
      • + After autocompletion, the caret's X is updated. + Bug #3079114. +
      • +
      • + On Windows, default to the system caret blink time. + Feature #3079784. +
      • +
      • + PgUp/PgDn fixed to allow virtual space. + Bug #3077452. +
      • +
      • + Crash fixed when AddMark and AddMarkSet called with negative argument. + Bug #3075074. +
      • +
      • + Dwell notifications fixed so that they do not occur when the mouse is outside Scintilla. + Bug #3073481. +
      • +
      • + Bash lexer bug fixed for here docs starting with <<-. + Bug #3063822. +
      • +
      • + C++ lexer bug fixed for // comments that are continued onto a second line by a \. + Bug #3066031. +
      • +
      • + C++ lexer fixes wrong highlighting for float literals containing +/-. + Bug #3058924. +
      • +
      • + JavaScript lexer recognize regexes following return keyword.‎ + Bug #3062287. +
      • +
      • + Ruby lexer handles % quoting better and treats range dots as operators in 1..2 and 1...2. + Ruby folder handles "if" keyword used as a modifier even when it is separated from the modified statement by an escaped new line. + Bug #2093767. + Bug #3058496. +
      • +
      • + Bug fixed where upwards search failed with DBCS code pages. + Bug #3065912. +
      • +
      • + SciTE has a default Lua startup script name distributed in SciTEGlobal.properties. + No error message is displayed if this file does not exist. +
      • +
      • + SciTE on Windows tab control height is calculated better. + Bug #2635702. +
      • +
      • + SciTE on Windows uses better themed check buttons in find and replace strips. +
      • +
      • + SciTE on Windows fixes bug with Find strip appearing along with Incremental Find strip. +
      • +
      • + SciTE setting find.close.on.find added to allow preventing the Find dialog from closing. +
      • +
      • + SciTE on Windows attempts to rerun commands that fail by prepending them with "cmd.exe /c". + This allows commands built in to the command processor like "dir" to run. +
      • +
      +

      + Release 2.21 +

      +
        +
      • + Released 1 September 2010. +
      • +
      • + Asian Double Byte Character Set (DBCS) support improved. + Case insensitive search works and other operations are much faster. + Bug #2999125, + Bug #2774616, + Bug #2991942, + Bug #3005688. +
      • +
      • + Scintilla on GTK+ uses only non-deprecated APIs (for GTK+ 2.20) except for GdkFont and GdkFont use can be disabled + with the preprocessor symbol DISABLE_GDK_FONT. +
      • +
      • + IDocument interface used by lexers adds BufferPointer and GetLineIndentation methods. +
      • +
      • + On Windows, clicking sets focus before processing the click or sending notifications. +
      • +
      • + Bug on OS X (macosx platform) fixed where drag/drop overwrote clipboard. + Bug #3039732. +
      • +
      • + GTK+ drawing bug when the view was horizontally scrolled more than 32000 pixels fixed. +
      • +
      • + SciTE bug fixed with invoking Complete Symbol from output pane. + Bug #3050957. +
      • +
      • + Bug fixed where it was not possible to disable folding. + Bug #3040649. +
      • +
      • + Bug fixed with pressing Enter on a folded fold header line not opening the fold. + Bug #3043419. +
      • +
      • + SciTE 'Match case' option in find and replace user interfaces changed to 'Case sensitive' to allow use of 'v' + rather than 'c' as the mnemonic. +
      • +
      • + SciTE displays stack trace for Lua when error occurs.. + Bug #3051397. +
      • +
      • + SciTE on Windows fixes bug where double clicking on error message left focus in output pane. + Bug #1264835. +
      • +
      • + SciTE on Windows uses SetDllDirectory to avoid a security problem. +
      • +
      • + C++ lexer crash fixed with preprocessor expression that looked like division by 0. + Bug #3056825. +
      • +
      • + Haskell lexer improved. + Feature #3039490. +
      • +
      • + HTML lexing fixed around Django {% %} tags. + Bug #3034853. +
      • +
      • + HTML JavaScript lexing fixed when line end escaped. + Bug #3038381. +
      • +
      • + HTML lexer stores line state produced by a line on that line rather than on the next line. +
      • +
      • + Markdown lexer fixes infinite loop. + Bug #3045386. +
      • +
      • + MySQL folding bugs with END statements fixed. + Bug #3031742. +
      • +
      • + PowerShell lexer allows '_' as a word character. + Feature #3042228. +
      • +
      • + SciTE on GTK+ abandons processing of subsequent commands if a command.go.needs command fails. +
      • +
      • + When SciTE is closed, all buffers now receive an OnClose call. + Bug #3033857. +
      • +
      +

      + Release 2.20 +

      +
        +
      • + Released 30 July 2010. +
      • +
      • + Lexers are implemented as objects so that they may retain extra state. + The interfaces defined for this are tentative and may change before the next release. + Compatibility classes allow current lexers compiled into Scintilla to run with few changes. + The interface to external lexers has changed and existing external lexers will need to have changes + made and be recompiled. + A single lexer object is attached to a document whereas previously lexers were attached to views + which could lead to different lexers being used for split views with confusing results. +
      • +
      • + C++ lexer understands the preprocessor enough to grey-out inactive code due to conditional compilation. +
      • +
      • + SciTE can use strips within the main window for find and replace rather than dialogs. + On Windows SciTE always uses a strip for incremental search. +
      • +
      • + Lexer added for Txt2Tags language. + Feature #3018736. +
      • +
      • + Sticky caret feature enhanced with additional SC_CARETSTICKY_WHITESPACE mode . + Feature #3027559. +
      • +
      • + Bash lexer implements basic parsing of compound commands and constructs. + Feature #3033135. +
      • +
      • + C++ folder allows disabling explicit fold comments. +
      • +
      • + Perl folder works for array blocks, adjacent package statements, nested PODs, and terminates package folding at __DATA__, ^D and ^Z. + Feature #3030887. +
      • +
      • + PowerShell lexer supports multiline <# .. #> comments and adds 2 keyword classes. + Feature #3015176. +
      • +
      • + Lexing performed incrementally when needed by wrapping to make user interface more responsive. +
      • +
      • + SciTE setting replaceselection:yes works on GTK+. +
      • +
      • + SciTE Lua scripts calling io.open or io.popen on Windows have arguments treated as UTF-8 and converted to Unicode + so that non-ASCII file paths will work. Lua files with non-ASCII paths run. + Bug #3016951. +
      • +
      • + Crash fixed when searching for empty string. + Bug #3017572. +
      • +
      • + Bugs fixed with folding and lexing when Enter pressed at start of line. + Bug #3032652. +
      • +
      • + Bug fixed with line selection mode not affecting selection range. + Bug #3021480. +
      • +
      • + Bug fixed where indicator alpha was limited to 100 rather than 255. + Bug #3021473. +
      • +
      • + Bug fixed where changing annotation did not cause automatic redraw. +
      • +
      • + Regular expression bug fixed when a character range included non-ASCII characters. +
      • +
      • + Compilation failure with recent compilers fixed on GTK+. + Bug #3022027. +
      • +
      • + Bug fixed on Windows with multiple monitors where autocomplete pop up would appear off-screen + or straddling monitors. + Bug #3017512. +
      • +
      • + SciTE on Windows bug fixed where changing directory to a Unicode path failed. + Bug #3011987. +
      • +
      • + SciTE on Windows bug fixed where combo boxes were not allowing Unicode characters. + Bug #3012986. +
      • +
      • + SciTE on GTK+ bug fixed when dragging files into SciTE on KDE. + Bug #3026555. +
      • +
      • + SciTE bug fixed where closing untitled file could lose data if attempt to name file same as another buffer. + Bug #3011680. +
      • +
      • + COBOL number masks now correctly highlighted. + Bug #3012164. +
      • +
      • + PHP comments can include <?PHP without triggering state change. + Bug #2854183. +
      • +
      • + VHDL lexer styles unclosed string correctly. + Bug #3029627. +
      • +
      • + Memory leak fixed in list boxes on GTK+. + Bug #3007669. +
      • +
      +

      + Release 2.12 +

      +
        +
      • + Released 1 June 2010. +
      • +
      • + Drawing optimizations improve speed and fix some visible flashing when scrolling. +
      • +
      • + Copy Path command added to File menu in SciTE. + Feature #2986745. +
      • +
      • + Optional warning displayed by SciTE when saving a file which has been modified by another process. + Feature #2975041. +
      • +
      • + Flagship lexer for xBase languages updated to follow the language much more closely. + Feature #2992689. +
      • +
      • + HTML lexer highlights Django templates in more regions. + Feature #3002874. +
      • +
      • + Dropping files on SciTE on Windows, releases the drag object earlier and opens the files asynchronously, + leading to smoother user experience. + Feature #2986724. +
      • +
      • + SciTE HTML exports take the Use Monospaced Font setting into account. +
      • +
      • + SciTE window title "[n of m]" localized. +
      • +
      • + When new line inserted at start of line, markers are moved down. + Bug #2986727. +
      • +
      • + On Windows, dropped text has its line ends converted, similar to pasting. + Bug #3005328. +
      • +
      • + Fixed bug with middle-click paste in block select mode where text was pasted next to selection rather than at cursor. + Bug #2984460. +
      • +
      • + Fixed SciTE crash where a style had a size parameter without a value. + Bug #3003834. +
      • +
      • + Debug assertions in multiple lexers fixed. + Bug #3000566. +
      • +
      • + CSS lexer fixed bug where @font-face displayed incorrectly + Bug #2994224. +
      • +
      • + CSS lexer fixed bug where open comment caused highlighting error. + Bug #1683672. +
      • +
      • + Shell file lexer fixed highlight glitch with here docs where the first line is a comment. + Bug #2830239. +
      • +
      • + Bug fixed in SciTE openpath property that caused Open Selected File to fail to open the selected file. +
      • +
      • + Bug fixed in SciTE FileExt property when file name with no extension evaluated to whole path. +
      • +
      • + Fixed SciTE on Windows printing bug where the $(CurrentTime), $(CurrentPage) variables were not expanded. + Bug #2994612. +
      • +
      • + SciTE compiles for 64-bit Windows and runs without crashing. + Bug #2986312. +
      • +
      • + Full Screen mode in Windows Vista/7 improved to hide Start button and size borders a little better. + Bug #3002813. +
      • +
      +

      + Release 2.11 +

      +
        +
      • + Released 9 April 2010. +
      • +
      • + Fixes compatibility of Scintilla.h with the C language. +
      • +
      • + With a rectangular selection SCI_GETSELECTIONSTART and SCI_GETSELECTIONEND return limits of the + rectangular selection rather than the limits of the main selection. +
      • +
      • + When SciTE on Windows is minimized to tray, only takes a single click to restore rather than a double click. + Feature #981917. +
      • +
      +

      + Release 2.10 +

      +
        +
      • + Released 4 April 2010. +
      • +
      • + Version 1.x of GTK+ is no longer supported. +
      • +
      • + SciTE is no longer supported on Windows 95, 98 or ME. +
      • +
      • + Case-insensitive search works for non-ASCII characters in UTF-8 and 8-bit encodings. + Non-regex search in DBCS encodings is always case-sensitive. +
      • +
      • + Non-ASCII characters may be changed to upper and lower case. +
      • +
      • + SciTE on Windows can access all files including those with names outside the user's preferred character encoding. +
      • +
      • + SciTE may be extended with lexers written in Lua. +
      • +
      • + When there are multiple selections, the paste command can go either to the main selection or to each + selection. This is controlled with SCI_SETMULTIPASTE. +
      • +
      • + More forms of bad UTF-8 are detected including overlong sequences, surrogates, and characters outside + the valid range. Bad UTF-8 bytes are now displayed as 2 hex digits preceded by 'x'. +
      • +
      • + SCI_GETTAG retrieves the value of captured expressions within regular expression searches. +
      • +
      • + Django template highlighting added to the HTML lexer. + Feature #2974889. +
      • +
      • + Verilog line comments can be folded. +
      • +
      • + SciTE on Windows allows specifying a filter for the Save As dialog. + Feature #2943445. +
      • +
      • + Bug fixed when multiple selection disabled where rectangular selections could be expanded into multiple selections. + Bug #2948260. +
      • +
      • + Bug fixed when document horizontally scrolled and up/down-arrow did not return to the same + column after horizontal scroll occurred. + Bug #2950799. +
      • +
      • + Bug fixed to remove hotspot highlight when mouse is moved out of the document. Windows only fix. + Bug #2951353. +
      • +
      • + R lexer now performs case-sensitive check for keywords. + Bug #2956543. +
      • +
      • + Bug fixed on GTK+ where text disappeared when a wrap occurred. + Bug #2958043. +
      • +
      • + Bug fixed where regular expression replace cannot escape the '\' character by using '\\'. + Bug #2959876. +
      • +
      • + Bug fixed on GTK+ when virtual space disabled, middle-click could still paste text beyond end of line. + Bug #2971618. +
      • +
      • + SciTE crash fixed when double clicking on a malformed error message in the output pane. + Bug #2976551. +
      • +
      • + Improved performance on GTK+ when changing parameters associated with scroll bars to the same value. + Bug #2964357. +
      • +
      • + Fixed bug with pressing Shift+Tab with a rectangular selection so that it performs an un-indent + similar to how Tab performs an indent. +
      • +
      +

      + Release 2.03 +

      +
        +
      • + Released 14 February 2010. +
      • +
      • + Added SCI_SETFIRSTVISIBLELINE to match SCI_GETFIRSTVISIBLELINE. +
      • +
      • + Erlang lexer extended set of numeric bases recognized; separate style for module:function_name; detects + built-in functions, known module attributes, and known preprocessor instructions; recognizes EDoc and EDoc macros; + separates types of comments. + Bug #2942448. +
      • +
      • + Python lexer extended with lexer.python.strings.over.newline option that allows non-triple-quoted strings to extend + past line ends. This allows use of the Ren'Py language. + Feature #2945550. +
      • +
      • + Fixed bugs with cursor movement after deleting a rectangular selection. + Bug #2942131. +
      • +
      • + Fixed bug where calling SCI_SETSEL when there is a rectangular selection left + the additional selections selected. + Bug #2947064. +
      • +
      • + Fixed macro recording bug where not all bytes in multi-byte character insertions were reported through + SCI_REPLACESEL. +
      • +
      • + Fixed SciTE bug where using Ctrl+Enter followed by Ctrl+Space produced an autocompletion list + with only a single line containing all the identifiers. +
      • +
      • + Fixed SciTE on GTK+ bug where running a tool made the user interface completely unresponsive. +
      • +
      • + Fixed SciTE on Windows Copy to RTF bug. + Bug #2108574. +
      • +
      +

      + Release 2.02 +

      +
        +
      • + Released on 25 January 2010. +
      • +
      • + Markdown lexer added. + Feature #2844081. +
      • +
      • + On GTK+, include code that understands the ranges of lead bytes for code pages 932, 936, and 950 + so that most Chinese and Japanese text can be used on systems that are not set to the corresponding locale. +
      • +
      • + Allow changing the size of dots in visible whitespace using SCI_SETWHITESPACESIZE. + Feature #2839427. +
      • +
      • + Additional carets can be hidden with SCI_SETADDITIONALCARETSVISIBLE. +
      • +
      • + Can choose anti-aliased, non-anti-aliased or lcd-optimized text using SCI_SETFONTQUALITY. +
      • +
      • + Retrieve the current selected text in the autocompletion list with SCI_AUTOCGETCURRENTTEXT. +
      • +
      • + Retrieve the name of the current lexer with SCI_GETLEXERLANGUAGE. +
      • +
      • + Progress 4GL lexer improves handling of comments in preprocessor declaration. + Feature #2902206. +
      • +
      • + HTML lexer extended to handle Mako template language. +
      • +
      • + SQL folder extended for SQL Anywhere "EXISTS" and "ENDIF" keywords. + Feature #2887524. +
      • +
      • + SciTE adds APIPath and AbbrevPath variables. +
      • +
      • + SciTE on GTK+ uses pipes instead of temporary files for running tools. This should be more secure. +
      • +
      • + Fixed crash when calling SCI_STYLEGETFONT for a style which does not have a font set. + Bug #2857425. +
      • +
      • + Fixed crash caused by not having sufficient styles allocated after choosing a lexer. + Bug #2881279. +
      • +
      • + Fixed crash in SciTE using autocomplete word when word characters includes space. + Bug #2840141. +
      • +
      • + Fixed bug with handling upper-case file extensions SciTE on GTK+. +
      • +
      • + Fixed SciTE loading files from sessions with folded folds where it would not + be scrolled to the correct location. + Bug #2882775. +
      • +
      • + Fixed SciTE loading files from sessions when file no longer exists. + Bug #2883437. +
      • +
      • + Fixed SciTE export to HTML using the wrong background colour. +
      • +
      • + Fixed crash when adding an annotation and then adding a new line after the annotation. + Bug #2929708. +
      • +
      • + Fixed crash in SciTE setting a property to nil from Lua. +
      • +
      • + SCI_GETSELTEXT fixed to return correct length. + Bug #2929441. +
      • +
      • + Fixed text positioning problems with selection in some circumstances. +
      • +
      • + Fixed text positioning problems with ligatures on GTK+. +
      • +
      • + Fixed problem pasting into rectangular selection with caret at bottom caused text to go from the caret down + rather than replacing the selection. +
      • +
      • + Fixed problem replacing in a rectangular selection where only the final line was changed. +
      • +
      • + Fixed inability to select a rectangular area using Alt+Shift+Click at both corners. + Bug #2899746. +
      • +
      • + Fixed problem moving to start/end of a rectangular selection with left/right key. + Bug #2871358. +
      • +
      • + Fixed problem with Select All when there's a rectangular selection. + Bug #2930488. +
      • +
      • + Fixed SCI_LINEDUPLICATE on a rectangular selection to not produce multiple discontinuous selections. +
      • +
      • + Virtual space removed when performing delete word left or delete line left. + Virtual space converted to real space for delete word right. + Preserve virtual space when pressing Delete key. + Bug #2882566. +
      • +
      • + Fixed problem where Shift+Alt+Down did not move through wrapped lines. + Bug #2871749. +
      • +
      • + Fixed incorrect background colour when using coloured lines with virtual space. + Bug #2914691. +
      • +
      • + Fixed failure to display wrap symbol for SC_WRAPVISUALFLAGLOC_END_BY_TEXT. + Bug #2936108. +
      • +
      • + Fixed blank background colour with EOLFilled style on last line. + Bug #2890105. +
      • +
      • + Fixed problem in VB lexer with keyword at end of file. + Bug #2901239. +
      • +
      • + Fixed SciTE bug where double clicking on a tab closed the file. +
      • +
      • + Fixed SciTE brace matching commands to only work when the caret is next to the brace, not when + it is in virtual space. + Bug #2885560. +
      • +
      • + Fixed SciTE on Windows Vista to access files in the Program Files directory rather than allow Windows + to virtualize access. + Bug #2916685. +
      • +
      • + Fixed NSIS folder to handle keywords that start with '!'. + Bug #2872157. +
      • +
      • + Changed linkage of Scintilla_LinkLexers to "C" so that it can be used by clients written in C. + Bug #2844718. +
      • +
      +

      + Release 2.01 +

      +
        +
      • + Released on 19 August 2009. +
      • +
      • + Fix to positioning rectangular paste when viewing line ends. +
      • +
      • + Don't insert new lines and indentation for line ends at end of rectangular paste. +
      • +
      • + When not in additional selection typing mode, cutting a rectangular selection removes all of the selected text. +
      • +
      • + Rectangular selections are copied to the clipboard in document order, not in the order of selection. +
      • +
      • + SCI_SETCURRENTPOS and SCI_SETANCHOR work in rectangular mode. +
      • +
      • + On GTK+, drag and drop to a later position in the document now drops at the position. +
      • +
      • + Fix bug where missing property did not use default value. +
      • +
      +

      + Release 2.0 +

      +
        +
      • + Released on 11 August 2009. +
      • +
      • + Multiple pieces of text can be selected simultaneously by holding control while dragging the mouse. + Typing, backspace and delete may affect all selections together. +
      • +
      • + Virtual space allows selecting beyond the last character on a line. +
      • +
      • + SciTE on GTK+ path bar is now optional and defaults to off. +
      • +
      • + MagikSF lexer recognizes numbers correctly. +
      • +
      • + Folding of Python comments and blank lines improved. Bug #210240. +
      • +
      • + Bug fixed where background colour of last character in document leaked past that character. +
      • +
      • + Crash fixed when adding marker beyond last line in document. Bug #2830307. +
      • +
      • + Resource leak fixed in SciTE for Windows when printing fails. Bug #2816524. +
      • +
      • + Bug fixed on Windows where the system caret was destroyed during destruction when another window + was using the system caret. Bug #2830223. +
      • +
      • + Bug fixed where indentation guides were drawn over text when the indentation used a style with a different + space width to the default style. +
      • +
      • + SciTE bug fixed where box comment added a bare line feed rather than the chosen line end. Bug #2818104. +
      • +
      • + Reverted fix that led to wrapping whole document when displaying the first line of the document. +
      • +
      • + Export to LaTeX in SciTE fixed to work in more cases and not use as much space. Bug #1286548. +
      • +
      • + Bug fixed where EN_CHANGE notification was sent when performing a paste operation in a + read-only document. Bug #2825485. +
      • +
      • + Refactored code so that Scintilla exposes less of its internal implementation and uses the C++ standard + library for some basic collections. Projects that linked to Scintilla's SString or PropSet classes + should copy this code from a previous version of Scintilla or from SciTE. +
      • +
      +

      + Release 1.79 +

      +
        +
      • + Released on 1 July 2009. +
      • +
      • + Memory exhaustion and other exceptions handled by placing an error value into the + status property rather than crashing. + Scintilla now builds with exception handling enabled and requires exception handling to be enabled.
        + This is a major change and application developers should consider how they will deal with Scintilla exhausting + memory since Scintilla may not be in a stable state. +
      • +
      • + Deprecated APIs removed. The symbols removed are: +
          +
        • SCI_SETCARETPOLICY
        • +
        • CARET_CENTER
        • +
        • CARET_XEVEN
        • +
        • CARET_XJUMPS
        • +
        • SC_FOLDFLAG_BOX
        • +
        • SC_FOLDLEVELBOXHEADERFLAG
        • +
        • SC_FOLDLEVELBOXFOOTERFLAG
        • +
        • SC_FOLDLEVELCONTRACTED
        • +
        • SC_FOLDLEVELUNINDENT
        • +
        • SCN_POSCHANGED
        • +
        • SCN_CHECKBRACE
        • +
        • SCLEX_ASP
        • +
        • SCLEX_PHP
        • +
        +
      • +
      • + Cocoa platform added. +
      • +
      • + Names of struct types in Scintilla.h now start with "Sci_" to avoid possible clashes with platform + definitions. Currently, the old names still work but these will be phased out. +
      • +
      • + When lines are wrapped, subsequent lines may be indented to match the indent of the initial line, + or one more indentation level. Feature #2796119. +
      • +
      • + APIs added for finding the character at a point rather than an inter-character position. Feature #2646738. +
      • +
      • + A new marker SC_MARK_BACKGROUND_UNDERLINE is drawn in the text area as an underline + the full width of the window. +
      • +
      • + Batch file lexer understands variables surrounded by '!'. +
      • +
      • + CAML lexer also supports SML. +
      • +
      • + D lexer handles string and numeric literals more accurately. Feature #2793782. +
      • +
      • + Forth lexer is now case-insensitive and better supports numbers like $hex and %binary. Feature #2804894. +
      • +
      • + Lisp lexer treats '[', ']', '{', and '}' as balanced delimiters which is common usage. Feature #2794989. +
        + It treats keyword argument names as being equivalent to symbols. Feature #2794901. +
      • +
      • + Pascal lexer bug fixed to prevent hang when 'interface' near beginning of file. Bug #2802863. +
      • +
      • + Perl lexer bug fixed where previous lexical states persisted causing "/" special case styling and + subroutine prototype styling to not be correct. Bug #2809168. +
      • +
      • + XML lexer fixes bug where Unicode entities like '&—' were broken into fragments. Bug #2804760. +
      • +
      • + SciTE on GTK+ enables scrolling the tab bar on recent versions of GTK+. Feature #2061821. +
      • +
      • + SciTE on Windows allows tab bar tabs to be reordered by drag and drop. +
      • +
      • + Unit test script for Scintilla on Windows included with source code. +
      • +
      • + User defined menu items are now localized when there is a matching translation. +
      • +
      • + Width of icon column of autocompletion lists on GTK+ made more consistent. +
      • +
      • + Bug with slicing UTF-8 text into character fragments when there is a sequence of 100 or more 3 byte characters. Bug #2780566. +
      • +
      • + Folding bugs introduced in 1.78 fixed. Some of the fix was generic and there was also a specific fix for C++. +
      • +
      • + Bug fixed where a rectangular paste was not padding the line with sufficient spaces to align the pasted text. +
      • +
      • + Bug fixed with showing all text on each line of multi-line annotations when styling the whole annotation using SCI_ANNOTATIONSETSTYLE. Bug #2789430. +
      • +
      +

      + Release 1.78 +

      +
        +
      • + Released on 28 April 2009. +
      • +
      • + Annotation lines may be added to each line. +
      • +
      • + A text margin may be defined with different text on each line. +
      • +
      • + Application actions may be added to the undo history. +
      • +
      • + Can query the symbol defined for a marker. + An available symbol added for applications to indicate that plugins may allocate a marker. +
      • +
      • + Can increase the amount of font ascent and descent. +
      • +
      • + COBOL lexer added. Feature #2127406. +
      • +
      • + Nimrod lexer added. Feature #2642620. +
      • +
      • + PowerPro lexer added. Feature #2195308. +
      • +
      • + SML lexer added. Feature #2710950. +
      • +
      • + SORCUS Installation file lexer added. Feature #2343375. +
      • +
      • + TACL lexer added. Feature #2127406. +
      • +
      • + TAL lexer added. Feature #2127406. +
      • +
      • + Rewritten Pascal lexer with improved folding and other fixes. Feature #2190650. +
      • +
      • + INDIC_ROUNDBOX translucency level can be modified. Feature #2586290. +
      • +
      • + C++ lexer treats angle brackets in #include directives as quotes when styling.within.preprocessor. Bug #2551033. +
      • +
      • + Inno Setup lexer is sensitive to whether within the [Code] section and handles comments better. Bug #2552973. +
      • +
      • + HTML lexer does not go into script mode when script tag is self-closing. +
      • +
      • + HTML folder fixed where confused by comments when fold.html.preprocessor off. Bug #2532774. +
      • +
      • + Perl lexer fixes problem with string matching caused by line endings. Bug #2648342. +
      • +
      • + Progress lexer fixes problem with "last-event:function" phrase. Bug #2483619. +
      • +
      • + Properties file lexer extended to handle RFC2822 text when lexer.props.allow.initial.spaces on. +
      • +
      • + Python lexer adds options for Python 3 and Cython. +
      • +
      • + Shell lexer fixes heredoc problem caused by line endings. Bug #2635257. +
      • +
      • + TeX lexer handles comment at end of line correctly. Bug #2698766. +
      • +
      • + SciTE retains selection range when performing a replace selection command. Feature #2339160. +
      • +
      • + SciTE definition of word characters fixed to match documentation. Bug #2464531. +
      • +
      • + SciTE on GTK+ performing Search or Replace when dialog already shown now brings dialog to foreground. + Bug #2634224. +
      • +
      • + Fixed encoding bug with calltips on GTK+. +
      • +
      • + Block caret drawn in correct place on wrapped lines. Bug #2126144. +
      • +
      • + Compilation for 64 bit Windows works using MinGW. Bug #2515578. +
      • +
      • + Incorrect memory freeing fixed on OS X. + Bug #2354098, + Bug #2671749. +
      • +
      • + SciTE on GTK+ crash fixed on startup when child process exits before initialization complete. + Bug #2716987. +
      • +
      • + Crash fixed when AutoCompleteGetCurrent called with no active autocompletion. +
      • +
      • + Flickering diminished when pressing Tab. Bug #2723006. +
      • +
      • + Namespace compilation issues with GTK+ on OS X fixed. +
      • +
      • + Increased maximum length of SciTE's Language menu on GTK+ to 100 items. Bug #2528241. +
      • +
      • + Fixed incorrect Python lexing for multi-line continued strings. Bug #2450963. +
      • +
      +

      + Release 1.77 +

      +
        +
      • + Released on 18 October 2008. +
      • +
      • + Direct temporary access to Scintilla's text buffer to allow simple efficient interfacing + to libraries like regular expression libraries. +
      • +
      • + Scintilla on Windows can interpret keys as Unicode even when a narrow character + window with SCI_SETKEYSUNICODE. +
      • +
      • + Notification sent when autocompletion cancelled. +
      • +
      • + MySQL lexer added. +
      • +
      • + Lexer for gettext .po files added. +
      • +
      • + Abaqus lexer handles program structure more correctly. +
      • +
      • + Assembler lexer works with non-ASCII text. +
      • +
      • + C++ lexer allows mixed case doc comment tags. +
      • +
      • + CSS lexer updated and works with non-ASCII. +
      • +
      • + Diff lexer adds style for changed lines, handles subversion diffs better and + fixes styling and folding for lines containing chunk dividers ("---"). +
      • +
      • + FORTRAN lexer accepts more styles of compiler directive. +
      • +
      • + Haskell lexer allows hexadecimal literals. +
      • +
      • + HTML lexer improves PHP and JavaScript folding. + PHP heredocs, nowdocs, strings and comments processed more accurately. + Internet Explorer's non-standard >comment< tag supported. + Script recognition in XML can be controlled with lexer.xml.allow.scripts property. +
      • +
      • + Lua lexer styles last character correctly. +
      • +
      • + Perl lexer update. +
      • +
      • + Comment folding implemented for Ruby. +
      • +
      • + Better TeX folding. +
      • +
      • + Verilog lexer updated. +
      • +
      • + Windows Batch file lexer handles %~ and %*. +
      • +
      • + YAML lexer allows non-ASCII text. +
      • +
      • + SciTE on GTK+ implements "Replace in Buffers" in advanced mode. +
      • +
      • + The extender OnBeforeSave method can override the default file saving behaviour by retuning true. +
      • +
      • + Window position and recent files list may be saved into the session file. +
      • +
      • + Right button press outside the selection moves the caret. +
      • +
      • + SciTE load.on.activate works when closing a document reveals a changed document. +
      • +
      • + SciTE bug fixed where eol.mode not used for initial buffer. +
      • +
      • + SciTE bug fixed where a file could be saved as the same name as another + buffer leading to confusing behaviour. +
      • +
      • + Fixed display bug for long lines in same style on Windows. +
      • +
      • + Fixed SciTE crash when finding matching preprocessor command used on some files. +
      • +
      • + Drawing performance improved for files with many blank lines. +
      • +
      • + Folding bugs fixed where changing program text produced a decrease in fold level on a fold header line. +
      • +
      • + Clearing document style now clears all indicators. +
      • +
      • + SciTE's embedded Lua updated to 5.1.4. +
      • +
      • + SciTE will compile with versions of GTK+ before 2.8 again. +
      • +
      • + SciTE on GTK+ bug fixed where multiple files not opened. +
      • +
      • + Bug fixed with SCI_VCHOMEWRAP and SCI_VCHOMEWRAPEXTEND on white last line. +
      • +
      • + Regular expression bug fixed where "^[^(]+$" matched empty lines. +
      • +
      +

      + Release 1.76 +

      +
        +
      • + Released on 16 March 2008. +
      • +
      • + Support for PowerShell. +
      • +
      • + Lexer added for Magik. +
      • +
      • + Director extension working on GTK+. +
      • +
      • + Director extension may set focus to SciTE through "focus:" message on GTK+. +
      • +
      • + C++ folder handles final line better in some cases. +
      • +
      • + SCI_COPYALLOWLINE added which is similar to SCI_COPY except that if the selection is empty then + the line holding the caret is copied. On Windows an extra clipboard format allows pasting this as a whole + line before the current selection. This behaviour is compatible with Visual Studio. +
      • +
      • + On Windows, the horizontal scroll bar can handle wider files. +
      • +
      • + On Windows, a system palette leak was fixed. Should not affect many as palette mode is rarely used. +
      • +
      • + Install command on GTK+ no longer tries to set explicit owner. +
      • +
      • + Perl lexer handles defined-or operator "//". +
      • +
      • + Octave lexer fixes "!=" operator. +
      • +
      • + Optimized selection change drawing to not redraw as much when not needed. +
      • +
      • + SciTE on GTK+ no longer echoes Lua commands so is same as on Windows. +
      • +
      • + Automatic vertical scrolling limited to one line at a time so is not too fast. +
      • +
      • + Crash fixed when line states set beyond end of line states. This occurred when lexers did not + set a line state for each line. +
      • +
      • + Crash in SciTE on Windows fixed when search for 513 character string fails. +
      • +
      • + SciTE disables translucent features on Windows 9x due to crashes reported when using translucency. +
      • +
      • + Bug fixed where whitespace background was not seen on wrapped lines. +
      • +
      +

      + Release 1.75 +

      +
        +
      • + Released on 22 November 2007. +
      • +
      • + Some WordList and PropSet functionality moved from Scintilla to SciTE. + Projects that link to Scintilla's code for these classes may need to copy + code from SciTE. +
      • +
      • + Borland C++ can no longer build Scintilla. +
      • +
      • + Invalid bytes in UTF-8 mode are displayed as hex blobs. This also prevents crashes due to + passing invalid UTF-8 to platform calls. +
      • +
      • + Indentation guides enhanced to be visible on completely empty lines when possible. +
      • +
      • + The horizontal scroll bar may grow to match the widest line displayed. +
      • +
      • + Allow autocomplete pop ups to appear outside client rectangle in some cases. +
      • +
      • + When line state changed, SC_MOD_CHANGELINESTATE modification notification sent and + margin redrawn. +
      • +
      • + SciTE scripts can access the menu command values IDM_*. +
      • +
      • + SciTE's statement.end property has been implemented again. +
      • +
      • + SciTE shows paths and matches in different styles for Find In Files. +
      • +
      • + Incremental search in SciTE for Windows is modeless to make it easier to exit. +
      • +
      • + Folding performance improved. +
      • +
      • + SciTE for GTK+ now includes a Browse button in the Find In Files dialog. +
      • +
      • + On Windows versions that support Unicode well, Scintilla is a wide character window + which allows input for some less common languages like Armenian, Devanagari, + Tamil, and Georgian. To fully benefit, applications should use wide character calls. +
      • +
      • + Lua function names are exported from SciTE to allow some extension libraries to work. +
      • +
      • + Lexers added for Abaqus, Ansys APDL, Asymptote, and R. +
      • +
      • + SCI_DELWORDRIGHTEND added for closer compatibility with GTK+ entry widget. +
      • +
      • + The styling buffer may now use all 8 bits in each byte for lexical states with 0 bits for indicators. +
      • +
      • + Multiple characters may be set for SciTE's calltip.<lexer>.parameters.start property. +
      • +
      • + Bash lexer handles octal literals. +
      • +
      • + C++/JavaScript lexer recognizes regex literals in more situations. +
      • +
      • + Haskell lexer fixed for quoted strings. +
      • +
      • + HTML/XML lexer does not notice XML indicator if there is + non-whitespace between the "<?" and "XML". + ASP problem fixed where </ is used inside a comment. +
      • +
      • + Error messages from Lua 5.1 are recognized. +
      • +
      • + Folding implemented for Metapost. +
      • +
      • + Perl lexer enhanced for handling minus-prefixed barewords, + underscores in numeric literals and vector/version strings, + ^D and ^Z similar to __END__, + subroutine prototypes as a new lexical class, + formats and format blocks as new lexical classes, and + '/' suffixed keywords and barewords. +
      • +
      • + Python lexer styles all of a decorator in the decorator style rather than just the name. +
      • +
      • + YAML lexer styles colons as operators. +
      • +
      • + Fixed SciTE bug where undo would group together multiple separate modifications. +
      • +
      • + Bug fixed where setting background colour of calltip failed. +
      • +
      • + SciTE allows wildcard suffixes for file pattern based properties. +
      • +
      • + SciTE on GTK+ bug fixed where user not prompted to save untitled buffer. +
      • +
      • + SciTE bug fixed where property values from one file were not seen by lower priority files. +
      • +
      • + Bug fixed when showing selection with a foreground colour change which highlighted + an incorrect range in some positions. +
      • +
      • + Cut now invokes SCN_MODIFYATTEMPTRO notification. +
      • +
      • + Bug fixed where caret not shown at beginning of wrapped lines. + Caret made visible in some cases after wrapping and scroll bar updated after wrapping. +
      • +
      • + Modern indicators now work on wrapped lines. +
      • +
      • + Some crashes fixed for 64-bit GTK+. +
      • +
      • + On GTK+ clipboard features improved for VMWare tools copy and paste. + SciTE exports the clipboard more consistently on shut down. +
      • +
      +

      + Release 1.74 +

      +
        +
      • + Released on 18 June 2007. +
      • +
      • + OS X support. +
      • +
      • + Indicators changed to be a separate data structure allowing more indicators. Storing indicators in high bits + of styling bytes is deprecated and will be removed in the next version. +
      • +
      • + Unicode support extended to all Unicode characters not just the Basic Multilingual Plane. +
      • +
      • + Performance improved on wide lines by breaking long runs in a single style into shorter segments. +
      • +
      • + Performance improved by caching layout of short text segments. +
      • +
      • + SciTE includes Lua 5.1. +
      • +
      • + Caret may be displayed as a block. +
      • +
      • + Lexer added for GAP. +
      • +
      • + Lexer added for PL/M. +
      • +
      • + Lexer added for Progress. +
      • +
      • + SciTE session files have changed format to be like other SciTE .properties files + and now use the extension .session. + Bookmarks and folds may optionally be saved in session files. + Session files created with previous versions of SciTE will not load into this version. +
      • +
      • + SciTE's extension and scripting interfaces add OnKey, OnDwellStart, and OnClose methods. +
      • +
      • + On GTK+, copying to the clipboard does not include the text/urilist type since this caused problems when + pasting into Open Office. +
      • +
      • + On GTK+, Scintilla defaults caret blink rate to platform preference. +
      • +
      • + Dragging does not start until the mouse has been dragged a certain amount. + This stops spurious drags when just clicking inside the selection. +
      • +
      • + Bug fixed where brace highlight not shown when caret line background set. +
      • +
      • + Bug fixed in Ruby lexer where out of bounds access could occur. +
      • +
      • + Bug fixed in XML folding where tags were not being folded because they are singletons in HTML. +
      • +
      • + Bug fixed when many font names used. +
      • +
      • + Layout bug fixed on GTK+ where fonts have ligatures available. +
      • +
      • + Bug fixed with SCI_LINETRANSPOSE on a blank line. +
      • +
      • + SciTE hang fixed when using UNC path with directory properties feature. +
      • +
      • + Bug on Windows fixed by examining dropped text for Unicode even in non-Unicode mode so it + can work when source only provides Unicode or when using an encoding different from the + system default. +
      • +
      • + SciTE bug on GTK+ fixed where Stop Executing did not work when more than a single process started. +
      • +
      • + SciTE bug on GTK+ fixed where mouse wheel was not switching between buffers. +
      • +
      • + Minor line end fix to PostScript lexer. +
      • +
      +

      + Release 1.73 +

      +
        +
      • + Released on 31 March 2007. +
      • +
      • + SciTE adds a Directory properties file to configure behaviour for files in a directory and its subdirectories. +
      • +
      • + Style changes may be made during text modification events. +
      • +
      • + Regular expressions recognize \d, \D, \s, \S, \w, \W, and \xHH. +
      • +
      • + Support for cmake language added. +
      • +
      • + More Scintilla properties can be queried. +
      • +
      • + Edge line drawn under text. +
      • +
      • + A savesession command added to SciTE director interface. +
      • +
      • + SciTE File | Encoding menu item names changed to be less confusing. +
      • +
      • + SciTE on GTK+ dialog buttons reordered to follow guidelines. +
      • +
      • + SciTE on GTK+ removed GTK+ 1.x compatible file dialog code. +
      • +
      • + SciTE on GTK+ recognizes key names KeypadMultiply and KeypadDivide. +
      • +
      • + Background colour of line wrapping visual flag changed to STYLE_DEFAULT. +
      • +
      • + Makefile lexing enhanced for ':=' operator and when lines start with tab. +
      • +
      • + TADS3 lexer and folder improved. +
      • +
      • + SCN_DOUBLECLICK notification may set SCI_SHIFT, SCI_CTRL, and SCI_ALT flags on modifiers field. +
      • +
      • + Slow folding of large constructs in Python fixed. +
      • +
      • + MSSQL folding fixed to be case-insensitive and fold at more keywords. +
      • +
      • + SciTE's brace matching works better for HTML. +
      • +
      • + Determining API list items checks for specified parameters start character before default '('. +
      • +
      • + Hang fixed in HTML lexer. +
      • +
      • + Bug fixed in with LineTranspose command where markers could move to different line. +
      • +
      • + Memory released when buffer completely emptied. +
      • +
      • + If translucency not available on Windows, draw rectangular outline instead. +
      • +
      • + Bash lexer handles "-x" in "--x-includes..." better. +
      • +
      • + AutoIt3 lexer fixes string followed by '+'. +
      • +
      • + LinesJoin fixed where it stopped early due to not adjusting for inserted spaces.. +
      • +
      • + StutteredPageDown fixed when lines wrapped. +
      • +
      • + FormatRange fixed to not double count line number width which could lead to a large space. +
      • +
      • + SciTE Export As PDF and Latex commands fixed to format floating point numbers with '.' even in locales + that use ','. +
      • +
      • + SciTE bug fixed where File | New could produce buffer with contents of previous file when using read-only mode. +
      • +
      • + SciTE retains current scroll position when switching buffers and fold.on.open set. +
      • +
      • + SciTE crash fixed where '*' used to invoke parameters dialog. +
      • +
      • + SciTE bugs when writing large UCS-2 files fixed. +
      • +
      • + Bug fixed when scrolling inside a SCN_PAINTED event by invalidating window + rather than trying to perform synchronous painting. +
      • +
      • + SciTE for GTK+ View | Full Screen works on recent versions of GTK+. +
      • +
      • + SciTE for Windows enables and disables toolbar commands correctly. +
      • +
      +

      + Release 1.72 +

      +
        +
      • + Released on 15 January 2007. +
      • +
      • + Performance of per-line data improved. +
      • +
      • + SC_STARTACTION flag set on the first modification notification in an undo + transaction to help synchronize the container's undo stack with Scintilla's. +
      • +
      • + On GTK+ drag and drop defaults to move rather than copy. +
      • +
      • + Scintilla supports extending appearance of selection to right hand margin. +
      • +
      • + Incremental search available on GTK+. +
      • +
      • + SciTE Indentation Settings dialog available on GTK+ and adds a "Convert" button. +
      • +
      • + Find in Files can optionally ignore binary files or directories that start with ".". +
      • +
      • + Lexer added for "D" language. +
      • +
      • + Export as HTML shows folding with underline lines and +/- symbols. +
      • +
      • + Ruby lexer interprets interpolated strings as expressions. +
      • +
      • + Lua lexer fixes some cases of numeric literals. +
      • +
      • + C++ folder fixes bug with "@" in doc comments. +
      • +
      • + NSIS folder handles !if and related commands. +
      • +
      • + Inno setup lexer adds styling for single and double quoted strings. +
      • +
      • + Matlab lexer handles backslashes in string literals correctly. +
      • +
      • + HTML lexer fixed to allow "?>" in comments in Basic script. +
      • +
      • + Added key codes for Windows key and Menu key. +
      • +
      • + Lua script method scite.MenuCommand(x) performs a menu command. +
      • +
      • + SciTE bug fixed with box comment command near start of file setting selection to end of file. +
      • +
      • + SciTE on GTK+, fixed loop that occurred with automatic loading for an unreadable file. +
      • +
      • + SciTE asks whether to save files when Windows shuts down. +
      • +
      • + Save Session on Windows now defaults the extension to "ses". +
      • +
      • + Bug fixed with single character keywords. +
      • +
      • + Fixed infinite loop for SCI_GETCOLUMN for position beyond end of document. +
      • +
      • + Fixed failure to accept typing on Solaris/GTK+ when using default ISO-8859-1 encoding. +
      • +
      • + Fixed warning from Lua in SciTE when creating a new buffer when already have + maximum number of buffers open. +
      • +
      • + Crash fixed with "%%" at end of batch file. +
      • +
      +

      + Release 1.71 +

      +
        +
      • + Released on 21 August 2006. +
      • + +
      • + Double click notification includes line and position. +
      • +
      • + VB lexer bugs fixed for preprocessor directive below a comment or some other states and + to use string not closed style back to the starting quote when there are internal doubled quotes. +
      • +
      • + C++ lexer allows identifiers to contain '$' and non-ASCII characters such as UTF-8. + The '$' character can be disallowed with lexer.cpp.allow.dollars=0. +
      • +
      • + Perl lexer allows UTF-8 identifiers and has some other small improvements. +
      • +
      • + SciTE's $(CurrentWord) uses word.characters.<filepattern> to define the word + rather than a hardcoded list of word characters. +
      • +
      • + SciTE Export as HTML adds encoding information for UTF-8 file and fixes DOCTYPE. +
      • +
      • + SciTE session and .recent files default to the user properties directory rather than global + properties directory. +
      • +
      • + Left and right scroll events handled correctly on GTK+ and horizontal scroll bar has more sensible + distances for page and arrow clicks. +
      • +
      • + SciTE on GTK+ tab bar fixed to work on recent versions of GTK+. +
      • +
      • + On GTK+, if the approximate character set conversion is unavailable, a second attempt is made + without approximations. This may allow keyboard input and paste to work on older systems. +
      • +
      • + SciTE on GTK+ can redefine the Insert key. +
      • +
      • + SciTE scripting interface bug fixed where some string properties could not be changed. +
      • +
      +

      + Release 1.70 +

      +
        +
      • + Released on 20 June 2006. +
      • +
      • + On GTK+, character set conversion is performed using an option that allows approximate conversions rather + than failures when a character can not be converted. This may lead to similar characters being inserted or + when no similar character is available a '?' may be inserted. +
      • +
      • + On GTK+, the internationalized IM (Input Method) feature is used for all typed input for all character sets. +
      • +
      • + Scintilla has new margin types SC_MARGIN_BACK and SC_MARGIN_FORE that use the default + style's background and foreground colours (normally white and black) as the background to the margin. +
      • +
      • + Scintilla/GTK+ allows file drops on Windows when drop is of type DROPFILES_DND + as well as text/uri-list. +
      • +
      • + Code page can only be set to one of the listed valid values. +
      • +
      • + Text wrapping fixed for cases where insertion was not wide enough to trigger + wrapping before being styled but was after styling. +
      • +
      • + SciTE find marks are removed before printing or exporting to avoid producing incorrect styles. +
      • +
      +

      + Release 1.69 +

      +
        +
      • + Released on 29 May 2006. +
      • +
      • + SciTE supports z-order based buffer switching on Ctrl+Tab. +
      • +
      • + Translucent support for selection and whole line markers. +
      • +
      • + SciTE may have per-language abbreviations files. +
      • +
      • + Support for Spice language. +
      • +
      • + On GTK+ autocompletion lists are optimized and use correct selection colours. +
      • +
      • + On GTK+ the URI data type is preferred in drag and drop so that applications + will see files dragged from the shell rather than dragging the text of the file name + into the document. +
      • +
      • + Increased number of margins to 5. +
      • +
      • + Basic lexer allows include directive $include: "file name". +
      • +
      • + SQL lexer no longer bases folding on indentation. +
      • +
      • + Line ends are transformed when copied to clipboard on + Windows/GTK+2 as well as Windows/GTK+ 1. +
      • +
      • + Lexing code masks off the indicator bits on the start style before calling the lexer + to avoid confusing the lexer when an application has used an indicator. +
      • +
      • + SciTE savebefore:yes only saves the file when it has been changed. +
      • +
      • + SciTE adds output.initial.hide setting to allow setting the size of the output pane + without it showing initially. +
      • +
      • + SciTE on Windows Go To dialog allows line number with more digits. +
      • +
      • + Bug in HTML lexer fixed where a segment of PHP could switch scripting language + based on earlier text on that line. +
      • +
      • + Memory bug fixed when freeing regions on GTK+. + Other minor bugs fixed on GTK+. +
      • +
      • + Deprecated GTK+ calls in Scintilla replaced with current calls. +
      • +
      • + Fixed a SciTE bug where closing the final buffer, if read-only, left the text present in an + untitled buffer. +
      • +
      • + Bug fixed in bash lexer that prevented folding. +
      • +
      • + Crash fixed in bash lexer when backslash at end of file. +
      • +
      • + Crash on recent releases of GTK+ 2.x avoided by changing default font from X + core font to Pango font "!Sans". +
      • +
      • + Fix for SciTE properties files where multiline properties continued over completely blank lines. +
      • +
      • + Bug fixed in SciTE/GTK+ director interface where more data available than + buffer size. +
      • +
      • + Minor visual fixes to SciTE splitter on GTK+. +
      • +
      +

      + Release 1.68 +

      +
        +
      • + Released on 9 March 2006. +
      • +
      • + Translucent drawing implemented for caret line and box indicators. +
      • +
      • + Lexer specifically for TCL is much more accurate than reusing C++ lexer. +
      • +
      • + Support for Inno Setup scripts. +
      • +
      • + Support for Opal language. +
      • +
      • + Calltips may use a new style, STYLE_CALLTIP which allows choosing a + different font for calltips. +
      • +
      • + Python lexer styles comments on decorators. +
      • +
      • + HTML lexer refined handling of "?>" and "%>" within server + side scripts. +
      • +
      • + Batch file lexer improved. +
      • +
      • + Eiffel lexer doesn't treat '.' as a name character. +
      • +
      • + Lua lexer handles length operator, #, and hex literals. +
      • +
      • + Properties file lexer has separate style for keys. +
      • +
      • + PL/SQL folding improved. +
      • +
      • + SciTE Replace dialog always searches in forwards direction. +
      • +
      • + SciTE can detect language of file from initial #! line. +
      • +
      • + SciTE on GTK+ supports output.scroll=2 setting. +
      • +
      • + SciTE can perform an import a properties file from the command line. +
      • +
      • + Set of word characters used for regular expression \< and \>. +
      • +
      • + Bug fixed with SCI_COPYTEXT stopping too early. +
      • +
      • + Bug fixed with splitting lines so that all lines are split. +
      • +
      • + SciTE calls OnSwitchFile when closing one buffer causes a switch to another. +
      • +
      • + SciTE bug fixed where properties were being reevaluated without good reason + after running a macro. +
      • +
      • + Crash fixed when clearing document with some lines contracted in word wrap mode. +
      • +
      • + Palette expands as more entries are needed. +
      • +
      • + SCI_POSITIONFROMPOINT returns more reasonable value when close to + last text on a line. +
      • +
      • + On Windows, long pieces of text may be drawn in segments if they fail to draw + as a whole. +
      • +
      • + Bug fixed with bad drawing when some visual changes made inside SCN_UPDATEUI + notification. +
      • +
      • + SciTE bug fixed with groupundo setting. +
      • +
      +

      + Release 1.67 +

      +
        +
      • + Released on 17 December 2005. +
      • +
      • + Scintilla checks the paint region more accurately when seeing if an area is being + repainted. Platform layer implementations may need to change for this to take + effect. This fixes some drawing and styling bugs. Also optimized some parts of + marker code to only redraw the line of the marker rather than whole of the margin. +
      • +
      • + Quoted identifier style for SQL. SQL folding performed more simply. +
      • +
      • + Ruby lexer improved to better handle here documents and non-ASCII + characters. +
      • +
      • + Lua lexer supports long string and block comment syntax from Lua 5.1. +
      • +
      • + Bash lexer handles here documents better. +
      • +
      • + JavaScript lexing recognizes regular expressions more accurately and includes flag + characters in the regular expression style. This is both in JavaScript files and when + JavaScript is embedded in HTML. +
      • +
      • + Scintilla API provided to reveal how many style bits are needed for the + current lexer. +
      • +
      • + Selection duplicate added. +
      • +
      • + Scintilla API for adding a set of markers to a line. +
      • +
      • + DBCS encodings work on Windows 9x. +
      • +
      • + Convention defined for property names to be used by lexers and folders + so they can be automatically discovered and forwarded from containers. +
      • +
      • + Default bookmark in SciTE changed to a blue sphere image. +
      • +
      • + SciTE stores the time of last asking for a save separately for each buffer + which fixes bugs with automatic reloading. +
      • +
      • + On Windows, pasted text has line ends converted to current preference. + GTK+ already did this. +
      • +
      • + Kid template language better handled by HTML lexer by finishing ASP Python + mode when a ?> is found. +
      • +
      • + SciTE counts number of characters in a rectangular selection correctly. +
      • +
      • + 64-bit compatibility improved. One change that may affect user code is that + the notification message header changed to include a pointer-sized id field + to match the current Windows definition. +
      • +
      • + Empty ranges can no longer be dragged. +
      • +
      • + Crash fixed when calls made that use layout inside the painted notification. +
      • +
      • + Bug fixed where Scintilla created pixmap buffers that were too large leading + to failures when many instances used. +
      • +
      • + SciTE sets the directory of a new file to the directory of the currently + active file. +
      • +
      • + SciTE allows choosing a code page for the output pane. +
      • +
      • + SciTE HTML exporter no longer honours monospaced font setting. +
      • +
      • + Line layout cache in page mode caches the line of the caret. An assertion is + now used to ensure that the layout reentrancy problem that caused this + is easier to find. +
      • +
      • + Speed optimized for long lines and lines containing many control characters. +
      • +
      • + Bug fixed in brace matching in DBCS files where byte inside character + is same as brace. +
      • +
      • + Indent command does not indent empty lines. +
      • +
      • + SciTE bug fixed for commands that operate on files with empty extensions. +
      • +
      • + SciTE bug fixed where monospaced option was copied for subsequently opened files. +
      • +
      • + SciTE on Windows bug fixed in the display of a non-ASCII search string + which can not be found. +
      • +
      • + Bugs fixed with nested calls displaying a new calltip while one is already + displayed. +
      • +
      • + Bug fixed when styling PHP strings. +
      • +
      • + Bug fixed when styling C++ continued preprocessor lines. +
      • +
      • + SciTE bug fixed where opening file from recently used list reset choice of + language. +
      • +
      • + SciTE bug fixed when compiled with NO_EXTENSIONS and + closing one file closes the application. +
      • +
      • + SciTE crash fixed for error messages that look like Lua messages but aren't + in the same order. +
      • +
      • + Remaining fold box support deprecated. The symbols SC_FOLDLEVELBOXHEADERFLAG, + SC_FOLDLEVELBOXFOOTERFLAG, SC_FOLDLEVELCONTRACTED, + SC_FOLDLEVELUNINDENT, and SC_FOLDFLAG_BOX are deprecated. +
      • +
      +

      + Release 1.66 +

      +
        +
      • + Released on 26 August 2005. +
      • +
      • + New, more ambitious Ruby lexer. +
      • +
      • + SciTE Find in Files dialog has options for matching case and whole words which are + enabled when the internal find command is used. +
      • +
      • + SciTE output pane can display automatic completion after "$(" typed. + An initial ">" on a line is ignored when Enter pressed. +
      • +
      • + C++ lexer recognizes keywords within line doc comments. It continues styles over line + end characters more consistently so that eolfilled style can be used for preprocessor lines + and line comments. +
      • +
      • + VB lexer improves handling of file numbers and date literals. +
      • +
      • + Lua folder handles repeat until, nested comments and nested strings. +
      • +
      • + POV lexer improves handling of comment lines. +
      • +
      • + AU3 lexer and folder updated. COMOBJ style added. +
      • +
      • + Bug fixed with text display on GTK+ with Pango 1.8. +
      • +
      • + Caret painting avoided when not focused. +
      • +
      • + SciTE on GTK+ handles file names used to reference properties as case-sensitive. +
      • +
      • + SciTE on GTK+ Save As and Export commands set the file name field. + On GTK+ the Export commands modify the file name in the same way as on Windows. +
      • +
      • + Fixed SciTE problem where confirmation was not displaying when closing a file where all + contents had been deleted. +
      • +
      • + Middle click on SciTE tab now closes correct buffer on Windows when tool bar is visible. +
      • +
      • + SciTE bugs fixed where files contained in directory that includes '.' character. +
      • +
      • + SciTE bug fixed where import in user options was reading file from directory of + global options. +
      • +
      • + SciTE calltip bug fixed where single line calltips had arrow displayed incorrectly. +
      • +
      • + SciTE folding bug fixed where empty lines were shown for no reason. +
      • +
      • + Bug fixed where 2 byte per pixel XPM images caused crash although they are still not + displayed. +
      • +
      • + Autocompletion list size tweaked. +
      • +
      +

      + Release 1.65 +

      +
        +
      • + Released on 1 August 2005. +
      • +
      • + FreeBasic support. +
      • +
      • + SciTE on Windows handles command line arguments + "-" (read standard input into buffer), + "--" (read standard input into output pane) and + "-@" (read file names from standard input and open each). +
      • +
      • + SciTE includes a simple implementation of Find in Files which is used if no find.command is set. +
      • +
      • + SciTE can close tabs with a mouse middle click. +
      • +
      • + SciTE includes a save.all.for.build setting. +
      • +
      • + Folder for MSSQL. +
      • +
      • + Batch file lexer understands more of the syntax and the behaviour of built in commands. +
      • +
      • + Perl lexer handles here docs better; disambiguates barewords, quote-like delimiters, and repetition operators; + handles Pods after __END__; recognizes numbers better; and handles some typeglob special variables. +
      • +
      • + Lisp adds more lexical states. +
      • +
      • + PHP allows spaces after <<<. +
      • +
      • + TADS3 has a simpler set of states and recognizes identifiers. +
      • +
      • + Avenue elseif folds better. +
      • +
      • + Errorlist lexer treats lines starting with '+++' and '---' as separate + styles from '+' and '-' as they indicate file names in diffs. +
      • +
      • + SciTE error recognizer handles file paths in extra explanatory lines from MSVC + and in '+++' and '---' lines from diff. +
      • +
      • + Bugs fixed in SciTE and Scintilla folding behaviour when text pasted before + folded text caused unnecessary + unfolding and cutting text could lead to text being irretrievably hidden. +
      • +
      • + SciTE on Windows uses correct font for dialogs and better font for tab bar + allowing better localization +
      • +
      • + When Windows is used with a secondary monitor before the primary + monitor, autocompletion lists are not forced onto the primary monitor. +
      • +
      • + Scintilla calltip bug fixed where down arrow setting wrong value in notification + if not in first line. SciTE bug fixed where second arrow only shown on multiple line + calltip and was therefore misinterpreting the notification value. +
      • +
      • + Lexers will no longer be re-entered recursively during, for example, fold level setting. +
      • +
      • + Undo of typing in overwrite mode undoes one character at a time rather than requiring a removal + and addition step for each character. +
      • +
      • + EM_EXSETSEL(0,-1) fixed. +
      • +
      • + Bug fixed where part of a rectangular selection was not shown as selected. +
      • +
      • + Autocomplete window size fixed. +
      • +
      +

      + Release 1.64 +

      +
        +
      • + Released on 6 June 2005. +
      • +
      • + TADS3 support +
      • +
      • + Smalltalk support. +
      • +
      • + Rebol support. +
      • +
      • + Flagship (Clipper / XBase) support. +
      • +
      • + CSound support. +
      • +
      • + SQL enhanced to support SQL*Plus. +
      • +
      • + SC_MARK_FULLRECT margin marker fills the whole marker margin for marked + lines with a colour. +
      • +
      • + Performance improved for some large undo and redo operations and modification flags + added in notifications. +
      • +
      • + SciTE adds command equivalents for fold margin mouse actions. +
      • +
      • + SciTE adds OnUpdateUI to set of events that can be handled by a Lua script. +
      • +
      • + Properties set in Scintilla can be read. +
      • +
      • + GTK+ SciTE exit confirmation adds Cancel button. +
      • +
      • + More accurate lexing of numbers in PHP and Caml. +
      • +
      • + Perl can fold POD and package sections. POD verbatim section style. + Globbing syntax recognized better. +
      • +
      • + Context menu moved slightly on GTK+ so that it will be under the mouse and will + stay open if just clicked rather than held. +
      • +
      • + Rectangular selection paste works the same whichever direction the selection was dragged in. +
      • +
      • + EncodedFromUTF8 handles -1 length argument as documented. +
      • +
      • + Undo and redo can cause SCN_MODIFYATTEMPTRO notifications. +
      • +
      • + Indicators display correctly when they start at the second character on a line. +
      • +
      • + SciTE Export As HTML uses standards compliant CSS. +
      • +
      • + SciTE automatic indentation handles keywords for indentation better. +
      • +
      • + SciTE fold.comment.python property removed as does not work. +
      • +
      • + Fixed problem with character set conversion when pasting on GTK+. +
      • +
      • + SciTE default character set changed from ANSI_CHARSET to DEFAULT_CHARSET. +
      • +
      • + Fixed crash when creating empty autocompletion list. +
      • +
      • + Autocomplete window size made larger under some conditions to make truncation less common. +
      • +
      • + Bug fixed where changing case of a selection did not affect initial character of lines + in multi-byte encodings. +
      • +
      • + Bug fixed where rectangular selection not displayed after Alt+Shift+Click. +
      • +
      +

      + Release 1.63 +

      +
        +
      • + Released on 4 April 2005. +
      • +
      • + Autocompletion on Windows changed to use pop up window, be faster, + allow choice of maximum width and height, and to highlight only the text of the + selected item rather than both the text and icon if any. +
      • +
      • + Extra items can be added to the context menu in SciTE. +
      • +
      • + Character wrap mode in Scintilla helps East Asian languages. +
      • +
      • + Lexer added for Haskell. +
      • +
      • + Objective Caml support. +
      • +
      • + BlitzBasic and PureBasic support. +
      • +
      • + CSS support updated to handle CSS2. +
      • +
      • + C++ lexer is more selective about document comment keywords. +
      • +
      • + AutoIt 3 lexer improved. +
      • +
      • + Lua lexer styles end of line characters on comment and preprocessor + lines so that the eolfilled style can be applied to them. +
      • +
      • + NSIS support updated for line continuations, box comments, SectionGroup and + PageEx, and with more up-to-date properties. +
      • +
      • + Clarion lexer updated to perform folding and have more styles. +
      • +
      • + SQL lexer gains second set of keywords. +
      • +
      • + Errorlist lexer recognizes Borland Delphi error messages. +
      • +
      • + Method added for determining number of visual lines occupied by a document + line due to wrapping. +
      • +
      • + Sticky caret mode does not modify the preferred caret x position when typing + and may be useful for typing columns of text. +
      • +
      • + Dwell end notification sent when scroll occurs. +
      • +
      • + On GTK+, Scintilla requisition height is screen height rather than large fixed value. +
      • +
      • + Case insensitive autocompletion prefers exact case match. +
      • +
      • + SCI_PARADOWN and SCI_PARAUP treat lines containing only white + space as empty and handle text hidden by folding. +
      • +
      • + Scintilla on Windows supports WM_PRINTCLIENT although there are some + limitations. +
      • +
      • + SCN_AUTOCSELECTION notification sent when user selects from autoselection list. +
      • +
      • + SciTE's standard properties file sets buffers to 10, uses Pango fonts on GTK+ and + has dropped several languages to make the menu fit on screen. +
      • +
      • + SciTE's encoding cookie detection loosened so that common XML files will load + in UTF-8 if that is their declared encoding. +
      • +
      • + SciTE on GTK+ changes menus and toolbars to not be detachable unless turned + on with a property. Menus no longer tear off. The toolbar may be set to use the + default theme icons rather than SciTE's set. Changed key for View | End of Line + because of a conflict. Language menu can contain more items. +
      • +
      • + SciTE on GTK+ 2.x allows the height and width of the file open file chooser to + be set, for the show hidden files check box to be set from an option and for it + to be opened in the directory of the current file explicitly. Enter key works in + save chooser. +
      • +
      • + Scintilla lexers should no longer see bits in style bytes that are outside the set + they modify so should be able to correctly lex documents where the container + has used indicators. +
      • +
      • + SciTE no longer asks to save before performing a revert. +
      • +
      • + SciTE director interface adds a reloadproperties command to reload properties + from files. +
      • +
      • + Allow build on CYGWIN platform. +
      • +
      • + Allow use from LccWin compiler. +
      • +
      • + SCI_COLOURISE for SCLEX_CONTAINER causes a + SCN_STYLENEEDED notification. +
      • +
      • + Bugs fixed in lexing of HTML/ASP/JScript. +
      • +
      • + Fix for folding becoming confused. +
      • +
      • + On Windows, fixes for Japanese Input Method Editor and for 8 bit Katakana + characters. +
      • +
      • + Fixed buffer size bug avoided when typing long words by making buffer bigger. +
      • +
      • + Undo after automatic indentation more sensible. +
      • +
      • + SciTE menus on GTK+ uses Shift and Ctrl rather than old style abbreviations. +
      • +
      • + SciTE full screen mode on Windows calculates size more correctly. +
      • +
      • + SciTE on Windows menus work better with skinning applications. +
      • +
      • + Searching bugs fixed. +
      • +
      • + Colours reallocated when changing image using SCI_REGISTERIMAGE. +
      • +
      • + Caret stays visible when Enter held down. +
      • +
      • + Undo of automatic indentation more reasonable. +
      • +
      • + High processor usage fixed in background wrapping under some + circumstances. +
      • +
      • + Crashing bug fixed on AMD64. +
      • +
      • + SciTE crashing bug fixed when position.height or position.width not set. +
      • +
      • + Crashing bug on GTK+ fixed when setting cursor and window is NULL. +
      • +
      • + Crashing bug on GTK+ preedit window fixed. +
      • +
      • + SciTE crashing bug fixed in incremental search on Windows ME. +
      • +
      • + SciTE on Windows has a optional find and replace dialogs that can search through + all buffers and search within a particular style number. +
      • +
      +

      + Release 1.62 +

      +
        +
      • + Released on 31 October 2004. +
      • +
      • + Lexer added for ASN.1. +
      • +
      • + Lexer added for VHDL. +
      • +
      • + On Windows, an invisible system caret is used to allow screen readers to determine + where the caret is. The visible caret is still drawn by the painting code. +
      • +
      • + On GTK+, Scintilla has methods to read the target as UTF-8 and to convert + a string from UTF-8 to the document encoding. This eases integration with + containers that use the UTF-8 encoding which is the API encoding for GTK+ 2. +
      • +
      • + SciTE on GTK+2 and Windows NT/2000/XP allows search and replace of Unicode text. +
      • +
      • + SciTE calltips allow setting the characters used to start and end parameter lists and + to separate parameters. +
      • +
      • + FindColumn method converts a line and column into a position, taking into account + tabs and multi-byte characters. +
      • +
      • + On Windows, when Scintilla copies text to the clipboard as Unicode, it avoids + adding an ANSI copy as the system will automatically convert as required in + a context-sensitive manner. +
      • +
      • + SciTE indent.auto setting automatically determines indent.size and use.tabs from + document contents. +
      • +
      • + SciTE defines a CurrentMessage property that holds the most recently selected + output pane message. +
      • +
      • + SciTE Lua scripting enhanced with +
          +
        • A Lua table called 'buffer' is associated with each buffer and can be used to + maintain buffer-specific state.
        • +
        • A 'scite' object allows interaction with the application such as opening + files from script.
        • +
        • Dynamic properties can be reset by assigning nil to a given key in + the props table.
        • +
        • An 'OnClear' event fires whenever properties and extension scripts are + about to be reloaded.
        • +
        • On Windows, loadlib is enabled and can be used to access Lua + binary modules / DLLs.
        +
      • +
      • + SciTE Find in Files on Windows can be used in a modeless way and gains a '..' + button to move up to the parent directory. It is also wider so that longer paths + can be seen. +
      • +
      • + Close buttons added to dialogs in SciTE on Windows. +
      • +
      • + SciTE on GTK+ 2 has a "hidden files" check box in file open dialog. +
      • +
      • + SciTE use.monospaced setting removed. More information in the + FAQ. +
      • +
      • + APDL lexer updated with more lexical classes +
      • +
      • + AutoIt3 lexer updated. +
      • +
      • + Ada lexer fixed to support non-ASCII text. +
      • +
      • + Cpp lexer now only matches exactly three slashes as starting a doc-comment so that + lines of slashes are seen as a normal comment. + Line ending characters are appear in default style on preprocessor and single line + comment lines. +
      • +
      • + CSS lexer updated to support CSS2 including second set of keywords. +
      • +
      • + Errorlist lexer now understands Java stack trace lines. +
      • +
      • + SciTE's handling of HTML Tidy messages jumps to column as well as line indicated. +
      • +
      • + Lisp lexer allows multiline strings. +
      • +
      • + Lua lexer treats .. as an operator when between identifiers. +
      • +
      • + PHP lexer handles 'e' in numerical literals. +
      • +
      • + PowerBasic lexer updated for macros and optimized. +
      • +
      • + Properties file folder changed to leave lines before a header at the base level + and thus avoid a vertical line when using connected folding symbols. +
      • +
      • + GTK+ on Windows version uses Alt for rectangular selection to be compatible with + platform convention. +
      • +
      • + SciTE abbreviations file moved from system directory to user directory + so each user can have separate abbreviations. +
      • +
      • + SciTE on GTK+ has improved .desktop file and make install support that may + lead to better integration with system shell. +
      • +
      • + Disabling of themed background drawing on GTK+ extended to all cases. +
      • +
      • + SciTE date formatting on Windows performed with the user setting rather than the + system setting. +
      • +
      • + GTK+ 2 redraw while scrolling fixed. +
      • +
      • + Recursive property definitions are safer, avoiding expansion when detected. +
      • +
      • + SciTE thread synchronization for scripts no longer uses HWND_MESSAGE + so is compatible with older versions of Windows. + Other Lua scripting bugs fixed. +
      • +
      • + SciTE on Windows localization of menu accelerators changed to be compatible + with alternative UI themes. +
      • +
      • + SciTE on Windows full screen mode now fits better when menu different height + to title bar height. +
      • +
      • + SC_MARK_EMPTY marker is now invisible and does not change the background + colour. +
      • +
      • + Bug fixed in HTML lexer to allow use of <?xml in strings in scripts without + triggering xml mode. +
      • +
      • + Bug fixed in SciTE abbreviation expansion that could break indentation or crash. +
      • +
      • + Bug fixed when searching for a whole word string that ends one character before + end of document. +
      • +
      • + Drawing bug fixed when indicators drawn on wrapped lines. +
      • +
      • + Bug fixed when double clicking a hotspot. +
      • +
      • + Bug fixed where autocompletion would remove typed text if no match found. +
      • +
      • + Bug fixed where display does not scroll when inserting in long wrapped line. +
      • +
      • + Bug fixed where SCI_MARKERDELETEALL would only remove one of the markers + on a line that contained multiple markers with the same number. +
      • +
      • + Bug fixed where markers would move when converting line endings. +
      • +
      • + Bug fixed where SCI_LINEENDWRAP would move too far when line ends are visible. +
      • +
      • + Bugs fixed where calltips with unicode or other non-ASCII text would display + incorrectly. +
      • +
      • + Bug fixed in determining if at save point after undoing from save point and then + performing changes. +
      • +
      • + Bug fixed on GTK+ using unsupported code pages where extraneous text could + be drawn. +
      • +
      • + Bug fixed in drag and drop code on Windows where dragging from SciTE to + Firefox could hang both applications. +
      • +
      • + Crashing bug fixed on GTK+ when no font allocation succeeds. +
      • +
      • + Crashing bug fixed when autocompleting word longer than 1000 characters. +
      • +
      • + SciTE crashing bug fixed when both Find and Replace dialogs shown by disallowing + this situation. +
      • +
      +

      + Release 1.61 +

      +
        +
      • + Released on 29 May 2004. +
      • +
      • + Improvements to selection handling on GTK+. +
      • +
      • + SciTE on GTK+ 2.4 uses the improved file chooser which allows + file extension filters, multiple selection, and remembers favourite + directories. +
      • +
      • + SciTE Load Session and Save Session commands available on GTK+. +
      • +
      • + SciTE lists Lua Startup Script in Options menu when loaded. +
      • +
      • + In SciTE, OnUserListSelection can be implemented in Lua. +
      • +
      • + SciTE on Windows has a context menu on the file tabs. +
      • +
      • + SQL lexer allows '#' comments and optionally '\' quoting inside strings. +
      • +
      • + Mssql lexer improved. +
      • +
      • + AutoIt3 lexer updated. +
      • +
      • + Perl lexer recognizes regular expression use better. +
      • +
      • + Errorlist lexer understands Lua tracebacks and copes with findstr + output for file names that end with digits. +
      • +
      • + Drawing of lines on GTK+ improved and made more like Windows + without final point. +
      • +
      • + SciTE on GTK+ uses a high resolution window icon. +
      • +
      • + SciTE can be set to warn before loading files larger than a particular size. +
      • +
      • + SciTE Lua scripting bugs fixed included a crashing bug when using + an undefined function name that would go before first actual name. +
      • +
      • + SciTE bug fixed where a modified buffer was not saved if it was + the last buffer and was not current when the New command used. +
      • +
      • + SciTE monofont mode no longer affects line numbers. +
      • +
      • + Crashing bug in SciTE avoided by not allowing both the Find and Replace + dialogs to be visible at one time. +
      • +
      • + Crashing bug in SciTE fixed when Lua scripts were being run + concurrently. +
      • +
      • + Bug fixed that caused incorrect line number width in SciTE. +
      • +
      • + PHP folding bug fixed. +
      • +
      • + Regression fixed when setting word characters to not include + some of the standard word characters. +
      • +
      +

      + Release 1.60 +

      +
        +
      • + Released on 1 May 2004. +
      • +
      • + SciTE can be scripted using the Lua programming language. +
      • +
      • + command.mode is a better way to specify tool command options in SciTE. +
      • +
      • + Continuation markers can be displayed so that you can see which lines are wrapped. +
      • +
      • + Lexer for Gui4Cli language. +
      • +
      • + Lexer for Kix language. +
      • +
      • + Lexer for Specman E language. +
      • +
      • + Lexer for AutoIt3 language. +
      • +
      • + Lexer for APDL language. +
      • +
      • + Lexer for Bash language. Also reasonable for other Unix shells. +
      • +
      • + SciTE can load lexers implemented in external shared libraries. +
      • +
      • + Perl treats "." not as part of an identifier and interprets '/' and '->' + correctly in more circumstances. +
      • +
      • + PHP recognizes variables within strings. +
      • +
      • + NSIS has properties "nsis.uservars" and "nsis.ignorecase". +
      • +
      • + MSSQL lexer adds keyword list for operators and stored procedures, + defines '(', ')', and ',' as operators and changes some other details. +
      • +
      • + Input method preedit window on GTK+ 2 may support some Asian languages. +
      • +
      • + Platform interface adds an extra platform-specific flag to Font::Create. + Used on wxWidgets to choose antialiased text display but may be used for + any task that a platform needs. +
      • +
      • + OnBeforeSave method added to Extension interface. +
      • +
      • + Scintilla methods that return strings can be called with a NULL pointer + to find out how long the string should be. +
      • +
      • + Visual Studio .NET project file now in VS .NET 2003 format so can not be used + directly in VS .NET 2002. +
      • +
      • + Scintilla can be built with GTK+ 2 on Windows. +
      • +
      • + Updated RPM spec for SciTE on GTK+. +
      • +
      • + GTK+ makefile for SciTE allows selection of destination directory, creates destination + directories and sets file modes and owners better. +
      • +
      • + Tab indents now go to next tab multiple rather than add tab size. +
      • +
      • + SciTE abbreviations now use the longest possible match rather than the shortest. +
      • +
      • + Autocompletion does not remove prefix when actioned with no choice selected. +
      • +
      • + Autocompletion cancels when moving beyond the start position, not at the start position. +
      • +
      • + SciTE now shows only calltips for functions that match exactly, not + those that match as a prefix. +
      • +
      • + SciTE can repair box comment sections where some lines were added without + the box comment middle line prefix. +
      • +
      • + Alt+ works in user.shortcuts on Windows. +
      • +
      • + SciTE on GTK+ enables replace in selection for rectangular selections. +
      • +
      • + Key bindings for command.shortcut implemented in a way that doesn't break + when the menus are localized. +
      • +
      • + Drawing of background on GTK+ faster as theme drawing disabled. +
      • +
      • + On GTK+, calltips are moved back onto the screen if they extend beyond the screen bounds. +
      • +
      • + On Windows, the Scintilla object is destroyed on WM_NCDESTROY rather than + WM_DESTROY which arrives earlier. This fixes some problems when Scintilla was subclassed. +
      • +
      • + The zorder switching feature removed due to number of crashing bugs. +
      • +
      • + Code for XPM images made more robust. +
      • +
      • + Bug fixed with primary selection on GTK+. +
      • +
      • + On GTK+ 2, copied or cut text can still be pasted after the Scintilla widget is destroyed. +
      • +
      • + Styling change not visible problem fixed when line was cached. +
      • +
      • + Bug in SciTE on Windows fixed where clipboard commands stopped working. +
      • +
      • + Crashing bugs in display fixed in line layout cache. +
      • +
      • + Crashing bug may be fixed on AMD64 processor on GTK+. +
      • +
      • + Rare hanging crash fixed in Python lexer. +
      • +
      • + Display bugs fixed with DBCS characters on GTK+. +
      • +
      • + Autocompletion lists on GTK+ 2 are not sorted by the ListModel as the + contents are sorted correctly by Scintilla. +
      • +
      • + SciTE fixed to not open extra untitled buffers with check.if.already.open. +
      • +
      • + Sizing bug fixed on GTK+ when window resized while unmapped. +
      • +
      • + Text drawing crashing bug fixed on GTK+ with non-Pango fonts and long strings. +
      • +
      • + Fixed some issues if characters are unsigned. +
      • +
      • + Fixes in NSIS support. +
      • +
      +

      + Release 1.59 +

      +
        +
      • + Released on 19 February 2004. +
      • +
      • + SciTE Options and Language menus reduced in length by commenting + out some languages. Languages can be enabled by editing the global + properties file. +
      • +
      • + Verilog language supported. +
      • +
      • + Lexer for Microsoft dialect of SQL. SciTE properties file available from extras page. +
      • +
      • + Perl lexer disambiguates '/' better. +
      • +
      • + NSIS lexer improved with a lexical class for numbers, option for ignoring case + of keywords, and folds only occurring when folding keyword first on line. +
      • +
      • + PowerBasic lexer improved with styles for constants and assembler and + folding improvements. +
      • +
      • + On GTK+, input method support only invoked for Asian languages and not + European languages as the old European keyboard code works better. +
      • +
      • + Scintilla can be requested to allocate a certain amount and so avoid repeated + reallocations and memory inefficiencies. SciTE uses this and so should require + less memory. +
      • +
      • + SciTE's "toggle current fold" works when invoked on child line as well as + fold header. +
      • +
      • + SciTE output pane scrolling can be set to not scroll back to start after + completion of command. +
      • +
      • + SciTE has a $(SessionPath) property. +
      • +
      • + SciTE on Windows can use VK_* codes for keys in user.shortcuts. +
      • +
      • + Stack overwrite bug fixed in SciTE's command to move to the end of a + preprocessor conditional. +
      • +
      • + Bug fixed where vertical selection appeared to select a different set of characters + then would be used by, for example, a copy. +
      • +
      • + SciTE memory leak fixed in fold state remembering. +
      • +
      • + Bug fixed where changing the style of some text outside the + standard StyleNeeded notification would not be visible. +
      • +
      • + On GTK+ 2 g_iconv is used in preference to iconv, as it is provided by GTK+ + so should avoid problems finding the iconv library. +
      • +
      • + On GTK+ fixed a style reference count bug. +
      • +
      • + Memory corruption bug fixed with GetSelText. +
      • +
      • + On Windows Scintilla deletes memory on WM_NCDESTROY rather than + the earlier WM_DESTROY to avoid problems when the window is subclassed. +
      • +
      +

      + Release 1.58 +

      +
        +
      • + Released on 11 January 2004. +
      • +
      • + Method to discover the currently highlighted element in an autocompletion list. +
      • +
      • + On GTK+, the lexers are now included in the scintilla.a library file. This + will require changes to the make files of dependent projects. +
      • +
      • + Octave support added alongside related Matlab language and Matlab support improved. +
      • +
      • + VB lexer gains an unterminated string state and 4 sets of keywords. +
      • +
      • + Ruby lexer handles $' correctly. +
      • +
      • + Error line handling improved for FORTRAN compilers from Absoft and Intel. +
      • +
      • + International input enabled on GTK+ 2 although there is no way to choose an + input method. +
      • +
      • + MultiplexExtension in SciTE allows multiple extensions to be used at once. +
      • +
      • + Regular expression replace interprets backslash expressions \a, \b, \f, \n, \r, \t, + and \v in the replacement value. +
      • +
      • + SciTE Replace dialog displays number of replacements made when Replace All or + Replace in Selection performed. +
      • +
      • + Localization files may contain a translation.encoding setting which is used + on GTK+ 2 to automatically reencode the translation to UTF-8 so it will be + the localized text will be displayed correctly. +
      • +
      • + SciTE on GTK+ implements check.if.already.open. +
      • +
      • + Make files for Mac OS X made more robust. +
      • +
      • + Performance improved in SciTE when switching buffers when there + is a rectangular selection. +
      • +
      • + Fixed failure to display some text when wrapped. +
      • +
      • + SciTE crashes from Ctrl+Tab buffer cycling fixed. + May still be some rare bugs here. +
      • +
      • + Crash fixed when decoding an error message that appears similar to a + Borland error message. +
      • +
      • + Fix to auto-scrolling allows containers to implement enhanced double click selection. +
      • +
      • + Hang fixed in idle word wrap. +
      • +
      • + Crash fixed in hotspot display code.. +
      • +
      • + SciTE on Windows Incremental Search no longer moves caret back. +
      • +
      • + SciTE hang fixed when performing a replace with a find string that + matched zero length strings such as ".*". +
      • +
      • + SciTE no longer styles the whole file when saving buffer fold state + as that was slow. +
      • +
      +

      + Release 1.57 +

      +
        +
      • + Released on 27 November 2003. +
      • +
      • + SciTE remembers folding of each buffer. +
      • +
      • + Lexer for Erlang language. +
      • +
      • + Scintilla allows setting the set of white space characters. +
      • +
      • + Scintilla has 'stuttered' page movement commands to first move + to top or bottom within current visible lines before scrolling. +
      • +
      • + Scintilla commands for moving to end of words. +
      • +
      • + Incremental line wrap enabled on Windows. +
      • +
      • + SciTE PDF exporter produces output that is more compliant with reader + applications, is smaller and allows more configuration. + HTML exporter optimizes size of output files. +
      • +
      • + SciTE defines properties PLAT_WINNT and PLAT_WIN95 on the + corresponding platforms. +
      • +
      • + SciTE can adjust the line margin width to fit the largest line number. + The line.numbers property is split between line.margin.visible and + line.margin.width. +
      • +
      • + SciTE on GTK+ allows user defined menu accelerators. + Alt can be included in user.shortcuts. +
      • +
      • + SciTE Language menu can have items commented out. +
      • +
      • + SciTE on Windows Go to dialog allows choosing a column number as + well as a line number. +
      • +
      • + SciTE on GTK+ make file uses prefix setting more consistently. +
      • +
      • + Bug fixed that caused word wrapping to fail to display all text. +
      • +
      • + Crashing bug fixed in GTK+ version of Scintilla when using GDK fonts + and opening autocompletion. +
      • +
      • + Bug fixed in Scintilla SCI_GETSELTEXT where an extra NUL + was included at end of returned string +
      • +
      • + Crashing bug fixed in SciTE z-order switching implementation. +
      • +
      • + Hanging bug fixed in Perl lexer. +
      • +
      • + SciTE crashing bug fixed for using 'case' without argument in style definition. +
      • +
      +

      + Release 1.56 +

      +
        +
      • + Released on 25 October 2003. +
      • +
      • + Rectangular selection can be performed using the keyboard. + Greater programmatic control over rectangular selection. + This has caused several changes to key bindings. +
      • +
      • + SciTE Replace In Selection works on rectangular selections. +
      • +
      • + Improved lexer for TeX, new lexer for Metapost and other support for these + languages. +
      • +
      • + Lexer for PowerBasic. +
      • +
      • + Lexer for Forth. +
      • +
      • + YAML lexer improved to include error styling. +
      • +
      • + Perl lexer improved to correctly handle more cases. +
      • +
      • + Assembler lexer updated to support single-quote strings and fix some + problems. +
      • +
      • + SciTE on Windows can switch between buffers in order of use (z-order) rather + than static order. +
      • +
      • + SciTE supports adding an extension for "Open Selected Filename". + The openpath setting works on GTK+. +
      • +
      • + SciTE can Export as XML. +
      • +
      • + SciTE $(SelHeight) variable gives a more natural result for empty and whole line + selections. +
      • +
      • + Fixes to wrapping problems, such as only first display line being visible in some + cases. +
      • +
      • + Fixes to hotspot to only highlight when over the hotspot, only use background + colour when set and option to limit hotspots to a single line. +
      • +
      • + Small fixes to FORTRAN lexing and folding. +
      • +
      • + SQL lexer treats single quote strings as a separate class to double quote strings.. +
      • +
      • + Scintilla made compatible with expectations of container widget in GTK+ 2.3. +
      • +
      • + Fix to strip out pixmap ID when automatically choosing from an autocompletion + list with only one element. +
      • +
      • + SciTE bug fixed where UTF-8 files longer than 128K were gaining more than one + BOM. +
      • +
      • + Crashing bug fixed in SciTE on GTK+ where using "Stop Executing" twice leads + to all applications exiting. +
      • +
      • + Bug fixed in autocompletion scrolling on GTK+ 2 with a case sensitive list. + The ListBox::Sort method is no longer needed or available so platform + maintainers should remove it. +
      • +
      • + SciTE check.if.already.open setting removed from GTK+ version as unmaintained. +
      • +
      +

      + Release 1.55 +

      +
        +
      • + Released on 25 September 2003. +
      • +
      • + Fix a crashing bug in indicator display in Scintilla. +
      • +
      • + GTK+ version now defaults to building for GTK+ 2 rather than 1. +
      • +
      • + Mingw make file detects compiler version and avoids options + that are cause problems for some versions. +
      • +
      • + Large performance improvement on GTK+ 2 for long lines. +
      • +
      • + Incremental line wrap on GTK+. +
      • +
      • + International text entry works much better on GTK+ with particular + improvements for Baltic languages and languages that use 'dead' accents. + NUL key events such as those generated by some function keys, ignored. +
      • +
      • + Unicode clipboard support on GTK+. +
      • +
      • + Indicator type INDIC_BOX draws a rectangle around the text. +
      • +
      • + Clarion language support. +
      • +
      • + YAML language support. +
      • +
      • + MPT LOG language support. +
      • +
      • + On Windows, SciTE can switch buffers based on activation order rather + than buffer number. +
      • +
      • + SciTE save.on.deactivate saves all buffers rather than just the current buffer. +
      • +
      • + Lua lexer handles non-ASCII characters correctly. +
      • +
      • + Error lexer understands Borland errors with pathnames that contain space. +
      • +
      • + On GTK+ 2, autocompletion uses TreeView rather than deprecated CList. +
      • +
      • + SciTE autocompletion removed when expand abbreviation command used. +
      • +
      • + SciTE calltips support overloaded functions. +
      • +
      • + When Save fails in SciTE, choice offered to Save As. +
      • +
      • + SciTE message boxes on Windows may be moved to front when needed. +
      • +
      • + Indicators drawn correctly on wrapped lines. +
      • +
      • + Regular expression search no longer matches characters with high bit + set to characters without high bit set. +
      • +
      • + Hang fixed in backwards search in multi byte character documents. +
      • +
      • + Hang fixed in SciTE Mark All command when wrap around turned off. +
      • +
      • + SciTE Incremental Search no longer uses hot keys on Windows. +
      • +
      • + Calltips draw non-ASCII characters correctly rather than as arrows. +
      • +
      • + SciTE crash fixed when going to an error message with empty file name. +
      • +
      • + Bugs fixed in XPM image handling code. +
      • +
      +

      + Release 1.54 +

      +
        +
      • + Released on 12 August 2003. +
      • +
      • + SciTE on GTK+ 2.x can display a tab bar. +
      • +
      • + SciTE on Windows provides incremental search. +
      • +
      • + Lexer for PostScript. +
      • +
      • + Lexer for the NSIS scripting language. +
      • +
      • + New lexer for POV-Ray Scene Description Language + replaces previous implementation. +
      • +
      • + Lexer for the MMIX Assembler language. +
      • +
      • + Lexer for the Scriptol language. +
      • +
      • + Incompatibility: SQL keywords are specified in lower case rather than upper case. + SQL lexer allows double quoted strings. +
      • +
      • + Pascal lexer: character constants that start with '#' understood, + '@' only allowed within assembler blocks, + '$' can be the start of a number, + initial '.' in 0..constant not treated as part of a number, + and assembler blocks made more distinctive. +
      • +
      • + Lua lexer allows '.' in keywords. + Multi-line strings and comments can be folded. +
      • +
      • + CSS lexer handles multiple psuedoclasses. +
      • +
      • + Properties file folder works for INI file format. +
      • +
      • + Hidden indicator style allows the container to mark text within Scintilla + without there being any visual effect. +
      • +
      • + SciTE does not prompt to save changes when the buffer is empty and untitled. +
      • +
      • + Modification notifications caused by SCI_INSERTSTYLEDSTRING + now include the contents of the insertion. +
      • +
      • + SCI_MARKERDELETEALL deletes all the markers on a line + rather than just the first match. +
      • +
      • + Better handling of 'dead' accents on GTK+ 2 for languages + that use accented characters. +
      • +
      • + SciTE now uses value of output.vertical.size property. +
      • +
      • + Crash fixed in SciTE autocompletion on long lines. +
      • +
      • + Crash fixed in SciTE comment command on long lines. +
      • +
      • + Bug fixed with backwards regular expression search skipping + every second match. +
      • +
      • + Hang fixed with regular expression replace where both target and replacement were empty. +
      • +
      +

      + Release 1.53 +

      +
        +
      • + Released on 16 May 2003. +
      • +
      • + On GTK+ 2, encodings other than ASCII, Latin1, and Unicode are + supported for both display and input using iconv. +
      • +
      • + External lexers supported on GTK+/Linux. + External lexers must now be explicitly loaded with SCI_LOADLEXERLIBRARY + rather than relying upon a naming convention and automatic loading. +
      • +
      • + Support of Lout typesetting language. +
      • +
      • + Support of E-Scripts language used in the POL Ultima Online Emulator. +
      • +
      • + Scrolling and drawing performance on GTK+ enhanced, particularly for GTK+ 2.x + with an extra window for the text area avoiding conflicts with the scroll bars. +
      • +
      • + CopyText and CopyRange methods in Scintilla allow container to + easily copy to the system clipboard. +
      • +
      • + Line Copy command implemented and bound to Ctrl+Shift+T. +
      • +
      • + Scintilla APIs PositionBefore and PositionAfter can be used to iterate through + a document taking into account the encoding and multi-byte characters. +
      • +
      • + C++ folder can fold on the "} else {" line of an if statement by setting + fold.at.else property to 1. +
      • +
      • + C++ lexer allows an extra set of keywords. +
      • +
      • + Property names and thus abbreviations may be non-ASCII. +
      • +
      • + Removed attempt to load a file when setting properties that was + part of an old scripting experiment. +
      • +
      • + SciTE no longer warns about a file not existing when opening + properties files from the Options menu as there is a good chance + the user wants to create one. +
      • +
      • + Bug fixed with brace recognition in multi-byte encoded files where a partial + character matched a brace byte. +
      • +
      • + More protection against infinite loops or recursion with recursive property definitions. +
      • +
      • + On Windows, cursor will no longer disappear over margins in custom builds when + cursor resource not present. The Windows default cursor is displayed instead. +
      • +
      • + load.on.activate fixed in SciTE as was broken in 1.52. +
      • +
      +

      + Release 1.52 +

      +
        +
      • + Released on 17 April 2003. +
      • +
      • + Pango font support on GTK+ 2. + Unicode input improved on GTK+ 2. +
      • +
      • + Hotspot style implemented in Scintilla. +
      • +
      • + Small up and down arrows can be displayed in calltips and the container + is notified when the mouse is clicked on a calltip. + Normal and selected calltip text colours can be set. +
      • +
      • + POSIX compatibility flag in Scintilla regular expression search + interprets bare ( and ) as tagged sections. +
      • +
      • + Error message lexer tightened to yield fewer false matches. + Recognition of Lahey and Intel FORTRAN error formats. +
      • +
      • + Scintilla keyboard commands for moving to start and end of + screen lines rather than document lines, unless already there + where these keys move to the start or end of the document line. +
      • +
      • + Line joining command. +
      • +
      • + Lexer for POV-Ray. +
      • +
      • + Calltips on Windows are no longer clipped by the parent window. +
      • +
      • + Autocompletion lists are cancelled when focus leaves their parent window. +
      • +
      • + Move to next/previous empty line delimited paragraph key commands. +
      • +
      • + SciTE hang fixed with recursive property definitions by placing limit + on number of substitutions performed. +
      • +
      • + SciTE Export as PDF reenabled and works. +
      • +
      • + Added loadsession: command line command to SciTE. +
      • +
      • + SciTE option to quit application when last document closed. +
      • +
      • + SciTE option to ask user if it is OK to reload a file that has been + modified outside SciTE. +
      • +
      • + SciTE option to automatically save before running particular command tools + or to ask user or to not save. +
      • +
      • + SciTE on Windows 9x will write a Ctrl+Z to the process input pipe before + closing the pipe when running tool commands that take input. +
      • +
      • + Added a manifest resource to SciTE on Windows to enable Windows XP + themed UI. +
      • +
      • + SciTE calltips handle nested calls and other situations better. +
      • +
      • + CSS lexer improved. +
      • +
      • + Interface to platform layer changed - Surface initialization now requires + a WindowID parameter. +
      • +
      • + Bug fixed with drawing or measuring long pieces of text on Windows 9x + by truncating the pieces. +
      • +
      • + Bug fixed with SciTE on GTK+ where a user shortcut for a visible character + inserted the character as well as executing the command. +
      • +
      • + Bug fixed where primary selection on GTK+ was reset by + Scintilla during creation. +
      • +
      • + Bug fixed where SciTE would close immediately on startup + when using save.session. +
      • +
      • + Crash fixed when entering '\' in LaTeX file. +
      • +
      • + Hang fixed when '#' last character in VB file. +
      • +
      • + Crash fixed in error message lexer. +
      • +
      • + Crash fixed when searching for long regular expressions. +
      • +
      • + Pressing return when nothing selected in user list sends notification with + empty text rather than random text. +
      • +
      • + Mouse debouncing disabled on Windows as it interfered with some + mouse utilities. +
      • +
      • + Bug fixed where overstrike mode inserted before rather than replaced last + character in document. +
      • +
      • + Bug fixed with syntax highlighting of Japanese text. +
      • +
      • + Bug fixed in split lines function. +
      • +
      • + Cosmetic fix to SciTE tab bar on Windows when window resized. + Focus sticks to either pane more consistently. +
      • +
      +

      + Release 1.51 +

      +
        +
      • + Released on 16 February 2003. +
      • +
      • + Two phase drawing avoids cutting off text that overlaps runs by drawing + all the backgrounds of a line then drawing all the text transparently. + Single phase drawing is an option. +
      • +
      • + Scintilla method to split lines at a particular width by adding new line + characters. +
      • +
      • + The character used in autocompletion lists to separate the text from the image + number can be changed. +
      • +
      • + The scrollbar range will automatically expand when the caret is moved + beyond the current range. + The scroll bar is updated when SCI_SETXOFFSET is called. +
      • +
      • + Mouse cursors on GTK+ improved to be consistent with other applications + and the Windows version. +
      • +
      • + Horizontal scrollbar on GTK+ now disappears in wrapped mode. +
      • +
      • + Scintilla on GTK+ 2: mouse wheel scrolling, cursor over scrollbars, focus, + and syntax highlighting now work. + gtk_selection_notify avoided for compatibility with GTK+ 2.2. +
      • +
      • + Fold margin colours can now be set. +
      • +
      • + SciTE can be built for GTK+ 2. +
      • +
      • + SciTE can optionally preserve the undo history over an automatic file reload. +
      • +
      • + Tags can optionally be case insensitive in XML and HTML. +
      • +
      • + SciTE on Windows handles input to tool commands in a way that should avoid + deadlock. Output from tools can be used to replace the selection. +
      • +
      • + SciTE on GTK+ automatically substitutes '|' for '/' in menu items as '/' + is used to define the menu hierarchy. +
      • +
      • + Optional buffer number in SciTE title bar. +
      • +
      • + Crash fixed in SciTE brace matching. +
      • +
      • + Bug fixed where automatic scrolling past end of document + flipped back to the beginning. +
      • +
      • + Bug fixed where wrapping caused text to disappear. +
      • +
      • + Bug fixed on Windows where images in autocompletion lists were + shown on the wrong item. +
      • +
      • + Crash fixed due to memory bug in autocompletion lists on Windows. +
      • +
      • + Crash fixed when double clicking some error messages. +
      • +
      • + Bug fixed in word part movement where sometimes no movement would occur. +
      • +
      • + Bug fixed on Windows NT where long text runs were truncated by + treating NT differently to 9x where there is a limitation. +
      • +
      • + Text in not-changeable style works better but there remain some cases where + it is still possible to delete text protected this way. +
      • +
      +

      + Release 1.50 +

      +
        +
      • + Released on 24 January 2003. +
      • +
      • + Autocompletion lists may have a per-item pixmap. +
      • +
      • + Autocompletion lists allow Unicode text on Windows. +
      • +
      • + Scintilla documentation rewritten. +
      • +
      • + Additional DBCS encoding support in Scintilla on GTK+ primarily aimed at + Japanese EUC encoding. +
      • +
      • + CSS (Cascading Style Sheets) lexer added. +
      • +
      • + diff lexer understands some more formats. +
      • +
      • + Fold box feature is an alternative way to show the structure of code. +
      • +
      • + Avenue lexer supports multiple keyword lists. +
      • +
      • + The caret may now be made invisible by setting the caret width to 0. +
      • +
      • + Python folder attaches comments before blocks to the next block rather + than the previous block. +
      • +
      • + SciTE openpath property on Windows searches a path for files that are + the subject of the Open Selected Filename command. +
      • +
      • + The localization file name can be changed with the locale.properties property. +
      • +
      • + On Windows, SciTE can pipe the result of a string expression into a command line tool. +
      • +
      • + On Windows, SciTE's Find dialog has a Mark All button. +
      • +
      • + On Windows, there is an Insert Abbreviation command that allows a choice from + the defined abbreviations and inserts the selection into the abbreviation at the + position of a '|'. +
      • +
      • + Minor fixes to Fortran lexer. +
      • +
      • + fold.html.preprocessor decides whether to fold <? and ?>. + Minor improvements to PHP folding. +
      • +
      • + Maximum number of keyword lists allowed increased from 6 to 9. +
      • +
      • + Duplicate line command added with default assignment to Ctrl+D. +
      • +
      • + SciTE sets $(Replacements) to the number of replacements made by the + Replace All command. $(CurrentWord) is set to the word before the caret if the caret + is at the end of a word. +
      • +
      • + Opening a SciTE session now loads files in remembered order, sets the current file + as remembered, and moves the caret to the remembered line. +
      • +
      • + Bugs fixed with printing on Windows where line wrapping was causing some text + to not print. +
      • +
      • + Bug fixed with Korean Input Method Editor on Windows. +
      • +
      • + Bugs fixed with line wrap which would sometimes choose different break positions + after switching focus away and back. +
      • +
      • + Bug fixed where wheel scrolling had no effect on GTK+ after opening a fold. +
      • +
      • + Bug fixed with file paths containing non-ASCII characters on Windows. +
      • +
      • + Crash fixed with printing on Windows after defining pixmap marker. +
      • +
      • + Crash fixed in makefile lexer when first character on line was '='. +
      • +
      • + Bug fixed where local properties were not always being applied. +
      • +
      • + Ctrl+Keypad* fold command works on GTK+. +
      • +
      • + Hangs fixed in SciTE's Replace All command when replacing regular expressions '^' + or '$'. +
      • +
      • + SciTE monospace setting behaves more sensibly. +
      • +
      +

      + Release 1.49 +

      +
        +
      • + Released on 1 November 2002. +
      • +
      • + Unicode supported on GTK+. To perform well, this added a font cache to GTK+ + and to make that safe, a mutex is used. The mutex requires the application to link in + the threading library by evaluating `glib-config --libs gthread`. A Unicode locale + should also be set up by a call like setlocale(LC_CTYPE, "en_US.UTF-8"). + scintilla_release_resources function added to release mutex. +
      • +
      • + FORTRAN and assembler lexers added along with other support for these + languages in SciTE. +
      • +
      • + Ada lexer improved handling of based numbers, identifier validity and attributes + distinguished from character literals. +
      • +
      • + Lua lexer handles block comments and a deep level of nesting for literal strings + and block comments. +
      • +
      • + Errorlist lexer recognizes PHP error messages. +
      • +
      • + Variant of the C++ lexer with case insensitive keywords + called cppnocase. Whitespace in preprocessor text handled more correctly. +
      • +
      • + Folder added for Perl. +
      • +
      • + Compilation with GCC 3.2 supported. +
      • +
      • + Markers can be pixmaps. +
      • +
      • + Lines are wrapped when printing. + Bug fixed which printed line numbers in different styles. +
      • +
      • + Text can be appended to end with AppendText method. +
      • +
      • + ChooseCaretX method added. +
      • +
      • + Vertical scroll bar can be turned off with SetVScrollBar method. +
      • +
      • + SciTE Save All command saves all buffers. +
      • +
      • + SciTE localization compares keys case insensitively to make translations more flexible. +
      • +
      • + SciTE detects a utf-8 coding cookie "coding: utf-8" in first two + lines and goes into Unicode mode. +
      • +
      • + SciTE key bindings are definable. +
      • +
      • + SciTE Find in Files dialog can display directory browser to + choose directory to search. +
      • +
      • + SciTE enabling of undo and redo toolbar buttons improved. +
      • +
      • + SciTE on Windows file type filters in open dialog sorted. +
      • +
      • + Fixed crashing bug when using automatic tag closing in XML or HTML. +
      • +
      • + Fixed bug on Windows causing very long (>64K) lines to not display. +
      • +
      • + Fixed bug in backwards regular expression searching. +
      • +
      • + Fixed bug in calltips where wrong argument was highlighted. +
      • +
      • + Fixed bug in tab timmy feature when file has line feed line endings. +
      • +
      • + Fixed bug in compiling without INCLUDE_DEPRECATED_FEATURES + defined. +
      • +
      +

      + Release 1.48 +

      +
        +
      • + Released on 9 September 2002. +
      • +
      • + Improved Pascal lexer with context sensitive keywords + and separate folder which handles //{ and //} folding comments and + {$region} and {$end} folding directives. + The "case" statement now folds correctly. +
      • +
      • + C++ lexer correctly handles comments on preprocessor lines. +
      • +
      • + New commands for moving to beginning and end of display lines when in line + wrap mode. Key bindings added for these commands. +
      • +
      • + New marker symbols that look like ">>>" and "..." which can be used for + interactive shell prompts for Python. +
      • +
      • + The foreground and background colours of visible whitespace can be chosen + independent of the colours chosen for the lexical class of that whitespace. +
      • +
      • + Per line data optimized by using an exponential allocation scheme. +
      • +
      • + SciTE API file loading optimized. +
      • +
      • + SciTE for GTK+ subsystem 2 documented. The exit status of commands + is decoded into more understandable fields. +
      • +
      • + SciTE find dialog remembers previous find string when there is no selection. + Find in Selection button disabled when selection is rectangular as command + did not work. +
      • +
      • + Shift+Enter made equivalent to Enter to avoid users having to let go of + the shift key when typing. Avoids the possibility of entering single carriage + returns in a file that contains CR+LF line ends. +
      • +
      • + Autocompletion does not immediately disappear when the length parameter + to SCI_AUTOCSHOW is 0. +
      • +
      • + SciTE focuses on the editor pane when File | New executed and when the + output pane is closed with F8. Double clicking on a non-highlighted output + pane line selects the word under the cursor rather than seeking the next + highlighted line. +
      • +
      • + SciTE director interface implements an "askproperty" command. +
      • +
      • + SciTE's Export as LaTeX output improved. +
      • +
      • + Better choice of autocompletion displaying above the caret rather then + below when that is more sensible. +
      • +
      • + Bug fixed where context menu would not be completely visible if invoked + when cursor near bottom or left of screen. +
      • +
      • + Crashing bug fixed when displaying long strings on GTK+ caused failure of X server + by displaying long text in segments. +
      • +
      • + Crashing bug fixed on GTK+ when a Scintilla window was removed from its parent + but was still the selection owner. +
      • +
      • + Bug fixed on Windows in Unicode mode where not all characters on a line + were displayed when that line contained some characters not in ASCII. +
      • +
      • + Crashing bug fixed in SciTE on Windows with clearing output while running command. +
      • +
      • + Bug fixed in SciTE for GTK+ with command completion not detected when + no output was produced by the command. +
      • +
      • + Bug fixed in SciTE for Windows where menus were not shown translated. +
      • +
      • + Bug fixed where words failed to display in line wrapping mode with visible + line ends. +
      • +
      • + Bug fixed in SciTE where files opened from a session file were not closed. +
      • +
      • + Cosmetic flicker fixed when using Ctrl+Up and Ctrl+Down with some caret policies. +
      • +
      +

      + Release 1.47 +

      +
        +
      • + Released on 1 August 2002. +
      • +
      • + Support for GTK+ 2 in Scintilla. International input methods not supported + on GTK+2. +
      • +
      • + Line wrapping performance improved greatly. +
      • +
      • + New caret policy implementation that treats horizontal and vertical + positioning equivalently and independently. Old caret policy methods + deprecated and not all options work correctly with old methods. +
      • +
      • + Extra fold points for C, C++, Java, ... for fold comments //{ .. //} and + #if / #ifdef .. #endif and the #region .. #endregion feature of C#. +
      • +
      • + Scintilla method to find the height in pixels of a line. Currently returns the + same result for every line as all lines are same height. +
      • +
      • + Separate make file, scintilla_vc6.mak, for Scintilla to use Visual C++ + version 6 since main makefile now assumes VS .NET. + VS .NET project files available for combined Scintilla and + SciTE in scite/boundscheck. +
      • +
      • + SciTE automatically recognizes Unicode files based + on their Byte Order Marks and switches to Unicode mode. + On Windows, where SciTE supports Unicode display, this + allows display of non European characters. + The file is saved back into the same character encoding unless + the user decides to switch using the File | Encoding menu. +
      • +
      • + Handling of character input changed so that a fillup character, typically '(' + displays a calltip when an autocompletion list was being displayed. +
      • +
      • + Multiline strings lexed better for C++ and Lua. +
      • +
      • + Regular expressions in JavaScript within hypertext files are lexed better. +
      • +
      • + On Windows, Scintilla exports a function called Scintilla_DirectFunction + that can be used the same as the function returned by GetDirectFunction. +
      • +
      • + Scintilla converts line endings of text obtained from the clipboard to + the current default line endings. +
      • +
      • + New SciTE property ensure.final.line.end can ensure that saved files + always end with a new line as this is required by some tools. + The ensure.consistent.line.ends property ensures all line ends are the + current default when saving files. + The strip.trailing.spaces property now works on the buffer so the + buffer in memory and the file on disk are the same after a save is performed. +
      • +
      • + The SciTE expand abbreviation command again allows '|' characters + in expansions to be quoted by using '||'. +
      • +
      • + SciTE on Windows can send data to the find tool through standard + input rather than using a command line argument to avoid problems + with quoting command line arguments. +
      • +
      • + The Stop Executing command in SciTE on Windows improved to send + a Ctrl+Z character to the tool. Better messages when stopping a tool. +
      • +
      • + Autocompletion can automatically "fill up" when one of a set of characters is + type with the autocomplete.<lexer>.fillups property. +
      • +
      • + New predefined properties in SciTE, SelectionStartColumn, SelectionStartLine, + SelectionEndColumn, SelectionEndLine can be used to integrate with other + applications. +
      • +
      • + Environment variables are available as properties in SciTE. +
      • +
      • + SciTE on Windows keeps status line more current. +
      • +
      • + Abbreviations work in SciTE on Linux when first opened. +
      • +
      • + File saving fixed in SciTE to ensure files are not closed when they can not be + saved because of file permissions. Also fixed a problem with buffers that + caused files to not be saved. +
      • +
      • + SciTE bug fixed where monospace mode not remembered when saving files. + Some searching options now remembered when switching files. +
      • +
      • + SciTE on Linux now waits on child termination when it shuts a child down + to avoid zombies. +
      • +
      • + SciTE on Linux has a Print menu command that defaults to invoking a2ps. +
      • +
      • + Fixed incorrect highlighting of indentation guides in SciTE for Python. +
      • +
      • + Crash fixed in Scintilla when calling GetText for 0 characters. +
      • +
      • + Exporting as LaTeX improved when processing backslashes and tabs + and setting up font. +
      • +
      • + Crash fixed in SciTE when exporting or copying as RTF. +
      • +
      • + SciTE session loading fixed to handle more than 10 files in session. +
      • +
      +

      + Release 1.46 +

      +
        +
      • + Released on 10 May 2002. +
      • +
      • + Set of lexers compiled into Scintilla can now be changed by adding and + removing lexer source files from scintilla/src and running LexGen.py. +
      • +
      • + SCN_ZOOM notification provided by Scintilla when user changes zoom level. + Method to determine width of strings in pixels so that elements can be sized + relative to text size. + SciTE changed to keep line number column displaying a given + number of characters. +
      • +
      • + The logical width of the document used to determine scroll bar range can be set. +
      • +
      • + Setting to allow vertical scrolling to display last line at top rather than + bottom of window. +
      • +
      • + Read-only mode improved to avoid changing the selection in most cases + when a modification is attempted. Drag and drop cursors display correctly + for read-only in some cases. +
      • +
      • + Visual C++ options in make files changed to suit Visual Studio .NET. +
      • +
      • + Scintilla.iface includes feature types for enumerations and lexers. +
      • +
      • + Lua lexer improves handling of literal strings and copes with nested literal strings. +
      • +
      • + Diff lexer changed to treat lines starting with "***" similarly to "---". + Symbolic names defined for lexical classes. +
      • +
      • + nncrontab lexer improved. +
      • +
      • + Turkish fonts (iso8859-9) supported on GTK+. +
      • +
      • + Automatic close tag feature for XML and HTML in SciTE. +
      • +
      • + Automatic indentation in SciTE improved. +
      • +
      • + Maximum number of buffers available in SciTE increased. May be up to 100 + although other restrictions on menu length limit the real maximum. +
      • +
      • + Save a Copy command added to SciTE. +
      • +
      • + Export as TeX command added to SciTE. +
      • +
      • + Export as HTML command in SciTE respects Use Monospaced Font and + background colour settings. +
      • +
      • + Compilation problem on Solaris fixed. +
      • +
      • + Order of files displayed for SciTE's previous and next menu and key commands + are now consistent. +
      • +
      • + Saving of MRU in recent file changed so files open when SciTE quit + are remembered. +
      • +
      • + More variants of ctags tags handled by Open Selected Filename in SciTE. +
      • +
      • + JavaScript embedded in XML highlighted again. +
      • +
      • + SciTE status bar updated after changing parameters in case they are being + displayed in status bar. +
      • +
      • + Crash fixed when handling some multi-byte languages. +
      • +
      • + Crash fixed when replacing end of line characters. +
      • +
      • + Bug in SciTE fixed in multiple buffer mode where automatic loading + turned on could lead to losing file contents. +
      • +
      • + Bug in SciTE on GTK+ fixed where dismissing dialogs with close box led to + those dialogs never being shown again. +
      • +
      • + Bug in SciTE on Windows fixed where position.tile with default positions + led to SciTE being positioned off-screen. +
      • +
      • + Bug fixed in read-only mode, clearing all deletes contraction state data + leading to it not being synchronized with text. +
      • +
      • + Crash fixed in SciTE on Windows when tab bar displayed. +
      • +
      +

      + Release 1.45 +

      +
        +
      • + Released on 15 March 2002. +
      • +
      • + Line layout cache implemented to improve performance by maintaining + the positioning of characters on lines. Can be set to cache nothing, + the line with the caret, the visible page or the whole document. +
      • +
      • + Support, including a new lexer, added for Matlab programs. +
      • +
      • + Lua folder supports folding {} ranges and compact mode. + Lua lexer styles floating point numbers in number style instead of + setting the '.' in operator style. + Up to 6 sets of keywords. + Better support for [[ although only works well + when all on one line. +
      • +
      • + Python lexer improved to handle floating point numbers that contain negative + exponents and that start with '.'. +
      • +
      • + When performing a rectangular paste, the caret now remains at the + insertion point. +
      • +
      • + On Windows with a wheel mouse, page-at-a-time mode is recognized. +
      • +
      • + Read-only mode added to SciTE with a property to initialize it and another property, + $(ReadOnly) available to show this mode in the status bar. +
      • +
      • + SciTE status bar can show the number of lines in the selection + with the $(SelHeight) property. +
      • +
      • + SciTE's "Export as HTML" command uses the current character set to produce + correct output for non-Western-European character sets, such as Russian. +
      • +
      • + SciTE's "Export as RTF" fixed to produce correct output when file contains '\'. +
      • +
      • + SciTE goto command accepts a column as well as a line. + If given a column, it selects the word at that column. +
      • +
      • + SciTE's Build, Compile and Go commands are now disabled if no + action has been assigned to them. +
      • +
      • + The Refresh button in the status bar has been removed from SciTE on Windows. +
      • +
      • + Bug fixed in line wrap mode where cursor up or down command did not work. +
      • +
      • + Some styling bugs fixed that were due to a compilation problem with + gcc and inline functions with same name but different code. +
      • +
      • + The way that lexers loop over text was changed to avoid accessing beyond the + end or setting beyond the end. May fix some bugs and make the code safer but + may also cause new bugs. +
      • +
      • + Bug fixed in HTML lexer's handling of SGML. +
      • +
      • + Bug fixed on GTK+/X where lines wider than 32767 pixels did not display. +
      • +
      • + SciTE bug fixed with file name generation for standard property files. +
      • +
      • + SciTE bug fixed with Open Selected Filename command when used with + file name and line number combination. +
      • +
      • + In SciTE, indentation and tab settings stored with buffers so maintained correctly + as buffers selected. + The properties used to initialize these settings can now be set separately for different + file patterns. +
      • +
      • + Thread safety improved on Windows with a critical section protecting the font + cache and initialization of globals performed within Scintilla_RegisterClasses. + New Scintilla_ReleaseResources call provided to allow explicit freeing of resources + when statically bound into another application. Resources automatically freed + in DLL version. The window classes are now unregistered as part of resource + freeing which fixes bugs that occurred in some containers such as Internet Explorer. +
      • +
      • + 'make install' fixed on Solaris. +
      • +
      • + Bug fixed that could lead to a file being opened twice in SciTE. +
      • +
      +

      + Release 1.44 +

      +
        +
      • + Released on 4 February 2002. +
      • +
      • + Crashing bug fixed in Editor::Paint. +
      • +
      • + Lua lexer no longer treats '.' as a word character and + handles 6 keyword sets. +
      • +
      • + WordStartPosition and WordEndPosition take an onlyWordCharacters + argument. +
      • +
      • + SciTE option for simplified automatic indentation which repeats + the indentation of the previous line. +
      • +
      • + Compilation fix on Alpha because of 64 bit. +
      • +
      • + Compilation fix for static linking. +
      • +
      • + Limited maximum line length handled to 8000 characters as previous + value of 16000 was causing stack exhaustion crashes for some. +
      • +
      • + When whole document line selected, only the last display line gets + the extra selected rectangle at the right hand side rather than + every display line. +
      • +
      • + Caret disappearing bug fixed for the case that the caret was not on the + first display line of a document line. +
      • +
      • + SciTE bug fixed where untitled buffer containing text was sometimes + deleted without chance to save. +
      • +
      • + SciTE bug fixed where use.monospaced not working with + multiple buffers. +
      • +
      +

      + Release 1.43 +

      +
        +
      • + Released on 19 January 2002. +
      • +
      • + Line wrapping robustness and performance improved in Scintilla. +
      • +
      • + Line wrapping option added to SciTE for both edit and output panes. +
      • +
      • + Static linking on Windows handles cursor resource better. + Documentation of static linking improved. +
      • +
      • + Autocompletion has an option to delete any word characters after the caret + upon selecting an item. +
      • +
      • + FOX version identified by PLAT_FOX in Platform.h. +
      • +
      • + Calltips in SciTE use the calltip.<lexer>.word.characters setting to + correctly find calltips for functions that include characters like '$' which + is not normally considered a word character. +
      • +
      • + SciTE has a command to show help on itself which gets hooked up to displaying + SciTEDoc.html. +
      • +
      • + SciTE option calltip.<lexer>.end.definition to display help text on a + second line of calltip. +
      • +
      • + Fixed the handling of the Buffers menu on GTK+ to ensure current buffer + indicated and no warnings occur. + Changed some menu items on GTK+ version to be same as Windows version. +
      • +
      • + use.monospaced property for SciTE determines initial state of Use Monospaced Font + setting. +
      • +
      • + The SciTE Complete Symbol command now works when there are no word + characters before the caret, even though it is slow to display the whole set of + symbols. +
      • +
      • + Function names removed from SciTE's list of PHP keywords. The full list of + predefined functions is available from another web site mentioned on the + Extras page. +
      • +
      • + Crashing bug at startup on GTK+ for some configurations fixed. +
      • +
      • + Crashing bug on GTK+ on 64 bit platforms fixed. +
      • +
      • + Compilation problem with some compilers fixed in GTK+. +
      • +
      • + Japanese text entry improved on Windows 9x. +
      • +
      • + SciTE recent files directory problem on Windows when HOME and SciTE_HOME + environment variables not set is now the directory of the executable. +
      • +
      • + Session files no longer include untitled buffers. +
      • +
      +

      + Release 1.42 +

      +
        +
      • + Released on 24 December 2001. +
      • +
      • + Better localization support including context menus and most messages. + Translations of the SciTE user interface available for Bulgarian, + French, German, Italian, Russian, and Turkish. +
      • +
      • + Can specify a character to use to indicate control characters + rather than having them displayed as mnemonics. +
      • +
      • + Scintilla key command for backspace that will not delete line + end characters. +
      • +
      • + Scintilla method to find start and end of words. +
      • +
      • + SciTE on GTK+ now supports the load.on.activate and save.on.deactivate + properties in an equivalent way to the Windows version. +
      • +
      • + The output pane of SciTE on Windows is now interactive so command line + utilities that prompt for input or confirmation can be used. +
      • +
      • + SciTE on Windows can choose directory for a "Find in Files" + command like the GTK+ version could. +
      • +
      • + SciTE can now load a set of API files rather than just one file. +
      • +
      • + ElapsedTime class added to Platform for accurate measurement of durations. + Used for debugging and for showing the user how long commands take in SciTE. +
      • +
      • + Baan lexer added. +
      • +
      • + In C++ lexer, document comment keywords no longer have to be at the start + of the line. +
      • +
      • + PHP lexer changed to match keywords case insensitively. +
      • +
      • + More shell keywords added. +
      • +
      • + SciTE support for VoiceXML added to xml.properties. +
      • +
      • + In SciTE the selection is not copied to the find field of the Search and Replace + dialogs if it contains end of line characters. +
      • +
      • + SciTE on Windows has a menu item to decide whether to respond to other + instances which are performing their check.if.already.open check. +
      • +
      • + SciTE accelerator key for Box Comment command changed to avoid problems + in non-English locales. +
      • +
      • + SciTE context menu includes Close command for the editor pane and + Hide command for the output pane. +
      • +
      • + output: command added to SciTE director interface to add text to the + output pane. The director interface can execute commands (such as tool + commands with subsystem set to 3) by sending a macro:run message. +
      • +
      • + SciTE on GTK+ will defer to the Window Manager for position if position.left or + position.top not set and for size if position.width or position.height not set. +
      • +
      • + SciTE on Windows has a position.tile property to place a second instance + to the right of the first. +
      • +
      • + Scintilla on Windows again supports EM_GETSEL and EM_SETSEL. +
      • +
      • + Problem fixed in Scintilla on Windows where control ID is no longer cached + as it could be changed by external code. +
      • +
      • + Problems fixed in SciTE on Windows when finding any other open instances at + start up when check.if.already.open is true. +
      • +
      • + Bugs fixed in SciTE where command strings were not always having + variables evaluated. +
      • +
      • + Bugs fixed with displaying partial double-byte and Unicode characters + in rectangular selections and at the edge when edge mode is EDGE_BACKGROUND. + Column numbers reported by GetColumn treat multiple byte characters as one column + rather than counting bytes. +
      • +
      • + Bug fixed with caret movement over folded lines. +
      • +
      • + Another bug fixed with tracking selection in secondary views when performing + modifications. +
      • +
      • + Horizontal scrolling and display of long lines optimized. +
      • +
      • + Cursor setting in Scintilla on GTK+ optimized. +
      • +
      • + Experimental changeable style attribute. + Set to false to make text read-only. + Currently only stops caret from being within not-changeable + text and does not yet stop deleting a range that contains + not-changeable text. + Can be used from SciTE by adding notchangeable to style entries. +
      • +
      • + Experimental line wrapping. + Currently has performance and appearance problems. +
      • +
      +

      + Release 1.41 +

      +
        +
      • + Released on 6 November 2001. +
      • +
      • + Changed Platform.h to not include platform headers. This lessens likelihood and impact of + name clashes from system headers and also speeds up compilation. + Renamed DrawText to DrawTextNoClip to avoid name clash. +
      • +
      • + Changed way word functions work to treat a sequence of punctuation as + a word. This is more sensible and also more compatible with other editors. +
      • +
      • + Cursor changes over the margins and selection on GTK+ platform. +
      • +
      • + SC_MARK_BACKGROUND is a marker that only changes the line's background colour. +
      • +
      • + Enhanced Visual Basic lexer handles character date and octal literals, + and bracketed keywords for VB.NET. There are two VB lexers, vb and vbscript + with type indication characters like ! and $ allowed at the end of identifiers + in vb but not vbscript. Lexer states now separate from those used for C++ and + names start with SCE_B. +
      • +
      • + Lexer added for Bullant language. +
      • +
      • + The horizontal scroll position, xOffset, is now exposed through the API. +
      • +
      • + The SCN_POSCHANGED notification is deprecated as it was causing confusion. + Use SCN_UPDATEUI instead. +
      • +
      • + Compilation problems fixed for some versions of gcc. +
      • +
      • + Support for WM_GETTEXT restored on Windows. +
      • +
      • + Double clicking on an autocompletion list entry works on GTK+. +
      • +
      • + Bug fixed with case insensitive sorts for autocompletion lists. +
      • +
      • + Bug fixed with tracking selection in secondary views when performing modifications. +
      • +
      • + SciTE's abbreviation expansion feature will now indent expansions to the current + indentation level if indent.automatic is on. +
      • +
      • + SciTE allows setting up of parameters to commands from a dialog and can also + show this dialog automatically to prompt for arguments when running a command. +
      • +
      • + SciTE's Language menu (formerly Options | Use Lexer) is now defined by the + menu.language property rather than being hardcoded. +
      • +
      • + The user interface of SciTE can be localized to a particular language by editing + a locale.properties file. +
      • +
      • + On Windows, SciTE will try to move to the front when opening a new file from + the shell and using check.if.already.open. +
      • +
      • + SciTE can display the file name and directory in the title bar in the form + "file @ directory" when title.full.path=2. +
      • +
      • + The SciTE time.commands property reports the time taken by a command as well + as its status when completed. +
      • +
      • + The SciTE find.files property is now a list separated by '|' characters and this list is + added into the Files pull down of the Find in Files dialog. +
      • +
      +

      + Release 1.40 +

      +
        +
      • + Released on 23 September 2001. +
      • +
      • + Removal of emulation of Win32 RichEdit control in core of Scintilla. + This change may be incompatible with existing client code. + Some emulation still done in Windows platform layer. +
      • +
      • + SGML support in the HTML/XML lexer. +
      • +
      • + SciTE's "Stop Executing" command will terminate GUI programs on + Windows NT and Windows 2000. +
      • +
      • + StyleContext class helps construct lexers that are simple and accurate. + Used in the C++, Eiffel, and Python lexers. +
      • +
      • + Clipboard operations in GTK+ version convert between platform '\n' line endings and + currently chosen line endings. +
      • +
      • + Any character in range 0..255 can be used as a marker. + This can be used to support numbered bookmarks, for example. +
      • +
      • + The default scripting language for ASP can be set. +
      • +
      • + New lexer and other support for crontab files used with the nncron scheduler. +
      • +
      • + Folding of Python improved. +
      • +
      • + The ` character is treated as a Python operator. +
      • +
      • + Line continuations ("\" at end of line) handled inside Python strings. +
      • +
      • + More consistent handling of line continuation ('\' at end of line) in + C++ lexer. + This fixes macro definitions that span more than one line. +
      • +
      • + C++ lexer can understand Doxygen keywords in doc comments. +
      • +
      • + SciTE on Windows allows choosing to open the "open" dialog on the directory + of the current file rather than in the default directory. +
      • +
      • + SciTE on Windows handles command line arguments in "check.if.already.open" + correctly when the current directory of the new instance is different to the + already open instance of SciTE. +
      • +
      • + "cwd" command (change working directory) defined for SciTE director interface. +
      • +
      • + SciTE "Export As HTML" produces better, more compliant, and shorter files. +
      • +
      • + SciTE on Windows allows several options for determining default file name + for exported files. +
      • +
      • + Automatic indentation of Python in SciTE fixed. +
      • +
      • + Exported HTML can support folding. +
      • +
      • + Bug fixed in SCI_GETTEXT macro command of director interface. +
      • +
      • + Cursor leak fixed on GTK+. +
      • +
      • + During SciTE shutdown, "identity" messages are no longer sent over the director interface. +
      • +
      +

      + Release 1.39 +

      +
        +
      • + Released on 22 August 2001. +
      • +
      • + Windows version requires msvcrt.dll to be available so will not work + on original Windows 95 version 1. The msvcrt.dll file is installed + by almost everything including Internet Explorer so should be available. +
      • +
      • + Flattened tree control style folding margin. The SciTE fold.plus option is + now fold.symbols and has more values for the new styles. +
      • +
      • + Mouse dwell events are generated when the user holds the mouse steady + over Scintilla. +
      • +
      • + PositionFromPointClose is like PositionFromPoint but returns + INVALID_POSITION when point outside window or after end of line. +
      • +
      • + Input of Hungarian and Russian characters in GTK+ version works by + truncating input to 8 bits if in the range of normal characters. +
      • +
      • + Better choices for font descriptors on GTK+ for most character sets. +
      • +
      • + GTK+ Scintilla is destroyed upon receiving destroy signal rather than + destroy_event signal. +
      • +
      • + Style setting that force upper or lower case text. +
      • +
      • + Case-insensitive autocompletion lists work correctly. +
      • +
      • + Keywords can be prefix based so ^GTK_ will treat all words that start + with GTK_ as keywords. +
      • +
      • + Horizontal scrolling can be jumpy rather than gradual. +
      • +
      • + GetSelText places a '\0' in the buffer if the selection is empty.. +
      • +
      • + EnsureVisible split into two methods EnsureVisible which will not scroll to show + the line and EnsureVisibleEnforcePolicy which may scroll. +
      • +
      • + Python folder has options to fold multi-line comments and triple quoted strings. +
      • +
      • + C++ lexer handles keywords before '.' like "this.x" in Java as keywords. + Compact folding mode option chooses whether blank lines after a structure are + folded with that structure. Second set of keywords with separate style supported. +
      • +
      • + Ruby lexer handles multi-line comments. +
      • +
      • + VB has folder. +
      • +
      • + PHP lexer has an operator style, handles "<?" and "?>" inside strings + and some comments. +
      • +
      • + TCL lexer which is just an alias for the C++ lexer so does not really + understand TCL syntax. +
      • +
      • + Error lines lexer has styles for Lua error messages and .NET stack traces. +
      • +
      • + Makefile lexer has a target style. +
      • +
      • + Lua lexer handles some [[]] string literals. +
      • +
      • + HTML and XML lexer have a SCE_H_SGML state for tags that + start with "<!". +
      • +
      • + Fixed Scintilla bugs with folding. When modifications were performed near + folded regions sometimes no unfolding occurred when it should have. Deleting a + fold causing character sometimes failed to update fold information correctly. +
      • +
      • + Better support for Scintilla on GTK+ for Win32 including separate + PLAT_GTK_WIN32 definition and correct handling of rectangular selection + with clipboard operations. +
      • +
      • + SciTE has a Tools | Switch Pane (Ctrl+F6) command to switch focus between + edit and output panes. +
      • +
      • + SciTE option output.scroll allows automatic scrolling of output pane to + be turned off. +
      • +
      • + Commands can be typed into the SciTE output pane similar to a shell window. +
      • +
      • + SciTE properties magnification and output magnification set initial zoom levels. +
      • +
      • + Option for SciTE comment block command to place comments at start of line. +
      • +
      • + SciTE for Win32 has an option to minimize to the tray rather than the task bar. +
      • +
      • + Close button on SciTE tool bar for Win32. +
      • +
      • + SciTE compiles with GCC 3.0. +
      • +
      • + SciTE's automatic indentation of C++ handles braces without preceding keyword + correctly. +
      • +
      • + Bug fixed with GetLine method writing past the end of where it should. +
      • +
      • + Bug fixed with mouse drag automatic scrolling when some lines were folded. +
      • +
      • + Bug fixed because caret XEven setting was inverted. +
      • +
      • + Bug fixed where caret was initially visible even though window was not focussed. +
      • +
      • + Bug fixed where some file names could end with "\\" which caused slow + downs on Windows 9x. +
      • +
      • + On Win32, SciTE Replace dialog starts with focus on replacement text. +
      • +
      • + SciTE Go to dialog displays correct current line. +
      • +
      • + Fixed bug with SciTE opening multiple files at once. +
      • +
      • + Fixed bug with Unicode key values reported to container truncated. +
      • +
      • + Fixed bug with unnecessary save point notifications. +
      • +
      • + Fixed bugs with indenting and unindenting at start of line. +
      • +
      • + Monospace Font setting behaves more consistently. +
      • +
      +

      + Release 1.38 +

      +
        +
      • + Released on 23 May 2001. +
      • +
      • + Loadable lexer plugins on Windows. +
      • +
      • + Ruby lexer and support. +
      • +
      • + Lisp lexer and support. +
      • +
      • + Eiffel lexer and support. +
      • +
      • + Modes for better handling of Tab and BackSpace keys within + indentation. Mode to avoid autocompletion list cancelling when + there are no viable matches. +
      • +
      • + ReplaceTarget replaced with two calls ReplaceTarget + (which is incompatible with previous ReplaceTarget) and + ReplaceTargetRE. Both of these calls have a count first + parameter which allows using strings containing nulls. + SearchInTarget and SetSearchFlags functions allow + specifying a search in several simple steps which helps + some clients which can not create structs or pointers easily. +
      • +
      • + Asian language input through an Input Method Editor works + on Windows 2000. +
      • +
      • + On Windows, control characters can be entered through use of + the numeric keypad in conjunction with the Alt key. +
      • +
      • + Document memory allocation changed to grow exponentially + which reduced time to load a 30 Megabyte file from + 1000 seconds to 25. Change means more memory may be used. +
      • +
      • + Word part movement keys now handled in Scintilla rather than + SciTE. +
      • +
      • + Regular expression '^' and '$' work more often allowing insertion + of text at start or end of line with a replace command. + Backslash quoted control characters \a, \b, \f, \t, and \v + recognized within sets. +
      • +
      • + Session files for SciTE. +
      • +
      • + Export as PDF command hidden in SciTE as it often failed. + Code still present so can be turned on by those willing to cope. +
      • +
      • + Bug fixed in HTML lexer handling % before > as end ASP + even when no start ASP encountered. + Bug fixed when scripts ended with a quoted string and + end tag was not seen. +
      • +
      • + Bug fixed on Windows where context menu key caused menu to + appear in corner of screen rather than within window. +
      • +
      • + Bug fixed in SciTE's Replace All command not processing + whole file when replace string longer than search string. +
      • +
      • + Bug fixed in SciTE's MRU list repeating entries if Ctrl+Tab + used when all entries filled. +
      • +
      • + ConvertEOLs call documentation fixed. +
      • +
      +

      + Release 1.37 +

      +
        +
      • + Released on 17 April 2001. +
      • +
      • + Bug fixed with scroll bars being invisible on GTK+ 1.2.9. +
      • +
      • + Scintilla and SciTE support find and replace using simple regular + expressions with tagged expressions. SciTE supports C '\' escapes + in the Find and Replace dialogs. + Replace in Selection available in SciTE. +
      • +
      • + Scintilla has a 'target' feature for replacing code rapidly without + causing display updates. +
      • +
      • + Scintilla and SciTE on GTK+ support file dropping from file managers + such as Nautilus and gmc. Files or other URIs dropped on Scintilla + result in a URIDropped notification. +
      • +
      • + Lexers may have separate Lex and Fold functions. +
      • +
      • + Lexer infrastructure improved to allow for plug in lexers and for referring + to lexers by name rather than by ID. +
      • +
      • + Ada lexer and support added. +
      • +
      • + Option in both Scintilla and SciTE to treat both left and right margin + as equally important when repositioning visible area in response to + caret movement. Default is to prefer visible area positioning which + minimizes the horizontal scroll position thus favouring the left margin. +
      • +
      • + Caret line highlighting. +
      • +
      • + Commands to delete from the caret to the end of line and + from the caret to the beginning of line. +
      • +
      • + SciTE has commands for inserting and removing block comments and + for inserting stream comments. +
      • +
      • + SciTE Director interface uses C++ '\' escapes to send control characters. +
      • +
      • + SciTE Director interface adds more commands including support for macros. +
      • +
      • + SciTE has menu options for recording and playing macros which are visible + when used with a companion program that supports these features. +
      • +
      • + SciTE has an Expand Abbreviation command. + Abbreviations are stored in a global abbrev.properties file. +
      • +
      • + SciTE has a Full Screen command to switch between a normal window + size and using the full screen. On Windows, the menu bar can be turned + off when in full screen mode. +
      • +
      • + SciTE has a Use monospaced font command to switch between the normal + set of fonts and one size of a particular fixed width font. +
      • +
      • + SciTE's use of tabs can be controlled for particular file names + as well as globally. +
      • +
      • + The contents of SciTE's status bar can be defined by a property and + include variables. On Windows, several status bar definitions can be active + with a click on the status bar cycling through them. +
      • +
      • + Copy as RTF command in SciTE on Windows to allow pasting + styled text into word processors. +
      • +
      • + SciTE can allow the use of non-alphabetic characters in + Complete Symbol lists and can automatically display this autocompletion + list when a trigger character such as '.' is typed. + Complete word can be set to pop up when the user is typing a word and + there is only one matching word in the document. +
      • +
      • + SciTE lists the imported properties files on a menu to allow rapid + access to them. +
      • +
      • + SciTE on GTK+ improvements to handling accelerator keys and focus + in dialogs. Message boxes respond to key presses without the Alt key as + they have no text entries to accept normal keystrokes. +
      • +
      • + SciTE on GTK+ sets the application icon. +
      • +
      • + SciTE allows setting the colours used to indicate the current + error line. +
      • +
      • + Variables within PHP strings have own style. Keyword list updated. +
      • +
      • + Keyword list for Lua updated for Lua 4.0. +
      • +
      • + Bug fixed in rectangular selection where rectangle still appeared + selected after using cursor keys to move caret. +
      • +
      • + Bug fixed in C++ lexer when deleting a '{' controlling a folded range + led to that range becoming permanently invisible. +
      • +
      • + Bug fixed in Batch lexer where comments were not recognized. +
      • +
      • + Bug fixed with undo actions coalescing into steps incorrectly. +
      • +
      • + Bug fixed with Scintilla on GTK+ positioning scroll bars 1 pixel + over the Scintilla window leading to their sides being chopped off. +
      • +
      • + Bugs fixed in SciTE when doing some actions led to the start + or end of the file being displayed rather than the current location. +
      • +
      • + Appearance of calltips fixed to look like document text including + any zoom factor. Positioned to be outside current line even when + multiple fonts and sizes used. +
      • +
      • + Bug fixed in Scintilla macro support where typing Enter caused both a newline + command and newline character insertion to be recorded. +
      • +
      • + Bug fixed in SciTE on GTK+ where focus was moving + between widgets incorrectly. +
      • +
      • + Bug fixed with fold symbols sometimes not updating when + the text changed. +
      • +
      • + Bugs fixed in SciTE's handling of folding commands. +
      • +
      • + Deprecated undo collection enumeration removed from API. +
      • +
      +

      + Release 1.36 +

      +
        +
      • + Released on 1 March 2001. +
      • +
      • + Scintilla supports GTK+ on Win32. +
      • +
      • + Some untested work on making Scintilla and SciTE 64 bit compatible. + For users on GTK+ this requires including Scintilla.h before + ScintillaWidget.h. +
      • +
      • + HTML lexer allows folding HTML. +
      • +
      • + New lexer for Avenue files which are used in the ESRI ArcView GIS. +
      • +
      • + DOS Batch file lexer has states for '@', external commands, variables and + operators. +
      • +
      • + C++ lexer can fold comments of /* .. */ form. +
      • +
      • + Better disabling of pop up menu items in Scintilla when in read-only mode. +
      • +
      • + Starting to move to Doxygen compatible commenting. +
      • +
      • + Director interface on Windows enables another application to control SciTE. +
      • +
      • + Opening SciTE on Windows 9x sped up greatly for some cases. +
      • +
      • + The command.build.directory property allows SciTE to run the build + command in a different directory to the source files. +
      • +
      • + SciTE on Windows allows setting foreground and background colours + for printed headers and footers. +
      • +
      • + Bug fixed in finding calltips in SciTE which led to no calltips for some identifiers. +
      • +
      • + Documentation added for lexers and for the extension and director interfaces. +
      • +
      • + SciTE menus rearranged with new View menu taking over some of the items that + were under the Options menu. Clear All Bookmarks command added. +
      • +
      • + Clear Output command in SciTE. +
      • +
      • + SciTE on Windows gains an Always On Top command. +
      • +
      • + Bug fixed in SciTE with attempts to define properties recursively. +
      • +
      • + Bug fixed in SciTE properties where only one level of substitution was done. +
      • +
      • + Bug fixed in SciTE properties where extensions were not being + matched in a case insensitive manner. +
      • +
      • + Bug fixed in SciTE on Windows where the Go to dialog displays the correct + line number. +
      • +
      • + In SciTE, if fold.on.open set then switching buffers also performs fold. +
      • +
      • + Bug fixed in Scintilla where ensuring a line was visible in the presence of folding + operated on the document line instead of the visible line. +
      • +
      • + SciTE command line processing modified to operate on arguments in order and in + two phases. First any arguments before the first file name are processed, then the + UI is opened, then the remaining arguments are processed. Actions defined for the + Director interface (currently only "open") may also be used on the command line. + For example, "SciTE -open:x.txt" will start SciTE and open x.txt. +
      • +
      • + Numbered menu items SciTE's Buffers menu and the Most Recently Used portion + of the File menu go from 1..0 rather than 0..9. +
      • +
      • + The tab bar in SciTE for Windows has numbers. + The tab.hide.one option hides the tab bar until there is more than one buffer open. +
      • +
      +

      + Release 1.35 +

      +
        +
      • + Released on 29 January 2001. +
      • +
      • + Rewritten and simplified widget code for the GTK+ version to enhance + solidity and make more fully compliant with platform norms. This includes more + normal handling of keystrokes so they are forwarded to containers correctly. +
      • +
      • + User defined lists can be shown. +
      • +
      • + Many fixes to the Perl lexer. +
      • +
      • + Pascal lexer handles comments more correctly. +
      • +
      • + C/C++/Java/JavaScipt lexer has a state for line doc comments. +
      • +
      • + Error output lexer understands Sun CC messages. +
      • +
      • + Make file lexer has variable, preprocessor, and operator states. +
      • +
      • + Wider area given to an italics character that is at the end of a line to prevent it + being cut off. +
      • +
      • + Call to move the caret inside the currently visible area. +
      • +
      • + Paste Rectangular will space fill on the left hand side of the pasted text as + needed to ensure it is kept rectangular. +
      • +
      • + Cut and Paste Rectangular does nothing in read-only mode. +
      • +
      • + Undo batching changed so that a paste followed by typing creates two undo actions.. +
      • +
      • + A "visibility policy" setting for Scintilla determines which range of lines are displayed + when a particular line is moved to. Also exposed as a property in SciTE. +
      • +
      • + SciTE command line allows property settings. +
      • +
      • + SciTE has a View Output command to hide or show the output pane. +
      • +
      • + SciTE's Edit menu has been split in two with searching commands moved to a + new Search menu. Find Previous and Previous Bookmark are in the Search menu. +
      • +
      • + SciTE on Windows has options for setting print margins, headers and footers. +
      • +
      • + SciTE on Windows has tooltips for toolbar. +
      • +
      • + SciTE on GTK+ has properties for setting size of file selector. +
      • +
      • + Visual and audio cues in SciTE on Windows enhanced. +
      • +
      • + Fixed performance problem in SciTE for GTK+ by dropping the extra 3D + effect on the content windows. +
      • +
      • + Fixed problem in SciTE where choosing a specific lexer then meant + that no lexer was chosen when files opened. +
      • +
      • + Default selection colour changed to be visible on low colour displays. +
      • +
      • + Fixed problems with automatically reloading changed documents in SciTE on + Windows. +
      • +
      • + Fixed problem with uppercase file extensions in SciTE. +
      • +
      • + Fixed some problems when using characters >= 128, some of which were being + incorrectly treated as spaces. +
      • +
      • + Fixed handling multiple line tags, non-inline scripts, and XML end tags /> in HTML/XML lexer. +
      • +
      • + Bookmarks in SciTE no longer disappear when switching between buffers. +
      • +
      +

      + Release 1.34 +

      +
        +
      • + Released on 28 November 2000. +
      • +
      • + Pascal lexer. +
      • +
      • + Export as PDF in SciTE. +
      • +
      • + Support for the OpenVMS operating system in SciTE. +
      • +
      • + SciTE for GTK+ can check for another instance of SciTE + editing a file and switch to it rather than open a second instance + on one file. +
      • +
      • + Fixes to quoting and here documents in the Perl lexer. +
      • +
      • + SciTE on Windows can give extra visual and audio cues when a + warning is shown or find restarts from beginning of file. +
      • +
      • + Open Selected Filename command in SciTE. Also understands some + warning message formats. +
      • +
      • + Wider area for line numbers when printing. +
      • +
      • + Better scrolling performance on GTK+. +
      • +
      • + Fixed problem where rectangles with negative coordinates were + invalidated leading to trouble with platforms that use + unsigned coordinates. +
      • +
      • + GTK+ Scintilla uses more compliant signalling code so that keyboard + events should propagate to containers. +
      • +
      • + Bug fixed with opening full or partial paths. +
      • +
      • + Improved handling of paths in error messages in SciTE. +
      • +
      • + Better handling of F6 in SciTE. +
      • +
      +

      + Release 1.33 +

      +
        +
      • + Released on 6 November 2000. +
      • +
      • + XIM support for the GTK+ version of Scintilla ensures that more non-English + characters can be typed. +
      • +
      • + Caret may be 1, 2, or 3 pixels wide. +
      • +
      • + Cursor may be switched to wait image during lengthy processing. +
      • +
      • + Scintilla's internal focus flag is exposed for clients where focus is handled in + complex ways. +
      • +
      • + Error status defined for Scintilla to hold indication that an operation failed and the reason + for that failure. No detection yet implemented but clients may start using the interface + so as to be ready for when it does. +
      • +
      • + Context sensitive help in SciTE. +
      • +
      • + CurrentWord property available in SciTE holding the value of the word the + caret is within or near. +
      • +
      • + Apache CONF file lexer. +
      • +
      • + Changes to Python lexer to allow 'as' as a context sensitive keyword and the + string forms starting with u, r, and ur to be recognized. +
      • +
      • + SCN_POSCHANGED notification now working and SCN_PAINTED notification added. +
      • +
      • + Word part movement commands for cursoring between the parts of reallyLongCamelIdentifiers and + other_ways_of_making_words. +
      • +
      • + When text on only one line is selected, Shift+Tab moves to the previous tab stop. +
      • +
      • + Tab control available for Windows version of SciTE listing all the buffers + and making it easy to switch between them. +
      • +
      • + SciTE can be set to automatically determine the line ending type from the contents of a + file when it is opened. +
      • +
      • + Dialogs in GTK+ version of SciTE made more modal and have accelerator keys. +
      • +
      • + Find in Files command in GTK+ version of SciTE allows choice of directory. +
      • +
      • + On Windows, multiple files can be opened at once. +
      • +
      • + SciTE source broken up into more files. +
      • +
      • + Scintilla headers made safe for C language, not just C++. +
      • +
      • + New printing modes - force background to white and force default background to white. +
      • +
      • + Automatic unfolding not occurring when Enter pressed at end of line bug fixed. +
      • +
      • + Bugs fixed in line selection. +
      • +
      • + Bug fixed with escapes in PHP strings in the HTML lexer. +
      • +
      • + Bug fixed in SciTE for GTK+ opening files when given full paths. +
      • +
      • + Bug fixed in autocompletion where user backspaces into existing text. +
      • +
      • + Bugs fixed in opening files and ensuring they are saved before running. + A case bug also fixed here. +
      • +
      +

      + Release 1.32 +

      +
        +
      • + Released on 8 September 2000. +
      • +
      • + Fixes bugs in complete word and related code. Protection against a bug when + receiving a bad argument. +
      • +
      +

      + Release 1.31 +

      +
        +
      • + Released on 6 September 2000. +
      • +
      • + Scintilla is available as a COM control from the scintillactrl module in CVS. +
      • +
      • + Style setting to underline text. Exposed in SciTE as "underlined". +
      • +
      • + Style setting to make text invisible. +
      • +
      • + SciTE has an extensibility interface that can be used to implement features such as + a scripting language or remote control. An example use of this is the extlua module + available from CVS which allows SciTE to be scripted in Lua. +
      • +
      • + Many minor fixes to all of the lexers. +
      • +
      • + New lexer for diff and patch files. +
      • +
      • + Error message lexer understands Perl error messages. +
      • +
      • + C/C++/Java lexer now supports C#, specifically verbatim strings and + @ quoting of identifiers that are the same as keywords. SciTE has + a set of keywords for C# and a build command set up for C#. +
      • +
      • + Scintilla property to see whether in overtype or insert state. +
      • +
      • + PosChanged notification fired when caret moved. +
      • +
      • + Comboboxes in dialogs in SciTE on Windows can be horizontally scrolled. +
      • +
      • + Autocompletion and calltips can treat the document as case sensitive or + case insensitive. +
      • +
      • + Autocompletion can be set to automatically choose the only + element in a single element list. +
      • +
      • + Set of characters that automatically complete an autocompletion list + can be set. +
      • +
      • + SciTE command to display calltip - useful when dropped because of + editing. +
      • +
      • + SciTE has a Revert command to go back to the last saved version. +
      • +
      • + SciTE has an Export as RTF command. Save as HTML is renamed + to Export as HTML and is located on the Export sub menu. +
      • +
      • + SciTE command "Complete Word" searches document for any + words starting with characters before caret. +
      • +
      • + SciTE options for changing aspects of the formatting of files exported + as HTML or RTF. +
      • +
      • + SciTE "character.set" option for choosing the character + set for all fonts. +
      • +
      • + SciTE has a "Toggle all folds" command. +
      • +
      • + The makefiles have changed. The makefile_vc and + makefile_bor files in scintilla/win32 and scite/win32 have been + merged into scintilla/win32/scintilla.mak and scite/win32/scite.mak. + DEBUG may be defined for all make files and this will turn on + assertions and for some make files will choose other debugging + options. +
      • +
      • + To make debugging easier and allow good use of BoundsChecker + there is a Visual C++ project file in scite/boundscheck that builds + all of Scintilla and SciTE into one executable. +
      • +
      • + The size of the SciTE output window can be set with the + output.horizontal.size and output.vertical.size settings. +
      • +
      • + SciTE status bar indicator for insert or overwrite mode. +
      • +
      • + Performance improvements to autocompletion and calltips. +
      • +
      • + A caret redraw problem when undoing is fixed. +
      • +
      • + Crash with long lines fixed. +
      • +
      • + Bug fixed with merging markers when lines merged. +
      • +
      +

      + Release 1.30 +

      +
        +
      • + Released on 26 July 2000. +
      • +
      • + Much better support for PHP which is now an integral part of the HTML support. +
      • +
      • + Start replacement of Windows-specific APIs with cross platform APIs. + In 1.30, the new APIs are introduced but the old APIs are still available. + For the GTK+ version, may have to include "WinDefs.h" explicitly to + use the old APIs. +
      • +
      • + "if" and "import" statements in SciTE properties files allows modularization into + language-specific properties files and choices based upon platform. + This means that SciTE is delivered with 9 language-specific properties files + as well as the standard SciTEGlobal.properties file. +
      • +
      • + Much lower resource usage on Windows 9x. +
      • +
      • + "/p" option in SciTE on Windows for printing a file and then exiting. +
      • +
      • + Options for printing with inverted brightness (when the screen is set to use + a dark background) and to force black on white printing. +
      • +
      • + Option for printing magnified or miniaturized from screen settings. +
      • +
      • + In SciTE, Ctrl+F3 and Ctrl+Shift+F3 find the selection in the forwards and backwards + directions respectively. +
      • +
      • + Auto-completion lists may be set to cancel when the cursor goes before + its start position or before the start of string being completed. +
      • +
      • + Auto-completion lists automatically size more sensibly. +
      • +
      • + SCI_CLEARDOCUMENTSTYLE zeroes all style bytes, ensures all + lines are shown and deletes all folding information. +
      • +
      • + On Windows, auto-completion lists are visually outdented rather than indented. +
      • +
      • + Close all command in SciTE. +
      • +
      • + On Windows multiple files can be dragged into SciTE. +
      • +
      • + When saving a file, the SciTE option save.deletes.first deletes it before doing the save. + This allows saving with a different capitalization on Windows. +
      • +
      • + When use tabs option is off pressing the tab key inserts spaces. +
      • +
      • + Bug in indicators leading to extra line drawn fixed. +
      • +
      +

      + Release 1.28 +

      +
        +
      • + Released on 27 June 2000. +
      • +
      • + Fixes crash in indentation guides when indent size set to 0. +
      • +
      • + Fixes to installation on GTK+/Linux. User properties file on GTK+ has a dot at front of name: + .SciTEUser.properties. Global properties file location configurable at compile time + defaulting to $prefix/share/scite. $prefix determined from Gnome if present else its + /usr/local and can be overridden by installer. Gnome menu integration performed in + make install if Gnome present. +
      • +
      +

      + Release 1.27 +

      +
        +
      • + Released on 23 June 2000. +
      • +
      • + Indentation guides. View whitespace mode may be set to not display whitespace + in indentation. +
      • +
      • + Set methods have corresponding gets for UndoCollection, BufferedDraw, + CodePage, UsePalette, ReadOnly, CaretFore, and ModEventMask. +
      • +
      • + Caret is continuously on rather than blinking while typing or holding down + delete or backspace. And is now always shown if non blinking when focused on GTK+. +
      • +
      • + Bug fixed in SciTE with file extension comparison now done in case insensitive way. +
      • +
      • + Bugs fixed in SciTE's file path handling on Windows. +
      • +
      • + Bug fixed with preprocessor '#' last visible character causing hang. +
      • +
      +

      + Release 1.26 +

      +
        +
      • + Released on 13 June 2000. +
      • +
      • + Support for the Lua language in both Scintilla and SciTE. +
      • +
      • + Multiple buffers may be open in SciTE. +
      • +
      • + Each style may have a character set configured. This may determine + the characters that are displayed by the style. +
      • +
      • + In the C++ lexer, lexing of preprocessor source may either treat it all as being in + the preprocessor class or only the initial # and preprocessor command word as + being in the preprocessor class. +
      • +
      • + Scintilla provides SCI_CREATEDOCUMENT, SCI_ADDREFDOCUMENT, and + SCI_RELEASEDOCUMENT to make it easier for a container to deal with multiple + documents. +
      • +
      • + GTK+ specific definitions in Scintilla.h were removed to ScintillaWidget.h. All GTK+ clients will need to + #include "ScintillaWidget.h". +
      • +
      • + For GTK+, tools can be executed in the background by setting subsystem to 2. +
      • +
      • + Keys in the properties files are now case sensitive. This leads to a performance increase. +
      • +
      • + Menu to choose which lexer to use on a file. +
      • +
      • + Tab size dialog on Windows. +
      • +
      • + File dialogs enlarged on GTK+. +
      • +
      • + Match Brace command bound to Ctrl+E on both platforms with Ctrl+] a synonym on Windows. + Ctrl+Shift+E is select to matching brace. Brace matching tries to match to either the inside or the + outside, depending on whether the cursor is inside or outside the braces initially. + View End of Line bound to Ctrl+Shift+O. +
      • +
      • + The Home key may be bound to move the caret to either the start of the line or the start of the + text on the line. +
      • +
      • + Visual C++ project file for SciTE. +
      • +
      • + Bug fixed with current x location after Tab key. +
      • +
      • + Bug fixed with hiding fold margin by setting fold.margin.width to 0. +
      • +
      • + Bugs fixed with file name confusion on Windows when long and short names used, or different capitalizations, + or relative paths. +
      • +
      +

      + Release 1.25 +

      +
        +
      • + Released on 9 May 2000. +
      • +
      • + Some Unicode support on Windows. Treats buffer and API as UTF-8 and displays + through UCS-2 of Windows. +
      • +
      • + Automatic indentation. Indentation size can be different to tab size. +
      • +
      • + Tool bar. +
      • +
      • + Status bar now on Windows as well as GTK+. +
      • +
      • + Input fields in Find and Replace dialogs now have history on both Windows and + GTK+. +
      • +
      • + Auto completion list items may be separated by a chosen character to allow spaces + in items. The selected item may be changed through the API. +
      • +
      • + Horizontal scrollbar can be turned off. +
      • +
      • + Property to remove trailing spaces when saving file. +
      • +
      • + On Windows, changed font size calculation to be more compatible with + other applications. +
      • +
      • + On GTK+, SciTE's global properties files are looked for in the directory specified in the + SCITE_HOME environment variable if it is set. This allows hiding in a dot directory. +
      • +
      • + Keyword lists in SciTE updated for JavaScript to include those destined to be used in + the future. IDL includes XPIDL keywords as well as MSIDL keywords. +
      • +
      • + Zoom level can be set and queried through API. +
      • +
      • + New notification sent before insertions and deletions. +
      • +
      • + LaTeX lexer. +
      • +
      • + Fixes to folding including when deletions and additions are performed. +
      • +
      • + Fix for crash with very long lines. +
      • +
      • + Fix to affect all of rectangular selections with deletion and case changing. +
      • +
      • + Removed non-working messages that had been included only for Richedit compatibility. +
      • +
      +

      + Release 1.24 +

      +
        +
      • + Released on 29 March 2000. +
      • +
      • + Added lexing of IDL based on C++ lexer with extra UUID lexical class. +
      • +
      • + Functions and associated keys for Line Delete, Line Cut, Line Transpose, + Selection Lower Case and Selection Upper Case. +
      • +
      • + Property setting for SciTE, eol.mode, chooses initial state of line end characters. +
      • +
      • + Fixed bugs in undo history with small almost-contiguous changes being incorrectly coalesced. +
      • +
      • + Fixed bugs with incorrect expansion of ContractionState data structures causing crash. +
      • +
      • + Fixed bugs relating to null fonts. +
      • +
      • + Fixed bugs where recolourization was not done sometimes when required. +
      • +
      • + Fixed compilation problems with SVector.h. +
      • +
      • + Fixed bad setting of fold points in Python. +
      • +
      +

      + Release 1.23 +

      +
        +
      • + Released on 21 March 2000. +
      • +
      • + Directory structure to separate on basis of product (Scintilla, SciTE, DMApp) + and environment (Cross-platform, Win32, GTK+). +
      • +
      • + Download packaging to allow download of the source or platform dependent executables. +
      • +
      • + Source code now available from CVS at SourceForge. +
      • +
      • + Very simple Windows-only demonstration application DMApp is available from cvs as dmapp. +
      • +
      • + Lexing functionality may optionally be included in Scintilla rather than be provided by + the container. +
      • +
      • + Set of lexers included is determined at link time by defining which of the Lex* object files + are linked in. +
      • +
      • + On Windows, the SciLexer.DLL extends Scintilla.DLL with the standard lexers. +
      • +
      • + Enhanced HTML lexer styles embedded VBScript and Python. + ASP segments are styled and ASP scripts in JavaScript, VBScript and Python are styled. +
      • +
      • + PLSQL and PHP supported. +
      • +
      • + Maximum number of lexical states extended to 128. +
      • +
      • + Lexers may store per line parse state for multiple line features such as ASP script language choice. +
      • +
      • + Lexing API simplified. +
      • +
      • + Project file for Visual C++. +
      • +
      • + Can now cycle through all recent files with Ctrl+Tab in SciTE. +
      • +
      • + Bookmarks in SciTE. +
      • +
      • + Drag and drop copy works when dragging to the edge of the selection. +
      • +
      • + Fixed bug with value sizes in properties file. +
      • +
      • + Fixed bug with last line in properties file not being used. +
      • +
      • + Bug with multiple views of one document fixed. +
      • +
      • + Keypad now works on GTK+. +
      • +
      +

      + Release 1.22 +

      +
        +
      • + Released on 27 February 2000. +
      • +
      • + wxWindows platform defined. + Implementation for wxWindows will be available separately + from main Scintilla distribution. +
      • +
      • + Line folding in Scintilla. +
      • +
      • + SciTE performs syntax directed folding for C/C++/Java/JavaScript and for Python. +
      • +
      • + Optional macro recording support. +
      • +
      • + User properties file (SciTEUser.properties) allows for customization by the user + that is not overwritten with each installation of SciTE. +
      • +
      • + Python lexer detects and highlights inconsistent indentation. +
      • +
      • + Margin API made more orthogonal. SCI_SETMARGINWIDTH and SCI_SETLINENUMBERWIDTH + are deprecated in favour of this new API. +
      • +
      • + Margins may be made sensitive to forward mouse click events to container. +
      • +
      • + SQL lexer and styles included. +
      • +
      • + Perl lexer handles regular expressions better. +
      • +
      • + Caret policy determines how closely caret is tracked by visible area. +
      • +
      • + New marker shapes: arrow pointing down, plus and minus. +
      • +
      • + Optionally display full path in title rather than just file name. +
      • +
      • + Container is notified when Scintilla gains or loses focus. +
      • +
      • + SciTE handles focus in a more standard way and applies the main + edit commands to the focused pane. +
      • +
      • + Container is notified when Scintilla determines that a line needs to be made visible. +
      • +
      • + Document watchers receive notification when document about to be deleted. +
      • +
      • + Document interface allows access to list of watchers. +
      • +
      • + Line end determined correctly for lines ending with only a '\n'. +
      • +
      • + Search variant that searches form current selection and sets selection. +
      • +
      • + SciTE understands format of diagnostic messages from WScript. +
      • +
      • + SciTE remembers top line of window for each file in MRU list so switching to a recent file + is more likely to show the same text as when the file was previously visible. +
      • +
      • + Document reference count now initialized correctly. +
      • +
      • + Setting a null document pointer creates an empty document. +
      • +
      • + WM_GETTEXT can no longer overrun buffer. +
      • +
      • + Polygon drawing bug fixed on GTK+. +
      • +
      • + Java and JavaScript lexers merged into C++ lexer. +
      • +
      • + C++ lexer indicates unterminated strings by colouring the end of the line + rather than changing the rest of the file to string style. This is less + obtrusive and helps the folding. +
      • +
      +

      + Release 1.21 +

      +
        +
      • + Released on 2 February 2000. +
      • +
      • + Blank margins on left and right side of text. +
      • +
      • + SCN_CHECKBRACE renamed SCN_UPDATEUI and made more efficient. +
      • +
      • + SciTE source code refactored into platform independent and platform specific classes. +
      • +
      • + XML and Perl subset lexers in SciTE. +
      • +
      • + Large improvement to lexing speed. +
      • +
      • + A new subsystem, 2, allows use of ShellExec on Windows. +
      • +
      • + Borland compatible makefile. +
      • +
      • + Status bar showing caret position in GTK+ version of SciTE. +
      • +
      • + Bug fixes to selection drawing when part of selection outside window, mouse release over + scroll bars, and scroll positioning after deletion. +
      • +
      +

      + Release 1.2 +

      +
        +
      • + Released on 21 January 2000. +
      • +
      • + Multiple views of one document. +
      • +
      • + Rectangular selection, cut, copy, paste, drag and drop. +
      • +
      • + Long line indication. +
      • +
      • + Reverse searching +
      • +
      • + Line end conversion. +
      • +
      • + Generic autocompletion and calltips in SciTE. +
      • +
      • + Call tip background colour can be set. +
      • +
      • + SCI_MARKERPREV for moving to a previous marker. +
      • +
      • + Caret kept more within window where possible. +
      • +
      +

      + Release 1.15 +

      +
        +
      • + Released on 15 December 1999. +
      • +
      • + Brace highlighting and badlighting (for mismatched braces). +
      • +
      • + Visible line ends. +
      • +
      • + Multiple line call tips. +
      • +
      • + Printing now works from SciTE on Windows. +
      • +
      • + SciTE has a global "*" lexer style that is used as the basis for all the lexers' styles. +
      • +
      • + Fixes some warnings on GTK+ 1.2.6. +
      • +
      • + Better handling of modal dialogs on GTK+. +
      • +
      • + Resize handle drawn on pane splitter in SciTE on GTK+ so it looks more like a regular GTK+ + *paned widget. +
      • +
      • + SciTE does not place window origin offscreen if no properties file found on GTK+. +
      • +
      • + File open filter remembered in SciTE on Windows. +
      • +
      • + New mechanism using style numbers 32 to 36 standardizes the setting of styles for brace + highlighting, brace badlighting, line numbers, control characters and the default style. +
      • +
      • + Old messages SCI_SETFORE .. SCI_SETFONT have been replaced by the default style 32. The old + messages are deprecated and will disappear in a future version. +
      • +
      +

      + Release 1.14 +

      +
        +
      • + Released on 20 November 1999. +
      • +
      • + Fixes a scrolling bug reported on GTK+. +
      • +
      +

      + Release 1.13 +

      +
        +
      • + Released on 18 November 1999. +
      • +
      • + Fixes compilation problems with the mingw32 GCC 2.95.2 on Windows. +
      • +
      • + Control characters are now visible. +
      • +
      • + Performance has improved, particularly for scrolling. +
      • +
      • + Windows RichEdit emulation is more accurate. This may break client code that uses these + messages: EM_GETLINE, EM_GETLINECOUNT, EM_EXGETSEL, EM_EXSETSEL, EM_EXLINEFROMCHAR, + EM_LINELENGTH, EM_LINEINDEX, EM_CHARFROMPOS, EM_POSFROMCHAR, and EM_GETTEXTRANGE. +
      • +
      • + Menus rearranged and accelerator keys set for all static items. +
      • +
      • + Placement of space indicators in view whitespace mode is more accurate with some fonts. +
      • +
      +

      + Release 1.12 +

      +
        +
      • + Released on 9 November 1999. +
      • +
      • + Packaging error in 1.11 meant that the compilation error was not fixed in that release. + Linux/GTK+ should compile with GCC 2.95 this time. +
      • +
      +

      + Release 1.11 +

      +
        +
      • + Released on 7 November 1999. +
      • +
      • + Fixed a compilation bug in ScintillaGTK.cxx. +
      • +
      • + Added a README file to explain how to build. +
      • +
      • + GTK+/Linux downloads now include documentation. +
      • +
      • + Binary only Sc1.EXE one file download for Windows. +
      • +
      +

      + Release 1.1 +

      +
        +
      • + Released on 6 November 1999. +
      • +
      • + Major restructuring for better modularity and platform independence. +
      • +
      • + Inter-application drag and drop. +
      • +
      • + Printing support in Scintilla on Windows. +
      • +
      • + Styles can select colouring to end of line. This can be used when a file contains more than + one language to differentiate between the areas in each language. An example is the HTML + + JavaScript styling in SciTE. +
      • +
      • + Actions can be grouped in the undo stack, so they will be undone together. This grouping is + hierarchical so higher level actions such as replace all can be undone in one go. Call to + discover whether there are any actions to redo. +
      • +
      • + The set of characters that define words can be changed. +
      • +
      • + Markers now have identifiers and can be found and deleted by their identifier. The empty + marker type can be used to make a marker that is invisible and which is only used to trace + where a particular line moves to. +
      • +
      • + Double click notification. +
      • +
      • + HTML styling in SciTE also styles embedded JavaScript. +
      • +
      • + Additional tool commands can be added to SciTE. +
      • +
      • + SciTE option to allow reloading if changed upon application activation and saving on + application deactivation. Not yet working on GTK+ version. +
      • +
      • + Entry fields in search dialogs remember last 10 user entries. Not working in all cases in + Windows version. +
      • +
      • + SciTE can save a styled copy of the current file in HTML format. As SciTE does not yet + support printing, this can be used to print a file by then using a browser to print the + HTML file. +
      • +
      +

      + Release 1.02 +

      +
        +
      • + Released on 1 October 1999. +
      • +
      • + GTK+ version compiles with GCC 2.95. +
      • +
      • + Properly deleting objects when window destroyed under GTK+. +
      • +
      • + If the selection is not empty backspace deletes the selection. +
      • +
      • + Some X style middle mouse button handling for copying the primary selection to and from + Scintilla. Does not work in all cases. +
      • +
      • + HTML styling in SciTE. +
      • +
      • + Stopped dirty flag being set in SciTE when results pane modified. +
      • +
      +

      + Release 1.01 +

      +
        +
      • + Released on 28 September 1999. +
      • +
      • + Better DBCS support on Windows including IME. +
      • +
      • + Wheel mouse support for scrolling and zooming on Windows. Zooming with Ctrl+KeypadPlus and + Ctrl+KeypadMinus. +
      • +
      • + Performance improvements especially on GTK+. +
      • +
      • + Caret blinking and settable colour on both GTK+ and Windows. +
      • +
      • + Drag and drop within a Scintilla window. On Windows, files can be dragged into SciTE. +
      • +
      +

      + Release 1.0 +

      +
        +
      • + Released on 17 May 1999. +
      • +
      • + Changed name of "Tide" to "SciTE" to avoid clash with a TCL based IDE. "SciTE" is a + SCIntilla based Text Editor and is Latin meaning something like "understanding in a neat + way" and is also an Old English version of the word "shit". +
      • +
      • + There is a SCI_AUTOCSTOPS message for defining a string of characters that will stop + autocompletion mode. Autocompletion mode is cancelled when any cursor movement occurs apart + from backspace. +
      • +
      • + GTK+ version now splits horizontally as well as vertically and all dialogs cancel when the + escape key is pressed. +
      • +
      +

      + Beta release 0.93 +

      +
        +
      • + Released on 12 May 1999. +
      • +
      • + A bit more robust than 0.92 and supports SCI_MARKERNEXT message. +
      • +
      +

      + Beta release 0.92 +

      +
        +
      • + Released on 11 May 1999. +
      • +
      • + GTK+ version now contains all features of Windows version with some very small differences. + Executing programs works much better now. +
      • +
      • + New palette code to allow more colours to be displayed in 256 colour screen modes. A line + number column can be displayed to the left of the selection margin. +
      • +
      • + The code that maps from line numbers to text positions and back has been completely + rewritten to be faster, and to allow markers to move with the text. +
      • +
      +

      + Beta release 0.91 +

      +
        +
      • + Released on 30 April 1999, containing fixes to text measuring to make Scintilla work better + with bitmap fonts. Also some small fixes to make compiling work with Visual C++. +
      • +
      +

      + Beta release 0.90 +

      +
        +
      • + Released on 29 April 1999, containing working GTK+/Linux version. +
      • +
      • + The Java, C++ and Python lexers recognize operators as distinct from default allowing them + to be highlighted. +
      • +
      +

      + Beta release 0.82 +

      +
        +
      • + Released on 1 April 1999, to fix a problem with handling the Enter key in PythonWin. Also + fixes some problems with cmd key mapping. +
      • +
      +

      + Beta release 0.81 +

      +
        +
      • + Released on 30th March 1999, containing bug fixes and a few more features. +
      • +
      • + Static linking supported and Tidy.EXE, a statically linked version of Tide.EXE. Changes to + compiler flags in the makefiles to optimize for size. +
      • +
      • + Scintilla supports a 'savepoint' in the undo stack which can be set by the container when + the document is saved. Notifications are sent to the container when the savepoint is + entered or left, allowing the container to to display a dirty indicator and change its + menus. +
      • +
      • + When Scintilla is set to read-only mode, a notification is sent to the container should the + user try to edit the document. This can be used to check the document out of a version + control system. +
      • +
      • + There is an API for setting the appearance of indicators. +
      • +
      • + The keyboard mapping can be redefined or removed so it can be implemented completely by the + container. All of the keyboard commands are now commands which can be sent by the + container. +
      • +
      • + A home command like Visual C++ with one hit going to the start of the text on the line and + the next going to the left margin is available. I do not personally like this but my + fingers have become trained to it by much repetition. +
      • +
      • + SCI_MARKERDELETEALL has an argument in wParam which is the number of the type marker to + delete with -1 performing the old action of removing all marker types. +
      • +
      • + Tide now understands both the file name and line numbers in error messages in most cases. +
      • +
      • + Tide remembers the current lines of files in the recently used list. +
      • +
      • + Tide has a Find in Files command. +
      • +
      +

      + Beta release 0.80 +

      +
        +
      • + This was the first public release on 14th March 1999, containing a mostly working Win32 + Scintilla DLL and Tide EXE. +
      • +
      +

      + Beta releases of SciTE were called Tide +

      + + diff --git a/third_party/qscintilla/doc/Scintilla/ScintillaRelated.html b/third_party/qscintilla/doc/Scintilla/ScintillaRelated.html new file mode 100644 index 0000000..1c34717 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/ScintillaRelated.html @@ -0,0 +1,533 @@ + + + + + + + + + + Scintilla and SciTE Related Sites + + + + + + + + +
      + Scintilla icon + + Scintilla + and SciTE +
      +

      + Related Sites +

      +

      + Ports and Bindings of Scintilla +

      +

      + Scintilla.mcc + is a port to MorphOS. +

      +

      + Wx::Scintilla + is a Perl Binding for Scintilla on wxWidgets. +

      +

      + GtkScintilla + is a GTK+ widget which enables easily adding a powerful + source code editor to your applications. Harnessing the abilities + of the Scintilla editing component, GtkScintilla adds a familiar + GTK+/GObject API, making the widget comfortable to use in + these programs, using all the typical GObject conventions. +

      +

      + Editawy + is an ActiveX Control wrapper that support all Scintilla functions and additional high level functions. +

      +

      + Jintilla + is a JNI wrapper that allows Scintilla to be used in Java with + both SWT and AWT. +

      +

      + Delphi Scintilla Interface Components + is a FREE collection of components that makes it easy to use the + Scintilla source code editing control from within Delphi and C++ Builder. +

      +

      + wxStEdit + is a library and sample program that provides extra features over wxStyledTextControl. +

      +

      + CScintillaCtrl, CScintillaView & CScintillaDoc + are freeware MFC classes to encapsulate Scintilla. +

      +

      + ScintillaNet + is an encapsulation of Scintilla for use within the .NET framework. +

      +

      + QScintilla + is a port of Scintilla to the Qt platform. It has a similar license to Qt: GPL for use in + free software and commercial for use in close-source applications. +

      +

      + + GWindows is a Win32 RAD GUI Framework for Ada 95 that + includes a binding of Scintilla. +

      +

      + ScintillaVB + is an ActiveX control written in VB that encapsulates Scintilla. +

      +

      + FXScintilla + is a port of Scintilla to the FOX platform. FXRuby includes Ruby + bindings for FXScintilla. +

      +

      + Delphi wrapper for + Scintilla which is also usable from Borland C++ Builder. +

      +

      + The wxStyledTextCtrl editor component in the + wxWidgets cross platform toolkit is based on Scintilla.
      + A Python binding for wxStyledTextCtrl is part of wxPython. +

      +

      + gtkscintilla + is an alternative GTK class implementation for scintilla. + This implementation acts more like a Gtk+ object, with many methods rather + than just scintilla_send_message() and is available as a shared library. + This implementation works with GTK 1.x. +

      +

      + gtkscintilla2 + is an alternative GTK class implementation for scintilla + similar to the above, but for GTK 2.x. +

      +

      + pygtkscintilla + is a Python binding for gtk1.x scintilla that uses + gtkscintilla instead of the default GTK class. +

      +

      + ScintillaCtrl + is an unmaintained ActiveX control wrapper for Scintilla. +

      +

      + Projects using Scintilla +

      +

      + Textilosaurus + is simple cross-platform UTF-8 text editor based on Qt and Scintilla. +

      +

      + BowPad + is a small and fast text editor with a modern ribbon user interface (Windows7 or later). +

      +

      + ZeroBrane Studio Lua IDE + is a lightweight Lua IDE with code completion, syntax highlighting, live + coding, remote debugger, and code analyzer (Windows, OSX, and Linux). +

      +

      + XML Validator Buddy + is an XML/JSON editor and XML validator for Windows. +

      +

      + SciTECO + is an advanced TECO dialect and interactive screen editor based on Scintilla. +

      +

      + Quantum GIS + is a user friendly Open Source Geographic Information System (GIS). +

      +

      + QGrinUI + searches for a regex within all relevant files in a directory and shows matches using + SciTE through the director interface. +

      +

      + Textadept + is a ridiculously extensible cross-platform text editor for programmers written (mostly) in + Lua using LPeg to handle the lexers. +

      +

      + Scribble + is a text editor included in MorphOS. +

      +

      + MySQL Workbench + is a cross-platform, visual database design, sql coding and administration tool. +

      +

      + LIVEditor + is for web front end coders editing html/css/js code. +

      +

      + Padre + is a wxWidgets-based Perl IDE. +

      +

      + CoderStudio + is an IDE for plain C and Assembly programming similar to Visual Studio. +

      +

      + Enterprise Architect + is a UML 2.1 analysis and design tool. +

      +

      + The CodeAssistor Editor + is a small and simple source code editor for MacOSX, Windows, and GTK/Linux. +

      +

      + PBEditor + is a text editor for PowerBuilder. +

      +

      + CrypTool + is an application for applying and analyzing cryptographic algorithms. +

      +

      + FXiTe + is an advanced cross-platform text editor built with the Fox GUI toolkit + and the FXScintilla text widget. +

      +

      + Jabaco + is a simple programming language with a Visual Basic like syntax. +

      +

      + LispIDE + is a basic Lisp editor for Windows 2000, XP and Vista. +

      +

      + File Workbench: + a file manager / text editor environment with Squirrel scripting. +

      +

      + Kephra + is a free, easy and comfortable cross-platform editor written in Perl. +

      +

      + UniversalIndentGUI + is a cross platform GUI for several code formatters, beautifiers and indenters + like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. +

      +

      + Elementary Reports + is designed to reduce the time to compose detailed and professional primary school reports. +

      +

      + Visual Classworks + Visual class modeling and coding in C++ via 'live' + UML style class diagrams. +

      +

      + Javelin + Visual Class modeling and coding in Java via 'live' UML style + class diagrams. +

      +

      + The ExtendScript Toolkit + is a development and debugging tool for JavaScript + scripts included with Adobe CS3 Suites. +

      +

      + TortoiseSVN + is a Windows GUI client for the Subversion source control software. +

      +

      + Geany + is a small and fast GTK2 based IDE, which has only a few dependencies from other packages. +

      +

      + ECMerge + is a commercial graphical and batch diff / merge tool for Windows, Linux and Solaris + (aiming to target all major platforms). +

      +

      + PyPE + is an editor written in Python with the wxPython GUI toolkit. +

      +

      + Sciboo + is an editor based on ScintillaNET. +

      +

      + The Scite Config Tool + is a graphical user interface for changing SciTE properties files. +

      +

      + Scintilla Lister + is a plugin for Total Commander allowing viewing all documents with syntax highlighting + inside Total Commander. +

      +

      + ChSciTE + is a free IDE for C/C++ interpreter Ch. It runs cross platform. + Ch is for cross-platform scripting, shell + programming, 2D/3D plotting, numerical computing, and embedded + scripting. +

      +

      + + Code::Blocks is an open source, cross platform free C++ IDE. +

      +

      + + Notepad++ is a free source code editor under Windows. +

      +

      + + Gubed is a cross platform program to debug PHP scripts. +

      +

      + + LSW DotNet-Lab is a development environment for the .NET platform. +

      +

      + + GLIntercept is an OpenGL function call interceptor that uses SciTE as a + run-time shader editor. +

      +

      + + wyoEditor is "A nice editor with a well designed and consistent look and feel". +

      +

      + + Notepad2 is "Yet another Notepad replacement". +

      +

      + + PyCrash Viewer can examine crash dumps of Python programs. +

      +

      + + MPT series Wire Analyzers use Scintilla and SciTE. +

      +

      + MyGeneration + is a .NET based code generator. +

      +

      + CSSED + is a tiny GTK2 CSS editor. +

      +

      + + IdePS + is a free Integrated Development Environment for PostScript +

      +

      + + CUTE + is a user-friendly source code editor easily extended using Python. +

      +

      + + Venis IX, + the Visual Environment for NSIS (Nullsoft Scriptable Install System). +

      +

      + Eric3 + is a Python IDE written using PyQt and QScintilla. +

      +

      + CPPIDE + is part of some commercial high-school oriented programming course software. +

      +

      + Instant Source + is a commercial tool for looking at the HTML on web sites. +

      +

      + RAD.On++ + is a free C++ Rapid Application Developer for Win32. +

      +

      + wxBasic is an open source + Basic interpreter that uses the wxWidgets toolkit. A small IDE is under construction. +

      +

      + Visual MinGW is an + IDE for the MinGW compiler system.This runs on Windows with gcc. +

      +

      + The Wing IDE is a + complete integrated development environment for the Python programming + language. + Available on Intel based Linux and Windows and on MacOS X through XDarwin. +

      +

      + Sphere + is 2D RPG engine with a development environment. +

      +

      + Practical Ruby + is an IDE for Ruby on Windows. +

      +

      + GNUe + is a suite of tools and applications for solving the needs of the enterprise. +

      +

      + SilverCity + is a lexing package that can provide lexical analysis for over 20 programming + and markup languages. +

      +

      + HAP Python Remote Debugger + is a Python debugger that can run on one Windows machine debugging a Python program running + on either the same or another machine. +

      +

      + PyCrust is an interactive + Python shell based on wxPython. +

      +

      + Komodo + is a cross-platform multi-language development environment built + as an application of Mozilla. +

      +

      + Filerx + is a project manager for SciTE on Windows. + Open source and includes an implementation of SciTE's Director interface so + will be of interest to others wanting to control SciTE. +

      +

      + Anjuta + is an open source C/C++ IDE for Linux/GNOME. +

      +

      + A version of SciTE for Win32 enhanced + with a tab control to allow easy movement between buffers. + Go to the "Goodies" area on this site. +

      +

      + + Suneido is an integrated application platform currently available for Win32 that includes an + object-oriented language, client-server database, and user interface and reporting frameworks. +

      +

      + + Agast is an authoring system for adventure games which includes + a customised version of SciTE. +

      +

      + Boa Constructor is a RAD GUI + Building IDE for the wxWidgets cross platform platform. Written using wxPython with the + wxStyledTextCtrl used as its editor. +

      +

      + PythonWin, a Win32 IDE for Python, uses + Scintilla for both its editing and interactive windows. +

      +

      + Editing Components +

      +

      + CodeMirror + is a versatile text editor implemented in JavaScript for the browser. +

      +

      + UniCodeEditor + is a Unicode aware syntax editor control for Delphi and C++ Builder. +

      +

      + GtkSourceView + is a text widget that extends the standard GTK+ 2.x text widget and improves it + by implementing syntax highlighting and other features typical of a source editor. +

      +

      + AEditor + is a free source code editing component implemented in Ruby. +

      +

      + SyntaxEditor + is a commercial native .Net source code editing component. +

      +

      + jEdit is a good Open Source syntax colouring + editor written in and for Java. +

      +

      + GTK+, the GIMP Toolkit, contains a rich text editing + widget.
      + Gedit is an editor for GTK+/GNOME.
      + +

      +

      + CodeGuru has source code for several Win32 MFC based + editors. +

      + SynEdit is a Win32 edit control written + in Delphi. +

      + SourceView is a commercial editing + component for Win32. +

      +

      + Documents +

      +

      + The Craft of Text Editing + describes how EMACS works, Craig A. Finseth +

      +

      + Data Structures in a Bit-Mapped Text + Editor, Wilfred J. Hanson, Byte January 1987 +

      +

      + Text Editors: Algorithms and Architectures, Ray Valdés, Dr. Dobbs Journal + April 1993 +

      +

      + Macintosh User Interface Guidelines and TextEdit chapters of Inside Macintosh +

      +

      + Development Tools +

      +

      + Scintilla and SciTE were developed using the + Mingw version of GCC. +

      +

      + AStyle is a source code formatter for C++ and + Java code. SciTE has an Indent command defined for .cxx files that uses AStyle. +

      +

      + WinMerge is an interactive diff / merge + for Windows. I prefer code submissions in the form of source files rather than diffs and then run + WinMerge over the files to work out how to merge. +

      +

      + Python is my favourite programming language. Scintilla + was started after I tried to improve the editor built into PythonWin, but was frustrated by the limitations of + the Windows Richedit control which PythonWin used. +

      +

      + regex is a public domain + implementation of regular expression pattern matching used in Scintilla. +

      +

      + Inspirational coding soundscapes by David Bridie. +

      + + + diff --git a/third_party/qscintilla/doc/Scintilla/ScintillaToDo.html b/third_party/qscintilla/doc/Scintilla/ScintillaToDo.html new file mode 100644 index 0000000..c1ca576 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/ScintillaToDo.html @@ -0,0 +1,128 @@ + + + + + + + + + + Scintilla and SciTE To Do + + + + + + + + +
      + Scintilla icon + + Scintilla + and SciTE +
      +

      + Bugs and To Do List +

      +

      + Feedback +

      +

      + Issues can be reported on the Bug Tracker + and features requested on the Feature Request Tracker. +

      +

      + Scintilla Bugs +

      +

      + Automatic scrolling when text dragged near edge of window. +

      +

      + Scintilla To Do +

      +

      + Folding for languages that don't have it yet and good folding for languages + that inherited poor folding from another languages folding code. +

      +

      + Simple pattern based styling. +

      +

      + Different height lines based upon tallest text on the line rather than on the tallest style + possible. +

      +

      + Composition of lexing for mixed languages (such as ASP+ over COBOL) by + combining lexers. +

      +

      + Stream folding which could be used to fold up the contents of HTML elements. +

      +

      + Printing of highlight lines and folding margin. +

      +

      + Flow diagrams inside editor similar to + GRASP. +

      +

      + More lexers for other languages. +

      +

      + SciTE To Do +

      +

      + Good regular expression support through a plugin. +

      +

      + Allow file name based selection on all properties rather than just a chosen few. +

      +

      + Opening from and saving to FTP servers. +

      +

      + Setting to fold away comments upon opening. +

      +

      + User defined fold ranges. +

      +

      + Silent mode that does not display any message boxes. +

      +

      + Features I am unlikely to do +

      +

      + These are features I don't like or don't think are important enough to work on. + Implementations are welcome from others though. +

      +

      + Mouse wheel panning (press the mouse wheel and then move the mouse) on + Windows. +

      +

      + Adding options to the save dialog to save in a particular encoding or with a + chosen line ending. +

      +

      + Directions +

      +

      + The main point of this development is Scintilla, and this is where most effort will + go. SciTE will get new features, but only when they make my life easier - I am + not intending to make it grow up to be a huge full-function IDE like Visual + Cafe. The lines I've currently decided not to step over in SciTE are any sort of + project facility and any configuration dialogs. SciTE for Windows now has a + Director interface for communicating with a separate project manager + application. +

      +

      + If you are interested in contributing code, do not feel any need to make it cross + platform. + Just code it for your platform and I'll either reimplement for the other platform or + ensure that there is no effect on the other platform. +

      + + diff --git a/third_party/qscintilla/doc/Scintilla/ScintillaUsage.html b/third_party/qscintilla/doc/Scintilla/ScintillaUsage.html new file mode 100644 index 0000000..47db0be --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/ScintillaUsage.html @@ -0,0 +1,376 @@ + + + + + + + + + + Scintilla Usage Notes + + + + + + + + + +
      + Scintilla icon + + Scintilla + Usage Notes +
      +

      + Implementing Auto-Indent +

      +

      + The key idea is to use the SCN_CHARADDED notification to add indentation after a newline. +

      +

      + The lParam on the notification is a pointer to a SCNotification structure whose ch member + specifies the character added. If a newline was added, the previous line can be retrieved and + the same indentation can be added to the new line. +

      +

      + Here is the relevant portion of code from SciTE: (SciTE.cxx SciTEWindow::CharAdded) +

      + if  (ch  ==  '\r'  ||  ch  ==  '\n')  {
      +     
      char  + linebuf[1000];
      +     
      int  + curLine  =  GetCurrentLineNumber();
      +     
      int  + lineLength  + =  SendEditor(SCI_LINELENGTH,  curLine);
      +     
      + //Platform::DebugPrintf("[CR] %d len = %d\n", curLine, lineLength);
      +     
      if  (curLine  >  0  &&  + lineLength  + <=  2)  {
      +     
      int  + prevLineLength  + =  SendEditor(SCI_LINELENGTH,  curLine  -  1);
      +     
      if  (prevLineLength  <  sizeof(linebuf))  {
      +         
      WORD  buflen  =  sizeof(linebuf);
      +         
      memcpy(linebuf,  &buflen,  sizeof(buflen));
      +         
      + SendEditor(EM_GETLINE,  curLine  -  1,
      +                    
      + reinterpret_cast<LPARAM>(static_cast<char  *>(linebuf)));
      +         
      linebuf[prevLineLength]  =  '\0';
      +         
      for  (int  pos  =  0;  linebuf[pos];  pos++)  {
      +             
      if  (linebuf[pos]  !=  ' '  &&  + linebuf[pos]  !=  '\t')
      +                 
      + linebuf[pos]  =  '\0';
      +         
      }
      +         
      + SendEditor(EM_REPLACESEL,  0,  + reinterpret_cast<LPARAM>(static_cast<char  *>(linebuf)));
      +     
      }
      +
      }
      + +

      + Of course, fancier handling could be implemented. For example, if the previous line was the + start of a control construct, the next line could be automatically indented one tab further. + (Assuming that is your indenting style.) +

      +

      + Implementing Syntax Styling +

      +

      + Syntax styling is handled by the SCN_STYLENEEDED notification. Scintilla keeps track of the + end of the styled text - this is retrieved with SCI_GETENDSTYLED. In response to the + SCN_STYLENEEDED notification, you should apply styles to the text from ENDSTYLED to the + position specified by the notification. +

      +

      + Here is the relevant portion of code from SciTE: (SciTE.cxx) +

      + void  + SciTEWindow::Notify(SCNotification  *notification)  {
      +     
      switch  + (notification->nmhdr.code)  {
      +     
      case  + SCN_STYLENEEDED:  {
      +             
      if  (notification->nmhdr.idFrom  ==  IDM_SRCWIN)  {
      +                 
      + int  + endStyled  =  SendEditor(SCI_GETENDSTYLED);
      +                 
      + int  + lineEndStyled  =  SendEditor(EM_LINEFROMCHAR,  + endStyled);
      +                 
      + endStyled  + =  SendEditor(EM_LINEINDEX,  lineEndStyled);
      +                 
      + Colourise(endStyled,  notification->position);
      + +

      + Colourize(start, end) retrieves the specified range of text and then calls ColourizeDoc in + keywords.cxx. It starts the process by calling: +

      +     SendMessage(hwnd,  SCI_STARTSTYLING,  + startPos,  31);
      + +

      + and then for each token of the text, calling: +

      +     SendMessage(hwnd,  SCI_SETSTYLING,  length,  style);
      + +

      + where style is a number from 0 to 31 whose appearance has been defined using the + SCI_STYLESET... messages. +

      +

      + Implementing Calltips +

      +

      + Again, the SCN_CHARADDED notification is used to catch when an opening parenthesis is added. + The preceding word can then be retrieved from the current line: +

      +     char  linebuf[1000];
      +
          int  current  =  SendEditor(SCI_GETCURLINE,  sizeof(linebuf),
      +         
      + reinterpret_cast<LPARAM>(static_cast<char  *>(linebuf)));
      +
          int  pos  =  SendEditor(SCI_GETCURRENTPOS);
      +
      +
          int  startword  =  current  -  1;
      +
          while  + (startword  + >  0  &&  + isalpha(linebuf[startword  -  1]))
      +         
      + startword--;
      +
          linebuf[current  -  1]  =  '\0';
      +
          char*  word  =  linebuf  +  startword;
      + +

      + Then if a calltip is available it can be displayed. The calltip appears immediately below + the position specified. The calltip can be multiple lines separated by newlines (\n). +

      +     pos  =  SendMessage(hwnd,  SCI_GETCURRENTPOS,  0,  0);
      +
          SendMessageText(hwnd,  SCI_CALLTIPSHOW,  pos  -  wordLen  -  1,  calltip);
      + +

      + The calltip can be removed when a closing parenthesis is entered: +

      +     if  (SendMessage(hwnd,  SCI_CALLTIPACTIVE,  + 0,  0))
      +         
      + SendMessage(hwnd,  + SCI_CALLTIPCANCEL,  0,  + 0);
      + +

      + Obviously, it is up the application to look after supplying the appropriate calltip text. +

      +

      + SciTE goes one step further, counting the commas between arguments and highlighting the + corresponding part of the calltip. This code is in ContinueCallTip. +

      +

      + Page contributed by Andrew McKinlay. +

      + + + diff --git a/third_party/qscintilla/doc/Scintilla/Steps.html b/third_party/qscintilla/doc/Scintilla/Steps.html new file mode 100644 index 0000000..ff88e88 --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/Steps.html @@ -0,0 +1,142 @@ + +How to use the Scintilla Edit Control in windows? +

      How to use the Scintilla Edit Control in windows?

      +

      + This should be a little step by step explanation how to use Scintilla in the windows environment. +

      +

      +

      How to create Scintilla Edit Control?

      +

      + First of all, load the Scintilla DLL with something like: +

      +
      +
      +	hmod = LoadLibrary("SciLexer.DLL");
      +		if (hmod==NULL)
      +		{
      +			MessageBox(hwndParent,
      +			"The Scintilla DLL could not be loaded.",
      +			"Error loading Scintilla",
      +			MB_OK | MB_ICONERROR);
      +		}
      +		
      +

      + If the DLL was loaded successfully, then the DLL has registered (yes, by itself) a new + window class. The new class called "Scintilla" is the new scintilla edit control. +

      +

      + Now you can use this new control just like any other windows control. +

      +
      +
      +	hwndScintilla = CreateWindowEx(0,
      +		"Scintilla","", WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_CLIPCHILDREN,
      +		10,10,500,400,hwndParent,(HMENU)GuiID, hInstance,NULL);
      +		
      +

      + Note the new window class name: "Scintilla". By reaching this point you actually included + a Scintilla Edit Control to your windows program. +

      +

      +

      How to control the Scintilla Edit Control?

      +

      + You can control Scintilla by sending commands to the Edit Control. + There a 2 ways of doing this. A simple and fast way. +

      +

      The simple way to control Scintilla

      +

      + The simple way is just like with any other windows control. You can send messages to the + Scintilla Edit Control and receive notifications from the control. (Note that the notifications + are sent to the parent window of the Scintilla Edit Control.) +

      +

      + The Scintilla Edit Control knows a special message for each command. + To send commands to the Scintilla Edit Control you can use the SendMessage function. +

      +
      +
      +	SendMessage(hwndScintilla,sci_command,wparam,lparam);
      +			
      +

      + like: +

      +
      +
      +	SendMessage(hwndScintilla,SCI_CREATEDOCUMENT, 0, 0);
      +			
      +

      + Some of the commands will return a value and unused parameters should be set to NULL. +

      +

      +

      The fast way to control Scintilla

      +

      + The fast way of controlling the Scintilla Edit Control is to call message handling function by yourself. + You can retrieve a pointer to the message handling function of the Scintilla Edit Control and + call it directly to execute a command. This way is much more faster than the SendMessage() way. +

      +

      + 1st you have to use the SCI_GETDIRECTFUNCTION and SCI_GETDIRECTPOINTER commands to + retrieve the pointer to the function and a pointer which must be the first parameter when calling the retrieved + function pointer. + You have to do this with the SendMessage way :) +

      +

      + The whole thing has to look like this: +

      +
      +
      +	int (*fn)(void*,int,int,int);
      +	void * ptr;
      +	int canundo;
      +
      +	fn = (int (__cdecl *)(void *,int,int,int))SendMessage(
      +		hwndScintilla,SCI_GETDIRECTFUNCTION,0,0);
      +	ptr = (void *)SendMessage(hwndScintilla,SCI_GETDIRECTPOINTER,0,0);
      +
      +	canundo = fn(ptr,SCI_CANUNDO,0,0);
      +			
      +

      + with "fn" as the function pointer to the message handling function of the Scintilla Control + and "ptr" as the pointer that must be used as 1st parameter. + The next parameters are the Scintilla Command with its two (optional) parameters. +

      + +

      +

      How will I receive notifications?

      +

      + Whenever an event occurs where Scintilla wants to inform you about something, the Scintilla Edit Control + will send notification to the parent window. This is done by a WM_NOTITY message. + When receiving that message, you have to look in the xxx struct for the actual message. +

      +

      + So in Scintillas parent window message handling function you have to include some code like this: +

      +
      +	NMHDR *lpnmhdr;
      +
      +	[...]
      +
      +	case WM_NOTIFY:
      +		lpnmhdr = (LPNMHDR) lParam;
      +
      +		if(lpnmhdr->hwndFrom==hwndScintilla)
      +		{
      +			switch(lpnmhdr->code)
      +			{
      +				case SCN_CHARADDED:
      +					/* Hey, Scintilla just told me that a new */
      +					/* character was added to the Edit Control.*/
      +					/* Now i do something cool with that char. */
      +				break;
      +			}
      +		}
      +	break;
      +			
      +

      +

      + +

      + Page contributed by Holger Schmidt. +

      + + diff --git a/third_party/qscintilla/doc/Scintilla/StyleMetadata.html b/third_party/qscintilla/doc/Scintilla/StyleMetadata.html new file mode 100644 index 0000000..79742be --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/StyleMetadata.html @@ -0,0 +1,204 @@ + + + + + + + + + + Scintilla Style Metadata + + + + + + + + + +
      + Scintilla icon + + Scintilla +
      +

      + Language Types +

      +

      + Scintilla contains lexers for various types of languages: +

        +
      • Programming languages like C++, Java, and Python.
      • +
      • Assembler languages are low-level programming languages which may additionally include instructions and registers.
      • +
      • Markup languages like HTML, TeX, and Markdown.
      • +
      • Data languages like EDIFACT and YAML.
      • +
      +

      +

      + Some languages can be used in different ways. JavaScript is a programming language but also + the basis of JSON data files. Similarly, + Lisp s expressions can be used for both source code and data. +

      +

      + Each language type has common elements such as identifiers in programming languages. + These common elements should be identified so that languages can be displayed with common + styles for these elements. + Style tags are used for this purpose in Scintilla. +

      +

      + Style Tags +

      +

      + Every style has a list of tags where a tag is a lower-case word containing only the common ASCII letters 'a'-'z' + such as "comment" or "operator". +

      +

      + Tags are ordered from most important to least important. +

      +

      + While applications may assign visual attributes for tag lists in many different ways, one reasonable technique is to + apply tag-specific attributes in reverse order so that earlier and more important tags override less important tags. + For example, the tag list "error comment documentation keyword" with + a set of tag attributes
      + { comment=fore:green,back:very-light-green,font:Serif documentation=fore:light-green error=strikethrough keyword=bold }
      + could be rendered as
      + bold,fore:light-green,back:very-light-green,font:Serif,strikethrough. +

      +

      + Alternative renderings could check for multi-tag combinations like + { comment.documentation=fore:light-green comment.line=dark-green comment=green }. +

      +

      + Commonly, a tag list will contain an optional embedded language; optional statuses; a base type; and a set of type modifiers:
      + embedded-language? status* base-type modifiers* +

      +

      Embedded language

      +

      + The embedded language may be a source (client | server) followed by a language name + (javascript | php | python | basic). + This may be extended in the future with other programming languages and style-definition languages like CSS. +

      +

      Status

      +

      + The statuses may be (error | unused | predefined | inactive).
      + The error status is used for lexical statuses that indicate errors in the source code such as unterminated quoted strings.
      + The unused status may indicate a gap in the lexical states, possibly because an old lexical class is no longer used or an upcoming lexical class may fill that position.
      + The predefined status indicates a style in the range 32.39 that is used for non-lexical purposes in Scintilla.
      + The inactive status is used for text that is not currently interpreted such as C++ code that is contained within a '#if 0' preprocessor block. +

      +

      Basic Types

      +

      + The basic types for programming languages are (default | operator | keyword | identifier | literal | comment | preprocessor | label).
      + The default type is commonly used for spaces and tabs between tokens although it may cover other characters in some languages. +

      +

      + Assembler languages add (instruction | register). to the basic types from programming languages.
      +

      +

      + The basic types for markup languages are (default | tag | attribute | comment | preprocessor).
      +

      +

      + The basic types for data languages are (default | key | data | comment).
      +

      +

      Comments

      +

      + Programming languages may differentiate between line and stream comments and treat documentation comments as distinct from other comments. + Documentation comments may be marked up with documentation keywords.
      + The additional attributes commonly used are (line | documentation | keyword | taskmarker). +

      +

      Literals

      +

      + Programming and assembler languages contain a rich set of literals including numbers like 7 and 3.89e23; "string\n"; and nullptr + and differentiating between these is often wanted.
      + The common literal types are (numeric | boolean | string | regex | date | time | uuid | nil | compound).
      + Numeric literal types are subdivided into (integer | real).
      + String literal types may add (perhaps multiple) further attributes from (heredoc | character | escapesequence | interpolated | multiline | raw).
      +

      +

      + An escape sequence within an interpolated heredoc may thus be literal string heredoc escapesequence. +

      +

      + List of known tags +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      attributeMarkup attribute
      basicEmbedded Basic
      booleanTrue or false literal
      characterSingle character literal as opposed to a string literal
      clientScript executed on client
      commentThe standard comment type in a language: may be stream or line
      compoundLiteral containing multiple subliterals such as a tuple or complex number
      dataA value in a data file
      dateLiteral representing a data such as '19/November/1975'
      defaultStarting state commonly also used for white space
      documentationComment that can be extracted into documentation
      errorState indicating an invalid or erroneous element
      escapesequenceParts of a string that are not literal such as '\t' for tab in C
      heredocLengthy text literal marked by a word at both ends
      identifierName that identifies an object or class of object
      inactiveCode that is not currently interpreted
      instructionMnemonic in assembler languages like 'addc'
      integerNumeric literal with no fraction or exponent like '738'
      interpolatedString that can contain expressions
      javascriptEmbedded Javascript
      keyElement which allows finding associated data
      keywordReserved word with special meaning like 'while'
      labelDestination for jumps in programming and assembler languages
      lineDifferentiates between stream comments and line comments in languages that have both
      literalFixed value in source code
      multilineDifferentiates between single line and multiline elements, commonly strings
      nilLiteral for the null pointer such as nullptr in C++ or NULL in C
      numericLiteral number like '16'
      operatorPunctuation character such as '&' or '['
      phpEmbedded PHP
      predefinedStyle in the range 32.39 that is used for non-lexical purposes
      preprocessorElement that is recognized in an early stage of translation
      pythonEmbedded Python
      rawString type that avoids interpretation: may be used for regular expressions in languages without a specific regex type
      realNumeric literal which may have a fraction or exponent like '3.84e-15'
      regexRegular expression literal like '^[a-z]+'
      registerCPU register in assembler languages
      serverScript executed on server
      stringSequence of characters
      tagMarkup tag like '<br />'
      taskmarkerWord in comment that marks future work like 'FIXME'
      timeLiteral representing a time such as '9:34:31'
      unusedStyle that is not currently used
      uuidUniversally unique identifier often used in interface definition files which may look like '{098f2470-bae0-11cd-b579-08002b30bfeb}'
      +

      + Extension +

      +

      + Each element in this scheme may be extended in the future. This may be done by revising this document to provide a common approach to new features. + Individual lexers may also choose to expose unique language features through new tags. +

      +

      + Translation +

      +

      + Tags could be exposed directly in user interfaces or configuration languages. + However, an application may also translate these to match its naming schema. + Capitalization and punctuation could be different (like Here-Doc instead of heredoc), + terminology changed ("constant" instead of "literal"), + or human language changed from English to Chinese or Spanish. +

      +

      + Starting from a common set of tags makes these modifications tractable. +

      +

      + Open issues +

      +

      + The C++ lexer (for example) has inactive states and dynamically allocated substyles. + These should be exposed through the metadata mechanism but are not currently. +

      + + diff --git a/third_party/qscintilla/doc/Scintilla/annotations.png b/third_party/qscintilla/doc/Scintilla/annotations.png new file mode 100644 index 0000000000000000000000000000000000000000..9d9b247035815fcfbb4c4793b97c7ba882da127a GIT binary patch literal 33549 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 literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/Scintilla/index.html b/third_party/qscintilla/doc/Scintilla/index.html new file mode 100644 index 0000000..208b1ce --- /dev/null +++ b/third_party/qscintilla/doc/Scintilla/index.html @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + Scintilla and SciTE + + + + + + + + + + +
      + Scintilla + + A free source code editing component for Win32, + GTK+, and OS X + + Release version 3.10.1
      + Site last modified February 12 2018
      +
      +   +
      + + + + +
      +   +
      +
        +
      • Version 3.7.5 adds a Reverse Selected Lines command. + MSVC 2013 is no longer supported.
      • +
      • Version 3.7.4 restores performance on GTK+. + C++11 now required to build and Windows NT 4 is no longer supported.
      • +
      • Version 3.7.3 fixes problems with GTK+ on Wayland.
      • +
      • Version 3.7.2 fixes some crashes on GTK+ and Cocoa, commonly at destruction.
      • +
      • Version 3.7.1 supports accessibility on GTK+ and Cocoa. + The Scintilla namespace is not exposed in Scintilla.h and some deprecated APIs were removed.
      • +
      + + +

      + Scintilla is a free source code editing component. + It comes with complete source code and a license that + permits use in any free project or commercial product. +

      +

      + As well as features found in standard text editing components, Scintilla includes features + especially useful when editing and debugging source code. + These include support for syntax styling, error indicators, code completion and call tips. + The selection margin can contain markers like those used in debuggers to indicate + breakpoints and the current line. Styling choices are more open than with many editors, + allowing the use of proportional fonts, bold and italics, multiple foreground and background + colours and multiple fonts. +

      +

      +

      + SciTE is a SCIntilla based Text Editor. Originally built to + demonstrate Scintilla, it has grown to be a generally useful editor with facilities for + building and running programs. It is best used for jobs with simple configurations - I use it + for building test and demonstration programs as well as SciTE and Scintilla, themselves. +

      +

      + Development of Scintilla started as an effort to improve the text editor in PythonWin. After + being frustrated by problems in the Richedit control used by PythonWin, it looked like the + best way forward was to write a new edit control. The biggest problem with Richedit and other + similar controls is that they treat styling changes as important persistent changes to the + document so they are saved into the undo stack and set the document's dirty flag. For source + code, styling should not be persisted as it can be mechanically recreated. +

      +

      + Scintilla and SciTE are currently available for Intel Win32, OS X, and Linux compatible operating + systems with GTK+. They have been run on Windows XP, Windows 7, OS X 10.7+, and on Ubuntu 14.04 + with GTK+ 2.24. Here is a screenshot of + SciTE.
      +

      +

      + You can download Scintilla. +

      +

      + The source code can be downloaded via Mercurial at the Source Forge + Scintilla project page. +

      +

      + Related sites. +

      +

      + Bugs and To Do list. +

      +

      + History and contribution credits. +

      +

      + Icons that can be used with Scintilla. +

      +

      + The LongTerm3 + branch of Scintilla avoids using features from C++14 or later in order to support older systems. +

      +

      + Questions and comments about Scintilla should be directed to the + scintilla-interest + mailing list, + which is for discussion of Scintilla and related projects, their bugs and future features. + This is a low traffic list, averaging less than 20 messages per week. + To avoid spam, only list members can write to the list. + New versions of Scintilla are announced on scintilla-interest and may also be received by SourceForge + members by clicking on the Monitor column icon for "scintilla" on + the downloads page. + Messages sent to my personal email address that could have been sent to the list + may receive no response. +
      +

      +There is a Scintilla project page +hosted on + + + + + diff --git a/third_party/qscintilla/doc/Scintilla/styledmargin.png b/third_party/qscintilla/doc/Scintilla/styledmargin.png new file mode 100644 index 0000000000000000000000000000000000000000..3aaf35b0ad4e65a1cbbe2f10f8b8d468d531990b GIT binary patch literal 17138 zcmY(qWmsEX6E=#w6nB^66ev(2MT-}A3l7DKLvSs{wLp;ucc(Z(Tf9JvySpa1bJ9NV zch32K73Ysbi2)?Wc2*Ke92zT(I;5`Hc&sPWt z2WAKeqF)gZ$Xv49Gyn()(k_bcq_jc6<8RmvBz>*B-a9LT-%mWPM@=Yd-f!%UhMUoM z$` z@?Y+(cHG8`7=3I%DOjv|+-sU&Buj$A@*UpIHM*dMFJs#twQe7DG;8N%_}%M`(_kG9 zxv;O{(g~09#?pvg{Sp`lBm|mS_Qz5n_P1ag(f5!dMO zx9FzTlrq#!dB=~KXXHA09Vixb7xR5FC}4DNww!78s~3!}=8iPnyZT`#rz8=2vW3k6 zk=PH#@5f(S30ygGHC+^O-#QoO3U6@BYFX2%`6ldfq3zrP?ZpmxeS=LW_w5Foub-Jb ziaXH^8$rPGrK!83pP+rPc4FEzbJBYRuu4qzvWPE2c$MY&?XeEij0(lm{m`nv!`biV zm%xU=i9~N!+}raT2C4;gC+eW5`^_td9rF z?ZSJsL~r|P!+s|YXW{poVgGbO?Elr=|2~S698?*^nvB_f-s4>ohU+pcf6QY^TuR@9+a;8JQ&_7xYxOK{l!P@*F zH`d15gh8dT@Ze^%gR7(f?}QIN-c!L&yyEEdkQwnoDtg+hP+a}c$E&RB3siixZ(+O{ zT;e79rm%5A#d=V zBwy!U2EId=pTgJWN3p@f%XYXNA%F0!dnKmaU0xo^mm zeQWTB!m_%27P6SeNpHJ_u-$Oxf?4LAa~ARJwpTqC8aLc}8->AQ9@!W;FLSYNyy-n^ zd*+ZS5oPC47henst<_{-E#*n*EBA=)-LNwU!cNy0%MHG(TEkEv75B>4igsl^asy^N zYI(d*+fRK1LC73(-UN7d3w?)cBL@cV1_ULv_}{3`ybo(;N+@6r5xl=L@8>63Cx+ke zulr4HjupudiwCs^MWqx{Opj?(O$;Llq&KNiy|(b5LMWr>KEyO+{XK@*I^?(g9s@Mn z>`Vt*>I^Y`G8>F?#uY;jrB_*us4+uMGwXU>v}CASdT9bJpB+717S%`T#zad|dwWTo zBG%M|N%aErYsd*-pQTGOF1yp|OuMPY+9f3W=c@Ei%)80Fmw!MAr{_fRb~J!fz5KCL zUZ>CbH9!tux})3aWo8?qq1`phu0H;}+oj7-lllw7#ok$BSz8!6dOJy2i4UfCspPx$ zj&V{PhaDw6+o`Tcb_P^*U72b5@^@By>_v}dafKGnP#&&q z{H(E4*AI5Lhq{t%L6DW-p%0T$S00*ktUW?m{GmW_V__QR!z+NW7VF81bLp2$7Y@!x%c2S>tRK5m z$?fZtcC(y2F{kRvXd)TjA$bx5g#RuBHB>GMw2+`Tn&}6vyH;2uxCg)8?RD|E!>)ZE zbL3Q0bDixd4=WCPjtR` z`=h=<%Wgwh8+R*ytWT5MvRPJU$8`#}#JJL`*XoNm1UPNxf`tLF-pRd{^t9gUumqZq zvD)~$BTJ8>r`Eex7gzkT=PVI>BXs@_x+d_hcm+B+=ztZ?v9Ig@QH8kMH{oBzh zh1N(C?*6-e_Q0Ef8bk2MhbZ?)En;9&v1_bVq{ouamUq0AwG>9xw-1kK~~Or z8`6)g_c=kL{!}>rIUa)Y{kStkE5Qu&6QY&i31+wbbfpp9g0|oFy4bkSnoKYGac)=3 zN1oB31E$<)6u?W7FUse1x8#x|^^XynZw+~HkTNKaL^mQ0a!!${ypen_&JP^Feogu{ zRQHw9hqFxHDH32oPQaJ83)oFmk)3SV1h1{p2y(sNJtMz(Q;h2S9A%3aO-VmZFaRE- zR2o4EObA}u>TqK<1>8*~4EQ^#B@BbXsa2+TyTb7g!lWpkjxs;P{(9hQK3gf&pK55i zh#!q%Y@l7bMK@Y(#~oI29D%P#bt9OuibD8S(Ju)n;>0i{Hoos?Nc~R0cRuagz|=eL z_;4EJyXf@vOjy#yPMGt}KU z96A<=D*QoyHj{@a8}_L0mc|h6J*D1Z5txxq-+BKh00UGNmXD@@YG4^@MhsOqDu}O9A)9Iv zr+ebNk=;|VCL(4`Y7AjV(nvCR;%*#s;^pH`?^yQAS+UV+0%g?*)VkX(<_aL!LB+F) ztz9S%(u3RL>x1=G7o*YPz5L zb<%4F^i$}{iB!@7H~q-#+PQ)O)6P&F!y((nM<$=-g7-;hFj~(eod9;t~J8|KldQq#^7a@dFm9;~pIJKF9st z3(mCQ41ZWK!@yT7w&Ak9D<@;0wgheOKcL}h7irYP$5?8+EXoT)!MyAjGzD+(EruBg zSir4FVB?cMLeQ7vg-q0=J&+(84fZ0lNSy6$WqX9l^BlAnwd0X-ne~ji1#;LVn5Ap{ zD?XIEH|<%#<;2!EAfYkXupvbWI`5!hHkL-h7CHYcy7ALIU1iUG#*8#}Eeig2(2s4B)Fo<~a& z;T_1?yG;!l{>fJYU=s8L$!=^M417a=1!pK%e|5XlG-R z+bXY8#xLKjr`)F47Z}4+t>#0LzFTX*hIOB(PFJbUMN=tuX+-8$0(Ma%$Al9i-y8U`?l zipLzO-Z1{l$UUdt@!u|yCERa~IXLKz~k0~eC+Vn_5<>WOko{rE$Ux{d7@6#bQctGW80pCgBAI2x)e9G^~4nM zw+GZ0{5$9{E#cK)?EAVD6@d>0UyW}L$*vh8G~Fvkcn>Ffey0NU1po!#C>N7kT^Lle zG_&Bl=uE}O;AlL?XP;Fz{Ij%6SP>S_mSm&IN#p=s^VVFU6>~+s-#)l~yZ{)HbufPO zYj`LiWwu^v+ne?sV9-#u?aE0$n3k=oiqT~b1cy3a3Zoj)I767+?zWwaG{d5ail+38 z2ghfB|Dp=BAcn>c>yGoGmrP&DaqbOal7zrgi25bwsi95kb93{|hK~jKf%!Xh)4+qE zaM5M~Ni7+p`|O1SHkMwsG*$K}LVa`)PsMCT}?%>F4fMz1=Iew^Ha?bsminaQ8 zw3qvi;1|`!*AX+ee?V_=($YNGuQF;Cj`B_Q=0Xu=p;$Fv6@;u%6SI_~Y>R#{_~G?* z@-2sX^8c~OCR~=Q{l-7|QgA<8nm_wZPm<}vyNMd1K*pTpujNvUOHOlxI%git&!)O} zx4+)1h$tW2))JMHo7a+_UvOq=$q_?CBQiDRnK)mmOzJ?&-+ z#aRXt=+DR<&oOn*{zcc1Hvx9ribNv2#&7J?s{Exjf=q#Y&OegLfhnTpTiFyHU0lz% z4}O`hpxz*PHI7?i=hgFOe_~WX72TlO2MnL-eo*<9u6BGGJ|J+0;cf7SZDn4cNW$)B z)z{1;JrqUc>IM}@u*|^dw=}7J9~O8)T8T9lA@8O9+@dw1%;# ziB1vQlFBq9!*a_jVsqj~FNd9o3~$4s%`vRK!CD5JxK27nx&#rKL^o}b4S2-5X+Ey9 z)xmqY?`M{XGR7nIo@8@r@^y!>!RM9~fd8DxH?X>lDM$dD zuO+FlU9Ho06g1>tM0^*o2!L)xw+CCz);sBQif}n2p7(of^C!Z!d(e=bRndX{^Iqtvchdu z*{HQ2Xx;!hcJ(VsoJZt`sgnbvbTzcj1sTu9r4hdYT=&8(Ga0$`~;yU+1B|fUv&yB^_(g|Gd-me-FBkH|qP68s;LdiCj-5ibZW5 zU!;$m`|--&IelU&UPPK%E4$XYTYXd07TErAEeb2N)Zo03RU zoIAkNP5EBB`boTKa81@%QvWKjD!EjO0#5)7L^}{zQvo@f({yY|4eH1LSGPBzdOz_0lB7QjyU8Fb zryp0K6IDiJbmvdr2^{`&4K3T>$jEvb$Uu%^pVP`np{V$!i-FIu`y8>ND>vo!A0au{ zAz>^pDUE#wNEM1u{d@d&L$I$T{FIKYF!5L-`*b_<3Hob)N{M6rgYuSI~bWs z_8@_mbK$eIo*zr_A3Ai)5k5Z*;8O{e^1AkCdC!3LJD$j#Pb8r~714X#)p!tAB%U-Z z#3{Y@ewRBtmGyi;>QP38c#ERp?CIyw&7(jmXRe3Au&cL%vbimMCPiejjOYCVGPn}BEKP_@o?o*;eN;ml(pmg!kvgq8e6e>aDZC+ zG0z|(A=u;_BVo+@V%_PMroQno>w(35^IkRVu(N+DCJX%>~g6+p-&pFp;22XTC(07S^Qdwa1f z(e?R*Lfd(--9n{B8s{jJv)M64EzxCW#;Q3`MZvQH&EcG$&m#GzAk=1V>8q%Hc&QG46;r?-L)>C}E?IS@(#41Zf|b@BS0Rkv(op$A%@|lDZE&->-{=eA;hTb>0ZO~s0wTNT zths%1@8zW~{wuqeRgN`IBY2R+k~D#PtRT*5c{|qx)$q8ny0KZ@>JaVhQgX#PuXBe6 zO0^#_T{;%NUc$5WMTd{hOsUrkpVL@4ehJ5Vrf{A%y$nqk1>q(7V+?DL8E7HSnPsAn zaQMF^vhhZqThpSn$0{Ttv990;=dqgBB7&y{H3@kwa3%qC&|GJc4uc=b9v`D~lIU!X z(DS@&9NuFv%wbSb=tZRXGOj&v!WtITl+*6mB}WG8@OhMx6GFKI=Io@)AyXC@z>YP= z7?z2xVbd71-hOf9VnpqSVcHn0;8saD)^Co;#A*Z7=LGYTd^u6fTz%c>c;w3e|#xxSf596#cLC*%)(IR zBKz%CkDyhn-KDqDco}30{P*T0m*V{D5Iy0?Wn5lfkw$*Au@Oz2MQoT}<(5rtK!38W zP=~;7>@Z7$NE%=Q4h_Lhz~95lg^b|alVGf^hqGkm&U?I3y82I8!Es+iDuM@70;=90 z{@$R=(nX}|n;4ZR-rD(bBrMB4VpgNO;`A1!h6nm33H4Ev91jt)>Nv;StM*Zs^!a}2 z;ic_tPPIF_zO89<1gn9&8eNH<+={<|X!dYV1Xo;l0VWd>*1=Am|@Zf#$-*K{4iKIi!1 zg1?f!2)y}qTHXGr@rv~Evxx!%3?+g9l9+;}nf~bn{7n=Abbbqu)mHM+Tzu^4mx@X}>t86`rO0p(oj3ZH?L^EKdSbo2skF8#nP?L}M73{^C z^0o`Zax5(wfffPazQw>dhzpSxkS+Y08G$yXF7WuceuIKBgjg>>_O4Vv{KbTS57X&P ztrhRr(zfpJA%fK^Xx+*f*vO!77j@LB_O?qiutK7>j`jl9&(3k+;=b-#=5C{=*w`03 zUuH5HS<-M0ilcG>@gDL8(%Z~E=Zl9pj%Bafrrl%Wk=oV)W{Tfl5BOCmMSNmRgfW~h zG1fbI>Nz>cXE~xRju>3OBKO;>sIaWl4p&r2WriqCt2TeE1ovQFhSzr})Ri9x}w0!z>3z1W&HPq}p!? zAc*q9FIe^pr-0nX8^#@xtn9jAISlYBkg?Zec#!+ka{X1{%RsF_R~8a}JfvpAXn zrq6DO<^9unf>&kiWyt5UJL#L<))ZfLfwAWk_e{Ov*l3J)Ivcby5}F(D6bYL9fCT!& zKY8)XHon=bs(p)5pCEL%Sx@pv|Li%vv6mtm$)q{^@Y6&NO(OE_Iaw`>}rq_;e;)jXe+DaEY&E6mc&ncNTsOBLsCXw z%OWdM2Y2gdx6CE}!B;5PI_NFK1mw)PqvbqUF-N3pBUodYK-XBZLPg;WV~ipRz_e;p zMx6+xlzlFX^E&K0+0n#~xrH0$M1gv~{N5s5T_8(`lma==#__^}eEo%!N1&Y_G&2_z zxR#Wc-L5A8Nhl)Uk+tY7YttGC)9t)NM4^v!iliSX!~l!e6*LU}P~Ma-3MVBIw)N_l zi|X-Prl9@q`O>>qN7(za(w@V1c+D=$s~`8Z*9<~9$Z#CiLMuyae-~U*zdkl3TEP() zqO{%KLilRnoWfp7K*|g4^(gGYkk>zcz)%fGP;e#IbP`#OiYU4wFpzAT=GD^UM)aq5 zAD}>6YgtQUW7*2neBkRoB6ol-qE@DvLd7=^G`5P4wrGU~OB{5M|_VrJLtoh>B zc44z?eI$05^;L%3?tqnbWIf);FY4?jly&wMnZNyyEQ3uAl~h1F-=o&1XQR%)F4%-e zUB}op*z7nU*K8J5fPCJSbc)JrL4IAlsf?_M9D?(fkUX1!Z*LOHG+=IHwE{quy(@B| zfv}RWk=etCrXH>&Kf!Yh)ecX&z7Y`+rXF2)m|stI$FY2~_|4?+SAKscge6=aMgGw7 zBE^-0Ft3-gZPA^*7a9t#RtA_IR}2>GE1H~yeg2$Q2Q)4RRU9v?Awg>Vo)KxgX&+&X zP}cYG+o~${PRm0#)QOpJIe@)yg?Hx#F#%awg^$(qutU+LYCGXoUJMf6-9l#L$Kv1t zo`m!ff~Lf1vLTUI>)@>OqY1R}wey2FcWf(lpWMT_3pW@*bucv=NWEz9jtuPQTkCHZ z`&{u_$p^4jNQ#$m$~kA(x47l;swFL(!TH%LAus1KjoyYH&MGEHapG~;?o}4n`hGXH*pQ$u)d5W5ZKqS+T1|^tVp0IlBVv-B@{0=5E>{ z=ut$tj2{=6L~ZU~1e!R11_Tnm$4Qm10zupeAis$uy?QvmGC67xtL2XARI(NX6r$~2& zc_aA^mW>(RDnZlFCC_bHm~NG!4hKS}XKh(0LDR3bybZyM7~Aj0Fi9iO46+~Z>|GUe zrQb81L;IDK{`u9|*lcs}=2B4SiOieuHd?Q(&}QGB<5WK05A+doJT&eBMU0;p$ttVS zcgXs+X^pWcDg(=%S4$LBEegQKqjnlFM&z}7m%Tv|>sKMTpo+jQZUbnVxWdh!ZUH$j zL@HY4h3}Z*v>ujcNV4B6f6D!eMM{Q0QOEUp$pq_#f2Sz^06qXj1y+YJ_xO2AnI={) z4#XyrjFS)TA1u!1#)ZFN)m8MDw7cg4rNX^f(z|Ly+ES3`)s$$;`SrTae#Hr)|96Ka z`*}8CvdpMnI?uL=@dT$OGtEt$PtWTo=3IX5J#_6qH145<@dm>RX)H+`FL5oYfn_WM zMhh-n^J@Zi_#8k5vP-{PhxGG_7yE+1;d|z3Z%%S$^C{OdOH{$Ew=l^?vXvXQ*HibB zM$KfORd?Ik5NJbFdI*CrQpI?{9w!6txmKdN$qliZb$TlZ{27VSgN1`Keb`89L3-fR z81`*pU)0XNY3|Yc733%Nz2bNgL;xticof-*>=Ak^;{Eg{Zv=CFjXOXc=eeOZo3Bdo z@n!+DE`4i+K-AXyli83N5mj3>D?){<-#GwRm3JBiVLvz{ArL+>@LzbH}3#6Pz>}TA{lS8r8M;^iKH1Fy4lcQ3!EH|W=b34bF^}I?<@3OZTa8KR^5x=9h z=XnEfJmQ2p@8Dv?SzypO(H(EVRvkR8i)v`u;LrU9lZ?5zl*um7Hp+ zXH1hLGBpUXl(Q1v#uLN07C;-2b)rv8_20f4Mot|~Vg#{=e2%uAq#3acTPs4L0e{ z0mFH;oxQPgm&DW$=ld(wOVAQ=1lNd!N~N6*lmissC%*f&15{L!Yy)WYzkguR>QVM} zbvrAR^`U3n`qsCn5}e2)GR-9t($E>p;FY&1g@QGp(Yt@8V*^r3)Lx(&%3mXokN+B| z8&uC9LKk*CQ`GrJmZSp3+WT+PQ%@>1A#Y@32A6(_2w6$N-jrm=XaGt(d5+6W@-(?C$^*M`2X`CD}nI-6Iu$=RtH-wne`}%HfRX)(MY6 zvrdJRqwy{cBIW3ZN1VP^|B3aYu-YEY8Qu9vR zfSMyToe)$CBJHSq$BF?|g1gAnNRAj8CqmG+`(Kss#T{%Y&C%%lMxzQGBjz?fK!4?^n^ITBB}esm!mLEjrAqX z#fC6Q97XTWw?^)E`$ex=ucNBt1--?`=7p6<=A-+-+QrOfnzZTsb~~A))dh~qHP(0Rd%nWBV>t%D74A+-10%F9&kM< zBLPyf67=?P0$t7BA-Ti1zhG>@T+sCP2(I$C+i#n6&l6yyz0Nn0pUNi! z16sPOTf({=?h>rdJkD4?+LQi0n+~r+%#AirY?fK z9f36F8ZhbL*ERM^2|}=6&o|=d<;Cr#if=6rkrGU0)oV5h4(85S2Y#84cVu_-aJ&&Z z(nJ|8^jRzN$kC06?hyfgCG@S{{KPVN`NYayZ50{$r93p6Y#39tS13?NplAi0X917v zJ?=T1#^aiivU~=wr23RGRka~p9@j@x3_8#iE*Lrquh=(nY(co8ic;imSm(9dmf-zo zp4KIkwt1{7NY2}F+^HJ)k>YBdX9;{w+x@9aS0Nhlc~r9>JaT{CVavd6_vBKfR~j*} z*}?G3w|YgbZp#adpM!c&pB&FrPd*ZI*%i(qOclPvMN<<~{Kezdz=FwVE6%E76q6jg$TrMZ;1+7L6S^v7g8 z?_&)bvWIMos7*)cA_e6dv2wyvhobM{fn$igSW_6e4%@h+8X@_r2v{hDSy8vzW5%X* zqR!D;@jN=06?7>je-Io^h5>}_9hF~Cn3pzm6&1;LmNKLcQ~@3a zfNSsiDjecVI#P6KBsGha%;MAGYnw593;6u~HimP;x4;W`xucS2?-kHa&tt5%c%N01 z$8xV5TY$gPgW`hgYkzxFaJ1e)Ijadt;W)MX>Ja6_nO^Gqu4{qv%cj*|U$#zVPIdjIj@n(zds+k5+wK0k3S|s5YBXKhPPfa0tPN3z{w8SB zpxtXNVClgs*f0pzVd_XW!v%^p` zYkT^>#cDNmMniYjq@z1L>pG3waLYP=3tTrS{$PHJ^k=$KN99=DWDuX&f#Ko!p`*hn%DHk0mSza^lzM5*Q5zY(hAE8<4ON||e4X^)|h6wPKB=?M$*Sk`Y z(VAZ!tHEG$JSdO#UH-v7;vvEyQ<1qM0#u}i`%=bW^kO*)z06NJdKH8r9YLI6oYBrKqjUlMI?y}Ak8_~y)w0(6leag@~W7hBdp}R&}@MNq>1IDkY9Ga?` zW{<=>;Vo76pCe?M8^BH^`7eB<=Cbt2NW!B!FK=|Z*=lbk(myx_&-u30;kBTDQ0fH) zCsXW*0A6r?EH| zLm7|ZFMmz+zmXY6oUl3*zD5$?+0cUx9oXdEC9H}2Dcqa9(vOy<0Q@sJ@&eT76&_ax zYUmQ-l{wo<@PY`?9 z+Bd&=w z!AppO7dz7l`w2+!{cL-T=yjl8Uv9#p^<0t}X=y{#Cx#G6crC`cT15W0#4p)5)&(&k zp57NV?|m1J&$q-L6_Ob7^6yvc;;Gu}J{lW)fx$nA!vF?07EB-GpZ3*Zj90%xvxHFr zdr&OPEio2J$3(m%GX`%P3wrV-mr8tMjpVYyyLwVMpMj;S`SXV|6@XR$@uf;KF@9Tn z0Wg_RsV@IIbK?M=3Abl4B$}+wmUIc=2?YmcChY$#)uiykYIt8D9uPd7q2*GTza1;T z9KuOtAp4<1RNj($rR%W{p`E0BPt+v9ZS^v4LW!Jl_5sHxDMfYA_cqRU>Vr z$P$xe`ToYcvOI&&*r1Ux=QwXe_9z2Yc$@>oLqFk|5KT~`9;%pyf>pMWTx_+iN)v!G zUYLKGVB>ux*~j@tkpQ2!VvRjunL?SvQfae=h_MekLBQ?(g*`!NJL;R>79klRdsFu4 ztE})i0?6uiqPB%GZ(WdZcXSm%~(T3y~5Fg*vBY^!#dOEV{P4yF9 z+$d6Uw{+AJ))Xg2y*fgrc?$oCZ8-kKaYpBWpB^v(9lj492>#8Jt2{d%m%gyV6A7^UVM!0RDirifb%&#z{2*7af8BqtY(;wZ9LK{|_5MBHw;r+xc%} zkz^M}e*Q082L1#axVZnffBvaR=3nOg&n|r6zSmidfb1CS5F;yg!?WsR#ji4LQg06u zh-m~Jtq+0)jk9Z+fDhhW%1OcN1JN!{Q~XC4^~3r0_&yT; zS`X>Vs?2aVfPKknIyBJ5TGt)3#Baw5u0r>PGe_2aTC8uz$UeQ7=mx;D)%2E1_dI!aMTg!H z({+K6K}s|}&9kBvHwR?A9*Wx1HjFno@6L#WGo}XW`QJUfztzt{`eN_91FAD(tym)& zBM{2maFu40J(EWqr+Ce;qn&&cCmkkVqN*79O|!cjH&1Oc-WDII;5~cSh|u3~M~DLU zvLQQhAwAp#ziGFDsS zRoBi=bEPv1v>G!-APq@eQs57L`i!(8Bv6qHe7$UC%&K-2w7RL)K1~`#!6L2VunS5A z?)v5^*|KeZQrh>i#*wzQ+4= z7$eZo-LXRVmO5cZ#USpBo?rl$&e5_~JeA71nuE@y_7H1G`b2;s1qW;XhAbsQp6k=U zATdTBo!+$)F4**c0!8J$6+6y<`35Jd+6;Qsf56c*hwBr=f4;D2ZRn2ve;LV1O3^FF z|Di?Y*b@MJBSGD6I^ zd?JI0OuwI$$U1?p`p@KSV+mxqI(j(HrB@=<9Cv6!7hn_wIH(VH4p-TDO~rz53QsrQ zw!Pu0U22{2BV!kf`w9qn%>F1V!?8Kd$^qsE!I{|6gpJf$)HJQFH3mS6KMfwPs#>UO zTa8Kwkr?_v16y?mG~-9F>${qmb=24NMb`8-~r0*c~l_` zK$k7igu71a{oeU{U=wkI&!*k@G(1MiWn{A0P}#=oQIqMf+FT$fRQ+t(3!!=5z#(Y( zQtd-Zj31GDBR7``AXULBETup-QH7dL6DyzCy9rCF8k<=Lztokw{WTYWka-p zT%PftI_caYrMdY5OQau?H?05St>gp|;L^wN{d{p{y)?dgM4BX%MfGO|E&^%;a(K-nip7b{NOm zA{kl{w>27p^R=S9om@hiUh=cVQ1Z8wAVcQcVeUcJzKGmCDARHC-o4rJ`Vyl-C@b6! z9H1A?k@J^A4TRi@a7@*I*VsG~Z5xTAX&l9WP+&nIt#FR&><%ZkGjUMH+sb}Ll!Y}r zQcy6IvsDSoDsfRvslZVN^?tnEr(s2SWoedTPSf0@VwaQ#)#HZ`{paYHEA|_m@6wjh zi@Lt3`C-%P->fc`LeP3zQ-%+P4li_%pMtJC)i=dV!&ZbfU$QB_RHFi{usH32R8LbW zm|Up|&a+j<^d*^4#+`Wy%tfuY(t1A{_;m$7vc-71r4#iDbOt4KV!#>4%Ii;!hFv&q z-%LB5|F}4G9l2F3g>r3ET#V^0`vL4M2#0wO*EELTPYUFStSmI1B*&P^{;kg;)>#fc zo6f9sx-g*PA84#H^NmN#-)G)EbtL8$lYqoc^lzT#Z8jk1f(*j_V!XyqH1(6YlyGAdjwfFdOMnVt&L95hIjuI_M-1iIxX0a0MAlX$4qS z5s!~QHhiR?7^bgS+b0rJ$^t-M^Jpu5&~SCPv32}H4w?P7&S&K9hHm8PuE*b}Me}Ys zy}S4P93?0^wCvAPvo?jpL@S*zwwpw1&Q&U@EZ^`D8))IHy7A?Cd+AB=`U#mH7qfKO zwJ0Yi<>m&5MF80)Rxt?b-&TI!HXrS+lY%GL_q%REiuOS!3Ohi@K{kM_@>I+?j)DUG zi!3ZkJNY#x~g%7#d$IjknEup07&V}-RMK8=~h&SY4#G6)N~W~y?Om# zz_+*qwJ}?4)rr_ud z)C#YR?lJS7%Q%m0ZFJ~CTK8|0kH0=lQL#~7ju4hzzI#N<88j#AV3w-h4%SZ~_ zW(tAOa`XoN$iw2fv;P%$@Bzox)jg(|F2&xMLvLTvqZ^`wx>7l%Rt#^!^lSVHvQJZ$ZIZ5I`e0zD(FwtWB{zrI^m? zzYJp_+IDMTm(*64{-OK($nVB_G_`KZci?IeZOv6J=Ver+*-Q^-ER$nA$@o&tx4Gay znYQt^9y~60b=i4-@`4%MhM~415f|vZ1o>P7L$5)yZsFXYHd+f&$6!aq2^VIp=3Z-M zx?ad;L7d8g7FpJ0kWi7{9evo|(tx+p&U67(_$MwVrtKU~@Gjvn?)T=ar#PgBgDZ`#-WXNI#al2S8K5mpvEy=?RSiUa{JqG4>;7;p^U73Ke z_&|OUPMTN1$)#-g7{N`HAC7j&WRh4ZBis#Um4aMD6xdDLmKZ?nuIVWyu|-oub>t|# z-0-?oqEIWUkYh~;B=Gvu`|T6dz2@!3Q3c}q=kbS=wnaKr%RisYkb5WOX|sf%(=JW2 z=oi5+FHWB?*9DyQT?WnN_15Sdd%Pp9m^pgyE$|I8OB}T7lya2Nk(;qLq9tmN*vg`#h}-QAA-wSkbo5b zBI(SUte=rOMBD@q+H_j>DFUVYe+9$L7ytQHY1qoL1~#r@Fr1H{qvilEJBJ@90&{*3 z-RHno`0LdIYmwVyM~TP3C}z@Dcp~kj8wX$C?NElpTO|60-X&TRBK##;Z{d}yRSeE$ zo#V}PB?jV}-g5|h8Xw0=_ZNP4LQvP!InXQ?^>0<&4(VSd^83c0?_P|~;nQQ!DBQfD z_#~kL&Y3T2Y%4KAb9hpT#ZKQl?85Yz;qjCMSnnKu3Gj=x<;9m89m7RMJ+-ZIGMB0y z5PAo2EW`r#{6*G3?_pEv>b}`N4@j9QNI?S6X@x zy+#+sPJ?`pCw5JnajpTKlss=fE@=Gt_m7`@a~esOSA0F+y<0yaeVyeF56F2(ZXC?V z>~p$FiRKtGWk@eKph^Y7z|q*1*ePmv$Z;~8z0q=T<-#yRFr-iBZEeA2LGy!=;A{Fm zI<4Dx2q#Y`&}f$aNPcBjCUjb9-c71dg{sdxeOFtj7p5}VJ^A3&_h@GbApoG|UDu$k zq?ri9&uf%5A|R`sbO&}&I%cAQxlHo|fhs9IezrzVkGh0w0^TsJQ`4q&3Q11KMU(%Y zoP5AKFreLTZAiSS(k=6p``!>ABz83e?|>?tf%hUg3zHrVwZmoo8JO{#2cqF0beuc} zNkX*%HuNryrm<4Wjv;qO!6CMg%b$lPE3ctnwW|J1>K+jSn~xG_ypAn<@BvNNsa+3o zG}9+t)BlOBOdswL&iyQm3z%=z&BotSXyWDsYD2G1YW{moa*!e2)#0KF^7!HHK>3G@ zHtWwQ*ENv{F`Tu>k0Us98bvc3`Y)Og8W0YPggUqC-Axu|VUX%T#J@KcHC@FrpFVAl z>f(|^X~ITA#y>HI_iw?~3hD_{{dhDzkHp)3IK#HF;#wAIzIH63{=bFj5x6?Y4*A=G zW{8Hu+qe>e8bvyY2ucG7)$)&IKht+#eXnt>$1(FCV3HUR58+Oq58d#4 zIp_Bj;y~~Iggjm(A9N*GT9W$;q2Wog&)cJKb%YNzeY4eY!~R71YF(lV=7JE d&*&~4rJVoIq#W*u0S~2M@O1TaS?83{1ORlOO5y+j literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/annotated.html b/third_party/qscintilla/doc/html/annotated.html new file mode 100644 index 0000000..07e077f --- /dev/null +++ b/third_party/qscintilla/doc/html/annotated.html @@ -0,0 +1,115 @@ + + + + + + + +QScintilla: Class List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      Class List
      +
      +
      +
      Here are the classes, structs, unions and interfaces with brief descriptions:
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
       CQsciAbstractAPIsInterface to the textual API information used in call tips and for auto-completion. A sub-class will provide the actual implementation of the interface
       CQsciAPIsProvies an implementation of the textual API information used in call tips and for auto-completion
       CQsciCommandInternal editor command that may have one or two keys bound to it
       CQsciCommandSetSet of all internal editor commands that may have keys bound
       CQsciDocumentDocument to be edited
       CQsciLexerAbstract class used as a base for language lexers
       CQsciLexerAsmThe abstract QsciLexerAsm class encapsulates the Scintilla Asm lexer
       CQsciLexerAVSEncapsulates the Scintilla AVS lexer
       CQsciLexerBashEncapsulates the Scintilla Bash lexer
       CQsciLexerBatchEncapsulates the Scintilla batch file lexer
       CQsciLexerCMakeEncapsulates the Scintilla CMake lexer
       CQsciLexerCoffeeScriptEncapsulates the Scintilla CoffeeScript lexer
       CQsciLexerCPPEncapsulates the Scintilla C++ lexer
       CQsciLexerCSharpEncapsulates the Scintilla C# lexer
       CQsciLexerCSSEncapsulates the Scintilla CSS lexer
       CQsciLexerCustomAbstract class used as a base for new language lexers
       CQsciLexerDEncapsulates the Scintilla D lexer
       CQsciLexerDiffEncapsulates the Scintilla Diff lexer
       CQsciLexerEDIFACTEncapsulates the Scintilla EDIFACT lexer
       CQsciLexerFortranEncapsulates the Scintilla Fortran lexer
       CQsciLexerFortran77Encapsulates the Scintilla Fortran77 lexer
       CQsciLexerHexThe abstract QsciLexerHex class encapsulates the Scintilla Hex lexer
       CQsciLexerHTMLEncapsulates the Scintilla HTML lexer
       CQsciLexerIDLEncapsulates the Scintilla IDL lexer
       CQsciLexerIntelHexEncapsulates the Scintilla Intel Hex lexer
       CQsciLexerJavaEncapsulates the Scintilla Java lexer
       CQsciLexerJavaScriptEncapsulates the Scintilla JavaScript lexer
       CQsciLexerJSONEncapsulates the Scintilla JSON lexer
       CQsciLexerLuaEncapsulates the Scintilla Lua lexer
       CQsciLexerMakefileEncapsulates the Scintilla Makefile lexer
       CQsciLexerMarkdownEncapsulates the Scintilla Markdown lexer
       CQsciLexerMASMEncapsulates the Scintilla MASM lexer
       CQsciLexerMatlabEncapsulates the Scintilla Matlab file lexer
       CQsciLexerNASMEncapsulates the Scintilla NASM lexer
       CQsciLexerOctaveEncapsulates the Scintilla Octave file lexer
       CQsciLexerPascalEncapsulates the Scintilla Pascal lexer
       CQsciLexerPerlEncapsulates the Scintilla Perl lexer
       CQsciLexerPOEncapsulates the Scintilla PO lexer
       CQsciLexerPostScriptEncapsulates the Scintilla PostScript lexer
       CQsciLexerPOVEncapsulates the Scintilla POV lexer
       CQsciLexerPropertiesEncapsulates the Scintilla Properties lexer
       CQsciLexerPythonEncapsulates the Scintilla Python lexer
       CQsciLexerRubyEncapsulates the Scintilla Ruby lexer
       CQsciLexerSpiceEncapsulates the Scintilla Spice lexer
       CQsciLexerSQLEncapsulates the Scintilla SQL lexer
       CQsciLexerSRecEncapsulates the Scintilla S-Record lexer
       CQsciLexerTCLEncapsulates the Scintilla TCL lexer
       CQsciLexerTekHexEncapsulates the Scintilla Tektronix Hex lexer
       CQsciLexerTeXEncapsulates the Scintilla TeX lexer
       CQsciLexerVerilogEncapsulates the Scintilla Verilog lexer
       CQsciLexerVHDLEncapsulates the Scintilla VHDL lexer
       CQsciLexerXMLEncapsulates the Scintilla XML lexer
       CQsciLexerYAMLEncapsulates the Scintilla YAML lexer
       CQsciMacroSequence of recordable editor commands
       CQsciPrinterSub-class of the Qt QPrinter class that is able to print the text of a Scintilla document
       CQsciScintillaImplements a higher level, more Qt-like, API to the Scintilla editor widget
       CQsciScintillaBaseImplements the Scintilla editor widget and its low-level API
       CQsciStyleEncapsulates all the attributes of a style
       CQsciStyledTextContainer for a piece of text and the style used to display the text
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/bc_s.png b/third_party/qscintilla/doc/html/bc_s.png new file mode 100644 index 0000000000000000000000000000000000000000..224b29aa9847d5a4b3902efd602b7ddf7d33e6c2 GIT binary patch literal 676 zcmV;V0$crwP)y__>=_9%My z{n931IS})GlGUF8K#6VIbs%684A^L3@%PlP2>_sk`UWPq@f;rU*V%rPy_ekbhXT&s z(GN{DxFv}*vZp`F>S!r||M`I*nOwwKX+BC~3P5N3-)Y{65c;ywYiAh-1*hZcToLHK ztpl1xomJ+Yb}K(cfbJr2=GNOnT!UFA7Vy~fBz8?J>XHsbZoDad^8PxfSa0GDgENZS zuLCEqzb*xWX2CG*b&5IiO#NzrW*;`VC9455M`o1NBh+(k8~`XCEEoC1Ybwf;vr4K3 zg|EB<07?SOqHp9DhLpS&bzgo70I+ghB_#)K7H%AMU3v}xuyQq9&Bm~++VYhF09a+U zl7>n7Jjm$K#b*FONz~fj;I->Bf;ule1prFN9FovcDGBkpg>)O*-}eLnC{6oZHZ$o% zXKW$;0_{8hxHQ>l;_*HATI(`7t#^{$(zLe}h*mqwOc*nRY9=?Sx4OOeVIfI|0V(V2 zBrW#G7Ss9wvzr@>H*`r>zE z+e8bOBgqIgldUJlG(YUDviMB`9+DH8n-s9SXRLyJHO1!=wY^79WYZMTa(wiZ!zP66 zA~!21vmF3H2{ngD;+`6j#~6j;$*f*G_2ZD1E;9(yaw7d-QnSCpK(cR1zU3qU0000< KMNUMnLSTYoA~SLT literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/bdwn.png b/third_party/qscintilla/doc/html/bdwn.png new file mode 100644 index 0000000000000000000000000000000000000000..940a0b950443a0bb1b216ac03c45b8a16c955452 GIT binary patch literal 147 zcmeAS@N?(olHy`uVBq!ia0vp^>_E)H!3HEvS)PKZC{Gv1kP61Pb5HX&C2wk~_T + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciAPIs Member List
      +
      +
      + +

      This is the complete list of members for QsciAPIs, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + +
      add(const QString &entry)QsciAPIs
      apiPreparationCancelled()QsciAPIssignal
      apiPreparationFinished()QsciAPIssignal
      apiPreparationStarted()QsciAPIssignal
      autoCompletionSelected(const QString &sel)QsciAPIsvirtual
      callTips(const QStringList &context, int commas, QsciScintilla::CallTipsStyle style, QList< int > &shifts)QsciAPIsvirtual
      cancelPreparation()QsciAPIs
      clear()QsciAPIs
      defaultPreparedName() constQsciAPIs
      event(QEvent *e) (defined in QsciAPIs)QsciAPIsvirtual
      installedAPIFiles() constQsciAPIs
      isPrepared(const QString &filename=QString()) constQsciAPIs
      lexer() constQsciAbstractAPIs
      load(const QString &filename)QsciAPIs
      loadPrepared(const QString &filename=QString())QsciAPIs
      prepare()QsciAPIs
      QsciAbstractAPIs(QsciLexer *lexer)QsciAbstractAPIs
      QsciAPIs(QsciLexer *lexer)QsciAPIs
      remove(const QString &entry)QsciAPIs
      savePrepared(const QString &filename=QString()) constQsciAPIs
      updateAutoCompletionList(const QStringList &context, QStringList &list)QsciAPIsvirtual
      ~QsciAbstractAPIs()QsciAbstractAPIsvirtual
      ~QsciAPIs()QsciAPIsvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciAPIs.html b/third_party/qscintilla/doc/html/classQsciAPIs.html new file mode 100644 index 0000000..dfec37a --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciAPIs.html @@ -0,0 +1,440 @@ + + + + + + + +QScintilla: QsciAPIs Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciAPIs Class Reference
      +
      +
      + +

      #include <qsciapis.h>

      + +

      Inherits QsciAbstractAPIs.

      + + + + + + + + +

      +Signals

      void apiPreparationCancelled ()
       
      void apiPreparationStarted ()
       
      void apiPreparationFinished ()
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciAPIs (QsciLexer *lexer)
       
      +virtual ~QsciAPIs ()
       
      void add (const QString &entry)
       
      void clear ()
       
      bool load (const QString &filename)
       
      void remove (const QString &entry)
       
      void prepare ()
       
      void cancelPreparation ()
       
      QString defaultPreparedName () const
       
      bool isPrepared (const QString &filename=QString()) const
       
      bool loadPrepared (const QString &filename=QString())
       
      bool savePrepared (const QString &filename=QString()) const
       
      +virtual void updateAutoCompletionList (const QStringList &context, QStringList &list)
       
      +virtual void autoCompletionSelected (const QString &sel)
       
      +virtual QStringList callTips (const QStringList &context, int commas, QsciScintilla::CallTipsStyle style, QList< int > &shifts)
       
      +virtual bool event (QEvent *e)
       
      QStringList installedAPIFiles () const
       
      - Public Member Functions inherited from QsciAbstractAPIs
       QsciAbstractAPIs (QsciLexer *lexer)
       
      +virtual ~QsciAbstractAPIs ()
       
      +QsciLexerlexer () const
       
      +

      Detailed Description

      +

      The QsciAPIs class provies an implementation of the textual API information used in call tips and for auto-completion.

      +

      Raw API information is read from one or more files. Each API function is described by a single line of text comprising the function's name, followed by the function's optional comma separated parameters enclosed in parenthesis, and finally followed by optional explanatory text.

      +

      A function name may be followed by a ‘?’ and a number. The number is used by auto-completion to display a registered QPixmap with the function name.

      +

      All function names are used by auto-completion, but only those that include function parameters are used in call tips.

      +

      QScintilla only deals with prepared API information and not the raw information described above. This is done so that large APIs can be handled while still being responsive to user input. The conversion of raw information to prepared information is time consuming (think tens of seconds) and implemented in a separate thread. Prepared information can be quickly saved to and loaded from files. Such files are portable between different architectures.

      +

      QScintilla based applications that want to support large APIs would normally provide the user with the ability to specify a set of, possibly project specific, raw API files and convert them to prepared files that are loaded quickly when the application is invoked.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciAPIs()

      + +
      +
      + + + + + + + + +
      QsciAPIs::QsciAPIs (QsciLexerlexer)
      +
      +

      Constructs a QsciAPIs instance attached to lexer lexer. lexer becomes the instance's parent object although the instance can also be subsequently attached to other lexers.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ add()

      + +
      +
      + + + + + + + + +
      void QsciAPIs::add (const QString & entry)
      +
      +

      Add the single raw API entry entry to the current set.

      +
      See also
      clear(), load(), remove()
      + +
      +
      + +

      ◆ clear()

      + +
      +
      + + + + + + + +
      void QsciAPIs::clear ()
      +
      +

      Deletes all raw API information.

      +
      See also
      add(), load(), remove()
      + +
      +
      + +

      ◆ load()

      + +
      +
      + + + + + + + + +
      bool QsciAPIs::load (const QString & filename)
      +
      +

      Load the API information from the file named filename, adding it to the current set. Returns true if successful, otherwise false.

      + +
      +
      + +

      ◆ remove()

      + +
      +
      + + + + + + + + +
      void QsciAPIs::remove (const QString & entry)
      +
      +

      Remove the single raw API entry entry from the current set.

      +
      See also
      add(), clear(), load()
      + +
      +
      + +

      ◆ prepare()

      + +
      +
      + + + + + + + +
      void QsciAPIs::prepare ()
      +
      +

      Convert the current raw API information to prepared API information. This is implemented by a separate thread.

      +
      See also
      cancelPreparation()
      + +
      +
      + +

      ◆ cancelPreparation()

      + +
      +
      + + + + + + + +
      void QsciAPIs::cancelPreparation ()
      +
      +

      Cancel the conversion of the current raw API information to prepared API information.

      +
      See also
      prepare()
      + +
      +
      + +

      ◆ defaultPreparedName()

      + +
      +
      + + + + + + + +
      QString QsciAPIs::defaultPreparedName () const
      +
      +

      Return the default name of the prepared API information file. It is based on the name of the associated lexer and in the directory defined by the QSCIDIR environment variable. If the environment variable isn't set then $HOME/.qsci is used.

      + +
      +
      + +

      ◆ isPrepared()

      + +
      +
      + + + + + + + + +
      bool QsciAPIs::isPrepared (const QString & filename = QString()) const
      +
      +

      Check to see is a prepared API information file named filename exists. If filename is empty then the value returned by defaultPreparedName() is used. Returns true if successful, otherwise false.

      +
      See also
      defaultPreparedName()
      + +
      +
      + +

      ◆ loadPrepared()

      + +
      +
      + + + + + + + + +
      bool QsciAPIs::loadPrepared (const QString & filename = QString())
      +
      +

      Load the prepared API information from the file named filename. If filename is empty then a name is constructed based on the name of the associated lexer and saved in the directory defined by the QSCIDIR environment variable. If the environment variable isn't set then $HOME/.qsci is used. Returns true if successful, otherwise false.

      + +
      +
      + +

      ◆ savePrepared()

      + +
      +
      + + + + + + + + +
      bool QsciAPIs::savePrepared (const QString & filename = QString()) const
      +
      +

      Save the prepared API information to the file named filename. If filename is empty then a name is constructed based on the name of the associated lexer and saved in the directory defined by the QSCIDIR environment variable. If the environment variable isn't set then $HOME/.qsci is used. Returns true if successful, otherwise false.

      + +
      +
      + +

      ◆ installedAPIFiles()

      + +
      +
      + + + + + + + +
      QStringList QsciAPIs::installedAPIFiles () const
      +
      +

      Return a list of the installed raw API file names for the associated lexer.

      + +
      +
      + +

      ◆ apiPreparationCancelled

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciAPIs::apiPreparationCancelled ()
      +
      +signal
      +
      +

      This signal is emitted when the conversion of raw API information to prepared API information has been cancelled.

      +
      See also
      apiPreparationFinished(), apiPreparationStarted()
      + +
      +
      + +

      ◆ apiPreparationStarted

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciAPIs::apiPreparationStarted ()
      +
      +signal
      +
      +

      This signal is emitted when the conversion of raw API information to prepared API information starts and can be used to give some visual feedback to the user.

      +
      See also
      apiPreparationCancelled(), apiPreparationFinished()
      + +
      +
      + +

      ◆ apiPreparationFinished

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciAPIs::apiPreparationFinished ()
      +
      +signal
      +
      +

      This signal is emitted when the conversion of raw API information to prepared API information has finished.

      +
      See also
      apiPreparationCancelled(), apiPreparationStarted()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciAbstractAPIs-members.html b/third_party/qscintilla/doc/html/classQsciAbstractAPIs-members.html new file mode 100644 index 0000000..b9aa24c --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciAbstractAPIs-members.html @@ -0,0 +1,61 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciAbstractAPIs Member List
      +
      +
      + +

      This is the complete list of members for QsciAbstractAPIs, including all inherited members.

      + + + + + + + +
      autoCompletionSelected(const QString &selection)QsciAbstractAPIsvirtual
      callTips(const QStringList &context, int commas, QsciScintilla::CallTipsStyle style, QList< int > &shifts)=0QsciAbstractAPIspure virtual
      lexer() constQsciAbstractAPIs
      QsciAbstractAPIs(QsciLexer *lexer)QsciAbstractAPIs
      updateAutoCompletionList(const QStringList &context, QStringList &list)=0QsciAbstractAPIspure virtual
      ~QsciAbstractAPIs()QsciAbstractAPIsvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciAbstractAPIs.html b/third_party/qscintilla/doc/html/classQsciAbstractAPIs.html new file mode 100644 index 0000000..24597da --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciAbstractAPIs.html @@ -0,0 +1,1575 @@ + + + + + + + +QScintilla: QsciAbstractAPIs Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciAbstractAPIs Class Referenceabstract
      +
      +
      + +

      #include <qsciabstractapis.h>

      + +

      Inherits QObject.

      + +

      Inherited by QsciAPIs.

      + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciAbstractAPIs (QsciLexer *lexer)
       
      +virtual ~QsciAbstractAPIs ()
       
      +QsciLexerlexer () const
       
      virtual void updateAutoCompletionList (const QStringList &context, QStringList &list)=0
       
      virtual void autoCompletionSelected (const QString &selection)
       
      virtual QStringList callTips (const QStringList &context, int commas, QsciScintilla::CallTipsStyle style, QList< int > &shifts)=0
       
      +

      Detailed Description

      +

      The QsciAbstractAPIs class represents the interface to the textual API information used in call tips and for auto-completion. A sub-class will provide the actual implementation of the interface.

      +

      API information is specific to a particular language lexer but can be shared by multiple instances of the lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciAbstractAPIs()

      + +
      +
      + + + + + + + + +
      QsciAbstractAPIs::QsciAbstractAPIs (QsciLexerlexer)
      +
      +

      Constructs a QsciAbstractAPIs instance attached to lexer lexer. lexer becomes the instance's parent object although the instance can also be subsequently attached to other lexers.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ updateAutoCompletionList()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciAbstractAPIs::updateAutoCompletionList (const QStringList & context,
      QStringList & list 
      )
      +
      +pure virtual
      +
      +

      Update the list list with API entries derived from context. context is the list of words in the text preceding the cursor position. The characters that make up a word and the characters that separate words are defined by the lexer. The last word is a partial word and may be empty if the user has just entered a word separator.

      + +

      Implemented in QsciAPIs.

      + +
      +
      + +

      ◆ autoCompletionSelected()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciAbstractAPIs::autoCompletionSelected (const QString & selection)
      +
      +virtual
      +
      +

      This is called when the user selects the entry selection from the auto-completion list. A sub-class can use this as a hint to provide more specific API entries in future calls to updateAutoCompletionList(). The default implementation does nothing.

      + +

      Reimplemented in QsciAPIs.

      + +
      +
      + +

      ◆ callTips()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual QStringList QsciAbstractAPIs::callTips (const QStringList & context,
      int commas,
      QsciScintilla::CallTipsStyle style,
      QList< int > & shifts 
      )
      +
      +pure virtual
      +
      +

      Return the call tips valid for the context context. (Note that the last word of the context will always be empty.) commas is the number of commas the user has typed after the context and before the cursor position. The exact position of the list of call tips can be adjusted by specifying a corresponding left character shift in shifts. This is normally done to correct for any displayed context according to style.

      +
      See also
      updateAutoCompletionList()
      + +

      Implemented in QsciAPIs.

      + +
      +
      +
      +
      QFont font() const
      Definition: qscistyle.h:131
      +
      The QsciLexerIntelHex class encapsulates the Scintilla Intel Hex lexer.
      Definition: qscilexerintelhex.h:33
      +
      QByteArray bytes(int start, int end) const
      +
      const char * keywords(int set) const
      +
      The QsciLexerJavaScript class encapsulates the Scintilla JavaScript lexer.
      Definition: qscilexerjavascript.h:33
      +
      QsciAbstractAPIs * apis() const
      +
      const char * language() const
      Returns the name of the language.
      +
      const char * keywords(int set) const
      +
      The QsciLexerXML class encapsulates the Scintilla XML lexer.
      Definition: qscilexerxml.h:32
      +
      virtual int printRange(QsciScintillaBase *qsb, QPainter &painter, int from=-1, int to=-1)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void refreshProperties()
      +
      void SCN_CHARADDED(int charadded)
      +
      virtual void setAutoIndent(bool autoindent)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      int extraAscent() const
      +
      void apiPreparationFinished()
      +
      void userListActivated(int id, const QString &string)
      +
      bool foldComments() const
      +
      QsciLexerCoffeeScript(QObject *parent=0)
      +
      virtual void foldAll(bool children=false)
      +
      QsciStyle(int style=-1)
      +
      const char * keywords(int set) const
      +
      QColor defaultPaper(int style) const
      +
      bool isModified() const
      +
      bool foldSyntaxBased() const
      +
      virtual bool readProperties(QSettings &qs, const QString &prefix)
      +
      bool foldAtElse() const
      +
      const char * language() const
      Returns the name of the language.
      +
      const char * lexer() const
      +
      const char * lexer() const
      Returns the name of the lexer.
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void setMargins(int margins)
      +
      const char * blockEnd(int *style=0) const
      +
      QsciAPIs(QsciLexer *lexer)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      Command
      This enum defines the different commands that can be assigned to a key.
      Definition: qscicommand.h:43
      +
      virtual ~QsciLexerEDIFACT()
      Destroys the QsciLexerEDIFACT instance.
      +
      QsciLexerBatch(QObject *parent=0)
      +
      QColor defaultColor(int style) const
      +
      virtual bool event(QEvent *e)
      \reimp
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      BraceMatch
      Definition: qsciscintilla.h:133
      +
      const char * lexer() const
      +
      @ CallTipsBelowText
      Call tips are placed below the text.
      Definition: qsciscintilla.h:149
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      virtual void setFoldComments(bool fold)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      AutoCompletionSource
      This enum defines the different sources for auto-completion lists.
      Definition: qsciscintilla.h:116
      +
      QsciLexerNASM(QObject *parent=0)
      +
      void setAnnotationDisplay(AnnotationDisplay display)
      +
      void setMarginOptions(int options)
      +
      int markerDefine(const QImage &im, int markerNumber=-1)
      +
      void SCN_INDICATORRELEASE(int position, int modifiers)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void setAutoCompletionFillupsEnabled(bool enabled)
      +
      virtual ~QsciLexerHex()
      Destroys the QsciLexerHex instance.
      +
      virtual void setCaretLineBackgroundColor(const QColor &col)
      +
      void annotate(int line, const QsciStyledText &text)
      Annotate the line line with the styled text text.
      +
      const char * blockStartKeyword(int *style=0) const
      +
      void getCursorPosition(int *line, int *index) const
      +
      virtual void setMarginSensitivity(int margin, bool sens)
      +
      void annotate(int line, const QList< QsciStyledText > &text)
      Annotate the line line with the list of styled text text.
      +
      QString description(int style) const
      +
      QString description(int style) const
      +
      QsciLexerProperties(QObject *parent=0)
      +
      QColor defaultColor(int style) const
      +
      const char * keywords(int set) const
      +
      void replaceVerticalScrollBar(QScrollBar *scrollBar)
      +
      const char * lexer() const
      Returns the name of the lexer.
      +
      QsciLexerCPP(QObject *parent=0, bool caseInsensitiveKeywords=false)
      +
      QStringList autoCompletionWordSeparators() const
      +
      bool foldCompact() const
      +
      The QsciLexerEDIFACT class encapsulates the Scintilla EDIFACT lexer.
      Definition: qscilexeredifact.h:32
      +
      The QsciLexerFortran77 class encapsulates the Scintilla Fortran77 lexer.
      Definition: qscilexerfortran77.h:33
      +
      void SCN_INDICATORCLICK(int position, int modifiers)
      +
      bool foldCompact() const
      +
      QColor defaultPaper(int style) const
      +
      virtual void setMarginWidth(int margin, int width)
      +
      The QsciLexerTeX class encapsulates the Scintilla TeX lexer.
      Definition: qscilexertex.h:32
      +
      QsciLexerCMake(QObject *parent=0)
      +
      const char * lexer() const
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      QColor defaultPaper(int style) const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      const char * language() const
      Returns the name of the language.
      +
      QColor defaultColor(int style) const
      +
      The QsciLexerCSS class encapsulates the Scintilla CSS lexer.
      Definition: qscilexercss.h:32
      +
      QColor defaultPaper(int style) const
      +
      QColor defaultColor(int style) const
      +
      QColor color() const
      Definition: qscistyle.h:109
      +
      const char * language() const
      Returns the name of the language.
      +
      bool foldPreprocessor() const
      Definition: qscilexerverilog.h:213
      +
      void setAPIs(QsciAbstractAPIs *apis)
      +
      const char * lexer() const
      +
      void setDollarsAllowed(bool allowed)
      +
      void resetFoldMarginColors()
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void refreshProperties()
      +
      const char * lexer() const
      +
      QString description(int style) const
      +
      int indicatorDefine(IndicatorStyle style, int indicatorNumber=-1)
      +
      @ NoBraceMatch
      Brace matching is disabled.
      Definition: qsciscintilla.h:135
      +
      QColor defaultPaper(int style) const
      +
      QColor defaultPaper(int style) const
      +
      void setV3BytesAllowed(bool allowed)
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      const char * language() const
      Returns the name of the language.
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      virtual void setFoldCompact(bool fold)
      +
      virtual void dragMoveEvent(QDragMoveEvent *e)
      Re-implemented to handle drag moves.
      +
      virtual void setAutoIndentStyle(int autoindentstyle)
      +
      @ SC_MARK_CIRCLEMINUSCONNECTED
      A drawn minus sign in a connected circle.
      Definition: qsciscintillabase.h:2631
      +
      virtual void clear()
      Deletes all the text in the text edit.
      +
      bool foldAtParenthesis() const
      +
      bool foldOnlyBegin() const
      Definition: qscilexersql.h:206
      +
      QsciStyle(int style, const QString &description, const QColor &color, const QColor &paper, const QFont &font, bool eolFill=false)
      +
      const char * lexer() const
      Returns the name of the lexer.
      +
      int callTipsVisible() const
      Definition: qsciscintilla.h:653
      +
      const char * lexer() const
      +
      bool foldCompact() const
      Definition: qscilexercoffeescript.h:214
      +
      const char * language() const
      Returns the name of the language.
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void setFoldCompact(bool fold)
      +
      QsciLexerAsm(QObject *parent=0)
      +
      bool foldCompact() const
      Definition: qscilexerpython.h:199
      +
      void setFoldPODBlocks(bool fold)
      +
      TextCase textCase() const
      Definition: qscistyle.h:152
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      QString text(int start, int end) const
      +
      QsciLexerSpice(QObject *parent=0)
      +
      void prepare()
      +
      const char * lexer() const
      +
      bool write(QIODevice *io) const
      +
      bool foldCompact() const
      Definition: qscilexerhtml.h:440
      +
      virtual int defaultStyle() const
      +
      bool foldComments() const
      +
      QsciLexerPOV(QObject *parent=0)
      +
      virtual void copy()
      +
      bool foldComments() const
      +
      virtual QFont font(int style) const
      +
      void SCN_FOCUSOUT()
      This signal is emitted when focus is lost.
      +
      void apiPreparationStarted()
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      void clearAlternateKeys()
      The alternate keys bindings for all commands are removed.
      +
      QString description(int style) const
      +
      bool autoCompletionShowSingle() const
      +
      QsciLexerPostScript(QObject *parent=0)
      +
      void setFoldComments(bool fold)
      +
      QsciLexerXML(QObject *parent=0)
      +
      const char * keywords(int set) const
      +
      TabDrawMode tabDrawMode() const
      +
      QColor defaultColor(int style) const
      Returns the foreground colour of the text for style number style.
      +
      QString description(int style) const
      +
      virtual const char * autoCompletionFillups() const
      Returns the characters that can fill up auto-completion.
      +
      virtual void setIndentationsUseTabs(bool tabs)
      +
      The QsciDocument class represents a document to be edited.
      Definition: qscidocument.h:38
      +
      QString description(int style) const
      +
      bool changeable() const
      Definition: qscistyle.h:173
      +
      @ SC_MARK_BOOKMARK
      A bookmark.
      Definition: qsciscintillabase.h:2664
      +
      @ SC_MARK_SHORTARROW
      An arrow pointing to the right.
      Definition: qsciscintillabase.h:2576
      +
      The QsciLexerIDL class encapsulates the Scintilla IDL lexer.
      Definition: qscilexeridl.h:33
      +
      const char * blockStart(int *style=0) const
      +
      const char * keywords(int set) const
      +
      const char * language() const
      Returns the name of the language.
      +
      void cancelList()
      Cancel any current auto-completion or user defined list.
      +
      @ SC_MARGIN_SYMBOL
      Definition: qsciscintillabase.h:2690
      +
      QsciLexer * lexer() const
      +
      bool dottedWords() const
      Definition: qscilexersql.h:174
      +
      virtual int styleBitsNeeded() const
      +
      virtual void resetSelectionBackgroundColor()
      +
      const char * blockStartKeyword(int *style=0) const
      +
      FoldStyle
      This enum defines the different styles for the folding margin.
      Definition: qsciscintilla.h:209
      +
      bool SCSSLanguage() const
      Definition: qscilexercss.h:207
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      @ SC_MARK_ARROWS
      Three drawn arrows pointing right.
      Definition: qsciscintillabase.h:2641
      +
      const char * lexer() const
      + +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      QsciLexer(QObject *parent=0)
      +
      virtual void wheelEvent(QWheelEvent *e)
      \reimp
      +
      virtual void setCommentDelimiter(QChar delimeter)
      +
      bool makoTemplates() const
      Definition: qscilexerhtml.h:478
      +
      bool v2UnicodeAllowed() const
      Definition: qscilexerpython.h:246
      +
      int whitespaceSize() const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      The QsciLexerCustom class is an abstract class used as a base for new language lexers.
      Definition: qscilexercustom.h:43
      +
      const char * lexer() const
      +
      void setTextCase(TextCase text_case)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      @ WrapFlagByBorder
      A wrap flag is displayed by the border.
      Definition: qsciscintilla.h:501
      +
      @ SC_MARK_CIRCLEMINUS
      A drawn minus sign in a circle.
      Definition: qsciscintillabase.h:2628
      +
      virtual ~QsciLexerJavaScript()
      Destroys the QsciLexerJavaScript instance.
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      virtual ~QsciLexerBash()
      Destroys the QsciLexerBash instance.
      +
      QStringList installedAPIFiles() const
      +
      bool foldComments() const
      Definition: qscilexersql.h:190
      +
      @ SC_MARK_UNDERLINE
      The line is underlined using the marker's background color.
      Definition: qsciscintillabase.h:2658
      +
      virtual void setFoldComments(bool fold)
      +
      const char * language() const
      Returns the name of the language.
      +
      void setMarkerBackgroundColor(const QColor &col, int markerNumber=-1)
      +
      const char * blockEnd(int *style=0) const
      +
      QsciAbstractAPIs(QsciLexer *lexer)
      +
      virtual void zoomOut()
      +
      virtual void setFoldCompact(bool fold)
      +
      bool tokenize() const
      +
      Command command() const
      Return the command that will be executed by this instance.
      Definition: qscicommand.h:348
      +
      const char * lexer() const
      +
      void refreshProperties()
      +
      QString description(int style) const
      + +
      QsciLexerBash(QObject *parent=0)
      +
      virtual void setWhitespaceVisibility(WhitespaceVisibility mode)
      +
      const char * language() const
      Returns the name of the language.
      +
      bool foldPreprocessor() const
      Definition: qscilexercpp.h:247
      +
      bool isCallTipActive() const
      Returns true if a call tip is currently active.
      +
      void paperChanged(const QColor &c, int style)
      +
      virtual void setFoldAtElse(bool fold)
      +
      virtual void setMagnification(int magnification)
      +
      virtual void setIndentationGuides(bool enable)
      +
      bool foldCompact() const
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      virtual void setSelectionBackgroundColor(const QColor &col)
      +
      virtual void setAutoCompletionSource(AutoCompletionSource source)
      +
      virtual void setFoldCompact(bool fold)
      +
      bool selectionToEol() const
      +
      QColor defaultColor(int style) const
      +
      void refreshProperties()
      +
      bool dollarsAllowed() const
      Definition: qscilexercoffeescript.h:192
      +
      The abstract QsciLexerHex class encapsulates the Scintilla Hex lexer.
      Definition: qscilexerhex.h:33
      +
      void marginRightClicked(int margin, int line, Qt::KeyboardModifiers state)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void execute()
      Execute the command.
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      const char * blockStart(int *style=0) const
      +
      void refreshProperties()
      +
      virtual void autoCompletionSelected(const QString &sel)
      \reimp
      +
      const char * keywords(int set) const
      +
      The QsciLexer class is an abstract class used as a base for language lexers.
      Definition: qscilexer.h:63
      +
      virtual void setFoldCompact(bool fold)
      +
      void setMarginText(int line, const QsciStyledText &text)
      Set the margin text of line line with the styled text text.
      +
      const char * language() const
      Returns the name of the language.
      +
      void SCN_FOCUSIN()
      This signal is emitted when focus is received.
      +
      QsciLexerMarkdown(QObject *parent=0)
      +
      WrapMode wrapMode() const
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      The QsciLexerPostScript class encapsulates the Scintilla PostScript lexer.
      Definition: qscilexerpostscript.h:33
      +
      void setMarkerForegroundColor(const QColor &col, int markerNumber=-1)
      +
      void refreshProperties()
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void SCN_DOUBLECLICK(int position, int line, int modifiers)
      +
      void indicatorReleased(int line, int index, Qt::KeyboardModifiers state)
      +
      QStringList autoCompletionWordSeparators() const
      +
      const char * language() const
      Returns the name of the language.
      +
      EolMode
      This enum defines the different end-of-line modes.
      Definition: qsciscintilla.h:197
      +
      bool foldAtElse() const
      Definition: qscilexercpp.h:232
      +
      virtual void dragEnterEvent(QDragEnterEvent *e)
      Re-implemented to handle drag enters.
      +
      @ SC_MARK_BOXMINUSCONNECTED
      A drawn minus sign in a connected box.
      Definition: qsciscintillabase.h:2611
      +
      WhitespaceVisibility
      Definition: qsciscintilla.h:463
      +
      void markerDeleteHandle(int mhandle)
      +
      virtual ~QsciLexerPerl()
      Destroys the QsciLexerPerl instance.
      +
      QString description(int style) const
      +
      QsciStyledText(const QString &text, const QsciStyle &style)
      +
      void setHighlightHashQuotedStrings(bool enabled)
      +
      int key() const
      Definition: qscicommand.h:377
      +
      The QsciLexerJava class encapsulates the Scintilla Java lexer.
      Definition: qscilexerjava.h:32
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      QString description() const
      Definition: qscistyle.h:98
      +
      QColor defaultPaper() const
      +
      bool hotspot() const
      Definition: qscistyle.h:184
      +
      virtual void autoCompletionSelected(const QString &selection)
      +
      virtual void mouseReleaseEvent(QMouseEvent *e)
      Re-implemented to handle mouse releases.
      +
      virtual bool findFirstInSelection(const QString &expr, bool re, bool cs, bool wo, bool forward=true, bool show=true, bool posix=false, bool cxx11=false)
      +
      The QsciLexerVerilog class encapsulates the Scintilla Verilog lexer.
      Definition: qscilexerverilog.h:33
      +
      const char * keywords(int set) const
      +
      @ SC_MARK_CIRCLEPLUS
      A drawn plus sign in a circle.
      Definition: qsciscintillabase.h:2622
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      QColor defaultPaper(int style) const
      +
      void selectionChanged()
      +
      void setFoldScriptComments(bool fold)
      +
      QColor defaultPaper(int style) const
      +
      bool hashComments() const
      Definition: qscilexersql.h:218
      +
      bool indicatorDrawUnder(int indicatorNumber) const
      +
      QColor defaultColor(int style) const
      +
      QColor defaultColor(int style) const
      +
      void SCN_AUTOCSELECTION(const char *selection, int position, int ch, int method)
      +
      virtual ~QsciLexerBatch()
      Destroys the QsciLexerBatch instance.
      +
      The QsciLexerSQL class encapsulates the Scintilla SQL lexer.
      Definition: qscilexersql.h:32
      +
      virtual void setFoldCompact(bool fold)
      +
      bool indentationsUseTabs() const
      +
      int length() const
      +
      virtual void setAutoCompletionCaseSensitivity(bool cs)
      +
      QMenu * createStandardContextMenu()
      +
      virtual void unindent(int line)
      +
      virtual void replaceSelectedText(const QString &text)
      +
      void setWhitespaceBackgroundColor(const QColor &col)
      +
      void modificationAttempted()
      +
      virtual void setTokenize(bool tokenize)
      +
      const char * language() const
      Returns the name of the language.
      +
      @ SC_MARGIN_BACK
      Definition: qsciscintillabase.h:2697
      + +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      const char * lexer() const
      +
      @ SC_MARK_ARROWDOWN
      A triangle pointing down.
      Definition: qsciscintillabase.h:2583
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      const char * lexer() const
      +
      QString save() const
      +
      QsciLexerMASM(QObject *parent=0)
      +
      const char * keywords(int set) const
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      int markerDefine(const QPixmap &pm, int markerNumber=-1)
      +
      void markerDeleteAll(int markerNumber=-1)
      +
      void setPaper(const QColor &paper)
      +
      const QString & text() const
      Returns a reference to the text.
      Definition: qscistyledtext.h:50
      +
      void clear()
      +
      @ SC_MARGIN_TEXT
      The margin will display text.
      Definition: qsciscintillabase.h:2704
      +
      void refreshProperties()
      +
      bool isWordCharacter(char ch) const
      +
      @ SC_MARK_TCORNER
      Definition: qsciscintillabase.h:2599
      +
      bool foldCompact() const
      +
      bool foldPreprocessor() const
      +
      QColor defaultPaper(int style) const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void setCallTipsStyle(CallTipsStyle style)
      +
      bool visible() const
      Definition: qscistyle.h:162
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual int indentationGuideView() const
      Returns the view used for indentation guides.
      +
      const char * blockStartKeyword(int *style=0) const
      +
      virtual void insert(const QString &text)
      Insert the text text at the current position.
      +
      virtual void setFoldAtParenthesis(bool fold)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void setHotspot(bool hotspot)
      +
      virtual ~QsciAPIs()
      Destroy the QsciAPIs instance.
      +
      QList< int > contractedFolds() const
      +
      QsciLexerD(QObject *parent=0)
      +
      bool highlightComments() const
      Definition: qscilexerjson.h:134
      +
      const char * keywords(int set) const
      +
      void refreshProperties()
      +
      QString description(int style) const
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      long SendScintilla(unsigned int msg, unsigned long wParam, const QPixmap &lParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual void changeEvent(QEvent *e)
      \reimp
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      The QsciLexerMarkdown class encapsulates the Scintilla Markdown lexer.
      Definition: qscilexermarkdown.h:33
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      int blockLookback() const
      +
      virtual void selectAll(bool select=true)
      +
      int markerLine(int mhandle) const
      +
      void setScrollWidthTracking(bool enabled)
      +
      virtual ~QsciLexerSQL()
      Destroys the QsciLexerSQL instance.
      +
      @ SC_MARK_CIRCLEPLUSCONNECTED
      A drawn plus sign in a connected box.
      Definition: qsciscintillabase.h:2625
      +
      @ NoFoldStyle
      Folding is disabled.
      Definition: qsciscintilla.h:211
      +
      bool foldAtModule() const
      Definition: qscilexerverilog.h:223
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      virtual void setFoldCompact(bool fold)
      +
      void setCallTipsVisible(int nr)
      +
      virtual ~QsciLexerMarkdown()
      Destroys the QsciLexerMarkdown instance.
      +
      @ SC_MARK_VLINE
      A vertical line drawn in the background colour.
      Definition: qsciscintillabase.h:2592
      +
      virtual void insertAt(const QString &text, int line, int index)
      +
      void * SendScintillaPtrResult(unsigned int msg) const
      Send the Scintilla message msg and return a pointer result.
      +
      void setEdgeColumn(int colnr)
      +
      bool caseSensitiveTags() const
      Definition: qscilexerhtml.h:424
      +
      void setSCSSLanguage(bool enabled)
      +
      QColor defaultColor(int style) const
      +
      void linesChanged()
      This signal is emitted whenever the number of lines of text changes.
      +
      bool load(const QString &asc)
      +
      bool foldComments() const
      +
      bool foldScriptHeredocs() const
      Definition: qscilexerhtml.h:467
      +
      void setProcessComments(bool enable)
      +
      QsciLexerCustom(QObject *parent=0)
      +
      const char * lexer() const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      void setWrapVisualFlags(WrapVisualFlag endFlag, WrapVisualFlag startFlag=WrapFlagNone, int indent=0)
      +
      const char * lexer() const
      +
      bool eolVisibility() const
      +
      virtual void setCaseSensitiveTags(bool sens)
      +
      virtual void setAutoCompletionShowSingle(bool single)
      +
      virtual void setTabWidth(int width)
      +
      virtual void setWrapMode(QsciScintilla::WrapMode wmode)
      +
      bool highlightSubidentifiers() const
      Definition: qscilexerpython.h:223
      +
      The QsciLexerOctave class encapsulates the Scintilla Octave file lexer.
      Definition: qscilexeroctave.h:33
      +
      const char * language() const
      Returns the name of the language.
      +
      void SCN_HOTSPOTRELEASECLICK(int position, int modifiers)
      +
      QColor edgeColor() const
      +
      @ PlainFoldStyle
      Plain folding style using plus and minus symbols.
      Definition: qsciscintilla.h:214
      +
      const char * keywords(int set) const
      +
      @ StrictBraceMatch
      Definition: qsciscintilla.h:139
      +
      void SCN_URIDROPPED(const QUrl &url)
      +
      virtual QStringList callTips(const QStringList &context, int commas, QsciScintilla::CallTipsStyle style, QList< int > &shifts)
      \reimp
      +
      int markerAdd(int linenr, int markerNumber)
      +
      virtual void setEditor(QsciScintilla *editor)
      \reimp
      +
      virtual void setFolding(FoldStyle fold, int margin=2)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void refreshProperties()
      +
      QChar commentDelimiter() const
      +
      QsciLexerTekHex(QObject *parent=0)
      +
      void setIndicatorForegroundColor(const QColor &col, int indicatorNumber=-1)
      +
      QColor defaultColor(int style) const
      +
      The QsciLexerTekHex class encapsulates the Scintilla Tektronix Hex lexer.
      Definition: qscilexertekhex.h:33
      +
      int marginMarkerMask(int margin) const
      +
      virtual QStringList autoCompletionWordSeparators() const
      +
      virtual void setMarginLineNumbers(int margin, bool lnrs)
      +
      bool isReadOnly() const
      +
      void setFoldScriptHeredocs(bool fold)
      +
      const char * lexer() const
      +
      QColor defaultColor(int style) const
      +
      QString description(int style) const
      +
      void remove(const QString &entry)
      +
      bool foldCompact() const
      Definition: qscilexerproperties.h:104
      +
      virtual void setCaretForegroundColor(const QColor &col)
      Sets the foreground colour of the caret to col.
      +
      void setHashComments(bool enable)
      +
      virtual void paste()
      +
      void showUserList(int id, const QStringList &list)
      +
      bool backslashEscapes() const
      Definition: qscilexersql.h:163
      +
      bool indentationGuides() const
      +
      The abstract QsciLexerAsm class encapsulates the Scintilla Asm lexer.
      Definition: qscilexerasm.h:34
      +
      virtual void undo()
      +
      @ SC_MARK_CIRCLE
      A circle.
      Definition: qsciscintillabase.h:2564
      +
      virtual ~QsciLexerLua()
      Destroys the QsciLexerLua instance.
      +
      QsciLexer * lexer() const
      Return the lexer that the instance is attached to.
      +
      virtual void setFoldComments(bool fold)
      +
      QString description(int style) const
      +
      void setDefaultFont(const QFont &f)
      +
      virtual void setFoldAtElse(bool fold)
      +
      int autoIndentStyle()
      +
      The QsciLexerCSharp class encapsulates the Scintilla C# lexer.
      Definition: qscilexercsharp.h:33
      +
      virtual void recolor(int start=0, int end=-1)
      +
      void setScrollWidth(int pixelWidth)
      +
      bool caseSensitive() const
      +
      virtual void setEolVisibility(bool visible)
      +
      int indentation(int line) const
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual void setFoldComments(bool fold)
      +
      virtual void setSelectionForegroundColor(const QColor &col)
      +
      virtual ~QsciLexerCMake()
      Destroys the QsciLexerCMake instance.
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      The QsciStyle class encapsulates all the attributes of a style.
      Definition: qscistyle.h:42
      +
      virtual QString description(int style) const =0
      +
      bool eolFill() const
      Definition: qscistyle.h:141
      +
      virtual void replace(const QString &replaceStr)
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      void setFoldCompact(bool fold)
      +
      virtual ~QsciPrinter()
      Destroys the QsciPrinter instance.
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      const char * language() const
      Returns the name of the language.
      +
      @ AcusNever
      Definition: qsciscintilla.h:102
      +
      QColor defaultPaper(int style) const
      +
      virtual void setFoldDirectives(bool fold)
      +
      QColor defaultPaper(int style) const
      +
      virtual void resetSelectionForegroundColor()
      +
      const char * language() const
      Returns the name of the language.
      +
      bool autoCompletionCaseSensitivity() const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      virtual int indentationGuideView() const
      Returns the view used for indentation guides.
      +
      virtual ~QsciLexerMASM()
      Destroys the QsciLexerMASM instance.
      +
      const char * language() const
      Returns the name of the language.
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      QsciLexerSQL(QObject *parent=0)
      +
      void SCN_MARGINCLICK(int position, int modifiers, int margin)
      +
      void marginClicked(int margin, int line, Qt::KeyboardModifiers state)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      The QsciMacro class represents a sequence of recordable editor commands.
      Definition: qscimacro.h:41
      +
      The QsciLexerHTML class encapsulates the Scintilla HTML lexer.
      Definition: qscilexerhtml.h:32
      +
      void refreshProperties()
      +
      bool marginSensitivity(int margin) const
      +
      void setFoldCompact(bool fold)
      +
      const char * lexer() const
      +
      void setDescription(const QString &description)
      Definition: qscistyle.h:93
      +
      long SendScintilla(unsigned int msg, const char *wParam, const char *lParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      long SendScintilla(unsigned int msg, unsigned long wParam, const QImage &lParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      virtual void setFoldComments(bool fold)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void setStylePreprocessor(bool style)
      +
      void setFoldCompact(bool fold)
      +
      virtual void autoCompleteFromAPIs()
      +
      virtual void setIndentationWidth(int width)
      +
      virtual ~QsciLexerAsm()
      Destroys the QsciLexerAsm instance.
      +
      void resetHotspotForegroundColor()
      +
      void refreshProperties()
      +
      The QsciScintillaBase class implements the Scintilla editor widget and its low-level API.
      Definition: qsciscintillabase.h:61
      +
      virtual bool eolFill(int style) const
      +
      int marginWidth(int margin) const
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual ~QsciLexerJSON()
      Destroys the QsciLexerJSON instance.
      +
      virtual void ensureCursorVisible()
      Ensures that the cursor is visible.
      +
      const char * language() const
      Returns the name of the language.
      +
      void getSelection(int *lineFrom, int *indexFrom, int *lineTo, int *indexTo) const
      +
      const char * blockStart(int *style=0) const
      +
      virtual void ensureLineVisible(int line)
      Ensures that the line number line is visible.
      +
      TabDrawMode
      Definition: qsciscintilla.h:452
      +
      QColor defaultColor(int style) const
      +
      virtual void dropEvent(QDropEvent *e)
      Re-implemented to handle drops.
      +
      void clear()
      Clear the contents of the macro.
      +
      QsciLexerMakefile(QObject *parent=0)
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual void setFoldComments(bool fold)
      +
      void setWhitespaceForegroundColor(const QColor &col)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void copyAvailable(bool yes)
      +
      virtual QByteArray fromMimeData(const QMimeData *source, bool &rectangular) const
      +
      void setIndicatorDrawUnder(bool under, int indicatorNumber=-1)
      +
      virtual bool findNext()
      +
      QList< QsciCommand * > & commands()
      The commands in the set are returned as a list.
      Definition: qscicommandset.h:62
      +
      bool isUtf8() const
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      void refreshProperties()
      +
      bool foldComments() const
      +
      void refreshProperties()
      +
      WrapMode
      This enum defines the different line wrap modes.
      Definition: qsciscintilla.h:478
      +
      virtual void setFoldCompact(bool fold)
      +
      const char * autoCompletionFillups() const
      Returns the characters that can fill up auto-completion.
      +
      int autoCompletionThreshold() const
      Definition: qsciscintilla.h:604
      +
      void setMarginBackgroundColor(int margin, const QColor &col)
      +
      QColor defaultPaper(int style) const
      +
      WrapIndentMode wrapIndentMode() const
      +
      virtual int printRange(QsciScintillaBase *qsb, int from=-1, int to=-1)
      +
      @ SC_MARK_BOXMINUS
      A drawn minus sign in a box.
      Definition: qsciscintillabase.h:2608
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      @ SC_MARK_EMPTY
      Definition: qsciscintillabase.h:2580
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual ~QsciLexerPascal()
      Destroys the QsciLexerPascal instance.
      +
      virtual ~QsciLexerAVS()
      Destroys the QsciLexerAVS instance.
      +
      FoldStyle folding() const
      Definition: qsciscintilla.h:860
      +
      const char * language() const
      Returns the name of the language.
      +
      @ WrapFlagNone
      No wrap flag is displayed.
      Definition: qsciscintilla.h:495
      +
      void setIndicatorHoverForegroundColor(const QColor &col, int indicatorNumber=-1)
      +
      bool foldComments() const
      Definition: qscilexercoffeescript.h:203
      +
      bool processComments() const
      Definition: qscilexertex.h:122
      +
      bool HSSLanguage() const
      Definition: qscilexercss.h:185
      +
      virtual void setPaper(const QColor &c, int style=-1)
      +
      The QsciLexerProperties class encapsulates the Scintilla Properties lexer.
      Definition: qscilexerproperties.h:33
      +
      The QsciLexerPython class encapsulates the Scintilla Python lexer.
      Definition: qscilexerpython.h:33
      +
      QColor defaultColor(int style) const
      Returns the foreground colour of the text for style number style.
      +
      const char * blockStart(int *style=0) const
      +
      bool autoCompletionFillupsEnabled() const
      +
      bool v3BytesAllowed() const
      Definition: qscilexerpython.h:270
      +
      bool readSettings(QSettings &qs, const char *prefix="/Scintilla")
      +
      bool highlightEscapeSequences() const
      Definition: qscilexercpp.h:308
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      const char * keywords(int set) const
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      void setStyling(int length, const QsciStyle &style)
      +
      QString description(int style) const
      +
      bool savePrepared(const QString &filename=QString()) const
      +
      QColor defaultColor(int style) const
      +
      void setHSSLanguage(bool enabled)
      +
      virtual void setSelection(int lineFrom, int indexFrom, int lineTo, int indexTo)
      +
      virtual ~QsciLexerPOV()
      Destroys the QsciLexerPOV instance.
      +
      bool processIf() const
      Definition: qscilexertex.h:133
      +
      The QsciLexerSpice class encapsulates the Scintilla Spice lexer.
      Definition: qscilexerspice.h:32
      +
      bool foldCompact() const
      Definition: qscilexersql.h:195
      +
      const char * blockStart(int *style=0) const
      +
      QString description() const
      The user friendly description of the command is returned.
      +
      virtual void setWrapMode(WrapMode mode)
      +
      AutoCompletionUseSingle
      Definition: qsciscintilla.h:99
      +
      MarkerSymbol
      This enum defines the different pre-defined marker symbols.
      Definition: qsciscintilla.h:353
      +
      QColor defaultColor(int style) const
      Returns the foreground colour of the text for style number style.
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      QColor defaultPaper(int style) const
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      bool foldAtElse() const
      Definition: qscilexersql.h:185
      +
      void SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method)
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      The QsciLexerMakefile class encapsulates the Scintilla Makefile lexer.
      Definition: qscilexermakefile.h:33
      +
      QString text() const
      +
      void SCN_AUTOCSELECTION(const char *selection, int position)
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      CallTipsPosition callTipsPosition() const
      Definition: qsciscintilla.h:643
      +
      The QsciScintilla class implements a higher level, more Qt-like, API to the Scintilla editor widget.
      Definition: qsciscintilla.h:60
      +
      void setHighlightEscapeSequences(bool highlight)
      +
      virtual void contextMenuEvent(QContextMenuEvent *e)
      \reimp
      +
      QsciLexerOctave(QObject *parent=0)
      +
      QsciMacro(const QString &asc, QsciScintilla *parent)
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      const char * blockEnd(int *style=0) const
      +
      bool readSettings(QSettings &qs, const char *prefix="/Scintilla")
      +
      @ AcsNone
      No sources are used, ie. automatic auto-completion is disabled.
      Definition: qsciscintilla.h:118
      +
      void SCN_SAVEPOINTREACHED()
      +
      int textHeight(int linenr) const
      Returns the height in pixels of the text in line number linenr.
      +
      void setCallTipsBackgroundColor(const QColor &col)
      +
      QString description(int style) const
      +
      virtual ~QsciLexerOctave()
      Destroys the QsciLexerOctave instance.
      +
      virtual QColor defaultPaper(int style) const
      Returns the default paper colour for style number style.
      +
      virtual void paintEvent(QPaintEvent *e)
      Re-implemented to paint the viewport.
      +
      int markerFindPrevious(int linenr, unsigned mask) const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void setCallTipsPosition(CallTipsPosition position)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      @ BoxedFoldStyle
      Boxed folding style using boxed plus and minus symbols.
      Definition: qsciscintilla.h:220
      +
      bool read(QIODevice *io)
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual void zoomTo(int size)
      +
      bool foldComments() const
      Definition: qscilexercpp.h:237
      +
      void SCN_HOTSPOTCLICK(int position, int modifiers)
      +
      void resetUnmatchedBraceIndicator()
      +
      @ SC_MARGIN_FORE
      Definition: qsciscintillabase.h:2701
      +
      QColor defaultColor(int style) const
      Returns the foreground colour of the text for style number style.
      +
      void setSmartHighlighting(bool enabled)
      +
      virtual ~QsciLexerCoffeeScript()
      Destroys the QsciLexerCoffeeScript instance.
      +
      int indentationWidth() const
      +
      QsciLexerMatlab(QObject *parent=0)
      +
      void setUnmatchedBraceIndicator(int indicatorNumber)
      +
      @ CallTipsNoAutoCompletionContext
      Definition: qsciscintilla.h:169
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual void dragLeaveEvent(QDragLeaveEvent *e)
      Re-implemented to handle drag leaves.
      +
      The QsciLexerRuby class encapsulates the Scintilla Ruby lexer.
      Definition: qscilexerruby.h:32
      +
      const char * blockStart(int *style=0) const
      +
      const char * blockStart(int *style=0) const
      +
      virtual void zoomIn()
      +
      QColor defaultPaper(int style) const
      +
      virtual void setFoldAtElse(bool fold)
      +
      QsciLexerFortran(QObject *parent=0)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      int lineAt(const QPoint &point) const
      +
      bool foldCompact() const
      +
      bool foldDirectives() const
      +
      The QsciLexerD class encapsulates the Scintilla D lexer.
      Definition: qscilexerd.h:32
      +
      virtual const char * wordCharacters() const
      +
      virtual void setFoldComments(bool fold)
      +
      virtual void setFoldCompact(bool fold)
      +
      void SCN_AUTOCCANCELLED()
      +
      virtual int styleBitsNeeded() const
      +
      virtual void focusInEvent(QFocusEvent *e)
      Re-implemented to tell Scintilla it has the focus.
      +
      bool foldCompact() const
      +
      virtual ~QsciLexerTekHex()
      Destroys the QsciLexerTekHex instance.
      +
      const char * keywords(int set) const
      +
      void setMarginText(int line, const QString &text, int style)
      +
      QColor defaultColor(int style) const
      +
      @ SC_MARK_BOXPLUS
      A drawn plus sign in a box.
      Definition: qsciscintillabase.h:2602
      +
      void SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method, int position)
      +
      int style() const
      Returns the number of the style.
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      int marginOptions() const
      +
      bool foldCompact() const
      Definition: qscilexerruby.h:214
      +
      void setFoldComments(bool fold)
      +
      void setStringsOverNewlineAllowed(bool allowed)
      +
      QsciScintilla(QWidget *parent=0)
      Construct an empty QsciScintilla with parent parent.
      +
      long SendScintilla(unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      virtual void setFoldCompact(bool fold)
      +
      bool foldComments() const
      +
      QString description(int style) const
      +
      The QsciLexerMatlab class encapsulates the Scintilla Matlab file lexer.
      Definition: qscilexermatlab.h:33
      +
      void QSCN_SELCHANGED(bool yes)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void clearMarginText(int line=-1)
      +
      virtual ~QsciLexerYAML()
      Destroys the QsciLexerYAML instance.
      +
      QString wordAtPoint(const QPoint &point) const
      Returns the word at the point pixel coordinates.
      +
      const char * lexer() const
      +
      int markerDefine(char ch, int markerNumber=-1)
      +
      QColor defaultColor(int style) const
      +
      const char * language() const
      Returns the name of the language.
      +
      void SCN_MODIFYATTEMPTRO()
      +
      void refresh()
      Refresh the style settings.
      +
      void setFoldComments(bool fold)
      +
      const char * lexer() const
      Returns the name of the lexer.
      +
      BraceMatch braceMatching() const
      Definition: qsciscintilla.h:632
      +
      AutoCompletionUseSingle autoCompletionUseSingle() const
      +
      The QsciLexerCMake class encapsulates the Scintilla CMake lexer.
      Definition: qscilexercmake.h:32
      +
      virtual void selectToMatchingBrace()
      +
      QsciDocument()
      Create a new unattached document.
      +
      const char * blockEnd(int *style=0) const
      +
      bool foldComments() const
      Definition: qscilexerpython.h:188
      +
      virtual ~QsciLexerCustom()
      Destroy the QSciLexerCustom.
      +
      void setCallTipsHighlightColor(const QColor &col)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      QsciLexerPython(QObject *parent=0)
      +
      void refreshProperties()
      +
      bool isRedoAvailable() const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      virtual void cut()
      +
      const char * language() const
      Returns the name of the language.
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      virtual void foldLine(int line)
      +
      bool foldScriptComments() const
      Definition: qscilexerhtml.h:456
      +
      QString description(int style) const
      +
      bool loadPrepared(const QString &filename=QString())
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      int tabWidth() const
      +
      QsciLexerDiff(QObject *parent=0)
      +
      virtual QColor defaultColor(int style) const
      Returns the default text colour for style number style.
      +
      const char * lexer() const
      +
      virtual void zoomOut(int range)
      +
      void setMatchedBraceBackgroundColor(const QColor &col)
      +
      QString description(int style) const
      +
      @ CallTipsNoContext
      Definition: qsciscintilla.h:163
      +
      @ CircledTreeFoldStyle
      Definition: qsciscintilla.h:224
      +
      virtual void setBackslashEscapes(bool enable)
      +
      void annotate(int line, const QString &text, int style)
      +
      void setSelectionToEol(bool filled)
      +
      QString description(int style) const
      +
      bool foldCompact() const
      Definition: qscilexerjson.h:156
      +
      bool foldCompact() const
      +
      virtual ~QsciLexerCPP()
      Destroys the QsciLexerCPP instance.
      +
      void clearAnnotations(int line=-1)
      +
      void setHighlightSubidentifiers(bool enabled)
      +
      void setFoldAtElse(bool fold)
      +
      The QsciStyledText class is a container for a piece of text and the style used to display the text.
      Definition: qscistyledtext.h:36
      +
      const char * language() const
      Returns the name of the language.
      +
      void setDefaultColor(const QColor &c)
      +
      const char * blockEnd(int *style=0) const
      +
      bool marginLineNumbers(int margin) const
      +
      bool caseSensitive() const
      Returns true if the language is case sensitive. The default is true.
      +
      QColor defaultPaper(int style) const
      +
      bool foldCompact() const
      +
      bool writeSettings(QSettings &qs, const char *prefix="/Scintilla") const
      +
      QString description(int style) const
      +
      @ SC_MARK_FULLRECT
      Definition: qsciscintillabase.h:2648
      +
      @ SC_MARK_LEFTRECT
      Definition: qsciscintillabase.h:2652
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      int firstVisibleLine() const
      +
      const char * blockStartKeyword(int *style=0) const
      +
      const char * language() const
      Returns the name of the language.
      +
      const char * blockEnd(int *style=0) const
      +
      virtual void updateAutoCompletionList(const QStringList &context, QStringList &list)
      \reimp
      +
      void setHighlightTripleQuotedStrings(bool enabled)
      +
      QString description(int style) const
      +
      void fillIndicatorRange(int lineFrom, int indexFrom, int lineTo, int indexTo, int indicatorNumber)
      +
      The QsciLexerTCL class encapsulates the Scintilla TCL lexer.
      Definition: qscilexertcl.h:32
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      void clearIndicatorRange(int lineFrom, int indexFrom, int lineTo, int indexTo, int indicatorNumber)
      +
      virtual void callTip()
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void setFoldPackages(bool fold)
      +
      void lineIndexFromPosition(int position, int *line, int *index) const
      +
      virtual void setBraceMatching(BraceMatch bm)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      void setFoldPreprocessor(bool fold)
      +
      void SCN_USERLISTSELECTION(const char *selection, int id)
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      virtual void setFoldSyntaxBased(bool syntax_based)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      bool highlightBackQuotedStrings() const
      Definition: qscilexercpp.h:297
      +
      QColor defaultColor(int style) const
      +
      @ CallTipsAboveText
      Call tips are placed above the text.
      Definition: qsciscintilla.h:152
      +
      void resetHotspotBackgroundColor()
      +
      @ SC_MARK_LCORNERCURVE
      Definition: qsciscintillabase.h:2615
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      int margins() const
      +
      virtual ~QsciLexerDiff()
      Destroys the QsciLexerDiff instance.
      +
      virtual const char * keywords(int set) const
      +
      void setDefaultPaper(const QColor &c)
      +
      bool foldCompact() const
      Definition: qscilexerverilog.h:202
      +
      @ AcsDocument
      The source is the current document.
      Definition: qsciscintilla.h:124
      +
      long SendScintilla(unsigned int msg, unsigned long wParam, const QColor &col) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      long SendScintilla(unsigned int msg, unsigned long wParam, void *lParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      long SendScintilla(unsigned int msg, const QColor &col) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      void setFoldOnlyBegin(bool fold)
      +
      const char * language() const
      Returns the name of the language.
      +
      bool highlightHashQuotedStrings() const
      Definition: qscilexercpp.h:286
      +
      virtual void setFoldPreprocessor(bool fold)
      +
      QsciScintilla::WrapMode wrapMode() const
      Definition: qsciprinter.h:103
      +
      virtual void setColor(const QColor &c, int style=-1)
      +
      virtual void setFoldComments(bool fold)
      +
      bool tabIndents() const
      +
      virtual QStringList callTips(const QStringList &context, int commas, QsciScintilla::CallTipsStyle style, QList< int > &shifts)=0
      +
      bool scrollWidthTracking() const
      +
      virtual ~QsciLexerFortran()
      Destroys the QsciLexerFortran instance.
      +
      bool backspaceUnindents() const
      +
      virtual void setFoldCompact(bool fold)
      +
      const char * lexer() const
      +
      virtual const char * blockStartKeyword(int *style=0) const
      +
      QStringList autoCompletionWordSeparators() const
      +
      void eolFillChanged(bool eolfilled, int style)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      bool foldCompact() const
      +
      virtual bool defaultEolFill(int style) const
      +
      long SendScintilla(unsigned int msg, uintptr_t wParam, const char *lParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      bool foldComments() const
      +
      void clearKeys()
      The primary keys bindings for all commands are removed.
      +
      void SCN_STYLENEEDED(int position)
      +
      AnnotationDisplay
      This enum defines the different annotation display styles.
      Definition: qsciscintilla.h:83
      +
      AnnotationDisplay annotationDisplay() const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      virtual ~QsciLexerTeX()
      Destroys the QsciLexerTeX instance.
      +
      virtual void setFoldComments(bool fold)
      +
      virtual void setFoldCompact(bool fold)
      +
      const char * lexer() const
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void setStyle(int style)
      Definition: qscistyle.h:82
      +
      bool foldComments() const
      +
      const char * keywords(int set) const
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      MarginType marginType(int margin) const
      +
      void setDollarsAllowed(bool allowed)
      +
      const char * language() const
      Returns the name of the language.
      +
      const char * lexer() const
      +
      virtual void setFoldPreprocessor(bool fold)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      void refreshProperties()
      +
      const char * blockStart(int *style=0) const
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void setExtraAscent(int extra)
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      The QsciLexerPO class encapsulates the Scintilla PO lexer.
      Definition: qscilexerpo.h:32
      +
      The QsciCommand class represents an internal editor command that may have one or two keys bound to it...
      Definition: qscicommand.h:40
      +
      QColor defaultColor(int style) const
      +
      @ SC_MARK_DOTDOTDOT
      Three drawn dots.
      Definition: qsciscintillabase.h:2638
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      virtual ~QsciLexerCSharp()
      Destroys the QsciLexerCSharp instance.
      +
      virtual void setLevel(int level)
      +
      void setFoldAtModule(bool fold)
      +
      void replaceHorizontalScrollBar(QScrollBar *scrollBar)
      +
      QColor defaultPaper(int style) const
      +
      void registerImage(int id, const QImage &im)
      +
      virtual void setFoldCompact(bool fold)
      +
      The QsciAPIs class provies an implementation of the textual API information used in call tips and for...
      Definition: qsciapis.h:66
      +
      virtual void keyPressEvent(QKeyEvent *e)
      Re-implemented to handle key presses.
      +
      void SCN_AUTOCCHARDELETED()
      +
      void setFont(const QFont &font)
      +
      const char * lexer() const
      +
      void SCN_UPDATEUI(int updated)
      +
      virtual ~QsciAbstractAPIs()
      Destroy the QsciAbstractAPIs instance.
      +
      bool foldAtElse() const
      Definition: qscilexerperl.h:237
      +
      virtual const char * lexer() const
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      bool foldAtElse() const
      +
      virtual void setFoldCompact(bool fold)
      +
      @ SC_MARK_TCORNERCURVE
      Definition: qsciscintillabase.h:2619
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      virtual void setMarginsBackgroundColor(const QColor &col)
      +
      void SCN_DWELLSTART(int position, int x, int y)
      +
      QString description(int style) const
      +
      virtual void setEolMode(EolMode mode)
      +
      QString text(int line) const
      +
      const char * keywords(int set) const
      +
      void refreshProperties()
      +
      QStringList autoCompletionWordSeparators() const
      +
      QColor defaultColor(int style) const
      +
      virtual void setFoldCompact(bool fold)
      +
      virtual void autoCompleteFromAll()
      +
      QStringList autoCompletionWordSeparators() const
      +
      The QsciLexerSRec class encapsulates the Scintilla S-Record lexer.
      Definition: qscilexersrec.h:32
      +
      void modificationChanged(bool m)
      +
      QString description(int style) const
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      void setMarginText(int line, const QString &text, const QsciStyle &style)
      +
      virtual ~QsciLexerIntelHex()
      Destroys the QsciLexerIntelHex instance.
      +
      virtual void styleText(int start, int end)=0
      +
      @ SC_MARK_PLUS
      A drawn plus sign.
      Definition: qsciscintillabase.h:2589
      +
      void refreshProperties()
      +
      virtual int lexerId() const
      +
      QString description(int style) const
      +
      virtual void setFoldComments(bool fold)
      +
      bool foldCompact() const
      +
      QColor defaultColor(int style) const
      +
      QsciLexerJSON(QObject *parent=0)
      +
      bool foldComments() const
      +
      bool stylePreprocessor() const
      Definition: qscilexercpp.h:253
      +
      QColor defaultPaper(int style) const
      +
      MarginType
      This enum defines the different margin types.
      Definition: qsciscintilla.h:326
      +
      const char * lexer() const
      +
      void setCallTipsForegroundColor(const QColor &col)
      +
      virtual ~QsciLexerXML()
      Destroys the QsciLexerXML instance.
      +
      const char * language() const
      Returns the name of the language.
      +
      QString description(int style) const
      +
      static QsciScintillaBase * pool()
      +
      bool autoCompletionReplaceWord() const
      +
      void setEdgeColor(const QColor &col)
      +
      QsciLexerVHDL(QObject *parent=0)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      QsciLexerPython::IndentationWarning indentationWarning() const
      Definition: qscilexerpython.h:210
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual const char * blockStart(int *style=0) const
      +
      The QsciAbstractAPIs class represents the interface to the textual API information used in call tips ...
      Definition: qsciabstractapis.h:42
      +
      const char * language() const
      Returns the name of the language.
      +
      bool foldPackages() const
      +
      virtual ~QsciScintilla()
      Destroys the QsciScintilla instance.
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual void setAutoCompletionUseSingle(AutoCompletionUseSingle single)
      +
      WhitespaceVisibility whitespaceVisibility() const
      +
      virtual void setFoldCompact(bool fold)
      +
      virtual void setLexer(QsciLexer *lexer=0)
      +
      const char * lexer() const
      +
      QString description(int style) const
      +
      void setV2UnicodeAllowed(bool allowed)
      +
      const char * language() const
      Returns the name of the language.
      +
      @ SC_MARK_MINUS
      A drawn minus sign.
      Definition: qsciscintillabase.h:2586
      +
      bool highlightEscapeSequences() const
      Definition: qscilexerjson.h:145
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual QStringList apiContext(int pos, int &context_start, int &last_word_start)
      +
      virtual void setIndentationGuidesBackgroundColor(const QColor &col)
      +
      void setUnmatchedBraceBackgroundColor(const QColor &col)
      +
      void indicatorClicked(int line, int index, Qt::KeyboardModifiers state)
      +
      const char * keywords(int set) const
      +
      virtual void resizeEvent(QResizeEvent *e)
      Re-implemented to handle resizes.
      +
      EolMode eolMode() const
      +
      bool isPrepared(const QString &filename=QString()) const
      +
      const char * lexer() const
      +
      void setHighlightBackQuotedStrings(bool enabled)
      +
      The QsciLexerBash class encapsulates the Scintilla Bash lexer.
      Definition: qscilexerbash.h:32
      +
      @ CircledFoldStyle
      Circled folding style using circled plus and minus symbols.
      Definition: qsciscintilla.h:217
      +
      virtual void setMarginsForegroundColor(const QColor &col)
      +
      void setExtraDescent(int extra)
      +
      const char * lexer() const
      +
      void setWhitespaceSize(int size)
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual void mouseMoveEvent(QMouseEvent *e)
      Re-implemented to handle mouse moves.
      +
      bool foldCompact() const
      Definition: qscilexertex.h:111
      + +
      QColor defaultColor(int style) const
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      The QsciLexerAVS class encapsulates the Scintilla AVS lexer.
      Definition: qscilexeravs.h:32
      +
      virtual ~QsciLexerCSS()
      Destroys the QsciLexerCSS instance.
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      QsciLexerCSharp(QObject *parent=0)
      +
      void refreshProperties()
      +
      virtual ~QsciLexerRuby()
      Destroys the QsciLexerRuby instance.
      +
      const char * language() const
      Returns the name of the language.
      +
      bool foldAtElse() const
      +
      QStringList autoCompletionWordSeparators() const
      +
      QsciLexerCSS(QObject *parent=0)
      +
      virtual void setUtf8(bool cp)
      +
      virtual ~QsciScintillaBase()
      Destroys the QsciScintillaBase instance.
      +
      bool foldPreprocessor() const
      Definition: qscilexerhtml.h:445
      +
      virtual ~QsciMacro()
      Destroy the QsciMacro instance.
      +
      int scrollWidth() const
      +
      CallTipsPosition
      This enum defines the different call tip positions.
      Definition: qsciscintilla.h:147
      +
      QsciPrinter(PrinterMode mode=ScreenResolution)
      Constructs a printer paint device with mode mode.
      +
      QString description(int style) const
      +
      bool foldAtElse() const
      Definition: qscilexerverilog.h:180
      +
      @ SC_MARK_BACKGROUND
      Definition: qsciscintillabase.h:2635
      +
      void setMarginType(int margin, MarginType type)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      bool foldComments() const
      +
      void setMatchedBraceIndicator(int indicatorNumber)
      +
      const char * keywords(int set) const
      +
      QColor marginBackgroundColor(int margin) const
      +
      QString description(int style) const
      +
      virtual ~QsciLexerTCL()
      Destroys the QsciLexerTCL instance.
      +
      int markerDefine(MarkerSymbol sym, int markerNumber=-1)
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      void endUndoAction()
      +
      QsciMacro(QsciScintilla *parent)
      Construct a QsciMacro with parent parent.
      +
      void setFoldCompact(bool fold)
      +
      virtual void setMarginWidth(int margin, const QString &s)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      virtual void setAutoCompletionThreshold(int thresh)
      +
      QColor defaultPaper(int style) const
      +
      virtual void redo()
      +
      bool stylePreprocessor() const
      Definition: qscilexercoffeescript.h:226
      +
      int positionFromLineIndex(int line, int index) const
      +
      QColor defaultPaper(int style) const
      +
      void SCN_MARGINRIGHTCLICK(int position, int modifiers, int margin)
      +
      bool foldComments() const
      Definition: qscilexerverilog.h:191
      +
      void refreshProperties()
      +
      virtual QMimeData * toMimeData(const QByteArray &text, bool rectangular) const
      +
      void SCN_CALLTIPCLICK(int direction)
      +
      QsciLexerPO(QObject *parent=0)
      +
      virtual void inputMethodEvent(QInputMethodEvent *event)
      Re-implemented to handle composed characters.
      +
      void cursorPositionChanged(int line, int index)
      +
      The QsciLexerMASM class encapsulates the Scintilla MASM lexer.
      Definition: qscilexermasm.h:32
      +
      void setEdgeMode(EdgeMode mode)
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual void mouseDoubleClickEvent(QMouseEvent *e)
      Re-implemented to handle mouse double-clicks.
      +
      const char * keywords(int set) const
      +
      AutoCompletionSource autoCompletionSource() const
      Definition: qsciscintilla.h:598
      +
      virtual void setMarginMarkerMask(int margin, int mask)
      +
      virtual void setStylePreprocessor(bool style)
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      void colorChanged(const QColor &c, int style)
      +
      bool quotedIdentifiers() const
      Definition: qscilexersql.h:229
      +
      QColor defaultColor() const
      +
      QString wordAtLineIndex(int line, int index) const
      +
      virtual ~QsciLexerProperties()
      Destroys the QsciLexerProperties instance.
      +
      virtual void setMarginsFont(const QFont &f)
      Set the font used in all margins to f.
      +
      void setTabDrawMode(TabDrawMode mode)
      +
      bool foldAtBegin() const
      +
      @ SC_MARGIN_COLOUR
      Definition: qsciscintillabase.h:2711
      +
      bool verbatimStringEscapeSequencesAllowed() const
      Definition: qscilexercpp.h:319
      +
      bool overwriteMode() const
      +
      @ SC_MARGIN_NUMBER
      The margin will display line numbers.
      Definition: qsciscintillabase.h:2693
      +
      void setFirstVisibleLine(int linenr)
      +
      The QsciLexerVHDL class encapsulates the Scintilla VHDL lexer.
      Definition: qscilexervhdl.h:32
      +
      virtual QColor color(int style) const
      +
      virtual ~QsciLexerNASM()
      Destroys the QsciLexerNASM instance.
      +
      void annotate(int line, const QString &text, const QsciStyle &style)
      +
      QColor defaultColor(int style) const
      +
      virtual void refreshProperties()
      +
      void clearRegisteredImages()
      +
      QString description(int style) const
      +
      bool v3BinaryOctalAllowed() const
      Definition: qscilexerpython.h:258
      +
      virtual ~QsciLexerMatlab()
      Destroys the QsciLexerMatlab instance.
      +
      virtual ~QsciLexerJava()
      Destroys the QsciLexerJava instance.
      +
      int magnification() const
      Definition: qsciprinter.h:76
      +
      void SCN_AUTOCCOMPLETED(const char *selection, int position, int ch, int method)
      +
      The QsciCommandSet class represents the set of all internal editor commands that may have keys bound.
      Definition: qscicommandset.h:45
      +
      void SCN_DWELLEND(int position, int x, int y)
      +
      The QsciLexerNASM class encapsulates the Scintilla NASM lexer.
      Definition: qscilexernasm.h:32
      +
      bool hasSelectedText() const
      Definition: qsciscintilla.h:882
      +
      QColor color() const
      +
      @ SC_MARK_ARROW
      A triangle pointing to the right.
      Definition: qsciscintillabase.h:2570
      +
      bool foldCompact() const
      +
      virtual ~QsciLexerFortran77()
      Destroys the QsciLexerFortran77 instance.
      +
      void SCN_MACRORECORD(unsigned int, unsigned long, void *)
      +
      void refreshProperties()
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      @ AcsAll
      The source is all available sources.
      Definition: qsciscintilla.h:121
      +
      const char * keywords(int set) const
      +
      void setStyling(int length, int style)
      +
      QColor defaultColor(int style) const
      +
      QColor defaultPaper(int style) const
      +
      void setAutoCompletionFillups(const char *fillups)
      +
      long SendScintilla(unsigned int msg, const char *lParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      void setDottedWords(bool enable)
      +
      void SCN_SAVEPOINTLEFT()
      +
      const char * lexer() const
      +
      const char * lexer() const
      +
      virtual void setIndentation(int line, int indentation)
      +
      @ SC_MARK_BOXPLUSCONNECTED
      A drawn plus sign in a connected box.
      Definition: qsciscintillabase.h:2605
      +
      virtual void append(const QString &text)
      +
      virtual ~QsciLexerMakefile()
      Destroys the QsciLexerMakefile instance.
      +
      virtual void changeEvent(QEvent *e)
      \reimp
      +
      virtual void removeSelectedText()
      +
      virtual void setFont(const QFont &f, int style=-1)
      +
      virtual void setFoldComments(bool fold)
      +
      void setScriptsStyled(bool styled)
      +
      virtual bool canInsertFromMimeData(const QMimeData *source) const
      +
      QColor defaultPaper(int style) const
      +
      const char * language() const
      Returns the name of the language.
      +
      int style() const
      Definition: qscistyle.h:88
      +
      WrapVisualFlag
      This enum defines the different line wrap visual flags.
      Definition: qsciscintilla.h:493
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void add(const QString &entry)
      +
      void setChangeable(bool changeable)
      +
      void setHotspotForegroundColor(const QColor &col)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      bool dollarsAllowed() const
      Definition: qscilexercpp.h:264
      +
      const char * keywords(int set) const
      +
      virtual void setBackspaceUnindents(bool unindent)
      +
      virtual ~QsciLexerIDL()
      Destroys the QsciLexerIDL instance.
      +
      void setDjangoTemplates(bool enabled)
      +
      void setFoldAtElse(bool fold)
      +
      long SendScintilla(unsigned int msg, long wParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      QsciLexerJava(QObject *parent=0)
      +
      @ SC_MARK_LCORNER
      A bottom left corner drawn in the background colour.
      Definition: qsciscintillabase.h:2595
      +
      The QsciLexerYAML class encapsulates the Scintilla YAML lexer.
      Definition: qscilexeryaml.h:32
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual ~QsciLexerPython()
      Destroys the QsciLexerPython instance.
      +
      QString description(int style) const
      +
      virtual bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      const char * keywords(int set) const
      +
      QFont defaultFont() const
      + +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      QColor defaultColor(int style) const
      Returns the foreground colour of the text for style number style.
      +
      virtual void indent(int line)
      +
      void convertEols(EolMode mode)
      +
      long SendScintilla(unsigned int msg, long cpMin, long cpMax, char *lpstrText) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      virtual bool findFirst(const QString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=true, int line=-1, int index=-1, bool show=true, bool posix=false, bool cxx11=false)
      +
      virtual int blockLookback() const
      +
      void clearFolds()
      +
      virtual const char * language() const =0
      +
      virtual void setCaretLineVisible(bool enable)
      +
      void setProcessIf(bool enable)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void refreshProperties()
      +
      virtual void setIndentationGuidesForegroundColor(const QColor &col)
      +
      The QsciLexerJSON class encapsulates the Scintilla JSON lexer.
      Definition: qscilexerjson.h:32
      +
      const char * lexer() const
      +
      void setFoldCompact(bool fold)
      +
      const char * keywords(int set) const
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      void setUnmatchedBraceForegroundColor(const QColor &col)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual void mousePressEvent(QMouseEvent *e)
      Re-implemented to handle mouse presses.
      +
      The QsciLexerDiff class encapsulates the Scintilla Diff lexer.
      Definition: qscilexerdiff.h:33
      +
      The QsciLexerPOV class encapsulates the Scintilla POV lexer.
      Definition: qscilexerpov.h:32
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      long SendScintilla(unsigned int msg, int wParam) const
      This is an overloaded member function, provided for convenience. It differs from the above function o...
      +
      bool foldAtElse() const
      +
      The QsciLexerFortran class encapsulates the Scintilla Fortran lexer.
      Definition: qscilexerfortran.h:32
      +
      void setLessLanguage(bool enabled)
      +
      QString defaultPreparedName() const
      +
      void refreshProperties()
      +
      const char * keywords(int set) const
      +
      void fontChanged(const QFont &f, int style)
      +
      void setFoldComments(bool fold)
      +
      bool foldCompact() const
      +
      QColor defaultPaper(int style) const
      +
      void SCN_AUTOCSELECTIONCHANGE(const char *selection, int id, int position)
      +
      virtual void setFoldQuotes(bool fold)
      +
      virtual void setReadOnly(bool ro)
      +
      virtual void setTabIndents(bool indent)
      +
      virtual ~QsciLexerVerilog()
      Destroys the QsciLexerVerilog instance.
      +
      QString selectedText() const
      +
      bool smartHighlighting() const
      +
      virtual ~QsciLexerPostScript()
      Destroys the QsciLexerPostScript instance.
      +
      void clearEdgeColumns()
      +
      void setWrapIndentMode(WrapIndentMode mode)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      void registerImage(int id, const QPixmap &pm)
      +
      @ SC_MARGIN_RTEXT
      The margin will display right justified text.
      Definition: qsciscintillabase.h:2707
      +
      virtual void setPaper(const QColor &c)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      The QsciLexerCPP class encapsulates the Scintilla C++ lexer.
      Definition: qscilexercpp.h:33
      +
      QColor paper() const
      +
      virtual const char * blockEnd(int *style=0) const
      +
      The QsciPrinter class is a sub-class of the Qt QPrinter class that is able to print the text of a Sci...
      Definition: qsciprinter.h:51
      +
      bool djangoTemplates() const
      Definition: qscilexerhtml.h:435
      +
      QColor defaultColor(int style) const
      +
      bool foldComments() const
      +
      bool highlightTripleQuotedStrings() const
      Definition: qscilexercpp.h:275
      +
      The QsciLexerPerl class encapsulates the Scintilla Perl lexer.
      Definition: qscilexerperl.h:33
      +
      QsciLexerPerl(QObject *parent=0)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void setIndicatorOutlineColor(const QColor &col, int indicatorNumber=-1)
      +
      int alternateKey() const
      Definition: qscicommand.h:383
      +
      QsciLexerFortran77(QObject *parent=0)
      +
      int edgeColumn() const
      +
      QString description(int style) const
      +
      void SCEN_CHANGE()
      This signal is emitted when the document has changed for any reason.
      +
      QsciDocument document() const
      Definition: qsciscintilla.h:710
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      void textChanged()
      This signal is emitted whenever the text in the text edit changes.
      +
      QColor defaultColor(int style) const
      +
      The QsciLexerBatch class encapsulates the Scintilla batch file lexer.
      Definition: qscilexerbatch.h:33
      +
      IndentationWarning
      Definition: qscilexerpython.h:104
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      QString description(int style) const
      +
      virtual void setFoldComments(bool fold)
      +
      void setIndicatorHoverStyle(IndicatorStyle style, int indicatorNumber=-1)
      +
      bool foldCompact() const
      Definition: qscilexercpp.h:242
      +
      virtual void setFoldPreprocessor(bool fold)
      +
      int markerFindNext(int linenr, unsigned mask) const
      +
      virtual void moveToMatchingBrace()
      +
      virtual void setColor(const QColor &c)
      +
      virtual void endRecording()
      Stop recording user commands.
      +
      IndicatorStyle
      This enum defines the different indicator styles.
      Definition: qsciscintilla.h:232
      +
      virtual ~QsciLexer()
      Destroy the QSciLexer.
      +
      const char * wordCharacters() const
      +
      QString description(int style) const
      +
      QColor paper() const
      Definition: qscistyle.h:120
      +
      virtual void setCaretWidth(int width)
      +
      QsciLexerHex(QObject *parent=0)
      +
      void setHotspotWrap(bool enable)
      +
      virtual void setFoldAtBegin(bool fold)
      +
      const char * keywords(int set) const
      +
      QString description(int style) const
      +
      virtual void setEolFill(bool eoffill, int style=-1)
      +
      QsciLexerSRec(QObject *parent=0)
      +
      QColor defaultPaper(int style) const
      +
      QColor defaultColor(int style) const
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      QColor defaultColor(int style) const
      +
      virtual QColor paper(int style) const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      virtual void formatPage(QPainter &painter, bool drawing, QRect &area, int pagenr)
      +
      TextCase
      Definition: qscistyle.h:46
      +
      bool foldQuotes() const
      Definition: qscilexerpython.h:204
      +
      virtual void setFoldComments(bool fold)
      +
      The QsciLexerPascal class encapsulates the Scintilla Pascal lexer.
      Definition: qscilexerpascal.h:32
      +
      QString description(int style) const
      +
      The QsciLexerCoffeeScript class encapsulates the Scintilla CoffeeScript lexer.
      Definition: qscilexercoffeescript.h:33
      +
      bool findMatchingBrace(long &brace, long &other, BraceMatch mode)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void markerDelete(int linenr, int markerNumber=-1)
      +
      void setHighlightEscapeSequences(bool enabled)
      +
      void setMakoTemplates(bool enabled)
      +
      const char * lexer() const
      +
      QColor defaultColor(int style) const
      +
      const char * language() const
      Returns the name of the language.
      +
      QsciScintilla * editor() const
      Definition: qscilexer.h:207
      +
      QColor defaultPaper(int style) const
      +
      QsciLexerTeX(QObject *parent=0)
      +
      QString description(int style) const
      +
      QColor defaultColor(int style) const
      Returns the foreground colour of the text for style number style.
      +
      const char * lexer() const
      +
      const char * lexer() const
      +
      void setAlternateKey(int altkey)
      +
      int lines() const
      Returns the number of lines of text.
      +
      bool scriptsStyled() const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      QsciStyledText(const QString &text, int style)
      +
      virtual bool focusNextPrevChild(bool next)
      Re-implemented to allow tabs to be entered as text.
      +
      void setContractedFolds(const QList< int > &folds)
      +
      void setAutoCompletionWordSeparators(const QStringList &separators)
      +
      void resetMatchedBraceIndicator()
      +
      EdgeMode
      This enum defines the different edge modes for long lines.
      Definition: qsciscintilla.h:178
      +
      const char * language() const
      Returns the name of the language.
      +
      const char * keywords(int set) const
      +
      virtual void play()
      Play the macro.
      +
      void setHotspotBackgroundColor(const QColor &col)
      +
      void beginUndoAction()
      +
      bool load(const QString &filename)
      +
      QColor defaultPaper(int style) const
      +
      CallTipsStyle callTipsStyle() const
      Definition: qsciscintilla.h:648
      +
      bool foldComments() const
      Definition: qscilexertex.h:100
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      long SendScintilla(unsigned int msg, unsigned long wParam=0, long lParam=0) const
      +
      QColor defaultPaper(int style) const
      +
      void setInitialSpaces(bool enable)
      +
      void setHotspotUnderline(bool enable)
      +
      bool foldPODBlocks() const
      +
      virtual ~QsciLexerHTML()
      Destroys the QsciLexerHTML instance.
      +
      void propertyChanged(const char *prop, const char *val)
      +
      void setV3BinaryOctalAllowed(bool allowed)
      +
      QsciLexerVerilog(QObject *parent=0)
      +
      QColor defaultColor(int style) const
      +
      virtual void autoCompleteFromDocument()
      +
      QsciLexerHTML(QObject *parent=0)
      +
      void refreshProperties()
      +
      QsciLexerTCL(QObject *parent=0)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      void setQuotedIdentifiers(bool enable)
      +
      const char * blockStart(int *style=0) const
      +
      The QsciLexerLua class encapsulates the Scintilla Lua lexer.
      Definition: qscilexerlua.h:33
      +
      int lineLength(int line) const
      +
      QsciLexerAVS(QObject *parent=0)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      virtual void setFoldAtElse(bool fold)
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      QColor defaultPaper(int style) const
      +
      void apiPreparationCancelled()
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      bool autoIndent() const
      Definition: qsciscintilla.h:615
      +
      QsciLexerRuby(QObject *parent=0)
      +
      QsciLexerPascal(QObject *parent=0)
      +
      const char * lexer() const
      +
      virtual ~QsciLexerSRec()
      Destroys the QsciLexerSRec instance.
      +
      const char * keywords(int set) const
      +
      void setFoldMarginColors(const QColor &fore, const QColor &back)
      +
      void setFoldComments(bool fold)
      +
      CallTipsStyle
      This enum defines the different call tip styles.
      Definition: qsciscintilla.h:156
      +
      const char * language() const
      Returns the name of the language.
      +
      void setMatchedBraceForegroundColor(const QColor &col)
      +
      virtual void setText(const QString &text)
      +
      void setFoldAtElse(bool fold)
      +
      const char * language() const
      Returns the name of the language.
      +
      const char * lexer() const
      +
      QsciLexerJavaScript(QObject *parent=0)
      +
      QString description(int style) const
      +
      static bool validKey(int key)
      If the key key is valid then true is returned.
      +
      @ AcusExplicit
      Definition: qsciscintilla.h:108
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      QString description(int style) const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      const char * blockEnd(int *style=0) const
      +
      QsciLexerEDIFACT(QObject *parent=0)
      +
      void setHighlightComments(bool highlight)
      +
      WrapIndentMode
      This enum defines the different line wrap indentation modes.
      Definition: qsciscintilla.h:508
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void setOverwriteMode(bool overwrite)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual void focusOutEvent(QFocusEvent *e)
      Re-implemented to tell Scintilla it has lost the focus.
      +
      virtual void setFoldCompact(bool fold)
      +
      virtual ~QsciLexerPO()
      Destroys the QsciLexerPO instance.
      +
      const char * keywords(int set) const
      +
      void setFont(const QFont &f)
      +
      QColor defaultPaper(int style) const
      +
      const char * keywords(int set) const
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      QsciLexerLua(QObject *parent=0)
      +
      QString description(int style) const
      +
      virtual ~QsciLexerD()
      Destroys the QsciLexerD instance.
      +
      void cancelFind()
      +
      virtual void updateAutoCompletionList(const QStringList &context, QStringList &list)=0
      +
      @ SC_MARK_SMALLRECT
      A smaller rectangle.
      Definition: qsciscintillabase.h:2573
      +
      virtual void zoomIn(int range)
      +
      QString description(int style) const
      +
      bool foldComments() const
      Definition: qscilexerruby.h:203
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      const char * keywords(int set) const
      +
      void setDocument(const QsciDocument &document)
      +
      bool writeSettings(QSettings &qs, const char *prefix="/Scintilla")
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      virtual void setFoldAtElse(bool fold)
      +
      virtual void setCursorPosition(int line, int index)
      +
      virtual ~QsciLexerSpice()
      Destroys the QsciLexerSpice instance.
      +
      virtual void setModified(bool m)
      +
      const char * lexer() const
      Returns the name of the lexer.
      +
      QColor defaultColor(int style) const
      +
      void cancelPreparation()
      +
      QsciLexerYAML(QObject *parent=0)
      +
      virtual QFont defaultFont(int style) const
      Returns the default font for style number style.
      +
      const char * keywords(int set) const
      +
      QColor defaultColor(int style) const
      +
      void startStyling(int pos, int styleBits=0)
      +
      QColor defaultColor(int style) const
      + +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      const char * keywords(int set) const
      +
      virtual void setCaretLineFrameWidth(int width)
      +
      virtual void setFoldCompact(bool fold)
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      QColor defaultColor(int style) const
      +
      void addEdgeColumn(int colnr, const QColor &col)
      +
      const char * keywords(int set) const
      +
      virtual void contextMenuEvent(QContextMenuEvent *e)
      Re-implemented to handle the context menu.
      +
      @ SC_MARK_ROUNDRECT
      A rectangle.
      Definition: qsciscintillabase.h:2567
      +
      bool isUndoAvailable() const
      +
      const char * wordCharacters() const
      Returns the string of characters that comprise a word.
      +
      bool LessLanguage() const
      Definition: qscilexercss.h:196
      +
      QsciCommandSet * standardCommands() const
      The standard command set is returned.
      Definition: qsciscintilla.h:1550
      +
      void setColor(const QColor &color)
      +
      @ WrapFlagByText
      A wrap flag is displayed by the text.
      Definition: qsciscintilla.h:498
      +
      void SCN_HOTSPOTDOUBLECLICK(int position, int modifiers)
      +
      void setKey(int key)
      +
      QsciLexerIntelHex(QObject *parent=0)
      +
      bool initialSpaces() const
      Definition: qscilexerproperties.h:115
      +
      void setMarginText(int line, const QList< QsciStyledText > &text)
      +
      QsciScintillaBase(QWidget *parent=0)
      Construct an empty QsciScintillaBase with parent parent.
      +
      const char * keywords(int set) const
      +
      QColor defaultPaper(int style) const
      +
      QString annotation(int line) const
      Returns the annotation on line line, if any.
      +
      QColor defaultColor(int style) const
      +
      const char * language() const
      Returns the name of the language.
      +
      virtual void startRecording()
      Start recording user commands and add them to the macro.
      +
      const char * lexer() const
      +
      void setVisible(bool visible)
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      virtual void setAutoCompletionReplaceWord(bool replace)
      +
      bool foldCompact() const
      +
      unsigned markersAtLine(int linenr) const
      +
      virtual bool caseSensitive() const
      Returns true if the language is case sensitive. The default is true.
      +
      bool foldComments() const
      Definition: qscilexertcl.h:165
      +
      const char * blockStartKeyword(int *style=0) const
      +
      QString description(int style) const
      +
      QsciLexerIDL(QObject *parent=0)
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      void setEolFill(bool fill)
      +
      bool isListActive() const
      +
      bool defaultEolFill(int style) const
      Returns the end-of-line fill for style number style.
      +
      EdgeMode edgeMode() const
      +
      int extraDescent() const
      +
      bool stringsOverNewlineAllowed() const
      Definition: qscilexerpython.h:234
      +
      const char * language() const
      Returns the name of the language.
      +
      @ CallTipsNone
      Call tips are disabled.
      Definition: qsciscintilla.h:158
      +
      QString description(int style) const
      +
      QFont defaultFont(int style) const
      Returns the font for style number style.
      +
      virtual void setFoldComments(bool fold)
      +
      bool readProperties(QSettings &qs, const QString &prefix)
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      void setVerbatimStringEscapeSequencesAllowed(bool allowed)
      +
      QStringList autoCompletionWordSeparators() const
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      virtual void setIndentationWarning(QsciLexerPython::IndentationWarning warn)
      +
      virtual ~QsciLexerVHDL()
      Destroys the QsciLexerVHDL instance.
      +
      bool writeProperties(QSettings &qs, const QString &prefix) const
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      +
      const char * keywords(int set) const
      +
      int braceStyle() const
      Returns the style used for braces for brace matching.
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciCommand-members.html b/third_party/qscintilla/doc/html/classQsciCommand-members.html new file mode 100644 index 0000000..880b2f2 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciCommand-members.html @@ -0,0 +1,163 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciCommand Member List
      +
      +
      + +

      This is the complete list of members for QsciCommand, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      alternateKey() constQsciCommandinline
      Backtab enum valueQsciCommand
      Cancel enum valueQsciCommand
      CharLeft enum valueQsciCommand
      CharLeftExtend enum valueQsciCommand
      CharLeftRectExtend enum valueQsciCommand
      CharRight enum valueQsciCommand
      CharRightExtend enum valueQsciCommand
      CharRightRectExtend enum valueQsciCommand
      Command enum nameQsciCommand
      command() constQsciCommandinline
      Delete enum valueQsciCommand
      DeleteBack enum valueQsciCommand
      DeleteBackNotLine enum valueQsciCommand
      DeleteLineLeft enum valueQsciCommand
      DeleteLineRight enum valueQsciCommand
      DeleteWordLeft enum valueQsciCommand
      DeleteWordRight enum valueQsciCommand
      DeleteWordRightEnd enum valueQsciCommand
      description() constQsciCommand
      DocumentEnd enum valueQsciCommand
      DocumentEndExtend enum valueQsciCommand
      DocumentStart enum valueQsciCommand
      DocumentStartExtend enum valueQsciCommand
      EditToggleOvertype enum valueQsciCommand
      execute()QsciCommand
      Formfeed enum valueQsciCommand
      Home enum valueQsciCommand
      HomeDisplay enum valueQsciCommand
      HomeDisplayExtend enum valueQsciCommand
      HomeExtend enum valueQsciCommand
      HomeRectExtend enum valueQsciCommand
      HomeWrap enum valueQsciCommand
      HomeWrapExtend enum valueQsciCommand
      key() constQsciCommandinline
      LineCopy enum valueQsciCommand
      LineCut enum valueQsciCommand
      LineDelete enum valueQsciCommand
      LineDown enum valueQsciCommand
      LineDownExtend enum valueQsciCommand
      LineDownRectExtend enum valueQsciCommand
      LineDuplicate enum valueQsciCommand
      LineEnd enum valueQsciCommand
      LineEndDisplay enum valueQsciCommand
      LineEndDisplayExtend enum valueQsciCommand
      LineEndExtend enum valueQsciCommand
      LineEndRectExtend enum valueQsciCommand
      LineEndWrap enum valueQsciCommand
      LineEndWrapExtend enum valueQsciCommand
      LineScrollDown enum valueQsciCommand
      LineScrollUp enum valueQsciCommand
      LineTranspose enum valueQsciCommand
      LineUp enum valueQsciCommand
      LineUpExtend enum valueQsciCommand
      LineUpRectExtend enum valueQsciCommand
      MoveSelectedLinesDown enum valueQsciCommand
      MoveSelectedLinesUp enum valueQsciCommand
      Newline enum valueQsciCommand
      PageDown enum valueQsciCommand
      PageDownExtend enum valueQsciCommand
      PageDownRectExtend enum valueQsciCommand
      PageUp enum valueQsciCommand
      PageUpExtend enum valueQsciCommand
      PageUpRectExtend enum valueQsciCommand
      ParaDown enum valueQsciCommand
      ParaDownExtend enum valueQsciCommand
      ParaUp enum valueQsciCommand
      ParaUpExtend enum valueQsciCommand
      Paste enum valueQsciCommand
      Redo enum valueQsciCommand
      ReverseLines enum valueQsciCommand
      ScrollToEnd enum valueQsciCommand
      ScrollToStart enum valueQsciCommand
      SelectAll enum valueQsciCommand
      SelectionCopy enum valueQsciCommand
      SelectionCut enum valueQsciCommand
      SelectionDuplicate enum valueQsciCommand
      SelectionLowerCase enum valueQsciCommand
      SelectionUpperCase enum valueQsciCommand
      setAlternateKey(int altkey)QsciCommand
      setKey(int key)QsciCommand
      StutteredPageDown enum valueQsciCommand
      StutteredPageDownExtend enum valueQsciCommand
      StutteredPageUp enum valueQsciCommand
      StutteredPageUpExtend enum valueQsciCommand
      Tab enum valueQsciCommand
      Undo enum valueQsciCommand
      validKey(int key)QsciCommandstatic
      VCHome enum valueQsciCommand
      VCHomeExtend enum valueQsciCommand
      VCHomeRectExtend enum valueQsciCommand
      VCHomeWrap enum valueQsciCommand
      VCHomeWrapExtend enum valueQsciCommand
      VerticalCentreCaret enum valueQsciCommand
      WordLeft enum valueQsciCommand
      WordLeftEnd enum valueQsciCommand
      WordLeftEndExtend enum valueQsciCommand
      WordLeftExtend enum valueQsciCommand
      WordPartLeft enum valueQsciCommand
      WordPartLeftExtend enum valueQsciCommand
      WordPartRight enum valueQsciCommand
      WordPartRightExtend enum valueQsciCommand
      WordRight enum valueQsciCommand
      WordRightEnd enum valueQsciCommand
      WordRightEndExtend enum valueQsciCommand
      WordRightExtend enum valueQsciCommand
      ZoomIn enum valueQsciCommand
      ZoomOut enum valueQsciCommand
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciCommand.html b/third_party/qscintilla/doc/html/classQsciCommand.html new file mode 100644 index 0000000..ba0b188 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciCommand.html @@ -0,0 +1,539 @@ + + + + + + + +QScintilla: QsciCommand Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscicommand.h>

      + + + + +

      +Public Types

      enum  Command {
      +  LineDown = QsciScintillaBase::SCI_LINEDOWN, +LineDownExtend = QsciScintillaBase::SCI_LINEDOWNEXTEND, +LineDownRectExtend = QsciScintillaBase::SCI_LINEDOWNRECTEXTEND, +
      +  LineScrollDown = QsciScintillaBase::SCI_LINESCROLLDOWN, +LineUp = QsciScintillaBase::SCI_LINEUP, +LineUpExtend = QsciScintillaBase::SCI_LINEUPEXTEND, +
      +  LineUpRectExtend = QsciScintillaBase::SCI_LINEUPRECTEXTEND, +LineScrollUp = QsciScintillaBase::SCI_LINESCROLLUP, +ScrollToStart = QsciScintillaBase::SCI_SCROLLTOSTART, +
      +  ScrollToEnd = QsciScintillaBase::SCI_SCROLLTOEND, +VerticalCentreCaret = QsciScintillaBase::SCI_VERTICALCENTRECARET, +ParaDown = QsciScintillaBase::SCI_PARADOWN, +
      +  ParaDownExtend = QsciScintillaBase::SCI_PARADOWNEXTEND, +ParaUp = QsciScintillaBase::SCI_PARAUP, +ParaUpExtend = QsciScintillaBase::SCI_PARAUPEXTEND, +
      +  CharLeft = QsciScintillaBase::SCI_CHARLEFT, +CharLeftExtend = QsciScintillaBase::SCI_CHARLEFTEXTEND, +CharLeftRectExtend = QsciScintillaBase::SCI_CHARLEFTRECTEXTEND, +
      +  CharRight = QsciScintillaBase::SCI_CHARRIGHT, +CharRightExtend = QsciScintillaBase::SCI_CHARRIGHTEXTEND, +CharRightRectExtend = QsciScintillaBase::SCI_CHARRIGHTRECTEXTEND, +
      +  WordLeft = QsciScintillaBase::SCI_WORDLEFT, +WordLeftExtend = QsciScintillaBase::SCI_WORDLEFTEXTEND, +WordRight = QsciScintillaBase::SCI_WORDRIGHT, +
      +  WordRightExtend = QsciScintillaBase::SCI_WORDRIGHTEXTEND, +WordLeftEnd = QsciScintillaBase::SCI_WORDLEFTEND, +WordLeftEndExtend = QsciScintillaBase::SCI_WORDLEFTENDEXTEND, +
      +  WordRightEnd = QsciScintillaBase::SCI_WORDRIGHTEND, +WordRightEndExtend = QsciScintillaBase::SCI_WORDRIGHTENDEXTEND, +WordPartLeft = QsciScintillaBase::SCI_WORDPARTLEFT, +
      +  WordPartLeftExtend = QsciScintillaBase::SCI_WORDPARTLEFTEXTEND, +WordPartRight = QsciScintillaBase::SCI_WORDPARTRIGHT, +WordPartRightExtend = QsciScintillaBase::SCI_WORDPARTRIGHTEXTEND, +
      +  Home = QsciScintillaBase::SCI_HOME, +HomeExtend = QsciScintillaBase::SCI_HOMEEXTEND, +HomeRectExtend = QsciScintillaBase::SCI_HOMERECTEXTEND, +
      +  HomeDisplay = QsciScintillaBase::SCI_HOMEDISPLAY, +HomeDisplayExtend = QsciScintillaBase::SCI_HOMEDISPLAYEXTEND, +HomeWrap = QsciScintillaBase::SCI_HOMEWRAP, +
      +  HomeWrapExtend = QsciScintillaBase::SCI_HOMEWRAPEXTEND, +VCHome = QsciScintillaBase::SCI_VCHOME, +VCHomeExtend = QsciScintillaBase::SCI_VCHOMEEXTEND, +
      +  VCHomeRectExtend = QsciScintillaBase::SCI_VCHOMERECTEXTEND, +VCHomeWrap = QsciScintillaBase::SCI_VCHOMEWRAP, +VCHomeWrapExtend = QsciScintillaBase::SCI_VCHOMEWRAPEXTEND, +
      +  LineEnd = QsciScintillaBase::SCI_LINEEND, +LineEndExtend = QsciScintillaBase::SCI_LINEENDEXTEND, +LineEndRectExtend = QsciScintillaBase::SCI_LINEENDRECTEXTEND, +
      +  LineEndDisplay = QsciScintillaBase::SCI_LINEENDDISPLAY, +LineEndDisplayExtend = QsciScintillaBase::SCI_LINEENDDISPLAYEXTEND, +LineEndWrap = QsciScintillaBase::SCI_LINEENDWRAP, +
      +  LineEndWrapExtend = QsciScintillaBase::SCI_LINEENDWRAPEXTEND, +DocumentStart = QsciScintillaBase::SCI_DOCUMENTSTART, +DocumentStartExtend = QsciScintillaBase::SCI_DOCUMENTSTARTEXTEND, +
      +  DocumentEnd = QsciScintillaBase::SCI_DOCUMENTEND, +DocumentEndExtend = QsciScintillaBase::SCI_DOCUMENTENDEXTEND, +PageUp = QsciScintillaBase::SCI_PAGEUP, +
      +  PageUpExtend = QsciScintillaBase::SCI_PAGEUPEXTEND, +PageUpRectExtend = QsciScintillaBase::SCI_PAGEUPRECTEXTEND, +PageDown = QsciScintillaBase::SCI_PAGEDOWN, +
      +  PageDownExtend = QsciScintillaBase::SCI_PAGEDOWNEXTEND, +PageDownRectExtend = QsciScintillaBase::SCI_PAGEDOWNRECTEXTEND, +StutteredPageUp = QsciScintillaBase::SCI_STUTTEREDPAGEUP, +
      +  StutteredPageUpExtend = QsciScintillaBase::SCI_STUTTEREDPAGEUPEXTEND, +StutteredPageDown = QsciScintillaBase::SCI_STUTTEREDPAGEDOWN, +StutteredPageDownExtend = QsciScintillaBase::SCI_STUTTEREDPAGEDOWNEXTEND, +
      +  Delete = QsciScintillaBase::SCI_CLEAR, +DeleteBack = QsciScintillaBase::SCI_DELETEBACK, +DeleteBackNotLine = QsciScintillaBase::SCI_DELETEBACKNOTLINE, +
      +  DeleteWordLeft = QsciScintillaBase::SCI_DELWORDLEFT, +DeleteWordRight = QsciScintillaBase::SCI_DELWORDRIGHT, +DeleteWordRightEnd = QsciScintillaBase::SCI_DELWORDRIGHTEND, +
      +  DeleteLineLeft = QsciScintillaBase::SCI_DELLINELEFT, +DeleteLineRight = QsciScintillaBase::SCI_DELLINERIGHT, +LineDelete = QsciScintillaBase::SCI_LINEDELETE, +
      +  LineCut = QsciScintillaBase::SCI_LINECUT, +LineCopy = QsciScintillaBase::SCI_LINECOPY, +LineTranspose = QsciScintillaBase::SCI_LINETRANSPOSE, +
      +  LineDuplicate = QsciScintillaBase::SCI_LINEDUPLICATE, +SelectAll = QsciScintillaBase::SCI_SELECTALL, +MoveSelectedLinesUp = QsciScintillaBase::SCI_MOVESELECTEDLINESUP, +
      +  MoveSelectedLinesDown = QsciScintillaBase::SCI_MOVESELECTEDLINESDOWN, +SelectionDuplicate = QsciScintillaBase::SCI_SELECTIONDUPLICATE, +SelectionLowerCase = QsciScintillaBase::SCI_LOWERCASE, +
      +  SelectionUpperCase = QsciScintillaBase::SCI_UPPERCASE, +SelectionCut = QsciScintillaBase::SCI_CUT, +SelectionCopy = QsciScintillaBase::SCI_COPY, +
      +  Paste = QsciScintillaBase::SCI_PASTE, +EditToggleOvertype = QsciScintillaBase::SCI_EDITTOGGLEOVERTYPE, +Newline = QsciScintillaBase::SCI_NEWLINE, +
      +  Formfeed = QsciScintillaBase::SCI_FORMFEED, +Tab = QsciScintillaBase::SCI_TAB, +Backtab = QsciScintillaBase::SCI_BACKTAB, +
      +  Cancel = QsciScintillaBase::SCI_CANCEL, +Undo = QsciScintillaBase::SCI_UNDO, +Redo = QsciScintillaBase::SCI_REDO, +
      +  ZoomIn = QsciScintillaBase::SCI_ZOOMIN, +ZoomOut = QsciScintillaBase::SCI_ZOOMOUT, +ReverseLines = QsciScintillaBase::SCI_LINEREVERSE +
      + }
       
      + + + + + + + + + + + + + + + +

      +Public Member Functions

      +Command command () const
       
      +void execute ()
       
      void setKey (int key)
       
      void setAlternateKey (int altkey)
       
      int key () const
       
      int alternateKey () const
       
      +QString description () const
       
      + + + +

      +Static Public Member Functions

      +static bool validKey (int key)
       
      +

      Detailed Description

      +

      The QsciCommand class represents an internal editor command that may have one or two keys bound to it.

      +

      Methods are provided to change the keys bound to the command and to remove a key binding. Each command has a user friendly description of the command for use in key mapping dialogs.

      +

      Member Enumeration Documentation

      + +

      ◆ Command

      + +
      +
      + + + + +
      enum QsciCommand::Command
      +
      + +

      This enum defines the different commands that can be assigned to a key.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      LineDown 

      Move down one line.

      +
      LineDownExtend 

      Extend the selection down one line.

      +
      LineDownRectExtend 

      Extend the rectangular selection down one line.

      +
      LineScrollDown 

      Scroll the view down one line.

      +
      LineUp 

      Move up one line.

      +
      LineUpExtend 

      Extend the selection up one line.

      +
      LineUpRectExtend 

      Extend the rectangular selection up one line.

      +
      LineScrollUp 

      Scroll the view up one line.

      +
      ScrollToStart 

      Scroll to the start of the document.

      +
      ScrollToEnd 

      Scroll to the end of the document.

      +
      VerticalCentreCaret 

      Scroll vertically to centre the current line.

      +
      ParaDown 

      Move down one paragraph.

      +
      ParaDownExtend 

      Extend the selection down one paragraph.

      +
      ParaUp 

      Move up one paragraph.

      +
      ParaUpExtend 

      Extend the selection up one paragraph.

      +
      CharLeft 

      Move left one character.

      +
      CharLeftExtend 

      Extend the selection left one character.

      +
      CharLeftRectExtend 

      Extend the rectangular selection left one character.

      +
      CharRight 

      Move right one character.

      +
      CharRightExtend 

      Extend the selection right one character.

      +
      CharRightRectExtend 

      Extend the rectangular selection right one character.

      +
      WordLeft 

      Move left one word.

      +
      WordLeftExtend 

      Extend the selection left one word.

      +
      WordRight 

      Move right one word.

      +
      WordRightExtend 

      Extend the selection right one word.

      +
      WordLeftEnd 

      Move to the end of the previous word.

      +
      WordLeftEndExtend 

      Extend the selection to the end of the previous word.

      +
      WordRightEnd 

      Move to the end of the next word.

      +
      WordRightEndExtend 

      Extend the selection to the end of the next word.

      +
      WordPartLeft 

      Move left one word part.

      +
      WordPartLeftExtend 

      Extend the selection left one word part.

      +
      WordPartRight 

      Move right one word part.

      +
      WordPartRightExtend 

      Extend the selection right one word part.

      +
      Home 

      Move to the start of the document line.

      +
      HomeExtend 

      Extend the selection to the start of the document line.

      +
      HomeRectExtend 

      Extend the rectangular selection to the start of the document line.

      +
      HomeDisplay 

      Move to the start of the displayed line.

      +
      HomeDisplayExtend 

      Extend the selection to the start of the displayed line.

      +
      HomeWrap 

      Move to the start of the displayed or document line.

      +
      HomeWrapExtend 

      Extend the selection to the start of the displayed or document line.

      +
      VCHome 

      Move to the first visible character in the document line.

      +
      VCHomeExtend 

      Extend the selection to the first visible character in the document line.

      +
      VCHomeRectExtend 

      Extend the rectangular selection to the first visible character in the document line.

      +
      VCHomeWrap 

      Move to the first visible character of the displayed or document line.

      +
      VCHomeWrapExtend 

      Extend the selection to the first visible character of the displayed or document line.

      +
      LineEnd 

      Move to the end of the document line.

      +
      LineEndExtend 

      Extend the selection to the end of the document line.

      +
      LineEndRectExtend 

      Extend the rectangular selection to the end of the document line.

      +
      LineEndDisplay 

      Move to the end of the displayed line.

      +
      LineEndDisplayExtend 

      Extend the selection to the end of the displayed line.

      +
      LineEndWrap 

      Move to the end of the displayed or document line.

      +
      LineEndWrapExtend 

      Extend the selection to the end of the displayed or document line.

      +
      DocumentStart 

      Move to the start of the document.

      +
      DocumentStartExtend 

      Extend the selection to the start of the document.

      +
      DocumentEnd 

      Move to the end of the document.

      +
      DocumentEndExtend 

      Extend the selection to the end of the document.

      +
      PageUp 

      Move up one page.

      +
      PageUpExtend 

      Extend the selection up one page.

      +
      PageUpRectExtend 

      Extend the rectangular selection up one page.

      +
      PageDown 

      Move down one page.

      +
      PageDownExtend 

      Extend the selection down one page.

      +
      PageDownRectExtend 

      Extend the rectangular selection down one page.

      +
      StutteredPageUp 

      Stuttered move up one page.

      +
      StutteredPageUpExtend 

      Stuttered extend the selection up one page.

      +
      StutteredPageDown 

      Stuttered move down one page.

      +
      StutteredPageDownExtend 

      Stuttered extend the selection down one page.

      +
      Delete 

      Delete the current character.

      +
      DeleteBack 

      Delete the previous character.

      +
      DeleteBackNotLine 

      Delete the previous character if not at start of line.

      +
      DeleteWordLeft 

      Delete the word to the left.

      +
      DeleteWordRight 

      Delete the word to the right.

      +
      DeleteWordRightEnd 

      Delete right to the end of the next word.

      +
      DeleteLineLeft 

      Delete the line to the left.

      +
      DeleteLineRight 

      Delete the line to the right.

      +
      LineDelete 

      Delete the current line.

      +
      LineCut 

      Cut the current line to the clipboard.

      +
      LineCopy 

      Copy the current line to the clipboard.

      +
      LineTranspose 

      Transpose the current and previous lines.

      +
      LineDuplicate 

      Duplicate the current line.

      +
      SelectAll 

      Select the whole document.

      +
      MoveSelectedLinesUp 

      Move the selected lines up one line.

      +
      MoveSelectedLinesDown 

      Move the selected lines down one line.

      +
      SelectionDuplicate 

      Duplicate the selection.

      +
      SelectionLowerCase 

      Convert the selection to lower case.

      +
      SelectionUpperCase 

      Convert the selection to upper case.

      +
      SelectionCut 

      Cut the selection to the clipboard.

      +
      SelectionCopy 

      Copy the selection to the clipboard.

      +
      Paste 

      Paste from the clipboard.

      +
      EditToggleOvertype 

      Toggle insert/overtype.

      +
      Newline 

      Insert a platform dependent newline.

      +
      Formfeed 

      Insert a formfeed.

      +
      Tab 

      Indent one level.

      +
      Backtab 

      De-indent one level.

      +
      Cancel 

      Cancel any current operation.

      +
      Undo 

      Undo the last command.

      +
      Redo 

      Redo the last command.

      +
      ZoomIn 

      Zoom in.

      +
      ZoomOut 

      Zoom out.

      +
      ReverseLines 

      Reverse the selected lines.

      +
      + +
      +
      +

      Member Function Documentation

      + +

      ◆ setKey()

      + +
      +
      + + + + + + + + +
      void QsciCommand::setKey (int key)
      +
      +

      Binds the key key to the command. If key is 0 then the key binding is removed. If key is invalid then the key binding is unchanged. Valid keys are any visible or control character or any of Qt::Key_Down, Qt::Key_Up, Qt::Key_Left, Qt::Key_Right, Qt::Key_Home, Qt::Key_End, Qt::Key_PageUp, Qt::Key_PageDown, Qt::Key_Delete, Qt::Key_Insert, Qt::Key_Escape, Qt::Key_Backspace, Qt::Key_Tab, Qt::Key_Backtab, Qt::Key_Return, Qt::Key_Enter, Qt::Key_Super_L, Qt::Key_Super_R or Qt::Key_Menu. Keys may be modified with any combination of Qt::ShiftModifier, Qt::ControlModifier, Qt::AltModifier and Qt::MetaModifier.

      +
      See also
      key(), setAlternateKey(), validKey()
      + +
      +
      + +

      ◆ setAlternateKey()

      + +
      +
      + + + + + + + + +
      void QsciCommand::setAlternateKey (int altkey)
      +
      +

      Binds the alternate key altkey to the command. If key is 0 then the alternate key binding is removed.

      +
      See also
      alternateKey(), setKey(), validKey()
      + +
      +
      + +

      ◆ key()

      + +
      +
      + + + + + +
      + + + + + + + +
      int QsciCommand::key () const
      +
      +inline
      +
      +

      The key that is currently bound to the command is returned.

      +
      See also
      setKey(), alternateKey()
      + +
      +
      + +

      ◆ alternateKey()

      + +
      +
      + + + + + +
      + + + + + + + +
      int QsciCommand::alternateKey () const
      +
      +inline
      +
      +

      The alternate key that is currently bound to the command is returned.

      +
      See also
      setAlternateKey(), key()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciCommandSet-members.html b/third_party/qscintilla/doc/html/classQsciCommandSet-members.html new file mode 100644 index 0000000..b1b2eae --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciCommandSet-members.html @@ -0,0 +1,62 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciCommandSet Member List
      +
      +
      + +

      This is the complete list of members for QsciCommandSet, including all inherited members.

      + + + + + + + + +
      boundTo(int key) const (defined in QsciCommandSet)QsciCommandSet
      clearAlternateKeys()QsciCommandSet
      clearKeys()QsciCommandSet
      commands()QsciCommandSetinline
      find(QsciCommand::Command command) const (defined in QsciCommandSet)QsciCommandSet
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciCommandSet
      writeSettings(QSettings &qs, const char *prefix="/Scintilla")QsciCommandSet
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciCommandSet.html b/third_party/qscintilla/doc/html/classQsciCommandSet.html new file mode 100644 index 0000000..bf49dd1 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciCommandSet.html @@ -0,0 +1,144 @@ + + + + + + + +QScintilla: QsciCommandSet Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciCommandSet Class Reference
      +
      +
      + +

      #include <qscicommandset.h>

      + + + + + + + + + + + + + + + + +

      +Public Member Functions

      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      +QList< QsciCommand * > & commands ()
       
      +void clearKeys ()
       
      +void clearAlternateKeys ()
       
      +QsciCommandboundTo (int key) const
       
      +QsciCommandfind (QsciCommand::Command command) const
       
      +

      Detailed Description

      +

      The QsciCommandSet class represents the set of all internal editor commands that may have keys bound.

      +

      Methods are provided to access the individual commands and to read and write the current bindings from and to settings files.

      +

      Member Function Documentation

      + +

      ◆ readSettings()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      bool QsciCommandSet::readSettings (QSettings & qs,
      const char * prefix = "/Scintilla" 
      )
      +
      +

      The key bindings for each command in the set are read from the settings qs. prefix is prepended to the key of each entry. true is returned if there was no error.

      +
      See also
      writeSettings()
      + +
      +
      + +

      ◆ writeSettings()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      bool QsciCommandSet::writeSettings (QSettings & qs,
      const char * prefix = "/Scintilla" 
      )
      +
      +

      The key bindings for each command in the set are written to the settings qs. prefix is prepended to the key of each entry. true is returned if there was no error.

      +
      See also
      readSettings()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciDocument-members.html b/third_party/qscintilla/doc/html/classQsciDocument-members.html new file mode 100644 index 0000000..b7650fd --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciDocument-members.html @@ -0,0 +1,59 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciDocument Member List
      +
      +
      + +

      This is the complete list of members for QsciDocument, including all inherited members.

      + + + + + +
      operator=(const QsciDocument &) (defined in QsciDocument)QsciDocument
      QsciDocument()QsciDocument
      QsciDocument(const QsciDocument &) (defined in QsciDocument)QsciDocument
      ~QsciDocument() (defined in QsciDocument)QsciDocumentvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciDocument.html b/third_party/qscintilla/doc/html/classQsciDocument.html new file mode 100644 index 0000000..a973663 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciDocument.html @@ -0,0 +1,73 @@ + + + + + + + +QScintilla: QsciDocument Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciDocument Class Reference
      +
      +
      + +

      #include <qscidocument.h>

      + + + + + + + + +

      +Public Member Functions

      QsciDocument ()
       
      QsciDocument (const QsciDocument &)
       
      +QsciDocumentoperator= (const QsciDocument &)
       
      +

      Detailed Description

      +

      The QsciDocument class represents a document to be edited.

      +

      It is an opaque class that can be attached to multiple instances of QsciScintilla to create different simultaneous views of the same document. QsciDocument uses implicit sharing so that copying class instances is a cheap operation.

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexer-members.html b/third_party/qscintilla/doc/html/classQsciLexer-members.html new file mode 100644 index 0000000..0e4a7a0 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexer-members.html @@ -0,0 +1,110 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexer Member List
      +
      +
      + +

      This is the complete list of members for QsciLexer, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      defaultColor() constQsciLexer
      defaultColor(int style) constQsciLexervirtual
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont() constQsciLexer
      defaultFont(int style) constQsciLexervirtual
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) const =0QsciLexerpure virtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() const =0QsciLexerpure virtual
      lexer() constQsciLexervirtual
      lexerId() constQsciLexervirtual
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexer.html b/third_party/qscintilla/doc/html/classQsciLexer.html new file mode 100644 index 0000000..0ab1ea2 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexer.html @@ -0,0 +1,1461 @@ + + + + + + + +QScintilla: QsciLexer Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexer Class Referenceabstract
      +
      +
      + +

      #include <qscilexer.h>

      + +

      Inherits QObject.

      + +

      Inherited by QsciLexerAsm, QsciLexerAVS, QsciLexerBash, QsciLexerBatch, QsciLexerCMake, QsciLexerCoffeeScript, QsciLexerCPP, QsciLexerCSS, QsciLexerCustom, QsciLexerD, QsciLexerDiff, QsciLexerEDIFACT, QsciLexerFortran77, QsciLexerHex, QsciLexerHTML, QsciLexerJSON, QsciLexerLua, QsciLexerMakefile, QsciLexerMarkdown, QsciLexerMatlab, QsciLexerPascal, QsciLexerPerl, QsciLexerPO, QsciLexerPostScript, QsciLexerPOV, QsciLexerProperties, QsciLexerPython, QsciLexerRuby, QsciLexerSpice, QsciLexerSQL, QsciLexerTCL, QsciLexerTeX, QsciLexerVerilog, QsciLexerVHDL, and QsciLexerYAML.

      + + + + + + + + + + + + +

      +Public Slots

      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + +

      +Signals

      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual const char * language () const =0
       
      virtual const char * lexer () const
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QString description (int style) const =0
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      +virtual QColor defaultColor (int style) const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      +virtual QFont defaultFont (int style) const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + +

      +Protected Member Functions

      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexer class is an abstract class used as a base for language lexers.

      +

      A lexer scans the text breaking it up into separate language objects, e.g. keywords, strings, operators. The lexer then uses a different style to draw each object. A style is identified by a style number and has a number of attributes, including colour and font. A specific language lexer will implement appropriate default styles which can be overriden by an application by further sub-classing the specific language lexer.

      +

      A lexer may provide one or more sets of words to be recognised as keywords. Most lexers only provide one set, but some may support languages embedded in other languages and provide several sets.

      +

      QsciLexer provides convenience methods for saving and restoring user preferences for fonts and colours.

      +

      If you want to write a lexer for a new language then you can add it to the underlying Scintilla code and implement a corresponding QsciLexer sub-class to manage the different styles used. Alternatively you can implement a sub-class of QsciLexerCustom.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexer()

      + +
      +
      + + + + + + + + +
      QsciLexer::QsciLexer (QObject * parent = 0)
      +
      +

      Construct a QsciLexer with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ language()

      + + + +

      ◆ lexer()

      + + + +

      ◆ lexerId()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual int QsciLexer::lexerId () const
      +
      +virtual
      +
      +

      Returns the identifier (i.e. a QsciScintillaBase::SCLEX_* value) of the lexer. This is only used if lexer() returns 0. The default implementation returns QsciScintillaBase::SCLEX_CONTAINER.

      +
      See also
      lexer()
      + +
      +
      + +

      ◆ apis()

      + +
      +
      + + + + + + + +
      QsciAbstractAPIs* QsciLexer::apis () const
      +
      +

      Returns the current API set or 0 if there isn't one.

      +
      See also
      setAPIs()
      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual QStringList QsciLexer::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented in QsciLexerPython, QsciLexerPerl, QsciLexerPascal, QsciLexerLua, QsciLexerD, QsciLexerCPP, and QsciLexerCoffeeScript.

      + +
      +
      + +

      ◆ autoIndentStyle()

      + +
      +
      + + + + + + + +
      int QsciLexer::autoIndentStyle ()
      +
      +

      Returns the auto-indentation style. The default is 0 if the language is block structured, or QsciScintilla::AiMaintain if not.

      +
      See also
      setAutoIndentStyle(), QsciScintilla::AiMaintain, QsciScintilla::AiOpening, QsciScintilla::AiClosing
      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual const char* QsciLexer::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented in QsciLexerRuby, QsciLexerPerl, QsciLexerPascal, QsciLexerD, QsciLexerCSS, QsciLexerCPP, and QsciLexerCoffeeScript.

      + +
      +
      + +

      ◆ blockLookback()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual int QsciLexer::blockLookback () const
      +
      +virtual
      +
      +

      Returns the number of lines prior to the current one when determining the scope of a block when auto-indenting.

      + +

      Reimplemented in QsciLexerPython.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual const char* QsciLexer::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented in QsciLexerRuby, QsciLexerPython, QsciLexerPerl, QsciLexerPascal, QsciLexerLua, QsciLexerD, QsciLexerCSS, QsciLexerCPP, and QsciLexerCoffeeScript.

      + +
      +
      + +

      ◆ blockStartKeyword()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual const char* QsciLexer::blockStartKeyword (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of keywords in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented in QsciLexerRuby, QsciLexerPascal, QsciLexerD, QsciLexerCPP, and QsciLexerCoffeeScript.

      + +
      +
      + +

      ◆ color()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual QColor QsciLexer::color (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style. The default colour is that returned by defaultColor().

      +
      See also
      defaultColor(), paper()
      + +
      +
      + +

      ◆ eolFill()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual bool QsciLexer::eolFill (int style) const
      +
      +virtual
      +
      +

      Returns the end-of-line for style number style. The default is false.

      + +
      +
      + +

      ◆ font()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual QFont QsciLexer::font (int style) const
      +
      +virtual
      +
      +

      Returns the font for style number style. The default font is that returned by defaultFont().

      +
      See also
      defaultFont()
      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual const char* QsciLexer::keywords (int set) const
      +
      +virtual
      +
      +
      + +

      ◆ defaultStyle()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual int QsciLexer::defaultStyle () const
      +
      +virtual
      +
      +

      Returns the number of the style used for whitespace. The default implementation returns 0 which is the convention adopted by most lexers.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual QString QsciLexer::description (int style) const
      +
      +pure virtual
      +
      +
      + +

      ◆ paper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual QColor QsciLexer::paper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultPaper(), color()
      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + + + +
      QColor QsciLexer::defaultColor () const
      +
      +

      Returns the default text colour.

      +
      See also
      setDefaultColor()
      + +
      +
      + +

      ◆ defaultEolFill()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual bool QsciLexer::defaultEolFill (int style) const
      +
      +virtual
      +
      +
      + +

      ◆ defaultFont()

      + +
      +
      + + + + + + + +
      QFont QsciLexer::defaultFont () const
      +
      +

      Returns the default font.

      +
      See also
      setDefaultFont()
      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + + + +
      QColor QsciLexer::defaultPaper () const
      +
      +

      Returns the default paper colour.

      +
      See also
      setDefaultPaper()
      + +
      +
      + +

      ◆ editor()

      + +
      +
      + + + + + +
      + + + + + + + +
      QsciScintilla* QsciLexer::editor () const
      +
      +inline
      +
      +

      Returns the QsciScintilla instance that the lexer is currently attached to or 0 if it is unattached.

      + +
      +
      + +

      ◆ setAPIs()

      + +
      +
      + + + + + + + + +
      void QsciLexer::setAPIs (QsciAbstractAPIsapis)
      +
      +

      The current set of APIs is set to apis. If apis is 0 then any existing APIs for this lexer are removed.

      +
      See also
      apis()
      + +
      +
      + +

      ◆ setDefaultColor()

      + +
      +
      + + + + + + + + +
      void QsciLexer::setDefaultColor (const QColor & c)
      +
      +

      The default text colour is set to c.

      +
      See also
      defaultColor(), color()
      + +
      +
      + +

      ◆ setDefaultFont()

      + +
      +
      + + + + + + + + +
      void QsciLexer::setDefaultFont (const QFont & f)
      +
      +

      The default font is set to f.

      +
      See also
      defaultFont(), font()
      + +
      +
      + +

      ◆ setDefaultPaper()

      + +
      +
      + + + + + + + + +
      void QsciLexer::setDefaultPaper (const QColor & c)
      +
      +

      The default paper colour is set to c.

      +
      See also
      defaultPaper(), paper()
      + +
      +
      + +

      ◆ readSettings()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexer::readSettings (QSettings & qs,
      const char * prefix = "/Scintilla" 
      )
      +
      +

      The colour, paper, font and end-of-line for each style number, and all lexer specific properties are read from the settings qs. prefix is prepended to the key of each entry. true is returned if there was no error.

      +
      See also
      writeSettings(), QsciScintilla::setLexer()
      + +
      +
      + +

      ◆ refreshProperties()

      + + + +

      ◆ styleBitsNeeded()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual int QsciLexer::styleBitsNeeded () const
      +
      +virtual
      +
      +

      Returns the number of style bits needed by the lexer. Normally this should only be re-implemented by custom lexers. This is deprecated and no longer has any effect.

      + +

      Reimplemented in QsciLexerCustom.

      + +
      +
      + +

      ◆ wordCharacters()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual const char* QsciLexer::wordCharacters () const
      +
      +virtual
      +
      +

      Returns the string of characters that comprise a word. The default is 0 which implies the upper and lower case alphabetic characters and underscore.

      + +

      Reimplemented in QsciLexerVerilog, QsciLexerTeX, QsciLexerProperties, QsciLexerPOV, QsciLexerPerl, QsciLexerMakefile, QsciLexerHTML, QsciLexerDiff, QsciLexerD, QsciLexerCSS, QsciLexerCPP, QsciLexerCoffeeScript, QsciLexerBatch, QsciLexerBash, and QsciLexerAVS.

      + +
      +
      + +

      ◆ writeSettings()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexer::writeSettings (QSettings & qs,
      const char * prefix = "/Scintilla" 
      ) const
      +
      +

      The colour, paper, font and end-of-line for each style number, and all lexer specific properties are written to the settings qs. prefix is prepended to the key of each entry. true is returned if there was no error.

      +
      See also
      readSettings()
      + +
      +
      + +

      ◆ setAutoIndentStyle

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexer::setAutoIndentStyle (int autoindentstyle)
      +
      +virtualslot
      +
      +

      The auto-indentation style is set to autoindentstyle.

      +
      See also
      autoIndentStyle(), QsciScintilla::AiMaintain, QsciScintilla::AiOpening, QsciScintilla::AiClosing
      + +
      +
      + +

      ◆ setColor

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciLexer::setColor (const QColor & c,
      int style = -1 
      )
      +
      +virtualslot
      +
      +

      The foreground colour for style number style is set to c. If style is -1 then the colour is set for all styles.

      + +
      +
      + +

      ◆ setEolFill

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciLexer::setEolFill (bool eoffill,
      int style = -1 
      )
      +
      +virtualslot
      +
      +

      The end-of-line fill for style number style is set to eoffill. If style is -1 then the fill is set for all styles.

      + +
      +
      + +

      ◆ setFont

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciLexer::setFont (const QFont & f,
      int style = -1 
      )
      +
      +virtualslot
      +
      +

      The font for style number style is set to f. If style is -1 then the font is set for all styles.

      + +
      +
      + +

      ◆ setPaper

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciLexer::setPaper (const QColor & c,
      int style = -1 
      )
      +
      +virtualslot
      +
      +

      The background colour for style number style is set to c. If style is -1 then the colour is set for all styles.

      + +
      +
      + +

      ◆ colorChanged

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexer::colorChanged (const QColor & c,
      int style 
      )
      +
      +signal
      +
      +

      This signal is emitted when the foreground colour of style number style has changed. The new colour is c.

      + +
      +
      + +

      ◆ eolFillChanged

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexer::eolFillChanged (bool eolfilled,
      int style 
      )
      +
      +signal
      +
      +

      This signal is emitted when the end-of-file fill of style number style has changed. The new fill is eolfilled.

      + +
      +
      + +

      ◆ fontChanged

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexer::fontChanged (const QFont & f,
      int style 
      )
      +
      +signal
      +
      +

      This signal is emitted when the font of style number style has changed. The new font is f.

      + +
      +
      + +

      ◆ paperChanged

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexer::paperChanged (const QColor & c,
      int style 
      )
      +
      +signal
      +
      +

      This signal is emitted when the background colour of style number style has changed. The new colour is c.

      + +
      +
      + +

      ◆ propertyChanged

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexer::propertyChanged (const char * prop,
      const char * val 
      )
      +
      +signal
      +
      +

      This signal is emitted when the value of the lexer property prop needs to be changed. The new value is val.

      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual bool QsciLexer::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented in QsciLexerYAML, QsciLexerXML, QsciLexerVHDL, QsciLexerVerilog, QsciLexerTeX, QsciLexerTCL, QsciLexerSQL, QsciLexerRuby, QsciLexerPython, QsciLexerProperties, QsciLexerPOV, QsciLexerPostScript, QsciLexerPO, QsciLexerPerl, QsciLexerPascal, QsciLexerLua, QsciLexerJSON, QsciLexerHTML, QsciLexerFortran77, QsciLexerD, QsciLexerCSS, QsciLexerCPP, QsciLexerCoffeeScript, QsciLexerCMake, QsciLexerBash, QsciLexerAVS, and QsciLexerAsm.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual bool QsciLexer::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented in QsciLexerYAML, QsciLexerXML, QsciLexerVHDL, QsciLexerVerilog, QsciLexerTeX, QsciLexerTCL, QsciLexerSQL, QsciLexerRuby, QsciLexerPython, QsciLexerProperties, QsciLexerPOV, QsciLexerPostScript, QsciLexerPO, QsciLexerPerl, QsciLexerPascal, QsciLexerLua, QsciLexerJSON, QsciLexerHTML, QsciLexerFortran77, QsciLexerD, QsciLexerCSS, QsciLexerCPP, QsciLexerCoffeeScript, QsciLexerCMake, QsciLexerBash, QsciLexerAVS, and QsciLexerAsm.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerAVS-members.html b/third_party/qscintilla/doc/html/classQsciLexerAVS-members.html new file mode 100644 index 0000000..752e632 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerAVS-members.html @@ -0,0 +1,131 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerAVS Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerAVS, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      BlockComment enum valueQsciLexerAVS
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerAVSvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      ClipProperty enum valueQsciLexerAVS
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Default enum valueQsciLexerAVS
      defaultColor(int style) constQsciLexerAVSvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerAVSvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerAVSvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      Filter enum valueQsciLexerAVS
      foldComments() constQsciLexerAVS
      foldCompact() constQsciLexerAVS
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Function enum valueQsciLexerAVS
      Identifier enum valueQsciLexerAVS
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerAVS
      keywords(int set) constQsciLexerAVSvirtual
      KeywordSet6 enum valueQsciLexerAVS
      language() constQsciLexerAVSvirtual
      lexer() constQsciLexerAVSvirtual
      lexerId() constQsciLexervirtual
      LineComment enum valueQsciLexerAVS
      NestedBlockComment enum valueQsciLexerAVS
      Number enum valueQsciLexerAVS
      Operator enum valueQsciLexerAVS
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      Plugin enum valueQsciLexerAVS
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerAVS(QObject *parent=0)QsciLexerAVS
      readProperties(QSettings &qs, const QString &prefix)QsciLexerAVSprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerAVSvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerAVSvirtualslot
      setFoldCompact(bool fold)QsciLexerAVSvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      String enum valueQsciLexerAVS
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TripleString enum valueQsciLexerAVS
      wordCharacters() constQsciLexerAVSvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerAVSprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerAVS()QsciLexerAVSvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerAVS.html b/third_party/qscintilla/doc/html/classQsciLexerAVS.html new file mode 100644 index 0000000..5ba9a9b --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerAVS.html @@ -0,0 +1,627 @@ + + + + + + + +QScintilla: QsciLexerAVS Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexeravs.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +BlockComment = 1, +NestedBlockComment = 2, +
      +  LineComment = 3, +Number = 4, +Operator = 5, +
      +  Identifier = 6, +String = 7, +TripleString = 8, +
      +  Keyword = 9, +Filter = 10, +Plugin = 11, +
      +  Function = 12, +ClipProperty = 13, +KeywordSet6 = 14 +
      + }
       
      + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerAVS (QObject *parent=0)
       
      +virtual ~QsciLexerAVS ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerAVS class encapsulates the Scintilla AVS lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the AVS lexer.

      + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      BlockComment 

      A block comment.

      +
      NestedBlockComment 

      A nested block comment.

      +
      LineComment 

      A line comment.

      +
      Number 

      A number.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      String 

      A string.

      +
      TripleString 

      A triple quoted string.

      +
      Keyword 

      A keyword (as defined by keyword set number 1)..

      +
      Filter 

      A filter (as defined by keyword set number 2).

      +
      Plugin 

      A plugin (as defined by keyword set number 3).

      +
      Function 

      A function (as defined by keyword set number 4).

      +
      ClipProperty 

      A clip property (as defined by keyword set number 5).

      +
      KeywordSet6 

      A keyword defined in keyword set number 6. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerAVS()

      + +
      +
      + + + + + + + + +
      QsciLexerAVS::QsciLexerAVS (QObject * parent = 0)
      +
      +

      Construct a QsciLexerAVS with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerAVS::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerAVS::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerAVS::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerAVS::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerAVS::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerAVS::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerAVS::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerAVS::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerAVS::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerAVS::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerAVS::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerAsm-members.html b/third_party/qscintilla/doc/html/classQsciLexerAsm-members.html new file mode 100644 index 0000000..bd88e22 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerAsm-members.html @@ -0,0 +1,136 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerAsm Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerAsm, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      BlockComment enum valueQsciLexerAsm
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerAsm
      commentDelimiter() constQsciLexerAsm
      CommentDirective enum valueQsciLexerAsm
      CPUInstruction enum valueQsciLexerAsm
      Default enum valueQsciLexerAsm
      defaultColor(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerAsmvirtual
      defaultFont(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerAsmvirtual
      Directive enum valueQsciLexerAsm
      DirectiveOperand enum valueQsciLexerAsm
      DoubleQuotedString enum valueQsciLexerAsm
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExtendedInstruction enum valueQsciLexerAsm
      foldComments() constQsciLexerAsm
      foldCompact() constQsciLexerAsm
      foldSyntaxBased() constQsciLexerAsm
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      FPUInstruction enum valueQsciLexerAsm
      Identifier enum valueQsciLexerAsm
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerAsmvirtual
      language() const =0QsciLexerpure virtual
      lexer() constQsciLexervirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerAsm
      Operator enum valueQsciLexerAsm
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerAsm(QObject *parent=0)QsciLexerAsm
      readProperties(QSettings &qs, const QString &prefix)QsciLexerAsmprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerAsmvirtual
      Register enum valueQsciLexerAsm
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setCommentDelimiter(QChar delimeter)QsciLexerAsmvirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerAsmvirtualslot
      setFoldCompact(bool fold)QsciLexerAsmvirtualslot
      setFoldSyntaxBased(bool syntax_based)QsciLexerAsmvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerAsm
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerAsm
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerAsmprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerAsm()QsciLexerAsmvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerAsm.html b/third_party/qscintilla/doc/html/classQsciLexerAsm.html new file mode 100644 index 0000000..6812089 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerAsm.html @@ -0,0 +1,706 @@ + + + + + + + +QScintilla: QsciLexerAsm Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerasm.h>

      + +

      Inherits QsciLexer.

      + +

      Inherited by QsciLexerMASM, and QsciLexerNASM.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Number = 2, +
      +  DoubleQuotedString = 3, +Operator = 4, +Identifier = 5, +
      +  CPUInstruction = 6, +FPUInstruction = 7, +Register = 8, +
      +  Directive = 9, +DirectiveOperand = 11, +BlockComment = 12, +
      +  SingleQuotedString = 13, +UnclosedString = 14, +ExtendedInstruction = 16, +
      +  CommentDirective = 17 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setCommentDelimiter (QChar delimeter)
       
      virtual void setFoldSyntaxBased (bool syntax_based)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerAsm (QObject *parent=0)
       
      +virtual ~QsciLexerAsm ()
       
      +QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      QChar commentDelimiter () const
       
      bool foldSyntaxBased () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual const char * language () const =0
       
      virtual const char * lexer () const
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The abstract QsciLexerAsm class encapsulates the Scintilla Asm lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Asm lexer.

      + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Number 

      A number.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      CPUInstruction 

      A CPU instruction.

      +
      FPUInstruction 

      An FPU instruction.

      +
      Register 

      A register.

      +
      Directive 

      A directive.

      +
      DirectiveOperand 

      A directive operand.

      +
      BlockComment 

      A block comment.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      ExtendedInstruction 

      An extended instruction.

      +
      CommentDirective 

      A comment directive.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerAsm()

      + +
      +
      + + + + + + + + +
      QsciLexerAsm::QsciLexerAsm (QObject * parent = 0)
      +
      +

      Construct a QsciLexerAsm with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerAsm::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerAsm::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string. Set 1 is normally used for CPU instructions. Set 2 is normally used for FPU instructions. Set 3 is normally used for register names. Set 4 is normally used for directives. Set 5 is normally used for directive operands. Set 6 is normally used for extended instructions.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerAsm::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerAsm::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerAsm::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerAsm::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ commentDelimiter()

      + +
      +
      + + + + + + + +
      QChar QsciLexerAsm::commentDelimiter () const
      +
      +

      Returns the delimiter used by the COMMENT directive.

      +
      See also
      setCommentDelimiter()
      + +
      +
      + +

      ◆ foldSyntaxBased()

      + +
      +
      + + + + + + + +
      bool QsciLexerAsm::foldSyntaxBased () const
      +
      +

      Returns true if syntax-based folding is enabled.

      +
      See also
      setFoldSyntaxBased()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerAsm::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is true.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerAsm::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ setCommentDelimiter

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerAsm::setCommentDelimiter (QChar delimeter)
      +
      +virtualslot
      +
      +

      delimiter is the character used for the COMMENT directive's delimiter. The default is '~'.

      +
      See also
      commentDelimiter()
      + +
      +
      + +

      ◆ setFoldSyntaxBased

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerAsm::setFoldSyntaxBased (bool syntax_based)
      +
      +virtualslot
      +
      +

      If syntax_based is true then syntax-based folding is enabled. The default is true.

      +
      See also
      foldSyntaxBased()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerAsm::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerAsm::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerBash-members.html b/third_party/qscintilla/doc/html/classQsciLexerBash-members.html new file mode 100644 index 0000000..e6e48a5 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerBash-members.html @@ -0,0 +1,130 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerBash Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerBash, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      Backticks enum valueQsciLexerBash
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerBashvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerBash
      Default enum valueQsciLexerBash
      defaultColor(int style) constQsciLexerBashvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerBashvirtual
      defaultFont(int style) constQsciLexerBashvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerBashvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerBashvirtual
      DoubleQuotedString enum valueQsciLexerBash
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      Error enum valueQsciLexerBash
      foldComments() constQsciLexerBash
      foldCompact() constQsciLexerBash
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      HereDocumentDelimiter enum valueQsciLexerBash
      Identifier enum valueQsciLexerBash
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerBash
      keywords(int set) constQsciLexerBashvirtual
      language() constQsciLexerBashvirtual
      lexer() constQsciLexerBashvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerBash
      Operator enum valueQsciLexerBash
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      ParameterExpansion enum valueQsciLexerBash
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerBash(QObject *parent=0)QsciLexerBash
      readProperties(QSettings &qs, const QString &prefix)QsciLexerBashprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerBashvirtual
      Scalar enum valueQsciLexerBash
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerBashvirtualslot
      setFoldCompact(bool fold)QsciLexerBashvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedHereDocument enum valueQsciLexerBash
      SingleQuotedString enum valueQsciLexerBash
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexerBashvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerBashprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerBash()QsciLexerBashvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerBash.html b/third_party/qscintilla/doc/html/classQsciLexerBash.html new file mode 100644 index 0000000..442af33 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerBash.html @@ -0,0 +1,654 @@ + + + + + + + +QScintilla: QsciLexerBash Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerbash.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Error = 1, +Comment = 2, +
      +  Number = 3, +Keyword = 4, +DoubleQuotedString = 5, +
      +  SingleQuotedString = 6, +Operator = 7, +Identifier = 8, +
      +  Scalar = 9, +ParameterExpansion = 10, +Backticks = 11, +
      +  HereDocumentDelimiter = 12, +SingleQuotedHereDocument = 13 +
      + }
       
      + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerBash (QObject *parent=0)
       
      +virtual ~QsciLexerBash ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerBash class encapsulates the Scintilla Bash lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Bash lexer.

      + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Error 

      An error.

      +
      Comment 

      A comment.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      Scalar 

      A scalar.

      +
      ParameterExpansion 

      Parameter expansion.

      +
      Backticks 

      Backticks.

      +
      HereDocumentDelimiter 

      A here document delimiter.

      +
      SingleQuotedHereDocument 

      A single quoted here document.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerBash()

      + +
      +
      + + + + + + + + +
      QsciLexerBash::QsciLexerBash (QObject * parent = 0)
      +
      +

      Construct a QsciLexerBash with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerBash::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerBash::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerBash::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerBash::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerBash::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerBash::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerBash::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerBash::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerBash::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerBash::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerBash::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerBash::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerBatch-members.html b/third_party/qscintilla/doc/html/classQsciLexerBatch-members.html new file mode 100644 index 0000000..3486b14 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerBatch-members.html @@ -0,0 +1,120 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerBatch Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerBatch, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexerBatchvirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerBatch
      Default enum valueQsciLexerBatch
      defaultColor(int style) constQsciLexerBatchvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerBatchvirtual
      defaultFont(int style) constQsciLexerBatchvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerBatchvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerBatchvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExternalCommand enum valueQsciLexerBatch
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      HideCommandChar enum valueQsciLexerBatch
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerBatch
      keywords(int set) constQsciLexerBatchvirtual
      Label enum valueQsciLexerBatch
      language() constQsciLexerBatchvirtual
      lexer() constQsciLexerBatchvirtual
      lexerId() constQsciLexervirtual
      Operator enum valueQsciLexerBatch
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerBatch(QObject *parent=0)QsciLexerBatch
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      Variable enum valueQsciLexerBatch
      wordCharacters() constQsciLexerBatchvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerBatch()QsciLexerBatchvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerBatch.html b/third_party/qscintilla/doc/html/classQsciLexerBatch.html new file mode 100644 index 0000000..7b75738 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerBatch.html @@ -0,0 +1,418 @@ + + + + + + + +QScintilla: QsciLexerBatch Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerBatch Class Reference
      +
      +
      + +

      #include <qscilexerbatch.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Keyword = 2, +
      +  Label = 3, +HideCommandChar = 4, +ExternalCommand = 5, +
      +  Variable = 6, +Operator = 7 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerBatch (QObject *parent=0)
       
      +virtual ~QsciLexerBatch ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +const char * wordCharacters () const
       
      +bool caseSensitive () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerBatch class encapsulates the Scintilla batch file lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the batch file lexer.

      + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Keyword 

      A keyword.

      +
      Label 

      A label.

      +
      HideCommandChar 

      An hide command character.

      +
      ExternalCommand 

      An external command .

      +
      Variable 

      A variable.

      +
      Operator 

      An operator.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerBatch()

      + +
      +
      + + + + + + + + +
      QsciLexerBatch::QsciLexerBatch (QObject * parent = 0)
      +
      +

      Construct a QsciLexerBatch with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerBatch::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerBatch::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerBatch::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerBatch::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerBatch::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCMake-members.html b/third_party/qscintilla/doc/html/classQsciLexerCMake-members.html new file mode 100644 index 0000000..12056cf --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCMake-members.html @@ -0,0 +1,129 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerCMake Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerCMake, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      BlockForeach enum valueQsciLexerCMake
      BlockIf enum valueQsciLexerCMake
      blockLookback() constQsciLexervirtual
      BlockMacro enum valueQsciLexerCMake
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      BlockWhile enum valueQsciLexerCMake
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCMake
      Default enum valueQsciLexerCMake
      defaultColor(int style) constQsciLexerCMakevirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerCMakevirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerCMakevirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerCMakevirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldAtElse() constQsciLexerCMake
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Function enum valueQsciLexerCMake
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerCMakevirtual
      KeywordSet3 enum valueQsciLexerCMake
      Label enum valueQsciLexerCMake
      language() constQsciLexerCMakevirtual
      lexer() constQsciLexerCMakevirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerCMake
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCMake(QObject *parent=0)QsciLexerCMake
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCMakeprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCMakevirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerCMakevirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      String enum valueQsciLexerCMake
      StringLeftQuote enum valueQsciLexerCMake
      StringRightQuote enum valueQsciLexerCMake
      StringVariable enum valueQsciLexerCMake
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      Variable enum valueQsciLexerCMake
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCMakeprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCMake()QsciLexerCMakevirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCMake.html b/third_party/qscintilla/doc/html/classQsciLexerCMake.html new file mode 100644 index 0000000..8074815 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCMake.html @@ -0,0 +1,604 @@ + + + + + + + +QScintilla: QsciLexerCMake Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexercmake.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +String = 2, +
      +  StringLeftQuote = 3, +StringRightQuote = 4, +Function = 5, +
      +  Variable = 6, +Label = 7, +KeywordSet3 = 8, +
      +  BlockWhile = 9, +BlockForeach = 10, +BlockIf = 11, +
      +  BlockMacro = 12, +StringVariable = 13, +Number = 14 +
      + }
       
      + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldAtElse (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerCMake (QObject *parent=0)
       
      +virtual ~QsciLexerCMake ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldAtElse () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerCMake class encapsulates the Scintilla CMake lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the CMake lexer.

      + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      String 

      A string.

      +
      StringLeftQuote 

      A left quoted string.

      +
      StringRightQuote 

      A right quoted string.

      +
      Function 

      A function. (Defined by keyword set number 1.)

      +
      Variable 

      A variable. (Defined by keyword set number 2.)

      +
      Label 

      A label.

      +
      KeywordSet3 

      A keyword defined in keyword set number 3. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      BlockWhile 

      A WHILE block.

      +
      BlockForeach 

      A FOREACH block.

      +
      BlockIf 

      An IF block.

      +
      BlockMacro 

      A MACRO block.

      +
      StringVariable 

      A variable within a string.

      +
      Number 

      A number.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerCMake()

      + +
      +
      + + + + + + + + +
      QsciLexerCMake::QsciLexerCMake (QObject * parent = 0)
      +
      +

      Construct a QsciLexerCMake with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerCMake::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCMake::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCMake::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCMake::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerCMake::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerCMake::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + + + +
      bool QsciLexerCMake::foldAtElse () const
      +
      +

      Returns true if ELSE blocks can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ setFoldAtElse

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCMake::setFoldAtElse (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then ELSE blocks can be folded. The default is false.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCMake::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCMake::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCPP-members.html b/third_party/qscintilla/doc/html/classQsciLexerCPP-members.html new file mode 100644 index 0000000..06c52d3 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCPP-members.html @@ -0,0 +1,190 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerCPP Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerCPP, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerCPPvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerCPPvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerCPPvirtual
      blockStartKeyword(int *style=0) constQsciLexerCPPvirtual
      braceStyle() constQsciLexerCPPvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCPP
      CommentDoc enum valueQsciLexerCPP
      CommentDocKeyword enum valueQsciLexerCPP
      CommentDocKeywordError enum valueQsciLexerCPP
      CommentLine enum valueQsciLexerCPP
      CommentLineDoc enum valueQsciLexerCPP
      Default enum valueQsciLexerCPP
      defaultColor(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerCPPvirtual
      defaultFont(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerCPPvirtual
      dollarsAllowed() constQsciLexerCPPinline
      DoubleQuotedString enum valueQsciLexerCPP
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EscapeSequence enum valueQsciLexerCPP
      foldAtElse() constQsciLexerCPPinline
      foldComments() constQsciLexerCPPinline
      foldCompact() constQsciLexerCPPinline
      foldPreprocessor() constQsciLexerCPPinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      GlobalClass enum valueQsciLexerCPP
      HashQuotedString enum valueQsciLexerCPP
      highlightBackQuotedStrings() constQsciLexerCPPinline
      highlightEscapeSequences() constQsciLexerCPPinline
      highlightHashQuotedStrings() constQsciLexerCPPinline
      highlightTripleQuotedStrings() constQsciLexerCPPinline
      Identifier enum valueQsciLexerCPP
      InactiveComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeywordError enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLine enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDefault enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDoubleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveEscapeSequence enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveGlobalClass enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveHashQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveIdentifier enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeywordSet2 enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveNumber enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveOperator enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessor enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRawString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRegex enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveSingleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTaskMarker enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTripleQuotedVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUnclosedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUserLiteral enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUUID enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerCPP
      keywords(int set) constQsciLexerCPPvirtual
      KeywordSet2 enum valueQsciLexerCPP
      language() constQsciLexerCPPvirtual
      lexer() constQsciLexerCPPvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerCPP
      Operator enum valueQsciLexerCPP
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerCPP
      PreProcessorComment enum valueQsciLexerCPP
      PreProcessorCommentLineDoc enum valueQsciLexerCPP
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCPP(QObject *parent=0, bool caseInsensitiveKeywords=false)QsciLexerCPP
      RawString enum valueQsciLexerCPP
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCPPprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCPPvirtual
      Regex enum valueQsciLexerCPP
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDollarsAllowed(bool allowed)QsciLexerCPP
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerCPPvirtualslot
      setFoldComments(bool fold)QsciLexerCPPvirtualslot
      setFoldCompact(bool fold)QsciLexerCPPvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerCPPvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHighlightBackQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightEscapeSequences(bool enabled)QsciLexerCPP
      setHighlightHashQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightTripleQuotedStrings(bool enabled)QsciLexerCPP
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStylePreprocessor(bool style)QsciLexerCPPvirtualslot
      setVerbatimStringEscapeSequencesAllowed(bool allowed)QsciLexerCPP
      SingleQuotedString enum valueQsciLexerCPP
      styleBitsNeeded() constQsciLexervirtual
      stylePreprocessor() constQsciLexerCPPinline
      TaskMarker enum valueQsciLexerCPP
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TripleQuotedVerbatimString enum valueQsciLexerCPP
      UnclosedString enum valueQsciLexerCPP
      UserLiteral enum valueQsciLexerCPP
      UUID enum valueQsciLexerCPP
      VerbatimString enum valueQsciLexerCPP
      verbatimStringEscapeSequencesAllowed() constQsciLexerCPPinline
      wordCharacters() constQsciLexerCPPvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCPPprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCPP()QsciLexerCPPvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCPP.html b/third_party/qscintilla/doc/html/classQsciLexerCPP.html new file mode 100644 index 0000000..a548610 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCPP.html @@ -0,0 +1,1374 @@ + + + + + + + +QScintilla: QsciLexerCPP Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexercpp.h>

      + +

      Inherits QsciLexer.

      + +

      Inherited by QsciLexerCSharp, QsciLexerIDL, QsciLexerJava, and QsciLexerJavaScript.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +InactiveDefault = Default + 64, +Comment = 1, +
      +  InactiveComment = Comment + 64, +CommentLine = 2, +InactiveCommentLine = CommentLine + 64, +
      +  CommentDoc = 3, +InactiveCommentDoc = CommentDoc + 64, +Number = 4, +
      +  InactiveNumber = Number + 64, +Keyword = 5, +InactiveKeyword = Keyword + 64, +
      +  DoubleQuotedString = 6, +InactiveDoubleQuotedString = DoubleQuotedString + 64, +SingleQuotedString = 7, +
      +  InactiveSingleQuotedString = SingleQuotedString + 64, +UUID = 8, +InactiveUUID = UUID + 64, +
      +  PreProcessor = 9, +InactivePreProcessor = PreProcessor + 64, +Operator = 10, +
      +  InactiveOperator = Operator + 64, +Identifier = 11, +InactiveIdentifier = Identifier + 64, +
      +  UnclosedString = 12, +InactiveUnclosedString = UnclosedString + 64, +VerbatimString = 13, +
      +  InactiveVerbatimString = VerbatimString + 64, +Regex = 14, +InactiveRegex = Regex + 64, +
      +  CommentLineDoc = 15, +InactiveCommentLineDoc = CommentLineDoc + 64, +KeywordSet2 = 16, +
      +  InactiveKeywordSet2 = KeywordSet2 + 64, +CommentDocKeyword = 17, +InactiveCommentDocKeyword = CommentDocKeyword + 64, +
      +  CommentDocKeywordError = 18, +InactiveCommentDocKeywordError = CommentDocKeywordError + 64, +GlobalClass = 19, +
      +  InactiveGlobalClass = GlobalClass + 64, +RawString = 20, +InactiveRawString = RawString + 64, +
      +  TripleQuotedVerbatimString = 21, +InactiveTripleQuotedVerbatimString = TripleQuotedVerbatimString + 64, +HashQuotedString = 22, +
      +  InactiveHashQuotedString = HashQuotedString + 64, +PreProcessorComment = 23, +InactivePreProcessorComment = PreProcessorComment + 64, +
      +  PreProcessorCommentLineDoc = 24, +InactivePreProcessorCommentLineDoc = PreProcessorCommentLineDoc + 64, +UserLiteral = 25, +
      +  InactiveUserLiteral = UserLiteral + 64, +TaskMarker = 26, +InactiveTaskMarker = TaskMarker + 64, +
      +  EscapeSequence = 27, +InactiveEscapeSequence = EscapeSequence + 64 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldAtElse (bool fold)
       
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      virtual void setStylePreprocessor (bool style)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerCPP (QObject *parent=0, bool caseInsensitiveKeywords=false)
       
      +virtual ~QsciLexerCPP ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      bool stylePreprocessor () const
       
      void setDollarsAllowed (bool allowed)
       
      bool dollarsAllowed () const
       
      void setHighlightTripleQuotedStrings (bool enabled)
       
      bool highlightTripleQuotedStrings () const
       
      void setHighlightHashQuotedStrings (bool enabled)
       
      bool highlightHashQuotedStrings () const
       
      void setHighlightBackQuotedStrings (bool enabled)
       
      bool highlightBackQuotedStrings () const
       
      void setHighlightEscapeSequences (bool enabled)
       
      bool highlightEscapeSequences () const
       
      void setVerbatimStringEscapeSequencesAllowed (bool allowed)
       
      bool verbatimStringEscapeSequencesAllowed () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerCPP class encapsulates the Scintilla C++ lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the C++ lexer.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A C comment.

      +
      CommentLine 

      A C++ comment line.

      +
      CommentDoc 

      A JavaDoc/Doxygen style C comment.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      UUID 

      An IDL UUID.

      +
      PreProcessor 

      A pre-processor block.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      VerbatimString 

      A C# verbatim string.

      +
      Regex 

      A JavaScript regular expression.

      +
      CommentLineDoc 

      A JavaDoc/Doxygen style C++ comment line.

      +
      KeywordSet2 

      A keyword defined in keyword set number 2. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      CommentDocKeyword 

      A JavaDoc/Doxygen keyword.

      +
      CommentDocKeywordError 

      A JavaDoc/Doxygen keyword error.

      +
      GlobalClass 

      A global class or typedef defined in keyword set number 5. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      RawString 

      A C++ raw string.

      +
      TripleQuotedVerbatimString 

      A Vala triple-quoted verbatim string.

      +
      HashQuotedString 

      A Pike hash-quoted string.

      +
      PreProcessorComment 

      A pre-processor stream comment.

      +
      PreProcessorCommentLineDoc 

      A JavaDoc/Doxygen style pre-processor comment.

      +
      UserLiteral 

      A user-defined literal.

      +
      TaskMarker 

      A task marker.

      +
      EscapeSequence 

      An escape sequence.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerCPP()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      QsciLexerCPP::QsciLexerCPP (QObject * parent = 0,
      bool caseInsensitiveKeywords = false 
      )
      +
      +

      Construct a QsciLexerCPP with parent parent. parent is typically the QsciScintilla instance. caseInsensitiveKeywords is true if the lexer ignores the case of keywords.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerCPP::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      QStringList QsciLexerCPP::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCPP::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCPP::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStartKeyword()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCPP::blockStartKeyword (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of keywords in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCPP::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerJavaScript, QsciLexerIDL, and QsciLexerCSharp.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCPP::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerJavaScript, and QsciLexerCSharp.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCPP::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string. Set 1 is normally used for primary keywords and identifiers. Set 2 is normally used for secondary keywords and identifiers. Set 3 is normally used for documentation comment keywords. Set 4 is normally used for global classes and typedefs.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerJavaScript, QsciLexerJava, QsciLexerIDL, and QsciLexerCSharp.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerCPP::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +

      Reimplemented in QsciLexerJavaScript, QsciLexerIDL, and QsciLexerCSharp.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerCPP::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::foldAtElse () const
      +
      +inline
      +
      +

      Returns true if "} else {" lines can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::foldComments () const
      +
      +inline
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ foldPreprocessor()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::foldPreprocessor () const
      +
      +inline
      +
      +

      Returns true if preprocessor blocks can be folded.

      +
      See also
      setFoldPreprocessor()
      + +
      +
      + +

      ◆ stylePreprocessor()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::stylePreprocessor () const
      +
      +inline
      +
      +

      Returns true if preprocessor lines (after the preprocessor directive) are styled.

      +
      See also
      setStylePreprocessor()
      + +
      +
      + +

      ◆ setDollarsAllowed()

      + +
      +
      + + + + + + + + +
      void QsciLexerCPP::setDollarsAllowed (bool allowed)
      +
      +

      If allowed is true then '$' characters are allowed in identifier names. The default is true.

      +
      See also
      dollarsAllowed()
      + +
      +
      + +

      ◆ dollarsAllowed()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::dollarsAllowed () const
      +
      +inline
      +
      +

      Returns true if '$' characters are allowed in identifier names.

      +
      See also
      setDollarsAllowed()
      + +
      +
      + +

      ◆ setHighlightTripleQuotedStrings()

      + +
      +
      + + + + + + + + +
      void QsciLexerCPP::setHighlightTripleQuotedStrings (bool enabled)
      +
      +

      If enabled is true then triple quoted strings are highlighted. The default is false.

      +
      See also
      highlightTripleQuotedStrings()
      + +
      +
      + +

      ◆ highlightTripleQuotedStrings()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::highlightTripleQuotedStrings () const
      +
      +inline
      +
      +

      Returns true if triple quoted strings should be highlighted.

      +
      See also
      setHighlightTripleQuotedStrings()
      + +
      +
      + +

      ◆ setHighlightHashQuotedStrings()

      + +
      +
      + + + + + + + + +
      void QsciLexerCPP::setHighlightHashQuotedStrings (bool enabled)
      +
      +

      If enabled is true then hash quoted strings are highlighted. The default is false.

      +
      See also
      highlightHashQuotedStrings()
      + +
      +
      + +

      ◆ highlightHashQuotedStrings()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::highlightHashQuotedStrings () const
      +
      +inline
      +
      +

      Returns true if hash quoted strings should be highlighted.

      +
      See also
      setHighlightHashQuotedStrings()
      + +
      +
      + +

      ◆ setHighlightBackQuotedStrings()

      + +
      +
      + + + + + + + + +
      void QsciLexerCPP::setHighlightBackQuotedStrings (bool enabled)
      +
      +

      If enabled is true then back-quoted raw strings are highlighted. The default is false.

      +
      See also
      highlightBackQuotedStrings()
      + +
      +
      + +

      ◆ highlightBackQuotedStrings()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::highlightBackQuotedStrings () const
      +
      +inline
      +
      +

      Returns true if back-quoted raw strings should be highlighted.

      +
      See also
      setHighlightBackQuotedStrings()
      + +
      +
      + +

      ◆ setHighlightEscapeSequences()

      + +
      +
      + + + + + + + + +
      void QsciLexerCPP::setHighlightEscapeSequences (bool enabled)
      +
      +

      If enabled is true then escape sequences in strings are highlighted. The default is false.

      +
      See also
      highlightEscapeSequences()
      + +
      +
      + +

      ◆ highlightEscapeSequences()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::highlightEscapeSequences () const
      +
      +inline
      +
      +

      Returns true if escape sequences in strings should be highlighted.

      +
      See also
      setHighlightEscapeSequences()
      + +
      +
      + +

      ◆ setVerbatimStringEscapeSequencesAllowed()

      + +
      +
      + + + + + + + + +
      void QsciLexerCPP::setVerbatimStringEscapeSequencesAllowed (bool allowed)
      +
      +

      If allowed is true then escape sequences are allowed in verbatim strings. The default is false.

      +
      See also
      verbatimStringEscapeSequencesAllowed()
      + +
      +
      + +

      ◆ verbatimStringEscapeSequencesAllowed()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCPP::verbatimStringEscapeSequencesAllowed () const
      +
      +inline
      +
      +

      Returns true if hash quoted strings should be highlighted.

      +
      See also
      setVerbatimStringEscapeSequencesAllowed()
      + +
      +
      + +

      ◆ setFoldAtElse

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCPP::setFoldAtElse (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then "} else {" lines can be folded. The default is false.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCPP::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCPP::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ setFoldPreprocessor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCPP::setFoldPreprocessor (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then preprocessor blocks can be folded. The default is true.

      +
      See also
      foldPreprocessor()
      + +
      +
      + +

      ◆ setStylePreprocessor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCPP::setStylePreprocessor (bool style)
      +
      +virtualslot
      +
      +

      If style is true then preprocessor lines (after the preprocessor directive) are styled. The default is false.

      +
      See also
      stylePreprocessor()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCPP::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      writeProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCPP::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      readProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCSS-members.html b/third_party/qscintilla/doc/html/classQsciLexerCSS-members.html new file mode 100644 index 0000000..1c84f15 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCSS-members.html @@ -0,0 +1,146 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerCSS Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerCSS, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      AtRule enum valueQsciLexerCSS
      Attribute enum valueQsciLexerCSS
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerCSSvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerCSSvirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      ClassSelector enum valueQsciLexerCSS
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCSS
      CSS1Property enum valueQsciLexerCSS
      CSS2Property enum valueQsciLexerCSS
      CSS3Property enum valueQsciLexerCSS
      Default enum valueQsciLexerCSS
      defaultColor(int style) constQsciLexerCSSvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerCSSvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerCSSvirtual
      DoubleQuotedString enum valueQsciLexerCSS
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExtendedCSSProperty enum valueQsciLexerCSS
      ExtendedPseudoClass enum valueQsciLexerCSS
      ExtendedPseudoElement enum valueQsciLexerCSS
      foldComments() constQsciLexerCSS
      foldCompact() constQsciLexerCSS
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      HSSLanguage() constQsciLexerCSSinline
      IDSelector enum valueQsciLexerCSS
      Important enum valueQsciLexerCSS
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerCSSvirtual
      language() constQsciLexerCSSvirtual
      LessLanguage() constQsciLexerCSSinline
      lexer() constQsciLexerCSSvirtual
      lexerId() constQsciLexervirtual
      MediaRule enum valueQsciLexerCSS
      Operator enum valueQsciLexerCSS
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      PseudoClass enum valueQsciLexerCSS
      PseudoElement enum valueQsciLexerCSS
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCSS(QObject *parent=0)QsciLexerCSS
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCSSprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCSSvirtual
      SCSSLanguage() constQsciLexerCSSinline
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerCSSvirtualslot
      setFoldCompact(bool fold)QsciLexerCSSvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHSSLanguage(bool enabled)QsciLexerCSS
      setLessLanguage(bool enabled)QsciLexerCSS
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setSCSSLanguage(bool enabled)QsciLexerCSS
      SingleQuotedString enum valueQsciLexerCSS
      styleBitsNeeded() constQsciLexervirtual
      Tag enum valueQsciLexerCSS
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnknownProperty enum valueQsciLexerCSS
      UnknownPseudoClass enum valueQsciLexerCSS
      Value enum valueQsciLexerCSS
      Variable enum valueQsciLexerCSS
      wordCharacters() constQsciLexerCSSvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCSSprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCSS()QsciLexerCSSvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCSS.html b/third_party/qscintilla/doc/html/classQsciLexerCSS.html new file mode 100644 index 0000000..e6a3b8e --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCSS.html @@ -0,0 +1,839 @@ + + + + + + + +QScintilla: QsciLexerCSS Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexercss.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Tag = 1, +ClassSelector = 2, +
      +  PseudoClass = 3, +UnknownPseudoClass = 4, +Operator = 5, +
      +  CSS1Property = 6, +UnknownProperty = 7, +Value = 8, +
      +  Comment = 9, +IDSelector = 10, +Important = 11, +
      +  AtRule = 12, +DoubleQuotedString = 13, +SingleQuotedString = 14, +
      +  CSS2Property = 15, +Attribute = 16, +CSS3Property = 17, +
      +  PseudoElement = 18, +ExtendedCSSProperty = 19, +ExtendedPseudoClass = 20, +
      +  ExtendedPseudoElement = 21, +MediaRule = 22, +Variable = 23 +
      + }
       
      + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerCSS (QObject *parent=0)
       
      +virtual ~QsciLexerCSS ()
       
      +const char * language () const
       
      const char * lexer () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      +const char * wordCharacters () const
       
      +QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      void setHSSLanguage (bool enabled)
       
      bool HSSLanguage () const
       
      void setLessLanguage (bool enabled)
       
      bool LessLanguage () const
       
      void setSCSSLanguage (bool enabled)
       
      bool SCSSLanguage () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerCSS class encapsulates the Scintilla CSS lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the CSS lexer.

      + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Tag 

      A tag.

      +
      ClassSelector 

      A class selector.

      +
      PseudoClass 

      A pseudo class. The list of pseudo classes is defined by keyword set 2.

      +
      UnknownPseudoClass 

      An unknown pseudo class.

      +
      Operator 

      An operator.

      +
      CSS1Property 

      A CSS1 property. The list of CSS1 properties is defined by keyword set 1.

      +
      UnknownProperty 

      An unknown property.

      +
      Value 

      A value.

      +
      Comment 

      A comment.

      +
      IDSelector 

      An ID selector.

      +
      Important 

      An important value.

      +
      AtRule 

      An -rule.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      CSS2Property 

      A CSS2 property. The list of CSS2 properties is defined by keyword set 3.

      +
      Attribute 

      An attribute.

      +
      CSS3Property 

      A CSS3 property. The list of CSS3 properties is defined by keyword set 4.

      +
      PseudoElement 

      A pseudo element. The list of pseudo elements is defined by keyword set 5.

      +
      ExtendedCSSProperty 

      An extended (browser specific) CSS property. The list of extended CSS properties is defined by keyword set 6.

      +
      ExtendedPseudoClass 

      An extended (browser specific) pseudo class. The list of extended pseudo classes is defined by keyword set 7.

      +
      ExtendedPseudoElement 

      An extended (browser specific) pseudo element. The list of extended pseudo elements is defined by keyword set 8.

      +
      MediaRule 

      A media rule.

      +
      Variable 

      A variable.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerCSS()

      + +
      +
      + + + + + + + + +
      QsciLexerCSS::QsciLexerCSS (QObject * parent = 0)
      +
      +

      Construct a QsciLexerCSS with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerCSS::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCSS::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCSS::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCSS::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerCSS::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerCSS::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerCSS::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerCSS::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setHSSLanguage()

      + +
      +
      + + + + + + + + +
      void QsciLexerCSS::setHSSLanguage (bool enabled)
      +
      +

      If enabled is true then support for HSS is enabled. The default is false.

      +
      See also
      HSSLanguage()
      + +
      +
      + +

      ◆ HSSLanguage()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCSS::HSSLanguage () const
      +
      +inline
      +
      +

      Returns true if support for HSS is enabled.

      +
      See also
      setHSSLanguage()
      + +
      +
      + +

      ◆ setLessLanguage()

      + +
      +
      + + + + + + + + +
      void QsciLexerCSS::setLessLanguage (bool enabled)
      +
      +

      If enabled is true then support for Less CSS is enabled. The default is false.

      +
      See also
      LessLanguage()
      + +
      +
      + +

      ◆ LessLanguage()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCSS::LessLanguage () const
      +
      +inline
      +
      +

      Returns true if support for Less CSS is enabled.

      +
      See also
      setLessLanguage()
      + +
      +
      + +

      ◆ setSCSSLanguage()

      + +
      +
      + + + + + + + + +
      void QsciLexerCSS::setSCSSLanguage (bool enabled)
      +
      +

      If enabled is true then support for Sassy CSS is enabled. The default is false.

      +
      See also
      SCSSLanguage()
      + +
      +
      + +

      ◆ SCSSLanguage()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCSS::SCSSLanguage () const
      +
      +inline
      +
      +

      Returns true if support for Sassy CSS is enabled.

      +
      See also
      setSCSSLanguage()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCSS::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerCSS::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCSS::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCSS::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCSharp-members.html b/third_party/qscintilla/doc/html/classQsciLexerCSharp-members.html new file mode 100644 index 0000000..83282a9 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCSharp-members.html @@ -0,0 +1,192 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerCSharp Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerCSharp, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerCPPvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerCPPvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerCPPvirtual
      blockStartKeyword(int *style=0) constQsciLexerCPPvirtual
      braceStyle() constQsciLexerCPPvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCPP
      CommentDoc enum valueQsciLexerCPP
      CommentDocKeyword enum valueQsciLexerCPP
      CommentDocKeywordError enum valueQsciLexerCPP
      CommentLine enum valueQsciLexerCPP
      CommentLineDoc enum valueQsciLexerCPP
      Default enum valueQsciLexerCPP
      defaultColor(int style) constQsciLexerCSharpvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerCSharpvirtual
      defaultFont(int style) constQsciLexerCSharpvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerCSharpvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerCSharpvirtual
      dollarsAllowed() constQsciLexerCPPinline
      DoubleQuotedString enum valueQsciLexerCPP
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EscapeSequence enum valueQsciLexerCPP
      foldAtElse() constQsciLexerCPPinline
      foldComments() constQsciLexerCPPinline
      foldCompact() constQsciLexerCPPinline
      foldPreprocessor() constQsciLexerCPPinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      GlobalClass enum valueQsciLexerCPP
      HashQuotedString enum valueQsciLexerCPP
      highlightBackQuotedStrings() constQsciLexerCPPinline
      highlightEscapeSequences() constQsciLexerCPPinline
      highlightHashQuotedStrings() constQsciLexerCPPinline
      highlightTripleQuotedStrings() constQsciLexerCPPinline
      Identifier enum valueQsciLexerCPP
      InactiveComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeywordError enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLine enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDefault enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDoubleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveEscapeSequence enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveGlobalClass enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveHashQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveIdentifier enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeywordSet2 enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveNumber enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveOperator enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessor enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRawString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRegex enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveSingleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTaskMarker enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTripleQuotedVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUnclosedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUserLiteral enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUUID enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerCPP
      keywords(int set) constQsciLexerCSharpvirtual
      KeywordSet2 enum valueQsciLexerCPP
      language() constQsciLexerCSharpvirtual
      lexer() constQsciLexerCPPvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerCPP
      Operator enum valueQsciLexerCPP
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerCPP
      PreProcessorComment enum valueQsciLexerCPP
      PreProcessorCommentLineDoc enum valueQsciLexerCPP
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCPP(QObject *parent=0, bool caseInsensitiveKeywords=false)QsciLexerCPP
      QsciLexerCSharp(QObject *parent=0)QsciLexerCSharp
      RawString enum valueQsciLexerCPP
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCPPprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCPPvirtual
      Regex enum valueQsciLexerCPP
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDollarsAllowed(bool allowed)QsciLexerCPP
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerCPPvirtualslot
      setFoldComments(bool fold)QsciLexerCPPvirtualslot
      setFoldCompact(bool fold)QsciLexerCPPvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerCPPvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHighlightBackQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightEscapeSequences(bool enabled)QsciLexerCPP
      setHighlightHashQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightTripleQuotedStrings(bool enabled)QsciLexerCPP
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStylePreprocessor(bool style)QsciLexerCPPvirtualslot
      setVerbatimStringEscapeSequencesAllowed(bool allowed)QsciLexerCPP
      SingleQuotedString enum valueQsciLexerCPP
      styleBitsNeeded() constQsciLexervirtual
      stylePreprocessor() constQsciLexerCPPinline
      TaskMarker enum valueQsciLexerCPP
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TripleQuotedVerbatimString enum valueQsciLexerCPP
      UnclosedString enum valueQsciLexerCPP
      UserLiteral enum valueQsciLexerCPP
      UUID enum valueQsciLexerCPP
      VerbatimString enum valueQsciLexerCPP
      verbatimStringEscapeSequencesAllowed() constQsciLexerCPPinline
      wordCharacters() constQsciLexerCPPvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCPPprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCPP()QsciLexerCPPvirtual
      ~QsciLexerCSharp()QsciLexerCSharpvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCSharp.html b/third_party/qscintilla/doc/html/classQsciLexerCSharp.html new file mode 100644 index 0000000..433b72f --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCSharp.html @@ -0,0 +1,469 @@ + + + + + + + +QScintilla: QsciLexerCSharp Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerCSharp Class Reference
      +
      +
      + +

      #include <qscilexercsharp.h>

      + +

      Inherits QsciLexerCPP.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerCSharp (QObject *parent=0)
       
      +virtual ~QsciLexerCSharp ()
       
      +const char * language () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexerCPP
       QsciLexerCPP (QObject *parent=0, bool caseInsensitiveKeywords=false)
       
      +virtual ~QsciLexerCPP ()
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      void refreshProperties ()
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      bool stylePreprocessor () const
       
      void setDollarsAllowed (bool allowed)
       
      bool dollarsAllowed () const
       
      void setHighlightTripleQuotedStrings (bool enabled)
       
      bool highlightTripleQuotedStrings () const
       
      void setHighlightHashQuotedStrings (bool enabled)
       
      bool highlightHashQuotedStrings () const
       
      void setHighlightBackQuotedStrings (bool enabled)
       
      bool highlightBackQuotedStrings () const
       
      void setHighlightEscapeSequences (bool enabled)
       
      bool highlightEscapeSequences () const
       
      void setVerbatimStringEscapeSequencesAllowed (bool allowed)
       
      bool verbatimStringEscapeSequencesAllowed () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerCPP
      enum  {
      +  Default = 0, +InactiveDefault = Default + 64, +Comment = 1, +
      +  InactiveComment = Comment + 64, +CommentLine = 2, +InactiveCommentLine = CommentLine + 64, +
      +  CommentDoc = 3, +InactiveCommentDoc = CommentDoc + 64, +Number = 4, +
      +  InactiveNumber = Number + 64, +Keyword = 5, +InactiveKeyword = Keyword + 64, +
      +  DoubleQuotedString = 6, +InactiveDoubleQuotedString = DoubleQuotedString + 64, +SingleQuotedString = 7, +
      +  InactiveSingleQuotedString = SingleQuotedString + 64, +UUID = 8, +InactiveUUID = UUID + 64, +
      +  PreProcessor = 9, +InactivePreProcessor = PreProcessor + 64, +Operator = 10, +
      +  InactiveOperator = Operator + 64, +Identifier = 11, +InactiveIdentifier = Identifier + 64, +
      +  UnclosedString = 12, +InactiveUnclosedString = UnclosedString + 64, +VerbatimString = 13, +
      +  InactiveVerbatimString = VerbatimString + 64, +Regex = 14, +InactiveRegex = Regex + 64, +
      +  CommentLineDoc = 15, +InactiveCommentLineDoc = CommentLineDoc + 64, +KeywordSet2 = 16, +
      +  InactiveKeywordSet2 = KeywordSet2 + 64, +CommentDocKeyword = 17, +InactiveCommentDocKeyword = CommentDocKeyword + 64, +
      +  CommentDocKeywordError = 18, +InactiveCommentDocKeywordError = CommentDocKeywordError + 64, +GlobalClass = 19, +
      +  InactiveGlobalClass = GlobalClass + 64, +RawString = 20, +InactiveRawString = RawString + 64, +
      +  TripleQuotedVerbatimString = 21, +InactiveTripleQuotedVerbatimString = TripleQuotedVerbatimString + 64, +HashQuotedString = 22, +
      +  InactiveHashQuotedString = HashQuotedString + 64, +PreProcessorComment = 23, +InactivePreProcessorComment = PreProcessorComment + 64, +
      +  PreProcessorCommentLineDoc = 24, +InactivePreProcessorCommentLineDoc = PreProcessorCommentLineDoc + 64, +UserLiteral = 25, +
      +  InactiveUserLiteral = UserLiteral + 64, +TaskMarker = 26, +InactiveTaskMarker = TaskMarker + 64, +
      +  EscapeSequence = 27, +InactiveEscapeSequence = EscapeSequence + 64 +
      + }
       
      - Public Slots inherited from QsciLexerCPP
      virtual void setFoldAtElse (bool fold)
       
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      virtual void setStylePreprocessor (bool style)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexerCPP
      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerCSharp class encapsulates the Scintilla C# lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerCSharp()

      + +
      +
      + + + + + + + + +
      QsciLexerCSharp::QsciLexerCSharp (QObject * parent = 0)
      +
      +

      Construct a QsciLexerCSharp with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCSharp::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCSharp::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCSharp::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerCSharp::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCoffeeScript-members.html b/third_party/qscintilla/doc/html/classQsciLexerCoffeeScript-members.html new file mode 100644 index 0000000..04a0cdc --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCoffeeScript-members.html @@ -0,0 +1,144 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerCoffeeScript Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerCoffeeScript, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerCoffeeScriptvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerCoffeeScriptvirtual
      blockLookback() constQsciLexervirtual
      BlockRegex enum valueQsciLexerCoffeeScript
      BlockRegexComment enum valueQsciLexerCoffeeScript
      blockStart(int *style=0) constQsciLexerCoffeeScriptvirtual
      blockStartKeyword(int *style=0) constQsciLexerCoffeeScriptvirtual
      braceStyle() constQsciLexerCoffeeScriptvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCoffeeScript
      CommentBlock enum valueQsciLexerCoffeeScript
      CommentDoc enum valueQsciLexerCoffeeScript
      CommentDocKeyword enum valueQsciLexerCoffeeScript
      CommentDocKeywordError enum valueQsciLexerCoffeeScript
      CommentLine enum valueQsciLexerCoffeeScript
      CommentLineDoc enum valueQsciLexerCoffeeScript
      Default enum valueQsciLexerCoffeeScript
      defaultColor(int style) constQsciLexerCoffeeScriptvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerCoffeeScriptvirtual
      defaultFont(int style) constQsciLexerCoffeeScriptvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerCoffeeScriptvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerCoffeeScriptvirtual
      dollarsAllowed() constQsciLexerCoffeeScriptinline
      DoubleQuotedString enum valueQsciLexerCoffeeScript
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldComments() constQsciLexerCoffeeScriptinline
      foldCompact() constQsciLexerCoffeeScriptinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      GlobalClass enum valueQsciLexerCoffeeScript
      Identifier enum valueQsciLexerCoffeeScript
      indentationGuideView() constQsciLexervirtual
      InstanceProperty enum valueQsciLexerCoffeeScript
      Keyword enum valueQsciLexerCoffeeScript
      keywords(int set) constQsciLexerCoffeeScriptvirtual
      KeywordSet2 enum valueQsciLexerCoffeeScript
      language() constQsciLexerCoffeeScriptvirtual
      lexer() constQsciLexerCoffeeScriptvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerCoffeeScript
      Operator enum valueQsciLexerCoffeeScript
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerCoffeeScript
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCoffeeScript(QObject *parent=0)QsciLexerCoffeeScript
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCoffeeScriptprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCoffeeScriptvirtual
      Regex enum valueQsciLexerCoffeeScript
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDollarsAllowed(bool allowed)QsciLexerCoffeeScript
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerCoffeeScript
      setFoldCompact(bool fold)QsciLexerCoffeeScript
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStylePreprocessor(bool style)QsciLexerCoffeeScript
      SingleQuotedString enum valueQsciLexerCoffeeScript
      styleBitsNeeded() constQsciLexervirtual
      stylePreprocessor() constQsciLexerCoffeeScriptinline
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerCoffeeScript
      UUID enum valueQsciLexerCoffeeScript
      VerbatimString enum valueQsciLexerCoffeeScript
      wordCharacters() constQsciLexerCoffeeScriptvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCoffeeScriptprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCoffeeScript()QsciLexerCoffeeScriptvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCoffeeScript.html b/third_party/qscintilla/doc/html/classQsciLexerCoffeeScript.html new file mode 100644 index 0000000..1b64537 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCoffeeScript.html @@ -0,0 +1,902 @@ + + + + + + + +QScintilla: QsciLexerCoffeeScript Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerCoffeeScript Class Reference
      +
      +
      + +

      #include <qscilexercoffeescript.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +CommentLine = 2, +
      +  CommentDoc = 3, +Number = 4, +Keyword = 5, +
      +  DoubleQuotedString = 6, +SingleQuotedString = 7, +UUID = 8, +
      +  PreProcessor = 9, +Operator = 10, +Identifier = 11, +
      +  UnclosedString = 12, +VerbatimString = 13, +Regex = 14, +
      +  CommentLineDoc = 15, +KeywordSet2 = 16, +CommentDocKeyword = 17, +
      +  CommentDocKeywordError = 18, +GlobalClass = 19, +CommentBlock = 22, +
      +  BlockRegex = 23, +BlockRegexComment = 24, +InstanceProperty = 25 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerCoffeeScript (QObject *parent=0)
       
      +virtual ~QsciLexerCoffeeScript ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool dollarsAllowed () const
       
      void setDollarsAllowed (bool allowed)
       
      bool foldComments () const
       
      void setFoldComments (bool fold)
       
      bool foldCompact () const
       
      void setFoldCompact (bool fold)
       
      bool stylePreprocessor () const
       
      void setStylePreprocessor (bool style)
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerCoffeeScript class encapsulates the Scintilla CoffeeScript lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the C++ lexer.

      + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A C-style comment.

      +
      CommentLine 

      A C++-style comment line.

      +
      CommentDoc 

      A JavaDoc/Doxygen C-style comment.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      UUID 

      An IDL UUID.

      +
      PreProcessor 

      A pre-processor block.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      VerbatimString 

      A C# verbatim string.

      +
      Regex 

      A regular expression.

      +
      CommentLineDoc 

      A JavaDoc/Doxygen C++-style comment line.

      +
      KeywordSet2 

      A keyword defined in keyword set number 2. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      CommentDocKeyword 

      A JavaDoc/Doxygen keyword.

      +
      CommentDocKeywordError 

      A JavaDoc/Doxygen keyword error defined in keyword set number 3. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      GlobalClass 

      A global class defined in keyword set number 4. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      CommentBlock 

      A block comment.

      +
      BlockRegex 

      A block regular expression.

      +
      BlockRegexComment 

      A block regular expression comment.

      +
      InstanceProperty 

      An instance property.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerCoffeeScript()

      + +
      +
      + + + + + + + + +
      QsciLexerCoffeeScript::QsciLexerCoffeeScript (QObject * parent = 0)
      +
      +

      Construct a QsciLexerCoffeeScript with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerCoffeeScript::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      QStringList QsciLexerCoffeeScript::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCoffeeScript::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCoffeeScript::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStartKeyword()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCoffeeScript::blockStartKeyword (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of keywords in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCoffeeScript::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerCoffeeScript::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerCoffeeScript::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string. Set 1 is normally used for primary keywords and identifiers. Set 2 is normally used for secondary keywords and identifiers. Set 3 is normally used for documentation comment keywords. Set 4 is normally used for global classes and typedefs.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerCoffeeScript::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerCoffeeScript::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ dollarsAllowed()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCoffeeScript::dollarsAllowed () const
      +
      +inline
      +
      +

      Returns true if '$' characters are allowed in identifier names.

      +
      See also
      setDollarsAllowed()
      + +
      +
      + +

      ◆ setDollarsAllowed()

      + +
      +
      + + + + + + + + +
      void QsciLexerCoffeeScript::setDollarsAllowed (bool allowed)
      +
      +

      If allowed is true then '$' characters are allowed in identifier names. The default is true.

      +
      See also
      dollarsAllowed()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCoffeeScript::foldComments () const
      +
      +inline
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ setFoldComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerCoffeeScript::setFoldComments (bool fold)
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCoffeeScript::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldCompact()

      + +
      +
      + + + + + + + + +
      void QsciLexerCoffeeScript::setFoldCompact (bool fold)
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ stylePreprocessor()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerCoffeeScript::stylePreprocessor () const
      +
      +inline
      +
      +

      Returns true if preprocessor lines (after the preprocessor directive) are styled.

      +
      See also
      setStylePreprocessor()
      + +
      +
      + +

      ◆ setStylePreprocessor()

      + +
      +
      + + + + + + + + +
      void QsciLexerCoffeeScript::setStylePreprocessor (bool style)
      +
      +

      If style is true then preprocessor lines (after the preprocessor directive) are styled. The default is false.

      +
      See also
      stylePreprocessor()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCoffeeScript::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      writeProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerCoffeeScript::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      readProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCustom-members.html b/third_party/qscintilla/doc/html/classQsciLexerCustom-members.html new file mode 100644 index 0000000..b4764a5 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCustom-members.html @@ -0,0 +1,116 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerCustom Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerCustom, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      defaultColor() constQsciLexer
      defaultColor(int style) constQsciLexervirtual
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont() constQsciLexer
      defaultFont(int style) constQsciLexervirtual
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) const =0QsciLexerpure virtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() const =0QsciLexerpure virtual
      lexer() constQsciLexervirtual
      lexerId() constQsciLexervirtual
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCustom(QObject *parent=0)QsciLexerCustom
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor)QsciLexerCustomvirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStyling(int length, int style)QsciLexerCustom
      setStyling(int length, const QsciStyle &style)QsciLexerCustom
      startStyling(int pos, int styleBits=0)QsciLexerCustom
      styleBitsNeeded() constQsciLexerCustomvirtual
      styleText(int start, int end)=0QsciLexerCustompure virtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCustom()QsciLexerCustomvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerCustom.html b/third_party/qscintilla/doc/html/classQsciLexerCustom.html new file mode 100644 index 0000000..5a85317 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerCustom.html @@ -0,0 +1,385 @@ + + + + + + + +QScintilla: QsciLexerCustom Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerCustom Class Referenceabstract
      +
      +
      + +

      #include <qscilexercustom.h>

      + +

      Inherits QsciLexer.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerCustom (QObject *parent=0)
       
      +virtual ~QsciLexerCustom ()
       
      void setStyling (int length, int style)
       
      void setStyling (int length, const QsciStyle &style)
       
      void startStyling (int pos, int styleBits=0)
       
      virtual void styleText (int start, int end)=0
       
      +virtual void setEditor (QsciScintilla *editor)
       
      virtual int styleBitsNeeded () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual const char * language () const =0
       
      virtual const char * lexer () const
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QString description (int style) const =0
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      +virtual QColor defaultColor (int style) const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      +virtual QFont defaultFont (int style) const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerCustom class is an abstract class used as a base for new language lexers.

      +

      The advantage of implementing a new lexer this way (as opposed to adding the lexer to the underlying Scintilla code) is that it does not require the QScintilla library to be re-compiled. It also makes it possible to integrate external lexers.

      +

      All that is necessary to implement a new lexer is to define appropriate styles and to re-implement the styleText() method.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerCustom()

      + +
      +
      + + + + + + + + +
      QsciLexerCustom::QsciLexerCustom (QObject * parent = 0)
      +
      +

      Construct a QsciLexerCustom with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ setStyling() [1/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexerCustom::setStyling (int length,
      int style 
      )
      +
      +

      The next length characters starting from the current styling position have their style set to style number style. The current styling position is moved. The styling position is initially set by calling startStyling().

      +
      See also
      startStyling(), styleText()
      + +
      +
      + +

      ◆ setStyling() [2/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexerCustom::setStyling (int length,
      const QsciStylestyle 
      )
      +
      +

      The next length characters starting from the current styling position have their style set to style style. The current styling position is moved. The styling position is initially set by calling startStyling().

      +
      See also
      startStyling(), styleText()
      + +
      +
      + +

      ◆ startStyling()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciLexerCustom::startStyling (int pos,
      int styleBits = 0 
      )
      +
      +

      The styling position is set to start. styleBits is unused.

      +
      See also
      setStyling(), styleBitsNeeded(), styleText()
      + +
      +
      + +

      ◆ styleText()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciLexerCustom::styleText (int start,
      int end 
      )
      +
      +pure virtual
      +
      +

      This is called when the section of text beginning at position start and up to position end needs to be styled. start will always be at the start of a line. The text is styled by calling startStyling() followed by one or more calls to setStyling(). It must be re-implemented by a sub-class.

      +
      See also
      setStyling(), startStyling(), QsciScintilla::bytes(), QsciScintilla::text()
      + +
      +
      + +

      ◆ styleBitsNeeded()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual int QsciLexerCustom::styleBitsNeeded () const
      +
      +virtual
      +
      +

      \reimp This re-implementation returns 5 as the number of style bits needed.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerD-members.html b/third_party/qscintilla/doc/html/classQsciLexerD-members.html new file mode 100644 index 0000000..1207a3f --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerD-members.html @@ -0,0 +1,141 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerD Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerD, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerDvirtual
      autoIndentStyle()QsciLexer
      BackquoteString enum valueQsciLexerD
      blockEnd(int *style=0) constQsciLexerDvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerDvirtual
      blockStartKeyword(int *style=0) constQsciLexerDvirtual
      braceStyle() constQsciLexerDvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      Character enum valueQsciLexerD
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerD
      CommentDoc enum valueQsciLexerD
      CommentDocKeyword enum valueQsciLexerD
      CommentDocKeywordError enum valueQsciLexerD
      CommentLine enum valueQsciLexerD
      CommentLineDoc enum valueQsciLexerD
      CommentNested enum valueQsciLexerD
      Default enum valueQsciLexerD
      defaultColor(int style) constQsciLexerDvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerDvirtual
      defaultFont(int style) constQsciLexerDvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerDvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerDvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldAtElse() constQsciLexerD
      foldComments() constQsciLexerD
      foldCompact() constQsciLexerD
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerD
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerD
      KeywordDoc enum valueQsciLexerD
      keywords(int set) constQsciLexerDvirtual
      KeywordSecondary enum valueQsciLexerD
      KeywordSet5 enum valueQsciLexerD
      KeywordSet6 enum valueQsciLexerD
      KeywordSet7 enum valueQsciLexerD
      language() constQsciLexerDvirtual
      lexer() constQsciLexerDvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerD
      Operator enum valueQsciLexerD
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerD(QObject *parent=0)QsciLexerD
      RawString enum valueQsciLexerD
      readProperties(QSettings &qs, const QString &prefix)QsciLexerDprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerDvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerDvirtualslot
      setFoldComments(bool fold)QsciLexerDvirtualslot
      setFoldCompact(bool fold)QsciLexerDvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      String enum valueQsciLexerD
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      Typedefs enum valueQsciLexerD
      UnclosedString enum valueQsciLexerD
      wordCharacters() constQsciLexerDvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerDprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerD()QsciLexerDvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerD.html b/third_party/qscintilla/doc/html/classQsciLexerD.html new file mode 100644 index 0000000..4334d56 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerD.html @@ -0,0 +1,852 @@ + + + + + + + +QScintilla: QsciLexerD Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerd.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +CommentLine = 2, +
      +  CommentDoc = 3, +CommentNested = 4, +Number = 5, +
      +  Keyword = 6, +KeywordSecondary = 7, +KeywordDoc = 8, +
      +  Typedefs = 9, +String = 10, +UnclosedString = 11, +
      +  Character = 12, +Operator = 13, +Identifier = 14, +
      +  CommentLineDoc = 15, +CommentDocKeyword = 16, +CommentDocKeywordError = 17, +
      +  BackquoteString = 18, +RawString = 19, +KeywordSet5 = 20, +
      +  KeywordSet6 = 21, +KeywordSet7 = 22 +
      + }
       
      + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldAtElse (bool fold)
       
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerD (QObject *parent=0)
       
      +virtual ~QsciLexerD ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerD class encapsulates the Scintilla D lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the D lexer.

      + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      CommentLine 

      A comment line.

      +
      CommentDoc 

      A JavaDoc and Doxygen comment.

      +
      CommentNested 

      A nested comment.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      KeywordSecondary 

      A secondary keyword.

      +
      KeywordDoc 

      A doc keyword.

      +
      Typedefs 

      Typedefs and aliases.

      +
      String 

      A string.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      Character 

      A character.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      CommentLineDoc 

      A JavaDoc and Doxygen line.

      +
      CommentDocKeyword 

      A JavaDoc and Doxygen keyword.

      +
      CommentDocKeywordError 

      A JavaDoc and Doxygen keyword error.

      +
      BackquoteString 

      A backquoted string.

      +
      RawString 

      A raw, hexadecimal or delimited string.

      +
      KeywordSet5 

      A keyword defined in keyword set number 5. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet6 

      A keyword defined in keyword set number 6. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet7 

      A keyword defined in keyword set number 7. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerD()

      + +
      +
      + + + + + + + + +
      QsciLexerD::QsciLexerD (QObject * parent = 0)
      +
      +

      Construct a QsciLexerD with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerD::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      QStringList QsciLexerD::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerD::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerD::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStartKeyword()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerD::blockStartKeyword (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of keywords in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerD::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerD::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerD::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerD::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerD::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + + + +
      bool QsciLexerD::foldAtElse () const
      +
      +

      Returns true if "} else {" lines can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerD::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerD::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldAtElse

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerD::setFoldAtElse (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then "} else {" lines can be folded. The default is false.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerD::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerD::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerD::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      writeProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerD::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      readProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerDiff-members.html b/third_party/qscintilla/doc/html/classQsciLexerDiff-members.html new file mode 100644 index 0000000..e051c00 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerDiff-members.html @@ -0,0 +1,124 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerDiff Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerDiff, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      AddingPatchAdded enum valueQsciLexerDiff
      AddingPatchRemoved enum valueQsciLexerDiff
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Command enum valueQsciLexerDiff
      Comment enum valueQsciLexerDiff
      Default enum valueQsciLexerDiff
      defaultColor(int style) constQsciLexerDiffvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont() constQsciLexer
      defaultFont(int style) constQsciLexervirtual
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerDiffvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Header enum valueQsciLexerDiff
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerDiffvirtual
      lexer() constQsciLexerDiffvirtual
      lexerId() constQsciLexervirtual
      LineAdded enum valueQsciLexerDiff
      LineChanged enum valueQsciLexerDiff
      LineRemoved enum valueQsciLexerDiff
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      Position enum valueQsciLexerDiff
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerDiff(QObject *parent=0)QsciLexerDiff
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      RemovingPatchAdded enum valueQsciLexerDiff
      RemovingPatchRemoved enum valueQsciLexerDiff
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexerDiffvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerDiff()QsciLexerDiffvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerDiff.html b/third_party/qscintilla/doc/html/classQsciLexerDiff.html new file mode 100644 index 0000000..fa1ed1c --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerDiff.html @@ -0,0 +1,343 @@ + + + + + + + +QScintilla: QsciLexerDiff Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerDiff Class Reference
      +
      +
      + +

      #include <qscilexerdiff.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Command = 2, +
      +  Header = 3, +Position = 4, +LineRemoved = 5, +
      +  LineAdded = 6, +LineChanged = 7, +AddingPatchAdded = 8, +
      +  RemovingPatchAdded = 9, +AddingPatchRemoved = 10, +RemovingPatchRemoved = 11 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerDiff (QObject *parent=0)
       
      +virtual ~QsciLexerDiff ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +const char * wordCharacters () const
       
      +QColor defaultColor (int style) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      +virtual QFont defaultFont (int style) const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerDiff class encapsulates the Scintilla Diff lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Diff lexer.

      + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Command 

      A command.

      +
      Header 

      A header.

      +
      Position 

      A position.

      +
      LineRemoved 

      A line removed.

      +
      LineAdded 

      A line added.

      +
      LineChanged 

      A line changed.

      +
      AddingPatchAdded 

      An adding patch added.

      +
      RemovingPatchAdded 

      A removing patch added.

      +
      AddingPatchRemoved 

      An adding patch added.

      +
      RemovingPatchRemoved 

      A removing patch added.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerDiff()

      + +
      +
      + + + + + + + + +
      QsciLexerDiff::QsciLexerDiff (QObject * parent = 0)
      +
      +

      Construct a QsciLexerDiff with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerDiff::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerDiff::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerEDIFACT-members.html b/third_party/qscintilla/doc/html/classQsciLexerEDIFACT-members.html new file mode 100644 index 0000000..8a112ed --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerEDIFACT-members.html @@ -0,0 +1,121 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerEDIFACT Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerEDIFACT, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      BadSegment enum valueQsciLexerEDIFACT
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      CompositeSeparator enum valueQsciLexerEDIFACT
      Default enum valueQsciLexerEDIFACT
      defaultColor(int style) constQsciLexerEDIFACTvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont() constQsciLexer
      defaultFont(int style) constQsciLexervirtual
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerEDIFACTvirtual
      editor() constQsciLexerinline
      ElementSeparator enum valueQsciLexerEDIFACT
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerEDIFACTvirtual
      lexer() constQsciLexerEDIFACTvirtual
      lexerId() constQsciLexervirtual
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerEDIFACT(QObject *parent=0)QsciLexerEDIFACT
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      ReleaseSeparator enum valueQsciLexerEDIFACT
      SegmentEnd enum valueQsciLexerEDIFACT
      SegmentStart enum valueQsciLexerEDIFACT
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UNASegmentHeader enum valueQsciLexerEDIFACT
      UNHSegmentHeader enum valueQsciLexerEDIFACT
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerEDIFACT()QsciLexerEDIFACTvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerEDIFACT.html b/third_party/qscintilla/doc/html/classQsciLexerEDIFACT.html new file mode 100644 index 0000000..4c7b6a5 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerEDIFACT.html @@ -0,0 +1,361 @@ + + + + + + + +QScintilla: QsciLexerEDIFACT Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerEDIFACT Class Reference
      +
      +
      + +

      #include <qscilexeredifact.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +SegmentStart = 1, +SegmentEnd = 2, +
      +  ElementSeparator = 3, +CompositeSeparator = 4, +ReleaseSeparator = 5, +
      +  UNASegmentHeader = 6, +UNHSegmentHeader = 7, +BadSegment = 8 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerEDIFACT (QObject *parent=0)
       
      +virtual ~QsciLexerEDIFACT ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      +virtual QFont defaultFont (int style) const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerEDIFACT class encapsulates the Scintilla EDIFACT lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the EDIFACT lexer.

      + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      SegmentStart 

      A segment start.

      +
      SegmentEnd 

      A segment end.

      +
      ElementSeparator 

      An element separator.

      +
      CompositeSeparator 

      A composite separator.

      +
      ReleaseSeparator 

      A release separator.

      +
      UNASegmentHeader 

      A UNA segment header.

      +
      UNHSegmentHeader 

      A UNH segment header.

      +
      BadSegment 

      A bad segment.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerEDIFACT()

      + +
      +
      + + + + + + + + +
      QsciLexerEDIFACT::QsciLexerEDIFACT (QObject * parent = 0)
      +
      +

      Construct a QsciLexerEDIFACT with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerEDIFACT::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerEDIFACT::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerEDIFACT::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerFortran-members.html b/third_party/qscintilla/doc/html/classQsciLexerFortran-members.html new file mode 100644 index 0000000..0321859 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerFortran-members.html @@ -0,0 +1,131 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerFortran Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerFortran, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerFortran77virtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerFortran77
      Continuation enum valueQsciLexerFortran77
      Default enum valueQsciLexerFortran77
      defaultColor(int style) constQsciLexerFortran77virtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerFortran77virtual
      defaultFont(int style) constQsciLexerFortran77virtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerFortran77virtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerFortran77virtual
      DottedOperator enum valueQsciLexerFortran77
      DoubleQuotedString enum valueQsciLexerFortran77
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExtendedFunction enum valueQsciLexerFortran77
      foldCompact() constQsciLexerFortran77
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerFortran77
      indentationGuideView() constQsciLexervirtual
      IntrinsicFunction enum valueQsciLexerFortran77
      Keyword enum valueQsciLexerFortran77
      keywords(int set) constQsciLexerFortranvirtual
      Label enum valueQsciLexerFortran77
      language() constQsciLexerFortranvirtual
      lexer() constQsciLexerFortranvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerFortran77
      Operator enum valueQsciLexerFortran77
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerFortran77
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerFortran(QObject *parent=0)QsciLexerFortran
      QsciLexerFortran77(QObject *parent=0)QsciLexerFortran77
      readProperties(QSettings &qs, const QString &prefix)QsciLexerFortran77protectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerFortran77virtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldCompact(bool fold)QsciLexerFortran77virtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerFortran77
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerFortran77
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerFortran77protectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerFortran()QsciLexerFortranvirtual
      ~QsciLexerFortran77()QsciLexerFortran77virtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerFortran.html b/third_party/qscintilla/doc/html/classQsciLexerFortran.html new file mode 100644 index 0000000..7890203 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerFortran.html @@ -0,0 +1,319 @@ + + + + + + + +QScintilla: QsciLexerFortran Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerFortran Class Reference
      +
      +
      + +

      #include <qscilexerfortran.h>

      + +

      Inherits QsciLexerFortran77.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerFortran (QObject *parent=0)
       
      +virtual ~QsciLexerFortran ()
       
      +const char * language () const
       
      const char * lexer () const
       
      const char * keywords (int set) const
       
      - Public Member Functions inherited from QsciLexerFortran77
       QsciLexerFortran77 (QObject *parent=0)
       
      +virtual ~QsciLexerFortran77 ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerFortran77
      enum  {
      +  Default = 0, +Comment = 1, +Number = 2, +
      +  SingleQuotedString = 3, +DoubleQuotedString = 4, +UnclosedString = 5, +
      +  Operator = 6, +Identifier = 7, +Keyword = 8, +
      +  IntrinsicFunction = 9, +ExtendedFunction = 10, +PreProcessor = 11, +
      +  DottedOperator = 12, +Label = 13, +Continuation = 14 +
      + }
       
      - Public Slots inherited from QsciLexerFortran77
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexerFortran77
      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerFortran class encapsulates the Scintilla Fortran lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerFortran()

      + +
      +
      + + + + + + + + +
      QsciLexerFortran::QsciLexerFortran (QObject * parent = 0)
      +
      +

      Construct a QsciLexerFortran with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerFortran::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerFortran::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerFortran77-members.html b/third_party/qscintilla/doc/html/classQsciLexerFortran77-members.html new file mode 100644 index 0000000..0346f20 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerFortran77-members.html @@ -0,0 +1,129 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerFortran77 Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerFortran77, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerFortran77virtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerFortran77
      Continuation enum valueQsciLexerFortran77
      Default enum valueQsciLexerFortran77
      defaultColor(int style) constQsciLexerFortran77virtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerFortran77virtual
      defaultFont(int style) constQsciLexerFortran77virtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerFortran77virtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerFortran77virtual
      DottedOperator enum valueQsciLexerFortran77
      DoubleQuotedString enum valueQsciLexerFortran77
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExtendedFunction enum valueQsciLexerFortran77
      foldCompact() constQsciLexerFortran77
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerFortran77
      indentationGuideView() constQsciLexervirtual
      IntrinsicFunction enum valueQsciLexerFortran77
      Keyword enum valueQsciLexerFortran77
      keywords(int set) constQsciLexerFortran77virtual
      Label enum valueQsciLexerFortran77
      language() constQsciLexerFortran77virtual
      lexer() constQsciLexerFortran77virtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerFortran77
      Operator enum valueQsciLexerFortran77
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerFortran77
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerFortran77(QObject *parent=0)QsciLexerFortran77
      readProperties(QSettings &qs, const QString &prefix)QsciLexerFortran77protectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerFortran77virtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldCompact(bool fold)QsciLexerFortran77virtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerFortran77
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerFortran77
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerFortran77protectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerFortran77()QsciLexerFortran77virtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerFortran77.html b/third_party/qscintilla/doc/html/classQsciLexerFortran77.html new file mode 100644 index 0000000..50dd8ef --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerFortran77.html @@ -0,0 +1,609 @@ + + + + + + + +QScintilla: QsciLexerFortran77 Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerfortran77.h>

      + +

      Inherits QsciLexer.

      + +

      Inherited by QsciLexerFortran.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Number = 2, +
      +  SingleQuotedString = 3, +DoubleQuotedString = 4, +UnclosedString = 5, +
      +  Operator = 6, +Identifier = 7, +Keyword = 8, +
      +  IntrinsicFunction = 9, +ExtendedFunction = 10, +PreProcessor = 11, +
      +  DottedOperator = 12, +Label = 13, +Continuation = 14 +
      + }
       
      + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerFortran77 (QObject *parent=0)
       
      +virtual ~QsciLexerFortran77 ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerFortran77 class encapsulates the Scintilla Fortran77 lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Fortran77 lexer.

      + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Number 

      A number.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      Keyword 

      A keyword.

      +
      IntrinsicFunction 

      An intrinsic function.

      +
      ExtendedFunction 

      An extended, non-standard or user defined function.

      +
      PreProcessor 

      A pre-processor block.

      +
      DottedOperator 

      An operator in .NAME. format.

      +
      Label 

      A label.

      +
      Continuation 

      A continuation.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerFortran77()

      + +
      +
      + + + + + + + + +
      QsciLexerFortran77::QsciLexerFortran77 (QObject * parent = 0)
      +
      +

      Construct a QsciLexerFortran77 with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerFortran77::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerFortran77::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerFortran77::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerFortran77::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerFortran77::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerFortran77::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerFortran77::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerFortran77::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerFortran77::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      writeProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerFortran77::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      readProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerHTML-members.html b/third_party/qscintilla/doc/html/classQsciLexerHTML-members.html new file mode 100644 index 0000000..daa6c2b --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerHTML-members.html @@ -0,0 +1,236 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerHTML Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerHTML, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      ASPAtStart enum valueQsciLexerHTML
      ASPJavaScriptComment enum valueQsciLexerHTML
      ASPJavaScriptCommentDoc enum valueQsciLexerHTML
      ASPJavaScriptCommentLine enum valueQsciLexerHTML
      ASPJavaScriptDefault enum valueQsciLexerHTML
      ASPJavaScriptDoubleQuotedString enum valueQsciLexerHTML
      ASPJavaScriptKeyword enum valueQsciLexerHTML
      ASPJavaScriptNumber enum valueQsciLexerHTML
      ASPJavaScriptRegex enum valueQsciLexerHTML
      ASPJavaScriptSingleQuotedString enum valueQsciLexerHTML
      ASPJavaScriptStart enum valueQsciLexerHTML
      ASPJavaScriptSymbol enum valueQsciLexerHTML
      ASPJavaScriptUnclosedString enum valueQsciLexerHTML
      ASPJavaScriptWord enum valueQsciLexerHTML
      ASPPythonClassName enum valueQsciLexerHTML
      ASPPythonComment enum valueQsciLexerHTML
      ASPPythonDefault enum valueQsciLexerHTML
      ASPPythonDoubleQuotedString enum valueQsciLexerHTML
      ASPPythonFunctionMethodName enum valueQsciLexerHTML
      ASPPythonIdentifier enum valueQsciLexerHTML
      ASPPythonKeyword enum valueQsciLexerHTML
      ASPPythonNumber enum valueQsciLexerHTML
      ASPPythonOperator enum valueQsciLexerHTML
      ASPPythonSingleQuotedString enum valueQsciLexerHTML
      ASPPythonStart enum valueQsciLexerHTML
      ASPPythonTripleDoubleQuotedString enum valueQsciLexerHTML
      ASPPythonTripleSingleQuotedString enum valueQsciLexerHTML
      ASPStart enum valueQsciLexerHTML
      ASPVBScriptComment enum valueQsciLexerHTML
      ASPVBScriptDefault enum valueQsciLexerHTML
      ASPVBScriptIdentifier enum valueQsciLexerHTML
      ASPVBScriptKeyword enum valueQsciLexerHTML
      ASPVBScriptNumber enum valueQsciLexerHTML
      ASPVBScriptStart enum valueQsciLexerHTML
      ASPVBScriptString enum valueQsciLexerHTML
      ASPVBScriptUnclosedString enum valueQsciLexerHTML
      ASPXCComment enum valueQsciLexerHTML
      Attribute enum valueQsciLexerHTML
      autoCompletionFillups() constQsciLexerHTMLvirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      caseSensitiveTags() constQsciLexerHTMLinline
      CDATA enum valueQsciLexerHTML
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Default enum valueQsciLexerHTML
      defaultColor(int style) constQsciLexerHTMLvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerHTMLvirtual
      defaultFont(int style) constQsciLexerHTMLvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerHTMLvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerHTMLvirtual
      djangoTemplates() constQsciLexerHTMLinline
      editor() constQsciLexerinline
      Entity enum valueQsciLexerHTML
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldCompact() constQsciLexerHTMLinline
      foldPreprocessor() constQsciLexerHTMLinline
      foldScriptComments() constQsciLexerHTMLinline
      foldScriptHeredocs() constQsciLexerHTMLinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      HTMLComment enum valueQsciLexerHTML
      HTMLDoubleQuotedString enum valueQsciLexerHTML
      HTMLNumber enum valueQsciLexerHTML
      HTMLSingleQuotedString enum valueQsciLexerHTML
      HTMLValue enum valueQsciLexerHTML
      indentationGuideView() constQsciLexervirtual
      JavaScriptComment enum valueQsciLexerHTML
      JavaScriptCommentDoc enum valueQsciLexerHTML
      JavaScriptCommentLine enum valueQsciLexerHTML
      JavaScriptDefault enum valueQsciLexerHTML
      JavaScriptDoubleQuotedString enum valueQsciLexerHTML
      JavaScriptKeyword enum valueQsciLexerHTML
      JavaScriptNumber enum valueQsciLexerHTML
      JavaScriptRegex enum valueQsciLexerHTML
      JavaScriptSingleQuotedString enum valueQsciLexerHTML
      JavaScriptStart enum valueQsciLexerHTML
      JavaScriptSymbol enum valueQsciLexerHTML
      JavaScriptUnclosedString enum valueQsciLexerHTML
      JavaScriptWord enum valueQsciLexerHTML
      keywords(int set) constQsciLexerHTMLvirtual
      language() constQsciLexerHTMLvirtual
      lexer() constQsciLexerHTMLvirtual
      lexerId() constQsciLexervirtual
      makoTemplates() constQsciLexerHTMLinline
      OtherInTag enum valueQsciLexerHTML
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PHPComment enum valueQsciLexerHTML
      PHPCommentLine enum valueQsciLexerHTML
      PHPDefault enum valueQsciLexerHTML
      PHPDoubleQuotedString enum valueQsciLexerHTML
      PHPDoubleQuotedVariable enum valueQsciLexerHTML
      PHPKeyword enum valueQsciLexerHTML
      PHPNumber enum valueQsciLexerHTML
      PHPOperator enum valueQsciLexerHTML
      PHPSingleQuotedString enum valueQsciLexerHTML
      PHPStart enum valueQsciLexerHTML
      PHPVariable enum valueQsciLexerHTML
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      PythonClassName enum valueQsciLexerHTML
      PythonComment enum valueQsciLexerHTML
      PythonDefault enum valueQsciLexerHTML
      PythonDoubleQuotedString enum valueQsciLexerHTML
      PythonFunctionMethodName enum valueQsciLexerHTML
      PythonIdentifier enum valueQsciLexerHTML
      PythonKeyword enum valueQsciLexerHTML
      PythonNumber enum valueQsciLexerHTML
      PythonOperator enum valueQsciLexerHTML
      PythonSingleQuotedString enum valueQsciLexerHTML
      PythonStart enum valueQsciLexerHTML
      PythonTripleDoubleQuotedString enum valueQsciLexerHTML
      PythonTripleSingleQuotedString enum valueQsciLexerHTML
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerHTML(QObject *parent=0)QsciLexerHTML
      readProperties(QSettings &qs, const QString &prefix)QsciLexerHTMLprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerHTMLvirtual
      Script enum valueQsciLexerHTML
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setCaseSensitiveTags(bool sens)QsciLexerHTMLvirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDjangoTemplates(bool enabled)QsciLexerHTML
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldCompact(bool fold)QsciLexerHTMLvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerHTMLvirtualslot
      setFoldScriptComments(bool fold)QsciLexerHTML
      setFoldScriptHeredocs(bool fold)QsciLexerHTML
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setMakoTemplates(bool enabled)QsciLexerHTML
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SGMLBlockDefault enum valueQsciLexerHTML
      SGMLCommand enum valueQsciLexerHTML
      SGMLComment enum valueQsciLexerHTML
      SGMLDefault enum valueQsciLexerHTML
      SGMLDoubleQuotedString enum valueQsciLexerHTML
      SGMLEntity enum valueQsciLexerHTML
      SGMLError enum valueQsciLexerHTML
      SGMLParameter enum valueQsciLexerHTML
      SGMLParameterComment enum valueQsciLexerHTML
      SGMLSingleQuotedString enum valueQsciLexerHTML
      SGMLSpecial enum valueQsciLexerHTML
      styleBitsNeeded() constQsciLexervirtual
      Tag enum valueQsciLexerHTML
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnknownAttribute enum valueQsciLexerHTML
      UnknownTag enum valueQsciLexerHTML
      VBScriptComment enum valueQsciLexerHTML
      VBScriptDefault enum valueQsciLexerHTML
      VBScriptIdentifier enum valueQsciLexerHTML
      VBScriptKeyword enum valueQsciLexerHTML
      VBScriptNumber enum valueQsciLexerHTML
      VBScriptStart enum valueQsciLexerHTML
      VBScriptString enum valueQsciLexerHTML
      VBScriptUnclosedString enum valueQsciLexerHTML
      wordCharacters() constQsciLexerHTMLvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerHTMLprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      XMLEnd enum valueQsciLexerHTML
      XMLStart enum valueQsciLexerHTML
      XMLTagEnd enum valueQsciLexerHTML
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerHTML()QsciLexerHTMLvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerHTML.html b/third_party/qscintilla/doc/html/classQsciLexerHTML.html new file mode 100644 index 0000000..4c2484e --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerHTML.html @@ -0,0 +1,1269 @@ + + + + + + + +QScintilla: QsciLexerHTML Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerhtml.h>

      + +

      Inherits QsciLexer.

      + +

      Inherited by QsciLexerXML.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Tag = 1, +UnknownTag = 2, +
      +  Attribute = 3, +UnknownAttribute = 4, +HTMLNumber = 5, +
      +  HTMLDoubleQuotedString = 6, +HTMLSingleQuotedString = 7, +OtherInTag = 8, +
      +  HTMLComment = 9, +Entity = 10, +XMLTagEnd = 11, +
      +  XMLStart = 12, +XMLEnd = 13, +Script = 14, +
      +  ASPAtStart = 15, +ASPStart = 16, +CDATA = 17, +
      +  PHPStart = 18, +HTMLValue = 19, +ASPXCComment = 20, +
      +  SGMLDefault = 21, +SGMLCommand = 22, +SGMLParameter = 23, +
      +  SGMLDoubleQuotedString = 24, +SGMLSingleQuotedString = 25, +SGMLError = 26, +
      +  SGMLSpecial = 27, +SGMLEntity = 28, +SGMLComment = 29, +
      +  SGMLParameterComment = 30, +SGMLBlockDefault = 31, +JavaScriptStart = 40, +
      +  JavaScriptDefault = 41, +JavaScriptComment = 42, +JavaScriptCommentLine = 43, +
      +  JavaScriptCommentDoc = 44, +JavaScriptNumber = 45, +JavaScriptWord = 46, +
      +  JavaScriptKeyword = 47, +JavaScriptDoubleQuotedString = 48, +JavaScriptSingleQuotedString = 49, +
      +  JavaScriptSymbol = 50, +JavaScriptUnclosedString = 51, +JavaScriptRegex = 52, +
      +  ASPJavaScriptStart = 55, +ASPJavaScriptDefault = 56, +ASPJavaScriptComment = 57, +
      +  ASPJavaScriptCommentLine = 58, +ASPJavaScriptCommentDoc = 59, +ASPJavaScriptNumber = 60, +
      +  ASPJavaScriptWord = 61, +ASPJavaScriptKeyword = 62, +ASPJavaScriptDoubleQuotedString = 63, +
      +  ASPJavaScriptSingleQuotedString = 64, +ASPJavaScriptSymbol = 65, +ASPJavaScriptUnclosedString = 66, +
      +  ASPJavaScriptRegex = 67, +VBScriptStart = 70, +VBScriptDefault = 71, +
      +  VBScriptComment = 72, +VBScriptNumber = 73, +VBScriptKeyword = 74, +
      +  VBScriptString = 75, +VBScriptIdentifier = 76, +VBScriptUnclosedString = 77, +
      +  ASPVBScriptStart = 80, +ASPVBScriptDefault = 81, +ASPVBScriptComment = 82, +
      +  ASPVBScriptNumber = 83, +ASPVBScriptKeyword = 84, +ASPVBScriptString = 85, +
      +  ASPVBScriptIdentifier = 86, +ASPVBScriptUnclosedString = 87, +PythonStart = 90, +
      +  PythonDefault = 91, +PythonComment = 92, +PythonNumber = 93, +
      +  PythonDoubleQuotedString = 94, +PythonSingleQuotedString = 95, +PythonKeyword = 96, +
      +  PythonTripleSingleQuotedString = 97, +PythonTripleDoubleQuotedString = 98, +PythonClassName = 99, +
      +  PythonFunctionMethodName = 100, +PythonOperator = 101, +PythonIdentifier = 102, +
      +  ASPPythonStart = 105, +ASPPythonDefault = 106, +ASPPythonComment = 107, +
      +  ASPPythonNumber = 108, +ASPPythonDoubleQuotedString = 109, +ASPPythonSingleQuotedString = 110, +
      +  ASPPythonKeyword = 111, +ASPPythonTripleSingleQuotedString = 112, +ASPPythonTripleDoubleQuotedString = 113, +
      +  ASPPythonClassName = 114, +ASPPythonFunctionMethodName = 115, +ASPPythonOperator = 116, +
      +  ASPPythonIdentifier = 117, +PHPDefault = 118, +PHPDoubleQuotedString = 119, +
      +  PHPSingleQuotedString = 120, +PHPKeyword = 121, +PHPNumber = 122, +
      +  PHPVariable = 123, +PHPComment = 124, +PHPCommentLine = 125, +
      +  PHPDoubleQuotedVariable = 126, +PHPOperator = 127 +
      + }
       
      + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      virtual void setCaseSensitiveTags (bool sens)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerHTML (QObject *parent=0)
       
      +virtual ~QsciLexerHTML ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +const char * autoCompletionFillups () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool caseSensitiveTags () const
       
      void setDjangoTemplates (bool enabled)
       
      bool djangoTemplates () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      void setFoldScriptComments (bool fold)
       
      bool foldScriptComments () const
       
      void setFoldScriptHeredocs (bool fold)
       
      bool foldScriptHeredocs () const
       
      void setMakoTemplates (bool enabled)
       
      bool makoTemplates () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerHTML class encapsulates the Scintilla HTML lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the HTML lexer.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Tag 

      A tag.

      +
      UnknownTag 

      An unknown tag.

      +
      Attribute 

      An attribute.

      +
      UnknownAttribute 

      An unknown attribute.

      +
      HTMLNumber 

      An HTML number.

      +
      HTMLDoubleQuotedString 

      An HTML double-quoted string.

      +
      HTMLSingleQuotedString 

      An HTML single-quoted string.

      +
      OtherInTag 

      Other text within a tag.

      +
      HTMLComment 

      An HTML comment.

      +
      Entity 

      An entity.

      +
      XMLTagEnd 

      The end of an XML style tag.

      +
      XMLStart 

      The start of an XML fragment.

      +
      XMLEnd 

      The end of an XML fragment.

      +
      Script 

      A script tag.

      +
      ASPAtStart 

      The start of an ASP fragment with .

      +
      ASPStart 

      The start of an ASP fragment.

      +
      CDATA 

      CDATA.

      +
      PHPStart 

      The start of a PHP fragment.

      +
      HTMLValue 

      An unquoted HTML value.

      +
      ASPXCComment 

      An ASP X-Code comment.

      +
      SGMLDefault 

      The default for SGML.

      +
      SGMLCommand 

      An SGML command.

      +
      SGMLParameter 

      The first parameter of an SGML command.

      +
      SGMLDoubleQuotedString 

      An SGML double-quoted string.

      +
      SGMLSingleQuotedString 

      An SGML single-quoted string.

      +
      SGMLError 

      An SGML error.

      +
      SGMLSpecial 

      An SGML special entity.

      +
      SGMLEntity 

      An SGML entity.

      +
      SGMLComment 

      An SGML comment.

      +
      SGMLParameterComment 

      A comment with the first parameter of an SGML command.

      +
      SGMLBlockDefault 

      The default for an SGML block.

      +
      JavaScriptStart 

      The start of a JavaScript fragment.

      +
      JavaScriptDefault 

      The default for JavaScript.

      +
      JavaScriptComment 

      A JavaScript comment.

      +
      JavaScriptCommentLine 

      A JavaScript line comment.

      +
      JavaScriptCommentDoc 

      A JavaDoc style JavaScript comment.

      +
      JavaScriptNumber 

      A JavaScript number.

      +
      JavaScriptWord 

      A JavaScript word.

      +
      JavaScriptKeyword 

      A JavaScript keyword.

      +
      JavaScriptDoubleQuotedString 

      A JavaScript double-quoted string.

      +
      JavaScriptSingleQuotedString 

      A JavaScript single-quoted string.

      +
      JavaScriptSymbol 

      A JavaScript symbol.

      +
      JavaScriptUnclosedString 

      The end of a JavaScript line where a string is not closed.

      +
      JavaScriptRegex 

      A JavaScript regular expression.

      +
      ASPJavaScriptStart 

      The start of an ASP JavaScript fragment.

      +
      ASPJavaScriptDefault 

      The default for ASP JavaScript.

      +
      ASPJavaScriptComment 

      An ASP JavaScript comment.

      +
      ASPJavaScriptCommentLine 

      An ASP JavaScript line comment.

      +
      ASPJavaScriptCommentDoc 

      An ASP JavaDoc style JavaScript comment.

      +
      ASPJavaScriptNumber 

      An ASP JavaScript number.

      +
      ASPJavaScriptWord 

      An ASP JavaScript word.

      +
      ASPJavaScriptKeyword 

      An ASP JavaScript keyword.

      +
      ASPJavaScriptDoubleQuotedString 

      An ASP JavaScript double-quoted string.

      +
      ASPJavaScriptSingleQuotedString 

      An ASP JavaScript single-quoted string.

      +
      ASPJavaScriptSymbol 

      An ASP JavaScript symbol.

      +
      ASPJavaScriptUnclosedString 

      The end of an ASP JavaScript line where a string is not closed.

      +
      ASPJavaScriptRegex 

      An ASP JavaScript regular expression.

      +
      VBScriptStart 

      The start of a VBScript fragment.

      +
      VBScriptDefault 

      The default for VBScript.

      +
      VBScriptComment 

      A VBScript comment.

      +
      VBScriptNumber 

      A VBScript number.

      +
      VBScriptKeyword 

      A VBScript keyword.

      +
      VBScriptString 

      A VBScript string.

      +
      VBScriptIdentifier 

      A VBScript identifier.

      +
      VBScriptUnclosedString 

      The end of a VBScript line where a string is not closed.

      +
      ASPVBScriptStart 

      The start of an ASP VBScript fragment.

      +
      ASPVBScriptDefault 

      The default for ASP VBScript.

      +
      ASPVBScriptComment 

      An ASP VBScript comment.

      +
      ASPVBScriptNumber 

      An ASP VBScript number.

      +
      ASPVBScriptKeyword 

      An ASP VBScript keyword.

      +
      ASPVBScriptString 

      An ASP VBScript string.

      +
      ASPVBScriptIdentifier 

      An ASP VBScript identifier.

      +
      ASPVBScriptUnclosedString 

      The end of an ASP VBScript line where a string is not closed.

      +
      PythonStart 

      The start of a Python fragment.

      +
      PythonDefault 

      The default for Python.

      +
      PythonComment 

      A Python comment.

      +
      PythonNumber 

      A Python number.

      +
      PythonDoubleQuotedString 

      A Python double-quoted string.

      +
      PythonSingleQuotedString 

      A Python single-quoted string.

      +
      PythonKeyword 

      A Python keyword.

      +
      PythonTripleSingleQuotedString 

      A Python triple single-quoted string.

      +
      PythonTripleDoubleQuotedString 

      A Python triple double-quoted string.

      +
      PythonClassName 

      The name of a Python class.

      +
      PythonFunctionMethodName 

      The name of a Python function or method.

      +
      PythonOperator 

      A Python operator.

      +
      PythonIdentifier 

      A Python identifier.

      +
      ASPPythonStart 

      The start of an ASP Python fragment.

      +
      ASPPythonDefault 

      The default for ASP Python.

      +
      ASPPythonComment 

      An ASP Python comment.

      +
      ASPPythonNumber 

      An ASP Python number.

      +
      ASPPythonDoubleQuotedString 

      An ASP Python double-quoted string.

      +
      ASPPythonSingleQuotedString 

      An ASP Python single-quoted string.

      +
      ASPPythonKeyword 

      An ASP Python keyword.

      +
      ASPPythonTripleSingleQuotedString 

      An ASP Python triple single-quoted string.

      +
      ASPPythonTripleDoubleQuotedString 

      An ASP Python triple double-quoted string.

      +
      ASPPythonClassName 

      The name of an ASP Python class.

      +
      ASPPythonFunctionMethodName 

      The name of an ASP Python function or method.

      +
      ASPPythonOperator 

      An ASP Python operator.

      +
      ASPPythonIdentifier 

      An ASP Python identifier.

      +
      PHPDefault 

      The default for PHP.

      +
      PHPDoubleQuotedString 

      A PHP double-quoted string.

      +
      PHPSingleQuotedString 

      A PHP single-quoted string.

      +
      PHPKeyword 

      A PHP keyword.

      +
      PHPNumber 

      A PHP number.

      +
      PHPVariable 

      A PHP variable.

      +
      PHPComment 

      A PHP comment.

      +
      PHPCommentLine 

      A PHP line comment.

      +
      PHPDoubleQuotedVariable 

      A PHP double-quoted variable.

      +
      PHPOperator 

      A PHP operator.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerHTML()

      + +
      +
      + + + + + + + + +
      QsciLexerHTML::QsciLexerHTML (QObject * parent = 0)
      +
      +

      Construct a QsciLexerHTML with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerHTML::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerXML.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerHTML::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerXML.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerHTML::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerXML.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerHTML::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerXML.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerHTML::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerHTML::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerXML.

      + +
      +
      + +

      ◆ caseSensitiveTags()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerHTML::caseSensitiveTags () const
      +
      +inline
      +
      +

      Returns true if tags are case sensitive.

      +
      See also
      setCaseSensitiveTags()
      + +
      +
      + +

      ◆ setDjangoTemplates()

      + +
      +
      + + + + + + + + +
      void QsciLexerHTML::setDjangoTemplates (bool enabled)
      +
      +

      If enabled is true then Django templates are enabled. The default is false.

      +
      See also
      djangoTemplates()
      + +
      +
      + +

      ◆ djangoTemplates()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerHTML::djangoTemplates () const
      +
      +inline
      +
      +

      Returns true if support for Django templates is enabled.

      +
      See also
      setDjangoTemplates()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerHTML::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ foldPreprocessor()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerHTML::foldPreprocessor () const
      +
      +inline
      +
      +

      Returns true if preprocessor blocks can be folded.

      +
      See also
      setFoldPreprocessor()
      + +
      +
      + +

      ◆ setFoldScriptComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerHTML::setFoldScriptComments (bool fold)
      +
      +

      If fold is true then script comments can be folded. The default is false.

      +
      See also
      foldScriptComments()
      + +
      +
      + +

      ◆ foldScriptComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerHTML::foldScriptComments () const
      +
      +inline
      +
      +

      Returns true if script comments can be folded.

      +
      See also
      setFoldScriptComments()
      + +
      +
      + +

      ◆ setFoldScriptHeredocs()

      + +
      +
      + + + + + + + + +
      void QsciLexerHTML::setFoldScriptHeredocs (bool fold)
      +
      +

      If fold is true then script heredocs can be folded. The default is false.

      +
      See also
      foldScriptHeredocs()
      + +
      +
      + +

      ◆ foldScriptHeredocs()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerHTML::foldScriptHeredocs () const
      +
      +inline
      +
      +

      Returns true if script heredocs can be folded.

      +
      See also
      setFoldScriptHeredocs()
      + +
      +
      + +

      ◆ setMakoTemplates()

      + +
      +
      + + + + + + + + +
      void QsciLexerHTML::setMakoTemplates (bool enabled)
      +
      +

      If enabled is true then Mako templates are enabled. The default is false.

      +
      See also
      makoTemplates()
      + +
      +
      + +

      ◆ makoTemplates()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerHTML::makoTemplates () const
      +
      +inline
      +
      +

      Returns true if support for Mako templates is enabled.

      +
      See also
      setMakoTemplates()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerHTML::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ setFoldPreprocessor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerHTML::setFoldPreprocessor (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then preprocessor blocks can be folded. The default is false.

      +
      See also
      foldPreprocessor()
      + +
      +
      + +

      ◆ setCaseSensitiveTags

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerHTML::setCaseSensitiveTags (bool sens)
      +
      +virtualslot
      +
      +

      If sens is true then tags are case sensitive. The default is false.

      +
      See also
      caseSensitiveTags()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerHTML::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerXML.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerHTML::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerXML.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerHex-members.html b/third_party/qscintilla/doc/html/classQsciLexerHex-members.html new file mode 100644 index 0000000..b8d504f --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerHex-members.html @@ -0,0 +1,129 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerHex Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerHex, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      ByteCount enum valueQsciLexerHex
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      Checksum enum valueQsciLexerHex
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      DataAddress enum valueQsciLexerHex
      Default enum valueQsciLexerHex
      defaultColor(int style) constQsciLexerHexvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerHexvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerHexvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerHexvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EvenData enum valueQsciLexerHex
      ExtendedAddress enum valueQsciLexerHex
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      IncorrectByteCount enum valueQsciLexerHex
      IncorrectChecksum enum valueQsciLexerHex
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() const =0QsciLexerpure virtual
      lexer() constQsciLexervirtual
      lexerId() constQsciLexervirtual
      NoAddress enum valueQsciLexerHex
      OddData enum valueQsciLexerHex
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerHex(QObject *parent=0)QsciLexerHex
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      RecordCount enum valueQsciLexerHex
      RecordStart enum valueQsciLexerHex
      RecordType enum valueQsciLexerHex
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      StartAddress enum valueQsciLexerHex
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TrailingGarbage enum valueQsciLexerHex
      UnknownData enum valueQsciLexerHex
      UnknownRecordType enum valueQsciLexerHex
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerHex()QsciLexerHexvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerHex.html b/third_party/qscintilla/doc/html/classQsciLexerHex.html new file mode 100644 index 0000000..a923f60 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerHex.html @@ -0,0 +1,363 @@ + + + + + + + +QScintilla: QsciLexerHex Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerHex Class Reference
      +
      +
      + +

      #include <qscilexerhex.h>

      + +

      Inherits QsciLexer.

      + +

      Inherited by QsciLexerIntelHex, QsciLexerSRec, and QsciLexerTekHex.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +RecordStart = 1, +RecordType = 2, +
      +  UnknownRecordType = 3, +ByteCount = 4, +IncorrectByteCount = 5, +
      +  NoAddress = 6, +DataAddress = 7, +RecordCount = 8, +
      +  StartAddress = 9, +ExtendedAddress = 11, +OddData = 12, +
      +  EvenData = 13, +UnknownData = 14, +Checksum = 16, +
      +  IncorrectChecksum = 17, +TrailingGarbage = 18 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerHex (QObject *parent=0)
       
      +virtual ~QsciLexerHex ()
       
      +QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual const char * language () const =0
       
      virtual const char * lexer () const
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The abstract QsciLexerHex class encapsulates the Scintilla Hex lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Hex lexer.

      + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      RecordStart 

      A record start.

      +
      RecordType 

      A record type.

      +
      UnknownRecordType 

      An unknown record type.

      +
      ByteCount 

      A correct byte count field.

      +
      IncorrectByteCount 

      An incorrect byte count field.

      +
      NoAddress 

      No address (S-Record and Intel Hex only).

      +
      DataAddress 

      A data address.

      +
      RecordCount 

      A record count (S-Record only).

      +
      StartAddress 

      A start address.

      +
      ExtendedAddress 

      An extended address (Intel Hex only).

      +
      OddData 

      Odd data.

      +
      EvenData 

      Even data.

      +
      UnknownData 

      Unknown data (S-Record and Intel Hex only).

      +
      Checksum 

      A correct checksum.

      +
      IncorrectChecksum 

      An incorrect checksum.

      +
      TrailingGarbage 

      Garbage data after the record.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerHex()

      + +
      +
      + + + + + + + + +
      QsciLexerHex::QsciLexerHex (QObject * parent = 0)
      +
      +

      Construct a QsciLexerHex with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerHex::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerHex::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +

      Reimplemented in QsciLexerTekHex, QsciLexerSRec, and QsciLexerIntelHex.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerIDL-members.html b/third_party/qscintilla/doc/html/classQsciLexerIDL-members.html new file mode 100644 index 0000000..f01aecb --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerIDL-members.html @@ -0,0 +1,192 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerIDL Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerIDL, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerCPPvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerCPPvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerCPPvirtual
      blockStartKeyword(int *style=0) constQsciLexerCPPvirtual
      braceStyle() constQsciLexerCPPvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCPP
      CommentDoc enum valueQsciLexerCPP
      CommentDocKeyword enum valueQsciLexerCPP
      CommentDocKeywordError enum valueQsciLexerCPP
      CommentLine enum valueQsciLexerCPP
      CommentLineDoc enum valueQsciLexerCPP
      Default enum valueQsciLexerCPP
      defaultColor(int style) constQsciLexerIDLvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerCPPvirtual
      defaultFont(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerIDLvirtual
      dollarsAllowed() constQsciLexerCPPinline
      DoubleQuotedString enum valueQsciLexerCPP
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EscapeSequence enum valueQsciLexerCPP
      foldAtElse() constQsciLexerCPPinline
      foldComments() constQsciLexerCPPinline
      foldCompact() constQsciLexerCPPinline
      foldPreprocessor() constQsciLexerCPPinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      GlobalClass enum valueQsciLexerCPP
      HashQuotedString enum valueQsciLexerCPP
      highlightBackQuotedStrings() constQsciLexerCPPinline
      highlightEscapeSequences() constQsciLexerCPPinline
      highlightHashQuotedStrings() constQsciLexerCPPinline
      highlightTripleQuotedStrings() constQsciLexerCPPinline
      Identifier enum valueQsciLexerCPP
      InactiveComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeywordError enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLine enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDefault enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDoubleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveEscapeSequence enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveGlobalClass enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveHashQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveIdentifier enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeywordSet2 enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveNumber enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveOperator enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessor enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRawString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRegex enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveSingleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTaskMarker enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTripleQuotedVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUnclosedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUserLiteral enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUUID enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerCPP
      keywords(int set) constQsciLexerIDLvirtual
      KeywordSet2 enum valueQsciLexerCPP
      language() constQsciLexerIDLvirtual
      lexer() constQsciLexerCPPvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerCPP
      Operator enum valueQsciLexerCPP
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerCPP
      PreProcessorComment enum valueQsciLexerCPP
      PreProcessorCommentLineDoc enum valueQsciLexerCPP
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCPP(QObject *parent=0, bool caseInsensitiveKeywords=false)QsciLexerCPP
      QsciLexerIDL(QObject *parent=0)QsciLexerIDL
      RawString enum valueQsciLexerCPP
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCPPprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCPPvirtual
      Regex enum valueQsciLexerCPP
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDollarsAllowed(bool allowed)QsciLexerCPP
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerCPPvirtualslot
      setFoldComments(bool fold)QsciLexerCPPvirtualslot
      setFoldCompact(bool fold)QsciLexerCPPvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerCPPvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHighlightBackQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightEscapeSequences(bool enabled)QsciLexerCPP
      setHighlightHashQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightTripleQuotedStrings(bool enabled)QsciLexerCPP
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStylePreprocessor(bool style)QsciLexerCPPvirtualslot
      setVerbatimStringEscapeSequencesAllowed(bool allowed)QsciLexerCPP
      SingleQuotedString enum valueQsciLexerCPP
      styleBitsNeeded() constQsciLexervirtual
      stylePreprocessor() constQsciLexerCPPinline
      TaskMarker enum valueQsciLexerCPP
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TripleQuotedVerbatimString enum valueQsciLexerCPP
      UnclosedString enum valueQsciLexerCPP
      UserLiteral enum valueQsciLexerCPP
      UUID enum valueQsciLexerCPP
      VerbatimString enum valueQsciLexerCPP
      verbatimStringEscapeSequencesAllowed() constQsciLexerCPPinline
      wordCharacters() constQsciLexerCPPvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCPPprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCPP()QsciLexerCPPvirtual
      ~QsciLexerIDL()QsciLexerIDLvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerIDL.html b/third_party/qscintilla/doc/html/classQsciLexerIDL.html new file mode 100644 index 0000000..8f6eaad --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerIDL.html @@ -0,0 +1,410 @@ + + + + + + + +QScintilla: QsciLexerIDL Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerIDL Class Reference
      +
      +
      + +

      #include <qscilexeridl.h>

      + +

      Inherits QsciLexerCPP.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerIDL (QObject *parent=0)
       
      +virtual ~QsciLexerIDL ()
       
      +const char * language () const
       
      +QColor defaultColor (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexerCPP
       QsciLexerCPP (QObject *parent=0, bool caseInsensitiveKeywords=false)
       
      +virtual ~QsciLexerCPP ()
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      void refreshProperties ()
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      bool stylePreprocessor () const
       
      void setDollarsAllowed (bool allowed)
       
      bool dollarsAllowed () const
       
      void setHighlightTripleQuotedStrings (bool enabled)
       
      bool highlightTripleQuotedStrings () const
       
      void setHighlightHashQuotedStrings (bool enabled)
       
      bool highlightHashQuotedStrings () const
       
      void setHighlightBackQuotedStrings (bool enabled)
       
      bool highlightBackQuotedStrings () const
       
      void setHighlightEscapeSequences (bool enabled)
       
      bool highlightEscapeSequences () const
       
      void setVerbatimStringEscapeSequencesAllowed (bool allowed)
       
      bool verbatimStringEscapeSequencesAllowed () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerCPP
      enum  {
      +  Default = 0, +InactiveDefault = Default + 64, +Comment = 1, +
      +  InactiveComment = Comment + 64, +CommentLine = 2, +InactiveCommentLine = CommentLine + 64, +
      +  CommentDoc = 3, +InactiveCommentDoc = CommentDoc + 64, +Number = 4, +
      +  InactiveNumber = Number + 64, +Keyword = 5, +InactiveKeyword = Keyword + 64, +
      +  DoubleQuotedString = 6, +InactiveDoubleQuotedString = DoubleQuotedString + 64, +SingleQuotedString = 7, +
      +  InactiveSingleQuotedString = SingleQuotedString + 64, +UUID = 8, +InactiveUUID = UUID + 64, +
      +  PreProcessor = 9, +InactivePreProcessor = PreProcessor + 64, +Operator = 10, +
      +  InactiveOperator = Operator + 64, +Identifier = 11, +InactiveIdentifier = Identifier + 64, +
      +  UnclosedString = 12, +InactiveUnclosedString = UnclosedString + 64, +VerbatimString = 13, +
      +  InactiveVerbatimString = VerbatimString + 64, +Regex = 14, +InactiveRegex = Regex + 64, +
      +  CommentLineDoc = 15, +InactiveCommentLineDoc = CommentLineDoc + 64, +KeywordSet2 = 16, +
      +  InactiveKeywordSet2 = KeywordSet2 + 64, +CommentDocKeyword = 17, +InactiveCommentDocKeyword = CommentDocKeyword + 64, +
      +  CommentDocKeywordError = 18, +InactiveCommentDocKeywordError = CommentDocKeywordError + 64, +GlobalClass = 19, +
      +  InactiveGlobalClass = GlobalClass + 64, +RawString = 20, +InactiveRawString = RawString + 64, +
      +  TripleQuotedVerbatimString = 21, +InactiveTripleQuotedVerbatimString = TripleQuotedVerbatimString + 64, +HashQuotedString = 22, +
      +  InactiveHashQuotedString = HashQuotedString + 64, +PreProcessorComment = 23, +InactivePreProcessorComment = PreProcessorComment + 64, +
      +  PreProcessorCommentLineDoc = 24, +InactivePreProcessorCommentLineDoc = PreProcessorCommentLineDoc + 64, +UserLiteral = 25, +
      +  InactiveUserLiteral = UserLiteral + 64, +TaskMarker = 26, +InactiveTaskMarker = TaskMarker + 64, +
      +  EscapeSequence = 27, +InactiveEscapeSequence = EscapeSequence + 64 +
      + }
       
      - Public Slots inherited from QsciLexerCPP
      virtual void setFoldAtElse (bool fold)
       
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      virtual void setStylePreprocessor (bool style)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexerCPP
      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerIDL class encapsulates the Scintilla IDL lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerIDL()

      + +
      +
      + + + + + + + + +
      QsciLexerIDL::QsciLexerIDL (QObject * parent = 0)
      +
      +

      Construct a QsciLexerIDL with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerIDL::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerIDL::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerIntelHex-members.html b/third_party/qscintilla/doc/html/classQsciLexerIntelHex-members.html new file mode 100644 index 0000000..55aeb0e --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerIntelHex-members.html @@ -0,0 +1,131 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerIntelHex Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerIntelHex, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      ByteCount enum valueQsciLexerHex
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      Checksum enum valueQsciLexerHex
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      DataAddress enum valueQsciLexerHex
      Default enum valueQsciLexerHex
      defaultColor(int style) constQsciLexerHexvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerHexvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerHexvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerIntelHexvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EvenData enum valueQsciLexerHex
      ExtendedAddress enum valueQsciLexerHex
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      IncorrectByteCount enum valueQsciLexerHex
      IncorrectChecksum enum valueQsciLexerHex
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerIntelHexvirtual
      lexer() constQsciLexerIntelHexvirtual
      lexerId() constQsciLexervirtual
      NoAddress enum valueQsciLexerHex
      OddData enum valueQsciLexerHex
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerHex(QObject *parent=0)QsciLexerHex
      QsciLexerIntelHex(QObject *parent=0)QsciLexerIntelHex
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      RecordCount enum valueQsciLexerHex
      RecordStart enum valueQsciLexerHex
      RecordType enum valueQsciLexerHex
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      StartAddress enum valueQsciLexerHex
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TrailingGarbage enum valueQsciLexerHex
      UnknownData enum valueQsciLexerHex
      UnknownRecordType enum valueQsciLexerHex
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerHex()QsciLexerHexvirtual
      ~QsciLexerIntelHex()QsciLexerIntelHexvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerIntelHex.html b/third_party/qscintilla/doc/html/classQsciLexerIntelHex.html new file mode 100644 index 0000000..4dfa3f7 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerIntelHex.html @@ -0,0 +1,282 @@ + + + + + + + +QScintilla: QsciLexerIntelHex Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerIntelHex Class Reference
      +
      +
      + +

      #include <qscilexerintelhex.h>

      + +

      Inherits QsciLexerHex.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerIntelHex (QObject *parent=0)
       
      +virtual ~QsciLexerIntelHex ()
       
      +const char * language () const
       
      +const char * lexer () const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexerHex
       QsciLexerHex (QObject *parent=0)
       
      +virtual ~QsciLexerHex ()
       
      +QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerHex
      enum  {
      +  Default = 0, +RecordStart = 1, +RecordType = 2, +
      +  UnknownRecordType = 3, +ByteCount = 4, +IncorrectByteCount = 5, +
      +  NoAddress = 6, +DataAddress = 7, +RecordCount = 8, +
      +  StartAddress = 9, +ExtendedAddress = 11, +OddData = 12, +
      +  EvenData = 13, +UnknownData = 14, +Checksum = 16, +
      +  IncorrectChecksum = 17, +TrailingGarbage = 18 +
      + }
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerIntelHex class encapsulates the Scintilla Intel Hex lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerIntelHex()

      + +
      +
      + + + + + + + + +
      QsciLexerIntelHex::QsciLexerIntelHex (QObject * parent = 0)
      +
      +

      Construct a QsciLexerIntelHex with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerIntelHex::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Reimplemented from QsciLexerHex.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerJSON-members.html b/third_party/qscintilla/doc/html/classQsciLexerJSON-members.html new file mode 100644 index 0000000..336b543 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerJSON-members.html @@ -0,0 +1,132 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerJSON Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerJSON, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      CommentBlock enum valueQsciLexerJSON
      CommentLine enum valueQsciLexerJSON
      Default enum valueQsciLexerJSON
      defaultColor(int style) constQsciLexerJSONvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerJSONvirtual
      defaultFont(int style) constQsciLexerJSONvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerJSONvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerJSONvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      Error enum valueQsciLexerJSON
      EscapeSequence enum valueQsciLexerJSON
      foldCompact() constQsciLexerJSONinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      highlightComments() constQsciLexerJSONinline
      highlightEscapeSequences() constQsciLexerJSONinline
      indentationGuideView() constQsciLexervirtual
      IRI enum valueQsciLexerJSON
      IRICompact enum valueQsciLexerJSON
      Keyword enum valueQsciLexerJSON
      KeywordLD enum valueQsciLexerJSON
      keywords(int set) constQsciLexerJSONvirtual
      language() constQsciLexerJSONvirtual
      lexer() constQsciLexerJSONvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerJSON
      Operator enum valueQsciLexerJSON
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      Property enum valueQsciLexerJSON
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerJSON(QObject *parent=0)QsciLexerJSON
      readProperties(QSettings &qs, const QString &prefix)QsciLexerJSONprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerJSONvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldCompact(bool fold)QsciLexerJSON
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHighlightComments(bool highlight)QsciLexerJSON
      setHighlightEscapeSequences(bool highlight)QsciLexerJSON
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      String enum valueQsciLexerJSON
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerJSON
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerJSONprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerJSON()QsciLexerJSONvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerJSON.html b/third_party/qscintilla/doc/html/classQsciLexerJSON.html new file mode 100644 index 0000000..7cf2e35 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerJSON.html @@ -0,0 +1,700 @@ + + + + + + + +QScintilla: QsciLexerJSON Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerjson.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Number = 1, +String = 2, +
      +  UnclosedString = 3, +Property = 4, +EscapeSequence = 5, +
      +  CommentLine = 6, +CommentBlock = 7, +Operator = 8, +
      +  IRI = 9, +IRICompact = 10, +Keyword = 11, +
      +  KeywordLD = 12, +Error = 13 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerJSON (QObject *parent=0)
       
      +virtual ~QsciLexerJSON ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      void setHighlightComments (bool highlight)
       
      bool highlightComments () const
       
      void setHighlightEscapeSequences (bool highlight)
       
      bool highlightEscapeSequences () const
       
      void setFoldCompact (bool fold)
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerJSON class encapsulates the Scintilla JSON lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the JSON lexer.

      + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Number 

      A number.

      +
      String 

      A string.

      +
      UnclosedString 

      An unclosed string.

      +
      Property 

      A property.

      +
      EscapeSequence 

      An escape sequence.

      +
      CommentLine 

      A line comment.

      +
      CommentBlock 

      A block comment.

      +
      Operator 

      An operator.

      +
      IRI 

      An Internationalised Resource Identifier (IRI).

      +
      IRICompact 

      A JSON-LD compact IRI.

      +
      Keyword 

      A JSON keyword.

      +
      KeywordLD 

      A JSON-LD keyword.

      +
      Error 

      A parsing error.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerJSON()

      + +
      +
      + + + + + + + + +
      QsciLexerJSON::QsciLexerJSON (QObject * parent = 0)
      +
      +

      Construct a QsciLexerJSON with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerJSON::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerJSON::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerJSON::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerJSON::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerJSON::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerJSON::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ setHighlightComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerJSON::setHighlightComments (bool highlight)
      +
      +

      If highlight is true then line and block comments will be highlighted. The default is true.

      +
      See also
      hightlightComments()
      + +
      +
      + +

      ◆ highlightComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerJSON::highlightComments () const
      +
      +inline
      +
      +

      Returns true if line and block comments are highlighted

      +
      See also
      setHightlightComments()
      + +
      +
      + +

      ◆ setHighlightEscapeSequences()

      + +
      +
      + + + + + + + + +
      void QsciLexerJSON::setHighlightEscapeSequences (bool highlight)
      +
      +

      If highlight is true then escape sequences in strings are highlighted. The default is true.

      +
      See also
      highlightEscapeSequences()
      + +
      +
      + +

      ◆ highlightEscapeSequences()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerJSON::highlightEscapeSequences () const
      +
      +inline
      +
      +

      Returns true if escape sequences in strings are highlighted.

      +
      See also
      setHighlightEscapeSequences()
      + +
      +
      + +

      ◆ setFoldCompact()

      + +
      +
      + + + + + + + + +
      void QsciLexerJSON::setFoldCompact (bool fold)
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerJSON::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerJSON::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerJSON::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerJava-members.html b/third_party/qscintilla/doc/html/classQsciLexerJava-members.html new file mode 100644 index 0000000..dc6fa4c --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerJava-members.html @@ -0,0 +1,192 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerJava Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerJava, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerCPPvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerCPPvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerCPPvirtual
      blockStartKeyword(int *style=0) constQsciLexerCPPvirtual
      braceStyle() constQsciLexerCPPvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCPP
      CommentDoc enum valueQsciLexerCPP
      CommentDocKeyword enum valueQsciLexerCPP
      CommentDocKeywordError enum valueQsciLexerCPP
      CommentLine enum valueQsciLexerCPP
      CommentLineDoc enum valueQsciLexerCPP
      Default enum valueQsciLexerCPP
      defaultColor(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerCPPvirtual
      defaultFont(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerCPPvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerCPPvirtual
      dollarsAllowed() constQsciLexerCPPinline
      DoubleQuotedString enum valueQsciLexerCPP
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EscapeSequence enum valueQsciLexerCPP
      foldAtElse() constQsciLexerCPPinline
      foldComments() constQsciLexerCPPinline
      foldCompact() constQsciLexerCPPinline
      foldPreprocessor() constQsciLexerCPPinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      GlobalClass enum valueQsciLexerCPP
      HashQuotedString enum valueQsciLexerCPP
      highlightBackQuotedStrings() constQsciLexerCPPinline
      highlightEscapeSequences() constQsciLexerCPPinline
      highlightHashQuotedStrings() constQsciLexerCPPinline
      highlightTripleQuotedStrings() constQsciLexerCPPinline
      Identifier enum valueQsciLexerCPP
      InactiveComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeywordError enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLine enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDefault enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDoubleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveEscapeSequence enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveGlobalClass enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveHashQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveIdentifier enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeywordSet2 enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveNumber enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveOperator enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessor enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRawString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRegex enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveSingleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTaskMarker enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTripleQuotedVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUnclosedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUserLiteral enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUUID enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerCPP
      keywords(int set) constQsciLexerJavavirtual
      KeywordSet2 enum valueQsciLexerCPP
      language() constQsciLexerJavavirtual
      lexer() constQsciLexerCPPvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerCPP
      Operator enum valueQsciLexerCPP
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerCPP
      PreProcessorComment enum valueQsciLexerCPP
      PreProcessorCommentLineDoc enum valueQsciLexerCPP
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCPP(QObject *parent=0, bool caseInsensitiveKeywords=false)QsciLexerCPP
      QsciLexerJava(QObject *parent=0)QsciLexerJava
      RawString enum valueQsciLexerCPP
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCPPprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCPPvirtual
      Regex enum valueQsciLexerCPP
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDollarsAllowed(bool allowed)QsciLexerCPP
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerCPPvirtualslot
      setFoldComments(bool fold)QsciLexerCPPvirtualslot
      setFoldCompact(bool fold)QsciLexerCPPvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerCPPvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHighlightBackQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightEscapeSequences(bool enabled)QsciLexerCPP
      setHighlightHashQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightTripleQuotedStrings(bool enabled)QsciLexerCPP
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStylePreprocessor(bool style)QsciLexerCPPvirtualslot
      setVerbatimStringEscapeSequencesAllowed(bool allowed)QsciLexerCPP
      SingleQuotedString enum valueQsciLexerCPP
      styleBitsNeeded() constQsciLexervirtual
      stylePreprocessor() constQsciLexerCPPinline
      TaskMarker enum valueQsciLexerCPP
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TripleQuotedVerbatimString enum valueQsciLexerCPP
      UnclosedString enum valueQsciLexerCPP
      UserLiteral enum valueQsciLexerCPP
      UUID enum valueQsciLexerCPP
      VerbatimString enum valueQsciLexerCPP
      verbatimStringEscapeSequencesAllowed() constQsciLexerCPPinline
      wordCharacters() constQsciLexerCPPvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCPPprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCPP()QsciLexerCPPvirtual
      ~QsciLexerJava()QsciLexerJavavirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerJava.html b/third_party/qscintilla/doc/html/classQsciLexerJava.html new file mode 100644 index 0000000..c6f960d --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerJava.html @@ -0,0 +1,380 @@ + + + + + + + +QScintilla: QsciLexerJava Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerJava Class Reference
      +
      +
      + +

      #include <qscilexerjava.h>

      + +

      Inherits QsciLexerCPP.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerJava (QObject *parent=0)
       
      +virtual ~QsciLexerJava ()
       
      +const char * language () const
       
      const char * keywords (int set) const
       
      - Public Member Functions inherited from QsciLexerCPP
       QsciLexerCPP (QObject *parent=0, bool caseInsensitiveKeywords=false)
       
      +virtual ~QsciLexerCPP ()
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      bool stylePreprocessor () const
       
      void setDollarsAllowed (bool allowed)
       
      bool dollarsAllowed () const
       
      void setHighlightTripleQuotedStrings (bool enabled)
       
      bool highlightTripleQuotedStrings () const
       
      void setHighlightHashQuotedStrings (bool enabled)
       
      bool highlightHashQuotedStrings () const
       
      void setHighlightBackQuotedStrings (bool enabled)
       
      bool highlightBackQuotedStrings () const
       
      void setHighlightEscapeSequences (bool enabled)
       
      bool highlightEscapeSequences () const
       
      void setVerbatimStringEscapeSequencesAllowed (bool allowed)
       
      bool verbatimStringEscapeSequencesAllowed () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerCPP
      enum  {
      +  Default = 0, +InactiveDefault = Default + 64, +Comment = 1, +
      +  InactiveComment = Comment + 64, +CommentLine = 2, +InactiveCommentLine = CommentLine + 64, +
      +  CommentDoc = 3, +InactiveCommentDoc = CommentDoc + 64, +Number = 4, +
      +  InactiveNumber = Number + 64, +Keyword = 5, +InactiveKeyword = Keyword + 64, +
      +  DoubleQuotedString = 6, +InactiveDoubleQuotedString = DoubleQuotedString + 64, +SingleQuotedString = 7, +
      +  InactiveSingleQuotedString = SingleQuotedString + 64, +UUID = 8, +InactiveUUID = UUID + 64, +
      +  PreProcessor = 9, +InactivePreProcessor = PreProcessor + 64, +Operator = 10, +
      +  InactiveOperator = Operator + 64, +Identifier = 11, +InactiveIdentifier = Identifier + 64, +
      +  UnclosedString = 12, +InactiveUnclosedString = UnclosedString + 64, +VerbatimString = 13, +
      +  InactiveVerbatimString = VerbatimString + 64, +Regex = 14, +InactiveRegex = Regex + 64, +
      +  CommentLineDoc = 15, +InactiveCommentLineDoc = CommentLineDoc + 64, +KeywordSet2 = 16, +
      +  InactiveKeywordSet2 = KeywordSet2 + 64, +CommentDocKeyword = 17, +InactiveCommentDocKeyword = CommentDocKeyword + 64, +
      +  CommentDocKeywordError = 18, +InactiveCommentDocKeywordError = CommentDocKeywordError + 64, +GlobalClass = 19, +
      +  InactiveGlobalClass = GlobalClass + 64, +RawString = 20, +InactiveRawString = RawString + 64, +
      +  TripleQuotedVerbatimString = 21, +InactiveTripleQuotedVerbatimString = TripleQuotedVerbatimString + 64, +HashQuotedString = 22, +
      +  InactiveHashQuotedString = HashQuotedString + 64, +PreProcessorComment = 23, +InactivePreProcessorComment = PreProcessorComment + 64, +
      +  PreProcessorCommentLineDoc = 24, +InactivePreProcessorCommentLineDoc = PreProcessorCommentLineDoc + 64, +UserLiteral = 25, +
      +  InactiveUserLiteral = UserLiteral + 64, +TaskMarker = 26, +InactiveTaskMarker = TaskMarker + 64, +
      +  EscapeSequence = 27, +InactiveEscapeSequence = EscapeSequence + 64 +
      + }
       
      - Public Slots inherited from QsciLexerCPP
      virtual void setFoldAtElse (bool fold)
       
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      virtual void setStylePreprocessor (bool style)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexerCPP
      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerJava class encapsulates the Scintilla Java lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerJava()

      + +
      +
      + + + + + + + + +
      QsciLexerJava::QsciLexerJava (QObject * parent = 0)
      +
      +

      Construct a QsciLexerJava with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerJava::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerJavaScript-members.html b/third_party/qscintilla/doc/html/classQsciLexerJavaScript-members.html new file mode 100644 index 0000000..99bfd06 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerJavaScript-members.html @@ -0,0 +1,192 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerJavaScript Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerJavaScript, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerCPPvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerCPPvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerCPPvirtual
      blockStartKeyword(int *style=0) constQsciLexerCPPvirtual
      braceStyle() constQsciLexerCPPvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerCPP
      CommentDoc enum valueQsciLexerCPP
      CommentDocKeyword enum valueQsciLexerCPP
      CommentDocKeywordError enum valueQsciLexerCPP
      CommentLine enum valueQsciLexerCPP
      CommentLineDoc enum valueQsciLexerCPP
      Default enum valueQsciLexerCPP
      defaultColor(int style) constQsciLexerJavaScriptvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerJavaScriptvirtual
      defaultFont(int style) constQsciLexerJavaScriptvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerJavaScriptvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerJavaScriptvirtual
      dollarsAllowed() constQsciLexerCPPinline
      DoubleQuotedString enum valueQsciLexerCPP
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EscapeSequence enum valueQsciLexerCPP
      foldAtElse() constQsciLexerCPPinline
      foldComments() constQsciLexerCPPinline
      foldCompact() constQsciLexerCPPinline
      foldPreprocessor() constQsciLexerCPPinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      GlobalClass enum valueQsciLexerCPP
      HashQuotedString enum valueQsciLexerCPP
      highlightBackQuotedStrings() constQsciLexerCPPinline
      highlightEscapeSequences() constQsciLexerCPPinline
      highlightHashQuotedStrings() constQsciLexerCPPinline
      highlightTripleQuotedStrings() constQsciLexerCPPinline
      Identifier enum valueQsciLexerCPP
      InactiveComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentDocKeywordError enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLine enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDefault enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveDoubleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveEscapeSequence enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveGlobalClass enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveHashQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveIdentifier enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeyword enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveKeywordSet2 enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveNumber enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveOperator enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessor enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorComment enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactivePreProcessorCommentLineDoc enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRawString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveRegex enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveSingleQuotedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTaskMarker enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveTripleQuotedVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUnclosedString enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUserLiteral enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveUUID enum value (defined in QsciLexerCPP)QsciLexerCPP
      InactiveVerbatimString enum value (defined in QsciLexerCPP)QsciLexerCPP
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerCPP
      keywords(int set) constQsciLexerJavaScriptvirtual
      KeywordSet2 enum valueQsciLexerCPP
      language() constQsciLexerJavaScriptvirtual
      lexer() constQsciLexerCPPvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerCPP
      Operator enum valueQsciLexerCPP
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerCPP
      PreProcessorComment enum valueQsciLexerCPP
      PreProcessorCommentLineDoc enum valueQsciLexerCPP
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerCPP(QObject *parent=0, bool caseInsensitiveKeywords=false)QsciLexerCPP
      QsciLexerJavaScript(QObject *parent=0)QsciLexerJavaScript
      RawString enum valueQsciLexerCPP
      readProperties(QSettings &qs, const QString &prefix)QsciLexerCPPprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerCPPvirtual
      Regex enum valueQsciLexerCPP
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDollarsAllowed(bool allowed)QsciLexerCPP
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerCPPvirtualslot
      setFoldComments(bool fold)QsciLexerCPPvirtualslot
      setFoldCompact(bool fold)QsciLexerCPPvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerCPPvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHighlightBackQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightEscapeSequences(bool enabled)QsciLexerCPP
      setHighlightHashQuotedStrings(bool enabled)QsciLexerCPP
      setHighlightTripleQuotedStrings(bool enabled)QsciLexerCPP
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStylePreprocessor(bool style)QsciLexerCPPvirtualslot
      setVerbatimStringEscapeSequencesAllowed(bool allowed)QsciLexerCPP
      SingleQuotedString enum valueQsciLexerCPP
      styleBitsNeeded() constQsciLexervirtual
      stylePreprocessor() constQsciLexerCPPinline
      TaskMarker enum valueQsciLexerCPP
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TripleQuotedVerbatimString enum valueQsciLexerCPP
      UnclosedString enum valueQsciLexerCPP
      UserLiteral enum valueQsciLexerCPP
      UUID enum valueQsciLexerCPP
      VerbatimString enum valueQsciLexerCPP
      verbatimStringEscapeSequencesAllowed() constQsciLexerCPPinline
      wordCharacters() constQsciLexerCPPvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerCPPprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerCPP()QsciLexerCPPvirtual
      ~QsciLexerJavaScript()QsciLexerJavaScriptvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerJavaScript.html b/third_party/qscintilla/doc/html/classQsciLexerJavaScript.html new file mode 100644 index 0000000..74c37ab --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerJavaScript.html @@ -0,0 +1,469 @@ + + + + + + + +QScintilla: QsciLexerJavaScript Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerJavaScript Class Reference
      +
      +
      + +

      #include <qscilexerjavascript.h>

      + +

      Inherits QsciLexerCPP.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerJavaScript (QObject *parent=0)
       
      +virtual ~QsciLexerJavaScript ()
       
      +const char * language () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexerCPP
       QsciLexerCPP (QObject *parent=0, bool caseInsensitiveKeywords=false)
       
      +virtual ~QsciLexerCPP ()
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      void refreshProperties ()
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      bool stylePreprocessor () const
       
      void setDollarsAllowed (bool allowed)
       
      bool dollarsAllowed () const
       
      void setHighlightTripleQuotedStrings (bool enabled)
       
      bool highlightTripleQuotedStrings () const
       
      void setHighlightHashQuotedStrings (bool enabled)
       
      bool highlightHashQuotedStrings () const
       
      void setHighlightBackQuotedStrings (bool enabled)
       
      bool highlightBackQuotedStrings () const
       
      void setHighlightEscapeSequences (bool enabled)
       
      bool highlightEscapeSequences () const
       
      void setVerbatimStringEscapeSequencesAllowed (bool allowed)
       
      bool verbatimStringEscapeSequencesAllowed () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerCPP
      enum  {
      +  Default = 0, +InactiveDefault = Default + 64, +Comment = 1, +
      +  InactiveComment = Comment + 64, +CommentLine = 2, +InactiveCommentLine = CommentLine + 64, +
      +  CommentDoc = 3, +InactiveCommentDoc = CommentDoc + 64, +Number = 4, +
      +  InactiveNumber = Number + 64, +Keyword = 5, +InactiveKeyword = Keyword + 64, +
      +  DoubleQuotedString = 6, +InactiveDoubleQuotedString = DoubleQuotedString + 64, +SingleQuotedString = 7, +
      +  InactiveSingleQuotedString = SingleQuotedString + 64, +UUID = 8, +InactiveUUID = UUID + 64, +
      +  PreProcessor = 9, +InactivePreProcessor = PreProcessor + 64, +Operator = 10, +
      +  InactiveOperator = Operator + 64, +Identifier = 11, +InactiveIdentifier = Identifier + 64, +
      +  UnclosedString = 12, +InactiveUnclosedString = UnclosedString + 64, +VerbatimString = 13, +
      +  InactiveVerbatimString = VerbatimString + 64, +Regex = 14, +InactiveRegex = Regex + 64, +
      +  CommentLineDoc = 15, +InactiveCommentLineDoc = CommentLineDoc + 64, +KeywordSet2 = 16, +
      +  InactiveKeywordSet2 = KeywordSet2 + 64, +CommentDocKeyword = 17, +InactiveCommentDocKeyword = CommentDocKeyword + 64, +
      +  CommentDocKeywordError = 18, +InactiveCommentDocKeywordError = CommentDocKeywordError + 64, +GlobalClass = 19, +
      +  InactiveGlobalClass = GlobalClass + 64, +RawString = 20, +InactiveRawString = RawString + 64, +
      +  TripleQuotedVerbatimString = 21, +InactiveTripleQuotedVerbatimString = TripleQuotedVerbatimString + 64, +HashQuotedString = 22, +
      +  InactiveHashQuotedString = HashQuotedString + 64, +PreProcessorComment = 23, +InactivePreProcessorComment = PreProcessorComment + 64, +
      +  PreProcessorCommentLineDoc = 24, +InactivePreProcessorCommentLineDoc = PreProcessorCommentLineDoc + 64, +UserLiteral = 25, +
      +  InactiveUserLiteral = UserLiteral + 64, +TaskMarker = 26, +InactiveTaskMarker = TaskMarker + 64, +
      +  EscapeSequence = 27, +InactiveEscapeSequence = EscapeSequence + 64 +
      + }
       
      - Public Slots inherited from QsciLexerCPP
      virtual void setFoldAtElse (bool fold)
       
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      virtual void setStylePreprocessor (bool style)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexerCPP
      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerJavaScript class encapsulates the Scintilla JavaScript lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerJavaScript()

      + +
      +
      + + + + + + + + +
      QsciLexerJavaScript::QsciLexerJavaScript (QObject * parent = 0)
      +
      +

      Construct a QsciLexerJavaScript with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerJavaScript::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerJavaScript::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerJavaScript::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerJavaScript::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Reimplemented from QsciLexerCPP.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerLua-members.html b/third_party/qscintilla/doc/html/classQsciLexerLua-members.html new file mode 100644 index 0000000..0234cb6 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerLua-members.html @@ -0,0 +1,134 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerLua Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerLua, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerLuavirtual
      autoIndentStyle()QsciLexer
      BasicFunctions enum valueQsciLexerLua
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerLuavirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerLuavirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      Character enum valueQsciLexerLua
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerLua
      CoroutinesIOSystemFacilities enum valueQsciLexerLua
      Default enum valueQsciLexerLua
      defaultColor(int style) constQsciLexerLuavirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerLuavirtual
      defaultFont(int style) constQsciLexerLuavirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerLuavirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerLuavirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldCompact() constQsciLexerLua
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerLua
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerLua
      keywords(int set) constQsciLexerLuavirtual
      KeywordSet5 enum valueQsciLexerLua
      KeywordSet6 enum valueQsciLexerLua
      KeywordSet7 enum valueQsciLexerLua
      KeywordSet8 enum valueQsciLexerLua
      Label enum valueQsciLexerLua
      language() constQsciLexerLuavirtual
      lexer() constQsciLexerLuavirtual
      lexerId() constQsciLexervirtual
      LineComment enum valueQsciLexerLua
      LiteralString enum valueQsciLexerLua
      Number enum valueQsciLexerLua
      Operator enum valueQsciLexerLua
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      Preprocessor enum valueQsciLexerLua
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerLua(QObject *parent=0)QsciLexerLua
      readProperties(QSettings &qs, const QString &prefix)QsciLexerLuaprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerLuavirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldCompact(bool fold)QsciLexerLuavirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      String enum valueQsciLexerLua
      StringTableMathsFunctions enum valueQsciLexerLua
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerLua
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerLuaprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerLua()QsciLexerLuavirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerLua.html b/third_party/qscintilla/doc/html/classQsciLexerLua.html new file mode 100644 index 0000000..1db333b --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerLua.html @@ -0,0 +1,679 @@ + + + + + + + +QScintilla: QsciLexerLua Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerlua.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +LineComment = 2, +
      +  Number = 4, +Keyword = 5, +String = 6, +
      +  Character = 7, +LiteralString = 8, +Preprocessor = 9, +
      +  Operator = 10, +Identifier = 11, +UnclosedString = 12, +
      +  BasicFunctions = 13, +StringTableMathsFunctions = 14, +CoroutinesIOSystemFacilities = 15, +
      +  KeywordSet5 = 16, +KeywordSet6 = 17, +KeywordSet7 = 18, +
      +  KeywordSet8 = 19, +Label = 20 +
      + }
       
      + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerLua (QObject *parent=0)
       
      +virtual ~QsciLexerLua ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockStart (int *style=0) const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerLua class encapsulates the Scintilla Lua lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Lua lexer.

      + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A block comment.

      +
      LineComment 

      A line comment.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      String 

      A string.

      +
      Character 

      A character.

      +
      LiteralString 

      A literal string.

      +
      Preprocessor 

      Preprocessor.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      BasicFunctions 

      Basic functions.

      +
      StringTableMathsFunctions 

      String, table and maths functions.

      +
      CoroutinesIOSystemFacilities 

      Coroutines, I/O and system facilities.

      +
      KeywordSet5 

      A keyword defined in keyword set number 5. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet6 

      A keyword defined in keyword set number 6. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet7 

      A keyword defined in keyword set number 7. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet8 

      A keyword defined in keyword set number 8. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      Label 

      A label.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerLua()

      + +
      +
      + + + + + + + + +
      QsciLexerLua::QsciLexerLua (QObject * parent = 0)
      +
      +

      Construct a QsciLexerLua with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerLua::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      QStringList QsciLexerLua::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerLua::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerLua::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerLua::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerLua::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerLua::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerLua::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerLua::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerLua::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerLua::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerLua::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMASM-members.html b/third_party/qscintilla/doc/html/classQsciLexerMASM-members.html new file mode 100644 index 0000000..f5e8591 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMASM-members.html @@ -0,0 +1,138 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerMASM Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerMASM, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      BlockComment enum valueQsciLexerAsm
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerAsm
      commentDelimiter() constQsciLexerAsm
      CommentDirective enum valueQsciLexerAsm
      CPUInstruction enum valueQsciLexerAsm
      Default enum valueQsciLexerAsm
      defaultColor(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerAsmvirtual
      defaultFont(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerAsmvirtual
      Directive enum valueQsciLexerAsm
      DirectiveOperand enum valueQsciLexerAsm
      DoubleQuotedString enum valueQsciLexerAsm
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExtendedInstruction enum valueQsciLexerAsm
      foldComments() constQsciLexerAsm
      foldCompact() constQsciLexerAsm
      foldSyntaxBased() constQsciLexerAsm
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      FPUInstruction enum valueQsciLexerAsm
      Identifier enum valueQsciLexerAsm
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerAsmvirtual
      language() constQsciLexerMASMvirtual
      lexer() constQsciLexerMASMvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerAsm
      Operator enum valueQsciLexerAsm
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerAsm(QObject *parent=0)QsciLexerAsm
      QsciLexerMASM(QObject *parent=0)QsciLexerMASM
      readProperties(QSettings &qs, const QString &prefix)QsciLexerAsmprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerAsmvirtual
      Register enum valueQsciLexerAsm
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setCommentDelimiter(QChar delimeter)QsciLexerAsmvirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerAsmvirtualslot
      setFoldCompact(bool fold)QsciLexerAsmvirtualslot
      setFoldSyntaxBased(bool syntax_based)QsciLexerAsmvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerAsm
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerAsm
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerAsmprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerAsm()QsciLexerAsmvirtual
      ~QsciLexerMASM()QsciLexerMASMvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMASM.html b/third_party/qscintilla/doc/html/classQsciLexerMASM.html new file mode 100644 index 0000000..e39db84 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMASM.html @@ -0,0 +1,270 @@ + + + + + + + +QScintilla: QsciLexerMASM Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerMASM Class Reference
      +
      +
      + +

      #include <qscilexermasm.h>

      + +

      Inherits QsciLexerAsm.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerMASM (QObject *parent=0)
       
      +virtual ~QsciLexerMASM ()
       
      +const char * language () const
       
      +const char * lexer () const
       
      - Public Member Functions inherited from QsciLexerAsm
       QsciLexerAsm (QObject *parent=0)
       
      +virtual ~QsciLexerAsm ()
       
      +QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      QChar commentDelimiter () const
       
      bool foldSyntaxBased () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerAsm
      enum  {
      +  Default = 0, +Comment = 1, +Number = 2, +
      +  DoubleQuotedString = 3, +Operator = 4, +Identifier = 5, +
      +  CPUInstruction = 6, +FPUInstruction = 7, +Register = 8, +
      +  Directive = 9, +DirectiveOperand = 11, +BlockComment = 12, +
      +  SingleQuotedString = 13, +UnclosedString = 14, +ExtendedInstruction = 16, +
      +  CommentDirective = 17 +
      + }
       
      - Public Slots inherited from QsciLexerAsm
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setCommentDelimiter (QChar delimeter)
       
      virtual void setFoldSyntaxBased (bool syntax_based)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexerAsm
      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerMASM class encapsulates the Scintilla MASM lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerMASM()

      + +
      +
      + + + + + + + + +
      QsciLexerMASM::QsciLexerMASM (QObject * parent = 0)
      +
      +

      Construct a QsciLexerMASM with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMakefile-members.html b/third_party/qscintilla/doc/html/classQsciLexerMakefile-members.html new file mode 100644 index 0000000..8123ae7 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMakefile-members.html @@ -0,0 +1,119 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerMakefile Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerMakefile, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerMakefile
      Default enum valueQsciLexerMakefile
      defaultColor(int style) constQsciLexerMakefilevirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerMakefilevirtual
      defaultFont(int style) constQsciLexerMakefilevirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerMakefilevirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerMakefilevirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      Error enum valueQsciLexerMakefile
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerMakefilevirtual
      lexer() constQsciLexerMakefilevirtual
      lexerId() constQsciLexervirtual
      Operator enum valueQsciLexerMakefile
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      Preprocessor enum valueQsciLexerMakefile
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerMakefile(QObject *parent=0)QsciLexerMakefile
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      Target enum valueQsciLexerMakefile
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      Variable enum valueQsciLexerMakefile
      wordCharacters() constQsciLexerMakefilevirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerMakefile()QsciLexerMakefilevirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMakefile.html b/third_party/qscintilla/doc/html/classQsciLexerMakefile.html new file mode 100644 index 0000000..12f615c --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMakefile.html @@ -0,0 +1,386 @@ + + + + + + + +QScintilla: QsciLexerMakefile Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerMakefile Class Reference
      +
      +
      + +

      #include <qscilexermakefile.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Preprocessor = 2, +
      +  Variable = 3, +Operator = 4, +Target = 5, +
      +  Error = 9 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerMakefile (QObject *parent=0)
       
      +virtual ~QsciLexerMakefile ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerMakefile class encapsulates the Scintilla Makefile lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Makefile lexer.

      + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Preprocessor 

      A pre-processor directive.

      +
      Variable 

      A variable.

      +
      Operator 

      An operator.

      +
      Target 

      A target.

      +
      Error 

      An error.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerMakefile()

      + +
      +
      + + + + + + + + +
      QsciLexerMakefile::QsciLexerMakefile (QObject * parent = 0)
      +
      +

      Construct a QsciLexerMakefile with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerMakefile::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerMakefile::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerMakefile::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerMakefile::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMarkdown-members.html b/third_party/qscintilla/doc/html/classQsciLexerMarkdown-members.html new file mode 100644 index 0000000..f3b9a60 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMarkdown-members.html @@ -0,0 +1,134 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerMarkdown Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerMarkdown, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      BlockQuote enum valueQsciLexerMarkdown
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      CodeBackticks enum valueQsciLexerMarkdown
      CodeBlock enum valueQsciLexerMarkdown
      CodeDoubleBackticks enum valueQsciLexerMarkdown
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Default enum valueQsciLexerMarkdown
      defaultColor(int style) constQsciLexerMarkdownvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerMarkdownvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerMarkdownvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerMarkdownvirtual
      editor() constQsciLexerinline
      EmphasisAsterisks enum valueQsciLexerMarkdown
      EmphasisUnderscores enum valueQsciLexerMarkdown
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Header1 enum valueQsciLexerMarkdown
      Header2 enum valueQsciLexerMarkdown
      Header3 enum valueQsciLexerMarkdown
      Header4 enum valueQsciLexerMarkdown
      Header5 enum valueQsciLexerMarkdown
      Header6 enum valueQsciLexerMarkdown
      HorizontalRule enum valueQsciLexerMarkdown
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerMarkdownvirtual
      lexer() constQsciLexerMarkdownvirtual
      lexerId() constQsciLexervirtual
      Link enum valueQsciLexerMarkdown
      OrderedListItem enum valueQsciLexerMarkdown
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      Prechar enum valueQsciLexerMarkdown
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerMarkdown(QObject *parent=0)QsciLexerMarkdown
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      Special enum valueQsciLexerMarkdown
      StrikeOut enum valueQsciLexerMarkdown
      StrongEmphasisAsterisks enum valueQsciLexerMarkdown
      StrongEmphasisUnderscores enum valueQsciLexerMarkdown
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnorderedListItem enum valueQsciLexerMarkdown
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerMarkdown()QsciLexerMarkdownvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMarkdown.html b/third_party/qscintilla/doc/html/classQsciLexerMarkdown.html new file mode 100644 index 0000000..b628fd6 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMarkdown.html @@ -0,0 +1,434 @@ + + + + + + + +QScintilla: QsciLexerMarkdown Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerMarkdown Class Reference
      +
      +
      + +

      #include <qscilexermarkdown.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Special = 1, +StrongEmphasisAsterisks = 2, +
      +  StrongEmphasisUnderscores = 3, +EmphasisAsterisks = 4, +EmphasisUnderscores = 5, +
      +  Header1 = 6, +Header2 = 7, +Header3 = 8, +
      +  Header4 = 9, +Header5 = 10, +Header6 = 11, +
      +  Prechar = 12, +UnorderedListItem = 13, +OrderedListItem = 14, +
      +  BlockQuote = 15, +StrikeOut = 16, +HorizontalRule = 17, +
      +  Link = 18, +CodeBackticks = 19, +CodeDoubleBackticks = 20, +
      +  CodeBlock = 21 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerMarkdown (QObject *parent=0)
       
      +virtual ~QsciLexerMarkdown ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerMarkdown class encapsulates the Scintilla Markdown lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Markdown lexer.

      + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Special 

      Special (e.g. end-of-line codes if enabled).

      +
      StrongEmphasisAsterisks 

      Strong emphasis using double asterisks.

      +
      StrongEmphasisUnderscores 

      Strong emphasis using double underscores.

      +
      EmphasisAsterisks 

      Emphasis using single asterisks.

      +
      EmphasisUnderscores 

      Emphasis using single underscores.

      +
      Header1 

      A level 1 header.

      +
      Header2 

      A level 2 header.

      +
      Header3 

      A level 3 header.

      +
      Header4 

      A level 4 header.

      +
      Header5 

      A level 5 header.

      +
      Header6 

      A level 6 header.

      +
      Prechar 

      Pre-char (up to three indent spaces, e.g. for a sub-list).

      +
      UnorderedListItem 

      An unordered list item.

      +
      OrderedListItem 

      An ordered list item.

      +
      BlockQuote 

      A block quote.

      +
      StrikeOut 

      Strike out.

      +
      HorizontalRule 

      A horizontal rule.

      +
      Link 

      A link.

      +
      CodeBackticks 

      Code between backticks.

      +
      CodeDoubleBackticks 

      Code between double backticks.

      +
      CodeBlock 

      A code block.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerMarkdown()

      + +
      +
      + + + + + + + + +
      QsciLexerMarkdown::QsciLexerMarkdown (QObject * parent = 0)
      +
      +

      Construct a QsciLexerMarkdown with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerMarkdown::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerMarkdown::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerMarkdown::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerMarkdown::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMatlab-members.html b/third_party/qscintilla/doc/html/classQsciLexerMatlab-members.html new file mode 100644 index 0000000..f0050bf --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMatlab-members.html @@ -0,0 +1,121 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerMatlab Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerMatlab, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Command enum valueQsciLexerMatlab
      Comment enum valueQsciLexerMatlab
      Default enum valueQsciLexerMatlab
      defaultColor(int style) constQsciLexerMatlabvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerMatlabvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerMatlabvirtual
      DoubleQuotedString enum valueQsciLexerMatlab
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerMatlab
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerMatlab
      keywords(int set) constQsciLexerMatlabvirtual
      language() constQsciLexerMatlabvirtual
      lexer() constQsciLexerMatlabvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerMatlab
      Operator enum valueQsciLexerMatlab
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerMatlab(QObject *parent=0)QsciLexerMatlab
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerMatlab
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerMatlab()QsciLexerMatlabvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerMatlab.html b/third_party/qscintilla/doc/html/classQsciLexerMatlab.html new file mode 100644 index 0000000..3a25adf --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerMatlab.html @@ -0,0 +1,396 @@ + + + + + + + +QScintilla: QsciLexerMatlab Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerMatlab Class Reference
      +
      +
      + +

      #include <qscilexermatlab.h>

      + +

      Inherits QsciLexer.

      + +

      Inherited by QsciLexerOctave.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Command = 2, +
      +  Number = 3, +Keyword = 4, +SingleQuotedString = 5, +
      +  Operator = 6, +Identifier = 7, +DoubleQuotedString = 8 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerMatlab (QObject *parent=0)
       
      +virtual ~QsciLexerMatlab ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerMatlab class encapsulates the Scintilla Matlab file lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Matlab file lexer.

      + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Command 

      A command.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      SingleQuotedString 

      A single quoted string.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      DoubleQuotedString 

      A double quoted string.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerMatlab()

      + +
      +
      + + + + + + + + +
      QsciLexerMatlab::QsciLexerMatlab (QObject * parent = 0)
      +
      +

      Construct a QsciLexerMatlab with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerMatlab::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerOctave.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerMatlab::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerMatlab::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +

      Reimplemented in QsciLexerOctave.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerMatlab::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerNASM-members.html b/third_party/qscintilla/doc/html/classQsciLexerNASM-members.html new file mode 100644 index 0000000..300c17b --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerNASM-members.html @@ -0,0 +1,138 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerNASM Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerNASM, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      BlockComment enum valueQsciLexerAsm
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerAsm
      commentDelimiter() constQsciLexerAsm
      CommentDirective enum valueQsciLexerAsm
      CPUInstruction enum valueQsciLexerAsm
      Default enum valueQsciLexerAsm
      defaultColor(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerAsmvirtual
      defaultFont(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerAsmvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerAsmvirtual
      Directive enum valueQsciLexerAsm
      DirectiveOperand enum valueQsciLexerAsm
      DoubleQuotedString enum valueQsciLexerAsm
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExtendedInstruction enum valueQsciLexerAsm
      foldComments() constQsciLexerAsm
      foldCompact() constQsciLexerAsm
      foldSyntaxBased() constQsciLexerAsm
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      FPUInstruction enum valueQsciLexerAsm
      Identifier enum valueQsciLexerAsm
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerAsmvirtual
      language() constQsciLexerNASMvirtual
      lexer() constQsciLexerNASMvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerAsm
      Operator enum valueQsciLexerAsm
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerAsm(QObject *parent=0)QsciLexerAsm
      QsciLexerNASM(QObject *parent=0)QsciLexerNASM
      readProperties(QSettings &qs, const QString &prefix)QsciLexerAsmprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerAsmvirtual
      Register enum valueQsciLexerAsm
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setCommentDelimiter(QChar delimeter)QsciLexerAsmvirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerAsmvirtualslot
      setFoldCompact(bool fold)QsciLexerAsmvirtualslot
      setFoldSyntaxBased(bool syntax_based)QsciLexerAsmvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerAsm
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerAsm
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerAsmprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerAsm()QsciLexerAsmvirtual
      ~QsciLexerNASM()QsciLexerNASMvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerNASM.html b/third_party/qscintilla/doc/html/classQsciLexerNASM.html new file mode 100644 index 0000000..4ed5d96 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerNASM.html @@ -0,0 +1,270 @@ + + + + + + + +QScintilla: QsciLexerNASM Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerNASM Class Reference
      +
      +
      + +

      #include <qscilexernasm.h>

      + +

      Inherits QsciLexerAsm.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerNASM (QObject *parent=0)
       
      +virtual ~QsciLexerNASM ()
       
      +const char * language () const
       
      +const char * lexer () const
       
      - Public Member Functions inherited from QsciLexerAsm
       QsciLexerAsm (QObject *parent=0)
       
      +virtual ~QsciLexerAsm ()
       
      +QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      QChar commentDelimiter () const
       
      bool foldSyntaxBased () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerAsm
      enum  {
      +  Default = 0, +Comment = 1, +Number = 2, +
      +  DoubleQuotedString = 3, +Operator = 4, +Identifier = 5, +
      +  CPUInstruction = 6, +FPUInstruction = 7, +Register = 8, +
      +  Directive = 9, +DirectiveOperand = 11, +BlockComment = 12, +
      +  SingleQuotedString = 13, +UnclosedString = 14, +ExtendedInstruction = 16, +
      +  CommentDirective = 17 +
      + }
       
      - Public Slots inherited from QsciLexerAsm
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setCommentDelimiter (QChar delimeter)
       
      virtual void setFoldSyntaxBased (bool syntax_based)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexerAsm
      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerNASM class encapsulates the Scintilla NASM lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerNASM()

      + +
      +
      + + + + + + + + +
      QsciLexerNASM::QsciLexerNASM (QObject * parent = 0)
      +
      +

      Construct a QsciLexerNASM with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerOctave-members.html b/third_party/qscintilla/doc/html/classQsciLexerOctave-members.html new file mode 100644 index 0000000..c863445 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerOctave-members.html @@ -0,0 +1,123 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerOctave Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerOctave, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Command enum valueQsciLexerMatlab
      Comment enum valueQsciLexerMatlab
      Default enum valueQsciLexerMatlab
      defaultColor(int style) constQsciLexerMatlabvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerMatlabvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerMatlabvirtual
      DoubleQuotedString enum valueQsciLexerMatlab
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerMatlab
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerMatlab
      keywords(int set) constQsciLexerOctavevirtual
      language() constQsciLexerOctavevirtual
      lexer() constQsciLexerOctavevirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerMatlab
      Operator enum valueQsciLexerMatlab
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerMatlab(QObject *parent=0)QsciLexerMatlab
      QsciLexerOctave(QObject *parent=0)QsciLexerOctave
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerMatlab
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerMatlab()QsciLexerMatlabvirtual
      ~QsciLexerOctave()QsciLexerOctavevirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerOctave.html b/third_party/qscintilla/doc/html/classQsciLexerOctave.html new file mode 100644 index 0000000..a29de60 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerOctave.html @@ -0,0 +1,298 @@ + + + + + + + +QScintilla: QsciLexerOctave Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerOctave Class Reference
      +
      +
      + +

      #include <qscilexeroctave.h>

      + +

      Inherits QsciLexerMatlab.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerOctave (QObject *parent=0)
       
      +virtual ~QsciLexerOctave ()
       
      +const char * language () const
       
      const char * lexer () const
       
      const char * keywords (int set) const
       
      - Public Member Functions inherited from QsciLexerMatlab
       QsciLexerMatlab (QObject *parent=0)
       
      +virtual ~QsciLexerMatlab ()
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerMatlab
      enum  {
      +  Default = 0, +Comment = 1, +Command = 2, +
      +  Number = 3, +Keyword = 4, +SingleQuotedString = 5, +
      +  Operator = 6, +Identifier = 7, +DoubleQuotedString = 8 +
      + }
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerOctave class encapsulates the Scintilla Octave file lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerOctave()

      + +
      +
      + + + + + + + + +
      QsciLexerOctave::QsciLexerOctave (QObject * parent = 0)
      +
      +

      Construct a QsciLexerOctave with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerOctave::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexerMatlab.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerOctave::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexerMatlab.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPO-members.html b/third_party/qscintilla/doc/html/classQsciLexerPO-members.html new file mode 100644 index 0000000..b8de308 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPO-members.html @@ -0,0 +1,131 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerPO Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerPO, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerPO
      Default enum valueQsciLexerPO
      defaultColor(int style) constQsciLexerPOvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerPOvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerPOvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      Flags enum valueQsciLexerPO
      foldComments() constQsciLexerPO
      foldCompact() constQsciLexerPO
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Fuzzy enum valueQsciLexerPO
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerPOvirtual
      lexer() constQsciLexerPOvirtual
      lexerId() constQsciLexervirtual
      MessageContext enum valueQsciLexerPO
      MessageContextText enum valueQsciLexerPO
      MessageContextTextEOL enum valueQsciLexerPO
      MessageId enum valueQsciLexerPO
      MessageIdText enum valueQsciLexerPO
      MessageIdTextEOL enum valueQsciLexerPO
      MessageString enum valueQsciLexerPO
      MessageStringText enum valueQsciLexerPO
      MessageStringTextEOL enum valueQsciLexerPO
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      ProgrammerComment enum valueQsciLexerPO
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerPO(QObject *parent=0)QsciLexerPO
      readProperties(QSettings &qs, const QString &prefix)QsciLexerPOprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      Reference enum valueQsciLexerPO
      refreshProperties()QsciLexerPOvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerPOvirtualslot
      setFoldCompact(bool fold)QsciLexerPOvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerPOprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerPO()QsciLexerPOvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPO.html b/third_party/qscintilla/doc/html/classQsciLexerPO.html new file mode 100644 index 0000000..8a833ad --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPO.html @@ -0,0 +1,597 @@ + + + + + + + +QScintilla: QsciLexerPO Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerpo.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +MessageId = 2, +
      +  MessageIdText = 3, +MessageString = 4, +MessageStringText = 5, +
      +  MessageContext = 6, +MessageContextText = 7, +Fuzzy = 8, +
      +  ProgrammerComment = 9, +Reference = 10, +Flags = 11, +
      +  MessageIdTextEOL = 12, +MessageStringTextEOL = 13, +MessageContextTextEOL = 14 +
      + }
       
      + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerPO (QObject *parent=0)
       
      +virtual ~QsciLexerPO ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerPO class encapsulates the Scintilla PO lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the PO lexer.

      + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      MessageId 

      A message identifier.

      +
      MessageIdText 

      The text of a message identifier.

      +
      MessageString 

      A message string.

      +
      MessageStringText 

      The text of a message string.

      +
      MessageContext 

      A message context.

      +
      MessageContextText 

      The text of a message context.

      +
      Fuzzy 

      The "fuzzy" flag.

      +
      ProgrammerComment 

      A programmer comment.

      +
      Reference 

      A reference.

      +
      Flags 

      A flag.

      +
      MessageIdTextEOL 

      A message identifier text end-of-line.

      +
      MessageStringTextEOL 

      A message string text end-of-line.

      +
      MessageContextTextEOL 

      A message context text end-of-line.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerPO()

      + +
      +
      + + + + + + + + +
      QsciLexerPO::QsciLexerPO (QObject * parent = 0)
      +
      +

      Construct a QsciLexerPO with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerPO::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPO::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerPO::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerPO::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerPO::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerPO::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPO::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPO::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPO::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPO::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPOV-members.html b/third_party/qscintilla/doc/html/classQsciLexerPOV-members.html new file mode 100644 index 0000000..52eb130 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPOV-members.html @@ -0,0 +1,135 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerPOV Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerPOV, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      BadDirective enum valueQsciLexerPOV
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerPOVvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerPOV
      CommentLine enum valueQsciLexerPOV
      Default enum valueQsciLexerPOV
      defaultColor(int style) constQsciLexerPOVvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerPOVvirtual
      defaultFont(int style) constQsciLexerPOVvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerPOVvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerPOVvirtual
      Directive enum valueQsciLexerPOV
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldComments() constQsciLexerPOV
      foldCompact() constQsciLexerPOV
      foldDirectives() constQsciLexerPOV
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerPOV
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerPOVvirtual
      KeywordSet6 enum valueQsciLexerPOV
      KeywordSet7 enum valueQsciLexerPOV
      KeywordSet8 enum valueQsciLexerPOV
      language() constQsciLexerPOVvirtual
      lexer() constQsciLexerPOVvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerPOV
      ObjectsCSGAppearance enum valueQsciLexerPOV
      Operator enum valueQsciLexerPOV
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PredefinedFunctions enum valueQsciLexerPOV
      PredefinedIdentifiers enum valueQsciLexerPOV
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerPOV(QObject *parent=0)QsciLexerPOV
      readProperties(QSettings &qs, const QString &prefix)QsciLexerPOVprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerPOVvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerPOVvirtualslot
      setFoldCompact(bool fold)QsciLexerPOVvirtualslot
      setFoldDirectives(bool fold)QsciLexerPOVvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      String enum valueQsciLexerPOV
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TypesModifiersItems enum valueQsciLexerPOV
      UnclosedString enum valueQsciLexerPOV
      wordCharacters() constQsciLexerPOVvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerPOVprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerPOV()QsciLexerPOVvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPOV.html b/third_party/qscintilla/doc/html/classQsciLexerPOV.html new file mode 100644 index 0000000..7a543b3 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPOV.html @@ -0,0 +1,715 @@ + + + + + + + +QScintilla: QsciLexerPOV Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerpov.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +CommentLine = 2, +
      +  Number = 3, +Operator = 4, +Identifier = 5, +
      +  String = 6, +UnclosedString = 7, +Directive = 8, +
      +  BadDirective = 9, +ObjectsCSGAppearance = 10, +TypesModifiersItems = 11, +
      +  PredefinedIdentifiers = 12, +PredefinedFunctions = 13, +KeywordSet6 = 14, +
      +  KeywordSet7 = 15, +KeywordSet8 = 16 +
      + }
       
      + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldDirectives (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerPOV (QObject *parent=0)
       
      +virtual ~QsciLexerPOV ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldDirectives () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerPOV class encapsulates the Scintilla POV lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the POV lexer.

      + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      CommentLine 

      A comment line.

      +
      Number 

      A number.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      String 

      A string.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      Directive 

      A directive.

      +
      BadDirective 

      A bad directive.

      +
      ObjectsCSGAppearance 

      Objects, CSG and appearance.

      +
      TypesModifiersItems 

      Types, modifiers and items.

      +
      PredefinedIdentifiers 

      Predefined identifiers.

      +
      PredefinedFunctions 

      Predefined identifiers.

      +
      KeywordSet6 

      A keyword defined in keyword set number 6. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet7 

      A keyword defined in keyword set number 7. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet8 

      A keyword defined in keyword set number 8. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerPOV()

      + +
      +
      + + + + + + + + +
      QsciLexerPOV::QsciLexerPOV (QObject * parent = 0)
      +
      +

      Construct a QsciLexerPOV with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerPOV::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPOV::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPOV::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPOV::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerPOV::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerPOV::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerPOV::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerPOV::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ foldDirectives()

      + +
      +
      + + + + + + + +
      bool QsciLexerPOV::foldDirectives () const
      +
      +

      Returns true if directives can be folded.

      +
      See also
      setFoldDirectives()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPOV::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPOV::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ setFoldDirectives

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPOV::setFoldDirectives (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then directives can be folded. The default is false.

      +
      See also
      foldDirectives()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPOV::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPOV::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPascal-members.html b/third_party/qscintilla/doc/html/classQsciLexerPascal-members.html new file mode 100644 index 0000000..6aca7a2 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPascal-members.html @@ -0,0 +1,135 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerPascal Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerPascal, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      Asm enum valueQsciLexerPascal
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerPascalvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexerPascalvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerPascalvirtual
      blockStartKeyword(int *style=0) constQsciLexerPascalvirtual
      braceStyle() constQsciLexerPascalvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      Character enum valueQsciLexerPascal
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerPascal
      CommentLine enum valueQsciLexerPascal
      CommentParenthesis enum valueQsciLexerPascal
      Default enum valueQsciLexerPascal
      defaultColor(int style) constQsciLexerPascalvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerPascalvirtual
      defaultFont(int style) constQsciLexerPascalvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerPascalvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerPascalvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldComments() constQsciLexerPascal
      foldCompact() constQsciLexerPascal
      foldPreprocessor() constQsciLexerPascal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      HexNumber enum valueQsciLexerPascal
      Identifier enum valueQsciLexerPascal
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerPascal
      keywords(int set) constQsciLexerPascalvirtual
      language() constQsciLexerPascalvirtual
      lexer() constQsciLexerPascalvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerPascal
      Operator enum valueQsciLexerPascal
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PreProcessor enum valueQsciLexerPascal
      PreProcessorParenthesis enum valueQsciLexerPascal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerPascal(QObject *parent=0)QsciLexerPascal
      readProperties(QSettings &qs, const QString &prefix)QsciLexerPascalprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerPascalvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerPascalvirtualslot
      setFoldCompact(bool fold)QsciLexerPascalvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerPascalvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setSmartHighlighting(bool enabled)QsciLexerPascal
      SingleQuotedString enum valueQsciLexerPascal
      smartHighlighting() constQsciLexerPascal
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerPascal
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerPascalprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerPascal()QsciLexerPascalvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPascal.html b/third_party/qscintilla/doc/html/classQsciLexerPascal.html new file mode 100644 index 0000000..28080d9 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPascal.html @@ -0,0 +1,867 @@ + + + + + + + +QScintilla: QsciLexerPascal Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerpascal.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Identifier = 1, +Comment = 2, +
      +  CommentParenthesis = 3, +CommentLine = 4, +PreProcessor = 5, +
      +  PreProcessorParenthesis = 6, +Number = 7, +HexNumber = 8, +
      +  Keyword = 9, +SingleQuotedString = 10, +UnclosedString = 11, +
      +  Character = 12, +Operator = 13, +Asm = 14 +
      + }
       
      + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerPascal (QObject *parent=0)
       
      +virtual ~QsciLexerPascal ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      void setSmartHighlighting (bool enabled)
       
      bool smartHighlighting () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerPascal class encapsulates the Scintilla Pascal lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the C++ lexer.

      + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Identifier 

      An identifier.

      +
      Comment 

      A '{ ... }' style comment.

      +
      CommentParenthesis 

      A '(* ... *)' style comment.

      +
      CommentLine 

      A comment line.

      +
      PreProcessor 

      A '{$ ... }' style pre-processor block.

      +
      PreProcessorParenthesis 

      A '(*$ ... *)' style pre-processor block.

      +
      Number 

      A number.

      +
      HexNumber 

      A hexadecimal number.

      +
      Keyword 

      A keyword.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      Character 

      A character.

      +
      Operator 

      An operator.

      +
      Asm 

      Inline Asm.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerPascal()

      + +
      +
      + + + + + + + + +
      QsciLexerPascal::QsciLexerPascal (QObject * parent = 0)
      +
      +

      Construct a QsciLexerPascal with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerPascal::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      QStringList QsciLexerPascal::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPascal::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPascal::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStartKeyword()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPascal::blockStartKeyword (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of keywords in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPascal::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPascal::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPascal::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerPascal::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerPascal::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerPascal::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerPascal::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ foldPreprocessor()

      + +
      +
      + + + + + + + +
      bool QsciLexerPascal::foldPreprocessor () const
      +
      +

      Returns true if preprocessor blocks can be folded.

      +
      See also
      setFoldPreprocessor()
      + +
      +
      + +

      ◆ setSmartHighlighting()

      + +
      +
      + + + + + + + + +
      void QsciLexerPascal::setSmartHighlighting (bool enabled)
      +
      +

      If enabled is true then some keywords will only be highlighted in an appropriate context (similar to how the Delphi IDE works). The default is true.

      +
      See also
      smartHighlighting()
      + +
      +
      + +

      ◆ smartHighlighting()

      + +
      +
      + + + + + + + +
      bool QsciLexerPascal::smartHighlighting () const
      +
      +

      Returns true if some keywords will only be highlighted in an appropriate context (similar to how the Delphi IDE works).

      +
      See also
      setSmartHighlighting()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPascal::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPascal::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ setFoldPreprocessor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPascal::setFoldPreprocessor (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then preprocessor blocks can be folded. The default is true.

      +
      See also
      foldPreprocessor()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPascal::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      writeProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPascal::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      readProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPerl-members.html b/third_party/qscintilla/doc/html/classQsciLexerPerl-members.html new file mode 100644 index 0000000..b27d5ab --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPerl-members.html @@ -0,0 +1,163 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerPerl Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerPerl, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      Array enum valueQsciLexerPerl
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerPerlvirtual
      autoIndentStyle()QsciLexer
      BacktickHereDocument enum valueQsciLexerPerl
      BacktickHereDocumentVar enum valueQsciLexerPerl
      Backticks enum valueQsciLexerPerl
      BackticksVar enum valueQsciLexerPerl
      blockEnd(int *style=0) constQsciLexerPerlvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerPerlvirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerPerlvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerPerl
      DataSection enum valueQsciLexerPerl
      Default enum valueQsciLexerPerl
      defaultColor(int style) constQsciLexerPerlvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerPerlvirtual
      defaultFont(int style) constQsciLexerPerlvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerPerlvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerPerlvirtual
      DoubleQuotedHereDocument enum valueQsciLexerPerl
      DoubleQuotedHereDocumentVar enum valueQsciLexerPerl
      DoubleQuotedString enum valueQsciLexerPerl
      DoubleQuotedStringVar enum valueQsciLexerPerl
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      Error enum valueQsciLexerPerl
      foldAtElse() constQsciLexerPerlinline
      foldComments() constQsciLexerPerl
      foldCompact() constQsciLexerPerl
      foldPackages() constQsciLexerPerl
      foldPODBlocks() constQsciLexerPerl
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      FormatBody enum valueQsciLexerPerl
      FormatIdentifier enum valueQsciLexerPerl
      Hash enum valueQsciLexerPerl
      HereDocumentDelimiter enum valueQsciLexerPerl
      Identifier enum valueQsciLexerPerl
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerPerl
      keywords(int set) constQsciLexerPerlvirtual
      language() constQsciLexerPerlvirtual
      lexer() constQsciLexerPerlvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerPerl
      Operator enum valueQsciLexerPerl
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      POD enum valueQsciLexerPerl
      PODVerbatim enum valueQsciLexerPerl
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerPerl(QObject *parent=0)QsciLexerPerl
      QuotedStringQ enum valueQsciLexerPerl
      QuotedStringQQ enum valueQsciLexerPerl
      QuotedStringQQVar enum valueQsciLexerPerl
      QuotedStringQR enum valueQsciLexerPerl
      QuotedStringQRVar enum valueQsciLexerPerl
      QuotedStringQW enum valueQsciLexerPerl
      QuotedStringQX enum valueQsciLexerPerl
      QuotedStringQXVar enum valueQsciLexerPerl
      readProperties(QSettings &qs, const QString &prefix)QsciLexerPerlprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerPerlvirtual
      Regex enum valueQsciLexerPerl
      RegexVar enum valueQsciLexerPerl
      Scalar enum valueQsciLexerPerl
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerPerl
      setFoldComments(bool fold)QsciLexerPerlvirtualslot
      setFoldCompact(bool fold)QsciLexerPerlvirtualslot
      setFoldPackages(bool fold)QsciLexerPerl
      setFoldPODBlocks(bool fold)QsciLexerPerl
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedHereDocument enum valueQsciLexerPerl
      SingleQuotedString enum valueQsciLexerPerl
      styleBitsNeeded() constQsciLexervirtual
      SubroutinePrototype enum valueQsciLexerPerl
      Substitution enum valueQsciLexerPerl
      SubstitutionVar enum valueQsciLexerPerl
      SymbolTable enum valueQsciLexerPerl
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      Translation enum valueQsciLexerPerl
      wordCharacters() constQsciLexerPerlvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerPerlprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerPerl()QsciLexerPerlvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPerl.html b/third_party/qscintilla/doc/html/classQsciLexerPerl.html new file mode 100644 index 0000000..3b50048 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPerl.html @@ -0,0 +1,967 @@ + + + + + + + +QScintilla: QsciLexerPerl Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerperl.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Error = 1, +Comment = 2, +
      +  POD = 3, +Number = 4, +Keyword = 5, +
      +  DoubleQuotedString = 6, +SingleQuotedString = 7, +Operator = 10, +
      +  Identifier = 11, +Scalar = 12, +Array = 13, +
      +  Hash = 14, +SymbolTable = 15, +Regex = 17, +
      +  Substitution = 18, +Backticks = 20, +DataSection = 21, +
      +  HereDocumentDelimiter = 22, +SingleQuotedHereDocument = 23, +DoubleQuotedHereDocument = 24, +
      +  BacktickHereDocument = 25, +QuotedStringQ = 26, +QuotedStringQQ = 27, +
      +  QuotedStringQX = 28, +QuotedStringQR = 29, +QuotedStringQW = 30, +
      +  PODVerbatim = 31, +SubroutinePrototype = 40, +FormatIdentifier = 41, +
      +  FormatBody = 42, +DoubleQuotedStringVar = 43, +Translation = 44, +
      +  RegexVar = 54, +SubstitutionVar = 55, +BackticksVar = 57, +
      +  DoubleQuotedHereDocumentVar = 61, +BacktickHereDocumentVar = 62, +QuotedStringQQVar = 64, +
      +  QuotedStringQXVar = 65, +QuotedStringQRVar = 66 +
      + }
       
      + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerPerl (QObject *parent=0)
       
      +virtual ~QsciLexerPerl ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      void setFoldAtElse (bool fold)
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      void setFoldPackages (bool fold)
       
      bool foldPackages () const
       
      void setFoldPODBlocks (bool fold)
       
      bool foldPODBlocks () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerPerl class encapsulates the Scintilla Perl lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Perl lexer.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Error 

      An error.

      +
      Comment 

      A comment.

      +
      POD 

      A POD.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      Scalar 

      A scalar.

      +
      Array 

      An array.

      +
      Hash 

      A hash.

      +
      SymbolTable 

      A symbol table.

      +
      Regex 

      A regular expression.

      +
      Substitution 

      A substitution.

      +
      Backticks 

      Backticks.

      +
      DataSection 

      A data section.

      +
      HereDocumentDelimiter 

      A here document delimiter.

      +
      SingleQuotedHereDocument 

      A single quoted here document.

      +
      DoubleQuotedHereDocument 

      A double quoted here document.

      +
      BacktickHereDocument 

      A backtick here document.

      +
      QuotedStringQ 

      A quoted string (q).

      +
      QuotedStringQQ 

      A quoted string (qq).

      +
      QuotedStringQX 

      A quoted string (qx).

      +
      QuotedStringQR 

      A quoted string (qr).

      +
      QuotedStringQW 

      A quoted string (qw).

      +
      PODVerbatim 

      A verbatim POD.

      +
      SubroutinePrototype 

      A Subroutine prototype.

      +
      FormatIdentifier 

      A format identifier.

      +
      FormatBody 

      A format body.

      +
      DoubleQuotedStringVar 

      A double-quoted string (interpolated variable).

      +
      Translation 

      A translation.

      +
      RegexVar 

      A regular expression (interpolated variable).

      +
      SubstitutionVar 

      A substitution (interpolated variable).

      +
      BackticksVar 

      Backticks (interpolated variable).

      +
      DoubleQuotedHereDocumentVar 

      A double quoted here document (interpolated variable).

      +
      BacktickHereDocumentVar 

      A backtick here document (interpolated variable).

      +
      QuotedStringQQVar 

      A quoted string (qq, interpolated variable).

      +
      QuotedStringQXVar 

      A quoted string (qx, interpolated variable).

      +
      QuotedStringQRVar 

      A quoted string (qr, interpolated variable).

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerPerl()

      + +
      +
      + + + + + + + + +
      QsciLexerPerl::QsciLexerPerl (QObject * parent = 0)
      +
      +

      Construct a QsciLexerPerl with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerPerl::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      QStringList QsciLexerPerl::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPerl::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPerl::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPerl::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPerl::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPerl::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerPerl::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerPerl::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ setFoldAtElse()

      + +
      +
      + + + + + + + + +
      void QsciLexerPerl::setFoldAtElse (bool fold)
      +
      +

      If fold is true then "} else {" lines can be folded. The default is false.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPerl::foldAtElse () const
      +
      +inline
      +
      +

      Returns true if "} else {" lines can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerPerl::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerPerl::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldPackages()

      + +
      +
      + + + + + + + + +
      void QsciLexerPerl::setFoldPackages (bool fold)
      +
      +

      If fold is true then packages can be folded. The default is true.

      +
      See also
      foldPackages()
      + +
      +
      + +

      ◆ foldPackages()

      + +
      +
      + + + + + + + +
      bool QsciLexerPerl::foldPackages () const
      +
      +

      Returns true if packages can be folded.

      +
      See also
      setFoldPackages()
      + +
      +
      + +

      ◆ setFoldPODBlocks()

      + +
      +
      + + + + + + + + +
      void QsciLexerPerl::setFoldPODBlocks (bool fold)
      +
      +

      If fold is true then POD blocks can be folded. The default is true.

      +
      See also
      foldPODBlocks()
      + +
      +
      + +

      ◆ foldPODBlocks()

      + +
      +
      + + + + + + + +
      bool QsciLexerPerl::foldPODBlocks () const
      +
      +

      Returns true if POD blocks can be folded.

      +
      See also
      setFoldPODBlocks()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPerl::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPerl::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPerl::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPerl::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPostScript-members.html b/third_party/qscintilla/doc/html/classQsciLexerPostScript-members.html new file mode 100644 index 0000000..6dc59d8 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPostScript-members.html @@ -0,0 +1,136 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerPostScript Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerPostScript, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      ArrayParenthesis enum valueQsciLexerPostScript
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      BadStringCharacter enum valueQsciLexerPostScript
      Base85String enum valueQsciLexerPostScript
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerPostScriptvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerPostScript
      Default enum valueQsciLexerPostScript
      defaultColor(int style) constQsciLexerPostScriptvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerPostScriptvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerPostScriptvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerPostScriptvirtual
      DictionaryParenthesis enum valueQsciLexerPostScript
      DSCComment enum valueQsciLexerPostScript
      DSCCommentValue enum valueQsciLexerPostScript
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldAtElse() constQsciLexerPostScript
      foldCompact() constQsciLexerPostScript
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      HexString enum valueQsciLexerPostScript
      ImmediateEvalLiteral enum valueQsciLexerPostScript
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerPostScript
      keywords(int set) constQsciLexerPostScriptvirtual
      language() constQsciLexerPostScriptvirtual
      level() constQsciLexerPostScript
      lexer() constQsciLexerPostScriptvirtual
      lexerId() constQsciLexervirtual
      Literal enum valueQsciLexerPostScript
      Name enum valueQsciLexerPostScript
      Number enum valueQsciLexerPostScript
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      ProcedureParenthesis enum valueQsciLexerPostScript
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerPostScript(QObject *parent=0)QsciLexerPostScript
      readProperties(QSettings &qs, const QString &prefix)QsciLexerPostScriptprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerPostScriptvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerPostScriptvirtualslot
      setFoldCompact(bool fold)QsciLexerPostScriptvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setLevel(int level)QsciLexerPostScriptvirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setTokenize(bool tokenize)QsciLexerPostScriptvirtualslot
      styleBitsNeeded() constQsciLexervirtual
      Text enum valueQsciLexerPostScript
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      tokenize() constQsciLexerPostScript
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerPostScriptprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerPostScript()QsciLexerPostScriptvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPostScript.html b/third_party/qscintilla/doc/html/classQsciLexerPostScript.html new file mode 100644 index 0000000..ef968b2 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPostScript.html @@ -0,0 +1,761 @@ + + + + + + + +QScintilla: QsciLexerPostScript Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerpostscript.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +DSCComment = 2, +
      +  DSCCommentValue = 3, +Number = 4, +Name = 5, +
      +  Keyword = 6, +Literal = 7, +ImmediateEvalLiteral = 8, +
      +  ArrayParenthesis = 9, +DictionaryParenthesis = 10, +ProcedureParenthesis = 11, +
      +  Text = 12, +HexString = 13, +Base85String = 14, +
      +  BadStringCharacter = 15 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setTokenize (bool tokenize)
       
      virtual void setLevel (int level)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldAtElse (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerPostScript (QObject *parent=0)
       
      +virtual ~QsciLexerPostScript ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool tokenize () const
       
      int level () const
       
      bool foldCompact () const
       
      bool foldAtElse () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerPostScript class encapsulates the Scintilla PostScript lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the PostScript lexer.

      + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      DSCComment 

      A DSC comment.

      +
      DSCCommentValue 

      A DSC comment value.

      +
      Number 

      A number.

      +
      Name 

      A name.

      +
      Keyword 

      A keyword.

      +
      Literal 

      A literal.

      +
      ImmediateEvalLiteral 

      An immediately evaluated literal.

      +
      ArrayParenthesis 

      Array parenthesis.

      +
      DictionaryParenthesis 

      Dictionary parenthesis.

      +
      ProcedureParenthesis 

      Procedure parenthesis.

      +
      Text 

      Text.

      +
      HexString 

      A hexadecimal string.

      +
      Base85String 

      A base85 string.

      +
      BadStringCharacter 

      A bad string character.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerPostScript()

      + +
      +
      + + + + + + + + +
      QsciLexerPostScript::QsciLexerPostScript (QObject * parent = 0)
      +
      +

      Construct a QsciLexerPostScript with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerPostScript::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPostScript::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPostScript::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPostScript::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string. Set 5 can be used to provide additional user defined keywords.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerPostScript::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerPostScript::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ tokenize()

      + +
      +
      + + + + + + + +
      bool QsciLexerPostScript::tokenize () const
      +
      +

      Returns true if tokens should be marked.

      +
      See also
      setTokenize()
      + +
      +
      + +

      ◆ level()

      + +
      +
      + + + + + + + +
      int QsciLexerPostScript::level () const
      +
      +

      Returns the PostScript level.

      +
      See also
      setLevel()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerPostScript::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + + + +
      bool QsciLexerPostScript::foldAtElse () const
      +
      +

      Returns true if else blocks can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ setTokenize

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPostScript::setTokenize (bool tokenize)
      +
      +virtualslot
      +
      +

      If tokenize is true then tokens are marked. The default is false.

      +
      See also
      tokenize()
      + +
      +
      + +

      ◆ setLevel

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPostScript::setLevel (int level)
      +
      +virtualslot
      +
      +

      The PostScript level is set to level. The default is 3.

      +
      See also
      level()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPostScript::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ setFoldAtElse

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPostScript::setFoldAtElse (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then else blocks can be folded. The default is false.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPostScript::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPostScript::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerProperties-members.html b/third_party/qscintilla/doc/html/classQsciLexerProperties-members.html new file mode 100644 index 0000000..8064bc9 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerProperties-members.html @@ -0,0 +1,122 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerProperties Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerProperties, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      Assignment enum valueQsciLexerProperties
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerProperties
      Default enum valueQsciLexerProperties
      defaultColor(int style) constQsciLexerPropertiesvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerPropertiesvirtual
      defaultFont(int style) constQsciLexerPropertiesvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerPropertiesvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      DefaultValue enum valueQsciLexerProperties
      description(int style) constQsciLexerPropertiesvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldCompact() constQsciLexerPropertiesinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      indentationGuideView() constQsciLexervirtual
      initialSpaces() constQsciLexerPropertiesinline
      Key enum valueQsciLexerProperties
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerPropertiesvirtual
      lexer() constQsciLexerPropertiesvirtual
      lexerId() constQsciLexervirtual
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerProperties(QObject *parent=0)QsciLexerProperties
      readProperties(QSettings &qs, const QString &prefix)QsciLexerPropertiesprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerPropertiesvirtual
      Section enum valueQsciLexerProperties
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldCompact(bool fold)QsciLexerPropertiesvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setInitialSpaces(bool enable)QsciLexerProperties
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexerPropertiesvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerPropertiesprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerProperties()QsciLexerPropertiesvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerProperties.html b/third_party/qscintilla/doc/html/classQsciLexerProperties.html new file mode 100644 index 0000000..fcaaf16 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerProperties.html @@ -0,0 +1,608 @@ + + + + + + + +QScintilla: QsciLexerProperties Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerproperties.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Section = 2, +
      +  Assignment = 3, +DefaultValue = 4, +Key = 5 +
      + }
       
      + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerProperties (QObject *parent=0)
       
      +virtual ~QsciLexerProperties ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldCompact () const
       
      void setInitialSpaces (bool enable)
       
      bool initialSpaces () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerProperties class encapsulates the Scintilla Properties lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Properties lexer.

      + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Section 

      A section.

      +
      Assignment 

      An assignment operator.

      +
      DefaultValue 

      A default value.

      +
      Key 

      A key.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerProperties()

      + +
      +
      + + + + + + + + +
      QsciLexerProperties::QsciLexerProperties (QObject * parent = 0)
      +
      +

      Construct a QsciLexerProperties with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerProperties::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerProperties::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerProperties::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerProperties::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerProperties::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerProperties::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setInitialSpaces()

      + +
      +
      + + + + + + + + +
      void QsciLexerProperties::setInitialSpaces (bool enable)
      +
      +

      If enable is true then initial spaces in a line are allowed. The default is true.

      +
      See also
      initialSpaces()
      + +
      +
      + +

      ◆ initialSpaces()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerProperties::initialSpaces () const
      +
      +inline
      +
      +

      Returns true if initial spaces in a line are allowed.

      +
      See also
      setInitialSpaces()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerProperties::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerProperties::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      writeProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerProperties::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      readProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPython-members.html b/third_party/qscintilla/doc/html/classQsciLexerPython-members.html new file mode 100644 index 0000000..209f69a --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPython-members.html @@ -0,0 +1,156 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerPython Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerPython, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexerPythonvirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexerPythonvirtual
      blockStart(int *style=0) constQsciLexerPythonvirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerPythonvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      ClassName enum valueQsciLexerPython
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerPython
      CommentBlock enum valueQsciLexerPython
      Decorator enum valueQsciLexerPython
      Default enum valueQsciLexerPython
      defaultColor(int style) constQsciLexerPythonvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerPythonvirtual
      defaultFont(int style) constQsciLexerPythonvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerPythonvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerPythonvirtual
      DoubleQuotedFString enum valueQsciLexerPython
      DoubleQuotedString enum valueQsciLexerPython
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldComments() constQsciLexerPythoninline
      foldCompact() constQsciLexerPythoninline
      foldQuotes() constQsciLexerPythoninline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      FunctionMethodName enum valueQsciLexerPython
      HighlightedIdentifier enum valueQsciLexerPython
      highlightSubidentifiers() constQsciLexerPythoninline
      Identifier enum valueQsciLexerPython
      Inconsistent enum valueQsciLexerPython
      indentationGuideView() constQsciLexerPythonvirtual
      indentationWarning() constQsciLexerPythoninline
      IndentationWarning enum nameQsciLexerPython
      Keyword enum valueQsciLexerPython
      keywords(int set) constQsciLexerPythonvirtual
      language() constQsciLexerPythonvirtual
      lexer() constQsciLexerPythonvirtual
      lexerId() constQsciLexervirtual
      NoWarning enum valueQsciLexerPython
      Number enum valueQsciLexerPython
      Operator enum valueQsciLexerPython
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerPython(QObject *parent=0)QsciLexerPython
      readProperties(QSettings &qs, const QString &prefix)QsciLexerPythonprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerPythonvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerPythonvirtualslot
      setFoldCompact(bool fold)QsciLexerPython
      setFoldQuotes(bool fold)QsciLexerPythonvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHighlightSubidentifiers(bool enabled)QsciLexerPython
      setIndentationWarning(QsciLexerPython::IndentationWarning warn)QsciLexerPythonvirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setStringsOverNewlineAllowed(bool allowed)QsciLexerPython
      setV2UnicodeAllowed(bool allowed)QsciLexerPython
      setV3BinaryOctalAllowed(bool allowed)QsciLexerPython
      setV3BytesAllowed(bool allowed)QsciLexerPython
      SingleQuotedFString enum valueQsciLexerPython
      SingleQuotedString enum valueQsciLexerPython
      Spaces enum valueQsciLexerPython
      stringsOverNewlineAllowed() constQsciLexerPythoninline
      styleBitsNeeded() constQsciLexervirtual
      Tabs enum valueQsciLexerPython
      TabsAfterSpaces enum valueQsciLexerPython
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TripleDoubleQuotedFString enum valueQsciLexerPython
      TripleDoubleQuotedString enum valueQsciLexerPython
      TripleSingleQuotedFString enum valueQsciLexerPython
      TripleSingleQuotedString enum valueQsciLexerPython
      UnclosedString enum valueQsciLexerPython
      v2UnicodeAllowed() constQsciLexerPythoninline
      v3BinaryOctalAllowed() constQsciLexerPythoninline
      v3BytesAllowed() constQsciLexerPythoninline
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerPythonprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerPython()QsciLexerPythonvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerPython.html b/third_party/qscintilla/doc/html/classQsciLexerPython.html new file mode 100644 index 0000000..caa8f85 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerPython.html @@ -0,0 +1,1178 @@ + + + + + + + +QScintilla: QsciLexerPython Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerpython.h>

      + +

      Inherits QsciLexer.

      + + + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Number = 2, +
      +  DoubleQuotedString = 3, +SingleQuotedString = 4, +Keyword = 5, +
      +  TripleSingleQuotedString = 6, +TripleDoubleQuotedString = 7, +ClassName = 8, +
      +  FunctionMethodName = 9, +Operator = 10, +Identifier = 11, +
      +  CommentBlock = 12, +UnclosedString = 13, +HighlightedIdentifier = 14, +
      +  Decorator = 15, +DoubleQuotedFString = 16, +SingleQuotedFString = 17, +
      +  TripleSingleQuotedFString = 18, +TripleDoubleQuotedFString = 19 +
      + }
       
      enum  IndentationWarning {
      +  NoWarning = 0, +Inconsistent = 1, +TabsAfterSpaces = 2, +
      +  Spaces = 3, +Tabs = 4 +
      + }
       
      + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldQuotes (bool fold)
       
      virtual void setIndentationWarning (QsciLexerPython::IndentationWarning warn)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerPython (QObject *parent=0)
       
      +virtual ~QsciLexerPython ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QStringList autoCompletionWordSeparators () const
       
      int blockLookback () const
       
      const char * blockStart (int *style=0) const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      +virtual int indentationGuideView () const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      void setFoldCompact (bool fold)
       
      bool foldCompact () const
       
      bool foldQuotes () const
       
      QsciLexerPython::IndentationWarning indentationWarning () const
       
      void setHighlightSubidentifiers (bool enabled)
       
      bool highlightSubidentifiers () const
       
      void setStringsOverNewlineAllowed (bool allowed)
       
      bool stringsOverNewlineAllowed () const
       
      void setV2UnicodeAllowed (bool allowed)
       
      bool v2UnicodeAllowed () const
       
      void setV3BinaryOctalAllowed (bool allowed)
       
      bool v3BinaryOctalAllowed () const
       
      void setV3BytesAllowed (bool allowed)
       
      bool v3BytesAllowed () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerPython class encapsulates the Scintilla Python lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Python lexer.

      + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Number 

      A number.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      Keyword 

      A keyword.

      +
      TripleSingleQuotedString 

      A triple single-quoted string.

      +
      TripleDoubleQuotedString 

      A triple double-quoted string.

      +
      ClassName 

      The name of a class.

      +
      FunctionMethodName 

      The name of a function or method.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      CommentBlock 

      A comment block.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      HighlightedIdentifier 

      A highlighted identifier. These are defined by keyword set

        +
      1. Reimplement keywords() to define keyword set 2.
      2. +
      +
      Decorator 

      A decorator.

      +
      DoubleQuotedFString 

      A double-quoted f-string.

      +
      SingleQuotedFString 

      A single-quoted f-string.

      +
      TripleSingleQuotedFString 

      A triple single-quoted f-string.

      +
      TripleDoubleQuotedFString 

      A triple double-quoted f-string.

      +
      + +
      +
      + +

      ◆ IndentationWarning

      + +
      +
      +

      This enum defines the different conditions that can cause indentations to be displayed as being bad.

      + + + + + + +
      Enumerator
      NoWarning 

      Bad indentation is not displayed differently.

      +
      Inconsistent 

      The indentation is inconsistent when compared to the previous line, ie. it is made up of a different combination of tabs and/or spaces.

      +
      TabsAfterSpaces 

      The indentation is made up of spaces followed by tabs.

      +
      Spaces 

      The indentation contains spaces.

      +
      Tabs 

      The indentation contains tabs.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerPython()

      + +
      +
      + + + + + + + + +
      QsciLexerPython::QsciLexerPython (QObject * parent = 0)
      +
      +

      Construct a QsciLexerPython with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerPython::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ autoCompletionWordSeparators()

      + +
      +
      + + + + + +
      + + + + + + + +
      QStringList QsciLexerPython::autoCompletionWordSeparators () const
      +
      +virtual
      +
      +

      Returns the list of character sequences that can separate auto-completion words. The first in the list is assumed to be the sequence used to separate words in the lexer's API files.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockLookback()

      + +
      +
      + + + + + +
      + + + + + + + +
      int QsciLexerPython::blockLookback () const
      +
      +virtual
      +
      +

      Returns the number of lines prior to the current one when determining the scope of a block when auto-indenting.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPython::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPython::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerPython::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerPython::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerPython::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerPython::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::foldComments () const
      +
      +inline
      +
      +

      Returns true if indented comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ setFoldCompact()

      + +
      +
      + + + + + + + + +
      void QsciLexerPython::setFoldCompact (bool fold)
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ foldQuotes()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::foldQuotes () const
      +
      +inline
      +
      +

      Returns true if triple quoted strings can be folded.

      +
      See also
      setFoldQuotes()
      + +
      +
      + +

      ◆ indentationWarning()

      + +
      +
      + + + + + +
      + + + + + + + +
      QsciLexerPython::IndentationWarning QsciLexerPython::indentationWarning () const
      +
      +inline
      +
      +

      Returns the condition that will cause bad indentations to be displayed.

      +
      See also
      setIndentationWarning()
      + +
      +
      + +

      ◆ setHighlightSubidentifiers()

      + +
      +
      + + + + + + + + +
      void QsciLexerPython::setHighlightSubidentifiers (bool enabled)
      +
      +

      If enabled is true then sub-identifiers defined in keyword set 2 will be highlighted. For example, if it is false and "open" is defined in keyword set 2 then "foo.open" will not be highlighted. The default is true.

      +
      See also
      highlightSubidentifiers()
      + +
      +
      + +

      ◆ highlightSubidentifiers()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::highlightSubidentifiers () const
      +
      +inline
      +
      +

      Returns true if string literals are allowed to span newline characters.

      +
      See also
      setHighlightSubidentifiers()
      + +
      +
      + +

      ◆ setStringsOverNewlineAllowed()

      + +
      +
      + + + + + + + + +
      void QsciLexerPython::setStringsOverNewlineAllowed (bool allowed)
      +
      +

      If allowed is true then string literals are allowed to span newline characters. The default is false.

      +
      See also
      stringsOverNewlineAllowed()
      + +
      +
      + +

      ◆ stringsOverNewlineAllowed()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::stringsOverNewlineAllowed () const
      +
      +inline
      +
      +

      Returns true if string literals are allowed to span newline characters.

      +
      See also
      setStringsOverNewlineAllowed()
      + +
      +
      + +

      ◆ setV2UnicodeAllowed()

      + +
      +
      + + + + + + + + +
      void QsciLexerPython::setV2UnicodeAllowed (bool allowed)
      +
      +

      If allowed is true then Python v2 unicode string literals (e.g. u"utf8") are allowed. The default is true.

      +
      See also
      v2UnicodeAllowed()
      + +
      +
      + +

      ◆ v2UnicodeAllowed()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::v2UnicodeAllowed () const
      +
      +inline
      +
      +

      Returns true if Python v2 unicode string literals (e.g. u"utf8") are allowed.

      +
      See also
      setV2UnicodeAllowed()
      + +
      +
      + +

      ◆ setV3BinaryOctalAllowed()

      + +
      +
      + + + + + + + + +
      void QsciLexerPython::setV3BinaryOctalAllowed (bool allowed)
      +
      +

      If allowed is true then Python v3 binary and octal literals (e.g. 0b1011, 0o712) are allowed. The default is true.

      +
      See also
      v3BinaryOctalAllowed()
      + +
      +
      + +

      ◆ v3BinaryOctalAllowed()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::v3BinaryOctalAllowed () const
      +
      +inline
      +
      +

      Returns true if Python v3 binary and octal literals (e.g. 0b1011, 0o712) are allowed.

      +
      See also
      setV3BinaryOctalAllowed()
      + +
      +
      + +

      ◆ setV3BytesAllowed()

      + +
      +
      + + + + + + + + +
      void QsciLexerPython::setV3BytesAllowed (bool allowed)
      +
      +

      If allowed is true then Python v3 bytes string literals (e.g. b"bytes") are allowed. The default is true.

      +
      See also
      v3BytesAllowed()
      + +
      +
      + +

      ◆ v3BytesAllowed()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerPython::v3BytesAllowed () const
      +
      +inline
      +
      +

      Returns true if Python v3 bytes string literals (e.g. b"bytes") are allowed.

      +
      See also
      setV3BytesAllowed()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPython::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then indented comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldQuotes

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPython::setFoldQuotes (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then triple quoted strings can be folded. The default is false.

      +
      See also
      foldQuotes()
      + +
      +
      + +

      ◆ setIndentationWarning

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerPython::setIndentationWarning (QsciLexerPython::IndentationWarning warn)
      +
      +virtualslot
      +
      +

      Sets the condition that will cause bad indentations to be displayed.

      +
      See also
      indentationWarning()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPython::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerPython::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerRuby-members.html b/third_party/qscintilla/doc/html/classQsciLexerRuby-members.html new file mode 100644 index 0000000..4d47b45 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerRuby-members.html @@ -0,0 +1,147 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerRuby Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerRuby, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      Backticks enum valueQsciLexerRuby
      blockEnd(int *style=0) constQsciLexerRubyvirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexerRubyvirtual
      blockStartKeyword(int *style=0) constQsciLexerRubyvirtual
      braceStyle() constQsciLexerRubyvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      ClassName enum valueQsciLexerRuby
      ClassVariable enum valueQsciLexerRuby
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerRuby
      DataSection enum valueQsciLexerRuby
      Default enum valueQsciLexerRuby
      defaultColor(int style) constQsciLexerRubyvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerRubyvirtual
      defaultFont(int style) constQsciLexerRubyvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerRubyvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      DemotedKeyword enum valueQsciLexerRuby
      description(int style) constQsciLexerRubyvirtual
      DoubleQuotedString enum valueQsciLexerRuby
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      Error enum valueQsciLexerRuby
      foldComments() constQsciLexerRubyinline
      foldCompact() constQsciLexerRubyinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      FunctionMethodName enum valueQsciLexerRuby
      Global enum valueQsciLexerRuby
      HereDocument enum valueQsciLexerRuby
      HereDocumentDelimiter enum valueQsciLexerRuby
      Identifier enum valueQsciLexerRuby
      indentationGuideView() constQsciLexervirtual
      InstanceVariable enum valueQsciLexerRuby
      Keyword enum valueQsciLexerRuby
      keywords(int set) constQsciLexerRubyvirtual
      language() constQsciLexerRubyvirtual
      lexer() constQsciLexerRubyvirtual
      lexerId() constQsciLexervirtual
      ModuleName enum valueQsciLexerRuby
      Number enum valueQsciLexerRuby
      Operator enum valueQsciLexerRuby
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PercentStringQ enum valueQsciLexerRuby
      PercentStringq enum valueQsciLexerRuby
      PercentStringr enum valueQsciLexerRuby
      PercentStringw enum valueQsciLexerRuby
      PercentStringx enum valueQsciLexerRuby
      POD enum valueQsciLexerRuby
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerRuby(QObject *parent=0)QsciLexerRuby
      readProperties(QSettings &qs, const QString &prefix)QsciLexerRubyprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerRubyvirtual
      Regex enum valueQsciLexerRuby
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerRuby
      setFoldCompact(bool fold)QsciLexerRuby
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      SingleQuotedString enum valueQsciLexerRuby
      Stderr enum valueQsciLexerRuby
      Stdin enum valueQsciLexerRuby
      Stdout enum valueQsciLexerRuby
      styleBitsNeeded() constQsciLexervirtual
      Symbol enum valueQsciLexerRuby
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerRubyprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerRuby()QsciLexerRubyvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerRuby.html b/third_party/qscintilla/doc/html/classQsciLexerRuby.html new file mode 100644 index 0000000..3076cb6 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerRuby.html @@ -0,0 +1,793 @@ + + + + + + + +QScintilla: QsciLexerRuby Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexerruby.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Error = 1, +Comment = 2, +
      +  POD = 3, +Number = 4, +Keyword = 5, +
      +  DoubleQuotedString = 6, +SingleQuotedString = 7, +ClassName = 8, +
      +  FunctionMethodName = 9, +Operator = 10, +Identifier = 11, +
      +  Regex = 12, +Global = 13, +Symbol = 14, +
      +  ModuleName = 15, +InstanceVariable = 16, +ClassVariable = 17, +
      +  Backticks = 18, +DataSection = 19, +HereDocumentDelimiter = 20, +
      +  HereDocument = 21, +PercentStringq = 24, +PercentStringQ = 25, +
      +  PercentStringx = 26, +PercentStringr = 27, +PercentStringw = 28, +
      +  DemotedKeyword = 29, +Stdin = 30, +Stdout = 31, +
      +  Stderr = 40 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerRuby (QObject *parent=0)
       
      +virtual ~QsciLexerRuby ()
       
      +const char * language () const
       
      const char * lexer () const
       
      const char * blockEnd (int *style=0) const
       
      const char * blockStart (int *style=0) const
       
      const char * blockStartKeyword (int *style=0) const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      void setFoldComments (bool fold)
       
      bool foldComments () const
       
      void setFoldCompact (bool fold)
       
      bool foldCompact () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual int blockLookback () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerRuby class encapsulates the Scintilla Ruby lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Ruby lexer.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Error 

      An error.

      +
      Comment 

      A comment.

      +
      POD 

      A POD.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      ClassName 

      The name of a class.

      +
      FunctionMethodName 

      The name of a function or method.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      Regex 

      A regular expression.

      +
      Global 

      A global.

      +
      Symbol 

      A symbol.

      +
      ModuleName 

      The name of a module.

      +
      InstanceVariable 

      An instance variable.

      +
      ClassVariable 

      A class variable.

      +
      Backticks 

      Backticks.

      +
      DataSection 

      A data section.

      +
      HereDocumentDelimiter 

      A here document delimiter.

      +
      HereDocument 

      A here document.

      +
      PercentStringq 

      A q string.

      +
      PercentStringQ 

      A Q string.

      +
      PercentStringx 

      A x string.

      +
      PercentStringr 

      A r string.

      +
      PercentStringw 

      A w string.

      +
      DemotedKeyword 

      A demoted keyword.

      +
      Stdin 

      stdin.

      +
      Stdout 

      stdout.

      +
      Stderr 

      stderr.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerRuby()

      + +
      +
      + + + + + + + + +
      QsciLexerRuby::QsciLexerRuby (QObject * parent = 0)
      +
      +

      Construct a QsciLexerRuby with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerRuby::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockEnd()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerRuby::blockEnd (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the end of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStart()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerRuby::blockStart (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of words or characters in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ blockStartKeyword()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerRuby::blockStartKeyword (int * style = 0) const
      +
      +virtual
      +
      +

      Returns a space separated list of keywords in a particular style that define the start of a block for auto-indentation. The style is returned via style.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerRuby::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultpaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerRuby::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerRuby::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerRuby::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerRuby::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ setFoldComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerRuby::setFoldComments (bool fold)
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerRuby::foldComments () const
      +
      +inline
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ setFoldCompact()

      + +
      +
      + + + + + + + + +
      void QsciLexerRuby::setFoldCompact (bool fold)
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerRuby::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerRuby::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerRuby::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerSQL-members.html b/third_party/qscintilla/doc/html/classQsciLexerSQL-members.html new file mode 100644 index 0000000..fa8b650 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerSQL-members.html @@ -0,0 +1,150 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerSQL Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerSQL, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      backslashEscapes() constQsciLexerSQLinline
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerSQLvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerSQL
      CommentDoc enum valueQsciLexerSQL
      CommentDocKeyword enum valueQsciLexerSQL
      CommentDocKeywordError enum valueQsciLexerSQL
      CommentLine enum valueQsciLexerSQL
      CommentLineHash enum valueQsciLexerSQL
      Default enum valueQsciLexerSQL
      defaultColor(int style) constQsciLexerSQLvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerSQLvirtual
      defaultFont(int style) constQsciLexerSQLvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerSQLvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerSQLvirtual
      dottedWords() constQsciLexerSQLinline
      DoubleQuotedString enum valueQsciLexerSQL
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldAtElse() constQsciLexerSQLinline
      foldComments() constQsciLexerSQLinline
      foldCompact() constQsciLexerSQLinline
      foldOnlyBegin() constQsciLexerSQLinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      hashComments() constQsciLexerSQLinline
      Identifier enum valueQsciLexerSQL
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerSQL
      keywords(int set) constQsciLexerSQLvirtual
      KeywordSet5 enum valueQsciLexerSQL
      KeywordSet6 enum valueQsciLexerSQL
      KeywordSet7 enum valueQsciLexerSQL
      KeywordSet8 enum valueQsciLexerSQL
      language() constQsciLexerSQLvirtual
      lexer() constQsciLexerSQLvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerSQL
      Operator enum valueQsciLexerSQL
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PlusComment enum valueQsciLexerSQL
      PlusKeyword enum valueQsciLexerSQL
      PlusPrompt enum valueQsciLexerSQL
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerSQL(QObject *parent=0)QsciLexerSQL
      QuotedIdentifier enum valueQsciLexerSQL
      quotedIdentifiers() constQsciLexerSQLinline
      QuotedOperator enum valueQsciLexerSQL
      readProperties(QSettings &qs, const QString &prefix)QsciLexerSQLprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerSQLvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setBackslashEscapes(bool enable)QsciLexerSQLvirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDottedWords(bool enable)QsciLexerSQL
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerSQL
      setFoldComments(bool fold)QsciLexerSQLvirtualslot
      setFoldCompact(bool fold)QsciLexerSQLvirtualslot
      setFoldOnlyBegin(bool fold)QsciLexerSQL
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setHashComments(bool enable)QsciLexerSQL
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setQuotedIdentifiers(bool enable)QsciLexerSQL
      SingleQuotedString enum valueQsciLexerSQL
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerSQLprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerSQL()QsciLexerSQLvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerSQL.html b/third_party/qscintilla/doc/html/classQsciLexerSQL.html new file mode 100644 index 0000000..e8dfbe7 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerSQL.html @@ -0,0 +1,1010 @@ + + + + + + + +QScintilla: QsciLexerSQL Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexersql.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +CommentLine = 2, +
      +  CommentDoc = 3, +Number = 4, +Keyword = 5, +
      +  DoubleQuotedString = 6, +SingleQuotedString = 7, +PlusKeyword = 8, +
      +  PlusPrompt = 9, +Operator = 10, +Identifier = 11, +
      +  PlusComment = 13, +CommentLineHash = 15, +CommentDocKeyword = 17, +
      +  CommentDocKeywordError = 18, +KeywordSet5 = 19, +KeywordSet6 = 20, +
      +  KeywordSet7 = 21, +KeywordSet8 = 22, +QuotedIdentifier = 23, +
      +  QuotedOperator = 24 +
      + }
       
      + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setBackslashEscapes (bool enable)
       
      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerSQL (QObject *parent=0)
       
      +virtual ~QsciLexerSQL ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool backslashEscapes () const
       
      void setDottedWords (bool enable)
       
      bool dottedWords () const
       
      void setFoldAtElse (bool fold)
       
      bool foldAtElse () const
       
      bool foldComments () const
       
      bool foldCompact () const
       
      void setFoldOnlyBegin (bool fold)
       
      bool foldOnlyBegin () const
       
      void setHashComments (bool enable)
       
      bool hashComments () const
       
      void setQuotedIdentifiers (bool enable)
       
      bool quotedIdentifiers () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerSQL class encapsulates the Scintilla SQL lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the SQL lexer.

      + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      CommentLine 

      A line comment.

      +
      CommentDoc 

      A JavaDoc/Doxygen style comment.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      DoubleQuotedString 

      A double-quoted string.

      +
      SingleQuotedString 

      A single-quoted string.

      +
      PlusKeyword 

      An SQL*Plus keyword.

      +
      PlusPrompt 

      An SQL*Plus prompt.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      PlusComment 

      An SQL*Plus comment.

      +
      CommentLineHash 

      A '#' line comment.

      +
      CommentDocKeyword 

      A JavaDoc/Doxygen keyword.

      +
      CommentDocKeywordError 

      A JavaDoc/Doxygen keyword error.

      +
      KeywordSet5 

      A keyword defined in keyword set number 5. The class must be sub-classed and re-implement keywords() to make use of this style. Note that keywords must be defined using lower case.

      +
      KeywordSet6 

      A keyword defined in keyword set number 6. The class must be sub-classed and re-implement keywords() to make use of this style. Note that keywords must be defined using lower case.

      +
      KeywordSet7 

      A keyword defined in keyword set number 7. The class must be sub-classed and re-implement keywords() to make use of this style. Note that keywords must be defined using lower case.

      +
      KeywordSet8 

      A keyword defined in keyword set number 8. The class must be sub-classed and re-implement keywords() to make use of this style. Note that keywords must be defined using lower case.

      +
      QuotedIdentifier 

      A quoted identifier.

      +
      QuotedOperator 

      A quoted operator.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerSQL()

      + +
      +
      + + + + + + + + +
      QsciLexerSQL::QsciLexerSQL (QObject * parent = 0)
      +
      +

      Construct a QsciLexerSQL with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerSQL::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerSQL::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerSQL::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerSQL::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerSQL::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerSQL::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ backslashEscapes()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::backslashEscapes () const
      +
      +inline
      +
      +

      Returns true if backslash escapes are enabled.

      +
      See also
      setBackslashEscapes()
      + +
      +
      + +

      ◆ setDottedWords()

      + +
      +
      + + + + + + + + +
      void QsciLexerSQL::setDottedWords (bool enable)
      +
      +

      If enable is true then words may contain dots (i.e. periods or full stops). The default is false.

      +
      See also
      dottedWords()
      + +
      +
      + +

      ◆ dottedWords()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::dottedWords () const
      +
      +inline
      +
      +

      Returns true if words may contain dots (i.e. periods or full stops).

      +
      See also
      setDottedWords()
      + +
      +
      + +

      ◆ setFoldAtElse()

      + +
      +
      + + + + + + + + +
      void QsciLexerSQL::setFoldAtElse (bool fold)
      +
      +

      If fold is true then ELSE blocks can be folded. The default is false.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::foldAtElse () const
      +
      +inline
      +
      +

      Returns true if ELSE blocks can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::foldComments () const
      +
      +inline
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldOnlyBegin()

      + +
      +
      + + + + + + + + +
      void QsciLexerSQL::setFoldOnlyBegin (bool fold)
      +
      +

      If fold is true then only BEGIN blocks can be folded. The default is false.

      +
      See also
      foldOnlyBegin()
      + +
      +
      + +

      ◆ foldOnlyBegin()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::foldOnlyBegin () const
      +
      +inline
      +
      +

      Returns true if BEGIN blocks only can be folded.

      +
      See also
      setFoldOnlyBegin()
      + +
      +
      + +

      ◆ setHashComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerSQL::setHashComments (bool enable)
      +
      +

      If enable is true then '#' is used as a comment character. It is typically enabled for MySQL and disabled for Oracle. The default is false.

      +
      See also
      hashComments()
      + +
      +
      + +

      ◆ hashComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::hashComments () const
      +
      +inline
      +
      +

      Returns true if '#' is used as a comment character.

      +
      See also
      setHashComments()
      + +
      +
      + +

      ◆ setQuotedIdentifiers()

      + +
      +
      + + + + + + + + +
      void QsciLexerSQL::setQuotedIdentifiers (bool enable)
      +
      +

      If enable is true then quoted identifiers are enabled. The default is false.

      +
      See also
      quotedIdentifiers()
      + +
      +
      + +

      ◆ quotedIdentifiers()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerSQL::quotedIdentifiers () const
      +
      +inline
      +
      +

      Returns true if quoted identifiers are enabled.

      +
      See also
      setQuotedIdentifiers()
      + +
      +
      + +

      ◆ setBackslashEscapes

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerSQL::setBackslashEscapes (bool enable)
      +
      +virtualslot
      +
      +

      If enable is true then backslash escapes are enabled. The default is false.

      +
      See also
      backslashEscapes()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerSQL::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerSQL::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerSQL::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerSQL::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerSRec-members.html b/third_party/qscintilla/doc/html/classQsciLexerSRec-members.html new file mode 100644 index 0000000..cce6d7e --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerSRec-members.html @@ -0,0 +1,131 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerSRec Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerSRec, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      ByteCount enum valueQsciLexerHex
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      Checksum enum valueQsciLexerHex
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      DataAddress enum valueQsciLexerHex
      Default enum valueQsciLexerHex
      defaultColor(int style) constQsciLexerHexvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerHexvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerHexvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerSRecvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EvenData enum valueQsciLexerHex
      ExtendedAddress enum valueQsciLexerHex
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      IncorrectByteCount enum valueQsciLexerHex
      IncorrectChecksum enum valueQsciLexerHex
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerSRecvirtual
      lexer() constQsciLexerSRecvirtual
      lexerId() constQsciLexervirtual
      NoAddress enum valueQsciLexerHex
      OddData enum valueQsciLexerHex
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerHex(QObject *parent=0)QsciLexerHex
      QsciLexerSRec(QObject *parent=0)QsciLexerSRec
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      RecordCount enum valueQsciLexerHex
      RecordStart enum valueQsciLexerHex
      RecordType enum valueQsciLexerHex
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      StartAddress enum valueQsciLexerHex
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TrailingGarbage enum valueQsciLexerHex
      UnknownData enum valueQsciLexerHex
      UnknownRecordType enum valueQsciLexerHex
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerHex()QsciLexerHexvirtual
      ~QsciLexerSRec()QsciLexerSRecvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerSRec.html b/third_party/qscintilla/doc/html/classQsciLexerSRec.html new file mode 100644 index 0000000..db1e90e --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerSRec.html @@ -0,0 +1,282 @@ + + + + + + + +QScintilla: QsciLexerSRec Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerSRec Class Reference
      +
      +
      + +

      #include <qscilexersrec.h>

      + +

      Inherits QsciLexerHex.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerSRec (QObject *parent=0)
       
      +virtual ~QsciLexerSRec ()
       
      +const char * language () const
       
      +const char * lexer () const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexerHex
       QsciLexerHex (QObject *parent=0)
       
      +virtual ~QsciLexerHex ()
       
      +QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerHex
      enum  {
      +  Default = 0, +RecordStart = 1, +RecordType = 2, +
      +  UnknownRecordType = 3, +ByteCount = 4, +IncorrectByteCount = 5, +
      +  NoAddress = 6, +DataAddress = 7, +RecordCount = 8, +
      +  StartAddress = 9, +ExtendedAddress = 11, +OddData = 12, +
      +  EvenData = 13, +UnknownData = 14, +Checksum = 16, +
      +  IncorrectChecksum = 17, +TrailingGarbage = 18 +
      + }
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerSRec class encapsulates the Scintilla S-Record lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerSRec()

      + +
      +
      + + + + + + + + +
      QsciLexerSRec::QsciLexerSRec (QObject * parent = 0)
      +
      +

      Construct a QsciLexerSRec with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerSRec::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Reimplemented from QsciLexerHex.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerSpice-members.html b/third_party/qscintilla/doc/html/classQsciLexerSpice-members.html new file mode 100644 index 0000000..1cca647 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerSpice-members.html @@ -0,0 +1,121 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerSpice Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerSpice, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerSpicevirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Command enum valueQsciLexerSpice
      Comment enum valueQsciLexerSpice
      Default enum valueQsciLexerSpice
      defaultColor(int style) constQsciLexerSpicevirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerSpicevirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      Delimiter enum valueQsciLexerSpice
      description(int style) constQsciLexerSpicevirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Function enum valueQsciLexerSpice
      Identifier enum valueQsciLexerSpice
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerSpicevirtual
      language() constQsciLexerSpicevirtual
      lexer() constQsciLexerSpicevirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerSpice
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      Parameter enum valueQsciLexerSpice
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerSpice(QObject *parent=0)QsciLexerSpice
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      Value enum valueQsciLexerSpice
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerSpice()QsciLexerSpicevirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerSpice.html b/third_party/qscintilla/doc/html/classQsciLexerSpice.html new file mode 100644 index 0000000..5f16ff2 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerSpice.html @@ -0,0 +1,390 @@ + + + + + + + +QScintilla: QsciLexerSpice Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerSpice Class Reference
      +
      +
      + +

      #include <qscilexerspice.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Identifier = 1, +Command = 2, +
      +  Function = 3, +Parameter = 4, +Number = 5, +
      +  Delimiter = 6, +Value = 7, +Comment = 8 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerSpice (QObject *parent=0)
       
      +virtual ~QsciLexerSpice ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      const char * keywords (int set) const
       
      QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerSpice class encapsulates the Scintilla Spice lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Spice lexer.

      + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Identifier 

      An identifier.

      +
      Command 

      A command.

      +
      Function 

      A function.

      +
      Parameter 

      A parameter.

      +
      Number 

      A number.

      +
      Delimiter 

      A delimiter.

      +
      Value 

      A value.

      +
      Comment 

      A comment.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerSpice()

      + +
      +
      + + + + + + + + +
      QsciLexerSpice::QsciLexerSpice (QObject * parent = 0)
      +
      +

      Construct a QsciLexerSpice with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerSpice::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerSpice::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerSpice::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerSpice::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerTCL-members.html b/third_party/qscintilla/doc/html/classQsciLexerTCL-members.html new file mode 100644 index 0000000..b145a93 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerTCL-members.html @@ -0,0 +1,136 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerTCL Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerTCL, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerTCLvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerTCL
      CommentBlock enum valueQsciLexerTCL
      CommentBox enum valueQsciLexerTCL
      CommentLine enum valueQsciLexerTCL
      Default enum valueQsciLexerTCL
      defaultColor(int style) constQsciLexerTCLvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerTCLvirtual
      defaultFont(int style) constQsciLexerTCLvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerTCLvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerTCLvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      ExpandKeyword enum valueQsciLexerTCL
      foldComments() constQsciLexerTCLinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerTCL
      indentationGuideView() constQsciLexervirtual
      ITCLKeyword enum valueQsciLexerTCL
      keywords(int set) constQsciLexerTCLvirtual
      KeywordSet6 enum valueQsciLexerTCL
      KeywordSet7 enum valueQsciLexerTCL
      KeywordSet8 enum valueQsciLexerTCL
      KeywordSet9 enum valueQsciLexerTCL
      language() constQsciLexerTCLvirtual
      lexer() constQsciLexerTCLvirtual
      lexerId() constQsciLexervirtual
      Modifier enum valueQsciLexerTCL
      Number enum valueQsciLexerTCL
      Operator enum valueQsciLexerTCL
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerTCL(QObject *parent=0)QsciLexerTCL
      QuotedKeyword enum valueQsciLexerTCL
      QuotedString enum valueQsciLexerTCL
      readProperties(QSettings &qs, const QString &prefix)QsciLexerTCLprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerTCLvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerTCL
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      Substitution enum valueQsciLexerTCL
      SubstitutionBrace enum valueQsciLexerTCL
      TCLKeyword enum valueQsciLexerTCL
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TkCommand enum valueQsciLexerTCL
      TkKeyword enum valueQsciLexerTCL
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerTCLprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerTCL()QsciLexerTCLvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerTCL.html b/third_party/qscintilla/doc/html/classQsciLexerTCL.html new file mode 100644 index 0000000..c6ef3e9 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerTCL.html @@ -0,0 +1,625 @@ + + + + + + + +QScintilla: QsciLexerTCL Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexertcl.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +CommentLine = 2, +
      +  Number = 3, +QuotedKeyword = 4, +QuotedString = 5, +
      +  Operator = 6, +Identifier = 7, +Substitution = 8, +
      +  SubstitutionBrace = 9, +Modifier = 10, +ExpandKeyword = 11, +
      +  TCLKeyword = 12, +TkKeyword = 13, +ITCLKeyword = 14, +
      +  TkCommand = 15, +KeywordSet6 = 16, +KeywordSet7 = 17, +
      +  KeywordSet8 = 18, +KeywordSet9 = 19, +CommentBox = 20, +
      +  CommentBlock = 21 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerTCL (QObject *parent=0)
       
      +virtual ~QsciLexerTCL ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      void setFoldComments (bool fold)
       
      bool foldComments () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerTCL class encapsulates the Scintilla TCL lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the TCL lexer.

      + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      CommentLine 

      A comment line.

      +
      Number 

      A number.

      +
      QuotedKeyword 

      A quoted keyword.

      +
      QuotedString 

      A quoted string.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      Substitution 

      A substitution.

      +
      SubstitutionBrace 

      A substitution starting with a brace.

      +
      Modifier 

      A modifier.

      +
      ExpandKeyword 

      Expand keyword (defined in keyword set number 5).

      +
      TCLKeyword 

      A TCL keyword (defined in keyword set number 1).

      +
      TkKeyword 

      A Tk keyword (defined in keyword set number 2).

      +
      ITCLKeyword 

      An iTCL keyword (defined in keyword set number 3).

      +
      TkCommand 

      A Tk command (defined in keyword set number 4).

      +
      KeywordSet6 

      A keyword defined in keyword set number 6. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet7 

      A keyword defined in keyword set number 7. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet8 

      A keyword defined in keyword set number 8. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      KeywordSet9 

      A keyword defined in keyword set number 9. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      CommentBox 

      A comment box.

      +
      CommentBlock 

      A comment block.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerTCL()

      + +
      +
      + + + + + + + + +
      QsciLexerTCL::QsciLexerTCL (QObject * parent = 0)
      +
      +

      Construct a QsciLexerTCL with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerTCL::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerTCL::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerTCL::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerTCL::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerTCL::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerTCL::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ setFoldComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerTCL::setFoldComments (bool fold)
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerTCL::foldComments () const
      +
      +inline
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerTCL::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerTCL::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerTeX-members.html b/third_party/qscintilla/doc/html/classQsciLexerTeX-members.html new file mode 100644 index 0000000..2b551c0 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerTeX-members.html @@ -0,0 +1,126 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerTeX Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerTeX, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Command enum valueQsciLexerTeX
      Default enum valueQsciLexerTeX
      defaultColor(int style) constQsciLexerTeXvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont() constQsciLexer
      defaultFont(int style) constQsciLexervirtual
      defaultPaper() constQsciLexer
      defaultPaper(int style) constQsciLexervirtual
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerTeXvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldComments() constQsciLexerTeXinline
      foldCompact() constQsciLexerTeXinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Group enum valueQsciLexerTeX
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexerTeXvirtual
      language() constQsciLexerTeXvirtual
      lexer() constQsciLexerTeXvirtual
      lexerId() constQsciLexervirtual
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      processComments() constQsciLexerTeXinline
      processIf() constQsciLexerTeXinline
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerTeX(QObject *parent=0)QsciLexerTeX
      readProperties(QSettings &qs, const QString &prefix)QsciLexerTeXprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerTeXvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerTeX
      setFoldCompact(bool fold)QsciLexerTeX
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setProcessComments(bool enable)QsciLexerTeX
      setProcessIf(bool enable)QsciLexerTeX
      Special enum valueQsciLexerTeX
      styleBitsNeeded() constQsciLexervirtual
      Symbol enum valueQsciLexerTeX
      Text enum valueQsciLexerTeX
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      wordCharacters() constQsciLexerTeXvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerTeXprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerTeX()QsciLexerTeXvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerTeX.html b/third_party/qscintilla/doc/html/classQsciLexerTeX.html new file mode 100644 index 0000000..4bcff8d --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerTeX.html @@ -0,0 +1,666 @@ + + + + + + + +QScintilla: QsciLexerTeX Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexertex.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Special = 1, +Group = 2, +
      +  Symbol = 3, +Command = 4, +Text = 5 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerTeX (QObject *parent=0)
       
      +virtual ~QsciLexerTeX ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +const char * wordCharacters () const
       
      +QColor defaultColor (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      void setFoldComments (bool fold)
       
      bool foldComments () const
       
      void setFoldCompact (bool fold)
       
      bool foldCompact () const
       
      void setProcessComments (bool enable)
       
      bool processComments () const
       
      void setProcessIf (bool enable)
       
      bool processIf () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      +virtual QFont defaultFont (int style) const
       
      QColor defaultPaper () const
       
      +virtual QColor defaultPaper (int style) const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerTeX class encapsulates the Scintilla TeX lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the TeX lexer.

      + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Special 

      A special.

      +
      Group 

      A group.

      +
      Symbol 

      A symbol.

      +
      Command 

      A command.

      +
      Text 

      Text.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerTeX()

      + +
      +
      + + + + + + + + +
      QsciLexerTeX::QsciLexerTeX (QObject * parent = 0)
      +
      +

      Construct a QsciLexerTeX with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerTeX::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerTeX::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerTeX::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerTeX::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ setFoldComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerTeX::setFoldComments (bool fold)
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerTeX::foldComments () const
      +
      +inline
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ setFoldCompact()

      + +
      +
      + + + + + + + + +
      void QsciLexerTeX::setFoldCompact (bool fold)
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerTeX::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setProcessComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerTeX::setProcessComments (bool enable)
      +
      +

      If enable is true then comments are processed as TeX source otherwise they are ignored. The default is false.

      +
      See also
      processComments()
      + +
      +
      + +

      ◆ processComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerTeX::processComments () const
      +
      +inline
      +
      +

      Returns true if comments are processed as TeX source.

      +
      See also
      setProcessComments()
      + +
      +
      + +

      ◆ setProcessIf()

      + +
      +
      + + + + + + + + +
      void QsciLexerTeX::setProcessIf (bool enable)
      +
      +

      If enable is true then \if<unknown> processed is processed as a command. The default is true.

      +
      See also
      processIf()
      + +
      +
      + +

      ◆ processIf()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerTeX::processIf () const
      +
      +inline
      +
      +

      Returns true if \if<unknown> is processed as a command.

      +
      See also
      setProcessIf()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerTeX::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerTeX::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerTekHex-members.html b/third_party/qscintilla/doc/html/classQsciLexerTekHex-members.html new file mode 100644 index 0000000..48bfca7 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerTekHex-members.html @@ -0,0 +1,131 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerTekHex Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerTekHex, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      ByteCount enum valueQsciLexerHex
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      Checksum enum valueQsciLexerHex
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      DataAddress enum valueQsciLexerHex
      Default enum valueQsciLexerHex
      defaultColor(int style) constQsciLexerHexvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexervirtual
      defaultFont(int style) constQsciLexerHexvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerHexvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerTekHexvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      EvenData enum valueQsciLexerHex
      ExtendedAddress enum valueQsciLexerHex
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      IncorrectByteCount enum valueQsciLexerHex
      IncorrectChecksum enum valueQsciLexerHex
      indentationGuideView() constQsciLexervirtual
      keywords(int set) constQsciLexervirtual
      language() constQsciLexerTekHexvirtual
      lexer() constQsciLexerTekHexvirtual
      lexerId() constQsciLexervirtual
      NoAddress enum valueQsciLexerHex
      OddData enum valueQsciLexerHex
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerHex(QObject *parent=0)QsciLexerHex
      QsciLexerTekHex(QObject *parent=0)QsciLexerTekHex
      readProperties(QSettings &qs, const QString &prefix)QsciLexerprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      RecordCount enum valueQsciLexerHex
      RecordStart enum valueQsciLexerHex
      RecordType enum valueQsciLexerHex
      refreshProperties()QsciLexervirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      StartAddress enum valueQsciLexerHex
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TrailingGarbage enum valueQsciLexerHex
      UnknownData enum valueQsciLexerHex
      UnknownRecordType enum valueQsciLexerHex
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerHex()QsciLexerHexvirtual
      ~QsciLexerTekHex()QsciLexerTekHexvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerTekHex.html b/third_party/qscintilla/doc/html/classQsciLexerTekHex.html new file mode 100644 index 0000000..00a4298 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerTekHex.html @@ -0,0 +1,282 @@ + + + + + + + +QScintilla: QsciLexerTekHex Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerTekHex Class Reference
      +
      +
      + +

      #include <qscilexertekhex.h>

      + +

      Inherits QsciLexerHex.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerTekHex (QObject *parent=0)
       
      +virtual ~QsciLexerTekHex ()
       
      +const char * language () const
       
      +const char * lexer () const
       
      QString description (int style) const
       
      - Public Member Functions inherited from QsciLexerHex
       QsciLexerHex (QObject *parent=0)
       
      +virtual ~QsciLexerHex ()
       
      +QColor defaultColor (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual const char * keywords (int set) const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      virtual bool defaultEolFill (int style) const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual void refreshProperties ()
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerHex
      enum  {
      +  Default = 0, +RecordStart = 1, +RecordType = 2, +
      +  UnknownRecordType = 3, +ByteCount = 4, +IncorrectByteCount = 5, +
      +  NoAddress = 6, +DataAddress = 7, +RecordCount = 8, +
      +  StartAddress = 9, +ExtendedAddress = 11, +OddData = 12, +
      +  EvenData = 13, +UnknownData = 14, +Checksum = 16, +
      +  IncorrectChecksum = 17, +TrailingGarbage = 18 +
      + }
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      - Protected Member Functions inherited from QsciLexer
      virtual bool readProperties (QSettings &qs, const QString &prefix)
       
      virtual bool writeProperties (QSettings &qs, const QString &prefix) const
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +

      Detailed Description

      +

      The QsciLexerTekHex class encapsulates the Scintilla Tektronix Hex lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerTekHex()

      + +
      +
      + + + + + + + + +
      QsciLexerTekHex::QsciLexerTekHex (QObject * parent = 0)
      +
      +

      Construct a QsciLexerTekHex with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerTekHex::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Reimplemented from QsciLexerHex.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerVHDL-members.html b/third_party/qscintilla/doc/html/classQsciLexerVHDL-members.html new file mode 100644 index 0000000..ccdc881 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerVHDL-members.html @@ -0,0 +1,138 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerVHDL Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerVHDL, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      Attribute enum valueQsciLexerVHDL
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerVHDLvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerVHDL
      CommentBlock enum valueQsciLexerVHDL
      CommentLine enum valueQsciLexerVHDL
      Default enum valueQsciLexerVHDL
      defaultColor(int style) constQsciLexerVHDLvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerVHDLvirtual
      defaultFont(int style) constQsciLexerVHDLvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerVHDLvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerVHDLvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldAtBegin() constQsciLexerVHDL
      foldAtElse() constQsciLexerVHDL
      foldAtParenthesis() constQsciLexerVHDL
      foldComments() constQsciLexerVHDL
      foldCompact() constQsciLexerVHDL
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerVHDL
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerVHDL
      keywords(int set) constQsciLexerVHDLvirtual
      KeywordSet7 enum valueQsciLexerVHDL
      language() constQsciLexerVHDLvirtual
      lexer() constQsciLexerVHDLvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerVHDL
      Operator enum valueQsciLexerVHDL
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerVHDL(QObject *parent=0)QsciLexerVHDL
      readProperties(QSettings &qs, const QString &prefix)QsciLexerVHDLprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerVHDLvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtBegin(bool fold)QsciLexerVHDLvirtualslot
      setFoldAtElse(bool fold)QsciLexerVHDLvirtualslot
      setFoldAtParenthesis(bool fold)QsciLexerVHDLvirtualslot
      setFoldComments(bool fold)QsciLexerVHDLvirtualslot
      setFoldCompact(bool fold)QsciLexerVHDLvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      StandardFunction enum valueQsciLexerVHDL
      StandardOperator enum valueQsciLexerVHDL
      StandardPackage enum valueQsciLexerVHDL
      StandardType enum valueQsciLexerVHDL
      String enum valueQsciLexerVHDL
      styleBitsNeeded() constQsciLexervirtual
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerVHDL
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerVHDLprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerVHDL()QsciLexerVHDLvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerVHDL.html b/third_party/qscintilla/doc/html/classQsciLexerVHDL.html new file mode 100644 index 0000000..5574e23 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerVHDL.html @@ -0,0 +1,813 @@ + + + + + + + +QScintilla: QsciLexerVHDL Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexervhdl.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +CommentLine = 2, +
      +  Number = 3, +String = 4, +Operator = 5, +
      +  Identifier = 6, +UnclosedString = 7, +Keyword = 8, +
      +  StandardOperator = 9, +Attribute = 10, +StandardFunction = 11, +
      +  StandardPackage = 12, +StandardType = 13, +KeywordSet7 = 14, +
      +  CommentBlock = 15 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldAtElse (bool fold)
       
      virtual void setFoldAtBegin (bool fold)
       
      virtual void setFoldAtParenthesis (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerVHDL (QObject *parent=0)
       
      +virtual ~QsciLexerVHDL ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      bool foldCompact () const
       
      bool foldAtElse () const
       
      bool foldAtBegin () const
       
      bool foldAtParenthesis () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerVHDL class encapsulates the Scintilla VHDL lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the VHDL lexer.

      + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      CommentLine 

      A comment line.

      +
      Number 

      A number.

      +
      String 

      A string.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      Keyword 

      A keyword.

      +
      StandardOperator 

      A standard operator.

      +
      Attribute 

      An attribute.

      +
      StandardFunction 

      A standard function.

      +
      StandardPackage 

      A standard package.

      +
      StandardType 

      A standard type.

      +
      KeywordSet7 

      A keyword defined in keyword set number 7. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      CommentBlock 

      A comment block.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerVHDL()

      + +
      +
      + + + + + + + + +
      QsciLexerVHDL::QsciLexerVHDL (QObject * parent = 0)
      +
      +

      Construct a QsciLexerVHDL with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerVHDL::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerVHDL::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerVHDL::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerVHDL::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerVHDL::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerVHDL::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerVHDL::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + + + +
      bool QsciLexerVHDL::foldCompact () const
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + + + +
      bool QsciLexerVHDL::foldAtElse () const
      +
      +

      Returns true if else blocks can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ foldAtBegin()

      + +
      +
      + + + + + + + +
      bool QsciLexerVHDL::foldAtBegin () const
      +
      +

      Returns true if begin blocks can be folded.

      +
      See also
      setFoldAtBegin()
      + +
      +
      + +

      ◆ foldAtParenthesis()

      + +
      +
      + + + + + + + +
      bool QsciLexerVHDL::foldAtParenthesis () const
      +
      +

      Returns true if blocks can be folded at a parenthesis.

      +
      See also
      setFoldAtParenthesis()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerVHDL::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is true.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ setFoldCompact

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerVHDL::setFoldCompact (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ setFoldAtElse

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerVHDL::setFoldAtElse (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then else blocks can be folded. The default is true.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ setFoldAtBegin

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerVHDL::setFoldAtBegin (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then begin blocks can be folded. The default is true.

      +
      See also
      foldAtBegin()
      + +
      +
      + +

      ◆ setFoldAtParenthesis

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerVHDL::setFoldAtParenthesis (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then blocks can be folded at a parenthesis. The default is true.

      +
      See also
      foldAtParenthesis()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerVHDL::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerVHDL::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerVerilog-members.html b/third_party/qscintilla/doc/html/classQsciLexerVerilog-members.html new file mode 100644 index 0000000..ec2c0af --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerVerilog-members.html @@ -0,0 +1,160 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerVerilog Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerVerilog, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexerVerilogvirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerVerilog
      CommentBang enum valueQsciLexerVerilog
      CommentKeyword enum valueQsciLexerVerilog
      CommentLine enum valueQsciLexerVerilog
      DeclareInputOutputPort enum valueQsciLexerVerilog
      DeclareInputPort enum valueQsciLexerVerilog
      DeclareOutputPort enum valueQsciLexerVerilog
      Default enum valueQsciLexerVerilog
      defaultColor(int style) constQsciLexerVerilogvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerVerilogvirtual
      defaultFont(int style) constQsciLexerVerilogvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerVerilogvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerVerilogvirtual
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldAtElse() constQsciLexerVeriloginline
      foldAtModule() constQsciLexerVeriloginline
      foldComments() constQsciLexerVeriloginline
      foldCompact() constQsciLexerVeriloginline
      foldPreprocessor() constQsciLexerVeriloginline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerVerilog
      InactiveComment enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveCommentBang enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveCommentKeyword enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveCommentLine enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveDeclareInputOutputPort enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveDeclareInputPort enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveDeclareOutputPort enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveDefault enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveIdentifier enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveKeyword enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveKeywordSet2 enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveNumber enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveOperator enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactivePortConnection enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactivePreprocessor enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveString enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveSystemTask enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveUnclosedString enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      InactiveUserKeywordSet enum value (defined in QsciLexerVerilog)QsciLexerVerilog
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerVerilog
      keywords(int set) constQsciLexerVerilogvirtual
      KeywordSet2 enum valueQsciLexerVerilog
      language() constQsciLexerVerilogvirtual
      lexer() constQsciLexerVerilogvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerVerilog
      Operator enum valueQsciLexerVerilog
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PortConnection enum valueQsciLexerVerilog
      Preprocessor enum valueQsciLexerVerilog
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerVerilog(QObject *parent=0)QsciLexerVerilog
      readProperties(QSettings &qs, const QString &prefix)QsciLexerVerilogprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerVerilogvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldAtElse(bool fold)QsciLexerVerilog
      setFoldAtModule(bool fold)QsciLexerVerilog
      setFoldComments(bool fold)QsciLexerVerilog
      setFoldCompact(bool fold)QsciLexerVerilog
      setFoldPreprocessor(bool fold)QsciLexerVerilog
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      String enum valueQsciLexerVerilog
      styleBitsNeeded() constQsciLexervirtual
      SystemTask enum valueQsciLexerVerilog
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnclosedString enum valueQsciLexerVerilog
      UserKeywordSet enum valueQsciLexerVerilog
      wordCharacters() constQsciLexerVerilogvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerVerilogprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerVerilog()QsciLexerVerilogvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerVerilog.html b/third_party/qscintilla/doc/html/classQsciLexerVerilog.html new file mode 100644 index 0000000..8fc8f35 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerVerilog.html @@ -0,0 +1,847 @@ + + + + + + + +QScintilla: QsciLexerVerilog Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerVerilog Class Reference
      +
      +
      + +

      #include <qscilexerverilog.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +InactiveDefault = Default + 64, +Comment = 1, +
      +  InactiveComment = Comment + 64, +CommentLine = 2, +InactiveCommentLine = CommentLine + 64, +
      +  CommentBang = 3, +InactiveCommentBang = CommentBang + 64, +Number = 4, +
      +  InactiveNumber = Number + 64, +Keyword = 5, +InactiveKeyword = Keyword + 64, +
      +  String = 6, +InactiveString = String + 64, +KeywordSet2 = 7, +
      +  InactiveKeywordSet2 = KeywordSet2 + 64, +SystemTask = 8, +InactiveSystemTask = SystemTask + 64, +
      +  Preprocessor = 9, +InactivePreprocessor = Preprocessor + 64, +Operator = 10, +
      +  InactiveOperator = Operator + 64, +Identifier = 11, +InactiveIdentifier = Identifier + 64, +
      +  UnclosedString = 12, +InactiveUnclosedString = UnclosedString + 64, +UserKeywordSet = 19, +
      +  InactiveUserKeywordSet = UserKeywordSet + 64, +CommentKeyword = 20, +InactiveCommentKeyword = CommentKeyword + 64, +
      +  DeclareInputPort = 21, +InactiveDeclareInputPort = DeclareInputPort + 64, +DeclareOutputPort = 22, +
      +  InactiveDeclareOutputPort = DeclareOutputPort + 64, +DeclareInputOutputPort = 23, +InactiveDeclareInputOutputPort = DeclareInputOutputPort + 64, +
      +  PortConnection = 24, +InactivePortConnection = PortConnection + 64 +
      + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerVerilog (QObject *parent=0)
       
      +virtual ~QsciLexerVerilog ()
       
      +const char * language () const
       
      const char * lexer () const
       
      +int braceStyle () const
       
      +const char * wordCharacters () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      void setFoldAtElse (bool fold)
       
      bool foldAtElse () const
       
      void setFoldComments (bool fold)
       
      bool foldComments () const
       
      void setFoldCompact (bool fold)
       
      bool foldCompact () const
       
      void setFoldPreprocessor (bool fold)
       
      bool foldPreprocessor () const
       
      void setFoldAtModule (bool fold)
       
      bool foldAtModule () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerVerilog class encapsulates the Scintilla Verilog lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the Verilog lexer.

      + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      CommentLine 

      A line comment.

      +
      CommentBang 

      A bang comment.

      +
      Number 

      A number.

      +
      Keyword 

      A keyword.

      +
      String 

      A string.

      +
      KeywordSet2 

      A keyword defined in keyword set number 2. The class must be sub-classed and re-implement keywords() to make use of this style.

      +
      SystemTask 

      A system task.

      +
      Preprocessor 

      A pre-processor block.

      +
      Operator 

      An operator.

      +
      Identifier 

      An identifier.

      +
      UnclosedString 

      The end of a line where a string is not closed.

      +
      UserKeywordSet 

      A keyword defined in keyword set number 4. The class must be sub-classed and re-implement keywords() to make use of this style. This set is intended to be used for user defined identifiers and tasks.

      +
      CommentKeyword 

      A keyword comment.

      +
      DeclareInputPort 

      An input port declaration.

      +
      DeclareOutputPort 

      An output port declaration.

      +
      DeclareInputOutputPort 

      An input/output port declaration.

      +
      PortConnection 

      A port connection.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerVerilog()

      + +
      +
      + + + + + + + + +
      QsciLexerVerilog::QsciLexerVerilog (QObject * parent = 0)
      +
      +

      Construct a QsciLexerVerilog with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerVerilog::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerVerilog::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerVerilog::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerVerilog::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerVerilog::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerVerilog::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ setFoldAtElse()

      + +
      +
      + + + + + + + + +
      void QsciLexerVerilog::setFoldAtElse (bool fold)
      +
      +

      If fold is true then "} else {" lines can be folded. The default is false.

      +
      See also
      foldAtElse()
      + +
      +
      + +

      ◆ foldAtElse()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerVerilog::foldAtElse () const
      +
      +inline
      +
      +

      Returns true if "} else {" lines can be folded.

      +
      See also
      setFoldAtElse()
      + +
      +
      + +

      ◆ setFoldComments()

      + +
      +
      + + + + + + + + +
      void QsciLexerVerilog::setFoldComments (bool fold)
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerVerilog::foldComments () const
      +
      +inline
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ setFoldCompact()

      + +
      +
      + + + + + + + + +
      void QsciLexerVerilog::setFoldCompact (bool fold)
      +
      +

      If fold is true then trailing blank lines are included in a fold block. The default is true.

      +
      See also
      foldCompact()
      + +
      +
      + +

      ◆ foldCompact()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerVerilog::foldCompact () const
      +
      +inline
      +
      +

      Returns true if trailing blank lines are included in a fold block.

      +
      See also
      setFoldCompact()
      + +
      +
      + +

      ◆ setFoldPreprocessor()

      + +
      +
      + + + + + + + + +
      void QsciLexerVerilog::setFoldPreprocessor (bool fold)
      +
      +

      If fold is true then preprocessor blocks can be folded. The default is true.

      +
      See also
      foldPreprocessor()
      + +
      +
      + +

      ◆ foldPreprocessor()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerVerilog::foldPreprocessor () const
      +
      +inline
      +
      +

      Returns true if preprocessor blocks can be folded.

      +
      See also
      setFoldPreprocessor()
      + +
      +
      + +

      ◆ setFoldAtModule()

      + +
      +
      + + + + + + + + +
      void QsciLexerVerilog::setFoldAtModule (bool fold)
      +
      +

      If fold is true then modules can be folded. The default is false.

      +
      See also
      foldAtModule()
      + +
      +
      + +

      ◆ foldAtModule()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciLexerVerilog::foldAtModule () const
      +
      +inline
      +
      +

      Returns true if modules can be folded.

      +
      See also
      setFoldAtModule()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerVerilog::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      writeProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerVerilog::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      +
      See also
      readProperties()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerXML-members.html b/third_party/qscintilla/doc/html/classQsciLexerXML-members.html new file mode 100644 index 0000000..d480c66 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerXML-members.html @@ -0,0 +1,240 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerXML Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerXML, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      ASPAtStart enum valueQsciLexerHTML
      ASPJavaScriptComment enum valueQsciLexerHTML
      ASPJavaScriptCommentDoc enum valueQsciLexerHTML
      ASPJavaScriptCommentLine enum valueQsciLexerHTML
      ASPJavaScriptDefault enum valueQsciLexerHTML
      ASPJavaScriptDoubleQuotedString enum valueQsciLexerHTML
      ASPJavaScriptKeyword enum valueQsciLexerHTML
      ASPJavaScriptNumber enum valueQsciLexerHTML
      ASPJavaScriptRegex enum valueQsciLexerHTML
      ASPJavaScriptSingleQuotedString enum valueQsciLexerHTML
      ASPJavaScriptStart enum valueQsciLexerHTML
      ASPJavaScriptSymbol enum valueQsciLexerHTML
      ASPJavaScriptUnclosedString enum valueQsciLexerHTML
      ASPJavaScriptWord enum valueQsciLexerHTML
      ASPPythonClassName enum valueQsciLexerHTML
      ASPPythonComment enum valueQsciLexerHTML
      ASPPythonDefault enum valueQsciLexerHTML
      ASPPythonDoubleQuotedString enum valueQsciLexerHTML
      ASPPythonFunctionMethodName enum valueQsciLexerHTML
      ASPPythonIdentifier enum valueQsciLexerHTML
      ASPPythonKeyword enum valueQsciLexerHTML
      ASPPythonNumber enum valueQsciLexerHTML
      ASPPythonOperator enum valueQsciLexerHTML
      ASPPythonSingleQuotedString enum valueQsciLexerHTML
      ASPPythonStart enum valueQsciLexerHTML
      ASPPythonTripleDoubleQuotedString enum valueQsciLexerHTML
      ASPPythonTripleSingleQuotedString enum valueQsciLexerHTML
      ASPStart enum valueQsciLexerHTML
      ASPVBScriptComment enum valueQsciLexerHTML
      ASPVBScriptDefault enum valueQsciLexerHTML
      ASPVBScriptIdentifier enum valueQsciLexerHTML
      ASPVBScriptKeyword enum valueQsciLexerHTML
      ASPVBScriptNumber enum valueQsciLexerHTML
      ASPVBScriptStart enum valueQsciLexerHTML
      ASPVBScriptString enum valueQsciLexerHTML
      ASPVBScriptUnclosedString enum valueQsciLexerHTML
      ASPXCComment enum valueQsciLexerHTML
      Attribute enum valueQsciLexerHTML
      autoCompletionFillups() constQsciLexerHTMLvirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      caseSensitiveTags() constQsciLexerHTMLinline
      CDATA enum valueQsciLexerHTML
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Default enum valueQsciLexerHTML
      defaultColor(int style) constQsciLexerXMLvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerXMLvirtual
      defaultFont(int style) constQsciLexerXMLvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerXMLvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerHTMLvirtual
      djangoTemplates() constQsciLexerHTMLinline
      editor() constQsciLexerinline
      Entity enum valueQsciLexerHTML
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldCompact() constQsciLexerHTMLinline
      foldPreprocessor() constQsciLexerHTMLinline
      foldScriptComments() constQsciLexerHTMLinline
      foldScriptHeredocs() constQsciLexerHTMLinline
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      HTMLComment enum valueQsciLexerHTML
      HTMLDoubleQuotedString enum valueQsciLexerHTML
      HTMLNumber enum valueQsciLexerHTML
      HTMLSingleQuotedString enum valueQsciLexerHTML
      HTMLValue enum valueQsciLexerHTML
      indentationGuideView() constQsciLexervirtual
      JavaScriptComment enum valueQsciLexerHTML
      JavaScriptCommentDoc enum valueQsciLexerHTML
      JavaScriptCommentLine enum valueQsciLexerHTML
      JavaScriptDefault enum valueQsciLexerHTML
      JavaScriptDoubleQuotedString enum valueQsciLexerHTML
      JavaScriptKeyword enum valueQsciLexerHTML
      JavaScriptNumber enum valueQsciLexerHTML
      JavaScriptRegex enum valueQsciLexerHTML
      JavaScriptSingleQuotedString enum valueQsciLexerHTML
      JavaScriptStart enum valueQsciLexerHTML
      JavaScriptSymbol enum valueQsciLexerHTML
      JavaScriptUnclosedString enum valueQsciLexerHTML
      JavaScriptWord enum valueQsciLexerHTML
      keywords(int set) constQsciLexerXMLvirtual
      language() constQsciLexerXMLvirtual
      lexer() constQsciLexerXMLvirtual
      lexerId() constQsciLexervirtual
      makoTemplates() constQsciLexerHTMLinline
      OtherInTag enum valueQsciLexerHTML
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      PHPComment enum valueQsciLexerHTML
      PHPCommentLine enum valueQsciLexerHTML
      PHPDefault enum valueQsciLexerHTML
      PHPDoubleQuotedString enum valueQsciLexerHTML
      PHPDoubleQuotedVariable enum valueQsciLexerHTML
      PHPKeyword enum valueQsciLexerHTML
      PHPNumber enum valueQsciLexerHTML
      PHPOperator enum valueQsciLexerHTML
      PHPSingleQuotedString enum valueQsciLexerHTML
      PHPStart enum valueQsciLexerHTML
      PHPVariable enum valueQsciLexerHTML
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      PythonClassName enum valueQsciLexerHTML
      PythonComment enum valueQsciLexerHTML
      PythonDefault enum valueQsciLexerHTML
      PythonDoubleQuotedString enum valueQsciLexerHTML
      PythonFunctionMethodName enum valueQsciLexerHTML
      PythonIdentifier enum valueQsciLexerHTML
      PythonKeyword enum valueQsciLexerHTML
      PythonNumber enum valueQsciLexerHTML
      PythonOperator enum valueQsciLexerHTML
      PythonSingleQuotedString enum valueQsciLexerHTML
      PythonStart enum valueQsciLexerHTML
      PythonTripleDoubleQuotedString enum valueQsciLexerHTML
      PythonTripleSingleQuotedString enum valueQsciLexerHTML
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerHTML(QObject *parent=0)QsciLexerHTML
      QsciLexerXML(QObject *parent=0)QsciLexerXML
      readProperties(QSettings &qs, const QString &prefix)QsciLexerXMLprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      refreshProperties()QsciLexerXMLvirtual
      Script enum valueQsciLexerHTML
      scriptsStyled() constQsciLexerXML
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setCaseSensitiveTags(bool sens)QsciLexerHTMLvirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setDjangoTemplates(bool enabled)QsciLexerHTML
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldCompact(bool fold)QsciLexerHTMLvirtualslot
      setFoldPreprocessor(bool fold)QsciLexerHTMLvirtualslot
      setFoldScriptComments(bool fold)QsciLexerHTML
      setFoldScriptHeredocs(bool fold)QsciLexerHTML
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setMakoTemplates(bool enabled)QsciLexerHTML
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      setScriptsStyled(bool styled)QsciLexerXML
      SGMLBlockDefault enum valueQsciLexerHTML
      SGMLCommand enum valueQsciLexerHTML
      SGMLComment enum valueQsciLexerHTML
      SGMLDefault enum valueQsciLexerHTML
      SGMLDoubleQuotedString enum valueQsciLexerHTML
      SGMLEntity enum valueQsciLexerHTML
      SGMLError enum valueQsciLexerHTML
      SGMLParameter enum valueQsciLexerHTML
      SGMLParameterComment enum valueQsciLexerHTML
      SGMLSingleQuotedString enum valueQsciLexerHTML
      SGMLSpecial enum valueQsciLexerHTML
      styleBitsNeeded() constQsciLexervirtual
      Tag enum valueQsciLexerHTML
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      UnknownAttribute enum valueQsciLexerHTML
      UnknownTag enum valueQsciLexerHTML
      VBScriptComment enum valueQsciLexerHTML
      VBScriptDefault enum valueQsciLexerHTML
      VBScriptIdentifier enum valueQsciLexerHTML
      VBScriptKeyword enum valueQsciLexerHTML
      VBScriptNumber enum valueQsciLexerHTML
      VBScriptStart enum valueQsciLexerHTML
      VBScriptString enum valueQsciLexerHTML
      VBScriptUnclosedString enum valueQsciLexerHTML
      wordCharacters() constQsciLexerHTMLvirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerXMLprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      XMLEnd enum valueQsciLexerHTML
      XMLStart enum valueQsciLexerHTML
      XMLTagEnd enum valueQsciLexerHTML
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerHTML()QsciLexerHTMLvirtual
      ~QsciLexerXML()QsciLexerXMLvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerXML.html b/third_party/qscintilla/doc/html/classQsciLexerXML.html new file mode 100644 index 0000000..25ff43f --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerXML.html @@ -0,0 +1,676 @@ + + + + + + + +QScintilla: QsciLexerXML Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciLexerXML Class Reference
      +
      +
      + +

      #include <qscilexerxml.h>

      + +

      Inherits QsciLexerHTML.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerXML (QObject *parent=0)
       
      +virtual ~QsciLexerXML ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      void refreshProperties ()
       
      void setScriptsStyled (bool styled)
       
      bool scriptsStyled () const
       
      - Public Member Functions inherited from QsciLexerHTML
       QsciLexerHTML (QObject *parent=0)
       
      +virtual ~QsciLexerHTML ()
       
      +const char * autoCompletionFillups () const
       
      +const char * wordCharacters () const
       
      QString description (int style) const
       
      bool caseSensitiveTags () const
       
      void setDjangoTemplates (bool enabled)
       
      bool djangoTemplates () const
       
      bool foldCompact () const
       
      bool foldPreprocessor () const
       
      void setFoldScriptComments (bool fold)
       
      bool foldScriptComments () const
       
      void setFoldScriptHeredocs (bool fold)
       
      bool foldScriptHeredocs () const
       
      void setMakoTemplates (bool enabled)
       
      bool makoTemplates () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Additional Inherited Members

      - Public Types inherited from QsciLexerHTML
      enum  {
      +  Default = 0, +Tag = 1, +UnknownTag = 2, +
      +  Attribute = 3, +UnknownAttribute = 4, +HTMLNumber = 5, +
      +  HTMLDoubleQuotedString = 6, +HTMLSingleQuotedString = 7, +OtherInTag = 8, +
      +  HTMLComment = 9, +Entity = 10, +XMLTagEnd = 11, +
      +  XMLStart = 12, +XMLEnd = 13, +Script = 14, +
      +  ASPAtStart = 15, +ASPStart = 16, +CDATA = 17, +
      +  PHPStart = 18, +HTMLValue = 19, +ASPXCComment = 20, +
      +  SGMLDefault = 21, +SGMLCommand = 22, +SGMLParameter = 23, +
      +  SGMLDoubleQuotedString = 24, +SGMLSingleQuotedString = 25, +SGMLError = 26, +
      +  SGMLSpecial = 27, +SGMLEntity = 28, +SGMLComment = 29, +
      +  SGMLParameterComment = 30, +SGMLBlockDefault = 31, +JavaScriptStart = 40, +
      +  JavaScriptDefault = 41, +JavaScriptComment = 42, +JavaScriptCommentLine = 43, +
      +  JavaScriptCommentDoc = 44, +JavaScriptNumber = 45, +JavaScriptWord = 46, +
      +  JavaScriptKeyword = 47, +JavaScriptDoubleQuotedString = 48, +JavaScriptSingleQuotedString = 49, +
      +  JavaScriptSymbol = 50, +JavaScriptUnclosedString = 51, +JavaScriptRegex = 52, +
      +  ASPJavaScriptStart = 55, +ASPJavaScriptDefault = 56, +ASPJavaScriptComment = 57, +
      +  ASPJavaScriptCommentLine = 58, +ASPJavaScriptCommentDoc = 59, +ASPJavaScriptNumber = 60, +
      +  ASPJavaScriptWord = 61, +ASPJavaScriptKeyword = 62, +ASPJavaScriptDoubleQuotedString = 63, +
      +  ASPJavaScriptSingleQuotedString = 64, +ASPJavaScriptSymbol = 65, +ASPJavaScriptUnclosedString = 66, +
      +  ASPJavaScriptRegex = 67, +VBScriptStart = 70, +VBScriptDefault = 71, +
      +  VBScriptComment = 72, +VBScriptNumber = 73, +VBScriptKeyword = 74, +
      +  VBScriptString = 75, +VBScriptIdentifier = 76, +VBScriptUnclosedString = 77, +
      +  ASPVBScriptStart = 80, +ASPVBScriptDefault = 81, +ASPVBScriptComment = 82, +
      +  ASPVBScriptNumber = 83, +ASPVBScriptKeyword = 84, +ASPVBScriptString = 85, +
      +  ASPVBScriptIdentifier = 86, +ASPVBScriptUnclosedString = 87, +PythonStart = 90, +
      +  PythonDefault = 91, +PythonComment = 92, +PythonNumber = 93, +
      +  PythonDoubleQuotedString = 94, +PythonSingleQuotedString = 95, +PythonKeyword = 96, +
      +  PythonTripleSingleQuotedString = 97, +PythonTripleDoubleQuotedString = 98, +PythonClassName = 99, +
      +  PythonFunctionMethodName = 100, +PythonOperator = 101, +PythonIdentifier = 102, +
      +  ASPPythonStart = 105, +ASPPythonDefault = 106, +ASPPythonComment = 107, +
      +  ASPPythonNumber = 108, +ASPPythonDoubleQuotedString = 109, +ASPPythonSingleQuotedString = 110, +
      +  ASPPythonKeyword = 111, +ASPPythonTripleSingleQuotedString = 112, +ASPPythonTripleDoubleQuotedString = 113, +
      +  ASPPythonClassName = 114, +ASPPythonFunctionMethodName = 115, +ASPPythonOperator = 116, +
      +  ASPPythonIdentifier = 117, +PHPDefault = 118, +PHPDoubleQuotedString = 119, +
      +  PHPSingleQuotedString = 120, +PHPKeyword = 121, +PHPNumber = 122, +
      +  PHPVariable = 123, +PHPComment = 124, +PHPCommentLine = 125, +
      +  PHPDoubleQuotedVariable = 126, +PHPOperator = 127 +
      + }
       
      - Public Slots inherited from QsciLexerHTML
      virtual void setFoldCompact (bool fold)
       
      virtual void setFoldPreprocessor (bool fold)
       
      virtual void setCaseSensitiveTags (bool sens)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerXML class encapsulates the Scintilla XML lexer.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerXML()

      + +
      +
      + + + + + + + + +
      QsciLexerXML::QsciLexerXML (QObject * parent = 0)
      +
      +

      Construct a QsciLexerXML with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerXML::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexerHTML.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerXML::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexerHTML.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerXML::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexerHTML.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerXML::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexerHTML.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerXML::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexerHTML.

      + +
      +
      + +

      ◆ setScriptsStyled()

      + +
      +
      + + + + + + + + +
      void QsciLexerXML::setScriptsStyled (bool styled)
      +
      +

      If allowed is true then scripts are styled. The default is true.

      +
      See also
      scriptsStyled()
      + +
      +
      + +

      ◆ scriptsStyled()

      + +
      +
      + + + + + + + +
      bool QsciLexerXML::scriptsStyled () const
      +
      +

      Returns true if scripts are styled.

      +
      See also
      setScriptsStyled()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerXML::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexerHTML.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerXML::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexerHTML.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerYAML-members.html b/third_party/qscintilla/doc/html/classQsciLexerYAML-members.html new file mode 100644 index 0000000..472e0c9 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerYAML-members.html @@ -0,0 +1,124 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciLexerYAML Member List
      +
      +
      + +

      This is the complete list of members for QsciLexerYAML, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apis() constQsciLexer
      autoCompletionFillups() constQsciLexervirtual
      autoCompletionWordSeparators() constQsciLexervirtual
      autoIndentStyle()QsciLexer
      blockEnd(int *style=0) constQsciLexervirtual
      blockLookback() constQsciLexervirtual
      blockStart(int *style=0) constQsciLexervirtual
      blockStartKeyword(int *style=0) constQsciLexervirtual
      braceStyle() constQsciLexervirtual
      bytesAsText(const char *bytes, int size) const (defined in QsciLexer)QsciLexerprotected
      caseSensitive() constQsciLexervirtual
      color(int style) constQsciLexervirtual
      colorChanged(const QColor &c, int style)QsciLexersignal
      Comment enum valueQsciLexerYAML
      Default enum valueQsciLexerYAML
      defaultColor(int style) constQsciLexerYAMLvirtual
      QsciLexer::defaultColor() constQsciLexer
      defaultEolFill(int style) constQsciLexerYAMLvirtual
      defaultFont(int style) constQsciLexerYAMLvirtual
      QsciLexer::defaultFont() constQsciLexer
      defaultPaper(int style) constQsciLexerYAMLvirtual
      QsciLexer::defaultPaper() constQsciLexer
      defaultStyle() constQsciLexervirtual
      description(int style) constQsciLexerYAMLvirtual
      DocumentDelimiter enum valueQsciLexerYAML
      editor() constQsciLexerinline
      eolFill(int style) constQsciLexervirtual
      eolFillChanged(bool eolfilled, int style)QsciLexersignal
      foldComments() constQsciLexerYAML
      font(int style) constQsciLexervirtual
      fontChanged(const QFont &f, int style)QsciLexersignal
      Identifier enum valueQsciLexerYAML
      indentationGuideView() constQsciLexervirtual
      Keyword enum valueQsciLexerYAML
      keywords(int set) constQsciLexerYAMLvirtual
      language() constQsciLexerYAMLvirtual
      lexer() constQsciLexerYAMLvirtual
      lexerId() constQsciLexervirtual
      Number enum valueQsciLexerYAML
      Operator enum valueQsciLexerYAML
      paper(int style) constQsciLexervirtual
      paperChanged(const QColor &c, int style)QsciLexersignal
      propertyChanged(const char *prop, const char *val)QsciLexersignal
      QsciLexer(QObject *parent=0)QsciLexer
      QsciLexerYAML(QObject *parent=0)QsciLexerYAML
      readProperties(QSettings &qs, const QString &prefix)QsciLexerYAMLprotectedvirtual
      readSettings(QSettings &qs, const char *prefix="/Scintilla")QsciLexer
      Reference enum valueQsciLexerYAML
      refreshProperties()QsciLexerYAMLvirtual
      setAPIs(QsciAbstractAPIs *apis)QsciLexer
      setAutoIndentStyle(int autoindentstyle)QsciLexervirtualslot
      setColor(const QColor &c, int style=-1)QsciLexervirtualslot
      setDefaultColor(const QColor &c)QsciLexer
      setDefaultFont(const QFont &f)QsciLexer
      setDefaultPaper(const QColor &c)QsciLexer
      setEditor(QsciScintilla *editor) (defined in QsciLexer)QsciLexervirtual
      setEolFill(bool eoffill, int style=-1)QsciLexervirtualslot
      setFoldComments(bool fold)QsciLexerYAMLvirtualslot
      setFont(const QFont &f, int style=-1)QsciLexervirtualslot
      setPaper(const QColor &c, int style=-1)QsciLexervirtualslot
      styleBitsNeeded() constQsciLexervirtual
      SyntaxErrorMarker enum valueQsciLexerYAML
      textAsBytes(const QString &text) const (defined in QsciLexer)QsciLexerprotected
      TextBlockMarker enum valueQsciLexerYAML
      wordCharacters() constQsciLexervirtual
      writeProperties(QSettings &qs, const QString &prefix) constQsciLexerYAMLprotectedvirtual
      writeSettings(QSettings &qs, const char *prefix="/Scintilla") constQsciLexer
      ~QsciLexer()QsciLexervirtual
      ~QsciLexerYAML()QsciLexerYAMLvirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciLexerYAML.html b/third_party/qscintilla/doc/html/classQsciLexerYAML.html new file mode 100644 index 0000000..2887f63 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciLexerYAML.html @@ -0,0 +1,589 @@ + + + + + + + +QScintilla: QsciLexerYAML Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qscilexeryaml.h>

      + +

      Inherits QsciLexer.

      + + + + +

      +Public Types

      enum  {
      +  Default = 0, +Comment = 1, +Identifier = 2, +
      +  Keyword = 3, +Number = 4, +Reference = 5, +
      +  DocumentDelimiter = 6, +TextBlockMarker = 7, +SyntaxErrorMarker = 8, +
      +  Operator = 9 +
      + }
       
      + + + + + + + + + + + + + + +

      +Public Slots

      virtual void setFoldComments (bool fold)
       
      - Public Slots inherited from QsciLexer
      virtual void setAutoIndentStyle (int autoindentstyle)
       
      virtual void setColor (const QColor &c, int style=-1)
       
      virtual void setEolFill (bool eoffill, int style=-1)
       
      virtual void setFont (const QFont &f, int style=-1)
       
      virtual void setPaper (const QColor &c, int style=-1)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciLexerYAML (QObject *parent=0)
       
      +virtual ~QsciLexerYAML ()
       
      +const char * language () const
       
      const char * lexer () const
       
      QColor defaultColor (int style) const
       
      +bool defaultEolFill (int style) const
       
      +QFont defaultFont (int style) const
       
      QColor defaultPaper (int style) const
       
      const char * keywords (int set) const
       
      QString description (int style) const
       
      void refreshProperties ()
       
      bool foldComments () const
       
      - Public Member Functions inherited from QsciLexer
       QsciLexer (QObject *parent=0)
       
      +virtual ~QsciLexer ()
       
      virtual int lexerId () const
       
      QsciAbstractAPIsapis () const
       
      +virtual const char * autoCompletionFillups () const
       
      virtual QStringList autoCompletionWordSeparators () const
       
      int autoIndentStyle ()
       
      virtual const char * blockEnd (int *style=0) const
       
      virtual int blockLookback () const
       
      virtual const char * blockStart (int *style=0) const
       
      virtual const char * blockStartKeyword (int *style=0) const
       
      +virtual int braceStyle () const
       
      +virtual bool caseSensitive () const
       
      virtual QColor color (int style) const
       
      virtual bool eolFill (int style) const
       
      virtual QFont font (int style) const
       
      +virtual int indentationGuideView () const
       
      virtual int defaultStyle () const
       
      virtual QColor paper (int style) const
       
      QColor defaultColor () const
       
      QFont defaultFont () const
       
      QColor defaultPaper () const
       
      QsciScintillaeditor () const
       
      void setAPIs (QsciAbstractAPIs *apis)
       
      void setDefaultColor (const QColor &c)
       
      void setDefaultFont (const QFont &f)
       
      void setDefaultPaper (const QColor &c)
       
      +virtual void setEditor (QsciScintilla *editor)
       
      bool readSettings (QSettings &qs, const char *prefix="/Scintilla")
       
      virtual int styleBitsNeeded () const
       
      virtual const char * wordCharacters () const
       
      bool writeSettings (QSettings &qs, const char *prefix="/Scintilla") const
       
      + + + + + + + + + + +

      +Protected Member Functions

      bool readProperties (QSettings &qs, const QString &prefix)
       
      bool writeProperties (QSettings &qs, const QString &prefix) const
       
      - Protected Member Functions inherited from QsciLexer
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      + + + + + + + + + + + + +

      +Additional Inherited Members

      - Signals inherited from QsciLexer
      void colorChanged (const QColor &c, int style)
       
      void eolFillChanged (bool eolfilled, int style)
       
      void fontChanged (const QFont &f, int style)
       
      void paperChanged (const QColor &c, int style)
       
      void propertyChanged (const char *prop, const char *val)
       
      +

      Detailed Description

      +

      The QsciLexerYAML class encapsulates the Scintilla YAML lexer.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the meanings of the different styles used by the YAML lexer.

      + + + + + + + + + + + +
      Enumerator
      Default 

      The default.

      +
      Comment 

      A comment.

      +
      Identifier 

      An identifier.

      +
      Keyword 

      A keyword.

      +
      Number 

      A number.

      +
      Reference 

      A reference.

      +
      DocumentDelimiter 

      A document delimiter.

      +
      TextBlockMarker 

      A text block marker.

      +
      SyntaxErrorMarker 

      A syntax error marker.

      +
      Operator 

      An operator.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciLexerYAML()

      + +
      +
      + + + + + + + + +
      QsciLexerYAML::QsciLexerYAML (QObject * parent = 0)
      +
      +

      Construct a QsciLexerYAML with parent parent. parent is typically the QsciScintilla instance.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ lexer()

      + +
      +
      + + + + + +
      + + + + + + + +
      const char* QsciLexerYAML::lexer () const
      +
      +virtual
      +
      +

      Returns the name of the lexer. Some lexers support a number of languages.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultColor()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerYAML::defaultColor (int style) const
      +
      +virtual
      +
      +

      Returns the foreground colour of the text for style number style.

      +
      See also
      defaultPaper()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ defaultPaper()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QColor QsciLexerYAML::defaultPaper (int style) const
      +
      +virtual
      +
      +

      Returns the background colour of the text for style number style.

      +
      See also
      defaultColor()
      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ keywords()

      + +
      +
      + + + + + +
      + + + + + + + + +
      const char* QsciLexerYAML::keywords (int set) const
      +
      +virtual
      +
      +

      Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + + +
      QString QsciLexerYAML::description (int style) const
      +
      +virtual
      +
      +

      Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.

      + +

      Implements QsciLexer.

      + +
      +
      + +

      ◆ refreshProperties()

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciLexerYAML::refreshProperties ()
      +
      +virtual
      +
      +

      Causes all properties to be refreshed by emitting the propertyChanged() signal as required.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ foldComments()

      + +
      +
      + + + + + + + +
      bool QsciLexerYAML::foldComments () const
      +
      +

      Returns true if multi-line comment blocks can be folded.

      +
      See also
      setFoldComments()
      + +
      +
      + +

      ◆ setFoldComments

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciLexerYAML::setFoldComments (bool fold)
      +
      +virtualslot
      +
      +

      If fold is true then multi-line comment blocks can be folded. The default is false.

      +
      See also
      foldComments()
      + +
      +
      + +

      ◆ readProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerYAML::readProperties (QSettings & qs,
      const QString & prefix 
      )
      +
      +protectedvirtual
      +
      +

      The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      + +

      ◆ writeProperties()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      bool QsciLexerYAML::writeProperties (QSettings & qs,
      const QString & prefix 
      ) const
      +
      +protectedvirtual
      +
      +

      The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.

      + +

      Reimplemented from QsciLexer.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciMacro-members.html b/third_party/qscintilla/doc/html/classQsciMacro-members.html new file mode 100644 index 0000000..c432c94 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciMacro-members.html @@ -0,0 +1,64 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciMacro Member List
      +
      +
      + +

      This is the complete list of members for QsciMacro, including all inherited members.

      + + + + + + + + + + +
      clear()QsciMacro
      endRecording()QsciMacrovirtualslot
      load(const QString &asc)QsciMacro
      play()QsciMacrovirtualslot
      QsciMacro(QsciScintilla *parent)QsciMacro
      QsciMacro(const QString &asc, QsciScintilla *parent)QsciMacro
      save() constQsciMacro
      startRecording()QsciMacrovirtualslot
      ~QsciMacro()QsciMacrovirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciMacro.html b/third_party/qscintilla/doc/html/classQsciMacro.html new file mode 100644 index 0000000..d1ef392 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciMacro.html @@ -0,0 +1,165 @@ + + + + + + + +QScintilla: QsciMacro Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciMacro Class Reference
      +
      +
      + +

      #include <qscimacro.h>

      + +

      Inherits QObject.

      + + + + + + + + +

      +Public Slots

      +virtual void play ()
       
      +virtual void startRecording ()
       
      +virtual void endRecording ()
       
      + + + + + + + + + + + + + +

      +Public Member Functions

      QsciMacro (QsciScintilla *parent)
       
       QsciMacro (const QString &asc, QsciScintilla *parent)
       
      +virtual ~QsciMacro ()
       
      +void clear ()
       
      bool load (const QString &asc)
       
      QString save () const
       
      +

      Detailed Description

      +

      The QsciMacro class represents a sequence of recordable editor commands.

      +

      Methods are provided to convert convert a macro to and from a textual representation so that they can be easily written to and read from permanent storage.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciMacro()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      QsciMacro::QsciMacro (const QString & asc,
      QsciScintillaparent 
      )
      +
      +

      Construct a QsciMacro from the printable ASCII representation asc, with parent parent.

      + +
      +
      +

      Member Function Documentation

      + +

      ◆ load()

      + +
      +
      + + + + + + + + +
      bool QsciMacro::load (const QString & asc)
      +
      +

      Load the macro from the printable ASCII representation asc. Returns true if there was no error.

      +
      See also
      save()
      + +
      +
      + +

      ◆ save()

      + +
      +
      + + + + + + + +
      QString QsciMacro::save () const
      +
      +

      Return a printable ASCII representation of the macro. It is guaranteed that only printable ASCII characters are used and that double quote characters will not be used.

      +
      See also
      load()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciPrinter-members.html b/third_party/qscintilla/doc/html/classQsciPrinter-members.html new file mode 100644 index 0000000..e47991f --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciPrinter-members.html @@ -0,0 +1,64 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciPrinter Member List
      +
      +
      + +

      This is the complete list of members for QsciPrinter, including all inherited members.

      + + + + + + + + + + +
      formatPage(QPainter &painter, bool drawing, QRect &area, int pagenr)QsciPrintervirtual
      magnification() constQsciPrinterinline
      printRange(QsciScintillaBase *qsb, QPainter &painter, int from=-1, int to=-1)QsciPrintervirtual
      printRange(QsciScintillaBase *qsb, int from=-1, int to=-1)QsciPrintervirtual
      QsciPrinter(PrinterMode mode=ScreenResolution)QsciPrinter
      setMagnification(int magnification)QsciPrintervirtual
      setWrapMode(QsciScintilla::WrapMode wmode)QsciPrintervirtual
      wrapMode() constQsciPrinterinline
      ~QsciPrinter()QsciPrintervirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciPrinter.html b/third_party/qscintilla/doc/html/classQsciPrinter.html new file mode 100644 index 0000000..7213cc3 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciPrinter.html @@ -0,0 +1,338 @@ + + + + + + + +QScintilla: QsciPrinter Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciPrinter Class Reference
      +
      +
      + +

      #include <qsciprinter.h>

      + +

      Inherits QPrinter.

      + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

      QsciPrinter (PrinterMode mode=ScreenResolution)
       
      +virtual ~QsciPrinter ()
       
      virtual void formatPage (QPainter &painter, bool drawing, QRect &area, int pagenr)
       
      int magnification () const
       
      virtual void setMagnification (int magnification)
       
      virtual int printRange (QsciScintillaBase *qsb, QPainter &painter, int from=-1, int to=-1)
       
      virtual int printRange (QsciScintillaBase *qsb, int from=-1, int to=-1)
       
      QsciScintilla::WrapMode wrapMode () const
       
      virtual void setWrapMode (QsciScintilla::WrapMode wmode)
       
      +

      Detailed Description

      +

      The QsciPrinter class is a sub-class of the Qt QPrinter class that is able to print the text of a Scintilla document.

      +

      The class can be further sub-classed to alter to layout of the text, adding headers and footers for example.

      +

      Member Function Documentation

      + +

      ◆ formatPage()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual void QsciPrinter::formatPage (QPainter & painter,
      bool drawing,
      QRect & area,
      int pagenr 
      )
      +
      +virtual
      +
      +

      Format a page, by adding headers and footers for example, before the document text is drawn on it. painter is the painter to be used to add customised text and graphics. drawing is true if the page is actually being drawn rather than being sized. painter drawing methods must only be called when drawing is true. area is the area of the page that will be used to draw the text. This should be modified if it is necessary to reserve space for any customised text or graphics. By default the area is relative to the printable area of the page. Use QPrinter::setFullPage() before calling printRange() if you want to try and print over the whole page. pagenr is the number of the page. The first page is numbered 1.

      + +
      +
      + +

      ◆ magnification()

      + +
      +
      + + + + + +
      + + + + + + + +
      int QsciPrinter::magnification () const
      +
      +inline
      +
      +

      Return the number of points to add to each font when printing.

      +
      See also
      setMagnification()
      + +
      +
      + +

      ◆ setMagnification()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciPrinter::setMagnification (int magnification)
      +
      +virtual
      +
      +

      Sets the number of points to add to each font when printing to magnification.

      +
      See also
      magnification()
      + +
      +
      + +

      ◆ printRange() [1/2]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual int QsciPrinter::printRange (QsciScintillaBaseqsb,
      QPainter & painter,
      int from = -1,
      int to = -1 
      )
      +
      +virtual
      +
      +

      Print a range of lines from the Scintilla instance qsb using the supplied QPainter painter. from is the first line to print and a negative value signifies the first line of text. to is the last line to print and a negative value signifies the last line of text. true is returned if there was no error.

      + +
      +
      + +

      ◆ printRange() [2/2]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual int QsciPrinter::printRange (QsciScintillaBaseqsb,
      int from = -1,
      int to = -1 
      )
      +
      +virtual
      +
      +

      Print a range of lines from the Scintilla instance qsb using a default QPainter. from is the first line to print and a negative value signifies the first line of text. to is the last line to print and a negative value signifies the last line of text. true is returned if there was no error.

      + +
      +
      + +

      ◆ wrapMode()

      + +
      +
      + + + + + +
      + + + + + + + +
      QsciScintilla::WrapMode QsciPrinter::wrapMode () const
      +
      +inline
      +
      +

      Return the line wrap mode used when printing. The default is QsciScintilla::WrapWord.

      +
      See also
      setWrapMode()
      + +
      +
      + +

      ◆ setWrapMode()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciPrinter::setWrapMode (QsciScintilla::WrapMode wmode)
      +
      +virtual
      +
      +

      Sets the line wrap mode used when printing to wmode.

      +
      See also
      wrapMode()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciScintilla-members.html b/third_party/qscintilla/doc/html/classQsciScintilla-members.html new file mode 100644 index 0000000..1a1222d --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciScintilla-members.html @@ -0,0 +1,1711 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciScintilla Member List
      +
      +
      + +

      This is the complete list of members for QsciScintilla, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      AcsAll enum valueQsciScintilla
      AcsAPIs enum valueQsciScintilla
      AcsDocument enum valueQsciScintilla
      AcsNone enum valueQsciScintilla
      AcusAlways enum valueQsciScintilla
      AcusExplicit enum valueQsciScintilla
      AcusNever enum valueQsciScintilla
      addEdgeColumn(int colnr, const QColor &col)QsciScintilla
      AiClosing enum valueQsciScintilla
      AiMaintain enum valueQsciScintilla
      AiOpening enum valueQsciScintilla
      annotate(int line, const QString &text, int style)QsciScintilla
      annotate(int line, const QString &text, const QsciStyle &style)QsciScintilla
      annotate(int line, const QsciStyledText &text)QsciScintilla
      annotate(int line, const QList< QsciStyledText > &text)QsciScintilla
      annotation(int line) constQsciScintilla
      ANNOTATION_BOXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      ANNOTATION_HIDDEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      ANNOTATION_INDENTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      ANNOTATION_STANDARD enum value (defined in QsciScintillaBase)QsciScintillaBase
      AnnotationBoxed enum valueQsciScintilla
      AnnotationDisplay enum nameQsciScintilla
      annotationDisplay() constQsciScintilla
      AnnotationHidden enum valueQsciScintilla
      AnnotationIndented enum valueQsciScintilla
      AnnotationStandard enum valueQsciScintilla
      apiContext(int pos, int &context_start, int &last_word_start)QsciScintillavirtual
      append(const QString &text)QsciScintillavirtualslot
      autoCompleteFromAll()QsciScintillavirtualslot
      autoCompleteFromAPIs()QsciScintillavirtualslot
      autoCompleteFromDocument()QsciScintillavirtualslot
      autoCompletionCaseSensitivity() constQsciScintilla
      autoCompletionFillupsEnabled() constQsciScintilla
      autoCompletionReplaceWord() constQsciScintilla
      autoCompletionShowSingle() constQsciScintilla
      AutoCompletionSource enum nameQsciScintilla
      autoCompletionSource() constQsciScintillainline
      autoCompletionThreshold() constQsciScintillainline
      AutoCompletionUseSingle enum nameQsciScintilla
      autoCompletionUseSingle() constQsciScintilla
      autoIndent() constQsciScintillainline
      Background enum valueQsciScintilla
      backspaceUnindents() constQsciScintilla
      beginUndoAction()QsciScintilla
      Bookmark enum valueQsciScintilla
      BottomLeftCorner enum valueQsciScintilla
      BoxedFoldStyle enum valueQsciScintilla
      BoxedMinus enum valueQsciScintilla
      BoxedMinusConnected enum valueQsciScintilla
      BoxedPlus enum valueQsciScintilla
      BoxedPlusConnected enum valueQsciScintilla
      BoxedTreeFoldStyle enum valueQsciScintilla
      BoxIndicator enum valueQsciScintilla
      BraceMatch enum nameQsciScintilla
      braceMatching() constQsciScintillainline
      bytes(int start, int end) constQsciScintilla
      bytesAsText(const char *bytes, int size) const (defined in QsciScintillaBase)QsciScintillaBaseprotected
      callTip()QsciScintillavirtualslot
      CallTipsAboveText enum valueQsciScintilla
      CallTipsBelowText enum valueQsciScintilla
      CallTipsContext enum valueQsciScintilla
      CallTipsNoAutoCompletionContext enum valueQsciScintilla
      CallTipsNoContext enum valueQsciScintilla
      CallTipsNone enum valueQsciScintilla
      callTipsPosition() constQsciScintillainline
      CallTipsPosition enum nameQsciScintilla
      CallTipsStyle enum nameQsciScintilla
      callTipsStyle() constQsciScintillainline
      callTipsVisible() constQsciScintillainline
      cancelFind()QsciScintilla
      cancelList()QsciScintilla
      canInsertFromMimeData(const QMimeData *source) constQsciScintillaBaseprotectedvirtual
      CARET_EVEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARET_JUMPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARET_SLOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARET_STRICT enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARETSTYLE_BLOCK enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARETSTYLE_INVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARETSTYLE_LINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      caseSensitive() constQsciScintilla
      CentreGradientIndicator enum valueQsciScintilla
      changeEvent(QEvent *e)QsciScintillaprotectedvirtual
      Circle enum valueQsciScintilla
      CircledFoldStyle enum valueQsciScintilla
      CircledMinus enum valueQsciScintilla
      CircledMinusConnected enum valueQsciScintilla
      CircledPlus enum valueQsciScintilla
      CircledPlusConnected enum valueQsciScintilla
      CircledTreeFoldStyle enum valueQsciScintilla
      clear()QsciScintillavirtualslot
      clearAnnotations(int line=-1)QsciScintilla
      clearEdgeColumns()QsciScintilla
      clearFolds()QsciScintilla
      clearIndicatorRange(int lineFrom, int indexFrom, int lineTo, int indexTo, int indicatorNumber)QsciScintilla
      clearMarginText(int line=-1)QsciScintilla
      clearRegisteredImages()QsciScintilla
      color() constQsciScintilla
      commandKey(int qt_key, int &modifiers) (defined in QsciScintillaBase)QsciScintillaBasestatic
      contextMenuEvent(QContextMenuEvent *e)QsciScintillaprotectedvirtual
      contextMenuNeeded(int x, int y) const (defined in QsciScintillaBase)QsciScintillaBaseprotected
      contractedFolds() constQsciScintilla
      convertEols(EolMode mode)QsciScintilla
      copy()QsciScintillavirtualslot
      copyAvailable(bool yes)QsciScintillasignal
      createStandardContextMenu()QsciScintilla
      cursorPositionChanged(int line, int index)QsciScintillasignal
      cut()QsciScintillavirtualslot
      DashesIndicator enum valueQsciScintilla
      DiagonalIndicator enum valueQsciScintilla
      document() constQsciScintillainline
      DotBoxIndicator enum valueQsciScintilla
      DotsIndicator enum valueQsciScintilla
      DownTriangle enum valueQsciScintilla
      dragEnterEvent(QDragEnterEvent *e)QsciScintillaBaseprotectedvirtual
      dragLeaveEvent(QDragLeaveEvent *e)QsciScintillaBaseprotectedvirtual
      dragMoveEvent(QDragMoveEvent *e)QsciScintillaBaseprotectedvirtual
      dropEvent(QDropEvent *e)QsciScintillaBaseprotectedvirtual
      EDGE_BACKGROUND enum value (defined in QsciScintillaBase)QsciScintillaBase
      EDGE_LINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      EDGE_MULTILINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      EDGE_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      EdgeBackground enum valueQsciScintilla
      edgeColor() constQsciScintilla
      edgeColumn() constQsciScintilla
      EdgeLine enum valueQsciScintilla
      EdgeMode enum nameQsciScintilla
      edgeMode() constQsciScintilla
      EdgeMultipleLines enum valueQsciScintilla
      EdgeNone enum valueQsciScintilla
      endUndoAction()QsciScintilla
      ensureCursorVisible()QsciScintillavirtualslot
      ensureLineVisible(int line)QsciScintillavirtualslot
      EolMac enum valueQsciScintilla
      EolMode enum nameQsciScintilla
      eolMode() constQsciScintilla
      EolUnix enum valueQsciScintilla
      eolVisibility() constQsciScintilla
      EolWindows enum valueQsciScintilla
      event(QEvent *e)QsciScintillaprotectedvirtual
      extraAscent() constQsciScintilla
      extraDescent() constQsciScintilla
      fillIndicatorRange(int lineFrom, int indexFrom, int lineTo, int indexTo, int indicatorNumber)QsciScintilla
      findFirst(const QString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=true, int line=-1, int index=-1, bool show=true, bool posix=false, bool cxx11=false)QsciScintillavirtual
      findFirstInSelection(const QString &expr, bool re, bool cs, bool wo, bool forward=true, bool show=true, bool posix=false, bool cxx11=false)QsciScintillavirtual
      findMatchingBrace(long &brace, long &other, BraceMatch mode)QsciScintilla
      findNext()QsciScintillavirtual
      firstVisibleLine() constQsciScintilla
      focusInEvent(QFocusEvent *e)QsciScintillaBaseprotectedvirtual
      focusNextPrevChild(bool next)QsciScintillaBaseprotectedvirtual
      focusOutEvent(QFocusEvent *e)QsciScintillaBaseprotectedvirtual
      foldAll(bool children=false)QsciScintillavirtualslot
      folding() constQsciScintillainline
      foldLine(int line)QsciScintillavirtualslot
      FoldStyle enum nameQsciScintilla
      fromMimeData(const QMimeData *source, bool &rectangular) constQsciScintillaBaseprotectedvirtual
      FullBoxIndicator enum valueQsciScintilla
      FullRectangle enum valueQsciScintilla
      getCursorPosition(int *line, int *index) constQsciScintilla
      getSelection(int *lineFrom, int *indexFrom, int *lineTo, int *indexTo) constQsciScintilla
      GradientIndicator enum valueQsciScintilla
      hasSelectedText() constQsciScintillainline
      HiddenIndicator enum valueQsciScintilla
      indent(int line)QsciScintillavirtualslot
      indentation(int line) constQsciScintilla
      indentationGuides() constQsciScintilla
      indentationsUseTabs() constQsciScintilla
      indentationWidth() constQsciScintilla
      INDIC0_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC1_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC2_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_BOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_COMPOSITIONTHICK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_COMPOSITIONTHIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_CONTAINER enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DASH enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DIAGONAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DOTBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DOTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_FULLBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_GRADIENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_GRADIENTCENTRE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_HIDDEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_IME enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_IME_MAX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_MAX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_PLAIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_POINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_POINTCHARACTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_ROUNDBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_SQUIGGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_SQUIGGLELOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_SQUIGGLEPIXMAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_STRAIGHTBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_STRIKE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_TEXTFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_TT enum value (defined in QsciScintillaBase)QsciScintillaBase
      indicatorClicked(int line, int index, Qt::KeyboardModifiers state)QsciScintillasignal
      indicatorDefine(IndicatorStyle style, int indicatorNumber=-1)QsciScintilla
      indicatorDrawUnder(int indicatorNumber) constQsciScintilla
      indicatorReleased(int line, int index, Qt::KeyboardModifiers state)QsciScintillasignal
      IndicatorStyle enum nameQsciScintilla
      INDICS_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      inputMethodEvent(QInputMethodEvent *event)QsciScintillaBaseprotectedvirtual
      inputMethodQuery(Qt::InputMethodQuery query) const (defined in QsciScintillaBase)QsciScintillaBaseprotectedvirtual
      insert(const QString &text)QsciScintillavirtualslot
      insertAt(const QString &text, int line, int index)QsciScintillavirtualslot
      Invisible enum valueQsciScintilla
      isCallTipActive() constQsciScintilla
      isListActive() constQsciScintilla
      isModified() constQsciScintilla
      isReadOnly() constQsciScintilla
      isRedoAvailable() constQsciScintilla
      isUndoAvailable() constQsciScintilla
      isUtf8() constQsciScintilla
      isWordCharacter(char ch) constQsciScintilla
      keyPressEvent(QKeyEvent *e)QsciScintillaBaseprotectedvirtual
      LeftRectangle enum valueQsciScintilla
      LeftSideRoundedSplitter enum valueQsciScintilla
      LeftSideSplitter enum valueQsciScintilla
      length() constQsciScintilla
      lexer() constQsciScintilla
      lineAt(const QPoint &point) constQsciScintilla
      lineIndexFromPosition(int position, int *line, int *index) constQsciScintilla
      lineLength(int line) constQsciScintilla
      lines() constQsciScintilla
      linesChanged()QsciScintillasignal
      marginBackgroundColor(int margin) constQsciScintilla
      marginClicked(int margin, int line, Qt::KeyboardModifiers state)QsciScintillasignal
      marginLineNumbers(int margin) constQsciScintilla
      marginMarkerMask(int margin) constQsciScintilla
      marginOptions() constQsciScintilla
      marginRightClicked(int margin, int line, Qt::KeyboardModifiers state)QsciScintillasignal
      margins() constQsciScintilla
      marginSensitivity(int margin) constQsciScintilla
      MarginType enum nameQsciScintilla
      marginType(int margin) constQsciScintilla
      marginWidth(int margin) constQsciScintilla
      markerAdd(int linenr, int markerNumber)QsciScintilla
      markerDefine(MarkerSymbol sym, int markerNumber=-1)QsciScintilla
      markerDefine(char ch, int markerNumber=-1)QsciScintilla
      markerDefine(const QPixmap &pm, int markerNumber=-1)QsciScintilla
      markerDefine(const QImage &im, int markerNumber=-1)QsciScintilla
      markerDelete(int linenr, int markerNumber=-1)QsciScintilla
      markerDeleteAll(int markerNumber=-1)QsciScintilla
      markerDeleteHandle(int mhandle)QsciScintilla
      markerFindNext(int linenr, unsigned mask) constQsciScintilla
      markerFindPrevious(int linenr, unsigned mask) constQsciScintilla
      markerLine(int mhandle) constQsciScintilla
      markersAtLine(int linenr) constQsciScintilla
      MarkerSymbol enum nameQsciScintilla
      Minus enum valueQsciScintilla
      modificationAttempted()QsciScintillasignal
      modificationChanged(bool m)QsciScintillasignal
      MoNone enum valueQsciScintilla
      MoSublineSelect enum valueQsciScintilla
      mouseDoubleClickEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      mouseMoveEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      mousePressEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      mouseReleaseEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      moveToMatchingBrace()QsciScintillavirtualslot
      NoBraceMatch enum valueQsciScintilla
      NoFoldStyle enum valueQsciScintilla
      NumberMargin enum valueQsciScintilla
      overwriteMode() constQsciScintilla
      paintEvent(QPaintEvent *e)QsciScintillaBaseprotectedvirtual
      paper() constQsciScintilla
      paste()QsciScintillavirtualslot
      PlainFoldStyle enum valueQsciScintilla
      PlainIndicator enum valueQsciScintilla
      Plus enum valueQsciScintilla
      pool()QsciScintillaBasestatic
      positionFromLineIndex(int line, int index) constQsciScintilla
      QsciScintilla(QWidget *parent=0)QsciScintilla
      QsciScintillaBase(QWidget *parent=0)QsciScintillaBaseexplicit
      QSCN_SELCHANGED(bool yes)QsciScintillaBasesignal
      read(QIODevice *io)QsciScintilla
      recolor(int start=0, int end=-1)QsciScintillavirtual
      Rectangle enum valueQsciScintilla
      redo()QsciScintillavirtualslot
      registerImage(int id, const QPixmap &pm)QsciScintilla
      registerImage(int id, const QImage &im)QsciScintilla
      removeSelectedText()QsciScintillavirtualslot
      replace(const QString &replaceStr)QsciScintillavirtual
      replaceHorizontalScrollBar(QScrollBar *scrollBar)QsciScintillaBase
      replaceSelectedText(const QString &text)QsciScintillavirtualslot
      replaceVerticalScrollBar(QScrollBar *scrollBar)QsciScintillaBase
      resetFoldMarginColors()QsciScintilla
      resetHotspotBackgroundColor()QsciScintilla
      resetHotspotForegroundColor()QsciScintilla
      resetMatchedBraceIndicator()QsciScintilla
      resetSelectionBackgroundColor()QsciScintillavirtualslot
      resetSelectionForegroundColor()QsciScintillavirtualslot
      resetUnmatchedBraceIndicator()QsciScintilla
      resizeEvent(QResizeEvent *e)QsciScintillaBaseprotectedvirtual
      RightArrow enum valueQsciScintilla
      RightTriangle enum valueQsciScintilla
      RoundBoxIndicator enum valueQsciScintilla
      RoundedBottomLeftCorner enum valueQsciScintilla
      SC_AC_COMMAND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_DOUBLECLICK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_FILLUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_NEWLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_TAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ALPHA_NOALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ALPHA_OPAQUE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ALPHA_TRANSPARENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AUTOMATICFOLD_CHANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AUTOMATICFOLD_CLICK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AUTOMATICFOLD_SHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_CARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_DOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_PAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CARETSTICKY_OFF enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CARETSTICKY_ON enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CARETSTICKY_WHITESPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_CAMEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_LOWER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_MIXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_UPPER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_8859_15 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_ANSI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_ARABIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_BALTIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_CHINESEBIG5 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_CYRILLIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_EASTEUROPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_GB2312 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_GREEK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_HANGUL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_HEBREW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_JOHAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_MAC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_OEM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_OEM866 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_RUSSIAN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_SHIFTJIS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_SYMBOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_THAI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_TURKISH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_VIETNAMESE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CP_DBCS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CP_UTF8 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORARROW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORNORMAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORREVERSEARROW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORWAIT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_DOCUMENTOPTION_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_DOCUMENTOPTION_STYLES_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_DOCUMENTOPTION_TEXT_LARGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_ANTIALIASED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_LCD_OPTIMIZED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_NON_ANTIALIASED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EOL_CR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EOL_CRLF enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EOL_LF enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDACTION_CONTRACT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDACTION_EXPAND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDACTION_TOGGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDDISPLAYTEXT_BOXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDDISPLAYTEXT_HIDDEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDDISPLAYTEXT_STANDARD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LEVELNUMBERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEAFTER_CONTRACTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEAFTER_EXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEBEFORE_CONTRACTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEBEFORE_EXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELBASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELHEADERFLAG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELNUMBERMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELWHITEFLAG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FONT_SIZE_MULTIPLIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_AFTERVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_ALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_TOVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IME_INLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IME_WINDOWED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_INDICFLAG_VALUEBEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_INDICVALUEBIT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_INDICVALUEMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IV_LOOKBOTH enum valueQsciScintillaBase
      SC_IV_LOOKFORWARD enum valueQsciScintillaBase
      SC_IV_NONE enum valueQsciScintillaBase
      SC_IV_REAL enum valueQsciScintillaBase
      SC_LASTSTEPINUNDOREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINE_END_TYPE_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINE_END_TYPE_UNICODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINECHARACTERINDEX_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINECHARACTERINDEX_UTF16 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINECHARACTERINDEX_UTF32 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARGIN_BACK enum valueQsciScintillaBase
      SC_MARGIN_COLOUR enum valueQsciScintillaBase
      SC_MARGIN_FORE enum valueQsciScintillaBase
      SC_MARGIN_NUMBER enum valueQsciScintillaBase
      SC_MARGIN_RTEXT enum valueQsciScintillaBase
      SC_MARGIN_SYMBOL enum valueQsciScintillaBase
      SC_MARGIN_TEXT enum valueQsciScintillaBase
      SC_MARGINOPTION_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARGINOPTION_SUBLINESELECT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARK_ARROW enum valueQsciScintillaBase
      SC_MARK_ARROWDOWN enum valueQsciScintillaBase
      SC_MARK_ARROWS enum valueQsciScintillaBase
      SC_MARK_AVAILABLE enum valueQsciScintillaBase
      SC_MARK_BACKGROUND enum valueQsciScintillaBase
      SC_MARK_BOOKMARK enum valueQsciScintillaBase
      SC_MARK_BOXMINUS enum valueQsciScintillaBase
      SC_MARK_BOXMINUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_BOXPLUS enum valueQsciScintillaBase
      SC_MARK_BOXPLUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_CHARACTER enum valueQsciScintillaBase
      SC_MARK_CIRCLE enum valueQsciScintillaBase
      SC_MARK_CIRCLEMINUS enum valueQsciScintillaBase
      SC_MARK_CIRCLEMINUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_CIRCLEPLUS enum valueQsciScintillaBase
      SC_MARK_CIRCLEPLUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_DOTDOTDOT enum valueQsciScintillaBase
      SC_MARK_EMPTY enum valueQsciScintillaBase
      SC_MARK_FULLRECT enum valueQsciScintillaBase
      SC_MARK_LCORNER enum valueQsciScintillaBase
      SC_MARK_LCORNERCURVE enum valueQsciScintillaBase
      SC_MARK_LEFTRECT enum valueQsciScintillaBase
      SC_MARK_MINUS enum valueQsciScintillaBase
      SC_MARK_PIXMAP enum valueQsciScintillaBase
      SC_MARK_PLUS enum valueQsciScintillaBase
      SC_MARK_RGBAIMAGE enum valueQsciScintillaBase
      SC_MARK_ROUNDRECT enum valueQsciScintillaBase
      SC_MARK_SHORTARROW enum valueQsciScintillaBase
      SC_MARK_SMALLRECT enum valueQsciScintillaBase
      SC_MARK_TCORNER enum valueQsciScintillaBase
      SC_MARK_TCORNERCURVE enum valueQsciScintillaBase
      SC_MARK_UNDERLINE enum valueQsciScintillaBase
      SC_MARK_VLINE enum valueQsciScintillaBase
      SC_MARKNUM_FOLDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDEREND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDERMIDTAIL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDEROPEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDEROPENMID enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDERSUB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDERTAIL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MASK_FOLDERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_BEFOREDELETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_BEFOREINSERT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEANNOTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEINDICATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGELINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEMARGIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEMARKER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGESTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGETABSTOPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CONTAINER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_DELETETEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_INSERTCHECK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_INSERTTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_LEXERSTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MODEVENTMASKALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIAUTOC_EACH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIAUTOC_ONCE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTILINEUNDOREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIPASTE_EACH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIPASTE_ONCE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTISTEPUNDOREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ORDER_CUSTOM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ORDER_PERFORMSORT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ORDER_PRESORTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PERFORMED_REDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PERFORMED_UNDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PERFORMED_USER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PHASES_MULTIPLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PHASES_ONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PHASES_TWO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_POPUP_ALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_POPUP_NEVER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_POPUP_TEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_BLACKONWHITE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_COLOURONWHITE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_COLOURONWHITEDEFAULTBG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_INVERTLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_NORMAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_SCREENCOLOURS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_LINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_RECTANGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_STREAM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_THIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STARTACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_BADALLOC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_FAILURE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_OK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_WARN_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_WARNREGEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DIRECTWRITE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DIRECTWRITEDC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DIRECTWRITERETAIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TIME_FOREVER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TYPE_BOOLEAN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TYPE_INTEGER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TYPE_STRING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_CONTENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_H_SCROLL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_SELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_V_SCROLL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WEIGHT_BOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WEIGHT_NORMAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WEIGHT_SEMIBOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_CHAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_WHITESPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_WORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_DEEPINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_FIXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_INDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_SAME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_END enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_MARGIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAGLOC_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAGLOC_END_BY_TEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAGLOC_START_BY_TEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCEN_CHANGE()QsciScintillaBasesignal
      SCFIND_CXX11REGEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_MATCHCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_POSIX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_REGEXP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_WHOLEWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_WORDSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDREFDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDSTYLEDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDTABSTOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDTEXT enum valueQsciScintillaBase
      SCI_ADDUNDOACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATEEXTENDEDSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATELINECHARACTERINDEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATESUBSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONCLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETLINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_APPENDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ASSIGNCMDKEY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCACTIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCCANCEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCCOMPLETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETAUTOHIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCANCELATSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCHOOSESINGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCURRENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCURRENTTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETDROPRESTOFWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETIGNORECASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETMAXHEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETMAXWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETMULTI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETORDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETSEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETTYPESEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCPOSSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSELECT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETAUTOHIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETCANCELATSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETCHOOSESINGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETDROPRESTOFWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETFILLUPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETIGNORECASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETMAXHEIGHT enum valueQsciScintillaBase
      SCI_AUTOCSETMAXWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETMULTI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETORDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETSEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETTYPESEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSTOPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BACKTAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BEGINUNDOACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEBADLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEBADLIGHTINDICATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEHIGHLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEHIGHLIGHTINDICATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEMATCH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPACTIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPCANCEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPPOSSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETFOREHLT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETHLT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETPOSSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPUSESTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANCEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANPASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANUNDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHANGEINSERTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHANGELEXERSTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARLEFTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARLEFTRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARPOSITIONFROMPOINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARPOSITIONFROMPOINTCLOSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARRIGHTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARRIGHTRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHOOSECARETX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARALLCMDKEYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARCMDKEY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARDOCUMENTSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARREGISTEREDIMAGES enum valueQsciScintillaBase
      SCI_CLEARREPRESENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARSELECTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARTABSTOPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COLOURISE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CONTRACTEDFOLDNEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CONVERTEOLS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COPY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COPYALLOWLINE enum valueQsciScintillaBase
      SCI_COPYRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COPYTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COUNTCHARACTERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COUNTCODEUNITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CREATEDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CREATELOADER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELETEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELETEBACKNOTLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELETERANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELLINELEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELLINERIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELWORDLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELWORDRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELWORDRIGHTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DESCRIBEKEYWORDSETS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DESCRIBEPROPERTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DESCRIPTIONOFSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DISTANCETOSECONDARYSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCLINEFROMVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTSTARTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DROPSELECTIONN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_EDITTOGGLEOVERTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_EMPTYUNDOBUFFER enum valueQsciScintillaBase
      SCI_ENDUNDOACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ENSUREVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ENSUREVISIBLEENFORCEPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_EXPANDCHILDREN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDCOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDINDICATORFLASH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDINDICATORHIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDINDICATORSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDCHILDREN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDDISPLAYTEXTSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FORMATRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FORMFEED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FREESUBSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETACCESSIBILITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALCARETSBLINK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALCARETSVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALSELECTIONTYPING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETALLLINESVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETANCHOR enum valueQsciScintillaBase
      SCI_GETAUTOMATICFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETBACKSPACEUNINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETBUFFEREDDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEBACKALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEFRAME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEVISIBLEALWAYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETPERIOD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETSTICKY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCHARACTERPOINTER enum valueQsciScintillaBase
      SCI_GETCHARAT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCODEPAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCOMMANDEVENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCONTROLCHARSYMBOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCURLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCURRENTPOS enum valueQsciScintillaBase
      SCI_GETCURSOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDIRECTFUNCTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDIRECTPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDOCPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDOCUMENTOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEDGECOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEDGECOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEDGEMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETENDATLASTLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETENDSTYLED enum valueQsciScintillaBase
      SCI_GETEOLMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEXTRAASCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEXTRADESCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFIRSTVISIBLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOCUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOLDEXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOLDLEVEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOLDPARENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFONTQUALITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETGAPPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHIGHLIGHTGUIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTACTIVEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTACTIVEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTACTIVEUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTSINGLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETIDENTIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETIDLESTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETIMEINTERACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDENTATIONGUIDES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDICATORCURRENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDICATORVALUE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLASTCHILD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLAYOUTCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLENGTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLEXER enum valueQsciScintillaBase
      SCI_GETLEXERLANGUAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINECHARACTERINDEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINECOUNT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDTYPESACTIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDTYPESALLOWED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDTYPESSUPPORTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEINDENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEINDENTPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINESELENDPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINESELSTARTPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMAINSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINBACKN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINCURSORN enum valueQsciScintillaBase
      SCI_GETMARGINLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINMASKN enum valueQsciScintillaBase
      SCI_GETMARGINOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINSENSITIVEN enum valueQsciScintillaBase
      SCI_GETMARGINTYPEN enum valueQsciScintillaBase
      SCI_GETMARGINWIDTHN enum valueQsciScintillaBase
      SCI_GETMAXLINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMODEVENTMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMODIFY enum valueQsciScintillaBase
      SCI_GETMOUSEDOWNCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOUSEDWELLTIME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOUSESELECTIONRECTANGULARSWITCH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOUSEWHEELCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOVEEXTENDSSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMULTIPASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMULTIPLESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETNAMEDSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETNEXTTABSTOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETOVERTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPASTECONVERTENDINGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPHASESDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPOSITIONCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRIMARYSTYLEFROMSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRINTCOLOURMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRINTMAGNIFICATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRINTWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPROPERTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPROPERTYEXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPROPERTYINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPUNCTUATIONCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRANGEPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETREADONLY enum valueQsciScintillaBase
      SCI_GETRECTANGULARSELECTIONANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONMODIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETREPRESENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSCROLLWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSCROLLWIDTHTRACKING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSEARCHFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONEMPTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTATUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEAT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEBITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEBITSNEEDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEFROMSUBSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSUBSTYLEBASES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSUBSTYLESLENGTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSUBSTYLESSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTABDRAWMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTABINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTABWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTAG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTARGETEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTARGETSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTARGETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTECHNOLOGY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTEXT enum valueQsciScintillaBase
      SCI_GETTEXTLENGTH enum valueQsciScintillaBase
      SCI_GETTEXTRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTWOPHASEDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETUNDOCOLLECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETUSETABS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVIEWEOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVIEWWS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVIRTUALSPACEOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWHITESPACECHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWHITESPACESIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWORDCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPINDENTMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPSTARTINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPVISUALFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPVISUALFLAGSLOCATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETXOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETZOOM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GOTOLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GOTOPOS enum valueQsciScintillaBase
      SCI_GRABFOCUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HIDELINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HIDESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEDISPLAY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEDISPLAYEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMERECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEWRAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEWRAPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDEXPOSITIONFROMLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORALLONFOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORCLEARRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATOREND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORFILLRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORVALUEAT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETHOVERFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETHOVERSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETOUTLINEALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETUNDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETHOVERFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETHOVERSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETOUTLINEALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETUNDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INSERTTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ISRANGEWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LEXER_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINECOPY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINECUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDELETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDOWNRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDUPLICATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDDISPLAY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDDISPLAYEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDWRAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDWRAPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEFROMINDEXPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEFROMPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINELENGTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEREVERSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESCROLL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESCROLLDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESCROLLUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESJOIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESONSCREEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESSPLIT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINETRANSPOSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEUPRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LOADLEXERLIBRARY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LOWERCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINTEXTCLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERADD enum valueQsciScintillaBase
      SCI_MARKERADDSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERDEFINE enum valueQsciScintillaBase
      SCI_MARKERDEFINEPIXMAP enum valueQsciScintillaBase
      SCI_MARKERDEFINERGBAIMAGE enum valueQsciScintillaBase
      SCI_MARKERDELETE enum valueQsciScintillaBase
      SCI_MARKERDELETEALL enum valueQsciScintillaBase
      SCI_MARKERDELETEHANDLE enum valueQsciScintillaBase
      SCI_MARKERENABLEHIGHLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERGET enum valueQsciScintillaBase
      SCI_MARKERLINEFROMHANDLE enum valueQsciScintillaBase
      SCI_MARKERNEXT enum valueQsciScintillaBase
      SCI_MARKERPREVIOUS enum valueQsciScintillaBase
      SCI_MARKERSETALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERSETBACK enum valueQsciScintillaBase
      SCI_MARKERSETBACKSELECTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERSETFORE enum valueQsciScintillaBase
      SCI_MARKERSYMBOLDEFINED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MOVECARETINSIDEVIEW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MOVESELECTEDLINESDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MOVESELECTEDLINESUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIEDGEADDLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIEDGECLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIPLESELECTADDEACH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIPLESELECTADDNEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_NAMEOFSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_NEWLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_NULL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_OPTIONAL_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEDOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEDOWNRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEUPRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARADOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARADOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARAUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARAUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POINTXFROMPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POINTYFROMPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONAFTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONBEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONFROMLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONFROMPOINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONFROMPOINTCLOSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONRELATIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONRELATIVECODEUNITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PRIVATELEXERCALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PROPERTYNAMES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PROPERTYTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REGISTERIMAGE enum valueQsciScintillaBase
      SCI_REGISTERRGBAIMAGE enum valueQsciScintillaBase
      SCI_RELEASEALLEXTENDEDSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RELEASEDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RELEASELINECHARACTERINDEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REPLACESEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REPLACETARGET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REPLACETARGETRE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RGBAIMAGESETHEIGHT enum valueQsciScintillaBase
      SCI_RGBAIMAGESETSCALE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RGBAIMAGESETWIDTH enum valueQsciScintillaBase
      SCI_ROTATESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLTOEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLTOSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHINTARGET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHNEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHPREV enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SELECTALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SELECTIONDUPLICATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SELECTIONISRECTANGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETACCESSIBILITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALCARETSBLINK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALCARETSVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELECTIONTYPING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETANCHOR enum valueQsciScintillaBase
      SCI_SETAUTOMATICFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETBACKSPACEUNINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETBUFFEREDDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEBACKALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEFRAME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEVISIBLEALWAYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETPERIOD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETSTICKY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCHARSDEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCODEPAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCOMMANDEVENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCONTROLCHARSYMBOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCURRENTPOS enum valueQsciScintillaBase
      SCI_SETCURSOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETDOCPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEDGECOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEDGECOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEDGEMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEMPTYSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETENDATLASTLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEOLMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEXTRAASCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEXTRADESCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFIRSTVISIBLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOCUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDEXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDLEVEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDMARGINCOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDMARGINHICOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFONTQUALITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHIGHLIGHTGUIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTACTIVEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTACTIVEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTACTIVEUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTSINGLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIDENTIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIDENTIFIERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIDLESTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIMEINTERACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDENTATIONGUIDES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDICATORCURRENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDICATORVALUE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETKEYWORDS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLAYOUTCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLEXER enum valueQsciScintillaBase
      SCI_SETLEXERLANGUAGE enum valueQsciScintillaBase
      SCI_SETLINEENDTYPESALLOWED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLINEINDENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMAINSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINBACKN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINCURSORN enum valueQsciScintillaBase
      SCI_SETMARGINLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINMASKN enum valueQsciScintillaBase
      SCI_SETMARGINOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINSENSITIVEN enum valueQsciScintillaBase
      SCI_SETMARGINTYPEN enum valueQsciScintillaBase
      SCI_SETMARGINWIDTHN enum valueQsciScintillaBase
      SCI_SETMODEVENTMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSEDOWNCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSEDWELLTIME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSESELECTIONRECTANGULARSWITCH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSEWHEELCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMULTIPASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMULTIPLESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETOVERTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPASTECONVERTENDINGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPHASESDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPOSITIONCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPRINTCOLOURMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPRINTMAGNIFICATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPRINTWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPROPERTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPUNCTUATIONCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETREADONLY enum valueQsciScintillaBase
      SCI_SETRECTANGULARSELECTIONANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONMODIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETREPRESENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSAVEPOINT enum valueQsciScintillaBase
      SCI_SETSCROLLWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSCROLLWIDTHTRACKING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSEARCHFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTATUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTYLEBITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTYLINGEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTABDRAWMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTABINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTABWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTARGETEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTARGETRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTARGETSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTECHNOLOGY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTEXT enum valueQsciScintillaBase
      SCI_SETTWOPHASEDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETUNDOCOLLECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETUSETABS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVIEWEOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVIEWWS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVIRTUALSPACEOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVISIBLEPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACECHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACESIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWORDCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPINDENTMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPSTARTINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPVISUALFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPVISUALFLAGSLOCATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETXCARETPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETXOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETYCARETPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETZOOM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SHOWLINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STARTRECORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STARTSTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STOPRECORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEDOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLECLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETBOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETCHANGEABLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETCHARACTERSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETFONT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETHOTSPOT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETITALIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETSIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETSIZEFRACTIONAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETWEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLERESETDEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETBOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETCHANGEABLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETCHARACTERSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETFONT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETHOTSPOT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETITALIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETSIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETSIZEFRACTIONAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETWEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SWAPMAINANCHORCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TAGSOFSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TARGETFROMSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TARGETWHOLEDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TEXTHEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TEXTWIDTH enum valueQsciScintillaBase
      SCI_TOGGLECARETSTICKY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TOGGLEFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TOGGLEFOLDSHOWTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_UNDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_UPPERCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_USEPOPUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_USERLISTSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEDISPLAY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEDISPLAYEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMERECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEWRAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEWRAPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VERTICALCENTRECARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VISIBLEFROMDOCLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDENDPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFTENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTLEFTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTRIGHTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHTENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDSTARTPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WRAPCOUNT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ZOOMIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ZOOMOUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_ADD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_BACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_DELETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_DIVIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_DOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_END enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_ESCAPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_HOME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_INSERT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_LEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_MENU enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_NEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_PRIOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_RETURN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_RIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_RWIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_SUBTRACT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_TAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_UP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_WIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCLEX_A68K enum valueQsciScintillaBase
      SCLEX_ABAQUS enum valueQsciScintillaBase
      SCLEX_ADA enum valueQsciScintillaBase
      SCLEX_APDL enum valueQsciScintillaBase
      SCLEX_AS enum valueQsciScintillaBase
      SCLEX_ASM enum valueQsciScintillaBase
      SCLEX_ASN1 enum valueQsciScintillaBase
      SCLEX_ASP enum valueQsciScintillaBase
      SCLEX_ASYMPTOTE enum valueQsciScintillaBase
      SCLEX_AU3 enum valueQsciScintillaBase
      SCLEX_AVE enum valueQsciScintillaBase
      SCLEX_AVS enum valueQsciScintillaBase
      SCLEX_BAAN enum valueQsciScintillaBase
      SCLEX_BASH enum valueQsciScintillaBase
      SCLEX_BATCH enum valueQsciScintillaBase
      SCLEX_BIBTEX enum valueQsciScintillaBase
      SCLEX_BLITZBASIC enum valueQsciScintillaBase
      SCLEX_BULLANT enum valueQsciScintillaBase
      SCLEX_CAML enum valueQsciScintillaBase
      SCLEX_CLW enum valueQsciScintillaBase
      SCLEX_CLWNOCASE enum valueQsciScintillaBase
      SCLEX_CMAKE enum valueQsciScintillaBase
      SCLEX_COBOL enum valueQsciScintillaBase
      SCLEX_COFFEESCRIPT enum valueQsciScintillaBase
      SCLEX_CONF enum valueQsciScintillaBase
      SCLEX_CONTAINER enum valueQsciScintillaBase
      SCLEX_CPP enum valueQsciScintillaBase
      SCLEX_CPPNOCASE enum valueQsciScintillaBase
      SCLEX_CSOUND enum valueQsciScintillaBase
      SCLEX_CSS enum valueQsciScintillaBase
      SCLEX_D enum valueQsciScintillaBase
      SCLEX_DIFF enum valueQsciScintillaBase
      SCLEX_DMAP enum valueQsciScintillaBase
      SCLEX_DMIS enum valueQsciScintillaBase
      SCLEX_ECL enum valueQsciScintillaBase
      SCLEX_EDIFACT enum valueQsciScintillaBase
      SCLEX_EIFFEL enum valueQsciScintillaBase
      SCLEX_EIFFELKW enum valueQsciScintillaBase
      SCLEX_ERLANG enum valueQsciScintillaBase
      SCLEX_ERRORLIST enum valueQsciScintillaBase
      SCLEX_ESCRIPT enum valueQsciScintillaBase
      SCLEX_F77 enum valueQsciScintillaBase
      SCLEX_FLAGSHIP enum valueQsciScintillaBase
      SCLEX_FORTH enum valueQsciScintillaBase
      SCLEX_FORTRAN enum valueQsciScintillaBase
      SCLEX_FREEBASIC enum valueQsciScintillaBase
      SCLEX_GAP enum valueQsciScintillaBase
      SCLEX_GUI4CLI enum valueQsciScintillaBase
      SCLEX_HASKELL enum valueQsciScintillaBase
      SCLEX_HTML enum valueQsciScintillaBase
      SCLEX_IHEX enum valueQsciScintillaBase
      SCLEX_INDENT enum valueQsciScintillaBase
      SCLEX_INNOSETUP enum valueQsciScintillaBase
      SCLEX_JSON enum valueQsciScintillaBase
      SCLEX_KIX enum valueQsciScintillaBase
      SCLEX_KVIRC enum valueQsciScintillaBase
      SCLEX_LATEX enum valueQsciScintillaBase
      SCLEX_LISP enum valueQsciScintillaBase
      SCLEX_LITERATEHASKELL enum valueQsciScintillaBase
      SCLEX_LOT enum valueQsciScintillaBase
      SCLEX_LOUT enum valueQsciScintillaBase
      SCLEX_LUA enum valueQsciScintillaBase
      SCLEX_MAGIK enum valueQsciScintillaBase
      SCLEX_MAKEFILE enum valueQsciScintillaBase
      SCLEX_MARKDOWN enum valueQsciScintillaBase
      SCLEX_MATLAB enum valueQsciScintillaBase
      SCLEX_MAXIMA enum valueQsciScintillaBase
      SCLEX_METAPOST enum valueQsciScintillaBase
      SCLEX_MMIXAL enum valueQsciScintillaBase
      SCLEX_MODULA enum valueQsciScintillaBase
      SCLEX_MSSQL enum valueQsciScintillaBase
      SCLEX_MYSQL enum valueQsciScintillaBase
      SCLEX_NIMROD enum valueQsciScintillaBase
      SCLEX_NNCRONTAB enum valueQsciScintillaBase
      SCLEX_NSIS enum valueQsciScintillaBase
      SCLEX_NULL enum valueQsciScintillaBase
      SCLEX_OCTAVE enum valueQsciScintillaBase
      SCLEX_OPAL enum valueQsciScintillaBase
      SCLEX_OSCRIPT enum valueQsciScintillaBase
      SCLEX_PASCAL enum valueQsciScintillaBase
      SCLEX_PERL enum valueQsciScintillaBase
      SCLEX_PHP enum valueQsciScintillaBase
      SCLEX_PHPSCRIPT enum valueQsciScintillaBase
      SCLEX_PLM enum valueQsciScintillaBase
      SCLEX_PO enum valueQsciScintillaBase
      SCLEX_POV enum valueQsciScintillaBase
      SCLEX_POWERBASIC enum valueQsciScintillaBase
      SCLEX_POWERPRO enum valueQsciScintillaBase
      SCLEX_POWERSHELL enum valueQsciScintillaBase
      SCLEX_PROGRESS enum valueQsciScintillaBase
      SCLEX_PROPERTIES enum valueQsciScintillaBase
      SCLEX_PS enum valueQsciScintillaBase
      SCLEX_PUREBASIC enum valueQsciScintillaBase
      SCLEX_PYTHON enum valueQsciScintillaBase
      SCLEX_R enum valueQsciScintillaBase
      SCLEX_REBOL enum valueQsciScintillaBase
      SCLEX_REGISTRY enum valueQsciScintillaBase
      SCLEX_RUBY enum valueQsciScintillaBase
      SCLEX_RUST enum valueQsciScintillaBase
      SCLEX_SAS enum valueQsciScintillaBase
      SCLEX_SCRIPTOL enum valueQsciScintillaBase
      SCLEX_SMALLTALK enum valueQsciScintillaBase
      SCLEX_SML enum valueQsciScintillaBase
      SCLEX_SORCUS enum valueQsciScintillaBase
      SCLEX_SPECMAN enum valueQsciScintillaBase
      SCLEX_SPICE enum valueQsciScintillaBase
      SCLEX_SQL enum valueQsciScintillaBase
      SCLEX_SREC enum valueQsciScintillaBase
      SCLEX_STATA enum valueQsciScintillaBase
      SCLEX_STTXT enum valueQsciScintillaBase
      SCLEX_TACL enum valueQsciScintillaBase
      SCLEX_TADS3 enum valueQsciScintillaBase
      SCLEX_TAL enum valueQsciScintillaBase
      SCLEX_TCL enum valueQsciScintillaBase
      SCLEX_TCMD enum valueQsciScintillaBase
      SCLEX_TEHEX enum valueQsciScintillaBase
      SCLEX_TEX enum valueQsciScintillaBase
      SCLEX_TXT2TAGS enum valueQsciScintillaBase
      SCLEX_VB enum valueQsciScintillaBase
      SCLEX_VBSCRIPT enum valueQsciScintillaBase
      SCLEX_VERILOG enum valueQsciScintillaBase
      SCLEX_VHDL enum valueQsciScintillaBase
      SCLEX_VISUALPROLOG enum valueQsciScintillaBase
      SCLEX_XML enum valueQsciScintillaBase
      SCLEX_YAML enum valueQsciScintillaBase
      SCMOD_ALT enum valueQsciScintillaBase
      SCMOD_CTRL enum valueQsciScintillaBase
      SCMOD_META enum valueQsciScintillaBase
      SCMOD_NORM enum valueQsciScintillaBase
      SCMOD_SHIFT enum valueQsciScintillaBase
      SCMOD_SUPER enum valueQsciScintillaBase
      SCN_AUTOCCANCELLED()QsciScintillaBasesignal
      SCN_AUTOCCHARDELETED()QsciScintillaBasesignal
      SCN_AUTOCCOMPLETED(const char *selection, int position, int ch, int method)QsciScintillaBasesignal
      SCN_AUTOCSELECTION(const char *selection, int position, int ch, int method)QsciScintillaBasesignal
      SCN_AUTOCSELECTION(const char *selection, int position)QsciScintillaBasesignal
      SCN_AUTOCSELECTIONCHANGE(const char *selection, int id, int position)QsciScintillaBasesignal
      SCN_CALLTIPCLICK(int direction)QsciScintillaBasesignal
      SCN_CHARADDED(int charadded)QsciScintillaBasesignal
      SCN_DOUBLECLICK(int position, int line, int modifiers)QsciScintillaBasesignal
      SCN_DWELLEND(int position, int x, int y)QsciScintillaBasesignal
      SCN_DWELLSTART(int position, int x, int y)QsciScintillaBasesignal
      SCN_FOCUSIN()QsciScintillaBasesignal
      SCN_FOCUSOUT()QsciScintillaBasesignal
      SCN_HOTSPOTCLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_HOTSPOTDOUBLECLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_HOTSPOTRELEASECLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_INDICATORCLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_INDICATORRELEASE(int position, int modifiers)QsciScintillaBasesignal
      SCN_MACRORECORD(unsigned int, unsigned long, void *)QsciScintillaBasesignal
      SCN_MARGINCLICK(int position, int modifiers, int margin)QsciScintillaBasesignal
      SCN_MARGINRIGHTCLICK(int position, int modifiers, int margin)QsciScintillaBasesignal
      SCN_MODIFIED(int, int, const char *, int, int, int, int, int, int, int) (defined in QsciScintillaBase)QsciScintillaBasesignal
      SCN_MODIFYATTEMPTRO()QsciScintillaBasesignal
      SCN_NEEDSHOWN(int, int) (defined in QsciScintillaBase)QsciScintillaBasesignal
      SCN_PAINTED()QsciScintillaBasesignal
      SCN_SAVEPOINTLEFT()QsciScintillaBasesignal
      SCN_SAVEPOINTREACHED()QsciScintillaBasesignal
      SCN_STYLENEEDED(int position)QsciScintillaBasesignal
      SCN_UPDATEUI(int updated)QsciScintillaBasesignal
      SCN_URIDROPPED(const QUrl &url)QsciScintillaBasesignal
      SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method, int position)QsciScintillaBasesignal
      SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method)QsciScintillaBasesignal
      SCN_USERLISTSELECTION(const char *selection, int id)QsciScintillaBasesignal
      SCN_ZOOM() (defined in QsciScintillaBase)QsciScintillaBasesignal
      scrollContentsBy(int dx, int dy) (defined in QsciScintillaBase)QsciScintillaBaseprotectedvirtual
      scrollWidth() constQsciScintilla
      scrollWidthTracking() constQsciScintilla
      SCTD_LONGARROW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCTD_STRIKEOUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_NOWRAPLINESTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_RECTANGULARSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_USERACCESSIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_INVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_VISIBLEAFTERINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_VISIBLEALWAYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_VISIBLEONLYININDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      selectAll(bool select=true)QsciScintillavirtualslot
      selectedText() constQsciScintilla
      selectionChanged()QsciScintillasignal
      selectionToEol() constQsciScintilla
      selectToMatchingBrace()QsciScintillavirtualslot
      SendScintilla(unsigned int msg, unsigned long wParam=0, long lParam=0) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, void *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, uintptr_t wParam, const char *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, const char *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, const char *wParam, const char *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, long wParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, int wParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, long cpMin, long cpMax, char *lpstrText) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, const QColor &col) constQsciScintillaBase
      SendScintilla(unsigned int msg, const QColor &col) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, const QPixmap &lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, const QImage &lParam) constQsciScintillaBase
      SendScintillaPtrResult(unsigned int msg) constQsciScintillaBase
      setAnnotationDisplay(AnnotationDisplay display)QsciScintilla
      setAutoCompletionCaseSensitivity(bool cs)QsciScintillavirtualslot
      setAutoCompletionFillups(const char *fillups)QsciScintilla
      setAutoCompletionFillupsEnabled(bool enabled)QsciScintilla
      setAutoCompletionReplaceWord(bool replace)QsciScintillavirtualslot
      setAutoCompletionShowSingle(bool single)QsciScintillavirtualslot
      setAutoCompletionSource(AutoCompletionSource source)QsciScintillavirtualslot
      setAutoCompletionThreshold(int thresh)QsciScintillavirtualslot
      setAutoCompletionUseSingle(AutoCompletionUseSingle single)QsciScintillavirtualslot
      setAutoCompletionWordSeparators(const QStringList &separators)QsciScintilla
      setAutoIndent(bool autoindent)QsciScintillavirtualslot
      setBackspaceUnindents(bool unindent)QsciScintillavirtualslot
      setBraceMatching(BraceMatch bm)QsciScintillavirtualslot
      setCallTipsBackgroundColor(const QColor &col)QsciScintilla
      setCallTipsForegroundColor(const QColor &col)QsciScintilla
      setCallTipsHighlightColor(const QColor &col)QsciScintilla
      setCallTipsPosition(CallTipsPosition position)QsciScintilla
      setCallTipsStyle(CallTipsStyle style)QsciScintilla
      setCallTipsVisible(int nr)QsciScintilla
      setCaretForegroundColor(const QColor &col)QsciScintillavirtualslot
      setCaretLineBackgroundColor(const QColor &col)QsciScintillavirtualslot
      setCaretLineFrameWidth(int width)QsciScintillavirtualslot
      setCaretLineVisible(bool enable)QsciScintillavirtualslot
      setCaretWidth(int width)QsciScintillavirtualslot
      setColor(const QColor &c)QsciScintillavirtualslot
      setContractedFolds(const QList< int > &folds)QsciScintilla
      setCursorPosition(int line, int index)QsciScintillavirtualslot
      setDocument(const QsciDocument &document)QsciScintilla
      setEdgeColor(const QColor &col)QsciScintilla
      setEdgeColumn(int colnr)QsciScintilla
      setEdgeMode(EdgeMode mode)QsciScintilla
      setEolMode(EolMode mode)QsciScintillavirtualslot
      setEolVisibility(bool visible)QsciScintillavirtualslot
      setExtraAscent(int extra)QsciScintilla
      setExtraDescent(int extra)QsciScintilla
      setFirstVisibleLine(int linenr)QsciScintilla
      setFolding(FoldStyle fold, int margin=2)QsciScintillavirtualslot
      setFoldMarginColors(const QColor &fore, const QColor &back)QsciScintilla
      setFont(const QFont &f)QsciScintilla
      setHotspotBackgroundColor(const QColor &col)QsciScintilla
      setHotspotForegroundColor(const QColor &col)QsciScintilla
      setHotspotUnderline(bool enable)QsciScintilla
      setHotspotWrap(bool enable)QsciScintilla
      setIndentation(int line, int indentation)QsciScintillavirtualslot
      setIndentationGuides(bool enable)QsciScintillavirtualslot
      setIndentationGuidesBackgroundColor(const QColor &col)QsciScintillavirtualslot
      setIndentationGuidesForegroundColor(const QColor &col)QsciScintillavirtualslot
      setIndentationsUseTabs(bool tabs)QsciScintillavirtualslot
      setIndentationWidth(int width)QsciScintillavirtualslot
      setIndicatorDrawUnder(bool under, int indicatorNumber=-1)QsciScintilla
      setIndicatorForegroundColor(const QColor &col, int indicatorNumber=-1)QsciScintilla
      setIndicatorHoverForegroundColor(const QColor &col, int indicatorNumber=-1)QsciScintilla
      setIndicatorHoverStyle(IndicatorStyle style, int indicatorNumber=-1)QsciScintilla
      setIndicatorOutlineColor(const QColor &col, int indicatorNumber=-1)QsciScintilla
      setLexer(QsciLexer *lexer=0)QsciScintillavirtualslot
      setMarginBackgroundColor(int margin, const QColor &col)QsciScintilla
      setMarginLineNumbers(int margin, bool lnrs)QsciScintillavirtualslot
      setMarginMarkerMask(int margin, int mask)QsciScintillavirtualslot
      setMarginOptions(int options)QsciScintilla
      setMargins(int margins)QsciScintilla
      setMarginsBackgroundColor(const QColor &col)QsciScintillavirtualslot
      setMarginSensitivity(int margin, bool sens)QsciScintillavirtualslot
      setMarginsFont(const QFont &f)QsciScintillavirtualslot
      setMarginsForegroundColor(const QColor &col)QsciScintillavirtualslot
      setMarginText(int line, const QString &text, int style)QsciScintilla
      setMarginText(int line, const QString &text, const QsciStyle &style)QsciScintilla
      setMarginText(int line, const QsciStyledText &text)QsciScintilla
      setMarginText(int line, const QList< QsciStyledText > &text)QsciScintilla
      setMarginType(int margin, MarginType type)QsciScintilla
      setMarginWidth(int margin, int width)QsciScintillavirtualslot
      setMarginWidth(int margin, const QString &s)QsciScintillavirtualslot
      setMarkerBackgroundColor(const QColor &col, int markerNumber=-1)QsciScintilla
      setMarkerForegroundColor(const QColor &col, int markerNumber=-1)QsciScintilla
      setMatchedBraceBackgroundColor(const QColor &col)QsciScintilla
      setMatchedBraceForegroundColor(const QColor &col)QsciScintilla
      setMatchedBraceIndicator(int indicatorNumber)QsciScintilla
      setModified(bool m)QsciScintillavirtualslot
      setOverwriteMode(bool overwrite)QsciScintilla
      setPaper(const QColor &c)QsciScintillavirtualslot
      setReadOnly(bool ro)QsciScintillavirtualslot
      setScrollBars() (defined in QsciScintillaBase)QsciScintillaBaseprotected
      setScrollWidth(int pixelWidth)QsciScintilla
      setScrollWidthTracking(bool enabled)QsciScintilla
      setSelection(int lineFrom, int indexFrom, int lineTo, int indexTo)QsciScintillavirtualslot
      setSelectionBackgroundColor(const QColor &col)QsciScintillavirtualslot
      setSelectionForegroundColor(const QColor &col)QsciScintillavirtualslot
      setSelectionToEol(bool filled)QsciScintilla
      setTabDrawMode(TabDrawMode mode)QsciScintilla
      setTabIndents(bool indent)QsciScintillavirtualslot
      setTabWidth(int width)QsciScintillavirtualslot
      setText(const QString &text)QsciScintillavirtualslot
      setUnmatchedBraceBackgroundColor(const QColor &col)QsciScintilla
      setUnmatchedBraceForegroundColor(const QColor &col)QsciScintilla
      setUnmatchedBraceIndicator(int indicatorNumber)QsciScintilla
      setUtf8(bool cp)QsciScintillavirtualslot
      setWhitespaceBackgroundColor(const QColor &col)QsciScintilla
      setWhitespaceForegroundColor(const QColor &col)QsciScintilla
      setWhitespaceSize(int size)QsciScintilla
      setWhitespaceVisibility(WhitespaceVisibility mode)QsciScintillavirtualslot
      setWrapIndentMode(WrapIndentMode mode)QsciScintilla
      setWrapMode(WrapMode mode)QsciScintillavirtualslot
      setWrapVisualFlags(WrapVisualFlag endFlag, WrapVisualFlag startFlag=WrapFlagNone, int indent=0)QsciScintilla
      showUserList(int id, const QStringList &list)QsciScintilla
      SloppyBraceMatch enum valueQsciScintilla
      SmallRectangle enum valueQsciScintilla
      SquiggleIndicator enum valueQsciScintilla
      SquiggleLowIndicator enum valueQsciScintilla
      SquigglePixmapIndicator enum valueQsciScintilla
      standardCommands() constQsciScintillainline
      StraightBoxIndicator enum valueQsciScintilla
      StrictBraceMatch enum valueQsciScintilla
      StrikeIndicator enum valueQsciScintilla
      STYLE_BRACEBAD enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_BRACELIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_CALLTIP enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_CONTROLCHAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_FOLDDISPLAYTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_INDENTGUIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_LASTPREDEFINED enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_LINENUMBER enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_MAX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SymbolMargin enum valueQsciScintilla
      SymbolMarginColor enum valueQsciScintilla
      SymbolMarginDefaultBackgroundColor enum valueQsciScintilla
      SymbolMarginDefaultForegroundColor enum valueQsciScintilla
      TabDrawMode enum nameQsciScintilla
      tabDrawMode() constQsciScintilla
      tabIndents() constQsciScintilla
      TabLongArrow enum valueQsciScintilla
      TabStrikeOut enum valueQsciScintilla
      tabWidth() constQsciScintilla
      text() constQsciScintilla
      text(int line) constQsciScintilla
      text(int start, int end) constQsciScintilla
      textAsBytes(const QString &text) const (defined in QsciScintillaBase)QsciScintillaBaseprotected
      textChanged()QsciScintillasignal
      TextColorIndicator enum valueQsciScintilla
      textHeight(int linenr) constQsciScintilla
      TextMargin enum valueQsciScintilla
      TextMarginRightJustified enum valueQsciScintilla
      ThickCompositionIndicator enum valueQsciScintilla
      ThinCompositionIndicator enum valueQsciScintilla
      ThreeDots enum valueQsciScintilla
      ThreeRightArrows enum valueQsciScintilla
      toMimeData(const QByteArray &text, bool rectangular) constQsciScintillaBaseprotectedvirtual
      TriangleCharacterIndicator enum valueQsciScintilla
      TriangleIndicator enum valueQsciScintilla
      TTIndicator enum valueQsciScintilla
      Underline enum valueQsciScintilla
      undo()QsciScintillavirtualslot
      UNDO_MAY_COALESCE enum value (defined in QsciScintillaBase)QsciScintillaBase
      unindent(int line)QsciScintillavirtualslot
      userListActivated(int id, const QString &string)QsciScintillasignal
      VerticalLine enum valueQsciScintilla
      VISIBLE_SLOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      VISIBLE_STRICT enum value (defined in QsciScintillaBase)QsciScintillaBase
      wheelEvent(QWheelEvent *e)QsciScintillaprotectedvirtual
      whitespaceSize() constQsciScintilla
      whitespaceVisibility() constQsciScintilla
      WhitespaceVisibility enum nameQsciScintilla
      wordAtLineIndex(int line, int index) constQsciScintilla
      wordAtPoint(const QPoint &point) constQsciScintilla
      wordCharacters() constQsciScintilla
      WrapCharacter enum valueQsciScintilla
      WrapFlagByBorder enum valueQsciScintilla
      WrapFlagByText enum valueQsciScintilla
      WrapFlagInMargin enum valueQsciScintilla
      WrapFlagNone enum valueQsciScintilla
      WrapIndentDeeplyIndented enum valueQsciScintilla
      WrapIndentFixed enum valueQsciScintilla
      WrapIndentIndented enum valueQsciScintilla
      WrapIndentMode enum nameQsciScintilla
      wrapIndentMode() constQsciScintilla
      WrapIndentSame enum valueQsciScintilla
      WrapMode enum nameQsciScintilla
      wrapMode() constQsciScintilla
      WrapNone enum valueQsciScintilla
      WrapVisualFlag enum nameQsciScintilla
      WrapWhitespace enum valueQsciScintilla
      WrapWord enum valueQsciScintilla
      write(QIODevice *io) constQsciScintilla
      WsInvisible enum valueQsciScintilla
      WsVisible enum valueQsciScintilla
      WsVisibleAfterIndent enum valueQsciScintilla
      WsVisibleOnlyInIndent enum valueQsciScintilla
      zoomIn(int range)QsciScintillavirtualslot
      zoomIn()QsciScintillavirtualslot
      zoomOut(int range)QsciScintillavirtualslot
      zoomOut()QsciScintillavirtualslot
      zoomTo(int size)QsciScintillavirtualslot
      ~QsciScintilla()QsciScintillavirtual
      ~QsciScintillaBase()QsciScintillaBasevirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciScintilla.html b/third_party/qscintilla/doc/html/classQsciScintilla.html new file mode 100644 index 0000000..861d2fd --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciScintilla.html @@ -0,0 +1,9942 @@ + + + + + + + +QScintilla: QsciScintilla Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qsciscintilla.h>

      + +

      Inherits QsciScintillaBase.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Types

      enum  { AiMaintain = 0x01, +AiOpening = 0x02, +AiClosing = 0x04 + }
       
      enum  AnnotationDisplay {
      +  AnnotationHidden = ANNOTATION_HIDDEN, +AnnotationStandard = ANNOTATION_STANDARD, +AnnotationBoxed = ANNOTATION_BOXED, +
      +  AnnotationIndented = ANNOTATION_INDENTED +
      + }
       
      enum  AutoCompletionUseSingle { AcusNever, +AcusExplicit, +AcusAlways + }
       
      enum  AutoCompletionSource {
      +  AcsNone, +AcsAll, +AcsDocument, +
      +  AcsAPIs +
      + }
       
      enum  BraceMatch { NoBraceMatch, +StrictBraceMatch, +SloppyBraceMatch + }
       
      enum  CallTipsPosition { CallTipsBelowText, +CallTipsAboveText + }
       
      enum  CallTipsStyle {
      +  CallTipsNone, +CallTipsNoContext, +CallTipsNoAutoCompletionContext, +
      +  CallTipsContext +
      + }
       
      enum  EdgeMode {
      +  EdgeNone = EDGE_NONE, +EdgeLine = EDGE_LINE, +EdgeBackground = EDGE_BACKGROUND, +
      +  EdgeMultipleLines = EDGE_MULTILINE +
      + }
       
      enum  EolMode { EolWindows = SC_EOL_CRLF, +EolUnix = SC_EOL_LF, +EolMac = SC_EOL_CR + }
       
      enum  FoldStyle {
      +  NoFoldStyle, +PlainFoldStyle, +CircledFoldStyle, +
      +  BoxedFoldStyle, +CircledTreeFoldStyle, +BoxedTreeFoldStyle +
      + }
       
      enum  IndicatorStyle {
      +  PlainIndicator = INDIC_PLAIN, +SquiggleIndicator = INDIC_SQUIGGLE, +TTIndicator = INDIC_TT, +
      +  DiagonalIndicator = INDIC_DIAGONAL, +StrikeIndicator = INDIC_STRIKE, +HiddenIndicator = INDIC_HIDDEN, +
      +  BoxIndicator = INDIC_BOX, +RoundBoxIndicator = INDIC_ROUNDBOX, +StraightBoxIndicator = INDIC_STRAIGHTBOX, +
      +  FullBoxIndicator = INDIC_FULLBOX, +DashesIndicator = INDIC_DASH, +DotsIndicator = INDIC_DOTS, +
      +  SquiggleLowIndicator = INDIC_SQUIGGLELOW, +DotBoxIndicator = INDIC_DOTBOX, +SquigglePixmapIndicator = INDIC_SQUIGGLEPIXMAP, +
      +  ThickCompositionIndicator = INDIC_COMPOSITIONTHICK, +ThinCompositionIndicator = INDIC_COMPOSITIONTHIN, +TextColorIndicator = INDIC_TEXTFORE, +
      +  TriangleIndicator = INDIC_POINT, +TriangleCharacterIndicator = INDIC_POINTCHARACTER, +GradientIndicator = INDIC_GRADIENT, +
      +  CentreGradientIndicator = INDIC_GRADIENTCENTRE +
      + }
       
      enum  { MoNone = SC_MARGINOPTION_NONE, +MoSublineSelect = SC_MARGINOPTION_SUBLINESELECT + }
       
      enum  MarginType {
      +  SymbolMargin = SC_MARGIN_SYMBOL, +SymbolMarginDefaultForegroundColor = SC_MARGIN_FORE, +SymbolMarginDefaultBackgroundColor = SC_MARGIN_BACK, +
      +  NumberMargin = SC_MARGIN_NUMBER, +TextMargin = SC_MARGIN_TEXT, +TextMarginRightJustified = SC_MARGIN_RTEXT, +
      +  SymbolMarginColor = SC_MARGIN_COLOUR +
      + }
       
      enum  MarkerSymbol {
      +  Circle = SC_MARK_CIRCLE, +Rectangle = SC_MARK_ROUNDRECT, +RightTriangle = SC_MARK_ARROW, +
      +  SmallRectangle = SC_MARK_SMALLRECT, +RightArrow = SC_MARK_SHORTARROW, +Invisible = SC_MARK_EMPTY, +
      +  DownTriangle = SC_MARK_ARROWDOWN, +Minus = SC_MARK_MINUS, +Plus = SC_MARK_PLUS, +
      +  VerticalLine = SC_MARK_VLINE, +BottomLeftCorner = SC_MARK_LCORNER, +LeftSideSplitter = SC_MARK_TCORNER, +
      +  BoxedPlus = SC_MARK_BOXPLUS, +BoxedPlusConnected = SC_MARK_BOXPLUSCONNECTED, +BoxedMinus = SC_MARK_BOXMINUS, +
      +  BoxedMinusConnected = SC_MARK_BOXMINUSCONNECTED, +RoundedBottomLeftCorner = SC_MARK_LCORNERCURVE, +LeftSideRoundedSplitter = SC_MARK_TCORNERCURVE, +
      +  CircledPlus = SC_MARK_CIRCLEPLUS, +CircledPlusConnected = SC_MARK_CIRCLEPLUSCONNECTED, +CircledMinus = SC_MARK_CIRCLEMINUS, +
      +  CircledMinusConnected = SC_MARK_CIRCLEMINUSCONNECTED, +Background = SC_MARK_BACKGROUND, +ThreeDots = SC_MARK_DOTDOTDOT, +
      +  ThreeRightArrows = SC_MARK_ARROWS, +FullRectangle = SC_MARK_FULLRECT, +LeftRectangle = SC_MARK_LEFTRECT, +
      +  Underline = SC_MARK_UNDERLINE, +Bookmark = SC_MARK_BOOKMARK +
      + }
       
      enum  TabDrawMode { TabLongArrow = SCTD_LONGARROW, +TabStrikeOut = SCTD_STRIKEOUT + }
       
      enum  WhitespaceVisibility {
      +  WsInvisible = SCWS_INVISIBLE, +WsVisible = SCWS_VISIBLEALWAYS, +WsVisibleAfterIndent = SCWS_VISIBLEAFTERINDENT, +
      +  WsVisibleOnlyInIndent = SCWS_VISIBLEONLYININDENT +
      + }
       
      enum  WrapMode {
      +  WrapNone = SC_WRAP_NONE, +WrapWord = SC_WRAP_WORD, +WrapCharacter = SC_WRAP_CHAR, +
      +  WrapWhitespace = SC_WRAP_WHITESPACE +
      + }
       
      enum  WrapVisualFlag {
      +  WrapFlagNone, +WrapFlagByText, +WrapFlagByBorder, +
      +  WrapFlagInMargin +
      + }
       
      enum  WrapIndentMode {
      +  WrapIndentFixed = SC_WRAPINDENT_FIXED, +WrapIndentSame = SC_WRAPINDENT_SAME, +WrapIndentIndented = SC_WRAPINDENT_INDENT, +
      +  WrapIndentDeeplyIndented = SC_WRAPINDENT_DEEPINDENT +
      + }
       
      - Public Types inherited from QsciScintillaBase
      enum  {
      +  SCI_START = 2000, +SCI_OPTIONAL_START = 3000, +SCI_LEXER_START = 4000, +
      +  SCI_ADDTEXT = 2001, +SCI_ADDSTYLEDTEXT = 2002, +SCI_INSERTTEXT = 2003, +
      +  SCI_CLEARALL = 2004, +SCI_CLEARDOCUMENTSTYLE = 2005, +SCI_GETLENGTH = 2006, +
      +  SCI_GETCHARAT = 2007, +SCI_GETCURRENTPOS = 2008, +SCI_GETANCHOR = 2009, +
      +  SCI_GETSTYLEAT = 2010, +SCI_REDO = 2011, +SCI_SETUNDOCOLLECTION = 2012, +
      +  SCI_SELECTALL = 2013, +SCI_SETSAVEPOINT = 2014, +SCI_GETSTYLEDTEXT = 2015, +
      +  SCI_CANREDO = 2016, +SCI_MARKERLINEFROMHANDLE = 2017, +SCI_MARKERDELETEHANDLE = 2018, +
      +  SCI_GETUNDOCOLLECTION = 2019, +SCI_GETVIEWWS = 2020, +SCI_SETVIEWWS = 2021, +
      +  SCI_POSITIONFROMPOINT = 2022, +SCI_POSITIONFROMPOINTCLOSE = 2023, +SCI_GOTOLINE = 2024, +
      +  SCI_GOTOPOS = 2025, +SCI_SETANCHOR = 2026, +SCI_GETCURLINE = 2027, +
      +  SCI_GETENDSTYLED = 2028, +SCI_CONVERTEOLS = 2029, +SCI_GETEOLMODE = 2030, +
      +  SCI_SETEOLMODE = 2031, +SCI_STARTSTYLING = 2032, +SCI_SETSTYLING = 2033, +
      +  SCI_GETBUFFEREDDRAW = 2034, +SCI_SETBUFFEREDDRAW = 2035, +SCI_SETTABWIDTH = 2036, +
      +  SCI_GETTABWIDTH = 2121, +SCI_SETCODEPAGE = 2037, +SCI_MARKERDEFINE = 2040, +
      +  SCI_MARKERSETFORE = 2041, +SCI_MARKERSETBACK = 2042, +SCI_MARKERADD = 2043, +
      +  SCI_MARKERDELETE = 2044, +SCI_MARKERDELETEALL = 2045, +SCI_MARKERGET = 2046, +
      +  SCI_MARKERNEXT = 2047, +SCI_MARKERPREVIOUS = 2048, +SCI_MARKERDEFINEPIXMAP = 2049, +
      +  SCI_SETMARGINTYPEN = 2240, +SCI_GETMARGINTYPEN = 2241, +SCI_SETMARGINWIDTHN = 2242, +
      +  SCI_GETMARGINWIDTHN = 2243, +SCI_SETMARGINMASKN = 2244, +SCI_GETMARGINMASKN = 2245, +
      +  SCI_SETMARGINSENSITIVEN = 2246, +SCI_GETMARGINSENSITIVEN = 2247, +SCI_SETMARGINCURSORN = 2248, +
      +  SCI_GETMARGINCURSORN = 2249, +SCI_STYLECLEARALL = 2050, +SCI_STYLESETFORE = 2051, +
      +  SCI_STYLESETBACK = 2052, +SCI_STYLESETBOLD = 2053, +SCI_STYLESETITALIC = 2054, +
      +  SCI_STYLESETSIZE = 2055, +SCI_STYLESETFONT = 2056, +SCI_STYLESETEOLFILLED = 2057, +
      +  SCI_STYLERESETDEFAULT = 2058, +SCI_STYLESETUNDERLINE = 2059, +SCI_STYLESETCASE = 2060, +
      +  SCI_STYLESETSIZEFRACTIONAL = 2061, +SCI_STYLEGETSIZEFRACTIONAL = 2062, +SCI_STYLESETWEIGHT = 2063, +
      +  SCI_STYLEGETWEIGHT = 2064, +SCI_STYLESETCHARACTERSET = 2066, +SCI_SETSELFORE = 2067, +
      +  SCI_SETSELBACK = 2068, +SCI_SETCARETFORE = 2069, +SCI_ASSIGNCMDKEY = 2070, +
      +  SCI_CLEARCMDKEY = 2071, +SCI_CLEARALLCMDKEYS = 2072, +SCI_SETSTYLINGEX = 2073, +
      +  SCI_STYLESETVISIBLE = 2074, +SCI_GETCARETPERIOD = 2075, +SCI_SETCARETPERIOD = 2076, +
      +  SCI_SETWORDCHARS = 2077, +SCI_BEGINUNDOACTION = 2078, +SCI_ENDUNDOACTION = 2079, +
      +  SCI_INDICSETSTYLE = 2080, +SCI_INDICGETSTYLE = 2081, +SCI_INDICSETFORE = 2082, +
      +  SCI_INDICGETFORE = 2083, +SCI_SETWHITESPACEFORE = 2084, +SCI_SETWHITESPACEBACK = 2085, +
      +  SCI_SETWHITESPACESIZE = 2086, +SCI_GETWHITESPACESIZE = 2087, +SCI_SETSTYLEBITS = 2090, +
      +  SCI_GETSTYLEBITS = 2091, +SCI_SETLINESTATE = 2092, +SCI_GETLINESTATE = 2093, +
      +  SCI_GETMAXLINESTATE = 2094, +SCI_GETCARETLINEVISIBLE = 2095, +SCI_SETCARETLINEVISIBLE = 2096, +
      +  SCI_GETCARETLINEBACK = 2097, +SCI_SETCARETLINEBACK = 2098, +SCI_STYLESETCHANGEABLE = 2099, +
      +  SCI_AUTOCSHOW = 2100, +SCI_AUTOCCANCEL = 2101, +SCI_AUTOCACTIVE = 2102, +
      +  SCI_AUTOCPOSSTART = 2103, +SCI_AUTOCCOMPLETE = 2104, +SCI_AUTOCSTOPS = 2105, +
      +  SCI_AUTOCSETSEPARATOR = 2106, +SCI_AUTOCGETSEPARATOR = 2107, +SCI_AUTOCSELECT = 2108, +
      +  SCI_AUTOCSETCANCELATSTART = 2110, +SCI_AUTOCGETCANCELATSTART = 2111, +SCI_AUTOCSETFILLUPS = 2112, +
      +  SCI_AUTOCSETCHOOSESINGLE = 2113, +SCI_AUTOCGETCHOOSESINGLE = 2114, +SCI_AUTOCSETIGNORECASE = 2115, +
      +  SCI_AUTOCGETIGNORECASE = 2116, +SCI_USERLISTSHOW = 2117, +SCI_AUTOCSETAUTOHIDE = 2118, +
      +  SCI_AUTOCGETAUTOHIDE = 2119, +SCI_AUTOCSETDROPRESTOFWORD = 2270, +SCI_AUTOCGETDROPRESTOFWORD = 2271, +
      +  SCI_SETINDENT = 2122, +SCI_GETINDENT = 2123, +SCI_SETUSETABS = 2124, +
      +  SCI_GETUSETABS = 2125, +SCI_SETLINEINDENTATION = 2126, +SCI_GETLINEINDENTATION = 2127, +
      +  SCI_GETLINEINDENTPOSITION = 2128, +SCI_GETCOLUMN = 2129, +SCI_SETHSCROLLBAR = 2130, +
      +  SCI_GETHSCROLLBAR = 2131, +SCI_SETINDENTATIONGUIDES = 2132, +SCI_GETINDENTATIONGUIDES = 2133, +
      +  SCI_SETHIGHLIGHTGUIDE = 2134, +SCI_GETHIGHLIGHTGUIDE = 2135, +SCI_GETLINEENDPOSITION = 2136, +
      +  SCI_GETCODEPAGE = 2137, +SCI_GETCARETFORE = 2138, +SCI_GETREADONLY = 2140, +
      +  SCI_SETCURRENTPOS = 2141, +SCI_SETSELECTIONSTART = 2142, +SCI_GETSELECTIONSTART = 2143, +
      +  SCI_SETSELECTIONEND = 2144, +SCI_GETSELECTIONEND = 2145, +SCI_SETPRINTMAGNIFICATION = 2146, +
      +  SCI_GETPRINTMAGNIFICATION = 2147, +SCI_SETPRINTCOLOURMODE = 2148, +SCI_GETPRINTCOLOURMODE = 2149, +
      +  SCI_FINDTEXT = 2150, +SCI_FORMATRANGE = 2151, +SCI_GETFIRSTVISIBLELINE = 2152, +
      +  SCI_GETLINE = 2153, +SCI_GETLINECOUNT = 2154, +SCI_SETMARGINLEFT = 2155, +
      +  SCI_GETMARGINLEFT = 2156, +SCI_SETMARGINRIGHT = 2157, +SCI_GETMARGINRIGHT = 2158, +
      +  SCI_GETMODIFY = 2159, +SCI_SETSEL = 2160, +SCI_GETSELTEXT = 2161, +
      +  SCI_GETTEXTRANGE = 2162, +SCI_HIDESELECTION = 2163, +SCI_POINTXFROMPOSITION = 2164, +
      +  SCI_POINTYFROMPOSITION = 2165, +SCI_LINEFROMPOSITION = 2166, +SCI_POSITIONFROMLINE = 2167, +
      +  SCI_LINESCROLL = 2168, +SCI_SCROLLCARET = 2169, +SCI_REPLACESEL = 2170, +
      +  SCI_SETREADONLY = 2171, +SCI_NULL = 2172, +SCI_CANPASTE = 2173, +
      +  SCI_CANUNDO = 2174, +SCI_EMPTYUNDOBUFFER = 2175, +SCI_UNDO = 2176, +
      +  SCI_CUT = 2177, +SCI_COPY = 2178, +SCI_PASTE = 2179, +
      +  SCI_CLEAR = 2180, +SCI_SETTEXT = 2181, +SCI_GETTEXT = 2182, +
      +  SCI_GETTEXTLENGTH = 2183, +SCI_GETDIRECTFUNCTION = 2184, +SCI_GETDIRECTPOINTER = 2185, +
      +  SCI_SETOVERTYPE = 2186, +SCI_GETOVERTYPE = 2187, +SCI_SETCARETWIDTH = 2188, +
      +  SCI_GETCARETWIDTH = 2189, +SCI_SETTARGETSTART = 2190, +SCI_GETTARGETSTART = 2191, +
      +  SCI_SETTARGETEND = 2192, +SCI_GETTARGETEND = 2193, +SCI_REPLACETARGET = 2194, +
      +  SCI_REPLACETARGETRE = 2195, +SCI_SEARCHINTARGET = 2197, +SCI_SETSEARCHFLAGS = 2198, +
      +  SCI_GETSEARCHFLAGS = 2199, +SCI_CALLTIPSHOW = 2200, +SCI_CALLTIPCANCEL = 2201, +
      +  SCI_CALLTIPACTIVE = 2202, +SCI_CALLTIPPOSSTART = 2203, +SCI_CALLTIPSETHLT = 2204, +
      +  SCI_CALLTIPSETBACK = 2205, +SCI_CALLTIPSETFORE = 2206, +SCI_CALLTIPSETFOREHLT = 2207, +
      +  SCI_AUTOCSETMAXWIDTH = 2208, +SCI_AUTOCGETMAXWIDTH = 2209, +SCI_AUTOCSETMAXHEIGHT = 2210, +
      +  SCI_AUTOCGETMAXHEIGHT = 2211, +SCI_CALLTIPUSESTYLE = 2212, +SCI_CALLTIPSETPOSITION = 2213, +
      +  SCI_CALLTIPSETPOSSTART = 2214, +SCI_VISIBLEFROMDOCLINE = 2220, +SCI_DOCLINEFROMVISIBLE = 2221, +
      +  SCI_SETFOLDLEVEL = 2222, +SCI_GETFOLDLEVEL = 2223, +SCI_GETLASTCHILD = 2224, +
      +  SCI_GETFOLDPARENT = 2225, +SCI_SHOWLINES = 2226, +SCI_HIDELINES = 2227, +
      +  SCI_GETLINEVISIBLE = 2228, +SCI_SETFOLDEXPANDED = 2229, +SCI_GETFOLDEXPANDED = 2230, +
      +  SCI_TOGGLEFOLD = 2231, +SCI_ENSUREVISIBLE = 2232, +SCI_SETFOLDFLAGS = 2233, +
      +  SCI_ENSUREVISIBLEENFORCEPOLICY = 2234, +SCI_WRAPCOUNT = 2235, +SCI_GETALLLINESVISIBLE = 2236, +
      +  SCI_FOLDLINE = 2237, +SCI_FOLDCHILDREN = 2238, +SCI_EXPANDCHILDREN = 2239, +
      +  SCI_SETMARGINBACKN = 2250, +SCI_GETMARGINBACKN = 2251, +SCI_SETMARGINS = 2252, +
      +  SCI_GETMARGINS = 2253, +SCI_SETTABINDENTS = 2260, +SCI_GETTABINDENTS = 2261, +
      +  SCI_SETBACKSPACEUNINDENTS = 2262, +SCI_GETBACKSPACEUNINDENTS = 2263, +SCI_SETMOUSEDWELLTIME = 2264, +
      +  SCI_GETMOUSEDWELLTIME = 2265, +SCI_WORDSTARTPOSITION = 2266, +SCI_WORDENDPOSITION = 2267, +
      +  SCI_SETWRAPMODE = 2268, +SCI_GETWRAPMODE = 2269, +SCI_SETLAYOUTCACHE = 2272, +
      +  SCI_GETLAYOUTCACHE = 2273, +SCI_SETSCROLLWIDTH = 2274, +SCI_GETSCROLLWIDTH = 2275, +
      +  SCI_TEXTWIDTH = 2276, +SCI_SETENDATLASTLINE = 2277, +SCI_GETENDATLASTLINE = 2278, +
      +  SCI_TEXTHEIGHT = 2279, +SCI_SETVSCROLLBAR = 2280, +SCI_GETVSCROLLBAR = 2281, +
      +  SCI_APPENDTEXT = 2282, +SCI_GETTWOPHASEDRAW = 2283, +SCI_SETTWOPHASEDRAW = 2284, +
      +  SCI_AUTOCGETTYPESEPARATOR = 2285, +SCI_AUTOCSETTYPESEPARATOR = 2286, +SCI_TARGETFROMSELECTION = 2287, +
      +  SCI_LINESJOIN = 2288, +SCI_LINESSPLIT = 2289, +SCI_SETFOLDMARGINCOLOUR = 2290, +
      +  SCI_SETFOLDMARGINHICOLOUR = 2291, +SCI_MARKERSETBACKSELECTED = 2292, +SCI_MARKERENABLEHIGHLIGHT = 2293, +
      +  SCI_LINEDOWN = 2300, +SCI_LINEDOWNEXTEND = 2301, +SCI_LINEUP = 2302, +
      +  SCI_LINEUPEXTEND = 2303, +SCI_CHARLEFT = 2304, +SCI_CHARLEFTEXTEND = 2305, +
      +  SCI_CHARRIGHT = 2306, +SCI_CHARRIGHTEXTEND = 2307, +SCI_WORDLEFT = 2308, +
      +  SCI_WORDLEFTEXTEND = 2309, +SCI_WORDRIGHT = 2310, +SCI_WORDRIGHTEXTEND = 2311, +
      +  SCI_HOME = 2312, +SCI_HOMEEXTEND = 2313, +SCI_LINEEND = 2314, +
      +  SCI_LINEENDEXTEND = 2315, +SCI_DOCUMENTSTART = 2316, +SCI_DOCUMENTSTARTEXTEND = 2317, +
      +  SCI_DOCUMENTEND = 2318, +SCI_DOCUMENTENDEXTEND = 2319, +SCI_PAGEUP = 2320, +
      +  SCI_PAGEUPEXTEND = 2321, +SCI_PAGEDOWN = 2322, +SCI_PAGEDOWNEXTEND = 2323, +
      +  SCI_EDITTOGGLEOVERTYPE = 2324, +SCI_CANCEL = 2325, +SCI_DELETEBACK = 2326, +
      +  SCI_TAB = 2327, +SCI_BACKTAB = 2328, +SCI_NEWLINE = 2329, +
      +  SCI_FORMFEED = 2330, +SCI_VCHOME = 2331, +SCI_VCHOMEEXTEND = 2332, +
      +  SCI_ZOOMIN = 2333, +SCI_ZOOMOUT = 2334, +SCI_DELWORDLEFT = 2335, +
      +  SCI_DELWORDRIGHT = 2336, +SCI_LINECUT = 2337, +SCI_LINEDELETE = 2338, +
      +  SCI_LINETRANSPOSE = 2339, +SCI_LOWERCASE = 2340, +SCI_UPPERCASE = 2341, +
      +  SCI_LINESCROLLDOWN = 2342, +SCI_LINESCROLLUP = 2343, +SCI_DELETEBACKNOTLINE = 2344, +
      +  SCI_HOMEDISPLAY = 2345, +SCI_HOMEDISPLAYEXTEND = 2346, +SCI_LINEENDDISPLAY = 2347, +
      +  SCI_LINEENDDISPLAYEXTEND = 2348, +SCI_MOVECARETINSIDEVIEW = 2401, +SCI_LINELENGTH = 2350, +
      +  SCI_BRACEHIGHLIGHT = 2351, +SCI_BRACEBADLIGHT = 2352, +SCI_BRACEMATCH = 2353, +
      +  SCI_LINEREVERSE = 2354, +SCI_GETVIEWEOL = 2355, +SCI_SETVIEWEOL = 2356, +
      +  SCI_GETDOCPOINTER = 2357, +SCI_SETDOCPOINTER = 2358, +SCI_SETMODEVENTMASK = 2359, +
      +  SCI_GETEDGECOLUMN = 2360, +SCI_SETEDGECOLUMN = 2361, +SCI_GETEDGEMODE = 2362, +
      +  SCI_SETEDGEMODE = 2363, +SCI_GETEDGECOLOUR = 2364, +SCI_SETEDGECOLOUR = 2365, +
      +  SCI_SEARCHANCHOR = 2366, +SCI_SEARCHNEXT = 2367, +SCI_SEARCHPREV = 2368, +
      +  SCI_LINESONSCREEN = 2370, +SCI_USEPOPUP = 2371, +SCI_SELECTIONISRECTANGLE = 2372, +
      +  SCI_SETZOOM = 2373, +SCI_GETZOOM = 2374, +SCI_CREATEDOCUMENT = 2375, +
      +  SCI_ADDREFDOCUMENT = 2376, +SCI_RELEASEDOCUMENT = 2377, +SCI_GETMODEVENTMASK = 2378, +
      +  SCI_SETFOCUS = 2380, +SCI_GETFOCUS = 2381, +SCI_SETSTATUS = 2382, +
      +  SCI_GETSTATUS = 2383, +SCI_SETMOUSEDOWNCAPTURES = 2384, +SCI_GETMOUSEDOWNCAPTURES = 2385, +
      +  SCI_SETCURSOR = 2386, +SCI_GETCURSOR = 2387, +SCI_SETCONTROLCHARSYMBOL = 2388, +
      +  SCI_GETCONTROLCHARSYMBOL = 2389, +SCI_WORDPARTLEFT = 2390, +SCI_WORDPARTLEFTEXTEND = 2391, +
      +  SCI_WORDPARTRIGHT = 2392, +SCI_WORDPARTRIGHTEXTEND = 2393, +SCI_SETVISIBLEPOLICY = 2394, +
      +  SCI_DELLINELEFT = 2395, +SCI_DELLINERIGHT = 2396, +SCI_SETXOFFSET = 2397, +
      +  SCI_GETXOFFSET = 2398, +SCI_CHOOSECARETX = 2399, +SCI_GRABFOCUS = 2400, +
      +  SCI_SETXCARETPOLICY = 2402, +SCI_SETYCARETPOLICY = 2403, +SCI_LINEDUPLICATE = 2404, +
      +  SCI_REGISTERIMAGE = 2405, +SCI_SETPRINTWRAPMODE = 2406, +SCI_GETPRINTWRAPMODE = 2407, +
      +  SCI_CLEARREGISTEREDIMAGES = 2408, +SCI_STYLESETHOTSPOT = 2409, +SCI_SETHOTSPOTACTIVEFORE = 2410, +
      +  SCI_SETHOTSPOTACTIVEBACK = 2411, +SCI_SETHOTSPOTACTIVEUNDERLINE = 2412, +SCI_PARADOWN = 2413, +
      +  SCI_PARADOWNEXTEND = 2414, +SCI_PARAUP = 2415, +SCI_PARAUPEXTEND = 2416, +
      +  SCI_POSITIONBEFORE = 2417, +SCI_POSITIONAFTER = 2418, +SCI_COPYRANGE = 2419, +
      +  SCI_COPYTEXT = 2420, +SCI_SETHOTSPOTSINGLELINE = 2421, +SCI_SETSELECTIONMODE = 2422, +
      +  SCI_GETSELECTIONMODE = 2423, +SCI_GETLINESELSTARTPOSITION = 2424, +SCI_GETLINESELENDPOSITION = 2425, +
      +  SCI_LINEDOWNRECTEXTEND = 2426, +SCI_LINEUPRECTEXTEND = 2427, +SCI_CHARLEFTRECTEXTEND = 2428, +
      +  SCI_CHARRIGHTRECTEXTEND = 2429, +SCI_HOMERECTEXTEND = 2430, +SCI_VCHOMERECTEXTEND = 2431, +
      +  SCI_LINEENDRECTEXTEND = 2432, +SCI_PAGEUPRECTEXTEND = 2433, +SCI_PAGEDOWNRECTEXTEND = 2434, +
      +  SCI_STUTTEREDPAGEUP = 2435, +SCI_STUTTEREDPAGEUPEXTEND = 2436, +SCI_STUTTEREDPAGEDOWN = 2437, +
      +  SCI_STUTTEREDPAGEDOWNEXTEND = 2438, +SCI_WORDLEFTEND = 2439, +SCI_WORDLEFTENDEXTEND = 2440, +
      +  SCI_WORDRIGHTEND = 2441, +SCI_WORDRIGHTENDEXTEND = 2442, +SCI_SETWHITESPACECHARS = 2443, +
      +  SCI_SETCHARSDEFAULT = 2444, +SCI_AUTOCGETCURRENT = 2445, +SCI_ALLOCATE = 2446, +
      +  SCI_HOMEWRAP = 2349, +SCI_HOMEWRAPEXTEND = 2450, +SCI_LINEENDWRAP = 2451, +
      +  SCI_LINEENDWRAPEXTEND = 2452, +SCI_VCHOMEWRAP = 2453, +SCI_VCHOMEWRAPEXTEND = 2454, +
      +  SCI_LINECOPY = 2455, +SCI_FINDCOLUMN = 2456, +SCI_GETCARETSTICKY = 2457, +
      +  SCI_SETCARETSTICKY = 2458, +SCI_TOGGLECARETSTICKY = 2459, +SCI_SETWRAPVISUALFLAGS = 2460, +
      +  SCI_GETWRAPVISUALFLAGS = 2461, +SCI_SETWRAPVISUALFLAGSLOCATION = 2462, +SCI_GETWRAPVISUALFLAGSLOCATION = 2463, +
      +  SCI_SETWRAPSTARTINDENT = 2464, +SCI_GETWRAPSTARTINDENT = 2465, +SCI_MARKERADDSET = 2466, +
      +  SCI_SETPASTECONVERTENDINGS = 2467, +SCI_GETPASTECONVERTENDINGS = 2468, +SCI_SELECTIONDUPLICATE = 2469, +
      +  SCI_SETCARETLINEBACKALPHA = 2470, +SCI_GETCARETLINEBACKALPHA = 2471, +SCI_SETWRAPINDENTMODE = 2472, +
      +  SCI_GETWRAPINDENTMODE = 2473, +SCI_MARKERSETALPHA = 2476, +SCI_GETSELALPHA = 2477, +
      +  SCI_SETSELALPHA = 2478, +SCI_GETSELEOLFILLED = 2479, +SCI_SETSELEOLFILLED = 2480, +
      +  SCI_STYLEGETFORE = 2481, +SCI_STYLEGETBACK = 2482, +SCI_STYLEGETBOLD = 2483, +
      +  SCI_STYLEGETITALIC = 2484, +SCI_STYLEGETSIZE = 2485, +SCI_STYLEGETFONT = 2486, +
      +  SCI_STYLEGETEOLFILLED = 2487, +SCI_STYLEGETUNDERLINE = 2488, +SCI_STYLEGETCASE = 2489, +
      +  SCI_STYLEGETCHARACTERSET = 2490, +SCI_STYLEGETVISIBLE = 2491, +SCI_STYLEGETCHANGEABLE = 2492, +
      +  SCI_STYLEGETHOTSPOT = 2493, +SCI_GETHOTSPOTACTIVEFORE = 2494, +SCI_GETHOTSPOTACTIVEBACK = 2495, +
      +  SCI_GETHOTSPOTACTIVEUNDERLINE = 2496, +SCI_GETHOTSPOTSINGLELINE = 2497, +SCI_BRACEHIGHLIGHTINDICATOR = 2498, +
      +  SCI_BRACEBADLIGHTINDICATOR = 2499, +SCI_SETINDICATORCURRENT = 2500, +SCI_GETINDICATORCURRENT = 2501, +
      +  SCI_SETINDICATORVALUE = 2502, +SCI_GETINDICATORVALUE = 2503, +SCI_INDICATORFILLRANGE = 2504, +
      +  SCI_INDICATORCLEARRANGE = 2505, +SCI_INDICATORALLONFOR = 2506, +SCI_INDICATORVALUEAT = 2507, +
      +  SCI_INDICATORSTART = 2508, +SCI_INDICATOREND = 2509, +SCI_INDICSETUNDER = 2510, +
      +  SCI_INDICGETUNDER = 2511, +SCI_SETCARETSTYLE = 2512, +SCI_GETCARETSTYLE = 2513, +
      +  SCI_SETPOSITIONCACHE = 2514, +SCI_GETPOSITIONCACHE = 2515, +SCI_SETSCROLLWIDTHTRACKING = 2516, +
      +  SCI_GETSCROLLWIDTHTRACKING = 2517, +SCI_DELWORDRIGHTEND = 2518, +SCI_COPYALLOWLINE = 2519, +
      +  SCI_GETCHARACTERPOINTER = 2520, +SCI_INDICSETALPHA = 2523, +SCI_INDICGETALPHA = 2524, +
      +  SCI_SETEXTRAASCENT = 2525, +SCI_GETEXTRAASCENT = 2526, +SCI_SETEXTRADESCENT = 2527, +
      +  SCI_GETEXTRADESCENT = 2528, +SCI_MARKERSYMBOLDEFINED = 2529, +SCI_MARGINSETTEXT = 2530, +
      +  SCI_MARGINGETTEXT = 2531, +SCI_MARGINSETSTYLE = 2532, +SCI_MARGINGETSTYLE = 2533, +
      +  SCI_MARGINSETSTYLES = 2534, +SCI_MARGINGETSTYLES = 2535, +SCI_MARGINTEXTCLEARALL = 2536, +
      +  SCI_MARGINSETSTYLEOFFSET = 2537, +SCI_MARGINGETSTYLEOFFSET = 2538, +SCI_SETMARGINOPTIONS = 2539, +
      +  SCI_ANNOTATIONSETTEXT = 2540, +SCI_ANNOTATIONGETTEXT = 2541, +SCI_ANNOTATIONSETSTYLE = 2542, +
      +  SCI_ANNOTATIONGETSTYLE = 2543, +SCI_ANNOTATIONSETSTYLES = 2544, +SCI_ANNOTATIONGETSTYLES = 2545, +
      +  SCI_ANNOTATIONGETLINES = 2546, +SCI_ANNOTATIONCLEARALL = 2547, +SCI_ANNOTATIONSETVISIBLE = 2548, +
      +  SCI_ANNOTATIONGETVISIBLE = 2549, +SCI_ANNOTATIONSETSTYLEOFFSET = 2550, +SCI_ANNOTATIONGETSTYLEOFFSET = 2551, +
      +  SCI_RELEASEALLEXTENDEDSTYLES = 2552, +SCI_ALLOCATEEXTENDEDSTYLES = 2553, +SCI_SETEMPTYSELECTION = 2556, +
      +  SCI_GETMARGINOPTIONS = 2557, +SCI_INDICSETOUTLINEALPHA = 2558, +SCI_INDICGETOUTLINEALPHA = 2559, +
      +  SCI_ADDUNDOACTION = 2560, +SCI_CHARPOSITIONFROMPOINT = 2561, +SCI_CHARPOSITIONFROMPOINTCLOSE = 2562, +
      +  SCI_SETMULTIPLESELECTION = 2563, +SCI_GETMULTIPLESELECTION = 2564, +SCI_SETADDITIONALSELECTIONTYPING = 2565, +
      +  SCI_GETADDITIONALSELECTIONTYPING = 2566, +SCI_SETADDITIONALCARETSBLINK = 2567, +SCI_GETADDITIONALCARETSBLINK = 2568, +
      +  SCI_SCROLLRANGE = 2569, +SCI_GETSELECTIONS = 2570, +SCI_CLEARSELECTIONS = 2571, +
      +  SCI_SETSELECTION = 2572, +SCI_ADDSELECTION = 2573, +SCI_SETMAINSELECTION = 2574, +
      +  SCI_GETMAINSELECTION = 2575, +SCI_SETSELECTIONNCARET = 2576, +SCI_GETSELECTIONNCARET = 2577, +
      +  SCI_SETSELECTIONNANCHOR = 2578, +SCI_GETSELECTIONNANCHOR = 2579, +SCI_SETSELECTIONNCARETVIRTUALSPACE = 2580, +
      +  SCI_GETSELECTIONNCARETVIRTUALSPACE = 2581, +SCI_SETSELECTIONNANCHORVIRTUALSPACE = 2582, +SCI_GETSELECTIONNANCHORVIRTUALSPACE = 2583, +
      +  SCI_SETSELECTIONNSTART = 2584, +SCI_GETSELECTIONNSTART = 2585, +SCI_SETSELECTIONNEND = 2586, +
      +  SCI_GETSELECTIONNEND = 2587, +SCI_SETRECTANGULARSELECTIONCARET = 2588, +SCI_GETRECTANGULARSELECTIONCARET = 2589, +
      +  SCI_SETRECTANGULARSELECTIONANCHOR = 2590, +SCI_GETRECTANGULARSELECTIONANCHOR = 2591, +SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE = 2592, +
      +  SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE = 2593, +SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE = 2594, +SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE = 2595, +
      +  SCI_SETVIRTUALSPACEOPTIONS = 2596, +SCI_GETVIRTUALSPACEOPTIONS = 2597, +SCI_SETRECTANGULARSELECTIONMODIFIER = 2598, +
      +  SCI_GETRECTANGULARSELECTIONMODIFIER = 2599, +SCI_SETADDITIONALSELFORE = 2600, +SCI_SETADDITIONALSELBACK = 2601, +
      +  SCI_SETADDITIONALSELALPHA = 2602, +SCI_GETADDITIONALSELALPHA = 2603, +SCI_SETADDITIONALCARETFORE = 2604, +
      +  SCI_GETADDITIONALCARETFORE = 2605, +SCI_ROTATESELECTION = 2606, +SCI_SWAPMAINANCHORCARET = 2607, +
      +  SCI_SETADDITIONALCARETSVISIBLE = 2608, +SCI_GETADDITIONALCARETSVISIBLE = 2609, +SCI_AUTOCGETCURRENTTEXT = 2610, +
      +  SCI_SETFONTQUALITY = 2611, +SCI_GETFONTQUALITY = 2612, +SCI_SETFIRSTVISIBLELINE = 2613, +
      +  SCI_SETMULTIPASTE = 2614, +SCI_GETMULTIPASTE = 2615, +SCI_GETTAG = 2616, +
      +  SCI_CHANGELEXERSTATE = 2617, +SCI_CONTRACTEDFOLDNEXT = 2618, +SCI_VERTICALCENTRECARET = 2619, +
      +  SCI_MOVESELECTEDLINESUP = 2620, +SCI_MOVESELECTEDLINESDOWN = 2621, +SCI_SETIDENTIFIER = 2622, +
      +  SCI_GETIDENTIFIER = 2623, +SCI_RGBAIMAGESETWIDTH = 2624, +SCI_RGBAIMAGESETHEIGHT = 2625, +
      +  SCI_MARKERDEFINERGBAIMAGE = 2626, +SCI_REGISTERRGBAIMAGE = 2627, +SCI_SCROLLTOSTART = 2628, +
      +  SCI_SCROLLTOEND = 2629, +SCI_SETTECHNOLOGY = 2630, +SCI_GETTECHNOLOGY = 2631, +
      +  SCI_CREATELOADER = 2632, +SCI_COUNTCHARACTERS = 2633, +SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR = 2634, +
      +  SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR = 2635, +SCI_AUTOCSETMULTI = 2636, +SCI_AUTOCGETMULTI = 2637, +
      +  SCI_FINDINDICATORSHOW = 2640, +SCI_FINDINDICATORFLASH = 2641, +SCI_FINDINDICATORHIDE = 2642, +
      +  SCI_GETRANGEPOINTER = 2643, +SCI_GETGAPPOSITION = 2644, +SCI_DELETERANGE = 2645, +
      +  SCI_GETWORDCHARS = 2646, +SCI_GETWHITESPACECHARS = 2647, +SCI_SETPUNCTUATIONCHARS = 2648, +
      +  SCI_GETPUNCTUATIONCHARS = 2649, +SCI_GETSELECTIONEMPTY = 2650, +SCI_RGBAIMAGESETSCALE = 2651, +
      +  SCI_VCHOMEDISPLAY = 2652, +SCI_VCHOMEDISPLAYEXTEND = 2653, +SCI_GETCARETLINEVISIBLEALWAYS = 2654, +
      +  SCI_SETCARETLINEVISIBLEALWAYS = 2655, +SCI_SETLINEENDTYPESALLOWED = 2656, +SCI_GETLINEENDTYPESALLOWED = 2657, +
      +  SCI_GETLINEENDTYPESACTIVE = 2658, +SCI_AUTOCSETORDER = 2660, +SCI_AUTOCGETORDER = 2661, +
      +  SCI_FOLDALL = 2662, +SCI_SETAUTOMATICFOLD = 2663, +SCI_GETAUTOMATICFOLD = 2664, +
      +  SCI_SETREPRESENTATION = 2665, +SCI_GETREPRESENTATION = 2666, +SCI_CLEARREPRESENTATION = 2667, +
      +  SCI_SETMOUSESELECTIONRECTANGULARSWITCH = 2668, +SCI_GETMOUSESELECTIONRECTANGULARSWITCH = 2669, +SCI_POSITIONRELATIVE = 2670, +
      +  SCI_DROPSELECTIONN = 2671, +SCI_CHANGEINSERTION = 2672, +SCI_GETPHASESDRAW = 2673, +
      +  SCI_SETPHASESDRAW = 2674, +SCI_CLEARTABSTOPS = 2675, +SCI_ADDTABSTOP = 2676, +
      +  SCI_GETNEXTTABSTOP = 2677, +SCI_GETIMEINTERACTION = 2678, +SCI_SETIMEINTERACTION = 2679, +
      +  SCI_INDICSETHOVERSTYLE = 2680, +SCI_INDICGETHOVERSTYLE = 2681, +SCI_INDICSETHOVERFORE = 2682, +
      +  SCI_INDICGETHOVERFORE = 2683, +SCI_INDICSETFLAGS = 2684, +SCI_INDICGETFLAGS = 2685, +
      +  SCI_SETTARGETRANGE = 2686, +SCI_GETTARGETTEXT = 2687, +SCI_MULTIPLESELECTADDNEXT = 2688, +
      +  SCI_MULTIPLESELECTADDEACH = 2689, +SCI_TARGETWHOLEDOCUMENT = 2690, +SCI_ISRANGEWORD = 2691, +
      +  SCI_SETIDLESTYLING = 2692, +SCI_GETIDLESTYLING = 2693, +SCI_MULTIEDGEADDLINE = 2694, +
      +  SCI_MULTIEDGECLEARALL = 2695, +SCI_SETMOUSEWHEELCAPTURES = 2696, +SCI_GETMOUSEWHEELCAPTURES = 2697, +
      +  SCI_GETTABDRAWMODE = 2698, +SCI_SETTABDRAWMODE = 2699, +SCI_TOGGLEFOLDSHOWTEXT = 2700, +
      +  SCI_FOLDDISPLAYTEXTSETSTYLE = 2701, +SCI_SETACCESSIBILITY = 2702, +SCI_GETACCESSIBILITY = 2703, +
      +  SCI_GETCARETLINEFRAME = 2704, +SCI_SETCARETLINEFRAME = 2705, +SCI_STARTRECORD = 3001, +
      +  SCI_STOPRECORD = 3002, +SCI_SETLEXER = 4001, +SCI_GETLEXER = 4002, +
      +  SCI_COLOURISE = 4003, +SCI_SETPROPERTY = 4004, +SCI_SETKEYWORDS = 4005, +
      +  SCI_SETLEXERLANGUAGE = 4006, +SCI_LOADLEXERLIBRARY = 4007, +SCI_GETPROPERTY = 4008, +
      +  SCI_GETPROPERTYEXPANDED = 4009, +SCI_GETPROPERTYINT = 4010, +SCI_GETSTYLEBITSNEEDED = 4011, +
      +  SCI_GETLEXERLANGUAGE = 4012, +SCI_PRIVATELEXERCALL = 4013, +SCI_PROPERTYNAMES = 4014, +
      +  SCI_PROPERTYTYPE = 4015, +SCI_DESCRIBEPROPERTY = 4016, +SCI_DESCRIBEKEYWORDSETS = 4017, +
      +  SCI_GETLINEENDTYPESSUPPORTED = 4018, +SCI_ALLOCATESUBSTYLES = 4020, +SCI_GETSUBSTYLESSTART = 4021, +
      +  SCI_GETSUBSTYLESLENGTH = 4022, +SCI_GETSTYLEFROMSUBSTYLE = 4027, +SCI_GETPRIMARYSTYLEFROMSTYLE = 4028, +
      +  SCI_FREESUBSTYLES = 4023, +SCI_SETIDENTIFIERS = 4024, +SCI_DISTANCETOSECONDARYSTYLES = 4025, +
      +  SCI_GETSUBSTYLEBASES = 4026, +SCI_GETLINECHARACTERINDEX = 2710, +SCI_ALLOCATELINECHARACTERINDEX = 2711, +
      +  SCI_RELEASELINECHARACTERINDEX = 2712, +SCI_LINEFROMINDEXPOSITION = 2713, +SCI_INDEXPOSITIONFROMLINE = 2714, +
      +  SCI_COUNTCODEUNITS = 2715, +SCI_POSITIONRELATIVECODEUNITS = 2716, +SCI_GETNAMEDSTYLES = 4029, +
      +  SCI_NAMEOFSTYLE = 4030, +SCI_TAGSOFSTYLE = 4031, +SCI_DESCRIPTIONOFSTYLE = 4032, +
      +  SCI_GETMOVEEXTENDSSELECTION = 2706, +SCI_SETCOMMANDEVENTS = 2717, +SCI_GETCOMMANDEVENTS = 2718, +
      +  SCI_GETDOCUMENTOPTIONS = 2379 +
      + }
       
      enum  {
      +  SC_AC_FILLUP = 1, +SC_AC_DOUBLECLICK = 2, +SC_AC_TAB = 3, +
      +  SC_AC_NEWLINE = 4, +SC_AC_COMMAND = 5 +
      + }
       
      enum  { SC_ALPHA_TRANSPARENT = 0, +SC_ALPHA_OPAQUE = 255, +SC_ALPHA_NOALPHA = 256 + }
       
      enum  { SC_CARETSTICKY_OFF = 0, +SC_CARETSTICKY_ON = 1, +SC_CARETSTICKY_WHITESPACE = 2 + }
       
      enum  { SC_DOCUMENTOPTION_DEFAULT = 0x0000, +SC_DOCUMENTOPTION_STYLES_NONE = 0x0001, +SC_DOCUMENTOPTION_TEXT_LARGE = 0x0100 + }
       
      enum  {
      +  SC_EFF_QUALITY_MASK = 0x0f, +SC_EFF_QUALITY_DEFAULT = 0, +SC_EFF_QUALITY_NON_ANTIALIASED = 1, +
      +  SC_EFF_QUALITY_ANTIALIASED = 2, +SC_EFF_QUALITY_LCD_OPTIMIZED = 3 +
      + }
       
      enum  {
      +  SC_IDLESTYLING_NONE = 0, +SC_IDLESTYLING_TOVISIBLE = 1, +SC_IDLESTYLING_AFTERVISIBLE = 2, +
      +  SC_IDLESTYLING_ALL = 3 +
      + }
       
      enum  { SC_IME_WINDOWED = 0, +SC_IME_INLINE = 1 + }
       
      enum  { SC_LINECHARACTERINDEX_NONE = 0, +SC_LINECHARACTERINDEX_UTF32 = 1, +SC_LINECHARACTERINDEX_UTF16 = 2 + }
       
      enum  { SC_MARGINOPTION_NONE = 0x00, +SC_MARGINOPTION_SUBLINESELECT = 0x01 + }
       
      enum  { SC_MULTIAUTOC_ONCE = 0, +SC_MULTIAUTOC_EACH = 1 + }
       
      enum  { SC_MULTIPASTE_ONCE = 0, +SC_MULTIPASTE_EACH = 1 + }
       
      enum  { SC_POPUP_NEVER = 0, +SC_POPUP_ALL = 1, +SC_POPUP_TEXT = 2 + }
       
      enum  {
      +  SC_SEL_STREAM = 0, +SC_SEL_RECTANGLE = 1, +SC_SEL_LINES = 2, +
      +  SC_SEL_THIN = 3 +
      + }
       
      enum  {
      +  SC_STATUS_OK = 0, +SC_STATUS_FAILURE = 1, +SC_STATUS_BADALLOC = 2, +
      +  SC_STATUS_WARN_START = 1000, +SC_STATUS_WARNREGEX = 1001 +
      + }
       
      enum  { SC_TYPE_BOOLEAN = 0, +SC_TYPE_INTEGER = 1, +SC_TYPE_STRING = 2 + }
       
      enum  {
      +  SC_UPDATE_CONTENT = 0x01, +SC_UPDATE_SELECTION = 0x02, +SC_UPDATE_V_SCROLL = 0x04, +
      +  SC_UPDATE_H_SCROLL = 0x08 +
      + }
       
      enum  {
      +  SC_WRAPVISUALFLAG_NONE = 0x0000, +SC_WRAPVISUALFLAG_END = 0x0001, +SC_WRAPVISUALFLAG_START = 0x0002, +
      +  SC_WRAPVISUALFLAG_MARGIN = 0x0004 +
      + }
       
      enum  { SC_WRAPVISUALFLAGLOC_DEFAULT = 0x0000, +SC_WRAPVISUALFLAGLOC_END_BY_TEXT = 0x0001, +SC_WRAPVISUALFLAGLOC_START_BY_TEXT = 0x0002 + }
       
      enum  { SCTD_LONGARROW = 0, +SCTD_STRIKEOUT = 1 + }
       
      enum  {
      +  SCVS_NONE = 0, +SCVS_RECTANGULARSELECTION = 1, +SCVS_USERACCESSIBLE = 2, +
      +  SCVS_NOWRAPLINESTART = 4 +
      + }
       
      enum  {
      +  SCWS_INVISIBLE = 0, +SCWS_VISIBLEALWAYS = 1, +SCWS_VISIBLEAFTERINDENT = 2, +
      +  SCWS_VISIBLEONLYININDENT = 3 +
      + }
       
      enum  { SC_EOL_CRLF = 0, +SC_EOL_CR = 1, +SC_EOL_LF = 2 + }
       
      enum  { SC_CP_DBCS = 1, +SC_CP_UTF8 = 65001 + }
       
      enum  {
      +  SC_MARK_CIRCLE = 0, +SC_MARK_ROUNDRECT = 1, +SC_MARK_ARROW = 2, +
      +  SC_MARK_SMALLRECT = 3, +SC_MARK_SHORTARROW = 4, +SC_MARK_EMPTY = 5, +
      +  SC_MARK_ARROWDOWN = 6, +SC_MARK_MINUS = 7, +SC_MARK_PLUS = 8, +
      +  SC_MARK_VLINE = 9, +SC_MARK_LCORNER = 10, +SC_MARK_TCORNER = 11, +
      +  SC_MARK_BOXPLUS = 12, +SC_MARK_BOXPLUSCONNECTED = 13, +SC_MARK_BOXMINUS = 14, +
      +  SC_MARK_BOXMINUSCONNECTED = 15, +SC_MARK_LCORNERCURVE = 16, +SC_MARK_TCORNERCURVE = 17, +
      +  SC_MARK_CIRCLEPLUS = 18, +SC_MARK_CIRCLEPLUSCONNECTED = 19, +SC_MARK_CIRCLEMINUS = 20, +
      +  SC_MARK_CIRCLEMINUSCONNECTED = 21, +SC_MARK_BACKGROUND = 22, +SC_MARK_DOTDOTDOT = 23, +
      +  SC_MARK_ARROWS = 24, +SC_MARK_PIXMAP = 25, +SC_MARK_FULLRECT = 26, +
      +  SC_MARK_LEFTRECT = 27, +SC_MARK_AVAILABLE = 28, +SC_MARK_UNDERLINE = 29, +
      +  SC_MARK_RGBAIMAGE = 30, +SC_MARK_BOOKMARK = 31, +SC_MARK_CHARACTER = 10000 +
      + }
       
      enum  {
      +  SC_MARKNUM_FOLDEREND = 25, +SC_MARKNUM_FOLDEROPENMID = 26, +SC_MARKNUM_FOLDERMIDTAIL = 27, +
      +  SC_MARKNUM_FOLDERTAIL = 28, +SC_MARKNUM_FOLDERSUB = 29, +SC_MARKNUM_FOLDER = 30, +
      +  SC_MARKNUM_FOLDEROPEN = 31, +SC_MASK_FOLDERS = 0xfe000000 +
      + }
       
      enum  {
      +  SC_MARGIN_SYMBOL = 0, +SC_MARGIN_NUMBER = 1, +SC_MARGIN_BACK = 2, +
      +  SC_MARGIN_FORE = 3, +SC_MARGIN_TEXT = 4, +SC_MARGIN_RTEXT = 5, +
      +  SC_MARGIN_COLOUR = 6 +
      + }
       
      enum  {
      +  STYLE_DEFAULT = 32, +STYLE_LINENUMBER = 33, +STYLE_BRACELIGHT = 34, +
      +  STYLE_BRACEBAD = 35, +STYLE_CONTROLCHAR = 36, +STYLE_INDENTGUIDE = 37, +
      +  STYLE_CALLTIP = 38, +STYLE_FOLDDISPLAYTEXT = 39, +STYLE_LASTPREDEFINED = 39, +
      +  STYLE_MAX = 255 +
      + }
       
      enum  {
      +  SC_CHARSET_ANSI = 0, +SC_CHARSET_DEFAULT = 1, +SC_CHARSET_BALTIC = 186, +
      +  SC_CHARSET_CHINESEBIG5 = 136, +SC_CHARSET_EASTEUROPE = 238, +SC_CHARSET_GB2312 = 134, +
      +  SC_CHARSET_GREEK = 161, +SC_CHARSET_HANGUL = 129, +SC_CHARSET_MAC = 77, +
      +  SC_CHARSET_OEM = 255, +SC_CHARSET_RUSSIAN = 204, +SC_CHARSET_OEM866 = 866, +
      +  SC_CHARSET_CYRILLIC = 1251, +SC_CHARSET_SHIFTJIS = 128, +SC_CHARSET_SYMBOL = 2, +
      +  SC_CHARSET_TURKISH = 162, +SC_CHARSET_JOHAB = 130, +SC_CHARSET_HEBREW = 177, +
      +  SC_CHARSET_ARABIC = 178, +SC_CHARSET_VIETNAMESE = 163, +SC_CHARSET_THAI = 222, +
      +  SC_CHARSET_8859_15 = 1000 +
      + }
       
      enum  {
      +  SC_CASE_MIXED = 0, +SC_CASE_UPPER = 1, +SC_CASE_LOWER = 2, +
      +  SC_CASE_CAMEL = 3 +
      + }
       
      enum  {
      +  SC_IV_NONE = 0, +SC_IV_REAL = 1, +SC_IV_LOOKFORWARD = 2, +
      +  SC_IV_LOOKBOTH = 3 +
      + }
       
      enum  {
      +  INDIC_PLAIN = 0, +INDIC_SQUIGGLE = 1, +INDIC_TT = 2, +
      +  INDIC_DIAGONAL = 3, +INDIC_STRIKE = 4, +INDIC_HIDDEN = 5, +
      +  INDIC_BOX = 6, +INDIC_ROUNDBOX = 7, +INDIC_STRAIGHTBOX = 8, +
      +  INDIC_DASH = 9, +INDIC_DOTS = 10, +INDIC_SQUIGGLELOW = 11, +
      +  INDIC_DOTBOX = 12, +INDIC_SQUIGGLEPIXMAP = 13, +INDIC_COMPOSITIONTHICK = 14, +
      +  INDIC_COMPOSITIONTHIN = 15, +INDIC_FULLBOX = 16, +INDIC_TEXTFORE = 17, +
      +  INDIC_POINT = 18, +INDIC_POINTCHARACTER = 19, +INDIC_GRADIENT = 20, +
      +  INDIC_GRADIENTCENTRE = 21, +INDIC_IME = 32, +INDIC_IME_MAX = 35, +
      +  INDIC_CONTAINER = 8, +INDIC_MAX = 35, +INDIC0_MASK = 0x20, +
      +  INDIC1_MASK = 0x40, +INDIC2_MASK = 0x80, +INDICS_MASK = 0xe0, +
      +  SC_INDICVALUEBIT = 0x01000000, +SC_INDICVALUEMASK = 0x00ffffff, +SC_INDICFLAG_VALUEBEFORE = 1 +
      + }
       
      enum  {
      +  SC_PRINT_NORMAL = 0, +SC_PRINT_INVERTLIGHT = 1, +SC_PRINT_BLACKONWHITE = 2, +
      +  SC_PRINT_COLOURONWHITE = 3, +SC_PRINT_COLOURONWHITEDEFAULTBG = 4, +SC_PRINT_SCREENCOLOURS = 5 +
      + }
       
      enum  {
      +  SCFIND_WHOLEWORD = 2, +SCFIND_MATCHCASE = 4, +SCFIND_WORDSTART = 0x00100000, +
      +  SCFIND_REGEXP = 0x00200000, +SCFIND_POSIX = 0x00400000, +SCFIND_CXX11REGEX = 0x00800000 +
      + }
       
      enum  { SC_FOLDDISPLAYTEXT_HIDDEN = 0, +SC_FOLDDISPLAYTEXT_STANDARD = 1, +SC_FOLDDISPLAYTEXT_BOXED = 2 + }
       
      enum  {
      +  SC_FOLDLEVELBASE = 0x00400, +SC_FOLDLEVELWHITEFLAG = 0x01000, +SC_FOLDLEVELHEADERFLAG = 0x02000, +
      +  SC_FOLDLEVELNUMBERMASK = 0x00fff +
      + }
       
      enum  {
      +  SC_FOLDFLAG_LINEBEFORE_EXPANDED = 0x0002, +SC_FOLDFLAG_LINEBEFORE_CONTRACTED = 0x0004, +SC_FOLDFLAG_LINEAFTER_EXPANDED = 0x0008, +
      +  SC_FOLDFLAG_LINEAFTER_CONTRACTED = 0x0010, +SC_FOLDFLAG_LEVELNUMBERS = 0x0040, +SC_FOLDFLAG_LINESTATE = 0x0080 +
      + }
       
      enum  { SC_LINE_END_TYPE_DEFAULT = 0, +SC_LINE_END_TYPE_UNICODE = 1 + }
       
      enum  { SC_TIME_FOREVER = 10000000 + }
       
      enum  {
      +  SC_WRAP_NONE = 0, +SC_WRAP_WORD = 1, +SC_WRAP_CHAR = 2, +
      +  SC_WRAP_WHITESPACE = 3 +
      + }
       
      enum  {
      +  SC_WRAPINDENT_FIXED = 0, +SC_WRAPINDENT_SAME = 1, +SC_WRAPINDENT_INDENT = 2, +
      +  SC_WRAPINDENT_DEEPINDENT = 3 +
      + }
       
      enum  {
      +  SC_CACHE_NONE = 0, +SC_CACHE_CARET = 1, +SC_CACHE_PAGE = 2, +
      +  SC_CACHE_DOCUMENT = 3 +
      + }
       
      enum  { SC_PHASES_ONE = 0, +SC_PHASES_TWO = 1, +SC_PHASES_MULTIPLE = 2 + }
       
      enum  {
      +  ANNOTATION_HIDDEN = 0, +ANNOTATION_STANDARD = 1, +ANNOTATION_BOXED = 2, +
      +  ANNOTATION_INDENTED = 3 +
      + }
       
      enum  {
      +  EDGE_NONE = 0, +EDGE_LINE = 1, +EDGE_BACKGROUND = 2, +
      +  EDGE_MULTILINE = 3 +
      + }
       
      enum  {
      +  SC_CURSORNORMAL = -1, +SC_CURSORARROW = 2, +SC_CURSORWAIT = 4, +
      +  SC_CURSORREVERSEARROW = 7 +
      + }
       
      enum  { UNDO_MAY_COALESCE = 1 + }
       
      enum  { VISIBLE_SLOP = 0x01, +VISIBLE_STRICT = 0x04 + }
       
      enum  {
      +  CARET_SLOP = 0x01, +CARET_STRICT = 0x04, +CARET_JUMPS = 0x10, +
      +  CARET_EVEN = 0x08 +
      + }
       
      enum  { CARETSTYLE_INVISIBLE = 0, +CARETSTYLE_LINE = 1, +CARETSTYLE_BLOCK = 2 + }
       
      enum  {
      +  SC_MOD_INSERTTEXT = 0x1, +SC_MOD_DELETETEXT = 0x2, +SC_MOD_CHANGESTYLE = 0x4, +
      +  SC_MOD_CHANGEFOLD = 0x8, +SC_PERFORMED_USER = 0x10, +SC_PERFORMED_UNDO = 0x20, +
      +  SC_PERFORMED_REDO = 0x40, +SC_MULTISTEPUNDOREDO = 0x80, +SC_LASTSTEPINUNDOREDO = 0x100, +
      +  SC_MOD_CHANGEMARKER = 0x200, +SC_MOD_BEFOREINSERT = 0x400, +SC_MOD_BEFOREDELETE = 0x800, +
      +  SC_MULTILINEUNDOREDO = 0x1000, +SC_STARTACTION = 0x2000, +SC_MOD_CHANGEINDICATOR = 0x4000, +
      +  SC_MOD_CHANGELINESTATE = 0x8000, +SC_MOD_CHANGEMARGIN = 0x10000, +SC_MOD_CHANGEANNOTATION = 0x20000, +
      +  SC_MOD_CONTAINER = 0x40000, +SC_MOD_LEXERSTATE = 0x80000, +SC_MOD_INSERTCHECK = 0x100000, +
      +  SC_MOD_CHANGETABSTOPS = 0x200000, +SC_MODEVENTMASKALL = 0x3fffff +
      + }
       
      enum  {
      +  SCK_DOWN = 300, +SCK_UP = 301, +SCK_LEFT = 302, +
      +  SCK_RIGHT = 303, +SCK_HOME = 304, +SCK_END = 305, +
      +  SCK_PRIOR = 306, +SCK_NEXT = 307, +SCK_DELETE = 308, +
      +  SCK_INSERT = 309, +SCK_ESCAPE = 7, +SCK_BACK = 8, +
      +  SCK_TAB = 9, +SCK_RETURN = 13, +SCK_ADD = 310, +
      +  SCK_SUBTRACT = 311, +SCK_DIVIDE = 312, +SCK_WIN = 313, +
      +  SCK_RWIN = 314, +SCK_MENU = 315 +
      + }
       
      enum  {
      +  SCMOD_NORM = 0, +SCMOD_SHIFT = 1, +SCMOD_CTRL = 2, +
      +  SCMOD_ALT = 4, +SCMOD_SUPER = 8, +SCMOD_META = 16 +
      + }
       
      enum  {
      +  SCLEX_CONTAINER = 0, +SCLEX_NULL = 1, +SCLEX_PYTHON = 2, +
      +  SCLEX_CPP = 3, +SCLEX_HTML = 4, +SCLEX_XML = 5, +
      +  SCLEX_PERL = 6, +SCLEX_SQL = 7, +SCLEX_VB = 8, +
      +  SCLEX_PROPERTIES = 9, +SCLEX_ERRORLIST = 10, +SCLEX_MAKEFILE = 11, +
      +  SCLEX_BATCH = 12, +SCLEX_LATEX = 14, +SCLEX_LUA = 15, +
      +  SCLEX_DIFF = 16, +SCLEX_CONF = 17, +SCLEX_PASCAL = 18, +
      +  SCLEX_AVE = 19, +SCLEX_ADA = 20, +SCLEX_LISP = 21, +
      +  SCLEX_RUBY = 22, +SCLEX_EIFFEL = 23, +SCLEX_EIFFELKW = 24, +
      +  SCLEX_TCL = 25, +SCLEX_NNCRONTAB = 26, +SCLEX_BULLANT = 27, +
      +  SCLEX_VBSCRIPT = 28, +SCLEX_ASP = SCLEX_HTML, +SCLEX_PHP = SCLEX_HTML, +
      +  SCLEX_BAAN = 31, +SCLEX_MATLAB = 32, +SCLEX_SCRIPTOL = 33, +
      +  SCLEX_ASM = 34, +SCLEX_CPPNOCASE = 35, +SCLEX_FORTRAN = 36, +
      +  SCLEX_F77 = 37, +SCLEX_CSS = 38, +SCLEX_POV = 39, +
      +  SCLEX_LOUT = 40, +SCLEX_ESCRIPT = 41, +SCLEX_PS = 42, +
      +  SCLEX_NSIS = 43, +SCLEX_MMIXAL = 44, +SCLEX_CLW = 45, +
      +  SCLEX_CLWNOCASE = 46, +SCLEX_LOT = 47, +SCLEX_YAML = 48, +
      +  SCLEX_TEX = 49, +SCLEX_METAPOST = 50, +SCLEX_POWERBASIC = 51, +
      +  SCLEX_FORTH = 52, +SCLEX_ERLANG = 53, +SCLEX_OCTAVE = 54, +
      +  SCLEX_MSSQL = 55, +SCLEX_VERILOG = 56, +SCLEX_KIX = 57, +
      +  SCLEX_GUI4CLI = 58, +SCLEX_SPECMAN = 59, +SCLEX_AU3 = 60, +
      +  SCLEX_APDL = 61, +SCLEX_BASH = 62, +SCLEX_ASN1 = 63, +
      +  SCLEX_VHDL = 64, +SCLEX_CAML = 65, +SCLEX_BLITZBASIC = 66, +
      +  SCLEX_PUREBASIC = 67, +SCLEX_HASKELL = 68, +SCLEX_PHPSCRIPT = 69, +
      +  SCLEX_TADS3 = 70, +SCLEX_REBOL = 71, +SCLEX_SMALLTALK = 72, +
      +  SCLEX_FLAGSHIP = 73, +SCLEX_CSOUND = 74, +SCLEX_FREEBASIC = 75, +
      +  SCLEX_INNOSETUP = 76, +SCLEX_OPAL = 77, +SCLEX_SPICE = 78, +
      +  SCLEX_D = 79, +SCLEX_CMAKE = 80, +SCLEX_GAP = 81, +
      +  SCLEX_PLM = 82, +SCLEX_PROGRESS = 83, +SCLEX_ABAQUS = 84, +
      +  SCLEX_ASYMPTOTE = 85, +SCLEX_R = 86, +SCLEX_MAGIK = 87, +
      +  SCLEX_POWERSHELL = 88, +SCLEX_MYSQL = 89, +SCLEX_PO = 90, +
      +  SCLEX_TAL = 91, +SCLEX_COBOL = 92, +SCLEX_TACL = 93, +
      +  SCLEX_SORCUS = 94, +SCLEX_POWERPRO = 95, +SCLEX_NIMROD = 96, +
      +  SCLEX_SML = 97, +SCLEX_MARKDOWN = 98, +SCLEX_TXT2TAGS = 99, +
      +  SCLEX_A68K = 100, +SCLEX_MODULA = 101, +SCLEX_COFFEESCRIPT = 102, +
      +  SCLEX_TCMD = 103, +SCLEX_AVS = 104, +SCLEX_ECL = 105, +
      +  SCLEX_OSCRIPT = 106, +SCLEX_VISUALPROLOG = 107, +SCLEX_LITERATEHASKELL = 108, +
      +  SCLEX_STTXT = 109, +SCLEX_KVIRC = 110, +SCLEX_RUST = 111, +
      +  SCLEX_DMAP = 112, +SCLEX_AS = 113, +SCLEX_DMIS = 114, +
      +  SCLEX_REGISTRY = 115, +SCLEX_BIBTEX = 116, +SCLEX_SREC = 117, +
      +  SCLEX_IHEX = 118, +SCLEX_TEHEX = 119, +SCLEX_JSON = 120, +
      +  SCLEX_EDIFACT = 121, +SCLEX_INDENT = 122, +SCLEX_MAXIMA = 123, +
      +  SCLEX_STATA = 124, +SCLEX_SAS = 125 +
      + }
       
      enum  { SC_WEIGHT_NORMAL = 400, +SC_WEIGHT_SEMIBOLD = 600, +SC_WEIGHT_BOLD = 700 + }
       
      enum  {
      +  SC_TECHNOLOGY_DEFAULT = 0, +SC_TECHNOLOGY_DIRECTWRITE = 1, +SC_TECHNOLOGY_DIRECTWRITERETAIN = 2, +
      +  SC_TECHNOLOGY_DIRECTWRITEDC = 3 +
      + }
       
      enum  { SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE = 0, +SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE = 1 + }
       
      enum  { SC_FONT_SIZE_MULTIPLIER = 100 + }
       
      enum  { SC_FOLDACTION_CONTRACT = 0, +SC_FOLDACTION_EXPAND = 1, +SC_FOLDACTION_TOGGLE = 2 + }
       
      enum  { SC_AUTOMATICFOLD_SHOW = 0x0001, +SC_AUTOMATICFOLD_CLICK = 0x0002, +SC_AUTOMATICFOLD_CHANGE = 0x0004 + }
       
      enum  { SC_ORDER_PRESORTED = 0, +SC_ORDER_PERFORMSORT = 1, +SC_ORDER_CUSTOM = 2 + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Slots

      virtual void append (const QString &text)
       
      virtual void autoCompleteFromAll ()
       
      virtual void autoCompleteFromAPIs ()
       
      virtual void autoCompleteFromDocument ()
       
      virtual void callTip ()
       
      +virtual void clear ()
       
      virtual void copy ()
       
      virtual void cut ()
       
      +virtual void ensureCursorVisible ()
       
      +virtual void ensureLineVisible (int line)
       
      virtual void foldAll (bool children=false)
       
      virtual void foldLine (int line)
       
      virtual void indent (int line)
       
      +virtual void insert (const QString &text)
       
      virtual void insertAt (const QString &text, int line, int index)
       
      virtual void moveToMatchingBrace ()
       
      virtual void paste ()
       
      virtual void redo ()
       
      virtual void removeSelectedText ()
       
      virtual void replaceSelectedText (const QString &text)
       
      virtual void resetSelectionBackgroundColor ()
       
      virtual void resetSelectionForegroundColor ()
       
      virtual void selectAll (bool select=true)
       
      virtual void selectToMatchingBrace ()
       
      virtual void setAutoCompletionCaseSensitivity (bool cs)
       
      virtual void setAutoCompletionReplaceWord (bool replace)
       
      virtual void setAutoCompletionShowSingle (bool single)
       
      virtual void setAutoCompletionSource (AutoCompletionSource source)
       
      virtual void setAutoCompletionThreshold (int thresh)
       
      virtual void setAutoCompletionUseSingle (AutoCompletionUseSingle single)
       
      virtual void setAutoIndent (bool autoindent)
       
      virtual void setBraceMatching (BraceMatch bm)
       
      virtual void setBackspaceUnindents (bool unindent)
       
      +virtual void setCaretForegroundColor (const QColor &col)
       
      virtual void setCaretLineBackgroundColor (const QColor &col)
       
      virtual void setCaretLineFrameWidth (int width)
       
      virtual void setCaretLineVisible (bool enable)
       
      virtual void setCaretWidth (int width)
       
      virtual void setColor (const QColor &c)
       
      virtual void setCursorPosition (int line, int index)
       
      virtual void setEolMode (EolMode mode)
       
      virtual void setEolVisibility (bool visible)
       
      virtual void setFolding (FoldStyle fold, int margin=2)
       
      virtual void setIndentation (int line, int indentation)
       
      virtual void setIndentationGuides (bool enable)
       
      virtual void setIndentationGuidesBackgroundColor (const QColor &col)
       
      virtual void setIndentationGuidesForegroundColor (const QColor &col)
       
      virtual void setIndentationsUseTabs (bool tabs)
       
      virtual void setIndentationWidth (int width)
       
      virtual void setLexer (QsciLexer *lexer=0)
       
      virtual void setMarginsBackgroundColor (const QColor &col)
       
      +virtual void setMarginsFont (const QFont &f)
       
      virtual void setMarginsForegroundColor (const QColor &col)
       
      virtual void setMarginLineNumbers (int margin, bool lnrs)
       
      virtual void setMarginMarkerMask (int margin, int mask)
       
      virtual void setMarginSensitivity (int margin, bool sens)
       
      virtual void setMarginWidth (int margin, int width)
       
      virtual void setMarginWidth (int margin, const QString &s)
       
      virtual void setModified (bool m)
       
      virtual void setPaper (const QColor &c)
       
      virtual void setReadOnly (bool ro)
       
      virtual void setSelection (int lineFrom, int indexFrom, int lineTo, int indexTo)
       
      virtual void setSelectionBackgroundColor (const QColor &col)
       
      virtual void setSelectionForegroundColor (const QColor &col)
       
      virtual void setTabIndents (bool indent)
       
      virtual void setTabWidth (int width)
       
      virtual void setText (const QString &text)
       
      virtual void setUtf8 (bool cp)
       
      virtual void setWhitespaceVisibility (WhitespaceVisibility mode)
       
      virtual void setWrapMode (WrapMode mode)
       
      virtual void undo ()
       
      virtual void unindent (int line)
       
      virtual void zoomIn (int range)
       
      virtual void zoomIn ()
       
      virtual void zoomOut (int range)
       
      virtual void zoomOut ()
       
      virtual void zoomTo (int size)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Signals

      void cursorPositionChanged (int line, int index)
       
      void copyAvailable (bool yes)
       
      void indicatorClicked (int line, int index, Qt::KeyboardModifiers state)
       
      void indicatorReleased (int line, int index, Qt::KeyboardModifiers state)
       
      +void linesChanged ()
       
      void marginClicked (int margin, int line, Qt::KeyboardModifiers state)
       
      void marginRightClicked (int margin, int line, Qt::KeyboardModifiers state)
       
      void modificationAttempted ()
       
      void modificationChanged (bool m)
       
      void selectionChanged ()
       
      +void textChanged ()
       
      void userListActivated (int id, const QString &string)
       
      - Signals inherited from QsciScintillaBase
      void QSCN_SELCHANGED (bool yes)
       
      void SCN_AUTOCCANCELLED ()
       
      void SCN_AUTOCCHARDELETED ()
       
      void SCN_AUTOCCOMPLETED (const char *selection, int position, int ch, int method)
       
      void SCN_AUTOCSELECTION (const char *selection, int position, int ch, int method)
       
      +void SCN_AUTOCSELECTION (const char *selection, int position)
       
      void SCN_AUTOCSELECTIONCHANGE (const char *selection, int id, int position)
       
      +void SCEN_CHANGE ()
       
      void SCN_CALLTIPCLICK (int direction)
       
      void SCN_CHARADDED (int charadded)
       
      void SCN_DOUBLECLICK (int position, int line, int modifiers)
       
      void SCN_DWELLEND (int position, int x, int y)
       
      void SCN_DWELLSTART (int position, int x, int y)
       
      +void SCN_FOCUSIN ()
       
      +void SCN_FOCUSOUT ()
       
      void SCN_HOTSPOTCLICK (int position, int modifiers)
       
      void SCN_HOTSPOTDOUBLECLICK (int position, int modifiers)
       
      void SCN_HOTSPOTRELEASECLICK (int position, int modifiers)
       
      void SCN_INDICATORCLICK (int position, int modifiers)
       
      void SCN_INDICATORRELEASE (int position, int modifiers)
       
      void SCN_MACRORECORD (unsigned int, unsigned long, void *)
       
      void SCN_MARGINCLICK (int position, int modifiers, int margin)
       
      void SCN_MARGINRIGHTCLICK (int position, int modifiers, int margin)
       
      +void SCN_MODIFIED (int, int, const char *, int, int, int, int, int, int, int)
       
      void SCN_MODIFYATTEMPTRO ()
       
      +void SCN_NEEDSHOWN (int, int)
       
      void SCN_PAINTED ()
       
      void SCN_SAVEPOINTLEFT ()
       
      void SCN_SAVEPOINTREACHED ()
       
      void SCN_STYLENEEDED (int position)
       
      void SCN_URIDROPPED (const QUrl &url)
       
      void SCN_UPDATEUI (int updated)
       
      void SCN_USERLISTSELECTION (const char *selection, int id, int ch, int method, int position)
       
      +void SCN_USERLISTSELECTION (const char *selection, int id, int ch, int method)
       
      +void SCN_USERLISTSELECTION (const char *selection, int id)
       
      +void SCN_ZOOM ()
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

      QsciScintilla (QWidget *parent=0)
       
      +virtual ~QsciScintilla ()
       
      virtual QStringList apiContext (int pos, int &context_start, int &last_word_start)
       
      void annotate (int line, const QString &text, int style)
       
      void annotate (int line, const QString &text, const QsciStyle &style)
       
      +void annotate (int line, const QsciStyledText &text)
       
      +void annotate (int line, const QList< QsciStyledText > &text)
       
      +QString annotation (int line) const
       
      AnnotationDisplay annotationDisplay () const
       
      void clearAnnotations (int line=-1)
       
      bool autoCompletionCaseSensitivity () const
       
      bool autoCompletionFillupsEnabled () const
       
      bool autoCompletionReplaceWord () const
       
      bool autoCompletionShowSingle () const
       
      AutoCompletionSource autoCompletionSource () const
       
      int autoCompletionThreshold () const
       
      AutoCompletionUseSingle autoCompletionUseSingle () const
       
      bool autoIndent () const
       
      bool backspaceUnindents () const
       
      void beginUndoAction ()
       
      BraceMatch braceMatching () const
       
      QByteArray bytes (int start, int end) const
       
      CallTipsPosition callTipsPosition () const
       
      CallTipsStyle callTipsStyle () const
       
      int callTipsVisible () const
       
      void cancelFind ()
       
      +void cancelList ()
       
      bool caseSensitive () const
       
      void clearFolds ()
       
      void clearIndicatorRange (int lineFrom, int indexFrom, int lineTo, int indexTo, int indicatorNumber)
       
      void clearRegisteredImages ()
       
      QColor color () const
       
      QList< int > contractedFolds () const
       
      void convertEols (EolMode mode)
       
      QMenu * createStandardContextMenu ()
       
      QsciDocument document () const
       
      void endUndoAction ()
       
      QColor edgeColor () const
       
      int edgeColumn () const
       
      EdgeMode edgeMode () const
       
      void setFont (const QFont &f)
       
      EolMode eolMode () const
       
      bool eolVisibility () const
       
      int extraAscent () const
       
      int extraDescent () const
       
      void fillIndicatorRange (int lineFrom, int indexFrom, int lineTo, int indexTo, int indicatorNumber)
       
      virtual bool findFirst (const QString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=true, int line=-1, int index=-1, bool show=true, bool posix=false, bool cxx11=false)
       
      virtual bool findFirstInSelection (const QString &expr, bool re, bool cs, bool wo, bool forward=true, bool show=true, bool posix=false, bool cxx11=false)
       
      virtual bool findNext ()
       
      bool findMatchingBrace (long &brace, long &other, BraceMatch mode)
       
      int firstVisibleLine () const
       
      FoldStyle folding () const
       
      void getCursorPosition (int *line, int *index) const
       
      void getSelection (int *lineFrom, int *indexFrom, int *lineTo, int *indexTo) const
       
      bool hasSelectedText () const
       
      int indentation (int line) const
       
      bool indentationGuides () const
       
      bool indentationsUseTabs () const
       
      int indentationWidth () const
       
      int indicatorDefine (IndicatorStyle style, int indicatorNumber=-1)
       
      bool indicatorDrawUnder (int indicatorNumber) const
       
      +bool isCallTipActive () const
       
      bool isListActive () const
       
      bool isModified () const
       
      bool isReadOnly () const
       
      bool isRedoAvailable () const
       
      bool isUndoAvailable () const
       
      bool isUtf8 () const
       
      bool isWordCharacter (char ch) const
       
      int lineAt (const QPoint &point) const
       
      void lineIndexFromPosition (int position, int *line, int *index) const
       
      int lineLength (int line) const
       
      +int lines () const
       
      int length () const
       
      QsciLexerlexer () const
       
      QColor marginBackgroundColor (int margin) const
       
      bool marginLineNumbers (int margin) const
       
      int marginMarkerMask (int margin) const
       
      int marginOptions () const
       
      bool marginSensitivity (int margin) const
       
      MarginType marginType (int margin) const
       
      int marginWidth (int margin) const
       
      int margins () const
       
      int markerDefine (MarkerSymbol sym, int markerNumber=-1)
       
      int markerDefine (char ch, int markerNumber=-1)
       
      int markerDefine (const QPixmap &pm, int markerNumber=-1)
       
      int markerDefine (const QImage &im, int markerNumber=-1)
       
      int markerAdd (int linenr, int markerNumber)
       
      unsigned markersAtLine (int linenr) const
       
      void markerDelete (int linenr, int markerNumber=-1)
       
      void markerDeleteAll (int markerNumber=-1)
       
      void markerDeleteHandle (int mhandle)
       
      int markerLine (int mhandle) const
       
      int markerFindNext (int linenr, unsigned mask) const
       
      int markerFindPrevious (int linenr, unsigned mask) const
       
      bool overwriteMode () const
       
      QColor paper () const
       
      int positionFromLineIndex (int line, int index) const
       
      bool read (QIODevice *io)
       
      virtual void recolor (int start=0, int end=-1)
       
      void registerImage (int id, const QPixmap &pm)
       
      void registerImage (int id, const QImage &im)
       
      virtual void replace (const QString &replaceStr)
       
      void resetFoldMarginColors ()
       
      void resetHotspotBackgroundColor ()
       
      void resetHotspotForegroundColor ()
       
      int scrollWidth () const
       
      bool scrollWidthTracking () const
       
      void setFoldMarginColors (const QColor &fore, const QColor &back)
       
      void setAnnotationDisplay (AnnotationDisplay display)
       
      void setAutoCompletionFillupsEnabled (bool enabled)
       
      void setAutoCompletionFillups (const char *fillups)
       
      void setAutoCompletionWordSeparators (const QStringList &separators)
       
      void setCallTipsBackgroundColor (const QColor &col)
       
      void setCallTipsForegroundColor (const QColor &col)
       
      void setCallTipsHighlightColor (const QColor &col)
       
      void setCallTipsPosition (CallTipsPosition position)
       
      void setCallTipsStyle (CallTipsStyle style)
       
      void setCallTipsVisible (int nr)
       
      void setContractedFolds (const QList< int > &folds)
       
      void setDocument (const QsciDocument &document)
       
      void addEdgeColumn (int colnr, const QColor &col)
       
      void clearEdgeColumns ()
       
      void setEdgeColor (const QColor &col)
       
      void setEdgeColumn (int colnr)
       
      void setEdgeMode (EdgeMode mode)
       
      void setFirstVisibleLine (int linenr)
       
      void setIndicatorDrawUnder (bool under, int indicatorNumber=-1)
       
      void setIndicatorForegroundColor (const QColor &col, int indicatorNumber=-1)
       
      void setIndicatorHoverForegroundColor (const QColor &col, int indicatorNumber=-1)
       
      void setIndicatorHoverStyle (IndicatorStyle style, int indicatorNumber=-1)
       
      void setIndicatorOutlineColor (const QColor &col, int indicatorNumber=-1)
       
      void setMarginBackgroundColor (int margin, const QColor &col)
       
      void setMarginOptions (int options)
       
      void setMarginText (int line, const QString &text, int style)
       
      void setMarginText (int line, const QString &text, const QsciStyle &style)
       
      +void setMarginText (int line, const QsciStyledText &text)
       
      void setMarginText (int line, const QList< QsciStyledText > &text)
       
      void setMarginType (int margin, MarginType type)
       
      void clearMarginText (int line=-1)
       
      void setMargins (int margins)
       
      void setMarkerBackgroundColor (const QColor &col, int markerNumber=-1)
       
      void setMarkerForegroundColor (const QColor &col, int markerNumber=-1)
       
      void setMatchedBraceBackgroundColor (const QColor &col)
       
      void setMatchedBraceForegroundColor (const QColor &col)
       
      void setMatchedBraceIndicator (int indicatorNumber)
       
      void resetMatchedBraceIndicator ()
       
      void setScrollWidth (int pixelWidth)
       
      void setScrollWidthTracking (bool enabled)
       
      void setTabDrawMode (TabDrawMode mode)
       
      void setUnmatchedBraceBackgroundColor (const QColor &col)
       
      void setUnmatchedBraceForegroundColor (const QColor &col)
       
      void setUnmatchedBraceIndicator (int indicatorNumber)
       
      void resetUnmatchedBraceIndicator ()
       
      void setWrapVisualFlags (WrapVisualFlag endFlag, WrapVisualFlag startFlag=WrapFlagNone, int indent=0)
       
      QString selectedText () const
       
      bool selectionToEol () const
       
      void setHotspotBackgroundColor (const QColor &col)
       
      void setHotspotForegroundColor (const QColor &col)
       
      void setHotspotUnderline (bool enable)
       
      void setHotspotWrap (bool enable)
       
      void setSelectionToEol (bool filled)
       
      void setExtraAscent (int extra)
       
      void setExtraDescent (int extra)
       
      void setOverwriteMode (bool overwrite)
       
      void setWhitespaceBackgroundColor (const QColor &col)
       
      void setWhitespaceForegroundColor (const QColor &col)
       
      void setWhitespaceSize (int size)
       
      void setWrapIndentMode (WrapIndentMode mode)
       
      void showUserList (int id, const QStringList &list)
       
      +QsciCommandSetstandardCommands () const
       
      TabDrawMode tabDrawMode () const
       
      bool tabIndents () const
       
      int tabWidth () const
       
      QString text () const
       
      QString text (int line) const
       
      QString text (int start, int end) const
       
      +int textHeight (int linenr) const
       
      int whitespaceSize () const
       
      WhitespaceVisibility whitespaceVisibility () const
       
      QString wordAtLineIndex (int line, int index) const
       
      +QString wordAtPoint (const QPoint &point) const
       
      const char * wordCharacters () const
       
      WrapMode wrapMode () const
       
      WrapIndentMode wrapIndentMode () const
       
      bool write (QIODevice *io) const
       
      - Public Member Functions inherited from QsciScintillaBase
      QsciScintillaBase (QWidget *parent=0)
       
      +virtual ~QsciScintillaBase ()
       
      void replaceHorizontalScrollBar (QScrollBar *scrollBar)
       
      void replaceVerticalScrollBar (QScrollBar *scrollBar)
       
      long SendScintilla (unsigned int msg, unsigned long wParam=0, long lParam=0) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, void *lParam) const
       
      +long SendScintilla (unsigned int msg, uintptr_t wParam, const char *lParam) const
       
      +long SendScintilla (unsigned int msg, const char *lParam) const
       
      +long SendScintilla (unsigned int msg, const char *wParam, const char *lParam) const
       
      +long SendScintilla (unsigned int msg, long wParam) const
       
      +long SendScintilla (unsigned int msg, int wParam) const
       
      +long SendScintilla (unsigned int msg, long cpMin, long cpMax, char *lpstrText) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, const QColor &col) const
       
      +long SendScintilla (unsigned int msg, const QColor &col) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, const QPixmap &lParam) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, const QImage &lParam) const
       
      +void * SendScintillaPtrResult (unsigned int msg) const
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Protected Member Functions

      +virtual bool event (QEvent *e)
       
      +virtual void changeEvent (QEvent *e)
       
      +virtual void contextMenuEvent (QContextMenuEvent *e)
       
      +virtual void wheelEvent (QWheelEvent *e)
       
      - Protected Member Functions inherited from QsciScintillaBase
      virtual bool canInsertFromMimeData (const QMimeData *source) const
       
      virtual QByteArray fromMimeData (const QMimeData *source, bool &rectangular) const
       
      virtual QMimeData * toMimeData (const QByteArray &text, bool rectangular) const
       
      +virtual void dragEnterEvent (QDragEnterEvent *e)
       
      +virtual void dragLeaveEvent (QDragLeaveEvent *e)
       
      +virtual void dragMoveEvent (QDragMoveEvent *e)
       
      +virtual void dropEvent (QDropEvent *e)
       
      +virtual void focusInEvent (QFocusEvent *e)
       
      +virtual void focusOutEvent (QFocusEvent *e)
       
      +virtual bool focusNextPrevChild (bool next)
       
      +virtual void keyPressEvent (QKeyEvent *e)
       
      +virtual void inputMethodEvent (QInputMethodEvent *event)
       
      +virtual QVariant inputMethodQuery (Qt::InputMethodQuery query) const
       
      +virtual void mouseDoubleClickEvent (QMouseEvent *e)
       
      +virtual void mouseMoveEvent (QMouseEvent *e)
       
      +virtual void mousePressEvent (QMouseEvent *e)
       
      +virtual void mouseReleaseEvent (QMouseEvent *e)
       
      +virtual void paintEvent (QPaintEvent *e)
       
      +virtual void resizeEvent (QResizeEvent *e)
       
      +virtual void scrollContentsBy (int dx, int dy)
       
      +void setScrollBars ()
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +bool contextMenuNeeded (int x, int y) const
       
      + + + + + + +

      +Additional Inherited Members

      - Static Public Member Functions inherited from QsciScintillaBase
      static QsciScintillaBasepool ()
       
      +static int commandKey (int qt_key, int &modifiers)
       
      +

      Detailed Description

      +

      The QsciScintilla class implements a higher level, more Qt-like, API to the Scintilla editor widget.

      +

      QsciScintilla implements methods, signals and slots similar to those found in other Qt editor classes. It also provides a higher level interface to features specific to Scintilla such as syntax styling, call tips, auto-indenting and auto-completion than that provided by QsciScintillaBase.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      + +

      This enum defines the different auto-indentation styles.

      + + + + +
      Enumerator
      AiMaintain 

      A line is automatically indented to match the previous line.

      +
      AiOpening 

      If the language supported by the current lexer has a specific start of block character (e.g. { in C++), then a line that begins with that character is indented as well as the lines that make up the block. It may be logically ored with AiClosing.

      +
      AiClosing 

      If the language supported by the current lexer has a specific end of block character (e.g. } in C++), then a line that begins with that character is indented as well as the lines that make up the block. It may be logically ored with AiOpening.

      +
      + +
      +
      + +

      ◆ AnnotationDisplay

      + +
      +
      + +

      This enum defines the different annotation display styles.

      + + + + + +
      Enumerator
      AnnotationHidden 

      Annotations are not displayed.

      +
      AnnotationStandard 

      Annotations are drawn left justified with no adornment.

      +
      AnnotationBoxed 

      Annotations are surrounded by a box.

      +
      AnnotationIndented 

      Annotations are indented to match the text.

      +
      + +
      +
      + +

      ◆ AutoCompletionUseSingle

      + +
      +
      +

      This enum defines the behavior if an auto-completion list contains a single entry.

      + + + + +
      Enumerator
      AcusNever 

      The single entry is not used automatically and the auto-completion list is displayed.

      +
      AcusExplicit 

      The single entry is used automatically when auto-completion is explicitly requested (using autoCompleteFromAPIs() or autoCompleteFromDocument()) but not when auto-completion is triggered as the user types.

      +
      AcusAlways 

      The single entry is used automatically and the auto-completion list is not displayed.

      +
      + +
      +
      + +

      ◆ AutoCompletionSource

      + +
      +
      + +

      This enum defines the different sources for auto-completion lists.

      + + + + + +
      Enumerator
      AcsNone 

      No sources are used, ie. automatic auto-completion is disabled.

      +
      AcsAll 

      The source is all available sources.

      +
      AcsDocument 

      The source is the current document.

      +
      AcsAPIs 

      The source is any installed APIs.

      +
      + +
      +
      + +

      ◆ BraceMatch

      + +
      +
      + + + + +
      enum QsciScintilla::BraceMatch
      +
      +

      This enum defines the different brace matching modes. The character pairs {}, [] and () are treated as braces. The Python lexer will also match a : with the end of the corresponding indented block.

      + + + + +
      Enumerator
      NoBraceMatch 

      Brace matching is disabled.

      +
      StrictBraceMatch 

      Brace matching is enabled for a brace immediately before the current position.

      +
      SloppyBraceMatch 

      Brace matching is enabled for a brace immediately before or after the current position.

      +
      + +
      +
      + +

      ◆ CallTipsPosition

      + +
      +
      + +

      This enum defines the different call tip positions.

      + + + +
      Enumerator
      CallTipsBelowText 

      Call tips are placed below the text.

      +
      CallTipsAboveText 

      Call tips are placed above the text.

      +
      + +
      +
      + +

      ◆ CallTipsStyle

      + +
      +
      + +

      This enum defines the different call tip styles.

      + + + + + +
      Enumerator
      CallTipsNone 

      Call tips are disabled.

      +
      CallTipsNoContext 

      Call tips are displayed without a context. A context is any scope (e.g. a C++ namespace or a Python module) prior to the function name.

      +
      CallTipsNoAutoCompletionContext 

      Call tips are displayed with a context only if the user hasn't already implicitly identified the context using autocompletion. Note that this style may not always be able to align the call tip with the text being entered.

      +
      CallTipsContext 

      Call tips are displayed with a context. Note that this style may not always be able to align the call tip with the text being entered.

      +
      + +
      +
      + +

      ◆ EdgeMode

      + +
      +
      + + + + +
      enum QsciScintilla::EdgeMode
      +
      + +

      This enum defines the different edge modes for long lines.

      + + + + + +
      Enumerator
      EdgeNone 

      Long lines are not marked.

      +
      EdgeLine 

      A vertical line is drawn at the column set by setEdgeColumn(). This is recommended for monospace fonts.

      +
      EdgeBackground 

      The background color of characters after the column limit is changed to the color set by setEdgeColor(). This is recommended for proportional fonts.

      +
      EdgeMultipleLines 

      Multiple vertical lines are drawn at the columns defined by multiple calls to addEdgeColumn().

      +
      + +
      +
      + +

      ◆ EolMode

      + +
      +
      + + + + +
      enum QsciScintilla::EolMode
      +
      + +

      This enum defines the different end-of-line modes.

      + + + + +
      Enumerator
      EolWindows 

      A carriage return/line feed as used on Windows systems.

      +
      EolUnix 

      A line feed as used on Unix systems, including OS/X.

      +
      EolMac 

      A carriage return as used on Mac systems prior to OS/X.

      +
      + +
      +
      + +

      ◆ FoldStyle

      + +
      +
      + + + + +
      enum QsciScintilla::FoldStyle
      +
      + +

      This enum defines the different styles for the folding margin.

      + + + + + + + +
      Enumerator
      NoFoldStyle 

      Folding is disabled.

      +
      PlainFoldStyle 

      Plain folding style using plus and minus symbols.

      +
      CircledFoldStyle 

      Circled folding style using circled plus and minus symbols.

      +
      BoxedFoldStyle 

      Boxed folding style using boxed plus and minus symbols.

      +
      CircledTreeFoldStyle 

      Circled tree style using a flattened tree with circled plus and minus symbols and rounded corners.

      +
      BoxedTreeFoldStyle 

      Boxed tree style using a flattened tree with boxed plus and minus symbols and right-angled corners.

      +
      + +
      +
      + +

      ◆ IndicatorStyle

      + +
      +
      + +

      This enum defines the different indicator styles.

      + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      PlainIndicator 

      A single straight underline.

      +
      SquiggleIndicator 

      A squiggly underline that requires 3 pixels of descender space.

      +
      TTIndicator 

      A line of small T shapes.

      +
      DiagonalIndicator 

      Diagonal hatching.

      +
      StrikeIndicator 

      Strike out.

      +
      HiddenIndicator 

      An indicator with no visual appearence.

      +
      BoxIndicator 

      A rectangle around the text.

      +
      RoundBoxIndicator 

      A rectangle with rounded corners around the text with the interior usually more transparent than the border.

      +
      StraightBoxIndicator 

      A rectangle around the text with the interior usually more transparent than the border. It does not colour the top pixel of the line so that indicators on contiguous lines are visually distinct and disconnected.

      +
      FullBoxIndicator 

      A rectangle around the text with the interior usually more transparent than the border. Unlike StraightBoxIndicator it covers the entire character area.

      +
      DashesIndicator 

      A dashed underline.

      +
      DotsIndicator 

      A dotted underline.

      +
      SquiggleLowIndicator 

      A squiggly underline that requires 2 pixels of descender space and so will fit under smaller fonts.

      +
      DotBoxIndicator 

      A dotted rectangle around the text with the interior usually more transparent than the border.

      +
      SquigglePixmapIndicator 

      A version of SquiggleIndicator that uses a pixmap. This is quicker but may be of lower quality.

      +
      ThickCompositionIndicator 

      A thick underline typically used for the target during Asian language input composition.

      +
      ThinCompositionIndicator 

      A thin underline typically used for non-target ranges during Asian language input composition.

      +
      TextColorIndicator 

      The color of the text is set to the color of the indicator's foreground.

      +
      TriangleIndicator 

      A triangle below the start of the indicator range.

      +
      TriangleCharacterIndicator 

      A triangle below the centre of the first character in the indicator range.

      +
      GradientIndicator 

      A vertical gradient between the indicator's foreground colour at top to fully transparent at the bottom.

      +
      CentreGradientIndicator 

      A vertical gradient with the indicator's foreground colour in the middle and fading to fully transparent at the top and bottom.

      +
      + +
      +
      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      + +

      This enum defines the different margin options.

      + + + +
      Enumerator
      MoNone 

      Reset all margin options.

      +
      MoSublineSelect 

      If this is set then only the first sub-line of a wrapped line will be selected when clicking on a margin.

      +
      + +
      +
      + +

      ◆ MarginType

      + +
      +
      + + + + +
      enum QsciScintilla::MarginType
      +
      + +

      This enum defines the different margin types.

      + + + + + + + + +
      Enumerator
      SymbolMargin 

      The margin contains symbols, including those used for folding.

      +
      SymbolMarginDefaultForegroundColor 

      The margin contains symbols and uses the default foreground color as its background color.

      +
      SymbolMarginDefaultBackgroundColor 

      The margin contains symbols and uses the default background color as its background color.

      +
      NumberMargin 

      The margin contains line numbers.

      +
      TextMargin 

      The margin contains styled text.

      +
      TextMarginRightJustified 

      The margin contains right justified styled text.

      +
      SymbolMarginColor 

      The margin contains symbols and uses the color set by setMarginBackgroundColor() as its background color.

      +
      + +
      +
      + +

      ◆ MarkerSymbol

      + +
      +
      + + + + +
      enum QsciScintilla::MarkerSymbol
      +
      + +

      This enum defines the different pre-defined marker symbols.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      Circle 

      A circle.

      +
      Rectangle 

      A rectangle.

      +
      RightTriangle 

      A triangle pointing to the right.

      +
      SmallRectangle 

      A smaller rectangle.

      +
      RightArrow 

      An arrow pointing to the right.

      +
      Invisible 

      An invisible marker that allows code to track the movement of lines.

      +
      DownTriangle 

      A triangle pointing down.

      +
      Minus 

      A drawn minus sign.

      +
      Plus 

      A drawn plus sign.

      +
      VerticalLine 

      A vertical line drawn in the background colour.

      +
      BottomLeftCorner 

      A bottom left corner drawn in the background colour.

      +
      LeftSideSplitter 

      A vertical line with a centre right horizontal line drawn in the background colour.

      +
      BoxedPlus 

      A drawn plus sign in a box.

      +
      BoxedPlusConnected 

      A drawn plus sign in a connected box.

      +
      BoxedMinus 

      A drawn minus sign in a box.

      +
      BoxedMinusConnected 

      A drawn minus sign in a connected box.

      +
      RoundedBottomLeftCorner 

      A rounded bottom left corner drawn in the background colour.

      +
      LeftSideRoundedSplitter 

      A vertical line with a centre right curved line drawn in the background colour.

      +
      CircledPlus 

      A drawn plus sign in a circle.

      +
      CircledPlusConnected 

      A drawn plus sign in a connected box.

      +
      CircledMinus 

      A drawn minus sign in a circle.

      +
      CircledMinusConnected 

      A drawn minus sign in a connected circle.

      +
      Background 

      No symbol is drawn but the line is drawn with the same background color as the marker's.

      +
      ThreeDots 

      Three drawn dots.

      +
      ThreeRightArrows 

      Three drawn arrows pointing right.

      +
      FullRectangle 

      A full rectangle (ie. the margin background) using the marker's background color.

      +
      LeftRectangle 

      A left rectangle (ie. the left part of the margin background) using the marker's background color.

      +
      Underline 

      No symbol is drawn but the line is drawn underlined using the marker's background color.

      +
      Bookmark 

      A bookmark.

      +
      + +
      +
      + +

      ◆ TabDrawMode

      + +
      +
      + + + + +
      enum QsciScintilla::TabDrawMode
      +
      +

      This enum defines how tab characters are drawn when whitespace is visible.

      + + + +
      Enumerator
      TabLongArrow 

      An arrow stretching to the tab stop.

      +
      TabStrikeOut 

      A horizontal line stretching to the tab stop.

      +
      + +
      +
      + +

      ◆ WhitespaceVisibility

      + +
      +
      +

      This enum defines the different whitespace visibility modes. When whitespace is visible spaces are displayed as small centred dots and tabs are displayed as light arrows pointing to the right.

      + + + + + +
      Enumerator
      WsInvisible 

      Whitespace is invisible.

      +
      WsVisible 

      Whitespace is always visible.

      +
      WsVisibleAfterIndent 

      Whitespace is visible after the whitespace used for indentation.

      +
      WsVisibleOnlyInIndent 

      Whitespace used for indentation is visible.

      +
      + +
      +
      + +

      ◆ WrapMode

      + +
      +
      + + + + +
      enum QsciScintilla::WrapMode
      +
      + +

      This enum defines the different line wrap modes.

      + + + + + +
      Enumerator
      WrapNone 

      Lines are not wrapped.

      +
      WrapWord 

      Lines are wrapped at word boundaries.

      +
      WrapCharacter 

      Lines are wrapped at character boundaries.

      +
      WrapWhitespace 

      Lines are wrapped at whitespace boundaries.

      +
      + +
      +
      + +

      ◆ WrapVisualFlag

      + +
      +
      + +

      This enum defines the different line wrap visual flags.

      + + + + + +
      Enumerator
      WrapFlagNone 

      No wrap flag is displayed.

      +
      WrapFlagByText 

      A wrap flag is displayed by the text.

      +
      WrapFlagByBorder 

      A wrap flag is displayed by the border.

      +
      WrapFlagInMargin 

      A wrap flag is displayed in the line number margin.

      +
      + +
      +
      + +

      ◆ WrapIndentMode

      + +
      +
      + +

      This enum defines the different line wrap indentation modes.

      + + + + + +
      Enumerator
      WrapIndentFixed 

      Wrapped sub-lines are indented by the amount set by setWrapVisualFlags().

      +
      WrapIndentSame 

      Wrapped sub-lines are indented by the same amount as the first sub-line.

      +
      WrapIndentIndented 

      Wrapped sub-lines are indented by the same amount as the first sub-line plus one more level of indentation.

      +
      WrapIndentDeeplyIndented 

      Wrapped sub-lines are indented by the same amount as the first sub-line plus two more level of indentation.

      +
      + +
      +
      +

      Member Function Documentation

      + +

      ◆ apiContext()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual QStringList QsciScintilla::apiContext (int pos,
      int & context_start,
      int & last_word_start 
      )
      +
      +virtual
      +
      +

      Returns the API context, which is a list of words, before the position pos in the document. The context can be used by auto-completion and call tips to help to identify which API call the user is referring to. In the default implementation the current lexer determines what characters make up a word, and what characters determine the boundaries of words (ie. the start characters). If there is no current lexer then the context will consist of a single word. On return context_start will contain the position in the document of the start of the context and last_word_start will contain the position in the document of the start of the last word of the context.

      + +
      +
      + +

      ◆ annotate() [1/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::annotate (int line,
      const QString & text,
      int style 
      )
      +
      +

      Annotate the line line with the text text using the style number style.

      + +
      +
      + +

      ◆ annotate() [2/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::annotate (int line,
      const QString & text,
      const QsciStylestyle 
      )
      +
      +

      Annotate the line line with the text text using the style style.

      + +
      +
      + +

      ◆ annotationDisplay()

      + +
      +
      + + + + + + + +
      AnnotationDisplay QsciScintilla::annotationDisplay () const
      +
      +

      Returns the display style for annotations.

      +
      See also
      setAnnotationDisplay()
      + +
      +
      + +

      ◆ clearAnnotations()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::clearAnnotations (int line = -1)
      +
      +

      The annotations on line line are removed. If line is negative then all annotations are removed.

      + +
      +
      + +

      ◆ autoCompletionCaseSensitivity()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::autoCompletionCaseSensitivity () const
      +
      +

      Returns true if auto-completion lists are case sensitive.

      +
      See also
      setAutoCompletionCaseSensitivity()
      + +
      +
      + +

      ◆ autoCompletionFillupsEnabled()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::autoCompletionFillupsEnabled () const
      +
      +

      Returns true if auto-completion fill-up characters are enabled.

      +
      See also
      setAutoCompletionFillups(), setAutoCompletionFillupsEnabled()
      + +
      +
      + +

      ◆ autoCompletionReplaceWord()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::autoCompletionReplaceWord () const
      +
      +

      Returns true if the rest of the word to the right of the current cursor is removed when an item from an auto-completion list is selected.

      +
      See also
      setAutoCompletionReplaceWord()
      + +
      +
      + +

      ◆ autoCompletionShowSingle()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::autoCompletionShowSingle () const
      +
      +

      Returns true if the only item in an auto-completion list with a single entry is automatically used and the list not displayed. Note that this is deprecated and autoCompletionUseSingle() should be used instead.

      +
      See also
      setAutoCompletionShowSingle()
      + +
      +
      + +

      ◆ autoCompletionSource()

      + +
      +
      + + + + + +
      + + + + + + + +
      AutoCompletionSource QsciScintilla::autoCompletionSource () const
      +
      +inline
      +
      +

      Returns the current source for the auto-completion list when it is being displayed automatically as the user types.

      +
      See also
      setAutoCompletionSource()
      + +
      +
      + +

      ◆ autoCompletionThreshold()

      + +
      +
      + + + + + +
      + + + + + + + +
      int QsciScintilla::autoCompletionThreshold () const
      +
      +inline
      +
      +

      Returns the current threshold for the automatic display of the auto-completion list as the user types.

      +
      See also
      setAutoCompletionThreshold()
      + +
      +
      + +

      ◆ autoCompletionUseSingle()

      + +
      +
      + + + + + + + +
      AutoCompletionUseSingle QsciScintilla::autoCompletionUseSingle () const
      +
      +

      Returns the current behavior when an auto-completion list contains a single entry.

      +
      See also
      setAutoCompletionUseSingle()
      + +
      +
      + +

      ◆ autoIndent()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciScintilla::autoIndent () const
      +
      +inline
      +
      +

      Returns true if auto-indentation is enabled.

      +
      See also
      setAutoIndent()
      + +
      +
      + +

      ◆ backspaceUnindents()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::backspaceUnindents () const
      +
      +

      Returns true if the backspace key unindents a line instead of deleting a character. The default is false.

      +
      See also
      setBackspaceUnindents(), tabIndents(), setTabIndents()
      + +
      +
      + +

      ◆ beginUndoAction()

      + +
      +
      + + + + + + + +
      void QsciScintilla::beginUndoAction ()
      +
      +

      Mark the beginning of a sequence of actions that can be undone by a single call to undo().

      +
      See also
      endUndoAction(), undo()
      + +
      +
      + +

      ◆ braceMatching()

      + +
      +
      + + + + + +
      + + + + + + + +
      BraceMatch QsciScintilla::braceMatching () const
      +
      +inline
      +
      +

      Returns the brace matching mode.

      +
      See also
      setBraceMatching()
      + +
      +
      + +

      ◆ bytes()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      QByteArray QsciScintilla::bytes (int start,
      int end 
      ) const
      +
      +

      Returns the encoded text between positions start and end. This is typically used by QsciLexerCustom::styleText().

      +
      See also
      text()
      + +
      +
      + +

      ◆ callTipsPosition()

      + +
      +
      + + + + + +
      + + + + + + + +
      CallTipsPosition QsciScintilla::callTipsPosition () const
      +
      +inline
      +
      +

      Returns the current call tip position.

      +
      See also
      setCallTipsPosition()
      + +
      +
      + +

      ◆ callTipsStyle()

      + +
      +
      + + + + + +
      + + + + + + + +
      CallTipsStyle QsciScintilla::callTipsStyle () const
      +
      +inline
      +
      +

      Returns the current call tip style.

      +
      See also
      setCallTipsStyle()
      + +
      +
      + +

      ◆ callTipsVisible()

      + +
      +
      + + + + + +
      + + + + + + + +
      int QsciScintilla::callTipsVisible () const
      +
      +inline
      +
      +

      Returns the maximum number of call tips that are displayed.

      +
      See also
      setCallTipsVisible()
      + +
      +
      + +

      ◆ cancelFind()

      + +
      +
      + + + + + + + +
      void QsciScintilla::cancelFind ()
      +
      +

      Cancel any previous call to findFirst(), findFirstInSelection() or findNext() so that replace() does nothing.

      + +
      +
      + +

      ◆ caseSensitive()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::caseSensitive () const
      +
      +

      Returns true if the current language lexer is case sensitive. If there is no current lexer then true is returned.

      + +
      +
      + +

      ◆ clearFolds()

      + +
      +
      + + + + + + + +
      void QsciScintilla::clearFolds ()
      +
      +

      Clear all current folds, i.e. ensure that all lines are displayed unfolded.

      +
      See also
      setFolding()
      + +
      +
      + +

      ◆ clearIndicatorRange()

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::clearIndicatorRange (int lineFrom,
      int indexFrom,
      int lineTo,
      int indexTo,
      int indicatorNumber 
      )
      +
      +

      Clears the range of text with indicator indicatorNumber starting at position indexFrom in line lineFrom and finishing at position indexTo in line lineTo.

      +
      See also
      fillIndicatorRange()
      + +
      +
      + +

      ◆ clearRegisteredImages()

      + +
      +
      + + + + + + + +
      void QsciScintilla::clearRegisteredImages ()
      +
      +

      Clear all registered images.

      +
      See also
      registerImage()
      + +
      +
      + +

      ◆ color()

      + +
      +
      + + + + + + + +
      QColor QsciScintilla::color () const
      +
      +

      Returns the widget's text (ie. foreground) colour.

      +
      See also
      setColor()
      + +
      +
      + +

      ◆ contractedFolds()

      + +
      +
      + + + + + + + +
      QList<int> QsciScintilla::contractedFolds () const
      +
      +

      Returns a list of the line numbers that have contracted folds. This is typically used to save the fold state of a document.

      +
      See also
      setContractedFolds()
      + +
      +
      + +

      ◆ convertEols()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::convertEols (EolMode mode)
      +
      +

      All the lines of the text have their end-of-lines converted to mode mode.

      +
      See also
      eolMode(), setEolMode()
      + +
      +
      + +

      ◆ createStandardContextMenu()

      + +
      +
      + + + + + + + +
      QMenu* QsciScintilla::createStandardContextMenu ()
      +
      +

      Create the standard context menu which is shown when the user clicks with the right mouse button. It is called from contextMenuEvent(). The menu's ownership is transferred to the caller.

      + +
      +
      + +

      ◆ document()

      + +
      +
      + + + + + +
      + + + + + + + +
      QsciDocument QsciScintilla::document () const
      +
      +inline
      +
      +

      Returns the attached document.

      +
      See also
      setDocument()
      + +
      +
      + +

      ◆ endUndoAction()

      + +
      +
      + + + + + + + +
      void QsciScintilla::endUndoAction ()
      +
      +

      Mark the end of a sequence of actions that can be undone by a single call to undo().

      +
      See also
      beginUndoAction(), undo()
      + +
      +
      + +

      ◆ edgeColor()

      + +
      +
      + + + + + + + +
      QColor QsciScintilla::edgeColor () const
      +
      +

      Returns the color of the marker used to show that a line has exceeded the length set by setEdgeColumn().

      +
      See also
      setEdgeColor(),
      +
      +setEdgeColumn
      + +
      +
      + +

      ◆ edgeColumn()

      + +
      +
      + + + + + + + +
      int QsciScintilla::edgeColumn () const
      +
      +

      Returns the number of the column after which lines are considered to be long.

      +
      See also
      setEdgeColumn()
      + +
      +
      + +

      ◆ edgeMode()

      + +
      +
      + + + + + + + +
      EdgeMode QsciScintilla::edgeMode () const
      +
      +

      Returns the edge mode which determines how long lines are marked.

      +
      See also
      setEdgeMode()
      + +
      +
      + +

      ◆ setFont()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setFont (const QFont & f)
      +
      +

      Set the default font. This has no effect if a language lexer has been set.

      + +
      +
      + +

      ◆ eolMode()

      + +
      +
      + + + + + + + +
      EolMode QsciScintilla::eolMode () const
      +
      +

      Returns the end-of-line mode.

      +
      See also
      setEolMode()
      + +
      +
      + +

      ◆ eolVisibility()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::eolVisibility () const
      +
      +

      Returns the visibility of end-of-lines.

      +
      See also
      setEolVisibility()
      + +
      +
      + +

      ◆ extraAscent()

      + +
      +
      + + + + + + + +
      int QsciScintilla::extraAscent () const
      +
      +

      Returns the extra space added to the height of a line above the baseline of the text.

      +
      See also
      setExtraAscent(), extraDescent()
      + +
      +
      + +

      ◆ extraDescent()

      + +
      +
      + + + + + + + +
      int QsciScintilla::extraDescent () const
      +
      +

      Returns the extra space added to the height of a line below the baseline of the text.

      +
      See also
      setExtraDescent(), extraAscent()
      + +
      +
      + +

      ◆ fillIndicatorRange()

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::fillIndicatorRange (int lineFrom,
      int indexFrom,
      int lineTo,
      int indexTo,
      int indicatorNumber 
      )
      +
      +

      Fills the range of text with indicator indicatorNumber starting at position indexFrom in line lineFrom and finishing at position indexTo in line lineTo.

      +
      See also
      clearIndicatorRange()
      + +
      +
      + +

      ◆ findFirst()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual bool QsciScintilla::findFirst (const QString & expr,
      bool re,
      bool cs,
      bool wo,
      bool wrap,
      bool forward = true,
      int line = -1,
      int index = -1,
      bool show = true,
      bool posix = false,
      bool cxx11 = false 
      )
      +
      +virtual
      +
      +

      Find the first occurrence of the string expr and return true if expr was found, otherwise returns false. If expr is found it becomes the current selection.

      +

      If re is true then expr is interpreted as a regular expression rather than a simple string.

      +

      If cs is true then the search is case sensitive.

      +

      If wo is true then the search looks for whole word matches only, otherwise it searches for any matching text.

      +

      If wrap is true then the search wraps around the end of the text.

      +

      If forward is true (the default) then the search is forward from the starting position to the end of the text, otherwise it is backwards to the beginning of the text.

      +

      If either line or index are negative (the default) then the search begins from the current cursor position. Otherwise the search begins at position index of line line.

      +

      If show is true (the default) then any text found is made visible (ie. it is unfolded).

      +

      If posix is true then a regular expression is treated in a more POSIX compatible manner by interpreting bare ( and ) as tagged sections rather than ( and ).

      +

      If cxx11 is true then a regular expression is treated as a Cxx11 regular expression.

      +
      See also
      cancelFind(), findFirstInSelection(), findNext(), replace()
      + +
      +
      + +

      ◆ findFirstInSelection()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual bool QsciScintilla::findFirstInSelection (const QString & expr,
      bool re,
      bool cs,
      bool wo,
      bool forward = true,
      bool show = true,
      bool posix = false,
      bool cxx11 = false 
      )
      +
      +virtual
      +
      +

      Find the first occurrence of the string expr in the current selection and return true if expr was found, otherwise returns false. If expr is found it becomes the current selection. The original selection is restored when a subsequent call to findNext() returns false.

      +

      If re is true then expr is interpreted as a regular expression rather than a simple string.

      +

      If cs is true then the search is case sensitive.

      +

      If wo is true then the search looks for whole word matches only, otherwise it searches for any matching text.

      +

      If forward is true (the default) then the search is forward from the start to the end of the selection, otherwise it is backwards from the end to the start of the selection.

      +

      If show is true (the default) then any text found is made visible (ie. it is unfolded).

      +

      If posix is true then a regular expression is treated in a more POSIX compatible manner by interpreting bare ( and ) as tagged sections rather than ( and ).

      +

      If cxx11 is true then a regular expression is treated as a Cxx11 regular expression.

      +
      See also
      cancelFind(), findFirst(), findNext(), replace()
      + +
      +
      + +

      ◆ findNext()

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual bool QsciScintilla::findNext ()
      +
      +virtual
      +
      +

      Find the next occurence of the string found using findFirst() or findFirstInSelection().

      +
      See also
      cancelFind(), findFirst(), findFirstInSelection(), replace()
      + +
      +
      + +

      ◆ findMatchingBrace()

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      bool QsciScintilla::findMatchingBrace (long & brace,
      long & other,
      BraceMatch mode 
      )
      +
      +

      Find a brace and it's match. brace is updated with the position of the brace and will be -1 if there is none. is updated with the position of the matching brace and will be -1 if there is none. mode specifies how braces are matched. true is returned if the current position is inside a pair of braces.

      + +
      +
      + +

      ◆ firstVisibleLine()

      + +
      +
      + + + + + + + +
      int QsciScintilla::firstVisibleLine () const
      +
      +

      Returns the number of the first visible line.

      +
      See also
      setFirstVisibleLine()
      + +
      +
      + +

      ◆ folding()

      + +
      +
      + + + + + +
      + + + + + + + +
      FoldStyle QsciScintilla::folding () const
      +
      +inline
      +
      +

      Returns the current folding style.

      +
      See also
      setFolding()
      + +
      +
      + +

      ◆ getCursorPosition()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::getCursorPosition (int * line,
      int * index 
      ) const
      +
      +

      Sets *line and *index to the line and index of the cursor.

      +
      See also
      setCursorPosition()
      + +
      +
      + +

      ◆ getSelection()

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::getSelection (int * lineFrom,
      int * indexFrom,
      int * lineTo,
      int * indexTo 
      ) const
      +
      +

      If there is a selection, *lineFrom is set to the line number in which the selection begins and *lineTo is set to the line number in which the selection ends. (They could be the same.) *indexFrom is set to the index at which the selection begins within *lineFrom, and *indexTo is set to the index at which the selection ends within *lineTo. If there is no selection, *lineFrom, *indexFrom, *lineTo and *indexTo are all set to -1.

      +
      See also
      setSelection()
      + +
      +
      + +

      ◆ hasSelectedText()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciScintilla::hasSelectedText () const
      +
      +inline
      +
      +

      Returns true if some text is selected.

      +
      See also
      selectedText()
      + +
      +
      + +

      ◆ indentation()

      + +
      +
      + + + + + + + + +
      int QsciScintilla::indentation (int line) const
      +
      +

      Returns the number of characters that line line is indented by.

      +
      See also
      setIndentation()
      + +
      +
      + +

      ◆ indentationGuides()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::indentationGuides () const
      +
      +

      Returns true if the display of indentation guides is enabled.

      +
      See also
      setIndentationGuides()
      + +
      +
      + +

      ◆ indentationsUseTabs()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::indentationsUseTabs () const
      +
      +

      Returns true if indentations are created using tabs and spaces, rather than just spaces. The default is true.

      +
      See also
      setIndentationsUseTabs()
      + +
      +
      + +

      ◆ indentationWidth()

      + +
      +
      + + + + + + + +
      int QsciScintilla::indentationWidth () const
      +
      +

      Returns the indentation width in characters. The default is 0 which means that the value returned by tabWidth() is actually used.

      +
      See also
      setIndentationWidth(), tabWidth()
      + +
      +
      + +

      ◆ indicatorDefine()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::indicatorDefine (IndicatorStyle style,
      int indicatorNumber = -1 
      )
      +
      +

      Define a type of indicator using the style style with the indicator number indicatorNumber. If indicatorNumber is -1 then the indicator number is automatically allocated. The indicator number is returned or -1 if too many types of indicator have been defined.

      +

      Indicators are used to display additional information over the top of styling. They can be used to show, for example, syntax errors, deprecated names and bad indentation by drawing lines under text or boxes around text.

      +

      There may be up to 32 types of indicator defined at a time. The first 8 are normally used by lexers. By default indicator number 0 is a dark green SquiggleIndicator, 1 is a blue TTIndicator, and 2 is a red PlainIndicator.

      + +
      +
      + +

      ◆ indicatorDrawUnder()

      + +
      +
      + + + + + + + + +
      bool QsciScintilla::indicatorDrawUnder (int indicatorNumber) const
      +
      +

      Returns true if the indicator indicatorNumber is drawn under the text (i.e. in the background). The default is false.

      +
      See also
      setIndicatorDrawUnder()
      + +
      +
      + +

      ◆ isListActive()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::isListActive () const
      +
      +

      Returns true if an auto-completion or user defined list is currently active.

      + +
      +
      + +

      ◆ isModified()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::isModified () const
      +
      +

      Returns true if the text has been modified.

      +
      See also
      setModified(), modificationChanged()
      + +
      +
      + +

      ◆ isReadOnly()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::isReadOnly () const
      +
      +

      Returns true if the text edit is read-only.

      +
      See also
      setReadOnly()
      + +
      +
      + +

      ◆ isRedoAvailable()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::isRedoAvailable () const
      +
      +

      Returns true if there is something that can be redone.

      +
      See also
      redo()
      + +
      +
      + +

      ◆ isUndoAvailable()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::isUndoAvailable () const
      +
      +

      Returns true if there is something that can be undone.

      +
      See also
      undo()
      + +
      +
      + +

      ◆ isUtf8()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::isUtf8 () const
      +
      +

      Returns true if text is interpreted as being UTF8 encoded. The default is to interpret the text as Latin1 encoded.

      +
      See also
      setUtf8()
      + +
      +
      + +

      ◆ isWordCharacter()

      + +
      +
      + + + + + + + + +
      bool QsciScintilla::isWordCharacter (char ch) const
      +
      +

      Returns true if character ch is a valid word character.

      +
      See also
      wordCharacters()
      + +
      +
      + +

      ◆ lineAt()

      + +
      +
      + + + + + + + + +
      int QsciScintilla::lineAt (const QPoint & point) const
      +
      +

      Returns the line which is at point pixel coordinates or -1 if there is no line at that point.

      + +
      +
      + +

      ◆ lineIndexFromPosition()

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::lineIndexFromPosition (int position,
      int * line,
      int * index 
      ) const
      +
      +

      QScintilla uses the combination of a line number and a character index from the start of that line to specify the position of a character within the text. The underlying Scintilla instead uses a byte index from the start of the text. This will convert the position byte index to the *line line number and *index character index.

      +
      See also
      positionFromLineIndex()
      + +
      +
      + +

      ◆ lineLength()

      + +
      +
      + + + + + + + + +
      int QsciScintilla::lineLength (int line) const
      +
      +

      Returns the length of line line int bytes or -1 if there is no such line. In order to get the length in characters use text(line).length().

      + +
      +
      + +

      ◆ length()

      + +
      +
      + + + + + + + +
      int QsciScintilla::length () const
      +
      +

      Returns the length of the text edit's text in bytes. In order to get the length in characters use text().length().

      + +
      +
      + +

      ◆ lexer()

      + +
      +
      + + + + + + + +
      QsciLexer* QsciScintilla::lexer () const
      +
      +

      Returns the current language lexer used to style text. If it is 0 then syntax styling is disabled.

      +
      See also
      setLexer()
      + +
      +
      + +

      ◆ marginBackgroundColor()

      + +
      +
      + + + + + + + + +
      QColor QsciScintilla::marginBackgroundColor (int margin) const
      +
      +

      Returns the background color of margin margin.

      +
      See also
      setMarginBackgroundColor()
      + +
      +
      + +

      ◆ marginLineNumbers()

      + +
      +
      + + + + + + + + +
      bool QsciScintilla::marginLineNumbers (int margin) const
      +
      +

      Returns true if line numbers are enabled for margin margin.

      +
      See also
      setMarginLineNumbers(), marginType(), SCI_GETMARGINTYPEN
      + +
      +
      + +

      ◆ marginMarkerMask()

      + +
      +
      + + + + + + + + +
      int QsciScintilla::marginMarkerMask (int margin) const
      +
      +

      Returns the marker mask of margin margin.

      +
      See also
      setMarginMask(), QsciMarker, SCI_GETMARGINMASKN
      + +
      +
      + +

      ◆ marginOptions()

      + +
      +
      + + + + + + + +
      int QsciScintilla::marginOptions () const
      +
      +

      Returns the margin options. The default is MoNone.

      +
      See also
      setMarginOptions(), MoNone, MoSublineSelect.
      + +
      +
      + +

      ◆ marginSensitivity()

      + +
      +
      + + + + + + + + +
      bool QsciScintilla::marginSensitivity (int margin) const
      +
      +

      Returns true if margin margin is sensitive to mouse clicks.

      +
      See also
      setMarginSensitivity(), marginClicked(), SCI_GETMARGINTYPEN
      + +
      +
      + +

      ◆ marginType()

      + +
      +
      + + + + + + + + +
      MarginType QsciScintilla::marginType (int margin) const
      +
      +

      Returns the type of margin margin.

      +
      See also
      setMarginType(), SCI_GETMARGINTYPEN
      + +
      +
      + +

      ◆ marginWidth()

      + +
      +
      + + + + + + + + +
      int QsciScintilla::marginWidth (int margin) const
      +
      +

      Returns the width in pixels of margin margin.

      +
      See also
      setMarginWidth(), SCI_GETMARGINWIDTHN
      + +
      +
      + +

      ◆ margins()

      + +
      +
      + + + + + + + +
      int QsciScintilla::margins () const
      +
      +

      Returns the number of margins.

      +
      See also
      setMargins()
      + +
      +
      + +

      ◆ markerDefine() [1/4]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::markerDefine (MarkerSymbol sym,
      int markerNumber = -1 
      )
      +
      +

      Define a type of marker using the symbol sym with the marker number markerNumber. If markerNumber is -1 then the marker number is automatically allocated. The marker number is returned or -1 if too many types of marker have been defined.

      +

      Markers are small geometric symbols and characters used, for example, to indicate the current line or, in debuggers, to indicate breakpoints. If a margin has a width of 0 then its markers are not drawn, but their background colours affect the background colour of the corresponding line of text.

      +

      There may be up to 32 types of marker defined at a time and each line of text has a set of marker instances associated with it. Markers are drawn according to their numerical identifier. Markers try to move with their text by tracking where the start of their line moves to. For example, when a line is deleted its markers are added to previous line's markers.

      +

      Each marker type is identified by a marker number. Each instance of a marker is identified by a marker handle.

      + +
      +
      + +

      ◆ markerDefine() [2/4]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::markerDefine (char ch,
      int markerNumber = -1 
      )
      +
      +

      Define a marker using the character ch with the marker number markerNumber. If markerNumber is -1 then the marker number is automatically allocated. The marker number is returned or -1 if too many markers have been defined.

      + +
      +
      + +

      ◆ markerDefine() [3/4]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::markerDefine (const QPixmap & pm,
      int markerNumber = -1 
      )
      +
      +

      Define a marker using a copy of the pixmap pm with the marker number markerNumber. If markerNumber is -1 then the marker number is automatically allocated. The marker number is returned or -1 if too many markers have been defined.

      + +
      +
      + +

      ◆ markerDefine() [4/4]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::markerDefine (const QImage & im,
      int markerNumber = -1 
      )
      +
      +

      Define a marker using a copy of the image im with the marker number markerNumber. If markerNumber is -1 then the marker number is automatically allocated. The marker number is returned or -1 if too many markers have been defined.

      + +
      +
      + +

      ◆ markerAdd()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::markerAdd (int linenr,
      int markerNumber 
      )
      +
      +

      Add an instance of marker number markerNumber to line number linenr. A handle for the marker is returned which can be used to track the marker's position, or -1 if the markerNumber was invalid.

      +
      See also
      markerDelete(), markerDeleteAll(), markerDeleteHandle()
      + +
      +
      + +

      ◆ markersAtLine()

      + +
      +
      + + + + + + + + +
      unsigned QsciScintilla::markersAtLine (int linenr) const
      +
      +

      Returns the 32 bit mask of marker numbers at line number linenr.

      +
      See also
      markerAdd()
      + +
      +
      + +

      ◆ markerDelete()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::markerDelete (int linenr,
      int markerNumber = -1 
      )
      +
      +

      Delete all markers with the marker number markerNumber in the line linenr. If markerNumber is -1 then delete all markers from line linenr.

      +
      See also
      markerAdd(), markerDeleteAll(), markerDeleteHandle()
      + +
      +
      + +

      ◆ markerDeleteAll()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::markerDeleteAll (int markerNumber = -1)
      +
      +

      Delete the all markers with the marker number markerNumber. If markerNumber is -1 then delete all markers.

      +
      See also
      markerAdd(), markerDelete(), markerDeleteHandle()
      + +
      +
      + +

      ◆ markerDeleteHandle()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::markerDeleteHandle (int mhandle)
      +
      +

      Delete the the marker instance with the marker handle mhandle.

      +
      See also
      markerAdd(), markerDelete(), markerDeleteAll()
      + +
      +
      + +

      ◆ markerLine()

      + +
      +
      + + + + + + + + +
      int QsciScintilla::markerLine (int mhandle) const
      +
      +

      Return the line number that contains the marker instance with the marker handle mhandle.

      + +
      +
      + +

      ◆ markerFindNext()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::markerFindNext (int linenr,
      unsigned mask 
      ) const
      +
      +

      Return the number of the next line to contain at least one marker from a 32 bit mask of markers. linenr is the line number to start the search from. mask is the mask of markers to search for.

      +
      See also
      markerFindPrevious()
      + +
      +
      + +

      ◆ markerFindPrevious()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::markerFindPrevious (int linenr,
      unsigned mask 
      ) const
      +
      +

      Return the number of the previous line to contain at least one marker from a 32 bit mask of markers. linenr is the line number to start the search from. mask is the mask of markers to search for.

      +
      See also
      markerFindNext()
      + +
      +
      + +

      ◆ overwriteMode()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::overwriteMode () const
      +
      +

      Returns true if text entered by the user will overwrite existing text.

      +
      See also
      setOverwriteMode()
      + +
      +
      + +

      ◆ paper()

      + +
      +
      + + + + + + + +
      QColor QsciScintilla::paper () const
      +
      +

      Returns the widget's paper (ie. background) colour.

      +
      See also
      setPaper()
      + +
      +
      + +

      ◆ positionFromLineIndex()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      int QsciScintilla::positionFromLineIndex (int line,
      int index 
      ) const
      +
      +

      QScintilla uses the combination of a line number and a character index from the start of that line to specify the position of a character within the text. The underlying Scintilla instead uses a byte index from the start of the text. This will return the byte index corresponding to the line line number and index character index.

      +
      See also
      lineIndexFromPosition()
      + +
      +
      + +

      ◆ read()

      + +
      +
      + + + + + + + + +
      bool QsciScintilla::read (QIODevice * io)
      +
      +

      Reads the current document from the io device and returns true if there was no error.

      +
      See also
      write()
      + +
      +
      + +

      ◆ recolor()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::recolor (int start = 0,
      int end = -1 
      )
      +
      +virtual
      +
      +

      Recolours the document between the start and end positions. start defaults to the start of the document and end defaults to the end of the document.

      + +
      +
      + +

      ◆ registerImage() [1/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::registerImage (int id,
      const QPixmap & pm 
      )
      +
      +

      Register an image pm with ID id. Registered images can be displayed in auto-completion lists.

      +
      See also
      clearRegisteredImages(), QsciLexer::apiLoad()
      + +
      +
      + +

      ◆ registerImage() [2/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::registerImage (int id,
      const QImage & im 
      )
      +
      +

      Register an image im with ID id. Registered images can be displayed in auto-completion lists.

      +
      See also
      clearRegisteredImages(), QsciLexer::apiLoad()
      + +
      +
      + +

      ◆ replace()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::replace (const QString & replaceStr)
      +
      +virtual
      +
      +

      Replace the current selection, set by a previous call to findFirst(), findFirstInSelection() or findNext(), with replaceStr.

      +
      See also
      cancelFind(), findFirst(), findFirstInSelection(), findNext()
      + +
      +
      + +

      ◆ resetFoldMarginColors()

      + +
      +
      + + + + + + + +
      void QsciScintilla::resetFoldMarginColors ()
      +
      +

      Reset the fold margin colours to their defaults.

      +
      See also
      setFoldMarginColors()
      + +
      +
      + +

      ◆ resetHotspotBackgroundColor()

      + +
      +
      + + + + + + + +
      void QsciScintilla::resetHotspotBackgroundColor ()
      +
      +

      Resets the background colour of an active hotspot area to the default.

      +
      See also
      setHotspotBackgroundColor(), resetHotspotForegroundColor()
      + +
      +
      + +

      ◆ resetHotspotForegroundColor()

      + +
      +
      + + + + + + + +
      void QsciScintilla::resetHotspotForegroundColor ()
      +
      +

      Resets the foreground colour of an active hotspot area to the default.

      +
      See also
      setHotspotForegroundColor(), resetHotspotBackgroundColor()
      + +
      +
      + +

      ◆ scrollWidth()

      + +
      +
      + + + + + + + +
      int QsciScintilla::scrollWidth () const
      +
      +

      Gets the assumed document width in pixels.

      +
      See also
      setScrollWidth(), setScrollWidthTracking()
      + +
      +
      + +

      ◆ scrollWidthTracking()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::scrollWidthTracking () const
      +
      +

      Returns true if scroll width tracking is enabled.

      +
      See also
      scrollWidth(), setScrollWidthTracking()
      + +
      +
      + +

      ◆ setFoldMarginColors()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setFoldMarginColors (const QColor & fore,
      const QColor & back 
      )
      +
      +

      The fold margin may be drawn as a one pixel sized checkerboard pattern of two colours, fore and back.

      +
      See also
      resetFoldMarginColors()
      + +
      +
      + +

      ◆ setAnnotationDisplay()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setAnnotationDisplay (AnnotationDisplay display)
      +
      +

      Set the display style for annotations. The default is AnnotationStandard.

      +
      See also
      annotationDisplay()
      + +
      +
      + +

      ◆ setAutoCompletionFillupsEnabled()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setAutoCompletionFillupsEnabled (bool enabled)
      +
      +

      Enable the use of fill-up characters, either those explicitly set or those set by a lexer. By default, fill-up characters are disabled.

      +
      See also
      autoCompletionFillupsEnabled(), setAutoCompletionFillups()
      + +
      +
      + +

      ◆ setAutoCompletionFillups()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setAutoCompletionFillups (const char * fillups)
      +
      +

      A fill-up character is one that, when entered while an auto-completion list is being displayed, causes the currently selected item from the list to be added to the text followed by the fill-up character. fillups is the set of fill-up characters. If a language lexer has been set then this is ignored and the lexer defines the fill-up characters. The default is that no fill-up characters are set.

      +
      See also
      autoCompletionFillupsEnabled(), setAutoCompletionFillupsEnabled()
      + +
      +
      + +

      ◆ setAutoCompletionWordSeparators()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setAutoCompletionWordSeparators (const QStringList & separators)
      +
      +

      A word separator is a sequence of characters that, when entered, causes the auto-completion list to be displayed. If a language lexer has been set then this is ignored and the lexer defines the word separators. The default is that no word separators are set.

      +
      See also
      setAutoCompletionThreshold()
      + +
      +
      + +

      ◆ setCallTipsBackgroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setCallTipsBackgroundColor (const QColor & col)
      +
      +

      Set the background colour of call tips to col. The default is white.

      + +
      +
      + +

      ◆ setCallTipsForegroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setCallTipsForegroundColor (const QColor & col)
      +
      +

      Set the foreground colour of call tips to col. The default is mid-gray.

      + +
      +
      + +

      ◆ setCallTipsHighlightColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setCallTipsHighlightColor (const QColor & col)
      +
      +

      Set the highlighted colour of call tip text to col. The default is dark blue.

      + +
      +
      + +

      ◆ setCallTipsPosition()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setCallTipsPosition (CallTipsPosition position)
      +
      +

      Set the current call tip position. The default is CallTipsBelowText.

      +
      See also
      callTipsPosition()
      + +
      +
      + +

      ◆ setCallTipsStyle()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setCallTipsStyle (CallTipsStyle style)
      +
      +

      Set the current call tip style. The default is CallTipsNoContext.

      +
      See also
      callTipsStyle()
      + +
      +
      + +

      ◆ setCallTipsVisible()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setCallTipsVisible (int nr)
      +
      +

      Set the maximum number of call tips that are displayed to nr. If the maximum number is 0 then all applicable call tips are displayed. If the maximum number is -1 then one call tip will be displayed with up and down arrows that allow the use to scroll through the full list. The default is -1.

      +
      See also
      callTipsVisible()
      + +
      +
      + +

      ◆ setContractedFolds()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setContractedFolds (const QList< int > & folds)
      +
      +

      Sets each line in the folds list of line numbers to be a contracted fold. This is typically used to restore the fold state of a document.

      +
      See also
      contractedFolds()
      + +
      +
      + +

      ◆ setDocument()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setDocument (const QsciDocumentdocument)
      +
      +

      Attach the document document, replacing the currently attached document.

      +
      See also
      document()
      + +
      +
      + +

      ◆ addEdgeColumn()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::addEdgeColumn (int colnr,
      const QColor & col 
      )
      +
      +

      Add colnr to the columns which are displayed with a vertical line. The edge mode must be set to EdgeMultipleLines.

      +
      See also
      clearEdgeColumns()
      + +
      +
      + +

      ◆ clearEdgeColumns()

      + +
      +
      + + + + + + + +
      void QsciScintilla::clearEdgeColumns ()
      +
      +

      Remove any columns added by previous calls to addEdgeColumn().

      +
      See also
      addEdgeColumn()
      + +
      +
      + +

      ◆ setEdgeColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setEdgeColor (const QColor & col)
      +
      +

      Set the color of the marker used to show that a line has exceeded the length set by setEdgeColumn().

      +
      See also
      edgeColor(),
      +
      +setEdgeColumn
      + +
      +
      + +

      ◆ setEdgeColumn()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setEdgeColumn (int colnr)
      +
      +

      Set the number of the column after which lines are considered to be long.

      +
      See also
      edgeColumn()
      + +
      +
      + +

      ◆ setEdgeMode()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setEdgeMode (EdgeMode mode)
      +
      +

      Set the edge mode which determines how long lines are marked.

      +
      See also
      edgeMode()
      + +
      +
      + +

      ◆ setFirstVisibleLine()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setFirstVisibleLine (int linenr)
      +
      +

      Set the number of the first visible line to linenr.

      +
      See also
      firstVisibleLine()
      + +
      +
      + +

      ◆ setIndicatorDrawUnder()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setIndicatorDrawUnder (bool under,
      int indicatorNumber = -1 
      )
      +
      +

      Enables or disables, according to under, if the indicator indicatorNumber is drawn under or over the text (i.e. in the background or foreground). If indicatorNumber is -1 then the state of all indicators is set.

      +
      See also
      indicatorDrawUnder()
      + +
      +
      + +

      ◆ setIndicatorForegroundColor()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setIndicatorForegroundColor (const QColor & col,
      int indicatorNumber = -1 
      )
      +
      +

      Set the foreground colour of indicator indicatorNumber to col. If indicatorNumber is -1 then the colour of all indicators is set.

      + +
      +
      + +

      ◆ setIndicatorHoverForegroundColor()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setIndicatorHoverForegroundColor (const QColor & col,
      int indicatorNumber = -1 
      )
      +
      +

      Set the foreground colour of indicator indicatorNumber to col when the mouse is over it or the caret moved into it. If indicatorNumber is -1 then the colour of all indicators is set.

      + +
      +
      + +

      ◆ setIndicatorHoverStyle()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setIndicatorHoverStyle (IndicatorStyle style,
      int indicatorNumber = -1 
      )
      +
      +

      Set the style of indicator indicatorNumber to style when the mouse is over it or the caret moved into it. If indicatorNumber is -1 then the style of all indicators is set.

      + +
      +
      + +

      ◆ setIndicatorOutlineColor()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setIndicatorOutlineColor (const QColor & col,
      int indicatorNumber = -1 
      )
      +
      +

      Set the outline colour of indicator indicatorNumber to col. If indicatorNumber is -1 then the colour of all indicators is set. At the moment only the alpha value of the colour has any affect.

      + +
      +
      + +

      ◆ setMarginBackgroundColor()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setMarginBackgroundColor (int margin,
      const QColor & col 
      )
      +
      +

      Sets the background color of margin margin to col.

      +
      See also
      marginBackgroundColor()
      + +
      +
      + +

      ◆ setMarginOptions()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setMarginOptions (int options)
      +
      +

      Set the margin options to options.

      +
      See also
      marginOptions(), MoNone, MoSublineSelect.
      + +
      +
      + +

      ◆ setMarginText() [1/3]

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setMarginText (int line,
      const QString & text,
      int style 
      )
      +
      +

      Set the margin text of line line with the text text using the style number style.

      + +
      +
      + +

      ◆ setMarginText() [2/3]

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setMarginText (int line,
      const QString & text,
      const QsciStylestyle 
      )
      +
      +

      Set the margin text of line line with the text text using the style style.

      + +
      +
      + +

      ◆ setMarginText() [3/3]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setMarginText (int line,
      const QList< QsciStyledText > & text 
      )
      +
      +

      Set the margin text of line line with the list of styled text text.

      + +
      +
      + +

      ◆ setMarginType()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setMarginType (int margin,
      MarginType type 
      )
      +
      +

      Set the type of margin margin to type type.

      +
      See also
      marginType(), SCI_SETMARGINTYPEN
      + +
      +
      + +

      ◆ clearMarginText()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::clearMarginText (int line = -1)
      +
      +

      The margin text on line line is removed. If line is negative then all margin text is removed.

      + +
      +
      + +

      ◆ setMargins()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setMargins (int margins)
      +
      +

      Set the number of margins to margins.

      +
      See also
      margins()
      + +
      +
      + +

      ◆ setMarkerBackgroundColor()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setMarkerBackgroundColor (const QColor & col,
      int markerNumber = -1 
      )
      +
      +

      Set the background colour, including the alpha component, of marker markerNumber to col. If markerNumber is -1 then the colour of all markers is set. The default is white.

      +
      See also
      setMarkerForegroundColor()
      + +
      +
      + +

      ◆ setMarkerForegroundColor()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setMarkerForegroundColor (const QColor & col,
      int markerNumber = -1 
      )
      +
      +

      Set the foreground colour of marker markerNumber to col. If markerNumber is -1 then the colour of all markers is set. The default is black.

      +
      See also
      setMarkerBackgroundColor()
      + +
      +
      + +

      ◆ setMatchedBraceBackgroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setMatchedBraceBackgroundColor (const QColor & col)
      +
      +

      Set the background colour used to display matched braces to col. It is ignored if an indicator is being used. The default is white.

      +
      See also
      setMatchedBraceForegroundColor(), setMatchedBraceIndicator()
      + +
      +
      + +

      ◆ setMatchedBraceForegroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setMatchedBraceForegroundColor (const QColor & col)
      +
      +

      Set the foreground colour used to display matched braces to col. It is ignored if an indicator is being used. The default is red.

      +
      See also
      setMatchedBraceBackgroundColor(), setMatchedBraceIndicator()
      + +
      +
      + +

      ◆ setMatchedBraceIndicator()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setMatchedBraceIndicator (int indicatorNumber)
      +
      +

      Set the indicator used to display matched braces to indicatorNumber. The default is not to use an indicator.

      +
      See also
      resetMatchedBraceIndicator(), setMatchedBraceBackgroundColor()
      + +
      +
      + +

      ◆ resetMatchedBraceIndicator()

      + +
      +
      + + + + + + + +
      void QsciScintilla::resetMatchedBraceIndicator ()
      +
      +

      Stop using an indicator to display matched braces.

      +
      See also
      setMatchedBraceIndicator()
      + +
      +
      + +

      ◆ setScrollWidth()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setScrollWidth (int pixelWidth)
      +
      +

      For performance, QScintilla does not measure the display width of the document to determine the properties of the horizontal scroll bar. Instead, an assumed width is used. This sets the document width in pixels assumed by QScintilla to pixelWidth. The default value is 2000.

      +
      See also
      scrollWidth(), setScrollWidthTracking()
      + +
      +
      + +

      ◆ setScrollWidthTracking()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setScrollWidthTracking (bool enabled)
      +
      +

      If scroll width tracking is enabled then the scroll width is adjusted to ensure that all of the lines currently displayed can be completely scrolled. This mode never adjusts the scroll width to be narrower. This sets the scroll width tracking to enabled.

      +
      See also
      setScrollWidth(), scrollWidthTracking()
      + +
      +
      + +

      ◆ setTabDrawMode()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setTabDrawMode (TabDrawMode mode)
      +
      +

      Sets the mode used to draw tab characters when whitespace is visible to mode. The default is to use an arrow.

      +
      See also
      tabDrawMode()
      + +
      +
      + +

      ◆ setUnmatchedBraceBackgroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setUnmatchedBraceBackgroundColor (const QColor & col)
      +
      +

      Set the background colour used to display unmatched braces to col. It is ignored if an indicator is being used. The default is white.

      +
      See also
      setUnmatchedBraceForegroundColor(), setUnmatchedBraceIndicator()
      + +
      +
      + +

      ◆ setUnmatchedBraceForegroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setUnmatchedBraceForegroundColor (const QColor & col)
      +
      +

      Set the foreground colour used to display unmatched braces to col. It is ignored if an indicator is being used. The default is blue.

      +
      See also
      setUnmatchedBraceBackgroundColor(), setUnmatchedBraceIndicator()
      + +
      +
      + +

      ◆ setUnmatchedBraceIndicator()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setUnmatchedBraceIndicator (int indicatorNumber)
      +
      +

      Set the indicator used to display unmatched braces to indicatorNumber. The default is not to use an indicator.

      +
      See also
      resetUnmatchedBraceIndicator(), setUnmatchedBraceBackgroundColor()
      + +
      +
      + +

      ◆ resetUnmatchedBraceIndicator()

      + +
      +
      + + + + + + + +
      void QsciScintilla::resetUnmatchedBraceIndicator ()
      +
      +

      Stop using an indicator to display unmatched braces.

      +
      See also
      setUnmatchedBraceIndicator()
      + +
      +
      + +

      ◆ setWrapVisualFlags()

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::setWrapVisualFlags (WrapVisualFlag endFlag,
      WrapVisualFlag startFlag = WrapFlagNone,
      int indent = 0 
      )
      +
      +

      Set the visual flags displayed when a line is wrapped. endFlag determines if and where the flag at the end of a line is displayed. startFlag determines if and where the flag at the start of a line is displayed. indent is the number of characters a wrapped line is indented by. By default no visual flags are displayed.

      + +
      +
      + +

      ◆ selectedText()

      + +
      +
      + + + + + + + +
      QString QsciScintilla::selectedText () const
      +
      +

      Returns the selected text or an empty string if there is no currently selected text.

      +
      See also
      hasSelectedText()
      + +
      +
      + +

      ◆ selectionToEol()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::selectionToEol () const
      +
      +

      Returns whether or not the selection is drawn up to the right hand border.

      +
      See also
      setSelectionToEol()
      + +
      +
      + +

      ◆ setHotspotBackgroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setHotspotBackgroundColor (const QColor & col)
      +
      +

      Sets the background colour of an active hotspot area to col.

      +
      See also
      resetHotspotBackgroundColor(), setHotspotForegroundColor()
      + +
      +
      + +

      ◆ setHotspotForegroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setHotspotForegroundColor (const QColor & col)
      +
      +

      Sets the foreground colour of an active hotspot area to col.

      +
      See also
      resetHotspotForegroundColor(), setHotspotBackgroundColor()
      + +
      +
      + +

      ◆ setHotspotUnderline()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setHotspotUnderline (bool enable)
      +
      +

      Enables or disables, according to enable, the underlining of an active hotspot area. The default is false.

      + +
      +
      + +

      ◆ setHotspotWrap()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setHotspotWrap (bool enable)
      +
      +

      Enables or disables, according to enable, the wrapping of a hotspot area to following lines. The default is true.

      + +
      +
      + +

      ◆ setSelectionToEol()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setSelectionToEol (bool filled)
      +
      +

      Sets whether or not the selection is drawn up to the right hand border. filled is set if the selection is drawn to the border.

      +
      See also
      selectionToEol()
      + +
      +
      + +

      ◆ setExtraAscent()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setExtraAscent (int extra)
      +
      +

      Sets the extra space added to the height of a line above the baseline of the text to extra.

      +
      See also
      extraAscent(), setExtraDescent()
      + +
      +
      + +

      ◆ setExtraDescent()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setExtraDescent (int extra)
      +
      +

      Sets the extra space added to the height of a line below the baseline of the text to extra.

      +
      See also
      extraDescent(), setExtraAscent()
      + +
      +
      + +

      ◆ setOverwriteMode()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setOverwriteMode (bool overwrite)
      +
      +

      Text entered by the user will overwrite existing text if overwrite is true.

      +
      See also
      overwriteMode()
      + +
      +
      + +

      ◆ setWhitespaceBackgroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setWhitespaceBackgroundColor (const QColor & col)
      +
      +

      Sets the background colour of visible whitespace to col. If col is an invalid color (the default) then the color specified by the current lexer is used.

      + +
      +
      + +

      ◆ setWhitespaceForegroundColor()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setWhitespaceForegroundColor (const QColor & col)
      +
      +

      Sets the foreground colour of visible whitespace to col. If col is an invalid color (the default) then the color specified by the current lexer is used.

      + +
      +
      + +

      ◆ setWhitespaceSize()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setWhitespaceSize (int size)
      +
      +

      Sets the size of the dots used to represent visible whitespace.

      +
      See also
      whitespaceSize()
      + +
      +
      + +

      ◆ setWrapIndentMode()

      + +
      +
      + + + + + + + + +
      void QsciScintilla::setWrapIndentMode (WrapIndentMode mode)
      +
      +

      Sets the line wrap indentation mode to mode. The default is WrapIndentFixed.

      +
      See also
      wrapIndentMode()
      + +
      +
      + +

      ◆ showUserList()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::showUserList (int id,
      const QStringList & list 
      )
      +
      +

      Displays a user defined list which can be interacted with like an auto-completion list. id is an identifier for the list which is passed as an argument to the userListActivated() signal and must be at least 1. list is the text with which the list is populated.

      +
      See also
      cancelList(), isListActive(), userListActivated()
      + +
      +
      + +

      ◆ tabDrawMode()

      + +
      +
      + + + + + + + +
      TabDrawMode QsciScintilla::tabDrawMode () const
      +
      +

      Returns the mode used to draw tab characters when whitespace is visible.

      +
      See also
      setTabDrawMode()
      + +
      +
      + +

      ◆ tabIndents()

      + +
      +
      + + + + + + + +
      bool QsciScintilla::tabIndents () const
      +
      +

      Returns true if the tab key indents a line instead of inserting a tab character. The default is true.

      +
      See also
      setTabIndents(), backspaceUnindents(), setBackspaceUnindents()
      + +
      +
      + +

      ◆ tabWidth()

      + +
      +
      + + + + + + + +
      int QsciScintilla::tabWidth () const
      +
      +

      Returns the tab width in characters. The default is 8.

      +
      See also
      setTabWidth()
      + +
      +
      + +

      ◆ text() [1/3]

      + +
      +
      + + + + + + + +
      QString QsciScintilla::text () const
      +
      +

      Returns the text of the current document.

      +
      See also
      setText()
      + +
      +
      + +

      ◆ text() [2/3]

      + +
      +
      + + + + + + + + +
      QString QsciScintilla::text (int line) const
      +
      +

      This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

      +

      Returns the text of line line.

      +
      See also
      setText()
      + +
      +
      + +

      ◆ text() [3/3]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      QString QsciScintilla::text (int start,
      int end 
      ) const
      +
      +

      This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

      +

      Returns the text between positions start and end. This is typically used by QsciLexerCustom::styleText().

      +
      See also
      bytes(), setText()
      + +
      +
      + +

      ◆ whitespaceSize()

      + +
      +
      + + + + + + + +
      int QsciScintilla::whitespaceSize () const
      +
      +

      Returns the size of the dots used to represent visible whitespace.

      +
      See also
      setWhitespaceSize()
      + +
      +
      + +

      ◆ whitespaceVisibility()

      + +
      +
      + + + + + + + +
      WhitespaceVisibility QsciScintilla::whitespaceVisibility () const
      +
      +

      Returns the visibility of whitespace.

      +
      See also
      setWhitespaceVisibility()
      + +
      +
      + +

      ◆ wordAtLineIndex()

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      QString QsciScintilla::wordAtLineIndex (int line,
      int index 
      ) const
      +
      +

      Returns the word at the line line number and index character index.

      + +
      +
      + +

      ◆ wordCharacters()

      + +
      +
      + + + + + + + +
      const char* QsciScintilla::wordCharacters () const
      +
      +

      Returns the set of valid word character as defined by the current language lexer. If there is no current lexer then the set contains an an underscore, numbers and all upper and lower case alphabetic characters.

      +
      See also
      isWordCharacter()
      + +
      +
      + +

      ◆ wrapMode()

      + +
      +
      + + + + + + + +
      WrapMode QsciScintilla::wrapMode () const
      +
      +

      Returns the line wrap mode.

      +
      See also
      setWrapMode()
      + +
      +
      + +

      ◆ wrapIndentMode()

      + +
      +
      + + + + + + + +
      WrapIndentMode QsciScintilla::wrapIndentMode () const
      +
      +

      Returns the line wrap indentation mode.

      +
      See also
      setWrapIndentMode()
      + +
      +
      + +

      ◆ write()

      + +
      +
      + + + + + + + + +
      bool QsciScintilla::write (QIODevice * io) const
      +
      +

      Writes the current document to the io device and returns true if there was no error.

      +
      See also
      read()
      + +
      +
      + +

      ◆ append

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::append (const QString & text)
      +
      +virtualslot
      +
      +

      Appends the text text to the end of the text edit. Note that the undo/redo history is cleared by this function.

      + +
      +
      + +

      ◆ autoCompleteFromAll

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::autoCompleteFromAll ()
      +
      +virtualslot
      +
      +

      Display an auto-completion list based on any installed APIs, the current contents of the document and the characters immediately to the left of the cursor.

      +
      See also
      autoCompleteFromAPIs(), autoCompleteFromDocument()
      + +
      +
      + +

      ◆ autoCompleteFromAPIs

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::autoCompleteFromAPIs ()
      +
      +virtualslot
      +
      +

      Display an auto-completion list based on any installed APIs and the characters immediately to the left of the cursor.

      +
      See also
      autoCompleteFromAll(), autoCompleteFromDocument(), setAutoCompletionAPIs()
      + +
      +
      + +

      ◆ autoCompleteFromDocument

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::autoCompleteFromDocument ()
      +
      +virtualslot
      +
      +

      Display an auto-completion list based on the current contents of the document and the characters immediately to the left of the cursor.

      +
      See also
      autoCompleteFromAll(), autoCompleteFromAPIs()
      + +
      +
      + +

      ◆ callTip

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::callTip ()
      +
      +virtualslot
      +
      +

      Display a call tip based on the the characters immediately to the left of the cursor.

      + +
      +
      + +

      ◆ copy

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::copy ()
      +
      +virtualslot
      +
      +

      Copies any selected text to the clipboard.

      +
      See also
      copyAvailable(), cut(), paste()
      + +
      +
      + +

      ◆ cut

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::cut ()
      +
      +virtualslot
      +
      +

      Copies any selected text to the clipboard and then deletes the text.

      +
      See also
      copy(), paste()
      + +
      +
      + +

      ◆ foldAll

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::foldAll (bool children = false)
      +
      +virtualslot
      +
      +

      If any lines are currently folded then they are all unfolded. Otherwise all lines are folded. This has the same effect as clicking in the fold margin with the shift and control keys pressed. If children is not set (the default) then only the top level fold points are affected, otherwise the state of all fold points are changed.

      + +
      +
      + +

      ◆ foldLine

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::foldLine (int line)
      +
      +virtualslot
      +
      +

      If the line line is folded then it is unfolded. Otherwise it is folded. This has the same effect as clicking in the fold margin.

      + +
      +
      + +

      ◆ indent

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::indent (int line)
      +
      +virtualslot
      +
      +

      Increases the indentation of line line by an indentation width.

      +
      See also
      unindent()
      + +
      +
      + +

      ◆ insertAt

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::insertAt (const QString & text,
      int line,
      int index 
      )
      +
      +virtualslot
      +
      +

      Insert the text text in the line line at the position index.

      + +
      +
      + +

      ◆ moveToMatchingBrace

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::moveToMatchingBrace ()
      +
      +virtualslot
      +
      +

      If the cursor is either side of a brace character then move it to the position of the corresponding brace.

      + +
      +
      + +

      ◆ paste

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::paste ()
      +
      +virtualslot
      +
      +

      Pastes any text from the clipboard into the text edit at the current cursor position.

      +
      See also
      copy(), cut()
      + +
      +
      + +

      ◆ redo

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::redo ()
      +
      +virtualslot
      +
      +

      Redo the last change or sequence of changes.

      +
      See also
      isRedoAvailable()
      + +
      +
      + +

      ◆ removeSelectedText

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::removeSelectedText ()
      +
      +virtualslot
      +
      +

      Removes any selected text.

      +
      See also
      replaceSelectedText()
      + +
      +
      + +

      ◆ replaceSelectedText

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::replaceSelectedText (const QString & text)
      +
      +virtualslot
      +
      +

      Replaces any selected text with text.

      +
      See also
      removeSelectedText()
      + +
      +
      + +

      ◆ resetSelectionBackgroundColor

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::resetSelectionBackgroundColor ()
      +
      +virtualslot
      +
      +

      Resets the background colour of selected text to the default.

      +
      See also
      setSelectionBackgroundColor(), resetSelectionForegroundColor()
      + +
      +
      + +

      ◆ resetSelectionForegroundColor

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::resetSelectionForegroundColor ()
      +
      +virtualslot
      +
      +

      Resets the foreground colour of selected text to the default.

      +
      See also
      setSelectionForegroundColor(), resetSelectionBackgroundColor()
      + +
      +
      + +

      ◆ selectAll

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::selectAll (bool select = true)
      +
      +virtualslot
      +
      +

      If select is true (the default) then all the text is selected. If select is false then any currently selected text is deselected.

      + +
      +
      + +

      ◆ selectToMatchingBrace

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::selectToMatchingBrace ()
      +
      +virtualslot
      +
      +

      If the cursor is either side of a brace character then move it to the position of the corresponding brace and select the text between the braces.

      + +
      +
      + +

      ◆ setAutoCompletionCaseSensitivity

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setAutoCompletionCaseSensitivity (bool cs)
      +
      +virtualslot
      +
      +

      If cs is true then auto-completion lists are case sensitive. The default is true. Note that setting a lexer may change the case sensitivity.

      +
      See also
      autoCompletionCaseSensitivity()
      + +
      +
      + +

      ◆ setAutoCompletionReplaceWord

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setAutoCompletionReplaceWord (bool replace)
      +
      +virtualslot
      +
      +

      If replace is true then when an item from an auto-completion list is selected, the rest of the word to the right of the current cursor is removed. The default is false.

      +
      See also
      autoCompletionReplaceWord()
      + +
      +
      + +

      ◆ setAutoCompletionShowSingle

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setAutoCompletionShowSingle (bool single)
      +
      +virtualslot
      +
      +

      If single is true then when there is only a single entry in an auto-completion list it is automatically used and the list is not displayed. This only has an effect when auto-completion is explicitly requested (using autoCompleteFromAPIs() and autoCompleteFromDocument()) and has no effect when auto-completion is triggered as the user types. The default is false. Note that this is deprecated and setAutoCompletionUseSingle() should be used instead.

      +
      See also
      autoCompletionShowSingle()
      + +
      +
      + +

      ◆ setAutoCompletionSource

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setAutoCompletionSource (AutoCompletionSource source)
      +
      +virtualslot
      +
      +

      Sets the source for the auto-completion list when it is being displayed automatically as the user types to source. The default is AcsNone, ie. it is disabled.

      +
      See also
      autoCompletionSource()
      + +
      +
      + +

      ◆ setAutoCompletionThreshold

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setAutoCompletionThreshold (int thresh)
      +
      +virtualslot
      +
      +

      Sets the threshold for the automatic display of the auto-completion list as the user types to thresh. The threshold is the number of characters that the user must type before the list is displayed. If the threshold is less than or equal to 0 then the list is disabled. The default is -1.

      +
      See also
      autoCompletionThreshold(), setAutoCompletionWordSeparators()
      + +
      +
      + +

      ◆ setAutoCompletionUseSingle

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setAutoCompletionUseSingle (AutoCompletionUseSingle single)
      +
      +virtualslot
      +
      +

      Sets the behavior of the auto-completion list when it has a single entry. The default is AcusNever.

      +
      See also
      autoCompletionUseSingle()
      + +
      +
      + +

      ◆ setAutoIndent

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setAutoIndent (bool autoindent)
      +
      +virtualslot
      +
      +

      If autoindent is true then auto-indentation is enabled. The default is false.

      +
      See also
      autoIndent()
      + +
      +
      + +

      ◆ setBraceMatching

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setBraceMatching (BraceMatch bm)
      +
      +virtualslot
      +
      +

      Sets the brace matching mode to bm. The default is NoBraceMatching.

      +
      See also
      braceMatching()
      + +
      +
      + +

      ◆ setBackspaceUnindents

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setBackspaceUnindents (bool unindent)
      +
      +virtualslot
      +
      +

      If deindent is true then the backspace key will unindent a line rather then delete a character.

      +
      See also
      backspaceUnindents(), tabIndents(), setTabIndents()
      + +
      +
      + +

      ◆ setCaretLineBackgroundColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setCaretLineBackgroundColor (const QColor & col)
      +
      +virtualslot
      +
      +

      Sets the background colour, including the alpha component, of the line containing the caret to col.

      +
      See also
      setCaretLineVisible()
      + +
      +
      + +

      ◆ setCaretLineFrameWidth

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setCaretLineFrameWidth (int width)
      +
      +virtualslot
      +
      +

      Sets the width of the frame of the line containing the caret to width.

      + +
      +
      + +

      ◆ setCaretLineVisible

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setCaretLineVisible (bool enable)
      +
      +virtualslot
      +
      +

      Enables or disables, according to enable, the background color of the line containing the caret.

      +
      See also
      setCaretLineBackgroundColor()
      + +
      +
      + +

      ◆ setCaretWidth

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setCaretWidth (int width)
      +
      +virtualslot
      +
      +

      Sets the width of the caret to width pixels. A width of 0 makes the caret invisible.

      + +
      +
      + +

      ◆ setColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setColor (const QColor & c)
      +
      +virtualslot
      +
      +

      The widget's text (ie. foreground) colour is set to c. This has no effect if a language lexer has been set.

      +
      See also
      color()
      + +
      +
      + +

      ◆ setCursorPosition

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setCursorPosition (int line,
      int index 
      )
      +
      +virtualslot
      +
      +

      Sets the cursor to the line line at the position index.

      +
      See also
      getCursorPosition()
      + +
      +
      + +

      ◆ setEolMode

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setEolMode (EolMode mode)
      +
      +virtualslot
      +
      +

      Sets the end-of-line mode to mode. The default is the platform's natural mode.

      +
      See also
      eolMode()
      + +
      +
      + +

      ◆ setEolVisibility

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setEolVisibility (bool visible)
      +
      +virtualslot
      +
      +

      If visible is true then end-of-lines are made visible. The default is that they are invisible.

      +
      See also
      eolVisibility()
      + +
      +
      + +

      ◆ setFolding

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setFolding (FoldStyle fold,
      int margin = 2 
      )
      +
      +virtualslot
      +
      +

      Sets the folding style for margin margin to fold. The default style is NoFoldStyle (ie. folding is disabled) and the default margin is 2.

      +
      See also
      folding()
      + +
      +
      + +

      ◆ setIndentation

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setIndentation (int line,
      int indentation 
      )
      +
      +virtualslot
      +
      +

      Sets the indentation of line line to indentation characters.

      +
      See also
      indentation()
      + +
      +
      + +

      ◆ setIndentationGuides

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setIndentationGuides (bool enable)
      +
      +virtualslot
      +
      +

      Enables or disables, according to enable, this display of indentation guides.

      +
      See also
      indentationGuides()
      + +
      +
      + +

      ◆ setIndentationGuidesBackgroundColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setIndentationGuidesBackgroundColor (const QColor & col)
      +
      +virtualslot
      +
      +

      Set the background colour of indentation guides to col.

      +
      See also
      setIndentationGuidesForegroundColor()
      + +
      +
      + +

      ◆ setIndentationGuidesForegroundColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setIndentationGuidesForegroundColor (const QColor & col)
      +
      +virtualslot
      +
      +

      Set the foreground colour of indentation guides to col.

      +
      See also
      setIndentationGuidesBackgroundColor()
      + +
      +
      + +

      ◆ setIndentationsUseTabs

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setIndentationsUseTabs (bool tabs)
      +
      +virtualslot
      +
      +

      If tabs is true then indentations are created using tabs and spaces, rather than just spaces.

      +
      See also
      indentationsUseTabs()
      + +
      +
      + +

      ◆ setIndentationWidth

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setIndentationWidth (int width)
      +
      +virtualslot
      +
      +

      Sets the indentation width to width characters. If width is 0 then the value returned by tabWidth() is used.

      +
      See also
      indentationWidth(), tabWidth()
      + +
      +
      + +

      ◆ setLexer

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setLexer (QsciLexerlexer = 0)
      +
      +virtualslot
      +
      +

      Sets the specific language lexer used to style text to lex. If lex is 0 then syntax styling is disabled.

      +
      See also
      lexer()
      + +
      +
      + +

      ◆ setMarginsBackgroundColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setMarginsBackgroundColor (const QColor & col)
      +
      +virtualslot
      +
      +

      Set the background colour of all margins to col. The default is a gray.

      +
      See also
      setMarginsForegroundColor()
      + +
      +
      + +

      ◆ setMarginsForegroundColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setMarginsForegroundColor (const QColor & col)
      +
      +virtualslot
      +
      +

      Set the foreground colour of all margins to col. The default is black.

      +
      See also
      setMarginsBackgroundColor()
      + +
      +
      + +

      ◆ setMarginLineNumbers

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setMarginLineNumbers (int margin,
      bool lnrs 
      )
      +
      +virtualslot
      +
      +

      Enables or disables, according to lnrs, the display of line numbers in margin margin.

      +
      See also
      marginLineNumbers(), setMarginType(), SCI_SETMARGINTYPEN
      + +
      +
      + +

      ◆ setMarginMarkerMask

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setMarginMarkerMask (int margin,
      int mask 
      )
      +
      +virtualslot
      +
      +

      Sets the marker mask of margin margin to mask. Only those markers whose bit is set in the mask are displayed in the margin.

      +
      See also
      marginMarkerMask(), QsciMarker, SCI_SETMARGINMASKN
      + +
      +
      + +

      ◆ setMarginSensitivity

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setMarginSensitivity (int margin,
      bool sens 
      )
      +
      +virtualslot
      +
      +

      Enables or disables, according to sens, the sensitivity of margin margin to mouse clicks. If the user clicks in a sensitive margin the marginClicked() signal is emitted.

      +
      See also
      marginSensitivity(), marginClicked(), SCI_SETMARGINSENSITIVEN
      + +
      +
      + +

      ◆ setMarginWidth [1/2]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setMarginWidth (int margin,
      int width 
      )
      +
      +virtualslot
      +
      +

      Sets the width of margin margin to width pixels. If the width of a margin is 0 then it is not displayed.

      +
      See also
      marginWidth(), SCI_SETMARGINWIDTHN
      + +
      +
      + +

      ◆ setMarginWidth [2/2]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setMarginWidth (int margin,
      const QString & s 
      )
      +
      +virtualslot
      +
      +

      Sets the width of margin margin so that it is wide enough to display s in the current margin font.

      +
      See also
      marginWidth(), SCI_SETMARGINWIDTHN
      + +
      +
      + +

      ◆ setModified

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setModified (bool m)
      +
      +virtualslot
      +
      +

      Sets the modified state of the text edit to m. Note that it is only possible to clear the modified state (where m is false). Attempts to set the modified state (where m is true) are ignored.

      +
      See also
      isModified(), modificationChanged()
      + +
      +
      + +

      ◆ setPaper

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setPaper (const QColor & c)
      +
      +virtualslot
      +
      +

      The widget's paper (ie. background) colour is set to c. This has no effect if a language lexer has been set.

      +
      See also
      paper()
      + +
      +
      + +

      ◆ setReadOnly

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setReadOnly (bool ro)
      +
      +virtualslot
      +
      +

      Sets the read-only state of the text edit to ro.

      +
      See also
      isReadOnly()
      + +
      +
      + +

      ◆ setSelection

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      virtual void QsciScintilla::setSelection (int lineFrom,
      int indexFrom,
      int lineTo,
      int indexTo 
      )
      +
      +virtualslot
      +
      +

      Sets the selection which starts at position indexFrom in line lineFrom and ends at position indexTo in line lineTo. The cursor is moved to position indexTo in lineTo.

      +
      See also
      getSelection()
      + +
      +
      + +

      ◆ setSelectionBackgroundColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setSelectionBackgroundColor (const QColor & col)
      +
      +virtualslot
      +
      +

      Sets the background colour, including the alpha component, of selected text to col.

      +
      See also
      resetSelectionBackgroundColor(), setSelectionForegroundColor()
      + +
      +
      + +

      ◆ setSelectionForegroundColor

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setSelectionForegroundColor (const QColor & col)
      +
      +virtualslot
      +
      +

      Sets the foreground colour of selected text to col.

      +
      See also
      resetSelectionForegroundColor(), setSelectionBackgroundColor()
      + +
      +
      + +

      ◆ setTabIndents

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setTabIndents (bool indent)
      +
      +virtualslot
      +
      +

      If indent is true then the tab key will indent a line rather than insert a tab character.

      +
      See also
      tabIndents(), backspaceUnindents(), setBackspaceUnindents()
      + +
      +
      + +

      ◆ setTabWidth

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setTabWidth (int width)
      +
      +virtualslot
      +
      +

      Sets the tab width to width characters.

      +
      See also
      tabWidth()
      + +
      +
      + +

      ◆ setText

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setText (const QString & text)
      +
      +virtualslot
      +
      +

      Replaces all of the current text with text. Note that the undo/redo history is cleared by this function.

      +
      See also
      text()
      + +
      +
      + +

      ◆ setUtf8

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setUtf8 (bool cp)
      +
      +virtualslot
      +
      +

      Sets the current text encoding. If cp is true then UTF8 is used, otherwise Latin1 is used.

      +
      See also
      isUtf8()
      + +
      +
      + +

      ◆ setWhitespaceVisibility

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setWhitespaceVisibility (WhitespaceVisibility mode)
      +
      +virtualslot
      +
      +

      Sets the visibility of whitespace to mode mode. The default is that whitespace is invisible.

      +
      See also
      whitespaceVisibility()
      + +
      +
      + +

      ◆ setWrapMode

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::setWrapMode (WrapMode mode)
      +
      +virtualslot
      +
      +

      Sets the line wrap mode to mode. The default is that lines are not wrapped.

      +
      See also
      wrapMode()
      + +
      +
      + +

      ◆ undo

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::undo ()
      +
      +virtualslot
      +
      +

      Undo the last change or sequence of changes.

      +

      Scintilla has multiple level undo and redo. It will continue to record undoable actions until memory runs out. Sequences of typing or deleting are compressed into single actions to make it easier to undo and redo at a sensible level of detail. Sequences of actions can be combined into actions that are undone as a unit. These sequences occur between calls to beginUndoAction() and endUndoAction(). These sequences can be nested and only the top level sequences are undone as units.

      +
      See also
      beginUndoAction(), endUndoAction(), isUndoAvailable()
      + +
      +
      + +

      ◆ unindent

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::unindent (int line)
      +
      +virtualslot
      +
      +

      Decreases the indentation of line line by an indentation width.

      +
      See also
      indent()
      + +
      +
      + +

      ◆ zoomIn [1/2]

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::zoomIn (int range)
      +
      +virtualslot
      +
      +

      Zooms in on the text by by making the base font size range points larger and recalculating all font sizes.

      +
      See also
      zoomOut(), zoomTo()
      + +
      +
      + +

      ◆ zoomIn [2/2]

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::zoomIn ()
      +
      +virtualslot
      +
      +

      This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

      +

      Zooms in on the text by by making the base font size one point larger and recalculating all font sizes.

      + +
      +
      + +

      ◆ zoomOut [1/2]

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::zoomOut (int range)
      +
      +virtualslot
      +
      +

      Zooms out on the text by by making the base font size range points smaller and recalculating all font sizes.

      +
      See also
      zoomIn(), zoomTo()
      + +
      +
      + +

      ◆ zoomOut [2/2]

      + +
      +
      + + + + + +
      + + + + + + + +
      virtual void QsciScintilla::zoomOut ()
      +
      +virtualslot
      +
      +

      This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

      +

      Zooms out on the text by by making the base font size one point larger and recalculating all font sizes.

      + +
      +
      + +

      ◆ zoomTo

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual void QsciScintilla::zoomTo (int size)
      +
      +virtualslot
      +
      +

      Zooms the text by making the base font size size points and recalculating all font sizes.

      +
      See also
      zoomIn(), zoomOut()
      + +
      +
      + +

      ◆ cursorPositionChanged

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::cursorPositionChanged (int line,
      int index 
      )
      +
      +signal
      +
      +

      This signal is emitted whenever the cursor position changes. line contains the line number and index contains the character index within the line.

      + +
      +
      + +

      ◆ copyAvailable

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintilla::copyAvailable (bool yes)
      +
      +signal
      +
      +

      This signal is emitted whenever text is selected or de-selected. yes is true if text has been selected and false if text has been deselected. If yes is true then copy() can be used to copy the selection to the clipboard. If yes is false then copy() does nothing.

      +
      See also
      copy(), selectionChanged()
      + +
      +
      + +

      ◆ indicatorClicked

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::indicatorClicked (int line,
      int index,
      Qt::KeyboardModifiers state 
      )
      +
      +signal
      +
      +

      This signal is emitted whenever the user clicks on an indicator. line is the number of the line where the user clicked. index is the character index within the line. state is the state of the modifier keys (Qt::ShiftModifier, Qt::ControlModifier, Qt::AltModifer and Qt::MetaModifier) when the user clicked.

      +
      See also
      indicatorReleased()
      + +
      +
      + +

      ◆ indicatorReleased

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::indicatorReleased (int line,
      int index,
      Qt::KeyboardModifiers state 
      )
      +
      +signal
      +
      +

      This signal is emitted whenever the user releases the mouse on an indicator. line is the number of the line where the user clicked. index is the character index within the line. state is the state of the modifier keys (Qt::ShiftModifier, Qt::ControlModifier, Qt::AltModifer and Qt::MetaModifier) when the user released the mouse.

      +
      See also
      indicatorClicked()
      + +
      +
      + +

      ◆ marginClicked

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::marginClicked (int margin,
      int line,
      Qt::KeyboardModifiers state 
      )
      +
      +signal
      +
      +

      This signal is emitted whenever the user clicks on a sensitive margin. margin is the margin. line is the number of the line where the user clicked. state is the state of the modifier keys (Qt::ShiftModifier, Qt::ControlModifier, Qt::AltModifer and Qt::MetaModifier) when the user clicked.

      +
      See also
      marginSensitivity(), setMarginSensitivity()
      + +
      +
      + +

      ◆ marginRightClicked

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::marginRightClicked (int margin,
      int line,
      Qt::KeyboardModifiers state 
      )
      +
      +signal
      +
      +

      This signal is emitted whenever the user right-clicks on a sensitive margin. margin is the margin. line is the number of the line where the user clicked. state is the state of the modifier keys (Qt::ShiftModifier, Qt::ControlModifier, Qt::AltModifer and Qt::MetaModifier) when the user clicked.

      +
      See also
      marginSensitivity(), setMarginSensitivity()
      + +
      +
      + +

      ◆ modificationAttempted

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintilla::modificationAttempted ()
      +
      +signal
      +
      +

      This signal is emitted whenever the user attempts to modify read-only text.

      +
      See also
      isReadOnly(), setReadOnly()
      + +
      +
      + +

      ◆ modificationChanged

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintilla::modificationChanged (bool m)
      +
      +signal
      +
      +

      This signal is emitted whenever the modification state of the text changes. m is true if the text has been modified.

      +
      See also
      isModified(), setModified()
      + +
      +
      + +

      ◆ selectionChanged

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintilla::selectionChanged ()
      +
      +signal
      +
      +

      This signal is emitted whenever the selection changes.

      +
      See also
      copyAvailable()
      + +
      +
      + +

      ◆ userListActivated

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintilla::userListActivated (int id,
      const QString & string 
      )
      +
      +signal
      +
      +

      This signal is emitted when an item in a user defined list is activated (selected). id is the list identifier. string is the text of the item.

      +
      See also
      showUserList()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciScintillaBase-members.html b/third_party/qscintilla/doc/html/classQsciScintillaBase-members.html new file mode 100644 index 0000000..f82203c --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciScintillaBase-members.html @@ -0,0 +1,1303 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciScintillaBase Member List
      +
      +
      + +

      This is the complete list of members for QsciScintillaBase, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ANNOTATION_BOXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      ANNOTATION_HIDDEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      ANNOTATION_INDENTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      ANNOTATION_STANDARD enum value (defined in QsciScintillaBase)QsciScintillaBase
      bytesAsText(const char *bytes, int size) const (defined in QsciScintillaBase)QsciScintillaBaseprotected
      canInsertFromMimeData(const QMimeData *source) constQsciScintillaBaseprotectedvirtual
      CARET_EVEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARET_JUMPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARET_SLOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARET_STRICT enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARETSTYLE_BLOCK enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARETSTYLE_INVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      CARETSTYLE_LINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      changeEvent(QEvent *e)QsciScintillaBaseprotectedvirtual
      commandKey(int qt_key, int &modifiers) (defined in QsciScintillaBase)QsciScintillaBasestatic
      contextMenuEvent(QContextMenuEvent *e)QsciScintillaBaseprotectedvirtual
      contextMenuNeeded(int x, int y) const (defined in QsciScintillaBase)QsciScintillaBaseprotected
      dragEnterEvent(QDragEnterEvent *e)QsciScintillaBaseprotectedvirtual
      dragLeaveEvent(QDragLeaveEvent *e)QsciScintillaBaseprotectedvirtual
      dragMoveEvent(QDragMoveEvent *e)QsciScintillaBaseprotectedvirtual
      dropEvent(QDropEvent *e)QsciScintillaBaseprotectedvirtual
      EDGE_BACKGROUND enum value (defined in QsciScintillaBase)QsciScintillaBase
      EDGE_LINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      EDGE_MULTILINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      EDGE_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      focusInEvent(QFocusEvent *e)QsciScintillaBaseprotectedvirtual
      focusNextPrevChild(bool next)QsciScintillaBaseprotectedvirtual
      focusOutEvent(QFocusEvent *e)QsciScintillaBaseprotectedvirtual
      fromMimeData(const QMimeData *source, bool &rectangular) constQsciScintillaBaseprotectedvirtual
      INDIC0_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC1_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC2_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_BOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_COMPOSITIONTHICK enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_COMPOSITIONTHIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_CONTAINER enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DASH enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DIAGONAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DOTBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_DOTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_FULLBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_GRADIENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_GRADIENTCENTRE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_HIDDEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_IME enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_IME_MAX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_MAX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_PLAIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_POINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_POINTCHARACTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_ROUNDBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_SQUIGGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_SQUIGGLELOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_SQUIGGLEPIXMAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_STRAIGHTBOX enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_STRIKE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_TEXTFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDIC_TT enum value (defined in QsciScintillaBase)QsciScintillaBase
      INDICS_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      inputMethodEvent(QInputMethodEvent *event)QsciScintillaBaseprotectedvirtual
      inputMethodQuery(Qt::InputMethodQuery query) const (defined in QsciScintillaBase)QsciScintillaBaseprotectedvirtual
      keyPressEvent(QKeyEvent *e)QsciScintillaBaseprotectedvirtual
      mouseDoubleClickEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      mouseMoveEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      mousePressEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      mouseReleaseEvent(QMouseEvent *e)QsciScintillaBaseprotectedvirtual
      paintEvent(QPaintEvent *e)QsciScintillaBaseprotectedvirtual
      pool()QsciScintillaBasestatic
      QsciScintillaBase(QWidget *parent=0)QsciScintillaBaseexplicit
      QSCN_SELCHANGED(bool yes)QsciScintillaBasesignal
      replaceHorizontalScrollBar(QScrollBar *scrollBar)QsciScintillaBase
      replaceVerticalScrollBar(QScrollBar *scrollBar)QsciScintillaBase
      resizeEvent(QResizeEvent *e)QsciScintillaBaseprotectedvirtual
      SC_AC_COMMAND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_DOUBLECLICK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_FILLUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_NEWLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AC_TAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ALPHA_NOALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ALPHA_OPAQUE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ALPHA_TRANSPARENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AUTOMATICFOLD_CHANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AUTOMATICFOLD_CLICK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_AUTOMATICFOLD_SHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_CARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_DOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CACHE_PAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CARETSTICKY_OFF enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CARETSTICKY_ON enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CARETSTICKY_WHITESPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_CAMEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_LOWER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_MIXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASE_UPPER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_8859_15 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_ANSI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_ARABIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_BALTIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_CHINESEBIG5 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_CYRILLIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_EASTEUROPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_GB2312 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_GREEK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_HANGUL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_HEBREW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_JOHAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_MAC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_OEM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_OEM866 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_RUSSIAN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_SHIFTJIS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_SYMBOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_THAI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_TURKISH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CHARSET_VIETNAMESE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CP_DBCS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CP_UTF8 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORARROW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORNORMAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORREVERSEARROW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_CURSORWAIT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_DOCUMENTOPTION_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_DOCUMENTOPTION_STYLES_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_DOCUMENTOPTION_TEXT_LARGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_ANTIALIASED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_LCD_OPTIMIZED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_MASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EFF_QUALITY_NON_ANTIALIASED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EOL_CR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EOL_CRLF enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_EOL_LF enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDACTION_CONTRACT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDACTION_EXPAND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDACTION_TOGGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDDISPLAYTEXT_BOXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDDISPLAYTEXT_HIDDEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDDISPLAYTEXT_STANDARD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LEVELNUMBERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEAFTER_CONTRACTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEAFTER_EXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEBEFORE_CONTRACTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINEBEFORE_EXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDFLAG_LINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELBASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELHEADERFLAG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELNUMBERMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FOLDLEVELWHITEFLAG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_FONT_SIZE_MULTIPLIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_AFTERVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_ALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IDLESTYLING_TOVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IME_INLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IME_WINDOWED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_INDICFLAG_VALUEBEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_INDICVALUEBIT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_INDICVALUEMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_IV_LOOKBOTH enum valueQsciScintillaBase
      SC_IV_LOOKFORWARD enum valueQsciScintillaBase
      SC_IV_NONE enum valueQsciScintillaBase
      SC_IV_REAL enum valueQsciScintillaBase
      SC_LASTSTEPINUNDOREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINE_END_TYPE_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINE_END_TYPE_UNICODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINECHARACTERINDEX_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINECHARACTERINDEX_UTF16 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_LINECHARACTERINDEX_UTF32 enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARGIN_BACK enum valueQsciScintillaBase
      SC_MARGIN_COLOUR enum valueQsciScintillaBase
      SC_MARGIN_FORE enum valueQsciScintillaBase
      SC_MARGIN_NUMBER enum valueQsciScintillaBase
      SC_MARGIN_RTEXT enum valueQsciScintillaBase
      SC_MARGIN_SYMBOL enum valueQsciScintillaBase
      SC_MARGIN_TEXT enum valueQsciScintillaBase
      SC_MARGINOPTION_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARGINOPTION_SUBLINESELECT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARK_ARROW enum valueQsciScintillaBase
      SC_MARK_ARROWDOWN enum valueQsciScintillaBase
      SC_MARK_ARROWS enum valueQsciScintillaBase
      SC_MARK_AVAILABLE enum valueQsciScintillaBase
      SC_MARK_BACKGROUND enum valueQsciScintillaBase
      SC_MARK_BOOKMARK enum valueQsciScintillaBase
      SC_MARK_BOXMINUS enum valueQsciScintillaBase
      SC_MARK_BOXMINUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_BOXPLUS enum valueQsciScintillaBase
      SC_MARK_BOXPLUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_CHARACTER enum valueQsciScintillaBase
      SC_MARK_CIRCLE enum valueQsciScintillaBase
      SC_MARK_CIRCLEMINUS enum valueQsciScintillaBase
      SC_MARK_CIRCLEMINUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_CIRCLEPLUS enum valueQsciScintillaBase
      SC_MARK_CIRCLEPLUSCONNECTED enum valueQsciScintillaBase
      SC_MARK_DOTDOTDOT enum valueQsciScintillaBase
      SC_MARK_EMPTY enum valueQsciScintillaBase
      SC_MARK_FULLRECT enum valueQsciScintillaBase
      SC_MARK_LCORNER enum valueQsciScintillaBase
      SC_MARK_LCORNERCURVE enum valueQsciScintillaBase
      SC_MARK_LEFTRECT enum valueQsciScintillaBase
      SC_MARK_MINUS enum valueQsciScintillaBase
      SC_MARK_PIXMAP enum valueQsciScintillaBase
      SC_MARK_PLUS enum valueQsciScintillaBase
      SC_MARK_RGBAIMAGE enum valueQsciScintillaBase
      SC_MARK_ROUNDRECT enum valueQsciScintillaBase
      SC_MARK_SHORTARROW enum valueQsciScintillaBase
      SC_MARK_SMALLRECT enum valueQsciScintillaBase
      SC_MARK_TCORNER enum valueQsciScintillaBase
      SC_MARK_TCORNERCURVE enum valueQsciScintillaBase
      SC_MARK_UNDERLINE enum valueQsciScintillaBase
      SC_MARK_VLINE enum valueQsciScintillaBase
      SC_MARKNUM_FOLDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDEREND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDERMIDTAIL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDEROPEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDEROPENMID enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDERSUB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MARKNUM_FOLDERTAIL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MASK_FOLDERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_BEFOREDELETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_BEFOREINSERT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEANNOTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEINDICATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGELINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEMARGIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGEMARKER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGESTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CHANGETABSTOPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_CONTAINER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_DELETETEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_INSERTCHECK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_INSERTTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MOD_LEXERSTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MODEVENTMASKALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIAUTOC_EACH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIAUTOC_ONCE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTILINEUNDOREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIPASTE_EACH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTIPASTE_ONCE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_MULTISTEPUNDOREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ORDER_CUSTOM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ORDER_PERFORMSORT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_ORDER_PRESORTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PERFORMED_REDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PERFORMED_UNDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PERFORMED_USER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PHASES_MULTIPLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PHASES_ONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PHASES_TWO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_POPUP_ALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_POPUP_NEVER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_POPUP_TEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_BLACKONWHITE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_COLOURONWHITE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_COLOURONWHITEDEFAULTBG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_INVERTLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_NORMAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_PRINT_SCREENCOLOURS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_LINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_RECTANGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_STREAM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_SEL_THIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STARTACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_BADALLOC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_FAILURE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_OK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_WARN_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_STATUS_WARNREGEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DIRECTWRITE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DIRECTWRITEDC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TECHNOLOGY_DIRECTWRITERETAIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TIME_FOREVER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TYPE_BOOLEAN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TYPE_INTEGER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_TYPE_STRING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_CONTENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_H_SCROLL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_SELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_UPDATE_V_SCROLL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WEIGHT_BOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WEIGHT_NORMAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WEIGHT_SEMIBOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_CHAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_WHITESPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAP_WORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_DEEPINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_FIXED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_INDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPINDENT_SAME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_END enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_MARGIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAG_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAGLOC_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAGLOC_END_BY_TEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SC_WRAPVISUALFLAGLOC_START_BY_TEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCEN_CHANGE()QsciScintillaBasesignal
      SCFIND_CXX11REGEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_MATCHCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_POSIX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_REGEXP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_WHOLEWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCFIND_WORDSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDREFDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDSTYLEDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDTABSTOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ADDTEXT enum valueQsciScintillaBase
      SCI_ADDUNDOACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATEEXTENDEDSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATELINECHARACTERINDEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ALLOCATESUBSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONCLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETLINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONGETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ANNOTATIONSETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_APPENDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ASSIGNCMDKEY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCACTIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCCANCEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCCOMPLETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETAUTOHIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCANCELATSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCHOOSESINGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCURRENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETCURRENTTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETDROPRESTOFWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETIGNORECASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETMAXHEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETMAXWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETMULTI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETORDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETSEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCGETTYPESEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCPOSSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSELECT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETAUTOHIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETCANCELATSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETCHOOSESINGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETDROPRESTOFWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETFILLUPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETIGNORECASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETMAXHEIGHT enum valueQsciScintillaBase
      SCI_AUTOCSETMAXWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETMULTI enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETORDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETSEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSETTYPESEPARATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_AUTOCSTOPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BACKTAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BEGINUNDOACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEBADLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEBADLIGHTINDICATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEHIGHLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEHIGHLIGHTINDICATOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_BRACEMATCH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPACTIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPCANCEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPPOSSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETFOREHLT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETHLT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSETPOSSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CALLTIPUSESTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANCEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANPASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANREDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CANUNDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHANGEINSERTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHANGELEXERSTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARLEFTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARLEFTRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARPOSITIONFROMPOINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARPOSITIONFROMPOINTCLOSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARRIGHTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHARRIGHTRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CHOOSECARETX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARALLCMDKEYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARCMDKEY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARDOCUMENTSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARREGISTEREDIMAGES enum valueQsciScintillaBase
      SCI_CLEARREPRESENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARSELECTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CLEARTABSTOPS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COLOURISE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CONTRACTEDFOLDNEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CONVERTEOLS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COPY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COPYALLOWLINE enum valueQsciScintillaBase
      SCI_COPYRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COPYTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COUNTCHARACTERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_COUNTCODEUNITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CREATEDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CREATELOADER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_CUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELETEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELETEBACKNOTLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELETERANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELLINELEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELLINERIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELWORDLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELWORDRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DELWORDRIGHTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DESCRIBEKEYWORDSETS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DESCRIBEPROPERTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DESCRIPTIONOFSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DISTANCETOSECONDARYSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCLINEFROMVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DOCUMENTSTARTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_DROPSELECTIONN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_EDITTOGGLEOVERTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_EMPTYUNDOBUFFER enum valueQsciScintillaBase
      SCI_ENDUNDOACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ENSUREVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ENSUREVISIBLEENFORCEPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_EXPANDCHILDREN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDCOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDINDICATORFLASH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDINDICATORHIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDINDICATORSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FINDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDCHILDREN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDDISPLAYTEXTSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FOLDLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FORMATRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FORMFEED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_FREESUBSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETACCESSIBILITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALCARETSBLINK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALCARETSVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETADDITIONALSELECTIONTYPING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETALLLINESVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETANCHOR enum valueQsciScintillaBase
      SCI_GETAUTOMATICFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETBACKSPACEUNINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETBUFFEREDDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEBACKALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEFRAME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETLINEVISIBLEALWAYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETPERIOD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETSTICKY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCARETWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCHARACTERPOINTER enum valueQsciScintillaBase
      SCI_GETCHARAT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCODEPAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCOMMANDEVENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCONTROLCHARSYMBOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCURLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETCURRENTPOS enum valueQsciScintillaBase
      SCI_GETCURSOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDIRECTFUNCTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDIRECTPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDOCPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETDOCUMENTOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEDGECOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEDGECOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEDGEMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETENDATLASTLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETENDSTYLED enum valueQsciScintillaBase
      SCI_GETEOLMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEXTRAASCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETEXTRADESCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFIRSTVISIBLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOCUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOLDEXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOLDLEVEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFOLDPARENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETFONTQUALITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETGAPPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHIGHLIGHTGUIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTACTIVEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTACTIVEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTACTIVEUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHOTSPOTSINGLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETHSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETIDENTIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETIDLESTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETIMEINTERACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDENTATIONGUIDES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDICATORCURRENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETINDICATORVALUE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLASTCHILD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLAYOUTCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLENGTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLEXER enum valueQsciScintillaBase
      SCI_GETLEXERLANGUAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINECHARACTERINDEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINECOUNT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDTYPESACTIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDTYPESALLOWED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEENDTYPESSUPPORTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEINDENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEINDENTPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINESELENDPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINESELSTARTPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETLINEVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMAINSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINBACKN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINCURSORN enum valueQsciScintillaBase
      SCI_GETMARGINLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINMASKN enum valueQsciScintillaBase
      SCI_GETMARGINOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMARGINSENSITIVEN enum valueQsciScintillaBase
      SCI_GETMARGINTYPEN enum valueQsciScintillaBase
      SCI_GETMARGINWIDTHN enum valueQsciScintillaBase
      SCI_GETMAXLINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMODEVENTMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMODIFY enum valueQsciScintillaBase
      SCI_GETMOUSEDOWNCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOUSEDWELLTIME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOUSESELECTIONRECTANGULARSWITCH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOUSEWHEELCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMOVEEXTENDSSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMULTIPASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETMULTIPLESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETNAMEDSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETNEXTTABSTOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETOVERTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPASTECONVERTENDINGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPHASESDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPOSITIONCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRIMARYSTYLEFROMSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRINTCOLOURMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRINTMAGNIFICATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPRINTWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPROPERTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPROPERTYEXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPROPERTYINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETPUNCTUATIONCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRANGEPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETREADONLY enum valueQsciScintillaBase
      SCI_GETRECTANGULARSELECTIONANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETRECTANGULARSELECTIONMODIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETREPRESENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSCROLLWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSCROLLWIDTHTRACKING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSEARCHFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONEMPTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONNSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELECTIONSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSELTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTATUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEAT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEBITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEBITSNEEDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEDTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSTYLEFROMSUBSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSUBSTYLEBASES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSUBSTYLESLENGTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETSUBSTYLESSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTABDRAWMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTABINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTABWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTAG enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTARGETEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTARGETSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTARGETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTECHNOLOGY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTEXT enum valueQsciScintillaBase
      SCI_GETTEXTLENGTH enum valueQsciScintillaBase
      SCI_GETTEXTRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETTWOPHASEDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETUNDOCOLLECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETUSETABS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVIEWEOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVIEWWS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVIRTUALSPACEOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETVSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWHITESPACECHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWHITESPACESIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWORDCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPINDENTMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPSTARTINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPVISUALFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETWRAPVISUALFLAGSLOCATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETXOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GETZOOM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GOTOLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_GOTOPOS enum valueQsciScintillaBase
      SCI_GRABFOCUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HIDELINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HIDESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEDISPLAY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEDISPLAYEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMERECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEWRAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_HOMEWRAPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDEXPOSITIONFROMLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORALLONFOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORCLEARRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATOREND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORFILLRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICATORVALUEAT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETHOVERFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETHOVERSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETOUTLINEALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICGETUNDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETHOVERFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETHOVERSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETOUTLINEALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INDICSETUNDER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_INSERTTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ISRANGEWORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LEXER_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINECOPY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINECUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDELETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDOWNRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEDUPLICATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDDISPLAY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDDISPLAYEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDWRAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEENDWRAPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEFROMINDEXPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEFROMPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINELENGTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEREVERSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESCROLL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESCROLLDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESCROLLUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESJOIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESONSCREEN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINESSPLIT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINETRANSPOSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LINEUPRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LOADLEXERLIBRARY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_LOWERCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINGETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETSTYLEOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINSETTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARGINTEXTCLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERADD enum valueQsciScintillaBase
      SCI_MARKERADDSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERDEFINE enum valueQsciScintillaBase
      SCI_MARKERDEFINEPIXMAP enum valueQsciScintillaBase
      SCI_MARKERDEFINERGBAIMAGE enum valueQsciScintillaBase
      SCI_MARKERDELETE enum valueQsciScintillaBase
      SCI_MARKERDELETEALL enum valueQsciScintillaBase
      SCI_MARKERDELETEHANDLE enum valueQsciScintillaBase
      SCI_MARKERENABLEHIGHLIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERGET enum valueQsciScintillaBase
      SCI_MARKERLINEFROMHANDLE enum valueQsciScintillaBase
      SCI_MARKERNEXT enum valueQsciScintillaBase
      SCI_MARKERPREVIOUS enum valueQsciScintillaBase
      SCI_MARKERSETALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERSETBACK enum valueQsciScintillaBase
      SCI_MARKERSETBACKSELECTED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MARKERSETFORE enum valueQsciScintillaBase
      SCI_MARKERSYMBOLDEFINED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MOVECARETINSIDEVIEW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MOVESELECTEDLINESDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MOVESELECTEDLINESUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIEDGEADDLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIEDGECLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIPLESELECTADDEACH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_MULTIPLESELECTADDNEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_NAMEOFSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_NEWLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_NULL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_OPTIONAL_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEDOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEDOWNRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PAGEUPRECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARADOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARADOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARAUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PARAUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POINTXFROMPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POINTYFROMPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONAFTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONBEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONFROMLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONFROMPOINT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONFROMPOINTCLOSE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONRELATIVE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_POSITIONRELATIVECODEUNITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PRIVATELEXERCALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PROPERTYNAMES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_PROPERTYTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REGISTERIMAGE enum valueQsciScintillaBase
      SCI_REGISTERRGBAIMAGE enum valueQsciScintillaBase
      SCI_RELEASEALLEXTENDEDSTYLES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RELEASEDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RELEASELINECHARACTERINDEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REPLACESEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REPLACETARGET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_REPLACETARGETRE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RGBAIMAGESETHEIGHT enum valueQsciScintillaBase
      SCI_RGBAIMAGESETSCALE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_RGBAIMAGESETWIDTH enum valueQsciScintillaBase
      SCI_ROTATESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLTOEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SCROLLTOSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHINTARGET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHNEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SEARCHPREV enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SELECTALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SELECTIONDUPLICATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SELECTIONISRECTANGLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETACCESSIBILITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALCARETSBLINK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALCARETSVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELECTIONTYPING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETADDITIONALSELFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETANCHOR enum valueQsciScintillaBase
      SCI_SETAUTOMATICFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETBACKSPACEUNINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETBUFFEREDDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEBACKALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEFRAME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETLINEVISIBLEALWAYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETPERIOD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETSTICKY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCARETWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCHARSDEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCODEPAGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCOMMANDEVENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCONTROLCHARSYMBOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETCURRENTPOS enum valueQsciScintillaBase
      SCI_SETCURSOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETDOCPOINTER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEDGECOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEDGECOLUMN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEDGEMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEMPTYSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETENDATLASTLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEOLMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEXTRAASCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETEXTRADESCENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFIRSTVISIBLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOCUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDEXPANDED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDLEVEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDMARGINCOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFOLDMARGINHICOLOUR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETFONTQUALITY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHIGHLIGHTGUIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTACTIVEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTACTIVEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTACTIVEUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHOTSPOTSINGLELINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETHSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIDENTIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIDENTIFIERS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIDLESTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETIMEINTERACTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDENTATIONGUIDES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDICATORCURRENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETINDICATORVALUE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETKEYWORDS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLAYOUTCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLEXER enum valueQsciScintillaBase
      SCI_SETLEXERLANGUAGE enum valueQsciScintillaBase
      SCI_SETLINEENDTYPESALLOWED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLINEINDENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETLINESTATE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMAINSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINBACKN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINCURSORN enum valueQsciScintillaBase
      SCI_SETMARGINLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINMASKN enum valueQsciScintillaBase
      SCI_SETMARGINOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMARGINSENSITIVEN enum valueQsciScintillaBase
      SCI_SETMARGINTYPEN enum valueQsciScintillaBase
      SCI_SETMARGINWIDTHN enum valueQsciScintillaBase
      SCI_SETMODEVENTMASK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSEDOWNCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSEDWELLTIME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSESELECTIONRECTANGULARSWITCH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMOUSEWHEELCAPTURES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMULTIPASTE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETMULTIPLESELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETOVERTYPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPASTECONVERTENDINGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPHASESDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPOSITIONCACHE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPRINTCOLOURMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPRINTMAGNIFICATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPRINTWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPROPERTY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETPUNCTUATIONCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETREADONLY enum valueQsciScintillaBase
      SCI_SETRECTANGULARSELECTIONANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETRECTANGULARSELECTIONMODIFIER enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETREPRESENTATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSAVEPOINT enum valueQsciScintillaBase
      SCI_SETSCROLLWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSCROLLWIDTHTRACKING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSEARCHFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSEL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELALPHA enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNANCHOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNANCHORVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNCARETVIRTUALSPACE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONNSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELECTIONSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSELFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTATUS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTYLEBITS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETSTYLINGEX enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTABDRAWMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTABINDENTS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTABWIDTH enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTARGETEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTARGETRANGE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTARGETSTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTECHNOLOGY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETTEXT enum valueQsciScintillaBase
      SCI_SETTWOPHASEDRAW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETUNDOCOLLECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETUSETABS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVIEWEOL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVIEWWS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVIRTUALSPACEOPTIONS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVISIBLEPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETVSCROLLBAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACEBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACECHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACEFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWHITESPACESIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWORDCHARS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPINDENTMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPMODE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPSTARTINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPVISUALFLAGS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETWRAPVISUALFLAGSLOCATION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETXCARETPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETXOFFSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETYCARETPOLICY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SETZOOM enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SHOWLINES enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_START enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STARTRECORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STARTSTYLING enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STOPRECORD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEDOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEDOWNEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STUTTEREDPAGEUPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLECLEARALL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETBOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETCHANGEABLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETCHARACTERSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETFONT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETHOTSPOT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETITALIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETSIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETSIZEFRACTIONAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLEGETWEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLERESETDEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETBACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETBOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETCHANGEABLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETCHARACTERSET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETEOLFILLED enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETFONT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETFORE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETHOTSPOT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETITALIC enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETSIZE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETSIZEFRACTIONAL enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETUNDERLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_STYLESETWEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_SWAPMAINANCHORCARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TAGSOFSTYLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TARGETFROMSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TARGETWHOLEDOCUMENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TEXTHEIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TEXTWIDTH enum valueQsciScintillaBase
      SCI_TOGGLECARETSTICKY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TOGGLEFOLD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_TOGGLEFOLDSHOWTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_UNDO enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_UPPERCASE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_USEPOPUP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_USERLISTSHOW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEDISPLAY enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEDISPLAYEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMERECTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEWRAP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VCHOMEWRAPEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VERTICALCENTRECARET enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_VISIBLEFROMDOCLINE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDENDPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFTENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDLEFTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTLEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTLEFTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDPARTRIGHTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHTENDEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDRIGHTEXTEND enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WORDSTARTPOSITION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_WRAPCOUNT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ZOOMIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCI_ZOOMOUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_ADD enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_BACK enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_DELETE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_DIVIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_DOWN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_END enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_ESCAPE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_HOME enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_INSERT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_LEFT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_MENU enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_NEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_PRIOR enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_RETURN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_RIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_RWIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_SUBTRACT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_TAB enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_UP enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCK_WIN enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCLEX_A68K enum valueQsciScintillaBase
      SCLEX_ABAQUS enum valueQsciScintillaBase
      SCLEX_ADA enum valueQsciScintillaBase
      SCLEX_APDL enum valueQsciScintillaBase
      SCLEX_AS enum valueQsciScintillaBase
      SCLEX_ASM enum valueQsciScintillaBase
      SCLEX_ASN1 enum valueQsciScintillaBase
      SCLEX_ASP enum valueQsciScintillaBase
      SCLEX_ASYMPTOTE enum valueQsciScintillaBase
      SCLEX_AU3 enum valueQsciScintillaBase
      SCLEX_AVE enum valueQsciScintillaBase
      SCLEX_AVS enum valueQsciScintillaBase
      SCLEX_BAAN enum valueQsciScintillaBase
      SCLEX_BASH enum valueQsciScintillaBase
      SCLEX_BATCH enum valueQsciScintillaBase
      SCLEX_BIBTEX enum valueQsciScintillaBase
      SCLEX_BLITZBASIC enum valueQsciScintillaBase
      SCLEX_BULLANT enum valueQsciScintillaBase
      SCLEX_CAML enum valueQsciScintillaBase
      SCLEX_CLW enum valueQsciScintillaBase
      SCLEX_CLWNOCASE enum valueQsciScintillaBase
      SCLEX_CMAKE enum valueQsciScintillaBase
      SCLEX_COBOL enum valueQsciScintillaBase
      SCLEX_COFFEESCRIPT enum valueQsciScintillaBase
      SCLEX_CONF enum valueQsciScintillaBase
      SCLEX_CONTAINER enum valueQsciScintillaBase
      SCLEX_CPP enum valueQsciScintillaBase
      SCLEX_CPPNOCASE enum valueQsciScintillaBase
      SCLEX_CSOUND enum valueQsciScintillaBase
      SCLEX_CSS enum valueQsciScintillaBase
      SCLEX_D enum valueQsciScintillaBase
      SCLEX_DIFF enum valueQsciScintillaBase
      SCLEX_DMAP enum valueQsciScintillaBase
      SCLEX_DMIS enum valueQsciScintillaBase
      SCLEX_ECL enum valueQsciScintillaBase
      SCLEX_EDIFACT enum valueQsciScintillaBase
      SCLEX_EIFFEL enum valueQsciScintillaBase
      SCLEX_EIFFELKW enum valueQsciScintillaBase
      SCLEX_ERLANG enum valueQsciScintillaBase
      SCLEX_ERRORLIST enum valueQsciScintillaBase
      SCLEX_ESCRIPT enum valueQsciScintillaBase
      SCLEX_F77 enum valueQsciScintillaBase
      SCLEX_FLAGSHIP enum valueQsciScintillaBase
      SCLEX_FORTH enum valueQsciScintillaBase
      SCLEX_FORTRAN enum valueQsciScintillaBase
      SCLEX_FREEBASIC enum valueQsciScintillaBase
      SCLEX_GAP enum valueQsciScintillaBase
      SCLEX_GUI4CLI enum valueQsciScintillaBase
      SCLEX_HASKELL enum valueQsciScintillaBase
      SCLEX_HTML enum valueQsciScintillaBase
      SCLEX_IHEX enum valueQsciScintillaBase
      SCLEX_INDENT enum valueQsciScintillaBase
      SCLEX_INNOSETUP enum valueQsciScintillaBase
      SCLEX_JSON enum valueQsciScintillaBase
      SCLEX_KIX enum valueQsciScintillaBase
      SCLEX_KVIRC enum valueQsciScintillaBase
      SCLEX_LATEX enum valueQsciScintillaBase
      SCLEX_LISP enum valueQsciScintillaBase
      SCLEX_LITERATEHASKELL enum valueQsciScintillaBase
      SCLEX_LOT enum valueQsciScintillaBase
      SCLEX_LOUT enum valueQsciScintillaBase
      SCLEX_LUA enum valueQsciScintillaBase
      SCLEX_MAGIK enum valueQsciScintillaBase
      SCLEX_MAKEFILE enum valueQsciScintillaBase
      SCLEX_MARKDOWN enum valueQsciScintillaBase
      SCLEX_MATLAB enum valueQsciScintillaBase
      SCLEX_MAXIMA enum valueQsciScintillaBase
      SCLEX_METAPOST enum valueQsciScintillaBase
      SCLEX_MMIXAL enum valueQsciScintillaBase
      SCLEX_MODULA enum valueQsciScintillaBase
      SCLEX_MSSQL enum valueQsciScintillaBase
      SCLEX_MYSQL enum valueQsciScintillaBase
      SCLEX_NIMROD enum valueQsciScintillaBase
      SCLEX_NNCRONTAB enum valueQsciScintillaBase
      SCLEX_NSIS enum valueQsciScintillaBase
      SCLEX_NULL enum valueQsciScintillaBase
      SCLEX_OCTAVE enum valueQsciScintillaBase
      SCLEX_OPAL enum valueQsciScintillaBase
      SCLEX_OSCRIPT enum valueQsciScintillaBase
      SCLEX_PASCAL enum valueQsciScintillaBase
      SCLEX_PERL enum valueQsciScintillaBase
      SCLEX_PHP enum valueQsciScintillaBase
      SCLEX_PHPSCRIPT enum valueQsciScintillaBase
      SCLEX_PLM enum valueQsciScintillaBase
      SCLEX_PO enum valueQsciScintillaBase
      SCLEX_POV enum valueQsciScintillaBase
      SCLEX_POWERBASIC enum valueQsciScintillaBase
      SCLEX_POWERPRO enum valueQsciScintillaBase
      SCLEX_POWERSHELL enum valueQsciScintillaBase
      SCLEX_PROGRESS enum valueQsciScintillaBase
      SCLEX_PROPERTIES enum valueQsciScintillaBase
      SCLEX_PS enum valueQsciScintillaBase
      SCLEX_PUREBASIC enum valueQsciScintillaBase
      SCLEX_PYTHON enum valueQsciScintillaBase
      SCLEX_R enum valueQsciScintillaBase
      SCLEX_REBOL enum valueQsciScintillaBase
      SCLEX_REGISTRY enum valueQsciScintillaBase
      SCLEX_RUBY enum valueQsciScintillaBase
      SCLEX_RUST enum valueQsciScintillaBase
      SCLEX_SAS enum valueQsciScintillaBase
      SCLEX_SCRIPTOL enum valueQsciScintillaBase
      SCLEX_SMALLTALK enum valueQsciScintillaBase
      SCLEX_SML enum valueQsciScintillaBase
      SCLEX_SORCUS enum valueQsciScintillaBase
      SCLEX_SPECMAN enum valueQsciScintillaBase
      SCLEX_SPICE enum valueQsciScintillaBase
      SCLEX_SQL enum valueQsciScintillaBase
      SCLEX_SREC enum valueQsciScintillaBase
      SCLEX_STATA enum valueQsciScintillaBase
      SCLEX_STTXT enum valueQsciScintillaBase
      SCLEX_TACL enum valueQsciScintillaBase
      SCLEX_TADS3 enum valueQsciScintillaBase
      SCLEX_TAL enum valueQsciScintillaBase
      SCLEX_TCL enum valueQsciScintillaBase
      SCLEX_TCMD enum valueQsciScintillaBase
      SCLEX_TEHEX enum valueQsciScintillaBase
      SCLEX_TEX enum valueQsciScintillaBase
      SCLEX_TXT2TAGS enum valueQsciScintillaBase
      SCLEX_VB enum valueQsciScintillaBase
      SCLEX_VBSCRIPT enum valueQsciScintillaBase
      SCLEX_VERILOG enum valueQsciScintillaBase
      SCLEX_VHDL enum valueQsciScintillaBase
      SCLEX_VISUALPROLOG enum valueQsciScintillaBase
      SCLEX_XML enum valueQsciScintillaBase
      SCLEX_YAML enum valueQsciScintillaBase
      SCMOD_ALT enum valueQsciScintillaBase
      SCMOD_CTRL enum valueQsciScintillaBase
      SCMOD_META enum valueQsciScintillaBase
      SCMOD_NORM enum valueQsciScintillaBase
      SCMOD_SHIFT enum valueQsciScintillaBase
      SCMOD_SUPER enum valueQsciScintillaBase
      SCN_AUTOCCANCELLED()QsciScintillaBasesignal
      SCN_AUTOCCHARDELETED()QsciScintillaBasesignal
      SCN_AUTOCCOMPLETED(const char *selection, int position, int ch, int method)QsciScintillaBasesignal
      SCN_AUTOCSELECTION(const char *selection, int position, int ch, int method)QsciScintillaBasesignal
      SCN_AUTOCSELECTION(const char *selection, int position)QsciScintillaBasesignal
      SCN_AUTOCSELECTIONCHANGE(const char *selection, int id, int position)QsciScintillaBasesignal
      SCN_CALLTIPCLICK(int direction)QsciScintillaBasesignal
      SCN_CHARADDED(int charadded)QsciScintillaBasesignal
      SCN_DOUBLECLICK(int position, int line, int modifiers)QsciScintillaBasesignal
      SCN_DWELLEND(int position, int x, int y)QsciScintillaBasesignal
      SCN_DWELLSTART(int position, int x, int y)QsciScintillaBasesignal
      SCN_FOCUSIN()QsciScintillaBasesignal
      SCN_FOCUSOUT()QsciScintillaBasesignal
      SCN_HOTSPOTCLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_HOTSPOTDOUBLECLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_HOTSPOTRELEASECLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_INDICATORCLICK(int position, int modifiers)QsciScintillaBasesignal
      SCN_INDICATORRELEASE(int position, int modifiers)QsciScintillaBasesignal
      SCN_MACRORECORD(unsigned int, unsigned long, void *)QsciScintillaBasesignal
      SCN_MARGINCLICK(int position, int modifiers, int margin)QsciScintillaBasesignal
      SCN_MARGINRIGHTCLICK(int position, int modifiers, int margin)QsciScintillaBasesignal
      SCN_MODIFIED(int, int, const char *, int, int, int, int, int, int, int) (defined in QsciScintillaBase)QsciScintillaBasesignal
      SCN_MODIFYATTEMPTRO()QsciScintillaBasesignal
      SCN_NEEDSHOWN(int, int) (defined in QsciScintillaBase)QsciScintillaBasesignal
      SCN_PAINTED()QsciScintillaBasesignal
      SCN_SAVEPOINTLEFT()QsciScintillaBasesignal
      SCN_SAVEPOINTREACHED()QsciScintillaBasesignal
      SCN_STYLENEEDED(int position)QsciScintillaBasesignal
      SCN_UPDATEUI(int updated)QsciScintillaBasesignal
      SCN_URIDROPPED(const QUrl &url)QsciScintillaBasesignal
      SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method, int position)QsciScintillaBasesignal
      SCN_USERLISTSELECTION(const char *selection, int id, int ch, int method)QsciScintillaBasesignal
      SCN_USERLISTSELECTION(const char *selection, int id)QsciScintillaBasesignal
      SCN_ZOOM() (defined in QsciScintillaBase)QsciScintillaBasesignal
      scrollContentsBy(int dx, int dy) (defined in QsciScintillaBase)QsciScintillaBaseprotectedvirtual
      SCTD_LONGARROW enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCTD_STRIKEOUT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_NONE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_NOWRAPLINESTART enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_RECTANGULARSELECTION enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCVS_USERACCESSIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_INVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_VISIBLEAFTERINDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_VISIBLEALWAYS enum value (defined in QsciScintillaBase)QsciScintillaBase
      SCWS_VISIBLEONLYININDENT enum value (defined in QsciScintillaBase)QsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam=0, long lParam=0) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, void *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, uintptr_t wParam, const char *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, const char *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, const char *wParam, const char *lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, long wParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, int wParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, long cpMin, long cpMax, char *lpstrText) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, const QColor &col) constQsciScintillaBase
      SendScintilla(unsigned int msg, const QColor &col) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, const QPixmap &lParam) constQsciScintillaBase
      SendScintilla(unsigned int msg, unsigned long wParam, const QImage &lParam) constQsciScintillaBase
      SendScintillaPtrResult(unsigned int msg) constQsciScintillaBase
      setScrollBars() (defined in QsciScintillaBase)QsciScintillaBaseprotected
      STYLE_BRACEBAD enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_BRACELIGHT enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_CALLTIP enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_CONTROLCHAR enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_DEFAULT enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_FOLDDISPLAYTEXT enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_INDENTGUIDE enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_LASTPREDEFINED enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_LINENUMBER enum value (defined in QsciScintillaBase)QsciScintillaBase
      STYLE_MAX enum value (defined in QsciScintillaBase)QsciScintillaBase
      textAsBytes(const QString &text) const (defined in QsciScintillaBase)QsciScintillaBaseprotected
      toMimeData(const QByteArray &text, bool rectangular) constQsciScintillaBaseprotectedvirtual
      UNDO_MAY_COALESCE enum value (defined in QsciScintillaBase)QsciScintillaBase
      VISIBLE_SLOP enum value (defined in QsciScintillaBase)QsciScintillaBase
      VISIBLE_STRICT enum value (defined in QsciScintillaBase)QsciScintillaBase
      ~QsciScintillaBase()QsciScintillaBasevirtual
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciScintillaBase.html b/third_party/qscintilla/doc/html/classQsciScintillaBase.html new file mode 100644 index 0000000..e898813 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciScintillaBase.html @@ -0,0 +1,3783 @@ + + + + + + + +QScintilla: QsciScintillaBase Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + +
      + +

      #include <qsciscintillabase.h>

      + +

      Inherits QAbstractScrollArea.

      + +

      Inherited by QsciScintilla.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Types

      enum  {
      +  SCI_START = 2000, +SCI_OPTIONAL_START = 3000, +SCI_LEXER_START = 4000, +
      +  SCI_ADDTEXT = 2001, +SCI_ADDSTYLEDTEXT = 2002, +SCI_INSERTTEXT = 2003, +
      +  SCI_CLEARALL = 2004, +SCI_CLEARDOCUMENTSTYLE = 2005, +SCI_GETLENGTH = 2006, +
      +  SCI_GETCHARAT = 2007, +SCI_GETCURRENTPOS = 2008, +SCI_GETANCHOR = 2009, +
      +  SCI_GETSTYLEAT = 2010, +SCI_REDO = 2011, +SCI_SETUNDOCOLLECTION = 2012, +
      +  SCI_SELECTALL = 2013, +SCI_SETSAVEPOINT = 2014, +SCI_GETSTYLEDTEXT = 2015, +
      +  SCI_CANREDO = 2016, +SCI_MARKERLINEFROMHANDLE = 2017, +SCI_MARKERDELETEHANDLE = 2018, +
      +  SCI_GETUNDOCOLLECTION = 2019, +SCI_GETVIEWWS = 2020, +SCI_SETVIEWWS = 2021, +
      +  SCI_POSITIONFROMPOINT = 2022, +SCI_POSITIONFROMPOINTCLOSE = 2023, +SCI_GOTOLINE = 2024, +
      +  SCI_GOTOPOS = 2025, +SCI_SETANCHOR = 2026, +SCI_GETCURLINE = 2027, +
      +  SCI_GETENDSTYLED = 2028, +SCI_CONVERTEOLS = 2029, +SCI_GETEOLMODE = 2030, +
      +  SCI_SETEOLMODE = 2031, +SCI_STARTSTYLING = 2032, +SCI_SETSTYLING = 2033, +
      +  SCI_GETBUFFEREDDRAW = 2034, +SCI_SETBUFFEREDDRAW = 2035, +SCI_SETTABWIDTH = 2036, +
      +  SCI_GETTABWIDTH = 2121, +SCI_SETCODEPAGE = 2037, +SCI_MARKERDEFINE = 2040, +
      +  SCI_MARKERSETFORE = 2041, +SCI_MARKERSETBACK = 2042, +SCI_MARKERADD = 2043, +
      +  SCI_MARKERDELETE = 2044, +SCI_MARKERDELETEALL = 2045, +SCI_MARKERGET = 2046, +
      +  SCI_MARKERNEXT = 2047, +SCI_MARKERPREVIOUS = 2048, +SCI_MARKERDEFINEPIXMAP = 2049, +
      +  SCI_SETMARGINTYPEN = 2240, +SCI_GETMARGINTYPEN = 2241, +SCI_SETMARGINWIDTHN = 2242, +
      +  SCI_GETMARGINWIDTHN = 2243, +SCI_SETMARGINMASKN = 2244, +SCI_GETMARGINMASKN = 2245, +
      +  SCI_SETMARGINSENSITIVEN = 2246, +SCI_GETMARGINSENSITIVEN = 2247, +SCI_SETMARGINCURSORN = 2248, +
      +  SCI_GETMARGINCURSORN = 2249, +SCI_STYLECLEARALL = 2050, +SCI_STYLESETFORE = 2051, +
      +  SCI_STYLESETBACK = 2052, +SCI_STYLESETBOLD = 2053, +SCI_STYLESETITALIC = 2054, +
      +  SCI_STYLESETSIZE = 2055, +SCI_STYLESETFONT = 2056, +SCI_STYLESETEOLFILLED = 2057, +
      +  SCI_STYLERESETDEFAULT = 2058, +SCI_STYLESETUNDERLINE = 2059, +SCI_STYLESETCASE = 2060, +
      +  SCI_STYLESETSIZEFRACTIONAL = 2061, +SCI_STYLEGETSIZEFRACTIONAL = 2062, +SCI_STYLESETWEIGHT = 2063, +
      +  SCI_STYLEGETWEIGHT = 2064, +SCI_STYLESETCHARACTERSET = 2066, +SCI_SETSELFORE = 2067, +
      +  SCI_SETSELBACK = 2068, +SCI_SETCARETFORE = 2069, +SCI_ASSIGNCMDKEY = 2070, +
      +  SCI_CLEARCMDKEY = 2071, +SCI_CLEARALLCMDKEYS = 2072, +SCI_SETSTYLINGEX = 2073, +
      +  SCI_STYLESETVISIBLE = 2074, +SCI_GETCARETPERIOD = 2075, +SCI_SETCARETPERIOD = 2076, +
      +  SCI_SETWORDCHARS = 2077, +SCI_BEGINUNDOACTION = 2078, +SCI_ENDUNDOACTION = 2079, +
      +  SCI_INDICSETSTYLE = 2080, +SCI_INDICGETSTYLE = 2081, +SCI_INDICSETFORE = 2082, +
      +  SCI_INDICGETFORE = 2083, +SCI_SETWHITESPACEFORE = 2084, +SCI_SETWHITESPACEBACK = 2085, +
      +  SCI_SETWHITESPACESIZE = 2086, +SCI_GETWHITESPACESIZE = 2087, +SCI_SETSTYLEBITS = 2090, +
      +  SCI_GETSTYLEBITS = 2091, +SCI_SETLINESTATE = 2092, +SCI_GETLINESTATE = 2093, +
      +  SCI_GETMAXLINESTATE = 2094, +SCI_GETCARETLINEVISIBLE = 2095, +SCI_SETCARETLINEVISIBLE = 2096, +
      +  SCI_GETCARETLINEBACK = 2097, +SCI_SETCARETLINEBACK = 2098, +SCI_STYLESETCHANGEABLE = 2099, +
      +  SCI_AUTOCSHOW = 2100, +SCI_AUTOCCANCEL = 2101, +SCI_AUTOCACTIVE = 2102, +
      +  SCI_AUTOCPOSSTART = 2103, +SCI_AUTOCCOMPLETE = 2104, +SCI_AUTOCSTOPS = 2105, +
      +  SCI_AUTOCSETSEPARATOR = 2106, +SCI_AUTOCGETSEPARATOR = 2107, +SCI_AUTOCSELECT = 2108, +
      +  SCI_AUTOCSETCANCELATSTART = 2110, +SCI_AUTOCGETCANCELATSTART = 2111, +SCI_AUTOCSETFILLUPS = 2112, +
      +  SCI_AUTOCSETCHOOSESINGLE = 2113, +SCI_AUTOCGETCHOOSESINGLE = 2114, +SCI_AUTOCSETIGNORECASE = 2115, +
      +  SCI_AUTOCGETIGNORECASE = 2116, +SCI_USERLISTSHOW = 2117, +SCI_AUTOCSETAUTOHIDE = 2118, +
      +  SCI_AUTOCGETAUTOHIDE = 2119, +SCI_AUTOCSETDROPRESTOFWORD = 2270, +SCI_AUTOCGETDROPRESTOFWORD = 2271, +
      +  SCI_SETINDENT = 2122, +SCI_GETINDENT = 2123, +SCI_SETUSETABS = 2124, +
      +  SCI_GETUSETABS = 2125, +SCI_SETLINEINDENTATION = 2126, +SCI_GETLINEINDENTATION = 2127, +
      +  SCI_GETLINEINDENTPOSITION = 2128, +SCI_GETCOLUMN = 2129, +SCI_SETHSCROLLBAR = 2130, +
      +  SCI_GETHSCROLLBAR = 2131, +SCI_SETINDENTATIONGUIDES = 2132, +SCI_GETINDENTATIONGUIDES = 2133, +
      +  SCI_SETHIGHLIGHTGUIDE = 2134, +SCI_GETHIGHLIGHTGUIDE = 2135, +SCI_GETLINEENDPOSITION = 2136, +
      +  SCI_GETCODEPAGE = 2137, +SCI_GETCARETFORE = 2138, +SCI_GETREADONLY = 2140, +
      +  SCI_SETCURRENTPOS = 2141, +SCI_SETSELECTIONSTART = 2142, +SCI_GETSELECTIONSTART = 2143, +
      +  SCI_SETSELECTIONEND = 2144, +SCI_GETSELECTIONEND = 2145, +SCI_SETPRINTMAGNIFICATION = 2146, +
      +  SCI_GETPRINTMAGNIFICATION = 2147, +SCI_SETPRINTCOLOURMODE = 2148, +SCI_GETPRINTCOLOURMODE = 2149, +
      +  SCI_FINDTEXT = 2150, +SCI_FORMATRANGE = 2151, +SCI_GETFIRSTVISIBLELINE = 2152, +
      +  SCI_GETLINE = 2153, +SCI_GETLINECOUNT = 2154, +SCI_SETMARGINLEFT = 2155, +
      +  SCI_GETMARGINLEFT = 2156, +SCI_SETMARGINRIGHT = 2157, +SCI_GETMARGINRIGHT = 2158, +
      +  SCI_GETMODIFY = 2159, +SCI_SETSEL = 2160, +SCI_GETSELTEXT = 2161, +
      +  SCI_GETTEXTRANGE = 2162, +SCI_HIDESELECTION = 2163, +SCI_POINTXFROMPOSITION = 2164, +
      +  SCI_POINTYFROMPOSITION = 2165, +SCI_LINEFROMPOSITION = 2166, +SCI_POSITIONFROMLINE = 2167, +
      +  SCI_LINESCROLL = 2168, +SCI_SCROLLCARET = 2169, +SCI_REPLACESEL = 2170, +
      +  SCI_SETREADONLY = 2171, +SCI_NULL = 2172, +SCI_CANPASTE = 2173, +
      +  SCI_CANUNDO = 2174, +SCI_EMPTYUNDOBUFFER = 2175, +SCI_UNDO = 2176, +
      +  SCI_CUT = 2177, +SCI_COPY = 2178, +SCI_PASTE = 2179, +
      +  SCI_CLEAR = 2180, +SCI_SETTEXT = 2181, +SCI_GETTEXT = 2182, +
      +  SCI_GETTEXTLENGTH = 2183, +SCI_GETDIRECTFUNCTION = 2184, +SCI_GETDIRECTPOINTER = 2185, +
      +  SCI_SETOVERTYPE = 2186, +SCI_GETOVERTYPE = 2187, +SCI_SETCARETWIDTH = 2188, +
      +  SCI_GETCARETWIDTH = 2189, +SCI_SETTARGETSTART = 2190, +SCI_GETTARGETSTART = 2191, +
      +  SCI_SETTARGETEND = 2192, +SCI_GETTARGETEND = 2193, +SCI_REPLACETARGET = 2194, +
      +  SCI_REPLACETARGETRE = 2195, +SCI_SEARCHINTARGET = 2197, +SCI_SETSEARCHFLAGS = 2198, +
      +  SCI_GETSEARCHFLAGS = 2199, +SCI_CALLTIPSHOW = 2200, +SCI_CALLTIPCANCEL = 2201, +
      +  SCI_CALLTIPACTIVE = 2202, +SCI_CALLTIPPOSSTART = 2203, +SCI_CALLTIPSETHLT = 2204, +
      +  SCI_CALLTIPSETBACK = 2205, +SCI_CALLTIPSETFORE = 2206, +SCI_CALLTIPSETFOREHLT = 2207, +
      +  SCI_AUTOCSETMAXWIDTH = 2208, +SCI_AUTOCGETMAXWIDTH = 2209, +SCI_AUTOCSETMAXHEIGHT = 2210, +
      +  SCI_AUTOCGETMAXHEIGHT = 2211, +SCI_CALLTIPUSESTYLE = 2212, +SCI_CALLTIPSETPOSITION = 2213, +
      +  SCI_CALLTIPSETPOSSTART = 2214, +SCI_VISIBLEFROMDOCLINE = 2220, +SCI_DOCLINEFROMVISIBLE = 2221, +
      +  SCI_SETFOLDLEVEL = 2222, +SCI_GETFOLDLEVEL = 2223, +SCI_GETLASTCHILD = 2224, +
      +  SCI_GETFOLDPARENT = 2225, +SCI_SHOWLINES = 2226, +SCI_HIDELINES = 2227, +
      +  SCI_GETLINEVISIBLE = 2228, +SCI_SETFOLDEXPANDED = 2229, +SCI_GETFOLDEXPANDED = 2230, +
      +  SCI_TOGGLEFOLD = 2231, +SCI_ENSUREVISIBLE = 2232, +SCI_SETFOLDFLAGS = 2233, +
      +  SCI_ENSUREVISIBLEENFORCEPOLICY = 2234, +SCI_WRAPCOUNT = 2235, +SCI_GETALLLINESVISIBLE = 2236, +
      +  SCI_FOLDLINE = 2237, +SCI_FOLDCHILDREN = 2238, +SCI_EXPANDCHILDREN = 2239, +
      +  SCI_SETMARGINBACKN = 2250, +SCI_GETMARGINBACKN = 2251, +SCI_SETMARGINS = 2252, +
      +  SCI_GETMARGINS = 2253, +SCI_SETTABINDENTS = 2260, +SCI_GETTABINDENTS = 2261, +
      +  SCI_SETBACKSPACEUNINDENTS = 2262, +SCI_GETBACKSPACEUNINDENTS = 2263, +SCI_SETMOUSEDWELLTIME = 2264, +
      +  SCI_GETMOUSEDWELLTIME = 2265, +SCI_WORDSTARTPOSITION = 2266, +SCI_WORDENDPOSITION = 2267, +
      +  SCI_SETWRAPMODE = 2268, +SCI_GETWRAPMODE = 2269, +SCI_SETLAYOUTCACHE = 2272, +
      +  SCI_GETLAYOUTCACHE = 2273, +SCI_SETSCROLLWIDTH = 2274, +SCI_GETSCROLLWIDTH = 2275, +
      +  SCI_TEXTWIDTH = 2276, +SCI_SETENDATLASTLINE = 2277, +SCI_GETENDATLASTLINE = 2278, +
      +  SCI_TEXTHEIGHT = 2279, +SCI_SETVSCROLLBAR = 2280, +SCI_GETVSCROLLBAR = 2281, +
      +  SCI_APPENDTEXT = 2282, +SCI_GETTWOPHASEDRAW = 2283, +SCI_SETTWOPHASEDRAW = 2284, +
      +  SCI_AUTOCGETTYPESEPARATOR = 2285, +SCI_AUTOCSETTYPESEPARATOR = 2286, +SCI_TARGETFROMSELECTION = 2287, +
      +  SCI_LINESJOIN = 2288, +SCI_LINESSPLIT = 2289, +SCI_SETFOLDMARGINCOLOUR = 2290, +
      +  SCI_SETFOLDMARGINHICOLOUR = 2291, +SCI_MARKERSETBACKSELECTED = 2292, +SCI_MARKERENABLEHIGHLIGHT = 2293, +
      +  SCI_LINEDOWN = 2300, +SCI_LINEDOWNEXTEND = 2301, +SCI_LINEUP = 2302, +
      +  SCI_LINEUPEXTEND = 2303, +SCI_CHARLEFT = 2304, +SCI_CHARLEFTEXTEND = 2305, +
      +  SCI_CHARRIGHT = 2306, +SCI_CHARRIGHTEXTEND = 2307, +SCI_WORDLEFT = 2308, +
      +  SCI_WORDLEFTEXTEND = 2309, +SCI_WORDRIGHT = 2310, +SCI_WORDRIGHTEXTEND = 2311, +
      +  SCI_HOME = 2312, +SCI_HOMEEXTEND = 2313, +SCI_LINEEND = 2314, +
      +  SCI_LINEENDEXTEND = 2315, +SCI_DOCUMENTSTART = 2316, +SCI_DOCUMENTSTARTEXTEND = 2317, +
      +  SCI_DOCUMENTEND = 2318, +SCI_DOCUMENTENDEXTEND = 2319, +SCI_PAGEUP = 2320, +
      +  SCI_PAGEUPEXTEND = 2321, +SCI_PAGEDOWN = 2322, +SCI_PAGEDOWNEXTEND = 2323, +
      +  SCI_EDITTOGGLEOVERTYPE = 2324, +SCI_CANCEL = 2325, +SCI_DELETEBACK = 2326, +
      +  SCI_TAB = 2327, +SCI_BACKTAB = 2328, +SCI_NEWLINE = 2329, +
      +  SCI_FORMFEED = 2330, +SCI_VCHOME = 2331, +SCI_VCHOMEEXTEND = 2332, +
      +  SCI_ZOOMIN = 2333, +SCI_ZOOMOUT = 2334, +SCI_DELWORDLEFT = 2335, +
      +  SCI_DELWORDRIGHT = 2336, +SCI_LINECUT = 2337, +SCI_LINEDELETE = 2338, +
      +  SCI_LINETRANSPOSE = 2339, +SCI_LOWERCASE = 2340, +SCI_UPPERCASE = 2341, +
      +  SCI_LINESCROLLDOWN = 2342, +SCI_LINESCROLLUP = 2343, +SCI_DELETEBACKNOTLINE = 2344, +
      +  SCI_HOMEDISPLAY = 2345, +SCI_HOMEDISPLAYEXTEND = 2346, +SCI_LINEENDDISPLAY = 2347, +
      +  SCI_LINEENDDISPLAYEXTEND = 2348, +SCI_MOVECARETINSIDEVIEW = 2401, +SCI_LINELENGTH = 2350, +
      +  SCI_BRACEHIGHLIGHT = 2351, +SCI_BRACEBADLIGHT = 2352, +SCI_BRACEMATCH = 2353, +
      +  SCI_LINEREVERSE = 2354, +SCI_GETVIEWEOL = 2355, +SCI_SETVIEWEOL = 2356, +
      +  SCI_GETDOCPOINTER = 2357, +SCI_SETDOCPOINTER = 2358, +SCI_SETMODEVENTMASK = 2359, +
      +  SCI_GETEDGECOLUMN = 2360, +SCI_SETEDGECOLUMN = 2361, +SCI_GETEDGEMODE = 2362, +
      +  SCI_SETEDGEMODE = 2363, +SCI_GETEDGECOLOUR = 2364, +SCI_SETEDGECOLOUR = 2365, +
      +  SCI_SEARCHANCHOR = 2366, +SCI_SEARCHNEXT = 2367, +SCI_SEARCHPREV = 2368, +
      +  SCI_LINESONSCREEN = 2370, +SCI_USEPOPUP = 2371, +SCI_SELECTIONISRECTANGLE = 2372, +
      +  SCI_SETZOOM = 2373, +SCI_GETZOOM = 2374, +SCI_CREATEDOCUMENT = 2375, +
      +  SCI_ADDREFDOCUMENT = 2376, +SCI_RELEASEDOCUMENT = 2377, +SCI_GETMODEVENTMASK = 2378, +
      +  SCI_SETFOCUS = 2380, +SCI_GETFOCUS = 2381, +SCI_SETSTATUS = 2382, +
      +  SCI_GETSTATUS = 2383, +SCI_SETMOUSEDOWNCAPTURES = 2384, +SCI_GETMOUSEDOWNCAPTURES = 2385, +
      +  SCI_SETCURSOR = 2386, +SCI_GETCURSOR = 2387, +SCI_SETCONTROLCHARSYMBOL = 2388, +
      +  SCI_GETCONTROLCHARSYMBOL = 2389, +SCI_WORDPARTLEFT = 2390, +SCI_WORDPARTLEFTEXTEND = 2391, +
      +  SCI_WORDPARTRIGHT = 2392, +SCI_WORDPARTRIGHTEXTEND = 2393, +SCI_SETVISIBLEPOLICY = 2394, +
      +  SCI_DELLINELEFT = 2395, +SCI_DELLINERIGHT = 2396, +SCI_SETXOFFSET = 2397, +
      +  SCI_GETXOFFSET = 2398, +SCI_CHOOSECARETX = 2399, +SCI_GRABFOCUS = 2400, +
      +  SCI_SETXCARETPOLICY = 2402, +SCI_SETYCARETPOLICY = 2403, +SCI_LINEDUPLICATE = 2404, +
      +  SCI_REGISTERIMAGE = 2405, +SCI_SETPRINTWRAPMODE = 2406, +SCI_GETPRINTWRAPMODE = 2407, +
      +  SCI_CLEARREGISTEREDIMAGES = 2408, +SCI_STYLESETHOTSPOT = 2409, +SCI_SETHOTSPOTACTIVEFORE = 2410, +
      +  SCI_SETHOTSPOTACTIVEBACK = 2411, +SCI_SETHOTSPOTACTIVEUNDERLINE = 2412, +SCI_PARADOWN = 2413, +
      +  SCI_PARADOWNEXTEND = 2414, +SCI_PARAUP = 2415, +SCI_PARAUPEXTEND = 2416, +
      +  SCI_POSITIONBEFORE = 2417, +SCI_POSITIONAFTER = 2418, +SCI_COPYRANGE = 2419, +
      +  SCI_COPYTEXT = 2420, +SCI_SETHOTSPOTSINGLELINE = 2421, +SCI_SETSELECTIONMODE = 2422, +
      +  SCI_GETSELECTIONMODE = 2423, +SCI_GETLINESELSTARTPOSITION = 2424, +SCI_GETLINESELENDPOSITION = 2425, +
      +  SCI_LINEDOWNRECTEXTEND = 2426, +SCI_LINEUPRECTEXTEND = 2427, +SCI_CHARLEFTRECTEXTEND = 2428, +
      +  SCI_CHARRIGHTRECTEXTEND = 2429, +SCI_HOMERECTEXTEND = 2430, +SCI_VCHOMERECTEXTEND = 2431, +
      +  SCI_LINEENDRECTEXTEND = 2432, +SCI_PAGEUPRECTEXTEND = 2433, +SCI_PAGEDOWNRECTEXTEND = 2434, +
      +  SCI_STUTTEREDPAGEUP = 2435, +SCI_STUTTEREDPAGEUPEXTEND = 2436, +SCI_STUTTEREDPAGEDOWN = 2437, +
      +  SCI_STUTTEREDPAGEDOWNEXTEND = 2438, +SCI_WORDLEFTEND = 2439, +SCI_WORDLEFTENDEXTEND = 2440, +
      +  SCI_WORDRIGHTEND = 2441, +SCI_WORDRIGHTENDEXTEND = 2442, +SCI_SETWHITESPACECHARS = 2443, +
      +  SCI_SETCHARSDEFAULT = 2444, +SCI_AUTOCGETCURRENT = 2445, +SCI_ALLOCATE = 2446, +
      +  SCI_HOMEWRAP = 2349, +SCI_HOMEWRAPEXTEND = 2450, +SCI_LINEENDWRAP = 2451, +
      +  SCI_LINEENDWRAPEXTEND = 2452, +SCI_VCHOMEWRAP = 2453, +SCI_VCHOMEWRAPEXTEND = 2454, +
      +  SCI_LINECOPY = 2455, +SCI_FINDCOLUMN = 2456, +SCI_GETCARETSTICKY = 2457, +
      +  SCI_SETCARETSTICKY = 2458, +SCI_TOGGLECARETSTICKY = 2459, +SCI_SETWRAPVISUALFLAGS = 2460, +
      +  SCI_GETWRAPVISUALFLAGS = 2461, +SCI_SETWRAPVISUALFLAGSLOCATION = 2462, +SCI_GETWRAPVISUALFLAGSLOCATION = 2463, +
      +  SCI_SETWRAPSTARTINDENT = 2464, +SCI_GETWRAPSTARTINDENT = 2465, +SCI_MARKERADDSET = 2466, +
      +  SCI_SETPASTECONVERTENDINGS = 2467, +SCI_GETPASTECONVERTENDINGS = 2468, +SCI_SELECTIONDUPLICATE = 2469, +
      +  SCI_SETCARETLINEBACKALPHA = 2470, +SCI_GETCARETLINEBACKALPHA = 2471, +SCI_SETWRAPINDENTMODE = 2472, +
      +  SCI_GETWRAPINDENTMODE = 2473, +SCI_MARKERSETALPHA = 2476, +SCI_GETSELALPHA = 2477, +
      +  SCI_SETSELALPHA = 2478, +SCI_GETSELEOLFILLED = 2479, +SCI_SETSELEOLFILLED = 2480, +
      +  SCI_STYLEGETFORE = 2481, +SCI_STYLEGETBACK = 2482, +SCI_STYLEGETBOLD = 2483, +
      +  SCI_STYLEGETITALIC = 2484, +SCI_STYLEGETSIZE = 2485, +SCI_STYLEGETFONT = 2486, +
      +  SCI_STYLEGETEOLFILLED = 2487, +SCI_STYLEGETUNDERLINE = 2488, +SCI_STYLEGETCASE = 2489, +
      +  SCI_STYLEGETCHARACTERSET = 2490, +SCI_STYLEGETVISIBLE = 2491, +SCI_STYLEGETCHANGEABLE = 2492, +
      +  SCI_STYLEGETHOTSPOT = 2493, +SCI_GETHOTSPOTACTIVEFORE = 2494, +SCI_GETHOTSPOTACTIVEBACK = 2495, +
      +  SCI_GETHOTSPOTACTIVEUNDERLINE = 2496, +SCI_GETHOTSPOTSINGLELINE = 2497, +SCI_BRACEHIGHLIGHTINDICATOR = 2498, +
      +  SCI_BRACEBADLIGHTINDICATOR = 2499, +SCI_SETINDICATORCURRENT = 2500, +SCI_GETINDICATORCURRENT = 2501, +
      +  SCI_SETINDICATORVALUE = 2502, +SCI_GETINDICATORVALUE = 2503, +SCI_INDICATORFILLRANGE = 2504, +
      +  SCI_INDICATORCLEARRANGE = 2505, +SCI_INDICATORALLONFOR = 2506, +SCI_INDICATORVALUEAT = 2507, +
      +  SCI_INDICATORSTART = 2508, +SCI_INDICATOREND = 2509, +SCI_INDICSETUNDER = 2510, +
      +  SCI_INDICGETUNDER = 2511, +SCI_SETCARETSTYLE = 2512, +SCI_GETCARETSTYLE = 2513, +
      +  SCI_SETPOSITIONCACHE = 2514, +SCI_GETPOSITIONCACHE = 2515, +SCI_SETSCROLLWIDTHTRACKING = 2516, +
      +  SCI_GETSCROLLWIDTHTRACKING = 2517, +SCI_DELWORDRIGHTEND = 2518, +SCI_COPYALLOWLINE = 2519, +
      +  SCI_GETCHARACTERPOINTER = 2520, +SCI_INDICSETALPHA = 2523, +SCI_INDICGETALPHA = 2524, +
      +  SCI_SETEXTRAASCENT = 2525, +SCI_GETEXTRAASCENT = 2526, +SCI_SETEXTRADESCENT = 2527, +
      +  SCI_GETEXTRADESCENT = 2528, +SCI_MARKERSYMBOLDEFINED = 2529, +SCI_MARGINSETTEXT = 2530, +
      +  SCI_MARGINGETTEXT = 2531, +SCI_MARGINSETSTYLE = 2532, +SCI_MARGINGETSTYLE = 2533, +
      +  SCI_MARGINSETSTYLES = 2534, +SCI_MARGINGETSTYLES = 2535, +SCI_MARGINTEXTCLEARALL = 2536, +
      +  SCI_MARGINSETSTYLEOFFSET = 2537, +SCI_MARGINGETSTYLEOFFSET = 2538, +SCI_SETMARGINOPTIONS = 2539, +
      +  SCI_ANNOTATIONSETTEXT = 2540, +SCI_ANNOTATIONGETTEXT = 2541, +SCI_ANNOTATIONSETSTYLE = 2542, +
      +  SCI_ANNOTATIONGETSTYLE = 2543, +SCI_ANNOTATIONSETSTYLES = 2544, +SCI_ANNOTATIONGETSTYLES = 2545, +
      +  SCI_ANNOTATIONGETLINES = 2546, +SCI_ANNOTATIONCLEARALL = 2547, +SCI_ANNOTATIONSETVISIBLE = 2548, +
      +  SCI_ANNOTATIONGETVISIBLE = 2549, +SCI_ANNOTATIONSETSTYLEOFFSET = 2550, +SCI_ANNOTATIONGETSTYLEOFFSET = 2551, +
      +  SCI_RELEASEALLEXTENDEDSTYLES = 2552, +SCI_ALLOCATEEXTENDEDSTYLES = 2553, +SCI_SETEMPTYSELECTION = 2556, +
      +  SCI_GETMARGINOPTIONS = 2557, +SCI_INDICSETOUTLINEALPHA = 2558, +SCI_INDICGETOUTLINEALPHA = 2559, +
      +  SCI_ADDUNDOACTION = 2560, +SCI_CHARPOSITIONFROMPOINT = 2561, +SCI_CHARPOSITIONFROMPOINTCLOSE = 2562, +
      +  SCI_SETMULTIPLESELECTION = 2563, +SCI_GETMULTIPLESELECTION = 2564, +SCI_SETADDITIONALSELECTIONTYPING = 2565, +
      +  SCI_GETADDITIONALSELECTIONTYPING = 2566, +SCI_SETADDITIONALCARETSBLINK = 2567, +SCI_GETADDITIONALCARETSBLINK = 2568, +
      +  SCI_SCROLLRANGE = 2569, +SCI_GETSELECTIONS = 2570, +SCI_CLEARSELECTIONS = 2571, +
      +  SCI_SETSELECTION = 2572, +SCI_ADDSELECTION = 2573, +SCI_SETMAINSELECTION = 2574, +
      +  SCI_GETMAINSELECTION = 2575, +SCI_SETSELECTIONNCARET = 2576, +SCI_GETSELECTIONNCARET = 2577, +
      +  SCI_SETSELECTIONNANCHOR = 2578, +SCI_GETSELECTIONNANCHOR = 2579, +SCI_SETSELECTIONNCARETVIRTUALSPACE = 2580, +
      +  SCI_GETSELECTIONNCARETVIRTUALSPACE = 2581, +SCI_SETSELECTIONNANCHORVIRTUALSPACE = 2582, +SCI_GETSELECTIONNANCHORVIRTUALSPACE = 2583, +
      +  SCI_SETSELECTIONNSTART = 2584, +SCI_GETSELECTIONNSTART = 2585, +SCI_SETSELECTIONNEND = 2586, +
      +  SCI_GETSELECTIONNEND = 2587, +SCI_SETRECTANGULARSELECTIONCARET = 2588, +SCI_GETRECTANGULARSELECTIONCARET = 2589, +
      +  SCI_SETRECTANGULARSELECTIONANCHOR = 2590, +SCI_GETRECTANGULARSELECTIONANCHOR = 2591, +SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE = 2592, +
      +  SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE = 2593, +SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE = 2594, +SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE = 2595, +
      +  SCI_SETVIRTUALSPACEOPTIONS = 2596, +SCI_GETVIRTUALSPACEOPTIONS = 2597, +SCI_SETRECTANGULARSELECTIONMODIFIER = 2598, +
      +  SCI_GETRECTANGULARSELECTIONMODIFIER = 2599, +SCI_SETADDITIONALSELFORE = 2600, +SCI_SETADDITIONALSELBACK = 2601, +
      +  SCI_SETADDITIONALSELALPHA = 2602, +SCI_GETADDITIONALSELALPHA = 2603, +SCI_SETADDITIONALCARETFORE = 2604, +
      +  SCI_GETADDITIONALCARETFORE = 2605, +SCI_ROTATESELECTION = 2606, +SCI_SWAPMAINANCHORCARET = 2607, +
      +  SCI_SETADDITIONALCARETSVISIBLE = 2608, +SCI_GETADDITIONALCARETSVISIBLE = 2609, +SCI_AUTOCGETCURRENTTEXT = 2610, +
      +  SCI_SETFONTQUALITY = 2611, +SCI_GETFONTQUALITY = 2612, +SCI_SETFIRSTVISIBLELINE = 2613, +
      +  SCI_SETMULTIPASTE = 2614, +SCI_GETMULTIPASTE = 2615, +SCI_GETTAG = 2616, +
      +  SCI_CHANGELEXERSTATE = 2617, +SCI_CONTRACTEDFOLDNEXT = 2618, +SCI_VERTICALCENTRECARET = 2619, +
      +  SCI_MOVESELECTEDLINESUP = 2620, +SCI_MOVESELECTEDLINESDOWN = 2621, +SCI_SETIDENTIFIER = 2622, +
      +  SCI_GETIDENTIFIER = 2623, +SCI_RGBAIMAGESETWIDTH = 2624, +SCI_RGBAIMAGESETHEIGHT = 2625, +
      +  SCI_MARKERDEFINERGBAIMAGE = 2626, +SCI_REGISTERRGBAIMAGE = 2627, +SCI_SCROLLTOSTART = 2628, +
      +  SCI_SCROLLTOEND = 2629, +SCI_SETTECHNOLOGY = 2630, +SCI_GETTECHNOLOGY = 2631, +
      +  SCI_CREATELOADER = 2632, +SCI_COUNTCHARACTERS = 2633, +SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR = 2634, +
      +  SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR = 2635, +SCI_AUTOCSETMULTI = 2636, +SCI_AUTOCGETMULTI = 2637, +
      +  SCI_FINDINDICATORSHOW = 2640, +SCI_FINDINDICATORFLASH = 2641, +SCI_FINDINDICATORHIDE = 2642, +
      +  SCI_GETRANGEPOINTER = 2643, +SCI_GETGAPPOSITION = 2644, +SCI_DELETERANGE = 2645, +
      +  SCI_GETWORDCHARS = 2646, +SCI_GETWHITESPACECHARS = 2647, +SCI_SETPUNCTUATIONCHARS = 2648, +
      +  SCI_GETPUNCTUATIONCHARS = 2649, +SCI_GETSELECTIONEMPTY = 2650, +SCI_RGBAIMAGESETSCALE = 2651, +
      +  SCI_VCHOMEDISPLAY = 2652, +SCI_VCHOMEDISPLAYEXTEND = 2653, +SCI_GETCARETLINEVISIBLEALWAYS = 2654, +
      +  SCI_SETCARETLINEVISIBLEALWAYS = 2655, +SCI_SETLINEENDTYPESALLOWED = 2656, +SCI_GETLINEENDTYPESALLOWED = 2657, +
      +  SCI_GETLINEENDTYPESACTIVE = 2658, +SCI_AUTOCSETORDER = 2660, +SCI_AUTOCGETORDER = 2661, +
      +  SCI_FOLDALL = 2662, +SCI_SETAUTOMATICFOLD = 2663, +SCI_GETAUTOMATICFOLD = 2664, +
      +  SCI_SETREPRESENTATION = 2665, +SCI_GETREPRESENTATION = 2666, +SCI_CLEARREPRESENTATION = 2667, +
      +  SCI_SETMOUSESELECTIONRECTANGULARSWITCH = 2668, +SCI_GETMOUSESELECTIONRECTANGULARSWITCH = 2669, +SCI_POSITIONRELATIVE = 2670, +
      +  SCI_DROPSELECTIONN = 2671, +SCI_CHANGEINSERTION = 2672, +SCI_GETPHASESDRAW = 2673, +
      +  SCI_SETPHASESDRAW = 2674, +SCI_CLEARTABSTOPS = 2675, +SCI_ADDTABSTOP = 2676, +
      +  SCI_GETNEXTTABSTOP = 2677, +SCI_GETIMEINTERACTION = 2678, +SCI_SETIMEINTERACTION = 2679, +
      +  SCI_INDICSETHOVERSTYLE = 2680, +SCI_INDICGETHOVERSTYLE = 2681, +SCI_INDICSETHOVERFORE = 2682, +
      +  SCI_INDICGETHOVERFORE = 2683, +SCI_INDICSETFLAGS = 2684, +SCI_INDICGETFLAGS = 2685, +
      +  SCI_SETTARGETRANGE = 2686, +SCI_GETTARGETTEXT = 2687, +SCI_MULTIPLESELECTADDNEXT = 2688, +
      +  SCI_MULTIPLESELECTADDEACH = 2689, +SCI_TARGETWHOLEDOCUMENT = 2690, +SCI_ISRANGEWORD = 2691, +
      +  SCI_SETIDLESTYLING = 2692, +SCI_GETIDLESTYLING = 2693, +SCI_MULTIEDGEADDLINE = 2694, +
      +  SCI_MULTIEDGECLEARALL = 2695, +SCI_SETMOUSEWHEELCAPTURES = 2696, +SCI_GETMOUSEWHEELCAPTURES = 2697, +
      +  SCI_GETTABDRAWMODE = 2698, +SCI_SETTABDRAWMODE = 2699, +SCI_TOGGLEFOLDSHOWTEXT = 2700, +
      +  SCI_FOLDDISPLAYTEXTSETSTYLE = 2701, +SCI_SETACCESSIBILITY = 2702, +SCI_GETACCESSIBILITY = 2703, +
      +  SCI_GETCARETLINEFRAME = 2704, +SCI_SETCARETLINEFRAME = 2705, +SCI_STARTRECORD = 3001, +
      +  SCI_STOPRECORD = 3002, +SCI_SETLEXER = 4001, +SCI_GETLEXER = 4002, +
      +  SCI_COLOURISE = 4003, +SCI_SETPROPERTY = 4004, +SCI_SETKEYWORDS = 4005, +
      +  SCI_SETLEXERLANGUAGE = 4006, +SCI_LOADLEXERLIBRARY = 4007, +SCI_GETPROPERTY = 4008, +
      +  SCI_GETPROPERTYEXPANDED = 4009, +SCI_GETPROPERTYINT = 4010, +SCI_GETSTYLEBITSNEEDED = 4011, +
      +  SCI_GETLEXERLANGUAGE = 4012, +SCI_PRIVATELEXERCALL = 4013, +SCI_PROPERTYNAMES = 4014, +
      +  SCI_PROPERTYTYPE = 4015, +SCI_DESCRIBEPROPERTY = 4016, +SCI_DESCRIBEKEYWORDSETS = 4017, +
      +  SCI_GETLINEENDTYPESSUPPORTED = 4018, +SCI_ALLOCATESUBSTYLES = 4020, +SCI_GETSUBSTYLESSTART = 4021, +
      +  SCI_GETSUBSTYLESLENGTH = 4022, +SCI_GETSTYLEFROMSUBSTYLE = 4027, +SCI_GETPRIMARYSTYLEFROMSTYLE = 4028, +
      +  SCI_FREESUBSTYLES = 4023, +SCI_SETIDENTIFIERS = 4024, +SCI_DISTANCETOSECONDARYSTYLES = 4025, +
      +  SCI_GETSUBSTYLEBASES = 4026, +SCI_GETLINECHARACTERINDEX = 2710, +SCI_ALLOCATELINECHARACTERINDEX = 2711, +
      +  SCI_RELEASELINECHARACTERINDEX = 2712, +SCI_LINEFROMINDEXPOSITION = 2713, +SCI_INDEXPOSITIONFROMLINE = 2714, +
      +  SCI_COUNTCODEUNITS = 2715, +SCI_POSITIONRELATIVECODEUNITS = 2716, +SCI_GETNAMEDSTYLES = 4029, +
      +  SCI_NAMEOFSTYLE = 4030, +SCI_TAGSOFSTYLE = 4031, +SCI_DESCRIPTIONOFSTYLE = 4032, +
      +  SCI_GETMOVEEXTENDSSELECTION = 2706, +SCI_SETCOMMANDEVENTS = 2717, +SCI_GETCOMMANDEVENTS = 2718, +
      +  SCI_GETDOCUMENTOPTIONS = 2379 +
      + }
       
      enum  {
      +  SC_AC_FILLUP = 1, +SC_AC_DOUBLECLICK = 2, +SC_AC_TAB = 3, +
      +  SC_AC_NEWLINE = 4, +SC_AC_COMMAND = 5 +
      + }
       
      enum  { SC_ALPHA_TRANSPARENT = 0, +SC_ALPHA_OPAQUE = 255, +SC_ALPHA_NOALPHA = 256 + }
       
      enum  { SC_CARETSTICKY_OFF = 0, +SC_CARETSTICKY_ON = 1, +SC_CARETSTICKY_WHITESPACE = 2 + }
       
      enum  { SC_DOCUMENTOPTION_DEFAULT = 0x0000, +SC_DOCUMENTOPTION_STYLES_NONE = 0x0001, +SC_DOCUMENTOPTION_TEXT_LARGE = 0x0100 + }
       
      enum  {
      +  SC_EFF_QUALITY_MASK = 0x0f, +SC_EFF_QUALITY_DEFAULT = 0, +SC_EFF_QUALITY_NON_ANTIALIASED = 1, +
      +  SC_EFF_QUALITY_ANTIALIASED = 2, +SC_EFF_QUALITY_LCD_OPTIMIZED = 3 +
      + }
       
      enum  {
      +  SC_IDLESTYLING_NONE = 0, +SC_IDLESTYLING_TOVISIBLE = 1, +SC_IDLESTYLING_AFTERVISIBLE = 2, +
      +  SC_IDLESTYLING_ALL = 3 +
      + }
       
      enum  { SC_IME_WINDOWED = 0, +SC_IME_INLINE = 1 + }
       
      enum  { SC_LINECHARACTERINDEX_NONE = 0, +SC_LINECHARACTERINDEX_UTF32 = 1, +SC_LINECHARACTERINDEX_UTF16 = 2 + }
       
      enum  { SC_MARGINOPTION_NONE = 0x00, +SC_MARGINOPTION_SUBLINESELECT = 0x01 + }
       
      enum  { SC_MULTIAUTOC_ONCE = 0, +SC_MULTIAUTOC_EACH = 1 + }
       
      enum  { SC_MULTIPASTE_ONCE = 0, +SC_MULTIPASTE_EACH = 1 + }
       
      enum  { SC_POPUP_NEVER = 0, +SC_POPUP_ALL = 1, +SC_POPUP_TEXT = 2 + }
       
      enum  {
      +  SC_SEL_STREAM = 0, +SC_SEL_RECTANGLE = 1, +SC_SEL_LINES = 2, +
      +  SC_SEL_THIN = 3 +
      + }
       
      enum  {
      +  SC_STATUS_OK = 0, +SC_STATUS_FAILURE = 1, +SC_STATUS_BADALLOC = 2, +
      +  SC_STATUS_WARN_START = 1000, +SC_STATUS_WARNREGEX = 1001 +
      + }
       
      enum  { SC_TYPE_BOOLEAN = 0, +SC_TYPE_INTEGER = 1, +SC_TYPE_STRING = 2 + }
       
      enum  {
      +  SC_UPDATE_CONTENT = 0x01, +SC_UPDATE_SELECTION = 0x02, +SC_UPDATE_V_SCROLL = 0x04, +
      +  SC_UPDATE_H_SCROLL = 0x08 +
      + }
       
      enum  {
      +  SC_WRAPVISUALFLAG_NONE = 0x0000, +SC_WRAPVISUALFLAG_END = 0x0001, +SC_WRAPVISUALFLAG_START = 0x0002, +
      +  SC_WRAPVISUALFLAG_MARGIN = 0x0004 +
      + }
       
      enum  { SC_WRAPVISUALFLAGLOC_DEFAULT = 0x0000, +SC_WRAPVISUALFLAGLOC_END_BY_TEXT = 0x0001, +SC_WRAPVISUALFLAGLOC_START_BY_TEXT = 0x0002 + }
       
      enum  { SCTD_LONGARROW = 0, +SCTD_STRIKEOUT = 1 + }
       
      enum  {
      +  SCVS_NONE = 0, +SCVS_RECTANGULARSELECTION = 1, +SCVS_USERACCESSIBLE = 2, +
      +  SCVS_NOWRAPLINESTART = 4 +
      + }
       
      enum  {
      +  SCWS_INVISIBLE = 0, +SCWS_VISIBLEALWAYS = 1, +SCWS_VISIBLEAFTERINDENT = 2, +
      +  SCWS_VISIBLEONLYININDENT = 3 +
      + }
       
      enum  { SC_EOL_CRLF = 0, +SC_EOL_CR = 1, +SC_EOL_LF = 2 + }
       
      enum  { SC_CP_DBCS = 1, +SC_CP_UTF8 = 65001 + }
       
      enum  {
      +  SC_MARK_CIRCLE = 0, +SC_MARK_ROUNDRECT = 1, +SC_MARK_ARROW = 2, +
      +  SC_MARK_SMALLRECT = 3, +SC_MARK_SHORTARROW = 4, +SC_MARK_EMPTY = 5, +
      +  SC_MARK_ARROWDOWN = 6, +SC_MARK_MINUS = 7, +SC_MARK_PLUS = 8, +
      +  SC_MARK_VLINE = 9, +SC_MARK_LCORNER = 10, +SC_MARK_TCORNER = 11, +
      +  SC_MARK_BOXPLUS = 12, +SC_MARK_BOXPLUSCONNECTED = 13, +SC_MARK_BOXMINUS = 14, +
      +  SC_MARK_BOXMINUSCONNECTED = 15, +SC_MARK_LCORNERCURVE = 16, +SC_MARK_TCORNERCURVE = 17, +
      +  SC_MARK_CIRCLEPLUS = 18, +SC_MARK_CIRCLEPLUSCONNECTED = 19, +SC_MARK_CIRCLEMINUS = 20, +
      +  SC_MARK_CIRCLEMINUSCONNECTED = 21, +SC_MARK_BACKGROUND = 22, +SC_MARK_DOTDOTDOT = 23, +
      +  SC_MARK_ARROWS = 24, +SC_MARK_PIXMAP = 25, +SC_MARK_FULLRECT = 26, +
      +  SC_MARK_LEFTRECT = 27, +SC_MARK_AVAILABLE = 28, +SC_MARK_UNDERLINE = 29, +
      +  SC_MARK_RGBAIMAGE = 30, +SC_MARK_BOOKMARK = 31, +SC_MARK_CHARACTER = 10000 +
      + }
       
      enum  {
      +  SC_MARKNUM_FOLDEREND = 25, +SC_MARKNUM_FOLDEROPENMID = 26, +SC_MARKNUM_FOLDERMIDTAIL = 27, +
      +  SC_MARKNUM_FOLDERTAIL = 28, +SC_MARKNUM_FOLDERSUB = 29, +SC_MARKNUM_FOLDER = 30, +
      +  SC_MARKNUM_FOLDEROPEN = 31, +SC_MASK_FOLDERS = 0xfe000000 +
      + }
       
      enum  {
      +  SC_MARGIN_SYMBOL = 0, +SC_MARGIN_NUMBER = 1, +SC_MARGIN_BACK = 2, +
      +  SC_MARGIN_FORE = 3, +SC_MARGIN_TEXT = 4, +SC_MARGIN_RTEXT = 5, +
      +  SC_MARGIN_COLOUR = 6 +
      + }
       
      enum  {
      +  STYLE_DEFAULT = 32, +STYLE_LINENUMBER = 33, +STYLE_BRACELIGHT = 34, +
      +  STYLE_BRACEBAD = 35, +STYLE_CONTROLCHAR = 36, +STYLE_INDENTGUIDE = 37, +
      +  STYLE_CALLTIP = 38, +STYLE_FOLDDISPLAYTEXT = 39, +STYLE_LASTPREDEFINED = 39, +
      +  STYLE_MAX = 255 +
      + }
       
      enum  {
      +  SC_CHARSET_ANSI = 0, +SC_CHARSET_DEFAULT = 1, +SC_CHARSET_BALTIC = 186, +
      +  SC_CHARSET_CHINESEBIG5 = 136, +SC_CHARSET_EASTEUROPE = 238, +SC_CHARSET_GB2312 = 134, +
      +  SC_CHARSET_GREEK = 161, +SC_CHARSET_HANGUL = 129, +SC_CHARSET_MAC = 77, +
      +  SC_CHARSET_OEM = 255, +SC_CHARSET_RUSSIAN = 204, +SC_CHARSET_OEM866 = 866, +
      +  SC_CHARSET_CYRILLIC = 1251, +SC_CHARSET_SHIFTJIS = 128, +SC_CHARSET_SYMBOL = 2, +
      +  SC_CHARSET_TURKISH = 162, +SC_CHARSET_JOHAB = 130, +SC_CHARSET_HEBREW = 177, +
      +  SC_CHARSET_ARABIC = 178, +SC_CHARSET_VIETNAMESE = 163, +SC_CHARSET_THAI = 222, +
      +  SC_CHARSET_8859_15 = 1000 +
      + }
       
      enum  {
      +  SC_CASE_MIXED = 0, +SC_CASE_UPPER = 1, +SC_CASE_LOWER = 2, +
      +  SC_CASE_CAMEL = 3 +
      + }
       
      enum  {
      +  SC_IV_NONE = 0, +SC_IV_REAL = 1, +SC_IV_LOOKFORWARD = 2, +
      +  SC_IV_LOOKBOTH = 3 +
      + }
       
      enum  {
      +  INDIC_PLAIN = 0, +INDIC_SQUIGGLE = 1, +INDIC_TT = 2, +
      +  INDIC_DIAGONAL = 3, +INDIC_STRIKE = 4, +INDIC_HIDDEN = 5, +
      +  INDIC_BOX = 6, +INDIC_ROUNDBOX = 7, +INDIC_STRAIGHTBOX = 8, +
      +  INDIC_DASH = 9, +INDIC_DOTS = 10, +INDIC_SQUIGGLELOW = 11, +
      +  INDIC_DOTBOX = 12, +INDIC_SQUIGGLEPIXMAP = 13, +INDIC_COMPOSITIONTHICK = 14, +
      +  INDIC_COMPOSITIONTHIN = 15, +INDIC_FULLBOX = 16, +INDIC_TEXTFORE = 17, +
      +  INDIC_POINT = 18, +INDIC_POINTCHARACTER = 19, +INDIC_GRADIENT = 20, +
      +  INDIC_GRADIENTCENTRE = 21, +INDIC_IME = 32, +INDIC_IME_MAX = 35, +
      +  INDIC_CONTAINER = 8, +INDIC_MAX = 35, +INDIC0_MASK = 0x20, +
      +  INDIC1_MASK = 0x40, +INDIC2_MASK = 0x80, +INDICS_MASK = 0xe0, +
      +  SC_INDICVALUEBIT = 0x01000000, +SC_INDICVALUEMASK = 0x00ffffff, +SC_INDICFLAG_VALUEBEFORE = 1 +
      + }
       
      enum  {
      +  SC_PRINT_NORMAL = 0, +SC_PRINT_INVERTLIGHT = 1, +SC_PRINT_BLACKONWHITE = 2, +
      +  SC_PRINT_COLOURONWHITE = 3, +SC_PRINT_COLOURONWHITEDEFAULTBG = 4, +SC_PRINT_SCREENCOLOURS = 5 +
      + }
       
      enum  {
      +  SCFIND_WHOLEWORD = 2, +SCFIND_MATCHCASE = 4, +SCFIND_WORDSTART = 0x00100000, +
      +  SCFIND_REGEXP = 0x00200000, +SCFIND_POSIX = 0x00400000, +SCFIND_CXX11REGEX = 0x00800000 +
      + }
       
      enum  { SC_FOLDDISPLAYTEXT_HIDDEN = 0, +SC_FOLDDISPLAYTEXT_STANDARD = 1, +SC_FOLDDISPLAYTEXT_BOXED = 2 + }
       
      enum  {
      +  SC_FOLDLEVELBASE = 0x00400, +SC_FOLDLEVELWHITEFLAG = 0x01000, +SC_FOLDLEVELHEADERFLAG = 0x02000, +
      +  SC_FOLDLEVELNUMBERMASK = 0x00fff +
      + }
       
      enum  {
      +  SC_FOLDFLAG_LINEBEFORE_EXPANDED = 0x0002, +SC_FOLDFLAG_LINEBEFORE_CONTRACTED = 0x0004, +SC_FOLDFLAG_LINEAFTER_EXPANDED = 0x0008, +
      +  SC_FOLDFLAG_LINEAFTER_CONTRACTED = 0x0010, +SC_FOLDFLAG_LEVELNUMBERS = 0x0040, +SC_FOLDFLAG_LINESTATE = 0x0080 +
      + }
       
      enum  { SC_LINE_END_TYPE_DEFAULT = 0, +SC_LINE_END_TYPE_UNICODE = 1 + }
       
      enum  { SC_TIME_FOREVER = 10000000 + }
       
      enum  {
      +  SC_WRAP_NONE = 0, +SC_WRAP_WORD = 1, +SC_WRAP_CHAR = 2, +
      +  SC_WRAP_WHITESPACE = 3 +
      + }
       
      enum  {
      +  SC_WRAPINDENT_FIXED = 0, +SC_WRAPINDENT_SAME = 1, +SC_WRAPINDENT_INDENT = 2, +
      +  SC_WRAPINDENT_DEEPINDENT = 3 +
      + }
       
      enum  {
      +  SC_CACHE_NONE = 0, +SC_CACHE_CARET = 1, +SC_CACHE_PAGE = 2, +
      +  SC_CACHE_DOCUMENT = 3 +
      + }
       
      enum  { SC_PHASES_ONE = 0, +SC_PHASES_TWO = 1, +SC_PHASES_MULTIPLE = 2 + }
       
      enum  {
      +  ANNOTATION_HIDDEN = 0, +ANNOTATION_STANDARD = 1, +ANNOTATION_BOXED = 2, +
      +  ANNOTATION_INDENTED = 3 +
      + }
       
      enum  {
      +  EDGE_NONE = 0, +EDGE_LINE = 1, +EDGE_BACKGROUND = 2, +
      +  EDGE_MULTILINE = 3 +
      + }
       
      enum  {
      +  SC_CURSORNORMAL = -1, +SC_CURSORARROW = 2, +SC_CURSORWAIT = 4, +
      +  SC_CURSORREVERSEARROW = 7 +
      + }
       
      enum  { UNDO_MAY_COALESCE = 1 + }
       
      enum  { VISIBLE_SLOP = 0x01, +VISIBLE_STRICT = 0x04 + }
       
      enum  {
      +  CARET_SLOP = 0x01, +CARET_STRICT = 0x04, +CARET_JUMPS = 0x10, +
      +  CARET_EVEN = 0x08 +
      + }
       
      enum  { CARETSTYLE_INVISIBLE = 0, +CARETSTYLE_LINE = 1, +CARETSTYLE_BLOCK = 2 + }
       
      enum  {
      +  SC_MOD_INSERTTEXT = 0x1, +SC_MOD_DELETETEXT = 0x2, +SC_MOD_CHANGESTYLE = 0x4, +
      +  SC_MOD_CHANGEFOLD = 0x8, +SC_PERFORMED_USER = 0x10, +SC_PERFORMED_UNDO = 0x20, +
      +  SC_PERFORMED_REDO = 0x40, +SC_MULTISTEPUNDOREDO = 0x80, +SC_LASTSTEPINUNDOREDO = 0x100, +
      +  SC_MOD_CHANGEMARKER = 0x200, +SC_MOD_BEFOREINSERT = 0x400, +SC_MOD_BEFOREDELETE = 0x800, +
      +  SC_MULTILINEUNDOREDO = 0x1000, +SC_STARTACTION = 0x2000, +SC_MOD_CHANGEINDICATOR = 0x4000, +
      +  SC_MOD_CHANGELINESTATE = 0x8000, +SC_MOD_CHANGEMARGIN = 0x10000, +SC_MOD_CHANGEANNOTATION = 0x20000, +
      +  SC_MOD_CONTAINER = 0x40000, +SC_MOD_LEXERSTATE = 0x80000, +SC_MOD_INSERTCHECK = 0x100000, +
      +  SC_MOD_CHANGETABSTOPS = 0x200000, +SC_MODEVENTMASKALL = 0x3fffff +
      + }
       
      enum  {
      +  SCK_DOWN = 300, +SCK_UP = 301, +SCK_LEFT = 302, +
      +  SCK_RIGHT = 303, +SCK_HOME = 304, +SCK_END = 305, +
      +  SCK_PRIOR = 306, +SCK_NEXT = 307, +SCK_DELETE = 308, +
      +  SCK_INSERT = 309, +SCK_ESCAPE = 7, +SCK_BACK = 8, +
      +  SCK_TAB = 9, +SCK_RETURN = 13, +SCK_ADD = 310, +
      +  SCK_SUBTRACT = 311, +SCK_DIVIDE = 312, +SCK_WIN = 313, +
      +  SCK_RWIN = 314, +SCK_MENU = 315 +
      + }
       
      enum  {
      +  SCMOD_NORM = 0, +SCMOD_SHIFT = 1, +SCMOD_CTRL = 2, +
      +  SCMOD_ALT = 4, +SCMOD_SUPER = 8, +SCMOD_META = 16 +
      + }
       
      enum  {
      +  SCLEX_CONTAINER = 0, +SCLEX_NULL = 1, +SCLEX_PYTHON = 2, +
      +  SCLEX_CPP = 3, +SCLEX_HTML = 4, +SCLEX_XML = 5, +
      +  SCLEX_PERL = 6, +SCLEX_SQL = 7, +SCLEX_VB = 8, +
      +  SCLEX_PROPERTIES = 9, +SCLEX_ERRORLIST = 10, +SCLEX_MAKEFILE = 11, +
      +  SCLEX_BATCH = 12, +SCLEX_LATEX = 14, +SCLEX_LUA = 15, +
      +  SCLEX_DIFF = 16, +SCLEX_CONF = 17, +SCLEX_PASCAL = 18, +
      +  SCLEX_AVE = 19, +SCLEX_ADA = 20, +SCLEX_LISP = 21, +
      +  SCLEX_RUBY = 22, +SCLEX_EIFFEL = 23, +SCLEX_EIFFELKW = 24, +
      +  SCLEX_TCL = 25, +SCLEX_NNCRONTAB = 26, +SCLEX_BULLANT = 27, +
      +  SCLEX_VBSCRIPT = 28, +SCLEX_ASP = SCLEX_HTML, +SCLEX_PHP = SCLEX_HTML, +
      +  SCLEX_BAAN = 31, +SCLEX_MATLAB = 32, +SCLEX_SCRIPTOL = 33, +
      +  SCLEX_ASM = 34, +SCLEX_CPPNOCASE = 35, +SCLEX_FORTRAN = 36, +
      +  SCLEX_F77 = 37, +SCLEX_CSS = 38, +SCLEX_POV = 39, +
      +  SCLEX_LOUT = 40, +SCLEX_ESCRIPT = 41, +SCLEX_PS = 42, +
      +  SCLEX_NSIS = 43, +SCLEX_MMIXAL = 44, +SCLEX_CLW = 45, +
      +  SCLEX_CLWNOCASE = 46, +SCLEX_LOT = 47, +SCLEX_YAML = 48, +
      +  SCLEX_TEX = 49, +SCLEX_METAPOST = 50, +SCLEX_POWERBASIC = 51, +
      +  SCLEX_FORTH = 52, +SCLEX_ERLANG = 53, +SCLEX_OCTAVE = 54, +
      +  SCLEX_MSSQL = 55, +SCLEX_VERILOG = 56, +SCLEX_KIX = 57, +
      +  SCLEX_GUI4CLI = 58, +SCLEX_SPECMAN = 59, +SCLEX_AU3 = 60, +
      +  SCLEX_APDL = 61, +SCLEX_BASH = 62, +SCLEX_ASN1 = 63, +
      +  SCLEX_VHDL = 64, +SCLEX_CAML = 65, +SCLEX_BLITZBASIC = 66, +
      +  SCLEX_PUREBASIC = 67, +SCLEX_HASKELL = 68, +SCLEX_PHPSCRIPT = 69, +
      +  SCLEX_TADS3 = 70, +SCLEX_REBOL = 71, +SCLEX_SMALLTALK = 72, +
      +  SCLEX_FLAGSHIP = 73, +SCLEX_CSOUND = 74, +SCLEX_FREEBASIC = 75, +
      +  SCLEX_INNOSETUP = 76, +SCLEX_OPAL = 77, +SCLEX_SPICE = 78, +
      +  SCLEX_D = 79, +SCLEX_CMAKE = 80, +SCLEX_GAP = 81, +
      +  SCLEX_PLM = 82, +SCLEX_PROGRESS = 83, +SCLEX_ABAQUS = 84, +
      +  SCLEX_ASYMPTOTE = 85, +SCLEX_R = 86, +SCLEX_MAGIK = 87, +
      +  SCLEX_POWERSHELL = 88, +SCLEX_MYSQL = 89, +SCLEX_PO = 90, +
      +  SCLEX_TAL = 91, +SCLEX_COBOL = 92, +SCLEX_TACL = 93, +
      +  SCLEX_SORCUS = 94, +SCLEX_POWERPRO = 95, +SCLEX_NIMROD = 96, +
      +  SCLEX_SML = 97, +SCLEX_MARKDOWN = 98, +SCLEX_TXT2TAGS = 99, +
      +  SCLEX_A68K = 100, +SCLEX_MODULA = 101, +SCLEX_COFFEESCRIPT = 102, +
      +  SCLEX_TCMD = 103, +SCLEX_AVS = 104, +SCLEX_ECL = 105, +
      +  SCLEX_OSCRIPT = 106, +SCLEX_VISUALPROLOG = 107, +SCLEX_LITERATEHASKELL = 108, +
      +  SCLEX_STTXT = 109, +SCLEX_KVIRC = 110, +SCLEX_RUST = 111, +
      +  SCLEX_DMAP = 112, +SCLEX_AS = 113, +SCLEX_DMIS = 114, +
      +  SCLEX_REGISTRY = 115, +SCLEX_BIBTEX = 116, +SCLEX_SREC = 117, +
      +  SCLEX_IHEX = 118, +SCLEX_TEHEX = 119, +SCLEX_JSON = 120, +
      +  SCLEX_EDIFACT = 121, +SCLEX_INDENT = 122, +SCLEX_MAXIMA = 123, +
      +  SCLEX_STATA = 124, +SCLEX_SAS = 125 +
      + }
       
      enum  { SC_WEIGHT_NORMAL = 400, +SC_WEIGHT_SEMIBOLD = 600, +SC_WEIGHT_BOLD = 700 + }
       
      enum  {
      +  SC_TECHNOLOGY_DEFAULT = 0, +SC_TECHNOLOGY_DIRECTWRITE = 1, +SC_TECHNOLOGY_DIRECTWRITERETAIN = 2, +
      +  SC_TECHNOLOGY_DIRECTWRITEDC = 3 +
      + }
       
      enum  { SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE = 0, +SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE = 1 + }
       
      enum  { SC_FONT_SIZE_MULTIPLIER = 100 + }
       
      enum  { SC_FOLDACTION_CONTRACT = 0, +SC_FOLDACTION_EXPAND = 1, +SC_FOLDACTION_TOGGLE = 2 + }
       
      enum  { SC_AUTOMATICFOLD_SHOW = 0x0001, +SC_AUTOMATICFOLD_CLICK = 0x0002, +SC_AUTOMATICFOLD_CHANGE = 0x0004 + }
       
      enum  { SC_ORDER_PRESORTED = 0, +SC_ORDER_PERFORMSORT = 1, +SC_ORDER_CUSTOM = 2 + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Signals

      void QSCN_SELCHANGED (bool yes)
       
      void SCN_AUTOCCANCELLED ()
       
      void SCN_AUTOCCHARDELETED ()
       
      void SCN_AUTOCCOMPLETED (const char *selection, int position, int ch, int method)
       
      void SCN_AUTOCSELECTION (const char *selection, int position, int ch, int method)
       
      +void SCN_AUTOCSELECTION (const char *selection, int position)
       
      void SCN_AUTOCSELECTIONCHANGE (const char *selection, int id, int position)
       
      +void SCEN_CHANGE ()
       
      void SCN_CALLTIPCLICK (int direction)
       
      void SCN_CHARADDED (int charadded)
       
      void SCN_DOUBLECLICK (int position, int line, int modifiers)
       
      void SCN_DWELLEND (int position, int x, int y)
       
      void SCN_DWELLSTART (int position, int x, int y)
       
      +void SCN_FOCUSIN ()
       
      +void SCN_FOCUSOUT ()
       
      void SCN_HOTSPOTCLICK (int position, int modifiers)
       
      void SCN_HOTSPOTDOUBLECLICK (int position, int modifiers)
       
      void SCN_HOTSPOTRELEASECLICK (int position, int modifiers)
       
      void SCN_INDICATORCLICK (int position, int modifiers)
       
      void SCN_INDICATORRELEASE (int position, int modifiers)
       
      void SCN_MACRORECORD (unsigned int, unsigned long, void *)
       
      void SCN_MARGINCLICK (int position, int modifiers, int margin)
       
      void SCN_MARGINRIGHTCLICK (int position, int modifiers, int margin)
       
      +void SCN_MODIFIED (int, int, const char *, int, int, int, int, int, int, int)
       
      void SCN_MODIFYATTEMPTRO ()
       
      +void SCN_NEEDSHOWN (int, int)
       
      void SCN_PAINTED ()
       
      void SCN_SAVEPOINTLEFT ()
       
      void SCN_SAVEPOINTREACHED ()
       
      void SCN_STYLENEEDED (int position)
       
      void SCN_URIDROPPED (const QUrl &url)
       
      void SCN_UPDATEUI (int updated)
       
      void SCN_USERLISTSELECTION (const char *selection, int id, int ch, int method, int position)
       
      +void SCN_USERLISTSELECTION (const char *selection, int id, int ch, int method)
       
      +void SCN_USERLISTSELECTION (const char *selection, int id)
       
      +void SCN_ZOOM ()
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

      QsciScintillaBase (QWidget *parent=0)
       
      +virtual ~QsciScintillaBase ()
       
      void replaceHorizontalScrollBar (QScrollBar *scrollBar)
       
      void replaceVerticalScrollBar (QScrollBar *scrollBar)
       
      long SendScintilla (unsigned int msg, unsigned long wParam=0, long lParam=0) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, void *lParam) const
       
      +long SendScintilla (unsigned int msg, uintptr_t wParam, const char *lParam) const
       
      +long SendScintilla (unsigned int msg, const char *lParam) const
       
      +long SendScintilla (unsigned int msg, const char *wParam, const char *lParam) const
       
      +long SendScintilla (unsigned int msg, long wParam) const
       
      +long SendScintilla (unsigned int msg, int wParam) const
       
      +long SendScintilla (unsigned int msg, long cpMin, long cpMax, char *lpstrText) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, const QColor &col) const
       
      +long SendScintilla (unsigned int msg, const QColor &col) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, QPainter *hdc, const QRect &rc, long cpMin, long cpMax) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, const QPixmap &lParam) const
       
      +long SendScintilla (unsigned int msg, unsigned long wParam, const QImage &lParam) const
       
      +void * SendScintillaPtrResult (unsigned int msg) const
       
      + + + + + +

      +Static Public Member Functions

      static QsciScintillaBasepool ()
       
      +static int commandKey (int qt_key, int &modifiers)
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Protected Member Functions

      virtual bool canInsertFromMimeData (const QMimeData *source) const
       
      virtual QByteArray fromMimeData (const QMimeData *source, bool &rectangular) const
       
      virtual QMimeData * toMimeData (const QByteArray &text, bool rectangular) const
       
      +virtual void changeEvent (QEvent *e)
       
      +virtual void contextMenuEvent (QContextMenuEvent *e)
       
      +virtual void dragEnterEvent (QDragEnterEvent *e)
       
      +virtual void dragLeaveEvent (QDragLeaveEvent *e)
       
      +virtual void dragMoveEvent (QDragMoveEvent *e)
       
      +virtual void dropEvent (QDropEvent *e)
       
      +virtual void focusInEvent (QFocusEvent *e)
       
      +virtual void focusOutEvent (QFocusEvent *e)
       
      +virtual bool focusNextPrevChild (bool next)
       
      +virtual void keyPressEvent (QKeyEvent *e)
       
      +virtual void inputMethodEvent (QInputMethodEvent *event)
       
      +virtual QVariant inputMethodQuery (Qt::InputMethodQuery query) const
       
      +virtual void mouseDoubleClickEvent (QMouseEvent *e)
       
      +virtual void mouseMoveEvent (QMouseEvent *e)
       
      +virtual void mousePressEvent (QMouseEvent *e)
       
      +virtual void mouseReleaseEvent (QMouseEvent *e)
       
      +virtual void paintEvent (QPaintEvent *e)
       
      +virtual void resizeEvent (QResizeEvent *e)
       
      +virtual void scrollContentsBy (int dx, int dy)
       
      +void setScrollBars ()
       
      +QByteArray textAsBytes (const QString &text) const
       
      +QString bytesAsText (const char *bytes, int size) const
       
      +bool contextMenuNeeded (int x, int y) const
       
      +

      Detailed Description

      +

      The QsciScintillaBase class implements the Scintilla editor widget and its low-level API.

      +

      Scintilla (http://www.scintilla.org) is a powerful C++ editor class that supports many features including syntax styling, error indicators, code completion and call tips. It is particularly useful as a programmer's editor.

      +

      QsciScintillaBase is a port to Qt of Scintilla. It implements the standard Scintilla API which consists of a number of messages each taking up to two arguments.

      +

      See QsciScintilla for the implementation of a higher level API that is more consistent with the rest of the Qt toolkit.

      +

      Member Enumeration Documentation

      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      The low-level Scintilla API is implemented as a set of messages each of which takes up to two parameters (wParam and lParam) and optionally return a value. This enum defines all the possible messages.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      SCI_ADDTEXT 

      This message appends some text to the end of the document. wParam is the length of the text. lParam is the text to be appended.

      +
      SCI_GETCURRENTPOS 

      This message returns the current position.

          \sa SCI_SETCURRENTPOS 
      +
      SCI_GETANCHOR 

      This message returns the anchor.

          \sa SCI_SETANCHOR 
      +
      SCI_SETSAVEPOINT 

      This message marks the current state of the text as the the save point. This is usually done when the text is saved or loaded.

      +
      See also
      SCN_SAVEPOINTREACHED(), SCN_SAVEPOINTLEFT()
      +
      SCI_MARKERLINEFROMHANDLE 

      This message returns the line that contains a particular instance of a marker. wParam is the handle of the marker.

      +
      See also
      SCI_MARKERADD
      +
      SCI_MARKERDELETEHANDLE 

      This message removes a particular instance of a marker. wParam is the handle of the marker.

      +
      See also
      SCI_MARKERADD
      +
      SCI_GOTOPOS 

      This message clears the current selection and sets the current position. wParam is the new current position.

      +
      See also
      SCI_SETCURRENTPOS
      +
      SCI_SETANCHOR 

      This message sets the anchor. wParam is the new anchor.

      +
      See also
      SCI_GETANCHOR
      +
      SCI_GETENDSTYLED 

      This message returns the character position of the start of the text that needs to be syntax styled.

      +
      See also
      SCN_STYLENEEDED()
      +
      SCI_MARKERDEFINE 

      This message sets the symbol used to draw one of 32 markers. Some markers have pre-defined uses, see the SC_MARKNUM_* values. wParam is the number of the marker. lParam is the marker symbol and is one of the SC_MARK_* values.

      +
      See also
      SCI_MARKERADD, SCI_MARKERDEFINEPIXMAP, SCI_MARKERDEFINERGBAIMAGE
      +
      SCI_MARKERSETFORE 

      This message sets the foreground colour used to draw a marker. A colour is represented as a 24 bit value. The 8 least significant bits correspond to red, the middle 8 bits correspond to green, and the 8 most significant bits correspond to blue. The default value is 0x000000. wParam is the number of the marker. lParam is the colour.

      +
      See also
      SCI_MARKERSETBACK
      +
      SCI_MARKERSETBACK 

      This message sets the background colour used to draw a marker. A colour is represented as a 24 bit value. The 8 least significant bits correspond to red, the middle 8 bits correspond to green, and the 8 most significant bits correspond to blue. The default value is 0xffffff. wParam is the number of the marker. lParam is the colour.

      +
      See also
      SCI_MARKERSETFORE
      +
      SCI_MARKERADD 

      This message adds a marker to a line. A handle for the marker is returned which can be used to track the marker's position. wParam is the line number. lParam is the number of the marker.

      +
      See also
      SCI_MARKERDELETE, SCI_MARKERDELETEALL, SCI_MARKERDELETEHANDLE
      +
      SCI_MARKERDELETE 

      This message deletes a marker from a line. wParam is the line number. lParam is the number of the marker.

      +
      See also
      SCI_MARKERADD, SCI_MARKERDELETEALL
      +
      SCI_MARKERDELETEALL 

      This message deletes all occurences of a marker. wParam is the number of the marker. If wParam is -1 then all markers are removed.

      +
      See also
      SCI_MARKERADD, SCI_MARKERDELETE
      +
      SCI_MARKERGET 

      This message returns the 32 bit mask of markers at a line. wParam is the line number.

      +
      SCI_MARKERNEXT 

      This message looks for the next line to contain at least one marker contained in a 32 bit mask of markers and returns the line number. wParam is the line number to start the search from. lParam is the mask of markers to search for.

      +
      See also
      SCI_MARKERPREVIOUS
      +
      SCI_MARKERPREVIOUS 

      This message looks for the previous line to contain at least one marker contained in a 32 bit mask of markers and returns the line number. wParam is the line number to start the search from. lParam is the mask of markers to search for.

      +
      See also
      SCI_MARKERNEXT
      +
      SCI_MARKERDEFINEPIXMAP 

      This message sets the symbol used to draw one of the 32 markers to a pixmap. Pixmaps use the SC_MARK_PIXMAP marker symbol. wParam is the number of the marker. lParam is a pointer to a QPixmap instance. Note that in other ports of Scintilla this is a pointer to either raw or textual XPM image data.

      +
      See also
      SCI_MARKERDEFINE, SCI_MARKERDEFINERGBAIMAGE
      +
      SCI_SETMARGINTYPEN 

      This message sets what can be displayed in a margin. wParam is the number of the margin. lParam is the logical or of the SC_MARGIN_* values.

      +
      See also
      SCI_GETMARGINTYPEN
      +
      SCI_GETMARGINTYPEN 

      This message returns what can be displayed in a margin. wParam is the number of the margin.

      +
      See also
      SCI_SETMARGINTYPEN
      +
      SCI_SETMARGINWIDTHN 

      This message sets the width of a margin in pixels. wParam is the number of the margin. lParam is the new margin width.

      +
      See also
      SCI_GETMARGINWIDTHN
      +
      SCI_GETMARGINWIDTHN 

      This message returns the width of a margin in pixels. wParam is the number of the margin.

      +
      See also
      SCI_SETMARGINWIDTHN
      +
      SCI_SETMARGINMASKN 

      This message sets the mask of a margin. The mask is a 32 value with one bit for each possible marker. If a bit is set then the corresponding marker is displayed. By default, all markers are displayed. wParam is the number of the margin. lParam is the new margin mask.

      +
      See also
      SCI_GETMARGINMASKN, SCI_MARKERDEFINE
      +
      SCI_GETMARGINMASKN 

      This message returns the mask of a margin. wParam is the number of the margin.

      +
      See also
      SCI_SETMARGINMASKN
      +
      SCI_SETMARGINSENSITIVEN 

      This message sets the sensitivity of a margin to mouse clicks. wParam is the number of the margin. lParam is non-zero to make the margin sensitive to mouse clicks. When the mouse is clicked the SCN_MARGINCLICK() signal is emitted.

      +
      See also
      SCI_GETMARGINSENSITIVEN, SCN_MARGINCLICK()
      +
      SCI_GETMARGINSENSITIVEN 

      This message returns the sensitivity of a margin to mouse clicks. wParam is the number of the margin.

      +
      See also
      SCI_SETMARGINSENSITIVEN, SCN_MARGINCLICK()
      +
      SCI_SETMARGINCURSORN 

      This message sets the cursor shape displayed over a margin. wParam is the number of the margin. lParam is the cursor shape, normally either SC_CURSORARROW or SC_CURSORREVERSEARROW. Note that, currently, QScintilla implements both of these as Qt::ArrowCursor.

      +
      See also
      SCI_GETMARGINCURSORN
      +
      SCI_GETMARGINCURSORN 

      This message returns the cursor shape displayed over a margin. wParam is the number of the margin.

      +
      See also
      SCI_SETMARGINCURSORN
      +
      SCI_GETREADONLY 

      This message returns a non-zero value if the document is read-only.

          \sa SCI_SETREADONLY 
      +
      SCI_SETCURRENTPOS 

      This message sets the current position. wParam is the new current position.

      +
      See also
      SCI_GETCURRENTPOS
      +
      SCI_GETMODIFY 

      This message returns a non-zero value if the document has been modified.

      +
      SCI_SETREADONLY 

      This message sets the read-only state of the document. wParam is the new read-only state of the document.

      +
      See also
      SCI_GETREADONLY
      +
      SCI_EMPTYUNDOBUFFER 

      This message empties the undo buffer.

      +
      SCI_SETTEXT 

      This message sets the text of the document. wParam is unused. lParam is the new text of the document.

      +
      See also
      SCI_GETTEXT
      +
      SCI_GETTEXT 

      This message gets the text of the document. wParam is size of the buffer that the text is copied to. lParam is the address of the buffer that the text is copied to.

      +
      See also
      SCI_SETTEXT
      +
      SCI_GETTEXTLENGTH 

      This message returns the length of the document.

      +
      SCI_AUTOCSETMAXHEIGHT 

      This message is not implemented.

      +
      SCI_TEXTWIDTH 

      This message returns the width of some text when rendered in a particular style. wParam is the style number and is one of the STYLE_* values or one of the styles defined by a lexer. lParam is a pointer to the text.

      +
      SCI_REGISTERIMAGE 

      This message takes a copy of an image and registers it so that it can be refered to by a unique integer identifier. wParam is the image's identifier. lParam is a pointer to a QPixmap instance. Note that in other ports of Scintilla this is a pointer to either raw or textual XPM image data.

      +
      See also
      SCI_CLEARREGISTEREDIMAGES, SCI_REGISTERRGBAIMAGE
      +
      SCI_CLEARREGISTEREDIMAGES 

      This message de-registers all currently registered images.

          \sa SCI_REGISTERIMAGE, SCI_REGISTERRGBAIMAGE 
      +
      SCI_COPYALLOWLINE 

      This message copies the selection. If the selection is empty then copy the line with the caret.

      +
      SCI_GETCHARACTERPOINTER 

      This message returns a pointer to the document text. Any subsequent message will invalidate the pointer.

      +
      SCI_RGBAIMAGESETWIDTH 

      This message sets the width of an RGBA image specified by a future call to SCI_MARKERDEFINERGBAIMAGE or SCI_REGISTERRGBAIMAGE.

      +
      See also
      SCI_RGBAIMAGESETHEIGHT, SCI_MARKERDEFINERGBAIMAGE, SCI_REGISTERRGBAIMAGE.
      +
      SCI_RGBAIMAGESETHEIGHT 

      This message sets the height of an RGBA image specified by a future call to SCI_MARKERDEFINERGBAIMAGE or SCI_REGISTERRGBAIMAGE.

      +
      See also
      SCI_RGBAIMAGESETWIDTH, SCI_MARKERDEFINERGBAIMAGE, SCI_REGISTERRGBAIMAGE.
      +
      SCI_MARKERDEFINERGBAIMAGE 

      This message sets the symbol used to draw one of the 32 markers to an RGBA image. RGBA images use the SC_MARK_RGBAIMAGE marker symbol. wParam is the number of the marker. lParam is a pointer to a QImage instance. Note that in other ports of Scintilla this is a pointer to raw RGBA image data.

      +
      See also
      SCI_MARKERDEFINE, SCI_MARKERDEFINEPIXMAP
      +
      SCI_REGISTERRGBAIMAGE 

      This message takes a copy of an image and registers it so that it can be refered to by a unique integer identifier. wParam is the image's identifier. lParam is a pointer to a QImage instance. Note that in other ports of Scintilla this is a pointer to raw RGBA image data.

      +
      See also
      SCI_CLEARREGISTEREDIMAGES, SCI_REGISTERIMAGE
      +
      SCI_SETLEXER 

      This message sets the number of the lexer to use for syntax styling. wParam is the number of the lexer and is one of the SCLEX_* values.

      +
      SCI_GETLEXER 

      This message returns the number of the lexer being used for syntax styling.

      +
      SCI_SETLEXERLANGUAGE 

      This message sets the name of the lexer to use for syntax styling. wParam is unused. lParam is the name of the lexer.

      +
      + +
      +
      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the different selection modes.

      +
      See also
      SCI_GETSELECTIONMODE, SCI_SETSELECTIONMODE
      + +
      +
      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the different marker symbols.

      +
      See also
      SCI_MARKERDEFINE
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      SC_MARK_CIRCLE 

      A circle.

      +
      SC_MARK_ROUNDRECT 

      A rectangle.

      +
      SC_MARK_ARROW 

      A triangle pointing to the right.

      +
      SC_MARK_SMALLRECT 

      A smaller rectangle.

      +
      SC_MARK_SHORTARROW 

      An arrow pointing to the right.

      +
      SC_MARK_EMPTY 

      An invisible marker that allows code to track the movement of lines.

      +
      SC_MARK_ARROWDOWN 

      A triangle pointing down.

      +
      SC_MARK_MINUS 

      A drawn minus sign.

      +
      SC_MARK_PLUS 

      A drawn plus sign.

      +
      SC_MARK_VLINE 

      A vertical line drawn in the background colour.

      +
      SC_MARK_LCORNER 

      A bottom left corner drawn in the background colour.

      +
      SC_MARK_TCORNER 

      A vertical line with a centre right horizontal line drawn in the background colour.

      +
      SC_MARK_BOXPLUS 

      A drawn plus sign in a box.

      +
      SC_MARK_BOXPLUSCONNECTED 

      A drawn plus sign in a connected box.

      +
      SC_MARK_BOXMINUS 

      A drawn minus sign in a box.

      +
      SC_MARK_BOXMINUSCONNECTED 

      A drawn minus sign in a connected box.

      +
      SC_MARK_LCORNERCURVE 

      A rounded bottom left corner drawn in the background colour.

      +
      SC_MARK_TCORNERCURVE 

      A vertical line with a centre right curved line drawn in the background colour.

      +
      SC_MARK_CIRCLEPLUS 

      A drawn plus sign in a circle.

      +
      SC_MARK_CIRCLEPLUSCONNECTED 

      A drawn plus sign in a connected box.

      +
      SC_MARK_CIRCLEMINUS 

      A drawn minus sign in a circle.

      +
      SC_MARK_CIRCLEMINUSCONNECTED 

      A drawn minus sign in a connected circle.

      +
      SC_MARK_BACKGROUND 

      No symbol is drawn but the line is drawn with the same background color as the marker's.

      +
      SC_MARK_DOTDOTDOT 

      Three drawn dots.

      +
      SC_MARK_ARROWS 

      Three drawn arrows pointing right.

      +
      SC_MARK_PIXMAP 

      An XPM format pixmap.

      +
      SC_MARK_FULLRECT 

      A full rectangle (ie. the margin background) using the marker's background color.

      +
      SC_MARK_LEFTRECT 

      A left rectangle (ie. the left part of the margin background) using the marker's background color.

      +
      SC_MARK_AVAILABLE 

      The value is available for plugins to use.

      +
      SC_MARK_UNDERLINE 

      The line is underlined using the marker's background color.

      +
      SC_MARK_RGBAIMAGE 

      A RGBA format image.

      +
      SC_MARK_BOOKMARK 

      A bookmark.

      +
      SC_MARK_CHARACTER 

      Characters can be used as symbols by adding this to the ASCII value of the character.

      +
      + +
      +
      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines what can be displayed in a margin.

      +
      See also
      SCI_GETMARGINTYPEN, SCI_SETMARGINTYPEN
      + + + + + + + + +
      Enumerator
      SC_MARGIN_SYMBOL 

      The margin can display symbols. Note that all margins can display symbols.

      +
      SC_MARGIN_NUMBER 

      The margin will display line numbers.

      +
      SC_MARGIN_BACK 

      The margin's background color will be set to the default background color.

      +
      SC_MARGIN_FORE 

      The margin's background color will be set to the default foreground color.

      +
      SC_MARGIN_TEXT 

      The margin will display text.

      +
      SC_MARGIN_RTEXT 

      The margin will display right justified text.

      +
      SC_MARGIN_COLOUR 

      The margin's background color will be set to the color set by SCI_SETMARGINBACKN.

      +
      + +
      +
      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the different indentation guide views.

      +
      See also
      SCI_GETINDENTATIONGUIDES, SCI_SETINDENTATIONGUIDES
      + + + + + +
      Enumerator
      SC_IV_NONE 

      No indentation guides are shown.

      +
      SC_IV_REAL 

      Indentation guides are shown inside real indentation white space.

      +
      SC_IV_LOOKFORWARD 

      Indentation guides are shown beyond the actual indentation up to the level of the next non-empty line. If the previous non-empty line was a fold header then indentation guides are shown for one more level of indent than that line. This setting is good for Python.

      +
      SC_IV_LOOKBOTH 

      Indentation guides are shown beyond the actual indentation up to the level of the next non-empty line or previous non-empty line whichever is the greater. This setting is good for most languages.

      +
      + +
      +
      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      + +

      This enum defines the different modifier keys.

      + + + + + + + +
      Enumerator
      SCMOD_NORM 

      No modifier key.

      +
      SCMOD_SHIFT 

      Shift key.

      +
      SCMOD_CTRL 

      Control key (the Command key on OS/X, the Ctrl key on other platforms).

      +
      SCMOD_ALT 

      Alt key.

      +
      SCMOD_SUPER 

      This is the same as SCMOD_META on all platforms.

      +
      SCMOD_META 

      Meta key (the Ctrl key on OS/X, the Windows key on other platforms).

      +
      + +
      +
      + +

      ◆ anonymous enum

      + +
      +
      + + + + +
      anonymous enum
      +
      +

      This enum defines the different language lexers.

      +
      See also
      SCI_GETLEXER, SCI_SETLEXER
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Enumerator
      SCLEX_CONTAINER 

      No lexer is selected and the SCN_STYLENEEDED signal is emitted so that the application can style the text as needed. This is the default.

      +
      SCLEX_NULL 

      Select the null lexer that does no syntax styling.

      +
      SCLEX_PYTHON 

      Select the Python lexer.

      +
      SCLEX_CPP 

      Select the C++ lexer.

      +
      SCLEX_HTML 

      Select the HTML lexer.

      +
      SCLEX_XML 

      Select the XML lexer.

      +
      SCLEX_PERL 

      Select the Perl lexer.

      +
      SCLEX_SQL 

      Select the SQL lexer.

      +
      SCLEX_VB 

      Select the Visual Basic lexer.

      +
      SCLEX_PROPERTIES 

      Select the lexer for properties style files.

      +
      SCLEX_ERRORLIST 

      Select the lexer for error list style files.

      +
      SCLEX_MAKEFILE 

      Select the Makefile lexer.

      +
      SCLEX_BATCH 

      Select the Windows batch file lexer.

      +
      SCLEX_LATEX 

      Select the LaTex lexer.

      +
      SCLEX_LUA 

      Select the Lua lexer.

      +
      SCLEX_DIFF 

      Select the lexer for diff output.

      +
      SCLEX_CONF 

      Select the lexer for Apache configuration files.

      +
      SCLEX_PASCAL 

      Select the Pascal lexer.

      +
      SCLEX_AVE 

      Select the Avenue lexer.

      +
      SCLEX_ADA 

      Select the Ada lexer.

      +
      SCLEX_LISP 

      Select the Lisp lexer.

      +
      SCLEX_RUBY 

      Select the Ruby lexer.

      +
      SCLEX_EIFFEL 

      Select the Eiffel lexer.

      +
      SCLEX_EIFFELKW 

      Select the Eiffel lexer folding at keywords.

      +
      SCLEX_TCL 

      Select the Tcl lexer.

      +
      SCLEX_NNCRONTAB 

      Select the lexer for nnCron files.

      +
      SCLEX_BULLANT 

      Select the Bullant lexer.

      +
      SCLEX_VBSCRIPT 

      Select the VBScript lexer.

      +
      SCLEX_ASP 

      Select the ASP lexer.

      +
      SCLEX_PHP 

      Select the PHP lexer.

      +
      SCLEX_BAAN 

      Select the Baan lexer.

      +
      SCLEX_MATLAB 

      Select the Matlab lexer.

      +
      SCLEX_SCRIPTOL 

      Select the Scriptol lexer.

      +
      SCLEX_ASM 

      Select the assembler lexer (';' comment character).

      +
      SCLEX_CPPNOCASE 

      Select the C++ lexer with case insensitive keywords.

      +
      SCLEX_FORTRAN 

      Select the FORTRAN lexer.

      +
      SCLEX_F77 

      Select the FORTRAN77 lexer.

      +
      SCLEX_CSS 

      Select the CSS lexer.

      +
      SCLEX_POV 

      Select the POV lexer.

      +
      SCLEX_LOUT 

      Select the Basser Lout typesetting language lexer.

      +
      SCLEX_ESCRIPT 

      Select the EScript lexer.

      +
      SCLEX_PS 

      Select the PostScript lexer.

      +
      SCLEX_NSIS 

      Select the NSIS lexer.

      +
      SCLEX_MMIXAL 

      Select the MMIX assembly language lexer.

      +
      SCLEX_CLW 

      Select the Clarion lexer.

      +
      SCLEX_CLWNOCASE 

      Select the Clarion lexer with case insensitive keywords.

      +
      SCLEX_LOT 

      Select the MPT text log file lexer.

      +
      SCLEX_YAML 

      Select the YAML lexer.

      +
      SCLEX_TEX 

      Select the TeX lexer.

      +
      SCLEX_METAPOST 

      Select the Metapost lexer.

      +
      SCLEX_POWERBASIC 

      Select the PowerBASIC lexer.

      +
      SCLEX_FORTH 

      Select the Forth lexer.

      +
      SCLEX_ERLANG 

      Select the Erlang lexer.

      +
      SCLEX_OCTAVE 

      Select the Octave lexer.

      +
      SCLEX_MSSQL 

      Select the MS SQL lexer.

      +
      SCLEX_VERILOG 

      Select the Verilog lexer.

      +
      SCLEX_KIX 

      Select the KIX-Scripts lexer.

      +
      SCLEX_GUI4CLI 

      Select the Gui4Cli lexer.

      +
      SCLEX_SPECMAN 

      Select the Specman E lexer.

      +
      SCLEX_AU3 

      Select the AutoIt3 lexer.

      +
      SCLEX_APDL 

      Select the APDL lexer.

      +
      SCLEX_BASH 

      Select the Bash lexer.

      +
      SCLEX_ASN1 

      Select the ASN.1 lexer.

      +
      SCLEX_VHDL 

      Select the VHDL lexer.

      +
      SCLEX_CAML 

      Select the Caml lexer.

      +
      SCLEX_BLITZBASIC 

      Select the BlitzBasic lexer.

      +
      SCLEX_PUREBASIC 

      Select the PureBasic lexer.

      +
      SCLEX_HASKELL 

      Select the Haskell lexer.

      +
      SCLEX_PHPSCRIPT 

      Select the PHPScript lexer.

      +
      SCLEX_TADS3 

      Select the TADS3 lexer.

      +
      SCLEX_REBOL 

      Select the REBOL lexer.

      +
      SCLEX_SMALLTALK 

      Select the Smalltalk lexer.

      +
      SCLEX_FLAGSHIP 

      Select the FlagShip lexer.

      +
      SCLEX_CSOUND 

      Select the Csound lexer.

      +
      SCLEX_FREEBASIC 

      Select the FreeBasic lexer.

      +
      SCLEX_INNOSETUP 

      Select the InnoSetup lexer.

      +
      SCLEX_OPAL 

      Select the Opal lexer.

      +
      SCLEX_SPICE 

      Select the Spice lexer.

      +
      SCLEX_D 

      Select the D lexer.

      +
      SCLEX_CMAKE 

      Select the CMake lexer.

      +
      SCLEX_GAP 

      Select the GAP lexer.

      +
      SCLEX_PLM 

      Select the PLM lexer.

      +
      SCLEX_PROGRESS 

      Select the Progress lexer.

      +
      SCLEX_ABAQUS 

      Select the Abaqus lexer.

      +
      SCLEX_ASYMPTOTE 

      Select the Asymptote lexer.

      +
      SCLEX_R 

      Select the R lexer.

      +
      SCLEX_MAGIK 

      Select the MagikSF lexer.

      +
      SCLEX_POWERSHELL 

      Select the PowerShell lexer.

      +
      SCLEX_MYSQL 

      Select the MySQL lexer.

      +
      SCLEX_PO 

      Select the gettext .po file lexer.

      +
      SCLEX_TAL 

      Select the TAL lexer.

      +
      SCLEX_COBOL 

      Select the COBOL lexer.

      +
      SCLEX_TACL 

      Select the TACL lexer.

      +
      SCLEX_SORCUS 

      Select the Sorcus lexer.

      +
      SCLEX_POWERPRO 

      Select the PowerPro lexer.

      +
      SCLEX_NIMROD 

      Select the Nimrod lexer.

      +
      SCLEX_SML 

      Select the SML lexer.

      +
      SCLEX_MARKDOWN 

      Select the Markdown lexer.

      +
      SCLEX_TXT2TAGS 

      Select the txt2tags lexer.

      +
      SCLEX_A68K 

      Select the 68000 assembler lexer.

      +
      SCLEX_MODULA 

      Select the Modula 3 lexer.

      +
      SCLEX_COFFEESCRIPT 

      Select the CoffeeScript lexer.

      +
      SCLEX_TCMD 

      Select the Take Command lexer.

      +
      SCLEX_AVS 

      Select the AviSynth lexer.

      +
      SCLEX_ECL 

      Select the ECL lexer.

      +
      SCLEX_OSCRIPT 

      Select the OScript lexer.

      +
      SCLEX_VISUALPROLOG 

      Select the Visual Prolog lexer.

      +
      SCLEX_LITERATEHASKELL 

      Select the Literal Haskell lexer.

      +
      SCLEX_STTXT 

      Select the Structured Text lexer.

      +
      SCLEX_KVIRC 

      Select the KVIrc lexer.

      +
      SCLEX_RUST 

      Select the Rust lexer.

      +
      SCLEX_DMAP 

      Select the MSC Nastran DMAP lexer.

      +
      SCLEX_AS 

      Select the assembler lexer ('#' comment character).

      +
      SCLEX_DMIS 

      Select the DMIS lexer.

      +
      SCLEX_REGISTRY 

      Select the lexer for Windows registry files.

      +
      SCLEX_BIBTEX 

      Select the BibTex lexer.

      +
      SCLEX_SREC 

      Select the Motorola S-Record hex lexer.

      +
      SCLEX_IHEX 

      Select the Intel hex lexer.

      +
      SCLEX_TEHEX 

      Select the Tektronix extended hex lexer.

      +
      SCLEX_JSON 

      Select the JSON hex lexer.

      +
      SCLEX_EDIFACT 

      Select the EDIFACT lexer.

      +
      SCLEX_INDENT 

      Select the pseudo-lexer used for the indentation-based folding of files.

      +
      SCLEX_MAXIMA 

      Select the Maxima lexer.

      +
      SCLEX_STATA 

      Select the Stata lexer.

      +
      SCLEX_SAS 

      Select the SAS lexer.

      +
      + +
      +
      +

      Member Function Documentation

      + +

      ◆ pool()

      + +
      +
      + + + + + +
      + + + + + + + +
      static QsciScintillaBase* QsciScintillaBase::pool ()
      +
      +static
      +
      +

      Returns a pointer to a QsciScintillaBase instance, or 0 if there isn't one. This can be used by the higher level API to send messages that aren't associated with a particular instance.

      + +
      +
      + +

      ◆ replaceHorizontalScrollBar()

      + +
      +
      + + + + + + + + +
      void QsciScintillaBase::replaceHorizontalScrollBar (QScrollBar * scrollBar)
      +
      +

      Replaces the existing horizontal scroll bar with scrollBar. The existing scroll bar is deleted. This should be called instead of QAbstractScrollArea::setHorizontalScrollBar().

      + +
      +
      + +

      ◆ replaceVerticalScrollBar()

      + +
      +
      + + + + + + + + +
      void QsciScintillaBase::replaceVerticalScrollBar (QScrollBar * scrollBar)
      +
      +

      Replaces the existing vertical scroll bar with scrollBar. The existing scroll bar is deleted. This should be called instead of QAbstractScrollArea::setHorizontalScrollBar().

      + +
      +
      + +

      ◆ SendScintilla()

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      long QsciScintillaBase::SendScintilla (unsigned int msg,
      unsigned long wParam = 0,
      long lParam = 0 
      ) const
      +
      +

      Send the Scintilla message msg with the optional parameters wParam and lParam.

      + +
      +
      + +

      ◆ QSCN_SELCHANGED

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintillaBase::QSCN_SELCHANGED (bool yes)
      +
      +signal
      +
      +

      This signal is emitted when text is selected or de-selected. yes is true if text has been selected and false if text has been deselected.

      + +
      +
      + +

      ◆ SCN_AUTOCCANCELLED

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintillaBase::SCN_AUTOCCANCELLED ()
      +
      +signal
      +
      +

      This signal is emitted when the user cancels an auto-completion list.

      +
      See also
      SCN_AUTOCSELECTION()
      + +
      +
      + +

      ◆ SCN_AUTOCCHARDELETED

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintillaBase::SCN_AUTOCCHARDELETED ()
      +
      +signal
      +
      +

      This signal is emitted when the user deletes a character when an auto-completion list is active.

      + +
      +
      + +

      ◆ SCN_AUTOCCOMPLETED

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_AUTOCCOMPLETED (const char * selection,
      int position,
      int ch,
      int method 
      )
      +
      +signal
      +
      +

      This signal is emitted after an auto-completion has inserted its text. selection is the text of the selection. position is the start position of the word being completed. ch is the fillup character that triggered the selection if method is SC_AC_FILLUP. method is the method used to trigger the selection.

      +
      See also
      SCN_AUTOCCANCELLED(), SCN_AUTOCSELECTION()
      + +
      +
      + +

      ◆ SCN_AUTOCSELECTION

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_AUTOCSELECTION (const char * selection,
      int position,
      int ch,
      int method 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user selects an item in an auto-completion list. It is emitted before the selection is inserted. The insertion can be cancelled by sending an SCI_AUTOCANCEL message from a connected slot. selection is the text of the selection. position is the start position of the word being completed. ch is the fillup character that triggered the selection if method is SC_AC_FILLUP. method is the method used to trigger the selection.

      +
      See also
      SCN_AUTOCCANCELLED(), SCN_AUTOCCOMPLETED()
      + +
      +
      + +

      ◆ SCN_AUTOCSELECTIONCHANGE

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_AUTOCSELECTIONCHANGE (const char * selection,
      int id,
      int position 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user highlights an item in an auto-completion or user list. selection is the text of the selection. id is an identifier for the list which was passed as an argument to the SCI_USERLISTSHOW message or 0 if the list is an auto-completion list. position is the position that the list was displayed at.

      + +
      +
      + +

      ◆ SCN_CALLTIPCLICK

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintillaBase::SCN_CALLTIPCLICK (int direction)
      +
      +signal
      +
      +

      This signal is emitted when the user clicks on a calltip. direction is 1 if the user clicked on the up arrow, 2 if the user clicked on the down arrow, and 0 if the user clicked elsewhere.

      + +
      +
      + +

      ◆ SCN_CHARADDED

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintillaBase::SCN_CHARADDED (int charadded)
      +
      +signal
      +
      +

      This signal is emitted whenever the user enters an ordinary character into the text. charadded is the character. It can be used to decide to display a call tip or an auto-completion list.

      + +
      +
      + +

      ◆ SCN_DOUBLECLICK

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_DOUBLECLICK (int position,
      int line,
      int modifiers 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user double clicks. position is the position in the text where the click occured. line is the number of the line in the text where the click occured. modifiers is the logical or of the modifier keys that were pressed when the user double clicked.

      + +
      +
      + +

      ◆ SCN_DWELLEND

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_DWELLEND (int position,
      int x,
      int y 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user moves the mouse (or presses a key) after keeping it in one position for the dwell period. position is the position in the text where the mouse dwells. x is the x-coordinate where the mouse dwells. y is the y-coordinate where the mouse dwells.

      +
      See also
      SCN_DWELLSTART, SCI_SETMOUSEDWELLTIME
      + +
      +
      + +

      ◆ SCN_DWELLSTART

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_DWELLSTART (int position,
      int x,
      int y 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user keeps the mouse in one position for the dwell period. position is the position in the text where the mouse dwells. x is the x-coordinate where the mouse dwells. y is the y-coordinate where the mouse dwells.

      +
      See also
      SCN_DWELLEND, SCI_SETMOUSEDWELLTIME
      + +
      +
      + +

      ◆ SCN_HOTSPOTCLICK

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_HOTSPOTCLICK (int position,
      int modifiers 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user clicks on text in a style with the hotspot attribute set. position is the position in the text where the click occured. modifiers is the logical or of the modifier keys that were pressed when the user clicked.

      + +
      +
      + +

      ◆ SCN_HOTSPOTDOUBLECLICK

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_HOTSPOTDOUBLECLICK (int position,
      int modifiers 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user double clicks on text in a style with the hotspot attribute set. position is the position in the text where the double click occured. modifiers is the logical or of the modifier keys that were pressed when the user double clicked.

      + +
      +
      + +

      ◆ SCN_HOTSPOTRELEASECLICK

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_HOTSPOTRELEASECLICK (int position,
      int modifiers 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user releases the mouse button on text in a style with the hotspot attribute set. position is the position in the text where the release occured. modifiers is the logical or of the modifier keys that were pressed when the user released the button.

      + +
      +
      + +

      ◆ SCN_INDICATORCLICK

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_INDICATORCLICK (int position,
      int modifiers 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user clicks on text that has an indicator. position is the position in the text where the click occured. modifiers is the logical or of the modifier keys that were pressed when the user clicked.

      + +
      +
      + +

      ◆ SCN_INDICATORRELEASE

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_INDICATORRELEASE (int position,
      int modifiers 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user releases the mouse button on text that has an indicator. position is the position in the text where the release occured. modifiers is the logical or of the modifier keys that were pressed when the user released.

      + +
      +
      + +

      ◆ SCN_MACRORECORD

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_MACRORECORD (unsigned int ,
      unsigned long ,
      void *  
      )
      +
      +signal
      +
      +

      This signal is emitted when a recordable editor command has been executed.

      + +
      +
      + +

      ◆ SCN_MARGINCLICK

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_MARGINCLICK (int position,
      int modifiers,
      int margin 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user clicks on a sensitive margin. position is the position of the start of the line against which the user clicked. modifiers is the logical or of the modifier keys that were pressed when the user clicked. margin is the number of the margin the user clicked in: 0, 1 or 2.

      +
      See also
      SCI_GETMARGINSENSITIVEN, SCI_SETMARGINSENSITIVEN
      + +
      +
      + +

      ◆ SCN_MARGINRIGHTCLICK

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_MARGINRIGHTCLICK (int position,
      int modifiers,
      int margin 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user right-clicks on a sensitive margin. position is the position of the start of the line against which the user clicked. modifiers is the logical or of the modifier keys that were pressed when the user clicked. margin is the number of the margin the user clicked in: 0, 1 or 2.

      +
      See also
      SCI_GETMARGINSENSITIVEN, SCI_SETMARGINSENSITIVEN
      + +
      +
      + +

      ◆ SCN_MODIFYATTEMPTRO

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintillaBase::SCN_MODIFYATTEMPTRO ()
      +
      +signal
      +
      +

      This signal is emitted when the user attempts to modify read-only text.

      + +
      +
      + +

      ◆ SCN_PAINTED

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintillaBase::SCN_PAINTED ()
      +
      +signal
      +
      +

      This signal is emitted when painting has been completed. It is useful to trigger some other change but to have the paint be done first to appear more reponsive to the user.

      + +
      +
      + +

      ◆ SCN_SAVEPOINTLEFT

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintillaBase::SCN_SAVEPOINTLEFT ()
      +
      +signal
      +
      +

      This signal is emitted when the current state of the text no longer corresponds to the state of the text at the save point.

      +
      See also
      SCI_SETSAVEPOINT, SCN_SAVEPOINTREACHED()
      + +
      +
      + +

      ◆ SCN_SAVEPOINTREACHED

      + +
      +
      + + + + + +
      + + + + + + + +
      void QsciScintillaBase::SCN_SAVEPOINTREACHED ()
      +
      +signal
      +
      +

      This signal is emitted when the current state of the text corresponds to the state of the text at the save point. This allows feedback to be given to the user as to whether the text has been modified since it was last saved.

      +
      See also
      SCI_SETSAVEPOINT, SCN_SAVEPOINTLEFT()
      + +
      +
      + +

      ◆ SCN_STYLENEEDED

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintillaBase::SCN_STYLENEEDED (int position)
      +
      +signal
      +
      +

      This signal is emitted when a range of text needs to be syntax styled. The range is from the value returned by the SCI_GETENDSTYLED message and position. It is only emitted if the currently selected lexer is SCLEX_CONTAINER.

      +
      See also
      SCI_COLOURISE, SCI_GETENDSTYLED
      + +
      +
      + +

      ◆ SCN_URIDROPPED

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintillaBase::SCN_URIDROPPED (const QUrl & url)
      +
      +signal
      +
      +

      This signal is emitted when a URI is dropped. url is the value of the URI.

      + +
      +
      + +

      ◆ SCN_UPDATEUI

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciScintillaBase::SCN_UPDATEUI (int updated)
      +
      +signal
      +
      +

      This signal is emitted when either the text or styling of the text has changed or the selection range or scroll position has changed. updated contains the set of SC_UPDATE_* flags describing the changes since the signal was last emitted.

      + +
      +
      + +

      ◆ SCN_USERLISTSELECTION

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void QsciScintillaBase::SCN_USERLISTSELECTION (const char * selection,
      int id,
      int ch,
      int method,
      int position 
      )
      +
      +signal
      +
      +

      This signal is emitted when the user selects an item in a user list. selection is the text of the selection. id is an identifier for the list which was passed as an argument to the SCI_USERLISTSHOW message and must be at least 1. ch is the fillup character that triggered the selection if method is SC_AC_FILLUP. method is the method used to trigger the selection. position is the position that the list was displayed at.

      +
      See also
      SCI_USERLISTSHOW, SCN_AUTOCSELECTION()
      + +
      +
      + +

      ◆ canInsertFromMimeData()

      + +
      +
      + + + + + +
      + + + + + + + + +
      virtual bool QsciScintillaBase::canInsertFromMimeData (const QMimeData * source) const
      +
      +protectedvirtual
      +
      +

      Returns true if the contents of a MIME data object can be decoded and inserted into the document. It is called during drag and paste operations. source is the MIME data object.

      +
      See also
      fromMimeData(), toMimeData()
      + +
      +
      + +

      ◆ fromMimeData()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual QByteArray QsciScintillaBase::fromMimeData (const QMimeData * source,
      bool & rectangular 
      ) const
      +
      +protectedvirtual
      +
      +

      Returns the text of a MIME data object. It is called when a drag and drop is completed and when text is pasted from the clipboard. source is the MIME data object. On return rectangular is set if the text corresponds to a rectangular selection.

      +
      See also
      canInsertFromMimeData(), toMimeData()
      + +
      +
      + +

      ◆ toMimeData()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      virtual QMimeData* QsciScintillaBase::toMimeData (const QByteArray & text,
      bool rectangular 
      ) const
      +
      +protectedvirtual
      +
      +

      Returns a new MIME data object containing some text and whether it corresponds to a rectangular selection. It is called when a drag and drop is started and when the selection is copied to the clipboard. Ownership of the object is passed to the caller. text is the text. rectangular is set if the text corresponds to a rectangular selection.

      +
      See also
      canInsertFromMimeData(), fromMimeData()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciStyle-members.html b/third_party/qscintilla/doc/html/classQsciStyle-members.html new file mode 100644 index 0000000..b78c78f --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciStyle-members.html @@ -0,0 +1,83 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciStyle Member List
      +
      +
      + +

      This is the complete list of members for QsciStyle, including all inherited members.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      apply(QsciScintillaBase *sci) const (defined in QsciStyle)QsciStyle
      changeable() constQsciStyleinline
      color() constQsciStyleinline
      description() constQsciStyleinline
      eolFill() constQsciStyleinline
      font() constQsciStyleinline
      hotspot() constQsciStyleinline
      LowerCase enum valueQsciStyle
      OriginalCase enum valueQsciStyle
      paper() constQsciStyleinline
      QsciStyle(int style=-1)QsciStyle
      QsciStyle(int style, const QString &description, const QColor &color, const QColor &paper, const QFont &font, bool eolFill=false)QsciStyle
      refresh()QsciStyle
      setChangeable(bool changeable)QsciStyle
      setColor(const QColor &color)QsciStyle
      setDescription(const QString &description)QsciStyleinline
      setEolFill(bool fill)QsciStyle
      setFont(const QFont &font)QsciStyle
      setHotspot(bool hotspot)QsciStyle
      setPaper(const QColor &paper)QsciStyle
      setStyle(int style)QsciStyleinline
      setTextCase(TextCase text_case)QsciStyle
      setVisible(bool visible)QsciStyle
      style() constQsciStyleinline
      textCase() constQsciStyleinline
      TextCase enum nameQsciStyle
      UpperCase enum valueQsciStyle
      visible() constQsciStyleinline
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciStyle.html b/third_party/qscintilla/doc/html/classQsciStyle.html new file mode 100644 index 0000000..0e0cf6f --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciStyle.html @@ -0,0 +1,709 @@ + + + + + + + +QScintilla: QsciStyle Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciStyle Class Reference
      +
      +
      + +

      #include <qscistyle.h>

      + + + + +

      +Public Types

      enum  TextCase { OriginalCase = 0, +UpperCase = 1, +LowerCase = 2 + }
       
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Public Member Functions

       QsciStyle (int style=-1)
       
       QsciStyle (int style, const QString &description, const QColor &color, const QColor &paper, const QFont &font, bool eolFill=false)
       
      +void apply (QsciScintillaBase *sci) const
       
      void setStyle (int style)
       
      int style () const
       
      void setDescription (const QString &description)
       
      QString description () const
       
      void setColor (const QColor &color)
       
      QColor color () const
       
      void setPaper (const QColor &paper)
       
      QColor paper () const
       
      void setFont (const QFont &font)
       
      QFont font () const
       
      void setEolFill (bool fill)
       
      bool eolFill () const
       
      void setTextCase (TextCase text_case)
       
      TextCase textCase () const
       
      void setVisible (bool visible)
       
      bool visible () const
       
      void setChangeable (bool changeable)
       
      bool changeable () const
       
      void setHotspot (bool hotspot)
       
      bool hotspot () const
       
      +void refresh ()
       
      +

      Detailed Description

      +

      The QsciStyle class encapsulates all the attributes of a style.

      +

      Each character of a document has an associated style which determines how the character is displayed, e.g. its font and color. A style is identified by a number. Lexers define styles for each of the language's features so that they are displayed differently. Some style numbers have hard-coded meanings, e.g. the style used for call tips.

      +

      Member Enumeration Documentation

      + +

      ◆ TextCase

      + +
      +
      + + + + +
      enum QsciStyle::TextCase
      +
      +

      This enum defines the different ways the displayed case of the text can be changed.

      + + + + +
      Enumerator
      OriginalCase 

      The text is displayed as its original case.

      +
      UpperCase 

      The text is displayed as upper case.

      +
      LowerCase 

      The text is displayed as lower case.

      +
      + +
      +
      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciStyle() [1/2]

      + +
      +
      + + + + + + + + +
      QsciStyle::QsciStyle (int style = -1)
      +
      +

      Constructs a QsciStyle instance for style number style. If style is negative then a new style number is automatically allocated if possible. If it is not possible then style() will return a negative value.

      +
      See also
      style()
      + +
      +
      + +

      ◆ QsciStyle() [2/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      QsciStyle::QsciStyle (int style,
      const QString & description,
      const QColor & color,
      const QColor & paper,
      const QFont & font,
      bool eolFill = false 
      )
      +
      +

      Constructs a QsciStyle instance for style number style. If style is negative then a new style number is automatically allocated if possible. If it is not possible then style() will return a negative value. The styles description, color, paper color, font and end-of-line fill are set to description, color, paper, font and eolFill respectively.

      +
      See also
      style()
      + +
      +
      +

      Member Function Documentation

      + +

      ◆ setStyle()

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciStyle::setStyle (int style)
      +
      +inline
      +
      +

      The style's number is set to style.

      +
      See also
      style()
      + +
      +
      + +

      ◆ style()

      + +
      +
      + + + + + +
      + + + + + + + +
      int QsciStyle::style () const
      +
      +inline
      +
      +

      Returns the number of the style. This will be negative if the style is invalid.

      +
      See also
      setStyle()
      + +
      +
      + +

      ◆ setDescription()

      + +
      +
      + + + + + +
      + + + + + + + + +
      void QsciStyle::setDescription (const QString & description)
      +
      +inline
      +
      +

      The style's description is set to description.

      +
      See also
      description()
      + +
      +
      + +

      ◆ description()

      + +
      +
      + + + + + +
      + + + + + + + +
      QString QsciStyle::description () const
      +
      +inline
      +
      +

      Returns the style's description.

      +
      See also
      setDescription()
      + +
      +
      + +

      ◆ setColor()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setColor (const QColor & color)
      +
      +

      The style's foreground color is set to color. The default is taken from the application's default palette.

      +
      See also
      color()
      + +
      +
      + +

      ◆ color()

      + +
      +
      + + + + + +
      + + + + + + + +
      QColor QsciStyle::color () const
      +
      +inline
      +
      +

      Returns the style's foreground color.

      +
      See also
      setColor()
      + +
      +
      + +

      ◆ setPaper()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setPaper (const QColor & paper)
      +
      +

      The style's background color is set to paper. The default is taken from the application's default palette.

      +
      See also
      paper()
      + +
      +
      + +

      ◆ paper()

      + +
      +
      + + + + + +
      + + + + + + + +
      QColor QsciStyle::paper () const
      +
      +inline
      +
      +

      Returns the style's background color.

      +
      See also
      setPaper()
      + +
      +
      + +

      ◆ setFont()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setFont (const QFont & font)
      +
      +

      The style's font is set to font. The default is the application's default font.

      +
      See also
      font()
      + +
      +
      + +

      ◆ font()

      + +
      +
      + + + + + +
      + + + + + + + +
      QFont QsciStyle::font () const
      +
      +inline
      +
      +

      Returns the style's font.

      +
      See also
      setFont()
      + +
      +
      + +

      ◆ setEolFill()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setEolFill (bool fill)
      +
      +

      The style's end-of-line fill is set to fill. The default is false.

      +
      See also
      eolFill()
      + +
      +
      + +

      ◆ eolFill()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciStyle::eolFill () const
      +
      +inline
      +
      +

      Returns the style's end-of-line fill.

      +
      See also
      setEolFill()
      + +
      +
      + +

      ◆ setTextCase()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setTextCase (TextCase text_case)
      +
      +

      The style's text case is set to text_case. The default is OriginalCase.

      +
      See also
      textCase()
      + +
      +
      + +

      ◆ textCase()

      + +
      +
      + + + + + +
      + + + + + + + +
      TextCase QsciStyle::textCase () const
      +
      +inline
      +
      +

      Returns the style's text case.

      +
      See also
      setTextCase()
      + +
      +
      + +

      ◆ setVisible()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setVisible (bool visible)
      +
      +

      The style's visibility is set to visible. The default is true.

      +
      See also
      visible()
      + +
      +
      + +

      ◆ visible()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciStyle::visible () const
      +
      +inline
      +
      +

      Returns the style's visibility.

      +
      See also
      setVisible()
      + +
      +
      + +

      ◆ setChangeable()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setChangeable (bool changeable)
      +
      +

      The style's changeability is set to changeable. The default is true.

      +
      See also
      changeable()
      + +
      +
      + +

      ◆ changeable()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciStyle::changeable () const
      +
      +inline
      +
      +

      Returns the style's changeability.

      +
      See also
      setChangeable()
      + +
      +
      + +

      ◆ setHotspot()

      + +
      +
      + + + + + + + + +
      void QsciStyle::setHotspot (bool hotspot)
      +
      +

      The style's sensitivity to mouse clicks is set to hotspot. The default is false.

      +
      See also
      hotspot()
      + +
      +
      + +

      ◆ hotspot()

      + +
      +
      + + + + + +
      + + + + + + + +
      bool QsciStyle::hotspot () const
      +
      +inline
      +
      +

      Returns the style's sensitivity to mouse clicks.

      +
      See also
      setHotspot()
      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciStyledText-members.html b/third_party/qscintilla/doc/html/classQsciStyledText-members.html new file mode 100644 index 0000000..6d04cd4 --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciStyledText-members.html @@ -0,0 +1,60 @@ + + + + + + + +QScintilla: Member List + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QsciStyledText Member List
      +
      +
      + +

      This is the complete list of members for QsciStyledText, including all inherited members.

      + + + + + + +
      apply(QsciScintillaBase *sci) const (defined in QsciStyledText)QsciStyledText
      QsciStyledText(const QString &text, int style)QsciStyledText
      QsciStyledText(const QString &text, const QsciStyle &style)QsciStyledText
      style() constQsciStyledText
      text() constQsciStyledTextinline
      + + + + diff --git a/third_party/qscintilla/doc/html/classQsciStyledText.html b/third_party/qscintilla/doc/html/classQsciStyledText.html new file mode 100644 index 0000000..c2dc33e --- /dev/null +++ b/third_party/qscintilla/doc/html/classQsciStyledText.html @@ -0,0 +1,135 @@ + + + + + + + +QScintilla: QsciStyledText Class Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      + +
      +
      QsciStyledText Class Reference
      +
      +
      + +

      #include <qscistyledtext.h>

      + + + + + + + + + + + + +

      +Public Member Functions

       QsciStyledText (const QString &text, int style)
       
       QsciStyledText (const QString &text, const QsciStyle &style)
       
      +void apply (QsciScintillaBase *sci) const
       
      +const QString & text () const
       
      +int style () const
       
      +

      Detailed Description

      +

      The QsciStyledText class is a container for a piece of text and the style used to display the text.

      +

      Constructor & Destructor Documentation

      + +

      ◆ QsciStyledText() [1/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      QsciStyledText::QsciStyledText (const QString & text,
      int style 
      )
      +
      +

      Constructs a QsciStyledText instance for text text and style number style.

      + +
      +
      + +

      ◆ QsciStyledText() [2/2]

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      QsciStyledText::QsciStyledText (const QString & text,
      const QsciStylestyle 
      )
      +
      +

      Constructs a QsciStyledText instance for text text and style style.

      + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/classes.html b/third_party/qscintilla/doc/html/classes.html new file mode 100644 index 0000000..ab5cdd3 --- /dev/null +++ b/third_party/qscintilla/doc/html/classes.html @@ -0,0 +1,145 @@ + + + + + + + +QScintilla: Class Index + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      Class Index
      +
      +
      +
      a | c | d | l | m | p | s
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        a  
      +
      QsciLexerAVS   QsciLexerHTML   QsciLexerPO   QsciLexerYAML   
      QsciLexerBash   QsciLexerIDL   QsciLexerPostScript   
        m  
      +
      QsciAbstractAPIs   QsciLexerBatch   QsciLexerIntelHex   QsciLexerPOV   
      QsciAPIs   QsciLexerCMake   QsciLexerJava   QsciLexerProperties   QsciMacro   
        c  
      +
      QsciLexerCoffeeScript   QsciLexerJavaScript   QsciLexerPython   
        p  
      +
      QsciLexerCPP   QsciLexerJSON   QsciLexerRuby   
      QsciCommand   QsciLexerCSharp   QsciLexerLua   QsciLexerSpice   QsciPrinter   
      QsciCommandSet   QsciLexerCSS   QsciLexerMakefile   QsciLexerSQL   
        s  
      +
        d  
      +
      QsciLexerCustom   QsciLexerMarkdown   QsciLexerSRec   
      QsciLexerD   QsciLexerMASM   QsciLexerTCL   QsciScintilla   
      QsciDocument   QsciLexerDiff   QsciLexerMatlab   QsciLexerTekHex   QsciScintillaBase   
        l  
      +
      QsciLexerEDIFACT   QsciLexerNASM   QsciLexerTeX   QsciStyle   
      QsciLexerFortran   QsciLexerOctave   QsciLexerVerilog   QsciStyledText   
      QsciLexer   QsciLexerFortran77   QsciLexerPascal   QsciLexerVHDL   
      QsciLexerAsm   QsciLexerHex   QsciLexerPerl   QsciLexerXML   
      +
      a | c | d | l | m | p | s
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/closed.png b/third_party/qscintilla/doc/html/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..98cc2c909da37a6df914fbf67780eebd99c597f5 GIT binary patch literal 132 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{V-kvUwAr*{o@8{^CZMh(5KoB^r_<4^zF@3)Cp&&t3hdujKf f*?bjBoY!V+E))@{xMcbjXe@)LtDnm{r-UW|*e5JT literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/third_party/qscintilla/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html new file mode 100644 index 0000000..a127a39 --- /dev/null +++ b/third_party/qscintilla/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html @@ -0,0 +1,60 @@ + + + + + + + +QScintilla: src Directory Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + + +
      +
      +
      +
      src Directory Reference
      +
      +
      + + +

      +Directories

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/dir_e7e7b0b6fe362def31d601fa026bbeed.html b/third_party/qscintilla/doc/html/dir_e7e7b0b6fe362def31d601fa026bbeed.html new file mode 100644 index 0000000..878dad5 --- /dev/null +++ b/third_party/qscintilla/doc/html/dir_e7e7b0b6fe362def31d601fa026bbeed.html @@ -0,0 +1,56 @@ + + + + + + + +QScintilla: Qsci Directory Reference + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + + +
      +
      +
      +
      Qsci Directory Reference
      +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/doc.png b/third_party/qscintilla/doc/html/doc.png new file mode 100644 index 0000000000000000000000000000000000000000..17edabff95f7b8da13c9516a04efe05493c29501 GIT binary patch literal 746 zcmV7=@pnbNXRFEm&G8P!&WHG=d)>K?YZ1bzou)2{$)) zumDct!>4SyxL;zgaG>wy`^Hv*+}0kUfCrz~BCOViSb$_*&;{TGGn2^x9K*!Sf0=lV zpP=7O;GA0*Jm*tTYj$IoXvimpnV4S1Z5f$p*f$Db2iq2zrVGQUz~yq`ahn7ck(|CE z7Gz;%OP~J6)tEZWDzjhL9h2hdfoU2)Nd%T<5Kt;Y0XLt&<@6pQx!nw*5`@bq#?l*?3z{Hlzoc=Pr>oB5(9i6~_&-}A(4{Q$>c>%rV&E|a(r&;?i5cQB=} zYSDU5nXG)NS4HEs0it2AHe2>shCyr7`6@4*6{r@8fXRbTA?=IFVWAQJL&H5H{)DpM#{W(GL+Idzf^)uRV@oB8u$ z8v{MfJbTiiRg4bza<41NAzrl{=3fl_D+$t+^!xlQ8S}{UtY`e z;;&9UhyZqQRN%2pot{*Ei0*4~hSF_3AH2@fKU!$NSflS>{@tZpDT4`M2WRTTVH+D? z)GFlEGGHe?koB}i|1w45!BF}N_q&^HJ&-tyR{(afC6H7|aml|tBBbv}55C5DNP8p3 z)~jLEO4Z&2hZmP^i-e%(@d!(E|KRafiU8Q5u(wU((j8un3OR*Hvj+t literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/doxygen.css b/third_party/qscintilla/doc/html/doxygen.css new file mode 100644 index 0000000..f640966 --- /dev/null +++ b/third_party/qscintilla/doc/html/doxygen.css @@ -0,0 +1,1732 @@ +/* The standard CSS for doxygen 1.8.20 */ + +body, table, div, p, dl { + font: 400 14px/22px Roboto,sans-serif; +} + +p.reference, p.definition { + font: 400 14px/22px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1.groupheader { + font-size: 150%; +} + +.title { + font: 400 14px/28px Roboto,sans-serif; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +th p.starttd, th p.intertd, th p.endtd { + font-size: 100%; + font-weight: 700; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +p.interli { +} + +p.interdd { +} + +p.intertd { +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #9CAFD4; + color: #FFFFFF; + border: 1px double #869DCA; +} + +.contents a.qindexHL:visited { + color: #FFFFFF; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +ul { + overflow: hidden; /*Fixed: list item bullets overlap floating elements*/ +} + +#side-nav ul { + overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */ +} + +#main-nav ul { + overflow: visible; /* reset ul rule for the navigation bar drop down lists */ +} + +.fragment { + text-align: left; + direction: ltr; + overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/ + overflow-y: hidden; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ + margin: 4px 8px 4px 2px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.ah, span.ah { + background-color: black; + font-weight: bold; + color: #FFFFFF; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl, img.inline { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +blockquote.DocNodeRTL { + border-left: 0; + border-right: 2px solid #9CAFD4; + margin: 0 4px 0 24px; + padding: 0 16px 0 12px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight, .memTemplItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-color: #DFE5F1; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + +} + +.overload { + font-family: "courier new",courier,monospace; + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype, .tparams .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir, .tparams .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #9CAFD4; + border-bottom: 1px solid #9CAFD4; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +.arrow { + color: #9CAFD4; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial, Helvetica; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #728DC1; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +table.directory { + font: 400 14px Roboto,sans-serif; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +.PageDocRTL-title div.headertitle { + text-align: right; + direction: rtl; +} + +dl { + padding: 0 0 0 0; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.examples */ +dl.section { + margin-left: 0px; + padding-left: 0px; +} + +dl.section.DocNodeRTL { + margin-right: 0px; + padding-right: 0px; +} + +dl.note { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #D0C000; +} + +dl.note.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #FF0000; +} + +dl.warning.DocNodeRTL, dl.attention.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00D000; +} + +dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00D000; +} + +dl.deprecated { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #505050; +} + +dl.deprecated.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #505050; +} + +dl.todo { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #00C0E0; +} + +dl.todo.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #00C0E0; +} + +dl.test { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #3030E0; +} + +dl.test.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #3030E0; +} + +dl.bug { + margin-left: -7px; + padding-left: 3px; + border-left: 4px solid; + border-color: #C08050; +} + +dl.bug.DocNodeRTL { + margin-left: 0; + padding-left: 0; + border-left: 0; + margin-right: -7px; + padding-right: 3px; + border-right: 4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; + text-align:right; + width:52px; +} + +dl.citelist dd { + margin:2px 0 2px 72px; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +.PageDocRTL-title div.toc { + float: left !important; + text-align: right; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +.PageDocRTL-title div.toc li { + background-position-x: right !important; + padding-left: 0 !important; + padding-right: 10px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +.PageDocRTL-title div.toc li.level1 { + margin-left: 0 !important; + margin-right: 0; +} + +.PageDocRTL-title div.toc li.level2 { + margin-left: 0 !important; + margin-right: 15px; +} + +.PageDocRTL-title div.toc li.level3 { + margin-left: 0 !important; + margin-right: 30px; +} + +.PageDocRTL-title div.toc li.level4 { + margin-left: 0 !important; + margin-right: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + white-space: nowrap; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font: 12px/16px Roboto,sans-serif; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before { + border-top-color: #808080; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: #FFFFFF; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: #808080; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: #FFFFFF; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + +.DocNodeRTL { + text-align: right; + direction: rtl; +} + +.DocNodeLTR { + text-align: left; + direction: ltr; +} + +table.DocNodeRTL { + width: auto; + margin-right: 0; + margin-left: auto; +} + +table.DocNodeLTR { + width: auto; + margin-right: auto; + margin-left: 0; +} + +tt, code, kbd, samp +{ + display: inline-block; + direction:ltr; +} +/* @end */ + +u { + text-decoration: underline; +} + diff --git a/third_party/qscintilla/doc/html/doxygen.svg b/third_party/qscintilla/doc/html/doxygen.svg new file mode 100644 index 0000000..d42dad5 --- /dev/null +++ b/third_party/qscintilla/doc/html/doxygen.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/third_party/qscintilla/doc/html/dynsections.js b/third_party/qscintilla/doc/html/dynsections.js new file mode 100644 index 0000000..3174bd7 --- /dev/null +++ b/third_party/qscintilla/doc/html/dynsections.js @@ -0,0 +1,121 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} + +function toggleLevel(level) +{ + $('table.directory tr').each(function() { + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (la9#ETzayK)T~Jw&MMH>OIr#&;dC}is*2Mqdf&akCc=O@`qC+4i z5Iu3w#1M@KqXCz8TIZd1wli&kkl2HVcAiZ8PUn5z_kG@-y;?yK06=cA0U%H0PH+kU zl6dp}OR(|r8-RG+YLu`zbI}5TlOU6ToR41{9=uz^?dGTNL;wIMf|V3`d1Wj3y!#6` zBLZ?xpKR~^2x}?~zA(_NUu3IaDB$tKma*XUdOZN~c=dLt_h_k!dbxm_*ibDM zlFX`g{k$X}yIe%$N)cn1LNu=q9_CS)*>A zsX_mM4L@`(cSNQKMFc$RtYbx{79#j-J7hk*>*+ZZhM4Hw?I?rsXCi#mRWJ=-0LGV5a-WR0Qgt<|Nqf)C-@80`5gIz45^_20000IqP)X=#(TiCT&PiIIVc55T}TU}EUh*{q$|`3@{d>{Tc9Bo>e= zfmF3!f>fbI9#GoEHh0f`i5)wkLpva0ztf%HpZneK?w-7AK@b4Itw{y|Zd3k!fH?q2 zlhckHd_V2M_X7+)U&_Xcfvtw60l;--DgZmLSw-Y?S>)zIqMyJ1#FwLU*%bl38ok+! zh78H87n`ZTS;uhzAR$M`zZ`bVhq=+%u9^$5jDplgxd44}9;IRqUH1YHH|@6oFe%z( zo4)_>E$F&^P-f(#)>(TrnbE>Pefs9~@iN=|)Rz|V`sGfHNrJ)0gJb8xx+SBmRf@1l zvuzt=vGfI)<-F9!o&3l?>9~0QbUDT(wFdnQPv%xdD)m*g%!20>Bc9iYmGAp<9YAa( z0QgYgTWqf1qN++Gqp z8@AYPTB3E|6s=WLG?xw0tm|U!o=&zd+H0oRYE;Dbx+Na9s^STqX|Gnq%H8s(nGDGJ j8vwW|`Ts`)fSK|Kx=IK@RG@g200000NkvXXu0mjfauFEA literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/functions.html b/third_party/qscintilla/doc/html/functions.html new file mode 100644 index 0000000..31cc282 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions.html @@ -0,0 +1,336 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - a -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_b.html b/third_party/qscintilla/doc/html/functions_b.html new file mode 100644 index 0000000..ed4c540 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_b.html @@ -0,0 +1,218 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - b -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_c.html b/third_party/qscintilla/doc/html/functions_c.html new file mode 100644 index 0000000..0fd519a --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_c.html @@ -0,0 +1,390 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - c -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_d.html b/third_party/qscintilla/doc/html/functions_d.html new file mode 100644 index 0000000..495ff1a --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_d.html @@ -0,0 +1,431 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - d -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_e.html b/third_party/qscintilla/doc/html/functions_e.html new file mode 100644 index 0000000..616de1c --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_e.html @@ -0,0 +1,181 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - e -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_enum.html b/third_party/qscintilla/doc/html/functions_enum.html new file mode 100644 index 0000000..724d50e --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_enum.html @@ -0,0 +1,110 @@ + + + + + + + +QScintilla: Class Members - Enumerations + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval.html b/third_party/qscintilla/doc/html/functions_eval.html new file mode 100644 index 0000000..1fc4950 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval.html @@ -0,0 +1,231 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - a -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_b.html b/third_party/qscintilla/doc/html/functions_eval_b.html new file mode 100644 index 0000000..8723e01 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_b.html @@ -0,0 +1,145 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - b -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_c.html b/third_party/qscintilla/doc/html/functions_eval_c.html new file mode 100644 index 0000000..9a1222f --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_c.html @@ -0,0 +1,267 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - c -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_d.html b/third_party/qscintilla/doc/html/functions_eval_d.html new file mode 100644 index 0000000..341d3fd --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_d.html @@ -0,0 +1,214 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - d -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_e.html b/third_party/qscintilla/doc/html/functions_eval_e.html new file mode 100644 index 0000000..245d6dd --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_e.html @@ -0,0 +1,126 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - e -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_f.html b/third_party/qscintilla/doc/html/functions_eval_f.html new file mode 100644 index 0000000..52a3865 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_f.html @@ -0,0 +1,88 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - f -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_g.html b/third_party/qscintilla/doc/html/functions_eval_g.html new file mode 100644 index 0000000..8e4e6a0 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_g.html @@ -0,0 +1,65 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - g -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_h.html b/third_party/qscintilla/doc/html/functions_eval_h.html new file mode 100644 index 0000000..7bcec63 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_h.html @@ -0,0 +1,141 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - h -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_i.html b/third_party/qscintilla/doc/html/functions_eval_i.html new file mode 100644 index 0000000..e6d7cd3 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_i.html @@ -0,0 +1,113 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - i -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_j.html b/third_party/qscintilla/doc/html/functions_eval_j.html new file mode 100644 index 0000000..19f0148 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_j.html @@ -0,0 +1,91 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - j -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_k.html b/third_party/qscintilla/doc/html/functions_eval_k.html new file mode 100644 index 0000000..a060f17 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_k.html @@ -0,0 +1,123 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_l.html b/third_party/qscintilla/doc/html/functions_eval_l.html new file mode 100644 index 0000000..c07dc7e --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_l.html @@ -0,0 +1,152 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - l -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_m.html b/third_party/qscintilla/doc/html/functions_eval_m.html new file mode 100644 index 0000000..3d25c05 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_m.html @@ -0,0 +1,103 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - m -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_n.html b/third_party/qscintilla/doc/html/functions_eval_n.html new file mode 100644 index 0000000..87d5299 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_n.html @@ -0,0 +1,101 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_o.html b/third_party/qscintilla/doc/html/functions_eval_o.html new file mode 100644 index 0000000..3265fcc --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_o.html @@ -0,0 +1,92 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_p.html b/third_party/qscintilla/doc/html/functions_eval_p.html new file mode 100644 index 0000000..dcb0a72 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_p.html @@ -0,0 +1,260 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - p -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_q.html b/third_party/qscintilla/doc/html/functions_eval_q.html new file mode 100644 index 0000000..91e3b9c --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_q.html @@ -0,0 +1,88 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - q -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_r.html b/third_party/qscintilla/doc/html/functions_eval_r.html new file mode 100644 index 0000000..3284e5f --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_r.html @@ -0,0 +1,111 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - r -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_s.html b/third_party/qscintilla/doc/html/functions_eval_s.html new file mode 100644 index 0000000..babea0d --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_s.html @@ -0,0 +1,957 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - s -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_t.html b/third_party/qscintilla/doc/html/functions_eval_t.html new file mode 100644 index 0000000..0bdefba --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_t.html @@ -0,0 +1,153 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - t -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_u.html b/third_party/qscintilla/doc/html/functions_eval_u.html new file mode 100644 index 0000000..25b0995 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_u.html @@ -0,0 +1,112 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - u -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_v.html b/third_party/qscintilla/doc/html/functions_eval_v.html new file mode 100644 index 0000000..33aa6e4 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_v.html @@ -0,0 +1,111 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - v -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_w.html b/third_party/qscintilla/doc/html/functions_eval_w.html new file mode 100644 index 0000000..8799c1c --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_w.html @@ -0,0 +1,136 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - w -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_x.html b/third_party/qscintilla/doc/html/functions_eval_x.html new file mode 100644 index 0000000..b4f8e84 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_x.html @@ -0,0 +1,61 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - x -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_eval_z.html b/third_party/qscintilla/doc/html/functions_eval_z.html new file mode 100644 index 0000000..aa91d35 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_eval_z.html @@ -0,0 +1,58 @@ + + + + + + + +QScintilla: Class Members - Enumerator + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - z -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_f.html b/third_party/qscintilla/doc/html/functions_f.html new file mode 100644 index 0000000..376554c --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_f.html @@ -0,0 +1,235 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - f -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func.html b/third_party/qscintilla/doc/html/functions_func.html new file mode 100644 index 0000000..fc3388f --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func.html @@ -0,0 +1,148 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - a -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_b.html b/third_party/qscintilla/doc/html/functions_func_b.html new file mode 100644 index 0000000..32ffe16 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_b.html @@ -0,0 +1,122 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_c.html b/third_party/qscintilla/doc/html/functions_func_c.html new file mode 100644 index 0000000..4729f52 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_c.html @@ -0,0 +1,166 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - c -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_d.html b/third_party/qscintilla/doc/html/functions_func_d.html new file mode 100644 index 0000000..13bee3a --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_d.html @@ -0,0 +1,269 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - d -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_e.html b/third_party/qscintilla/doc/html/functions_func_e.html new file mode 100644 index 0000000..275c661 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_e.html @@ -0,0 +1,101 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - e -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_f.html b/third_party/qscintilla/doc/html/functions_func_f.html new file mode 100644 index 0000000..0f42fd8 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_f.html @@ -0,0 +1,196 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - f -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_g.html b/third_party/qscintilla/doc/html/functions_func_g.html new file mode 100644 index 0000000..10222d5 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_g.html @@ -0,0 +1,58 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - g -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_h.html b/third_party/qscintilla/doc/html/functions_func_h.html new file mode 100644 index 0000000..00f235b --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_h.html @@ -0,0 +1,83 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - h -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_i.html b/third_party/qscintilla/doc/html/functions_func_i.html new file mode 100644 index 0000000..184bc7a --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_i.html @@ -0,0 +1,128 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - i -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_k.html b/third_party/qscintilla/doc/html/functions_func_k.html new file mode 100644 index 0000000..e59d199 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_k.html @@ -0,0 +1,95 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_l.html b/third_party/qscintilla/doc/html/functions_func_l.html new file mode 100644 index 0000000..9995a82 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_l.html @@ -0,0 +1,322 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - l -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_m.html b/third_party/qscintilla/doc/html/functions_func_m.html new file mode 100644 index 0000000..3278cf1 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_m.html @@ -0,0 +1,139 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - m -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_o.html b/third_party/qscintilla/doc/html/functions_func_o.html new file mode 100644 index 0000000..d2f1a76 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_o.html @@ -0,0 +1,55 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - o -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_p.html b/third_party/qscintilla/doc/html/functions_func_p.html new file mode 100644 index 0000000..99cd54c --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_p.html @@ -0,0 +1,93 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - p -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_q.html b/third_party/qscintilla/doc/html/functions_func_q.html new file mode 100644 index 0000000..540fe4a --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_q.html @@ -0,0 +1,58 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - q -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_r.html b/third_party/qscintilla/doc/html/functions_func_r.html new file mode 100644 index 0000000..1449545 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_r.html @@ -0,0 +1,173 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - r -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_s.html b/third_party/qscintilla/doc/html/functions_func_s.html new file mode 100644 index 0000000..5e1b066 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_s.html @@ -0,0 +1,767 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - s -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_t.html b/third_party/qscintilla/doc/html/functions_func_t.html new file mode 100644 index 0000000..9a95c90 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_t.html @@ -0,0 +1,80 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - t -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_u.html b/third_party/qscintilla/doc/html/functions_func_u.html new file mode 100644 index 0000000..f93b06e --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_u.html @@ -0,0 +1,65 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - u -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_v.html b/third_party/qscintilla/doc/html/functions_func_v.html new file mode 100644 index 0000000..d0b750b --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_v.html @@ -0,0 +1,70 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - v -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_w.html b/third_party/qscintilla/doc/html/functions_func_w.html new file mode 100644 index 0000000..5b94855 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_w.html @@ -0,0 +1,130 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      + + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_z.html b/third_party/qscintilla/doc/html/functions_func_z.html new file mode 100644 index 0000000..c61c4d0 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_z.html @@ -0,0 +1,61 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - z -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_func_~.html b/third_party/qscintilla/doc/html/functions_func_~.html new file mode 100644 index 0000000..f5279cc --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_func_~.html @@ -0,0 +1,214 @@ + + + + + + + +QScintilla: Class Members - Functions + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +  + +

      - ~ -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_g.html b/third_party/qscintilla/doc/html/functions_g.html new file mode 100644 index 0000000..563fe6f --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_g.html @@ -0,0 +1,71 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - g -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_h.html b/third_party/qscintilla/doc/html/functions_h.html new file mode 100644 index 0000000..a54621a --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_h.html @@ -0,0 +1,172 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - h -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_i.html b/third_party/qscintilla/doc/html/functions_i.html new file mode 100644 index 0000000..42b047b --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_i.html @@ -0,0 +1,195 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - i -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_j.html b/third_party/qscintilla/doc/html/functions_j.html new file mode 100644 index 0000000..ef0e808 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_j.html @@ -0,0 +1,91 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - j -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_k.html b/third_party/qscintilla/doc/html/functions_k.html new file mode 100644 index 0000000..b4e0234 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_k.html @@ -0,0 +1,166 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - k -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_l.html b/third_party/qscintilla/doc/html/functions_l.html new file mode 100644 index 0000000..11901b1 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_l.html @@ -0,0 +1,422 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - l -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_m.html b/third_party/qscintilla/doc/html/functions_m.html new file mode 100644 index 0000000..c652de3 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_m.html @@ -0,0 +1,196 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - m -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_n.html b/third_party/qscintilla/doc/html/functions_n.html new file mode 100644 index 0000000..50911ad --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_n.html @@ -0,0 +1,101 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - n -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_o.html b/third_party/qscintilla/doc/html/functions_o.html new file mode 100644 index 0000000..4e3ac4c --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_o.html @@ -0,0 +1,95 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - o -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_p.html b/third_party/qscintilla/doc/html/functions_p.html new file mode 100644 index 0000000..b9097ef --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_p.html @@ -0,0 +1,301 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - p -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_q.html b/third_party/qscintilla/doc/html/functions_q.html new file mode 100644 index 0000000..4e1d011 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_q.html @@ -0,0 +1,94 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - q -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_r.html b/third_party/qscintilla/doc/html/functions_r.html new file mode 100644 index 0000000..f80060f --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_r.html @@ -0,0 +1,232 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - r -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_s.html b/third_party/qscintilla/doc/html/functions_s.html new file mode 100644 index 0000000..bab90da --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_s.html @@ -0,0 +1,1672 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - s -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_t.html b/third_party/qscintilla/doc/html/functions_t.html new file mode 100644 index 0000000..c1cd473 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_t.html @@ -0,0 +1,187 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - t -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_u.html b/third_party/qscintilla/doc/html/functions_u.html new file mode 100644 index 0000000..b5517b6 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_u.html @@ -0,0 +1,125 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - u -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_v.html b/third_party/qscintilla/doc/html/functions_v.html new file mode 100644 index 0000000..69ad38b --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_v.html @@ -0,0 +1,129 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - v -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_w.html b/third_party/qscintilla/doc/html/functions_w.html new file mode 100644 index 0000000..012f6a9 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_w.html @@ -0,0 +1,228 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - w -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_x.html b/third_party/qscintilla/doc/html/functions_x.html new file mode 100644 index 0000000..0ded7d4 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_x.html @@ -0,0 +1,61 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - x -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_z.html b/third_party/qscintilla/doc/html/functions_z.html new file mode 100644 index 0000000..2a9165e --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_z.html @@ -0,0 +1,67 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - z -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/functions_~.html b/third_party/qscintilla/doc/html/functions_~.html new file mode 100644 index 0000000..08f3929 --- /dev/null +++ b/third_party/qscintilla/doc/html/functions_~.html @@ -0,0 +1,214 @@ + + + + + + + +QScintilla: Class Members + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      Here is a list of all documented class members with links to the class documentation for each member:
      + +

      - ~ -

      +
      + + + + diff --git a/third_party/qscintilla/doc/html/hierarchy.html b/third_party/qscintilla/doc/html/hierarchy.html new file mode 100644 index 0000000..e6ddfca --- /dev/null +++ b/third_party/qscintilla/doc/html/hierarchy.html @@ -0,0 +1,118 @@ + + + + + + + +QScintilla: Class Hierarchy + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      Class Hierarchy
      +
      +
      +
      This inheritance list is sorted roughly, but not completely, alphabetically:
      +
      [detail level 1234]
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
       CQAbstractScrollArea
       CQsciScintillaBaseImplements the Scintilla editor widget and its low-level API
       CQsciScintillaImplements a higher level, more Qt-like, API to the Scintilla editor widget
       CQObject
       CQsciAbstractAPIsInterface to the textual API information used in call tips and for auto-completion. A sub-class will provide the actual implementation of the interface
       CQsciAPIsProvies an implementation of the textual API information used in call tips and for auto-completion
       CQsciLexerAbstract class used as a base for language lexers
       CQsciLexerAsmThe abstract QsciLexerAsm class encapsulates the Scintilla Asm lexer
       CQsciLexerMASMEncapsulates the Scintilla MASM lexer
       CQsciLexerNASMEncapsulates the Scintilla NASM lexer
       CQsciLexerAVSEncapsulates the Scintilla AVS lexer
       CQsciLexerBashEncapsulates the Scintilla Bash lexer
       CQsciLexerBatchEncapsulates the Scintilla batch file lexer
       CQsciLexerCMakeEncapsulates the Scintilla CMake lexer
       CQsciLexerCoffeeScriptEncapsulates the Scintilla CoffeeScript lexer
       CQsciLexerCPPEncapsulates the Scintilla C++ lexer
       CQsciLexerCSharpEncapsulates the Scintilla C# lexer
       CQsciLexerIDLEncapsulates the Scintilla IDL lexer
       CQsciLexerJavaEncapsulates the Scintilla Java lexer
       CQsciLexerJavaScriptEncapsulates the Scintilla JavaScript lexer
       CQsciLexerCSSEncapsulates the Scintilla CSS lexer
       CQsciLexerCustomAbstract class used as a base for new language lexers
       CQsciLexerDEncapsulates the Scintilla D lexer
       CQsciLexerDiffEncapsulates the Scintilla Diff lexer
       CQsciLexerEDIFACTEncapsulates the Scintilla EDIFACT lexer
       CQsciLexerFortran77Encapsulates the Scintilla Fortran77 lexer
       CQsciLexerFortranEncapsulates the Scintilla Fortran lexer
       CQsciLexerHexThe abstract QsciLexerHex class encapsulates the Scintilla Hex lexer
       CQsciLexerIntelHexEncapsulates the Scintilla Intel Hex lexer
       CQsciLexerSRecEncapsulates the Scintilla S-Record lexer
       CQsciLexerTekHexEncapsulates the Scintilla Tektronix Hex lexer
       CQsciLexerHTMLEncapsulates the Scintilla HTML lexer
       CQsciLexerXMLEncapsulates the Scintilla XML lexer
       CQsciLexerJSONEncapsulates the Scintilla JSON lexer
       CQsciLexerLuaEncapsulates the Scintilla Lua lexer
       CQsciLexerMakefileEncapsulates the Scintilla Makefile lexer
       CQsciLexerMarkdownEncapsulates the Scintilla Markdown lexer
       CQsciLexerMatlabEncapsulates the Scintilla Matlab file lexer
       CQsciLexerOctaveEncapsulates the Scintilla Octave file lexer
       CQsciLexerPascalEncapsulates the Scintilla Pascal lexer
       CQsciLexerPerlEncapsulates the Scintilla Perl lexer
       CQsciLexerPOEncapsulates the Scintilla PO lexer
       CQsciLexerPostScriptEncapsulates the Scintilla PostScript lexer
       CQsciLexerPOVEncapsulates the Scintilla POV lexer
       CQsciLexerPropertiesEncapsulates the Scintilla Properties lexer
       CQsciLexerPythonEncapsulates the Scintilla Python lexer
       CQsciLexerRubyEncapsulates the Scintilla Ruby lexer
       CQsciLexerSpiceEncapsulates the Scintilla Spice lexer
       CQsciLexerSQLEncapsulates the Scintilla SQL lexer
       CQsciLexerTCLEncapsulates the Scintilla TCL lexer
       CQsciLexerTeXEncapsulates the Scintilla TeX lexer
       CQsciLexerVerilogEncapsulates the Scintilla Verilog lexer
       CQsciLexerVHDLEncapsulates the Scintilla VHDL lexer
       CQsciLexerYAMLEncapsulates the Scintilla YAML lexer
       CQsciMacroSequence of recordable editor commands
       CQPrinter
       CQsciPrinterSub-class of the Qt QPrinter class that is able to print the text of a Scintilla document
       CQsciCommandInternal editor command that may have one or two keys bound to it
       CQsciCommandSetSet of all internal editor commands that may have keys bound
       CQsciDocumentDocument to be edited
       CQsciStyleEncapsulates all the attributes of a style
       CQsciStyledTextContainer for a piece of text and the style used to display the text
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/index.html b/third_party/qscintilla/doc/html/index.html new file mode 100644 index 0000000..85b0ac6 --- /dev/null +++ b/third_party/qscintilla/doc/html/index.html @@ -0,0 +1,148 @@ + + + + + + + +QScintilla: QScintilla - a Port to Qt v5 and Qt v6 of Scintilla + + + + + + +
      +
      + + + + + + +
      +
      QScintilla +  2.14.1 +
      +
      +
      + + + + + + +
      +
      +
      +
      QScintilla - a Port to Qt v5 and Qt v6 of Scintilla
      +
      +
      +

      Introduction

      +

      QScintilla is a port to Qt of the Scintilla editing component.

      +

      As well as features found in standard text editing components, Scintilla includes features especially useful when editing and debugging source code:

      +
        +
      • +syntax styling with support for over 70 languages
      • +
      • +error indicators
      • +
      • +code completion
      • +
      • +call tips
      • +
      • +code folding
      • +
      • +margins can contain markers like those used in debuggers to indicate breakpoints and the current line.
      • +
      • +recordable macros
      • +
      • +multiple views
      • +
      • +printing.
      • +
      +

      QScintilla is a port or Scintilla to the Qt GUI toolkit from The Qt Company and runs on any operating system supported by Qt (eg. Windows, Linux, macOS, iOS and Android). QScintilla works with Qt v5 and v6.

      +

      QScintilla also includes language bindings for Python. These require that PyQt v5 or v6 is also installed.

      +

      This version of QScintilla is based on Scintilla v3.10.1.

      +

      Licensing

      +

      QScintilla is available under the GNU General Public License v3 and the Riverbank Commercial License.

      +

      The commercial license allows closed source applications using QScintilla to be developed and distributed. At the moment the commercial version of QScintilla is bundled with, but packaged separately from, the commercial version of PyQt.

      +

      The Scintilla code within QScintilla is released under the following license:

      +
      + License for Scintilla and SciTE
       Copyright 1998-2003 by Neil Hodgson neilh.nosp@m.@sci.nosp@m.ntill.nosp@m.a.or.nosp@m.g
       All Rights Reserved
       Permission to use, copy, modify, and distribute this software and its
      + documentation for any purpose and without fee is hereby granted,
      + provided that the above copyright notice appear in all copies and that
      + both that copyright notice and this permission notice appear in
      + supporting documentation.
       NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
      + SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
      + AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY
      + SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
      + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
      + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
      + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
      + OR PERFORMANCE OF THIS SOFTWARE.
      +

      Installation

      +

      As supplied QScintilla will be built as a shared library/DLL and installed in the same directories as the Qt libraries and include files.

      +

      If you wish to build a static version of the library then pass CONFIG+=staticlib on the qmake command line.

      +

      On macOS, if you wish to build a dynamic version of the library that supports both x86_64 and arm64 architectures then edit the file qscintilla.pro in the src directory and comment in the definition of QMAKE_APPLE_DEVICE_ARCHS. Similar changes can be made to the .pro files for the Designer plugin and the example application.

      +

      If you want to make more significant changes to the configuration then edit the file qscintilla.pro in the src directory.

      +

      If you do make changes, specifically to the names of the installation directories or the name of the library, then you may also need to update the src/features/qscintilla2.prf file.

      +

      See your qmake documentation for more details.

      +

      To build and install QScintilla, run:

      +
      +    cd src
      +    qmake
      +    make
      +    make install
      +

      If you have multiple versions of Qt installed then make sure you use the correct version of qmake.

      +

      The underlying Scintilla code may support additional compile-time options. These can be configured by passing appropriate arguments to qmake. For example, if you have an old C++ compiler that does not have a working std::regex then invoke qmake as follows:

      +
      +    qmake DEFINES+=NO_CXX11_REGEX=1
      +

      Installation on Windows

      +

      Before compiling QScintilla on Windows you should remove the Qsci directory containing the QScintilla header files from any previous installation. This is because the Makefile generated by qmake will find these older header files instead of the new ones.

      +

      Depending on the compiler you are using you may need to run nmake rather than make.

      +

      If you have built a Windows DLL then you probably also want to run:

      +
      +    copy %QTDIR%\lib\qscintilla2.dll %QTDIR%\bin
      +

      Integration with qmake

      +

      To configure qmake to find your QScintilla installation, add the following line to your application's .pro file:

      +
      +    CONFIG += qscintilla2
      +

      Qt Designer Plugin

      +

      QScintilla includes an optional plugin for Qt Designer that allows QScintilla instances to be included in GUI designs just like any other Qt widget.

      +

      To build the plugin on all platforms, make sure QScintilla is installed and then run (as root or administrator):

      +
      +    cd designer
      +    qmake
      +    make
      +    make install
      +

      On Windows (and depending on the compiler you are using) you may need to run nmake rather than make.

      +

      Example Application

      +

      The example application provided is a port of the standard Qt application example with the QsciScintilla class being used instead of Qt's QTextEdit class.

      +

      The example does not demonstrate all of the extra features of QScintilla.

      +

      To build the example, run:

      +
      +    cd example
      +    qmake
      +    make
      +

      On Windows (and depending on the compiler you are using) you may need to run nmake rather than make.

      +

      Python Bindings

      +

      The Python bindings are in the Python sub-directory. You must have either PyQt5 or PyQt6 already installed and PyQt-builder. QScintilla must also already be built and installed.

      +

      The Python sub-directory contains a pyproject-qt5.toml file and a pyproject-qt6.toml file. If you are building for PyQt5 and Qt v5 then you must copy the pyproject-qt5.toml file to pyproject.toml. If instead you are building for PyQt6 and Qt v6 then you must copy the pyproject-qt6.toml file to pyproject.toml.

      +

      To build and install the bindings, run:

      +
      +    cd Python
      +    sip-install
      +
      +
      + + + + diff --git a/third_party/qscintilla/doc/html/jquery.js b/third_party/qscintilla/doc/html/jquery.js new file mode 100644 index 0000000..103c32d --- /dev/null +++ b/third_party/qscintilla/doc/html/jquery.js @@ -0,0 +1,35 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
      "],col:[2,"","
      "],tr:[2,"","
      "],td:[3,"","
      "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
      ",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
      ",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
      "),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
      ").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
      "),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
      "),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element +},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** + * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler + * Licensed under MIT + * @author Ariel Flesler + * @version 2.1.2 + */ +;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
      ').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/third_party/qscintilla/doc/html/menu.js b/third_party/qscintilla/doc/html/menu.js new file mode 100644 index 0000000..2fe2214 --- /dev/null +++ b/third_party/qscintilla/doc/html/menu.js @@ -0,0 +1,51 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + var result=''; + if ('children' in data) { + result+=''; + } + return result; + } + + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchEnabled) { + if (serverSide) { + $('#main-menu').append('
    1. '); + } else { + $('#main-menu').append('
    2. '); + } + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/third_party/qscintilla/doc/html/menudata.js b/third_party/qscintilla/doc/html/menudata.js new file mode 100644 index 0000000..7520f9d --- /dev/null +++ b/third_party/qscintilla/doc/html/menudata.js @@ -0,0 +1,108 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Classes",url:"annotated.html",children:[ +{text:"Class List",url:"annotated.html"}, +{text:"Class Hierarchy",url:"hierarchy.html"}, +{text:"Class Members",url:"functions.html",children:[ +{text:"All",url:"functions.html",children:[ +{text:"a",url:"functions.html#index_a"}, +{text:"b",url:"functions_b.html#index_b"}, +{text:"c",url:"functions_c.html#index_c"}, +{text:"d",url:"functions_d.html#index_d"}, +{text:"e",url:"functions_e.html#index_e"}, +{text:"f",url:"functions_f.html#index_f"}, +{text:"g",url:"functions_g.html#index_g"}, +{text:"h",url:"functions_h.html#index_h"}, +{text:"i",url:"functions_i.html#index_i"}, +{text:"j",url:"functions_j.html#index_j"}, +{text:"k",url:"functions_k.html#index_k"}, +{text:"l",url:"functions_l.html#index_l"}, +{text:"m",url:"functions_m.html#index_m"}, +{text:"n",url:"functions_n.html#index_n"}, +{text:"o",url:"functions_o.html#index_o"}, +{text:"p",url:"functions_p.html#index_p"}, +{text:"q",url:"functions_q.html#index_q"}, +{text:"r",url:"functions_r.html#index_r"}, +{text:"s",url:"functions_s.html#index_s"}, +{text:"t",url:"functions_t.html#index_t"}, +{text:"u",url:"functions_u.html#index_u"}, +{text:"v",url:"functions_v.html#index_v"}, +{text:"w",url:"functions_w.html#index_w"}, +{text:"x",url:"functions_x.html#index_x"}, +{text:"z",url:"functions_z.html#index_z"}, +{text:"~",url:"functions_~.html#index__7E"}]}, +{text:"Functions",url:"functions_func.html",children:[ +{text:"a",url:"functions_func.html#index_a"}, +{text:"b",url:"functions_func_b.html#index_b"}, +{text:"c",url:"functions_func_c.html#index_c"}, +{text:"d",url:"functions_func_d.html#index_d"}, +{text:"e",url:"functions_func_e.html#index_e"}, +{text:"f",url:"functions_func_f.html#index_f"}, +{text:"g",url:"functions_func_g.html#index_g"}, +{text:"h",url:"functions_func_h.html#index_h"}, +{text:"i",url:"functions_func_i.html#index_i"}, +{text:"k",url:"functions_func_k.html#index_k"}, +{text:"l",url:"functions_func_l.html#index_l"}, +{text:"m",url:"functions_func_m.html#index_m"}, +{text:"o",url:"functions_func_o.html#index_o"}, +{text:"p",url:"functions_func_p.html#index_p"}, +{text:"q",url:"functions_func_q.html#index_q"}, +{text:"r",url:"functions_func_r.html#index_r"}, +{text:"s",url:"functions_func_s.html#index_s"}, +{text:"t",url:"functions_func_t.html#index_t"}, +{text:"u",url:"functions_func_u.html#index_u"}, +{text:"v",url:"functions_func_v.html#index_v"}, +{text:"w",url:"functions_func_w.html#index_w"}, +{text:"z",url:"functions_func_z.html#index_z"}, +{text:"~",url:"functions_func_~.html#index__7E"}]}, +{text:"Enumerations",url:"functions_enum.html"}, +{text:"Enumerator",url:"functions_eval.html",children:[ +{text:"a",url:"functions_eval.html#index_a"}, +{text:"b",url:"functions_eval_b.html#index_b"}, +{text:"c",url:"functions_eval_c.html#index_c"}, +{text:"d",url:"functions_eval_d.html#index_d"}, +{text:"e",url:"functions_eval_e.html#index_e"}, +{text:"f",url:"functions_eval_f.html#index_f"}, +{text:"g",url:"functions_eval_g.html#index_g"}, +{text:"h",url:"functions_eval_h.html#index_h"}, +{text:"i",url:"functions_eval_i.html#index_i"}, +{text:"j",url:"functions_eval_j.html#index_j"}, +{text:"k",url:"functions_eval_k.html#index_k"}, +{text:"l",url:"functions_eval_l.html#index_l"}, +{text:"m",url:"functions_eval_m.html#index_m"}, +{text:"n",url:"functions_eval_n.html#index_n"}, +{text:"o",url:"functions_eval_o.html#index_o"}, +{text:"p",url:"functions_eval_p.html#index_p"}, +{text:"q",url:"functions_eval_q.html#index_q"}, +{text:"r",url:"functions_eval_r.html#index_r"}, +{text:"s",url:"functions_eval_s.html#index_s"}, +{text:"t",url:"functions_eval_t.html#index_t"}, +{text:"u",url:"functions_eval_u.html#index_u"}, +{text:"v",url:"functions_eval_v.html#index_v"}, +{text:"w",url:"functions_eval_w.html#index_w"}, +{text:"x",url:"functions_eval_x.html#index_x"}, +{text:"z",url:"functions_eval_z.html#index_z"}]}]}]}]} diff --git a/third_party/qscintilla/doc/html/nav_f.png b/third_party/qscintilla/doc/html/nav_f.png new file mode 100644 index 0000000000000000000000000000000000000000..72a58a529ed3a9ed6aa0c51a79cf207e026deee2 GIT binary patch literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^j6iI`!2~2XGqLUlQVE_ejv*C{Z|{2ZH7M}7UYxc) zn!W8uqtnIQ>_z8U literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/nav_g.png b/third_party/qscintilla/doc/html/nav_g.png new file mode 100644 index 0000000000000000000000000000000000000000..2093a237a94f6c83e19ec6e5fd42f7ddabdafa81 GIT binary patch literal 95 zcmeAS@N?(olHy`uVBq!ia0vp^j6lrB!3HFm1ilyoDK$?Q$B+ufw|5PB85lU25BhtE tr?otc=hd~V+ws&_A@j8Fiv!KF$B+ufw|5=67#uj90@pIL wZ=Q8~_Ju`#59=RjDrmm`tMD@M=!-l18IR?&vFVdQ&MBb@0HFXL1|%O$WD@{VPM$7~Ar*{o?;hlAFyLXmaDC0y znK1_#cQqJWPES%4Uujug^TE?jMft$}Eq^WaR~)%f)vSNs&gek&x%A9X9sM-{AmhX=Jf(#6djGiuzAr*{o?=JLmPLyc> z_*`QK&+BH@jWrYJ7>r6%keRM@)Qyv8R=enp0jiI>aWlGyB58O zFVR20d+y`K7vDw(hJF3;>dD*3-?v=<8M)@x|EEGLnJsniYK!2U1 Y!`|5biEc?d1`HDhPgg&ebxsLQ02F6;9RL6T literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/sync_off.png b/third_party/qscintilla/doc/html/sync_off.png new file mode 100644 index 0000000000000000000000000000000000000000..3b443fc62892114406e3d399421b2a881b897acc GIT binary patch literal 853 zcmV-b1FHOqP)oT|#XixUYy%lpuf3i8{fX!o zUyDD0jOrAiT^tq>fLSOOABs-#u{dV^F$b{L9&!2=9&RmV;;8s^x&UqB$PCj4FdKbh zoB1WTskPUPu05XzFbA}=KZ-GP1fPpAfSs>6AHb12UlR%-i&uOlTpFNS7{jm@mkU1V zh`nrXr~+^lsV-s1dkZOaI|kYyVj3WBpPCY{n~yd%u%e+d=f%`N0FItMPtdgBb@py; zq@v6NVArhyTC7)ULw-Jy8y42S1~4n(3LkrW8mW(F-4oXUP3E`e#g**YyqI7h-J2zK zK{m9##m4ri!7N>CqQqCcnI3hqo1I;Yh&QLNY4T`*ptiQGozK>FF$!$+84Z`xwmeMh zJ0WT+OH$WYFALEaGj2_l+#DC3t7_S`vHpSivNeFbP6+r50cO8iu)`7i%Z4BTPh@_m3Tk!nAm^)5Bqnr%Ov|Baunj#&RPtRuK& z4RGz|D5HNrW83-#ydk}tVKJrNmyYt-sTxLGlJY5nc&Re zU4SgHNPx8~Yxwr$bsju?4q&%T1874xxzq+_%?h8_ofw~(bld=o3iC)LUNR*BY%c0y zWd_jX{Y8`l%z+ol1$@Qa?Cy!(0CVIEeYpKZ`(9{z>3$CIe;pJDQk$m3p}$>xBm4lb zKo{4S)`wdU9Ba9jJbVJ0C=SOefZe%d$8=2r={nu<_^a3~>c#t_U6dye5)JrR(_a^E f@}b6j1K9lwFJq@>o)+Ry00000NkvXXu0mjfWa5j* literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/sync_on.png b/third_party/qscintilla/doc/html/sync_on.png new file mode 100644 index 0000000000000000000000000000000000000000..e08320fb64e6fa33b573005ed6d8fe294e19db76 GIT binary patch literal 845 zcmV-T1G4;yP)Y;xxyHF2B5Wzm| zOOGupOTn@c(JmBOl)e;XMNnZuiTJP>rM8<|Q`7I_))aP?*T)ow&n59{}X4$3Goat zgjs?*aasfbrokzG5cT4K=uG`E14xZl@z)F={P0Y^?$4t z>v!teRnNZym<6h{7sLyF1V0HsfEl+l6TrZpsfr1}luH~F7L}ktXu|*uVX^RG$L0`K zWs3j|0tIvVe(N%_?2{(iCPFGf#B6Hjy6o&}D$A%W%jfO8_W%ZO#-mh}EM$LMn7joJ z05dHr!5Y92g+31l<%i1(=L1a1pXX+OYnalY>31V4K}BjyRe3)9n#;-cCVRD_IG1fT zOKGeNY8q;TL@K{dj@D^scf&VCs*-Jb>8b>|`b*osv52-!A?BpbYtTQBns5EAU**$m zSnVSm(teh>tQi*S*A>#ySc=n;`BHz`DuG4&g4Kf8lLhca+zvZ7t7RflD6-i-mcK=M z!=^P$*u2)bkY5asG4gsss!Hn%u~>}kIW`vMs%lJLH+u*9<4PaV_c6U`KqWXQH%+Nu zTv41O(^ZVi@qhjQdG!fbZw&y+2o!iYymO^?ud3{P*HdoX83YV*Uu_HB=?U&W9%AU# z80}k1SS-CXTU7dcQlsm<^oYLxVSseqY6NO}dc`Nj?8vrhNuCdm@^{a3AQ_>6myOj+ z`1RsLUXF|dm|3k7s2jD(B{rzE>WI2scH8i1;=O5Cc9xB3^aJk%fQjqsu+kH#0=_5a z0nCE8@dbQa-|YIuUVvG0L_IwHMEhOj$Mj4Uq05 X8=0q~qBNan00000NkvXXu0mjfptF>5 literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/tab_a.png b/third_party/qscintilla/doc/html/tab_a.png new file mode 100644 index 0000000000000000000000000000000000000000..3b725c41c5a527a3a3e40097077d0e206a681247 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^j6kfy!2~3aiye;!QlXwMjv*C{Z|8b*H5dputLHD# z=<0|*y7z(Vor?d;H&?EG&cXR}?!j-Lm&u1OOI7AIF5&c)RFE;&p0MYK>*Kl@eiymD r@|NpwKX@^z+;{u_Z~trSBfrMKa%3`zocFjEXaR$#tDnm{r-UW|TZ1%4 literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/tab_b.png b/third_party/qscintilla/doc/html/tab_b.png new file mode 100644 index 0000000000000000000000000000000000000000..e2b4a8638cb3496a016eaed9e16ffc12846dea18 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^j6kfy!2~3aiye;!QU#tajv*C{Z}0l@H7kg?K0Lnr z!j&C6_(~HV9oQ0Pa6x{-v0AGV_E?vLn=ZI-;YrdjIl`U`uzuDWSP?o#Dmo{%SgM#oan kX~E1%D-|#H#QbHoIja2U-MgvsK&LQxy85}Sb4q9e0Efg%P5=M^ literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/doc/html/tabs.css b/third_party/qscintilla/doc/html/tabs.css new file mode 100644 index 0000000..85a0cd5 --- /dev/null +++ b/third_party/qscintilla/doc/html/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/third_party/qscintilla/doc/qscintilla.dxy b/third_party/qscintilla/doc/qscintilla.dxy new file mode 100644 index 0000000..348f96e --- /dev/null +++ b/third_party/qscintilla/doc/qscintilla.dxy @@ -0,0 +1,1514 @@ +# Doxyfile 1.6.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = QScintilla + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = "2.14.1" + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = NO + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. Note that for custom extensions you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = NO + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = YES + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = NO + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = NO + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text " + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = README.doc ../src/Qsci + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = qsci*.h + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = Qsci + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = NO + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 3 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# When the SEARCHENGINE tag is enable doxygen will generate a search box for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP) +# there is already a search function so this one should typically +# be disabled. + +SEARCHENGINE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include source code with syntax highlighting in the LaTeX output. Note that which sources are shown also depends on other settings such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = QT_VERSION=0x040000 + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = NO + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff --git a/third_party/qscintilla/example/application.pro b/third_party/qscintilla/example/application.pro new file mode 100644 index 0000000..a3114b6 --- /dev/null +++ b/third_party/qscintilla/example/application.pro @@ -0,0 +1,9 @@ +CONFIG += qscintilla2 + +# Comment this in to build a dynamic library supporting multiple architectures +# on macOS. +#QMAKE_APPLE_DEVICE_ARCHS = x86_64 arm64 + +HEADERS = mainwindow.h +SOURCES = main.cpp mainwindow.cpp +RESOURCES = application.qrc diff --git a/third_party/qscintilla/example/application.qrc b/third_party/qscintilla/example/application.qrc new file mode 100644 index 0000000..0a776fa --- /dev/null +++ b/third_party/qscintilla/example/application.qrc @@ -0,0 +1,10 @@ + + + images/copy.png + images/cut.png + images/new.png + images/open.png + images/paste.png + images/save.png + + diff --git a/third_party/qscintilla/example/images/copy.png b/third_party/qscintilla/example/images/copy.png new file mode 100644 index 0000000000000000000000000000000000000000..f2c04dfe30bb668579edc52dd20d79e65f794289 GIT binary patch literal 1339 zcmV-B1;qM^P)D4e0i~yl%M(eSR;z=Nu$lPz-oc0og zoB&7OJFPYcHZrCJ5MgHFct&JQipEk{2_+GZrqJA>u|Emoe*s8|$vl#HWGu<&55n$= z!sQMk5=*1>;~z{kbXftg>&Q0Mke)gC+?f|&E%AJ+JdKK~8dNfUSX+nNV-t@7SZzzV zzvzc+6jZ zxjE=2CQwjNfFaHAeB4Q<`320FTpYmRPr>60;m2N`$N*|~15iU|c*+%z$KmyQkxr*E zIXQ{S%4*Ec8hHZ`%r@wzEgXPkT5#k0>!WU20m9)hj7B4WPNh=#xwjXMpM8ND2H{u| zq3-I&sfI?JX*!2nBjdPmZCGA_jg1ZH_4>zv`uh5zWDuc^ILtN|1cMP%GbUIa9$f4i zl^k`t92KyPOo z68jY6U%LCGRX5fw$m~&?CUtX3GKuS-k2_PDca`R9q zgyPZ)Tpbi}i*1sF25^uO6QJyn86fp=%t>TU`vQR!msR0Hw}AfXjJftfrh!k|Wditj z^^}^ly1L3C-YKcTrCtGdZQ%N42Dm*BoVvJ20I7BoO*%?W+cA9ytgNhHeSMun9A^!D z+a*9f0sK0bY2fl0(6E;VBx7l_y+ryJfFmD}KpuIj0>^xExqLli|EJ@!WO`IpMcw1cUb>2Ox3VggX9R2)E>;nH}MAtj}K zpHe#<4lXiYTwLT(FCTryMd!%f9&~pEXlZE?rHzGBOJ6qhyu7>&pU(%I&BpIbOG_Mr z0O+}}u+S_E08J_>H5t(}-RT>TYNrOQRx7WbTA}|L42DErUfwI)b43srvc(d0w|h zqlwhj)j1!g?PB_f>2S8cGyfAnsZ@$ir;}GqN$KQ6N$czDojEx>X#9duwSOz^*2K~Rv2iD&0qik002ovPDHLkV1nLmW`h6# literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/example/images/cut.png b/third_party/qscintilla/example/images/cut.png new file mode 100644 index 0000000000000000000000000000000000000000..54638e9386dc8af40dcc9a3ee2f57c62e248e406 GIT binary patch literal 1323 zcmV+`1=RY9P)J0(1!|L=@Q+aTEb7Mu4u}WZlMQB24&|#EVDBq0{%sj+Z+)GGQx0 zAcdU1Fi0-lfEhqCt9ecIzWZ_$Xk-SF1YV<2^ak#QNA=LXgUd}Io1OMRbT7RYGCd%P zKS-r48v%?ldBMA#h)c%T#wHG+5V`$A{>3XcMvM|%P6Cssr>70f(>b}AV>T2D(&VEn zK_HANo+{rrN9){swakg0Ktz^QgDWfxHbzJY6ZK>&doEN10r&$qzrYSODpcQMh*H%o zSOat&76=4-MOF34plx)*)N}VCzH?EPkgku=6VK(8gNL*Np3E)-)CS$Jnai-RudhD8 z(qOgQ?SS}sjv4h}*IqNacG`39XxPWcN1v;!unrFm!4QYC z_Acj^H}`jQVc5OsUVtxVnxKZ?sWw9Q@B`QxpVZH#=NgKbEq?xOmsA>SUtb@%(9v@T zVsaH$PQ-_o)Qm6`=@qvgI2;Z@q}CZRo`stQer>5G8e5my4CXEh^CT4CHjaC}9?{K0 z$O&($1U%8bR;v{dcYhm%^O9V6PFgxKporEb{=Djv}7NhUQZ#8TNvL0_NhN zpdjG!cwn(uKwDk``_Co}Ev8e>XOzzgOoQTEd*;Gmnz9rW3I&M8V#v(QgrcG%P^;C@ z+1bfp?EcBQ$=j!OF1OE1fUdXLDR2(JYL~2dh{}J0;wgy^K9?&YTb2(8W8+7JA12t6 za%7Hg8ovjl(FiTAE%3|0ARIXHz6G;l!311sgoTBKM%*UnGOR4mGqn@!JL9_3Gp~Z> z{(6Z9p5FXo8}~etjeBORPg}}0?N~!YJv1~lfTgz=G8Dzb^Xb54Jd))oo;F?OoGLPS zee{DaT5J+A3>zitarZCFC+`J^U;fkNL<>x4^vOPTl^zTR1GKld!`H@^F|L6LX7M&{ zIA}acIyz>{0a00^F4~fx%15b|k+|p_1^WSy+Zxk*z z((l+8X-U2;oygOcJEspZj3vh3pSpKnaW$YpY_$lC`IPbC@H0!Ad}tF|z0RZAYfnh` z3=gmm{_}^(`7iFdNp1l4dp_;=2p%dvUFBG+@kd(qwpj}i9kWBpkvIuC`Kgv6`dk_f h&$IvkH~dc%_#Nkm8M#Em0nY#c002ovPDHLkV1hsWYZL$g literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/example/images/new.png b/third_party/qscintilla/example/images/new.png new file mode 100644 index 0000000000000000000000000000000000000000..12131b01008a3ec29ec69f8b3f65c4b3c15b60d6 GIT binary patch literal 852 zcmV-a1FQUrP)IE2xvpcKl890$E8eWxeF8o0mWjmIG{M&7eWO9CVRojsy7@;&dpQ!a9t0J7gPX(5I|>76wd9YM;~Wq>Ghkp6rY@= zsi|pt_x=M#qtRtve?bMn?-1>_C5DBX;{}vm&C%raD|#~il%B<2&`e?uix*V@+JPAL z6CgbQkZR2~6*sGtFK$zbV~w|k*M3m}@OjM5T^_Z^d)w}xJHF(IUAVpO;*`oW;C1B2 zbys585IO4RGepz@rv~8kI;}Y(n3!mCfS7AgQ=I?+DlNG&;!abH5Df(KZTl#;d_@48 zJKJjfX^uQ>h#Iar6M#C8w^So4*Tn<|1^_iEoENLSCA-QKz)fKe6)JLW%zjz|XlmW9 z@suY3Q`{VJZCgNKnyVajp6h`@6-N=kYKbun)^`LT3}hx^wrO>XsHzE2w#B^A1Ngov zV}~hV3>btQ09#E(0CWRWn5~q>9Op*n90161U8$i6fc^Yd5_2;F2sIc&=-PaaDX2~W zTL1&dm}fQw05ax<-uM>_{4Cgt02pUFPqb7NBbWjJ0t`O;#ZxHoL%3#1_iOo5hu6MT z0mxO4x=yW24v?>f-nYV%Jx`{y-lMT`>)O!u6_~SbsQ_#=q-z-e;1PdX7gN*|3t4aE z?!Drr!OKg0ZH#q?HK_Wx9NlHvJdYn4{+`bsH@(TacqVT~0BG|6fti$^=|8_20YcOC e{Jor>rG5iZY$c(Rl?rzN0000RP)CWtKz1rEEwa&Ubd$6s{da=&VIP1;2`BM0`Wb;D z{M-!)vd0-ix#k=pmKgFxQgYk(eOi$0QlJD2NbOI5d5567avIIj< zv@<}9dj`!tE;Q@xs8{wNhf{?zUNu9!u=J3D!C+h_ze{}K1V|htI6?j0>T@UYxhDij zhnKMl|M#(rT!AcZ}eF)wgP_d zAX10jekLr}U#(CrCA<(opAbNs2#S{v>vbjZBPMG2>Dlh2!oC#Mk@9m9Zc z2%^^3CBjkLC=!RpAFqNhVw6pZB#Q!^oqj*T-F(Vw$mLX*nO_ zNX-3DeeTpEomGUYnz~IsN92z9JUkMF)7=lf!HB}*Vw`?29z6pA^e+N~guKQ7E$%u) zC{dC3_66}y+`oN81yr%;K@{IH8|1O-3y*riL6}qGd@SEo}8X#Q_kq zZ|eG3QMpHgF(8Pc07FLLD$kpMaaUZZl&Qk=tr>Kq76&g@g}Kbh`}mD}bLg zSob6#9DIaI(-=7VVTPPm{Z+FbtPVT4Iv?2~9(pg}6TG@z0w%t}gOqRBIG>z~1AjdP zW3QR%ZYsA%*Mp?X$w>b?i;UGgQ?+sSsoXX8X`%zES@sOGBngFV;lVB@d3_10@@V;lg>dY2BN>v^RZ2^?j@k8NdQ$X;_ z_a$H}ZfeJ=gha#~If~qTHdcoJ4Lhqwh-3dbkKgY5JsSA}oWGEOlkpdDqpb%S#7{~T>2A7M zsP8QLl$cN`w?OF*Jo#7bDJpj@!Dj^fwz=d)jlRsXTKwbW85}(HH?VT^u<$rb~rBzaiB|lB=W)A?(%51dO$!?mU^ ze8O#IHd*n50bG}w!BKl4^90wps7K`#)>4RXJ_(`usyx1v$_9j`-;Pq{6K%jV&lNRO%>FPb&x$A5bBEmwG~ zsNAo;tlZJ!2;Bu-bsyf#uSL0b05WG_^}?r@soeJn(y81#_yhC8@e_i|9PXV^3ptdy z4Z_G4qZfz6FCzC2|JrSe-C>#48@AYMyIwNBFNyyFX1QPd5r93<00000NkvXXu0mjf DP*&js literal 0 HcmV?d00001 diff --git a/third_party/qscintilla/example/images/paste.png b/third_party/qscintilla/example/images/paste.png new file mode 100644 index 0000000000000000000000000000000000000000..e38bbe5f24b842fe5e16249ae01a3da3660342e8 GIT binary patch literal 1745 zcmV;?1}^!DP)8bqyHwZXQL*cW}NZIjxxX;Kl=^r=nLKcI;Zq&(R^ z5Ph*td?BetG^tjEB4T3IVo?f3P*9MSh1nhUIy*D{o!MP3aR33&=9e>j&Ybgozw0?8 z>befI#&O&M>b7F})`)kHH!*B{31fGM1 z+#o*FQS20r6`F2LZ{j$E$wrcN5@r!sV(b1yoQ#+fXliQW3=GmnQ-SjG^{@m50!}rw zXUW3$&UM&f69w2TJo?6bxcXoW%|juCY|fIJnqA*hP)4e%s!}pCGQ`5dLMs!O%Vp{4 z=#cB{>urQ_Vo3`i5n~x?Hf+jFLs(G}jWG>%@HAl+dDtxie4!{txE%a^`B%7#irF%@ z`MUZ0sHzG@QIMILNeY$Q@7}#z$1Fq&omi9rFT_nP2plvLfdWFL5ltuKaPe^_{Sz|Y zK6n@fg+*AbmN0O?-;dPPR3n%h8yia~evZ#4F-xGfwpOpJtJ4LVB|+;G{+}Wa}n?)0iVx@tgI}9fZc9KLqh|z5+iYs*0wxn0YQjIHS;lN6Nm(l znMe#$Ac9ad21TW)unO?gSctM>sm5Fo3wjd`b2NY=N?d>)G@87?F zcHfH^FG8ZC#mKnbZbpbD8qd<+)B-H6A5MqxFlNV_hrdL{YwzHxEMnXnhEI+nf*1t% zyKtwe2x~IV{nm=@+bZ#BbOO}}Yw_prO{lJ}Hne5_PfJTPik8#qB#VkhElF06=Yx=Z zI~LF(x!gGNRRd%(7m^$SCn(TqE=c5`O+_HjM4{4iZ@LxR-EX0{e*oj53QXO23eiYg z-5|g~OG`_QqQ!!b#lq<5XtLax97d%6BU#5sUwjLPs~97#XW$w92cj(n8%nFNuDlZe zraCY*Lavz#W7HGG7>UT`!!zl_+dJ*Zn@50Y&$MPPG63n>>-8E0n9EHGlxA|ca;A}r z5RVk!F!G&t#OQ!{($|JbEghR{K0{W;KHTn;Fs=q5`xOLcNCHaSu=-qfSS%I;G*Rkj z#}Y-?%mtwG%2Dwdf;G*FoU-iMx%GMJkb(*Z+kb+`(T(!TNq z{i*{$e6kh2kNvP0ZpMz?`xeZ1(_vdtQL#1xI^uPo<1ic5$$qyx8@tM!XucLi#;)!7 z^w_awK~_Y-@O`pRT7cb3`i1%W_7?db>XD1{0vI1T?VHXrKLd>*5-PJz!8#8DIjU4h)0S{a*K!i>mJVVCD^kQ5IHGsm^=1>z+FI)Tw&v zz2|;5 zYXiKvXAppke-?cB?jC^K0C4>59N#}M1b8m}xWN9m&Tq?d4;^`$3nP}(pC4rW)qR_5 zKt-??KzML0Bg?XF0WdI@VU185d=w)kA`~mw7?IVLbLY;3D!2sF6tWD`ER0DCNfO?7 zI*{j(x1rU7b}No;C~~s;IMxc|ue?cX@%rWftQD*k1h7Wfy?f^tYwL!tfLf?lf$D8h zjjsf?g7=`NgaKy-HG&AJ3Y9FwBOo3K!0;X~0^TDMCKY^$Bg7#dJRx2{O;{K}*Gh>7 ztf1Os0Gczu1&UJ#X#$l5vNZMt5(iG9=s;dTE04VeOF6W2$O}}5aXkPkPoHKY21CJ!U{_^v8Xy`U*q`vX%#{A#01X5mtL``3Wj}4_b=eEU&o)}BH zcC!Nrol+61khoCqTE#GZvCBZkunzPltylR~F5%(E(lYhTaDB;yE$K=b5S$vobLD22 zD>u8WQCC0Ls$_n}C!#5=1r@`b3$=HqY!|4(sUXN2HLsgB8jo2qp8k93?-T&>g72GH zFe_J90#zZ=ko@OU-}3936D%#>xTpG8Y6Cp=>`tC}VFC}RGg~nb1AK?~_rJly!UDH$ z-J&Q8L>2*RmC}ns$#9hnDF1_1m8Hc<-5*m|${p@{U>9F*?@YhOX2JRd6<}qE@f>YdJGB!_d$W)>^#xG@H%40#K{h zaM6gg)QA+E3nyHlDgdZft7KW$r?@xXX>%H>7ePy{I3CBnBed6yF^ELpk2<)ko3Ayf z4fFOGE + +#include "mainwindow.h" + +int main(int argc, char *argv[]) +{ + Q_INIT_RESOURCE(application); + + QApplication app(argc, argv); + MainWindow mainWin; + mainWin.show(); + return app.exec(); +} diff --git a/third_party/qscintilla/example/mainwindow.cpp b/third_party/qscintilla/example/mainwindow.cpp new file mode 100644 index 0000000..1d3c9c9 --- /dev/null +++ b/third_party/qscintilla/example/mainwindow.cpp @@ -0,0 +1,339 @@ +/**************************************************************************** +** Copyright (C) 2020 Riverbank Computing Limited +** Copyright (C) 2016 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** BSD License Usage +** Alternatively, you may use this file under the terms of the BSD license +** as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "mainwindow.h" + +MainWindow::MainWindow() +{ + textEdit = new QsciScintilla; + setCentralWidget(textEdit); + + createActions(); + createMenus(); + createToolBars(); + createStatusBar(); + + readSettings(); + + connect(textEdit, SIGNAL(textChanged()), + this, SLOT(documentWasModified())); + + setCurrentFile(""); +} + +void MainWindow::closeEvent(QCloseEvent *event) +{ + if (maybeSave()) { + writeSettings(); + event->accept(); + } else { + event->ignore(); + } +} + +void MainWindow::newFile() +{ + if (maybeSave()) { + textEdit->clear(); + setCurrentFile(""); + } +} + +void MainWindow::open() +{ + if (maybeSave()) { + QString fileName = QFileDialog::getOpenFileName(this); + if (!fileName.isEmpty()) + loadFile(fileName); + } +} + +bool MainWindow::save() +{ + if (curFile.isEmpty()) { + return saveAs(); + } else { + return saveFile(curFile); + } +} + +bool MainWindow::saveAs() +{ + QString fileName = QFileDialog::getSaveFileName(this); + if (fileName.isEmpty()) + return false; + + return saveFile(fileName); +} + +void MainWindow::about() +{ + QMessageBox::about(this, tr("About Application"), + tr("The Application example demonstrates how to " + "write modern GUI applications using Qt, with a menu bar, " + "toolbars, and a status bar.")); +} + +void MainWindow::documentWasModified() +{ + setWindowModified(textEdit->isModified()); +} + +void MainWindow::createActions() +{ + newAct = new QAction(QIcon(":/images/new.png"), tr("&New"), this); + newAct->setShortcut(tr("Ctrl+N")); + newAct->setStatusTip(tr("Create a new file")); + connect(newAct, SIGNAL(triggered()), this, SLOT(newFile())); + + openAct = new QAction(QIcon(":/images/open.png"), tr("&Open..."), this); + openAct->setShortcut(tr("Ctrl+O")); + openAct->setStatusTip(tr("Open an existing file")); + connect(openAct, SIGNAL(triggered()), this, SLOT(open())); + + saveAct = new QAction(QIcon(":/images/save.png"), tr("&Save"), this); + saveAct->setShortcut(tr("Ctrl+S")); + saveAct->setStatusTip(tr("Save the document to disk")); + connect(saveAct, SIGNAL(triggered()), this, SLOT(save())); + + saveAsAct = new QAction(tr("Save &As..."), this); + saveAsAct->setStatusTip(tr("Save the document under a new name")); + connect(saveAsAct, SIGNAL(triggered()), this, SLOT(saveAs())); + + exitAct = new QAction(tr("E&xit"), this); + exitAct->setShortcut(tr("Ctrl+Q")); + exitAct->setStatusTip(tr("Exit the application")); + connect(exitAct, SIGNAL(triggered()), this, SLOT(close())); + + cutAct = new QAction(QIcon(":/images/cut.png"), tr("Cu&t"), this); + cutAct->setShortcut(tr("Ctrl+X")); + cutAct->setStatusTip(tr("Cut the current selection's contents to the " + "clipboard")); + connect(cutAct, SIGNAL(triggered()), textEdit, SLOT(cut())); + + copyAct = new QAction(QIcon(":/images/copy.png"), tr("&Copy"), this); + copyAct->setShortcut(tr("Ctrl+C")); + copyAct->setStatusTip(tr("Copy the current selection's contents to the " + "clipboard")); + connect(copyAct, SIGNAL(triggered()), textEdit, SLOT(copy())); + + pasteAct = new QAction(QIcon(":/images/paste.png"), tr("&Paste"), this); + pasteAct->setShortcut(tr("Ctrl+V")); + pasteAct->setStatusTip(tr("Paste the clipboard's contents into the current " + "selection")); + connect(pasteAct, SIGNAL(triggered()), textEdit, SLOT(paste())); + + aboutAct = new QAction(tr("&About"), this); + aboutAct->setStatusTip(tr("Show the application's About box")); + connect(aboutAct, SIGNAL(triggered()), this, SLOT(about())); + + aboutQtAct = new QAction(tr("About &Qt"), this); + aboutQtAct->setStatusTip(tr("Show the Qt library's About box")); + connect(aboutQtAct, SIGNAL(triggered()), qApp, SLOT(aboutQt())); + + cutAct->setEnabled(false); + copyAct->setEnabled(false); + connect(textEdit, SIGNAL(copyAvailable(bool)), + cutAct, SLOT(setEnabled(bool))); + connect(textEdit, SIGNAL(copyAvailable(bool)), + copyAct, SLOT(setEnabled(bool))); +} + +void MainWindow::createMenus() +{ + fileMenu = menuBar()->addMenu(tr("&File")); + fileMenu->addAction(newAct); + fileMenu->addAction(openAct); + fileMenu->addAction(saveAct); + fileMenu->addAction(saveAsAct); + fileMenu->addSeparator(); + fileMenu->addAction(exitAct); + + editMenu = menuBar()->addMenu(tr("&Edit")); + editMenu->addAction(cutAct); + editMenu->addAction(copyAct); + editMenu->addAction(pasteAct); + + menuBar()->addSeparator(); + + helpMenu = menuBar()->addMenu(tr("&Help")); + helpMenu->addAction(aboutAct); + helpMenu->addAction(aboutQtAct); +} + +void MainWindow::createToolBars() +{ + fileToolBar = addToolBar(tr("File")); + fileToolBar->addAction(newAct); + fileToolBar->addAction(openAct); + fileToolBar->addAction(saveAct); + + editToolBar = addToolBar(tr("Edit")); + editToolBar->addAction(cutAct); + editToolBar->addAction(copyAct); + editToolBar->addAction(pasteAct); +} + +void MainWindow::createStatusBar() +{ + statusBar()->showMessage(tr("Ready")); +} + +void MainWindow::readSettings() +{ + QSettings settings("Trolltech", "Application Example"); + QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint(); + QSize size = settings.value("size", QSize(400, 400)).toSize(); + resize(size); + move(pos); +} + +void MainWindow::writeSettings() +{ + QSettings settings("Trolltech", "Application Example"); + settings.setValue("pos", pos()); + settings.setValue("size", size()); +} + +bool MainWindow::maybeSave() +{ + if (textEdit->isModified()) { + int ret = QMessageBox::warning(this, tr("Application"), + tr("The document has been modified.\n" + "Do you want to save your changes?"), + QMessageBox::Yes | QMessageBox::Default, + QMessageBox::No, + QMessageBox::Cancel | QMessageBox::Escape); + if (ret == QMessageBox::Yes) + return save(); + else if (ret == QMessageBox::Cancel) + return false; + } + return true; +} + +void MainWindow::loadFile(const QString &fileName) +{ + QFile file(fileName); + if (!file.open(QFile::ReadOnly)) { + QMessageBox::warning(this, tr("Application"), + tr("Cannot read file %1:\n%2.") + .arg(fileName) + .arg(file.errorString())); + return; + } + + QTextStream in(&file); + QApplication::setOverrideCursor(Qt::WaitCursor); + textEdit->setText(in.readAll()); + QApplication::restoreOverrideCursor(); + + setCurrentFile(fileName); + statusBar()->showMessage(tr("File loaded"), 2000); +} + +bool MainWindow::saveFile(const QString &fileName) +{ + QFile file(fileName); + if (!file.open(QFile::WriteOnly)) { + QMessageBox::warning(this, tr("Application"), + tr("Cannot write file %1:\n%2.") + .arg(fileName) + .arg(file.errorString())); + return false; + } + + QTextStream out(&file); + QApplication::setOverrideCursor(Qt::WaitCursor); + out << textEdit->text(); + QApplication::restoreOverrideCursor(); + + setCurrentFile(fileName); + statusBar()->showMessage(tr("File saved"), 2000); + return true; +} + +void MainWindow::setCurrentFile(const QString &fileName) +{ + curFile = fileName; + textEdit->setModified(false); + setWindowModified(false); + + QString shownName; + if (curFile.isEmpty()) + shownName = "untitled.txt"; + else + shownName = strippedName(curFile); + + setWindowTitle(tr("%1[*] - %2").arg(shownName).arg(tr("Application"))); +} + +QString MainWindow::strippedName(const QString &fullFileName) +{ + return QFileInfo(fullFileName).fileName(); +} diff --git a/third_party/qscintilla/example/mainwindow.h b/third_party/qscintilla/example/mainwindow.h new file mode 100644 index 0000000..ae718d7 --- /dev/null +++ b/third_party/qscintilla/example/mainwindow.h @@ -0,0 +1,110 @@ +/**************************************************************************** +** Copyright (C) 2020 Riverbank Computing Limited +** Copyright (C) 2016 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** BSD License Usage +** Alternatively, you may use this file under the terms of the BSD license +** as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +****************************************************************************/ + +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include + +class QAction; +class QMenu; +class QsciScintilla; + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + MainWindow(); + +protected: + void closeEvent(QCloseEvent *event); + +private slots: + void newFile(); + void open(); + bool save(); + bool saveAs(); + void about(); + void documentWasModified(); + +private: + void createActions(); + void createMenus(); + void createToolBars(); + void createStatusBar(); + void readSettings(); + void writeSettings(); + bool maybeSave(); + void loadFile(const QString &fileName); + bool saveFile(const QString &fileName); + void setCurrentFile(const QString &fileName); + QString strippedName(const QString &fullFileName); + + QsciScintilla *textEdit; + QString curFile; + + QMenu *fileMenu; + QMenu *editMenu; + QMenu *helpMenu; + QToolBar *fileToolBar; + QToolBar *editToolBar; + QAction *newAct; + QAction *openAct; + QAction *saveAct; + QAction *saveAsAct; + QAction *exitAct; + QAction *cutAct; + QAction *copyAct; + QAction *pasteAct; + QAction *aboutAct; + QAction *aboutQtAct; +}; + +#endif diff --git a/third_party/qscintilla/qsci/api/python/Python-2.4.api b/third_party/qscintilla/qsci/api/python/Python-2.4.api new file mode 100644 index 0000000..19b4793 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-2.4.api @@ -0,0 +1,7663 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseHTTPServer.BaseHTTPRequestHandler(??) +BaseHTTPServer.DEFAULT_ERROR_MESSAGE +BaseHTTPServer.HTTPServer(??) +BaseHTTPServer.SocketServer +BaseHTTPServer.mimetools +BaseHTTPServer.socket +BaseHTTPServer.sys +BaseHTTPServer.test(??) +BaseHTTPServer.time +Bastion.Bastion(??) +Bastion.BastionClass(??) +Bastion.MethodType +CGIHTTPServer.BaseHTTPServer +CGIHTTPServer.CGIHTTPRequestHandler(??) +CGIHTTPServer.SimpleHTTPServer +CGIHTTPServer.executable(??) +CGIHTTPServer.nobody +CGIHTTPServer.nobody_uid(??) +CGIHTTPServer.os +CGIHTTPServer.select +CGIHTTPServer.sys +CGIHTTPServer.test(??) +CGIHTTPServer.urllib +ConfigParser.ConfigParser(??) +ConfigParser.DEFAULTSECT +ConfigParser.DuplicateSectionError(??) +ConfigParser.Error(??) +ConfigParser.InterpolationDepthError(??) +ConfigParser.InterpolationError(??) +ConfigParser.InterpolationMissingOptionError(??) +ConfigParser.InterpolationSyntaxError(??) +ConfigParser.MAX_INTERPOLATION_DEPTH +ConfigParser.MissingSectionHeaderError(??) +ConfigParser.NoOptionError(??) +ConfigParser.NoSectionError(??) +ConfigParser.ParsingError(??) +ConfigParser.RawConfigParser(??) +ConfigParser.SafeConfigParser(??) +ConfigParser.re +Cookie.BaseCookie +Cookie.Cookie +Cookie.CookieError(??) +Cookie.Morsel +Cookie.SerialCookie +Cookie.SimpleCookie +Cookie.SmartCookie +Cookie.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +Cookie.loads(string) -- Load a pickle from the given string +Cookie.re +Cookie.string +Cookie.warnings +DeprecationWarning(??) +DocXMLRPCServer.CGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocCGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCServer(??) +DocXMLRPCServer.ServerHTMLDoc(??) +DocXMLRPCServer.SimpleXMLRPCRequestHandler(??) +DocXMLRPCServer.SimpleXMLRPCServer(??) +DocXMLRPCServer.XMLRPCDocGenerator(??) +DocXMLRPCServer.inspect +DocXMLRPCServer.pydoc +DocXMLRPCServer.re +DocXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +DocXMLRPCServer.sys +DocXMLRPCServer.types +EOFError(??) +Ellipsis +EnvironmentError(??) +Exception(??) +False +FloatingPointError(??) +FutureWarning(??) +HTMLParser.HTMLParseError(??) +HTMLParser.HTMLParser(??) +HTMLParser.attrfind +HTMLParser.charref +HTMLParser.commentclose +HTMLParser.endendtag +HTMLParser.endtagfind +HTMLParser.entityref +HTMLParser.incomplete +HTMLParser.interesting_cdata +HTMLParser.interesting_normal +HTMLParser.locatestarttagend +HTMLParser.markupbase +HTMLParser.piclose +HTMLParser.re +HTMLParser.starttagopen +HTMLParser.tagfind +IOError(??) +ImportError(??) +IndentationError(??) +IndexError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +MimeWriter.MimeWriter(??) +MimeWriter.mimetools +NameError(??) +None +NotImplemented +NotImplementedError(??) +OSError(??) +OverflowError(??) +OverflowWarning(??) +PendingDeprecationWarning(??) +Queue.Empty(??) +Queue.Full(??) +Queue.Queue(??) +Queue.deque(iterable) --> deque object +ReferenceError(??) +RuntimeError(??) +RuntimeWarning(??) +SimpleHTTPServer.BaseHTTPServer +SimpleHTTPServer.SimpleHTTPRequestHandler(??) +SimpleHTTPServer.StringIO(??) +SimpleHTTPServer.cgi +SimpleHTTPServer.mimetypes +SimpleHTTPServer.os +SimpleHTTPServer.posixpath +SimpleHTTPServer.shutil +SimpleHTTPServer.test(??) +SimpleHTTPServer.urllib +SimpleHTTPServer.urlparse +SimpleXMLRPCServer.BaseHTTPServer +SimpleXMLRPCServer.CGIXMLRPCRequestHandler(??) +SimpleXMLRPCServer.Fault(??) +SimpleXMLRPCServer.SimpleXMLRPCDispatcher(??) +SimpleXMLRPCServer.SimpleXMLRPCRequestHandler(??) +SimpleXMLRPCServer.SimpleXMLRPCServer(??) +SimpleXMLRPCServer.SocketServer +SimpleXMLRPCServer.list_public_methods(??) +SimpleXMLRPCServer.os +SimpleXMLRPCServer.remove_duplicates([2,2,2,1,3,3]) => [3,1,2] +SimpleXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +SimpleXMLRPCServer.sys +SimpleXMLRPCServer.xmlrpclib +SocketServer.BaseRequestHandler(??) +SocketServer.BaseServer(??) +SocketServer.DatagramRequestHandler(??) +SocketServer.ForkingMixIn(??) +SocketServer.ForkingTCPServer(??) +SocketServer.ForkingUDPServer(??) +SocketServer.StreamRequestHandler(??) +SocketServer.TCPServer(??) +SocketServer.ThreadingMixIn(??) +SocketServer.ThreadingTCPServer(??) +SocketServer.ThreadingUDPServer(??) +SocketServer.ThreadingUnixDatagramServer(??) +SocketServer.ThreadingUnixStreamServer(??) +SocketServer.UDPServer(??) +SocketServer.UnixDatagramServer(??) +SocketServer.UnixStreamServer(??) +SocketServer.os +SocketServer.socket +SocketServer.sys +StandardError(??) +StopIteration(??) +StringIO.EINVAL +StringIO.StringIO(??) +StringIO.test(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +True +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UserDict.DictMixin(??) +UserDict.IterableUserDict(??) +UserDict.UserDict(??) +UserList.UserList(??) +UserString.MutableString(??) +UserString.StringTypes +UserString.UserString(??) +UserString.sys +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct +anydbm.error +anydbm.open(??) +apply(object[, args[, kwargs]]) -> value +array.ArrayType +array.array(typecode [, initializer]) -> array +asynchat.async_chat(??) +asynchat.asyncore +asynchat.deque(iterable) --> deque object +asynchat.fifo(??) +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asynchat.socket +asyncore.EALREADY +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINTR +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode +asyncore.exceptions +asyncore.fcntl +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select +asyncore.socket +asyncore.socket_map +asyncore.sys +asyncore.time +asyncore.write(??) +atexit.register(??) +atexit.sys +audiodev.AudioDev(??) +audiodev.Play_Audio_sgi(??) +audiodev.Play_Audio_sun(??) +audiodev.error(??) +audiodev.test(??) +audioop.add +audioop.adpcm2lin +audioop.avg +audioop.avgpp +audioop.bias +audioop.cross +audioop.error(??) +audioop.findfactor +audioop.findfit +audioop.findmax +audioop.getsample +audioop.lin2adpcm +audioop.lin2lin +audioop.lin2ulaw +audioop.max +audioop.maxpp +audioop.minmax +audioop.mul +audioop.ratecv +audioop.reverse +audioop.rms +audioop.tomono +audioop.tostereo +audioop.ulaw2lin +base64.EMPTYSTRING +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.binascii +base64.decode(??) +base64.decodestring(??) +base64.encode(??) +base64.encodestring(??) +base64.k +base64.re +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct +base64.test(??) +base64.test1(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +base64.v +basestring +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.foo(??) +bdb.os +bdb.set_trace(??) +bdb.sys +bdb.test(??) +bdb.types +binascii.Error(??) +binascii.Incomplete(??) +binascii.a2b_base64 +binascii.a2b_hex(hexstr) -> s; Binary data of hexadecimal representation. +binascii.a2b_hqx +binascii.a2b_qp +binascii.a2b_uu +binascii.b2a_base64 +binascii.b2a_hex(data) -> s; Hexadecimal representation of binary data. +binascii.b2a_hqx +binascii.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +binascii.b2a_uu +binascii.crc32 +binascii.crc_hqx +binascii.hexlify +binascii.rlecode_hqx +binascii.rledecode_hqx +binascii.unhexlify +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii +binhex.binhex(??) +binhex.getfileinfo(??) +binhex.hexbin(??) +binhex.openrsrc(??) +binhex.os +binhex.struct +binhex.sys +bisect.bisect +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +bsddb.UserDict +bsddb.btopen(??) +bsddb.db +bsddb.db.DB +bsddb.db.DBAccessError(??) +bsddb.db.DBAgainError(??) +bsddb.db.DBBusyError(??) +bsddb.db.DBCursorClosedError(??) +bsddb.db.DBEnv +bsddb.db.DBError(??) +bsddb.db.DBFileExistsError(??) +bsddb.db.DBInvalidArgError(??) +bsddb.db.DBKeyEmptyError(??) +bsddb.db.DBKeyExistError(??) +bsddb.db.DBLockDeadlockError(??) +bsddb.db.DBLockNotGrantedError(??) +bsddb.db.DBNoMemoryError(??) +bsddb.db.DBNoServerError(??) +bsddb.db.DBNoServerHomeError(??) +bsddb.db.DBNoServerIDError(??) +bsddb.db.DBNoSpaceError(??) +bsddb.db.DBNoSuchFileError(??) +bsddb.db.DBNotFoundError(??) +bsddb.db.DBOldVersionError(??) +bsddb.db.DBPageNotFoundError(??) +bsddb.db.DBPermissionsError(??) +bsddb.db.DBRunRecoveryError(??) +bsddb.db.DBSecondaryBadError(??) +bsddb.db.DBVerifyBadError(??) +bsddb.db.DB_AFTER +bsddb.db.DB_AGGRESSIVE +bsddb.db.DB_APPEND +bsddb.db.DB_ARCH_ABS +bsddb.db.DB_ARCH_DATA +bsddb.db.DB_ARCH_LOG +bsddb.db.DB_AUTO_COMMIT +bsddb.db.DB_BEFORE +bsddb.db.DB_BTREE +bsddb.db.DB_CACHED_COUNTS +bsddb.db.DB_CDB_ALLDB +bsddb.db.DB_CHECKPOINT +bsddb.db.DB_CHKSUM +bsddb.db.DB_CONSUME +bsddb.db.DB_CONSUME_WAIT +bsddb.db.DB_CREATE +bsddb.db.DB_CURRENT +bsddb.db.DB_DIRECT_DB +bsddb.db.DB_DIRECT_LOG +bsddb.db.DB_DIRTY_READ +bsddb.db.DB_DONOTINDEX +bsddb.db.DB_DUP +bsddb.db.DB_DUPSORT +bsddb.db.DB_ENCRYPT +bsddb.db.DB_ENCRYPT_AES +bsddb.db.DB_EXCL +bsddb.db.DB_EXTENT +bsddb.db.DB_FAST_STAT +bsddb.db.DB_FCNTL_LOCKING +bsddb.db.DB_FIRST +bsddb.db.DB_FLUSH +bsddb.db.DB_FORCE +bsddb.db.DB_GET_BOTH +bsddb.db.DB_GET_RECNO +bsddb.db.DB_HASH +bsddb.db.DB_INCOMPLETE +bsddb.db.DB_INIT_CDB +bsddb.db.DB_INIT_LOCK +bsddb.db.DB_INIT_LOG +bsddb.db.DB_INIT_MPOOL +bsddb.db.DB_INIT_REP +bsddb.db.DB_INIT_TXN +bsddb.db.DB_JOINENV +bsddb.db.DB_JOIN_ITEM +bsddb.db.DB_JOIN_NOSORT +bsddb.db.DB_KEYEMPTY +bsddb.db.DB_KEYEXIST +bsddb.db.DB_KEYFIRST +bsddb.db.DB_KEYLAST +bsddb.db.DB_LAST +bsddb.db.DB_LOCKDOWN +bsddb.db.DB_LOCK_CONFLICT +bsddb.db.DB_LOCK_DEADLOCK +bsddb.db.DB_LOCK_DEFAULT +bsddb.db.DB_LOCK_DIRTY +bsddb.db.DB_LOCK_DUMP +bsddb.db.DB_LOCK_GET +bsddb.db.DB_LOCK_INHERIT +bsddb.db.DB_LOCK_IREAD +bsddb.db.DB_LOCK_IWR +bsddb.db.DB_LOCK_IWRITE +bsddb.db.DB_LOCK_MAXLOCKS +bsddb.db.DB_LOCK_MINLOCKS +bsddb.db.DB_LOCK_MINWRITE +bsddb.db.DB_LOCK_NG +bsddb.db.DB_LOCK_NORUN +bsddb.db.DB_LOCK_NOTGRANTED +bsddb.db.DB_LOCK_NOWAIT +bsddb.db.DB_LOCK_OLDEST +bsddb.db.DB_LOCK_PUT +bsddb.db.DB_LOCK_PUT_ALL +bsddb.db.DB_LOCK_PUT_OBJ +bsddb.db.DB_LOCK_RANDOM +bsddb.db.DB_LOCK_READ +bsddb.db.DB_LOCK_RECORD +bsddb.db.DB_LOCK_SWITCH +bsddb.db.DB_LOCK_UPGRADE +bsddb.db.DB_LOCK_UPGRADE_WRITE +bsddb.db.DB_LOCK_WAIT +bsddb.db.DB_LOCK_WRITE +bsddb.db.DB_LOCK_WWRITE +bsddb.db.DB_LOCK_YOUNGEST +bsddb.db.DB_LOG_AUTOREMOVE +bsddb.db.DB_LSTAT_ABORTED +bsddb.db.DB_LSTAT_ERR +bsddb.db.DB_LSTAT_FREE +bsddb.db.DB_LSTAT_HELD +bsddb.db.DB_LSTAT_PENDING +bsddb.db.DB_LSTAT_WAITING +bsddb.db.DB_MAX_PAGES +bsddb.db.DB_MAX_RECORDS +bsddb.db.DB_MULTIPLE +bsddb.db.DB_MULTIPLE_KEY +bsddb.db.DB_NEXT +bsddb.db.DB_NEXT_DUP +bsddb.db.DB_NEXT_NODUP +bsddb.db.DB_NODUPDATA +bsddb.db.DB_NOLOCKING +bsddb.db.DB_NOMMAP +bsddb.db.DB_NOORDERCHK +bsddb.db.DB_NOOVERWRITE +bsddb.db.DB_NOPANIC +bsddb.db.DB_NOSERVER +bsddb.db.DB_NOSERVER_HOME +bsddb.db.DB_NOSERVER_ID +bsddb.db.DB_NOSYNC +bsddb.db.DB_NOTFOUND +bsddb.db.DB_ODDFILESIZE +bsddb.db.DB_OLD_VERSION +bsddb.db.DB_OPFLAGS_MASK +bsddb.db.DB_ORDERCHKONLY +bsddb.db.DB_PAGE_NOTFOUND +bsddb.db.DB_PANIC_ENVIRONMENT +bsddb.db.DB_POSITION +bsddb.db.DB_PREV +bsddb.db.DB_PREV_NODUP +bsddb.db.DB_PRIVATE +bsddb.db.DB_PR_PAGE +bsddb.db.DB_PR_RECOVERYTEST +bsddb.db.DB_QUEUE +bsddb.db.DB_RDONLY +bsddb.db.DB_RDWRMASTER +bsddb.db.DB_RECNO +bsddb.db.DB_RECNUM +bsddb.db.DB_RECORDCOUNT +bsddb.db.DB_RECOVER +bsddb.db.DB_RECOVER_FATAL +bsddb.db.DB_REGION_INIT +bsddb.db.DB_RENUMBER +bsddb.db.DB_REVSPLITOFF +bsddb.db.DB_RMW +bsddb.db.DB_RPCCLIENT +bsddb.db.DB_RUNRECOVERY +bsddb.db.DB_SALVAGE +bsddb.db.DB_SECONDARY_BAD +bsddb.db.DB_SET +bsddb.db.DB_SET_LOCK_TIMEOUT +bsddb.db.DB_SET_RANGE +bsddb.db.DB_SET_RECNO +bsddb.db.DB_SET_TXN_TIMEOUT +bsddb.db.DB_SNAPSHOT +bsddb.db.DB_STAT_CLEAR +bsddb.db.DB_SYSTEM_MEM +bsddb.db.DB_THREAD +bsddb.db.DB_TIME_NOTGRANTED +bsddb.db.DB_TRUNCATE +bsddb.db.DB_TXN_NOSYNC +bsddb.db.DB_TXN_NOT_DURABLE +bsddb.db.DB_TXN_NOWAIT +bsddb.db.DB_TXN_SYNC +bsddb.db.DB_TXN_WRITE_NOSYNC +bsddb.db.DB_UNKNOWN +bsddb.db.DB_UPGRADE +bsddb.db.DB_USE_ENVIRON +bsddb.db.DB_USE_ENVIRON_ROOT +bsddb.db.DB_VERIFY +bsddb.db.DB_VERIFY_BAD +bsddb.db.DB_VERSION_MAJOR +bsddb.db.DB_VERSION_MINOR +bsddb.db.DB_VERSION_PATCH +bsddb.db.DB_VERSION_STRING +bsddb.db.DB_WRITECURSOR +bsddb.db.DB_XA_CREATE +bsddb.db.DB_YIELDCPU +bsddb.db.EACCES +bsddb.db.EAGAIN +bsddb.db.EBUSY +bsddb.db.EEXIST +bsddb.db.EINVAL +bsddb.db.ENOENT +bsddb.db.ENOMEM +bsddb.db.ENOSPC +bsddb.db.EPERM +bsddb.db.cvsid +bsddb.db.version +bsddb.dbobj +bsddb.dbobj.DB(??) +bsddb.dbobj.DBEnv(??) +bsddb.dbobj.DictMixin(??) +bsddb.dbobj.db +bsddb.dbrecio +bsddb.dbrecio.DBRecIO(??) +bsddb.dbrecio.errno +bsddb.dbrecio.string +bsddb.dbshelve +bsddb.dbshelve.DBShelf(??) +bsddb.dbshelve.DBShelfCursor(??) +bsddb.dbshelve.DictMixin(??) +bsddb.dbshelve.cPickle +bsddb.dbshelve.db +bsddb.dbshelve.open(??) +bsddb.dbtables +bsddb.dbtables.Cond(??) +bsddb.dbtables.DB +bsddb.dbtables.DBAccessError(??) +bsddb.dbtables.DBAgainError(??) +bsddb.dbtables.DBBusyError(??) +bsddb.dbtables.DBCursorClosedError(??) +bsddb.dbtables.DBEnv +bsddb.dbtables.DBError(??) +bsddb.dbtables.DBFileExistsError(??) +bsddb.dbtables.DBInvalidArgError(??) +bsddb.dbtables.DBKeyEmptyError(??) +bsddb.dbtables.DBKeyExistError(??) +bsddb.dbtables.DBLockDeadlockError(??) +bsddb.dbtables.DBLockNotGrantedError(??) +bsddb.dbtables.DBNoMemoryError(??) +bsddb.dbtables.DBNoServerError(??) +bsddb.dbtables.DBNoServerHomeError(??) +bsddb.dbtables.DBNoServerIDError(??) +bsddb.dbtables.DBNoSpaceError(??) +bsddb.dbtables.DBNoSuchFileError(??) +bsddb.dbtables.DBNotFoundError(??) +bsddb.dbtables.DBOldVersionError(??) +bsddb.dbtables.DBPageNotFoundError(??) +bsddb.dbtables.DBPermissionsError(??) +bsddb.dbtables.DBRunRecoveryError(??) +bsddb.dbtables.DBSecondaryBadError(??) +bsddb.dbtables.DBVerifyBadError(??) +bsddb.dbtables.DB_AFTER +bsddb.dbtables.DB_AGGRESSIVE +bsddb.dbtables.DB_APPEND +bsddb.dbtables.DB_ARCH_ABS +bsddb.dbtables.DB_ARCH_DATA +bsddb.dbtables.DB_ARCH_LOG +bsddb.dbtables.DB_AUTO_COMMIT +bsddb.dbtables.DB_BEFORE +bsddb.dbtables.DB_BTREE +bsddb.dbtables.DB_CACHED_COUNTS +bsddb.dbtables.DB_CDB_ALLDB +bsddb.dbtables.DB_CHECKPOINT +bsddb.dbtables.DB_CHKSUM +bsddb.dbtables.DB_CONSUME +bsddb.dbtables.DB_CONSUME_WAIT +bsddb.dbtables.DB_CREATE +bsddb.dbtables.DB_CURRENT +bsddb.dbtables.DB_DIRECT_DB +bsddb.dbtables.DB_DIRECT_LOG +bsddb.dbtables.DB_DIRTY_READ +bsddb.dbtables.DB_DONOTINDEX +bsddb.dbtables.DB_DUP +bsddb.dbtables.DB_DUPSORT +bsddb.dbtables.DB_ENCRYPT +bsddb.dbtables.DB_ENCRYPT_AES +bsddb.dbtables.DB_EXCL +bsddb.dbtables.DB_EXTENT +bsddb.dbtables.DB_FAST_STAT +bsddb.dbtables.DB_FCNTL_LOCKING +bsddb.dbtables.DB_FIRST +bsddb.dbtables.DB_FLUSH +bsddb.dbtables.DB_FORCE +bsddb.dbtables.DB_GET_BOTH +bsddb.dbtables.DB_GET_RECNO +bsddb.dbtables.DB_HASH +bsddb.dbtables.DB_INCOMPLETE +bsddb.dbtables.DB_INIT_CDB +bsddb.dbtables.DB_INIT_LOCK +bsddb.dbtables.DB_INIT_LOG +bsddb.dbtables.DB_INIT_MPOOL +bsddb.dbtables.DB_INIT_REP +bsddb.dbtables.DB_INIT_TXN +bsddb.dbtables.DB_JOINENV +bsddb.dbtables.DB_JOIN_ITEM +bsddb.dbtables.DB_JOIN_NOSORT +bsddb.dbtables.DB_KEYEMPTY +bsddb.dbtables.DB_KEYEXIST +bsddb.dbtables.DB_KEYFIRST +bsddb.dbtables.DB_KEYLAST +bsddb.dbtables.DB_LAST +bsddb.dbtables.DB_LOCKDOWN +bsddb.dbtables.DB_LOCK_CONFLICT +bsddb.dbtables.DB_LOCK_DEADLOCK +bsddb.dbtables.DB_LOCK_DEFAULT +bsddb.dbtables.DB_LOCK_DIRTY +bsddb.dbtables.DB_LOCK_DUMP +bsddb.dbtables.DB_LOCK_GET +bsddb.dbtables.DB_LOCK_INHERIT +bsddb.dbtables.DB_LOCK_IREAD +bsddb.dbtables.DB_LOCK_IWR +bsddb.dbtables.DB_LOCK_IWRITE +bsddb.dbtables.DB_LOCK_MAXLOCKS +bsddb.dbtables.DB_LOCK_MINLOCKS +bsddb.dbtables.DB_LOCK_MINWRITE +bsddb.dbtables.DB_LOCK_NG +bsddb.dbtables.DB_LOCK_NORUN +bsddb.dbtables.DB_LOCK_NOTGRANTED +bsddb.dbtables.DB_LOCK_NOWAIT +bsddb.dbtables.DB_LOCK_OLDEST +bsddb.dbtables.DB_LOCK_PUT +bsddb.dbtables.DB_LOCK_PUT_ALL +bsddb.dbtables.DB_LOCK_PUT_OBJ +bsddb.dbtables.DB_LOCK_RANDOM +bsddb.dbtables.DB_LOCK_READ +bsddb.dbtables.DB_LOCK_RECORD +bsddb.dbtables.DB_LOCK_SWITCH +bsddb.dbtables.DB_LOCK_UPGRADE +bsddb.dbtables.DB_LOCK_UPGRADE_WRITE +bsddb.dbtables.DB_LOCK_WAIT +bsddb.dbtables.DB_LOCK_WRITE +bsddb.dbtables.DB_LOCK_WWRITE +bsddb.dbtables.DB_LOCK_YOUNGEST +bsddb.dbtables.DB_LOG_AUTOREMOVE +bsddb.dbtables.DB_LSTAT_ABORTED +bsddb.dbtables.DB_LSTAT_ERR +bsddb.dbtables.DB_LSTAT_FREE +bsddb.dbtables.DB_LSTAT_HELD +bsddb.dbtables.DB_LSTAT_PENDING +bsddb.dbtables.DB_LSTAT_WAITING +bsddb.dbtables.DB_MAX_PAGES +bsddb.dbtables.DB_MAX_RECORDS +bsddb.dbtables.DB_MULTIPLE +bsddb.dbtables.DB_MULTIPLE_KEY +bsddb.dbtables.DB_NEXT +bsddb.dbtables.DB_NEXT_DUP +bsddb.dbtables.DB_NEXT_NODUP +bsddb.dbtables.DB_NODUPDATA +bsddb.dbtables.DB_NOLOCKING +bsddb.dbtables.DB_NOMMAP +bsddb.dbtables.DB_NOORDERCHK +bsddb.dbtables.DB_NOOVERWRITE +bsddb.dbtables.DB_NOPANIC +bsddb.dbtables.DB_NOSERVER +bsddb.dbtables.DB_NOSERVER_HOME +bsddb.dbtables.DB_NOSERVER_ID +bsddb.dbtables.DB_NOSYNC +bsddb.dbtables.DB_NOTFOUND +bsddb.dbtables.DB_ODDFILESIZE +bsddb.dbtables.DB_OLD_VERSION +bsddb.dbtables.DB_OPFLAGS_MASK +bsddb.dbtables.DB_ORDERCHKONLY +bsddb.dbtables.DB_PAGE_NOTFOUND +bsddb.dbtables.DB_PANIC_ENVIRONMENT +bsddb.dbtables.DB_POSITION +bsddb.dbtables.DB_PREV +bsddb.dbtables.DB_PREV_NODUP +bsddb.dbtables.DB_PRIVATE +bsddb.dbtables.DB_PR_PAGE +bsddb.dbtables.DB_PR_RECOVERYTEST +bsddb.dbtables.DB_QUEUE +bsddb.dbtables.DB_RDONLY +bsddb.dbtables.DB_RDWRMASTER +bsddb.dbtables.DB_RECNO +bsddb.dbtables.DB_RECNUM +bsddb.dbtables.DB_RECORDCOUNT +bsddb.dbtables.DB_RECOVER +bsddb.dbtables.DB_RECOVER_FATAL +bsddb.dbtables.DB_REGION_INIT +bsddb.dbtables.DB_RENUMBER +bsddb.dbtables.DB_REVSPLITOFF +bsddb.dbtables.DB_RMW +bsddb.dbtables.DB_RPCCLIENT +bsddb.dbtables.DB_RUNRECOVERY +bsddb.dbtables.DB_SALVAGE +bsddb.dbtables.DB_SECONDARY_BAD +bsddb.dbtables.DB_SET +bsddb.dbtables.DB_SET_LOCK_TIMEOUT +bsddb.dbtables.DB_SET_RANGE +bsddb.dbtables.DB_SET_RECNO +bsddb.dbtables.DB_SET_TXN_TIMEOUT +bsddb.dbtables.DB_SNAPSHOT +bsddb.dbtables.DB_STAT_CLEAR +bsddb.dbtables.DB_SYSTEM_MEM +bsddb.dbtables.DB_THREAD +bsddb.dbtables.DB_TIME_NOTGRANTED +bsddb.dbtables.DB_TRUNCATE +bsddb.dbtables.DB_TXN_NOSYNC +bsddb.dbtables.DB_TXN_NOT_DURABLE +bsddb.dbtables.DB_TXN_NOWAIT +bsddb.dbtables.DB_TXN_SYNC +bsddb.dbtables.DB_TXN_WRITE_NOSYNC +bsddb.dbtables.DB_UNKNOWN +bsddb.dbtables.DB_UPGRADE +bsddb.dbtables.DB_USE_ENVIRON +bsddb.dbtables.DB_USE_ENVIRON_ROOT +bsddb.dbtables.DB_VERIFY +bsddb.dbtables.DB_VERIFY_BAD +bsddb.dbtables.DB_VERSION_MAJOR +bsddb.dbtables.DB_VERSION_MINOR +bsddb.dbtables.DB_VERSION_PATCH +bsddb.dbtables.DB_VERSION_STRING +bsddb.dbtables.DB_WRITECURSOR +bsddb.dbtables.DB_XA_CREATE +bsddb.dbtables.DB_YIELDCPU +bsddb.dbtables.EACCES +bsddb.dbtables.EAGAIN +bsddb.dbtables.EBUSY +bsddb.dbtables.EEXIST +bsddb.dbtables.EINVAL +bsddb.dbtables.ENOENT +bsddb.dbtables.ENOMEM +bsddb.dbtables.ENOSPC +bsddb.dbtables.EPERM +bsddb.dbtables.ExactCond(??) +bsddb.dbtables.LikeCond(??) +bsddb.dbtables.ListType +bsddb.dbtables.PostfixCond(??) +bsddb.dbtables.PrefixCond(??) +bsddb.dbtables.StringType +bsddb.dbtables.TableAlreadyExists(??) +bsddb.dbtables.TableDBError(??) +bsddb.dbtables.bsdTableDB(??) +bsddb.dbtables.contains_metastrings(??) +bsddb.dbtables.copy +bsddb.dbtables.cvsid +bsddb.dbtables.pickle +bsddb.dbtables.random +bsddb.dbtables.re +bsddb.dbtables.sys +bsddb.dbtables.version +bsddb.dbtables.xdrlib +bsddb.dbutils +bsddb.dbutils.DeadlockWrap(function, *_args, **_kwargs) - automatically retries +bsddb.dbutils.db +bsddb.error(??) +bsddb.hashopen(??) +bsddb.os +bsddb.ref +bsddb.rnopen(??) +bsddb.sys +buffer(object [, offset[, size]]) +bz2.BZ2Compressor([compresslevel=9]) -> compressor object +bz2.BZ2Decompressor() -> decompressor object +bz2.BZ2File(name [, mode='r', buffering=0, compresslevel=9]) -> file object +bz2.compress(data [, compresslevel=9]) -> string +bz2.decompress(data) -> decompressed data +cPickle.BadPickleGet(??) +cPickle.HIGHEST_PROTOCOL +cPickle.PickleError(??) +cPickle.Pickler(file, protocol=0) -- Create a pickler. +cPickle.PicklingError(??) +cPickle.UnpickleableError(??) +cPickle.Unpickler(file) -- Create an unpickler. +cPickle.UnpicklingError(??) +cPickle.compatible_formats +cPickle.dump(obj, file, protocol=0) -- Write an object in pickle format to the given file. +cPickle.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +cPickle.format_version +cPickle.load(file) -- Load a pickle from the given file +cPickle.loads(string) -- Load a pickle from the given string +cStringIO.InputType +cStringIO.OutputType +cStringIO.StringIO([s]) -- Return a StringIO-like stream for reading or writing +cStringIO.cStringIO_CAPI +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.January +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.WEDNESDAY +calendar.calendar(??) +calendar.datetime +calendar.day_abbr +calendar.day_name +calendar.error(??) +calendar.firstweekday(??) +calendar.format3c(??) +calendar.format3cstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.mdays +calendar.month(??) +calendar.month_abbr +calendar.month_name +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.setfirstweekday(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(object) -> bool +cgi.FieldStorage(??) +cgi.FormContent(??) +cgi.FormContentDict(??) +cgi.InterpFormContentDict(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.SvFormContentDict(??) +cgi.UserDict +cgi.dolog(??) +cgi.escape(??) +cgi.initlog(??) +cgi.log(??) +cgi.logfile +cgi.logfp +cgi.maxlen +cgi.mimetools +cgi.nolog(??) +cgi.os +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.rfc822 +cgi.sys +cgi.test(??) +cgi.urllib +cgi.valid_boundary(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler +cgitb.html(??) +cgitb.lookup(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys +cgitb.text(??) +chr(i) -> character +chunk.Chunk(??) +classmethod(function) -> method +cmath.acos(x) +cmath.acosh(x) +cmath.asin(x) +cmath.asinh(x) +cmath.atan(x) +cmath.atanh(x) +cmath.cos(x) +cmath.cosh(x) +cmath.e +cmath.exp(x) +cmath.log(x[, base]) -> the logarithm of x to the given base. +cmath.log10(x) +cmath.pi +cmath.sin(x) +cmath.sinh(x) +cmath.sqrt(x) +cmath.tan(x) +cmath.tanh(x) +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string +cmp(x, y) -> integer +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.softspace(??) +code.sys +code.traceback +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.Codec(??) +codecs.EncodedFile(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode +codecs.ascii_encode +codecs.backslashreplace_errors +codecs.charbuffer_encode +codecs.charmap_decode +codecs.charmap_encode +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode +codecs.escape_encode +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors +codecs.latin_1_decode +codecs.latin_1_encode +codecs.lookup(encoding) -> (encoder, decoder, stream_reader, stream_writer) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode +codecs.raw_unicode_escape_encode +codecs.readbuffer_encode +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors +codecs.strict_errors +codecs.sys +codecs.unicode_escape_decode +codecs.unicode_escape_encode +codecs.unicode_internal_decode +codecs.unicode_internal_encode +codecs.utf_16_be_decode +codecs.utf_16_be_encode +codecs.utf_16_decode +codecs.utf_16_encode +codecs.utf_16_ex_decode +codecs.utf_16_le_decode +codecs.utf_16_le_encode +codecs.utf_7_decode +codecs.utf_7_encode +codecs.utf_8_decode +codecs.utf_8_encode +codecs.xmlcharrefreplace_errors +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +codeop.fname +coerce(x, y) -> (x1, y1) +collections.deque(iterable) --> deque object +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +commands.getoutput(??) +commands.getstatus(??) +commands.getstatusoutput(??) +commands.mk2arg(??) +commands.mkarg(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_path(??) +compileall.main(??) +compileall.os +compileall.py_compile +compileall.sys +compiler.ast +compiler.ast.Add(??) +compiler.ast.And(??) +compiler.ast.AssAttr(??) +compiler.ast.AssList(??) +compiler.ast.AssName(??) +compiler.ast.AssTuple(??) +compiler.ast.Assert(??) +compiler.ast.Assign(??) +compiler.ast.AugAssign(??) +compiler.ast.Backquote(??) +compiler.ast.Bitand(??) +compiler.ast.Bitor(??) +compiler.ast.Bitxor(??) +compiler.ast.Break(??) +compiler.ast.CO_VARARGS +compiler.ast.CO_VARKEYWORDS +compiler.ast.CallFunc(??) +compiler.ast.Class(??) +compiler.ast.Compare(??) +compiler.ast.Const(??) +compiler.ast.Continue(??) +compiler.ast.Decorators(??) +compiler.ast.Dict(??) +compiler.ast.Discard(??) +compiler.ast.Div(??) +compiler.ast.Ellipsis(??) +compiler.ast.EmptyNode(??) +compiler.ast.Exec(??) +compiler.ast.Expression(??) +compiler.ast.FloorDiv(??) +compiler.ast.For(??) +compiler.ast.From(??) +compiler.ast.Function(??) +compiler.ast.GenExpr(??) +compiler.ast.GenExprFor(??) +compiler.ast.GenExprIf(??) +compiler.ast.GenExprInner(??) +compiler.ast.Getattr(??) +compiler.ast.Global(??) +compiler.ast.If(??) +compiler.ast.Import(??) +compiler.ast.Invert(??) +compiler.ast.Keyword(??) +compiler.ast.Lambda(??) +compiler.ast.LeftShift(??) +compiler.ast.List(??) +compiler.ast.ListComp(??) +compiler.ast.ListCompFor(??) +compiler.ast.ListCompIf(??) +compiler.ast.Mod(??) +compiler.ast.Module(??) +compiler.ast.Mul(??) +compiler.ast.Name(??) +compiler.ast.Node(??) +compiler.ast.Not(??) +compiler.ast.Or(??) +compiler.ast.Pass(??) +compiler.ast.Power(??) +compiler.ast.Print(??) +compiler.ast.Printnl(??) +compiler.ast.Raise(??) +compiler.ast.Return(??) +compiler.ast.RightShift(??) +compiler.ast.Slice(??) +compiler.ast.Sliceobj(??) +compiler.ast.Stmt(??) +compiler.ast.Sub(??) +compiler.ast.Subscript(??) +compiler.ast.TryExcept(??) +compiler.ast.TryFinally(??) +compiler.ast.Tuple(??) +compiler.ast.UnaryAdd(??) +compiler.ast.UnarySub(??) +compiler.ast.While(??) +compiler.ast.Yield(??) +compiler.ast.flatten(??) +compiler.ast.flatten_nodes(??) +compiler.ast.name +compiler.ast.nodes +compiler.ast.obj(??) +compiler.compile(??) +compiler.compileFile(??) +compiler.consts +compiler.consts.CO_FUTURE_DIVISION +compiler.consts.CO_GENERATOR +compiler.consts.CO_GENERATOR_ALLOWED +compiler.consts.CO_NESTED +compiler.consts.CO_NEWLOCALS +compiler.consts.CO_OPTIMIZED +compiler.consts.CO_VARARGS +compiler.consts.CO_VARKEYWORDS +compiler.consts.OP_APPLY +compiler.consts.OP_ASSIGN +compiler.consts.OP_DELETE +compiler.consts.SC_CELL +compiler.consts.SC_FREE +compiler.consts.SC_GLOBAL +compiler.consts.SC_LOCAL +compiler.consts.SC_UNKNOWN +compiler.future +compiler.future.BadFutureParser(??) +compiler.future.FutureParser(??) +compiler.future.ast +compiler.future.find_futures(??) +compiler.future.is_future(??) +compiler.future.walk(??) +compiler.misc +compiler.misc.MANGLE_LEN +compiler.misc.Set(??) +compiler.misc.Stack(??) +compiler.misc.flatten(??) +compiler.misc.mangle(??) +compiler.misc.set_filename(??) +compiler.misc.types +compiler.parse(??) +compiler.parseFile(??) +compiler.pyassem +compiler.pyassem.Block(??) +compiler.pyassem.CONV +compiler.pyassem.CO_NEWLOCALS +compiler.pyassem.CO_OPTIMIZED +compiler.pyassem.CO_VARARGS +compiler.pyassem.CO_VARKEYWORDS +compiler.pyassem.DONE +compiler.pyassem.FLAT +compiler.pyassem.FlowGraph(??) +compiler.pyassem.LineAddrTable(??) +compiler.pyassem.PyFlowGraph(??) +compiler.pyassem.RAW +compiler.pyassem.StackDepthTracker(??) +compiler.pyassem.TupleArg(??) +compiler.pyassem.dfs_postorder(??) +compiler.pyassem.dis +compiler.pyassem.findDepth +compiler.pyassem.getArgCount(??) +compiler.pyassem.isJump(??) +compiler.pyassem.misc +compiler.pyassem.new +compiler.pyassem.sys +compiler.pyassem.twobyte(??) +compiler.pyassem.types +compiler.pycodegen +compiler.pycodegen.AbstractClassCode(??) +compiler.pycodegen.AbstractCompileMode(??) +compiler.pycodegen.AbstractFunctionCode(??) +compiler.pycodegen.AugGetattr(??) +compiler.pycodegen.AugName(??) +compiler.pycodegen.AugSlice(??) +compiler.pycodegen.AugSubscript(??) +compiler.pycodegen.CO_FUTURE_DIVISION +compiler.pycodegen.CO_GENERATOR +compiler.pycodegen.CO_GENERATOR_ALLOWED +compiler.pycodegen.CO_NESTED +compiler.pycodegen.CO_NEWLOCALS +compiler.pycodegen.CO_VARARGS +compiler.pycodegen.CO_VARKEYWORDS +compiler.pycodegen.ClassCodeGenerator(??) +compiler.pycodegen.CodeGenerator(??) +compiler.pycodegen.Delegator(??) +compiler.pycodegen.END_FINALLY +compiler.pycodegen.EXCEPT +compiler.pycodegen.Expression(??) +compiler.pycodegen.ExpressionCodeGenerator(??) +compiler.pycodegen.FunctionCodeGenerator(??) +compiler.pycodegen.GenExprCodeGenerator(??) +compiler.pycodegen.Interactive(??) +compiler.pycodegen.InteractiveCodeGenerator(??) +compiler.pycodegen.LOOP +compiler.pycodegen.LocalNameFinder(??) +compiler.pycodegen.Module(??) +compiler.pycodegen.ModuleCodeGenerator(??) +compiler.pycodegen.NestedScopeMixin(??) +compiler.pycodegen.OpFinder(??) +compiler.pycodegen.SC_CELL +compiler.pycodegen.SC_FREE +compiler.pycodegen.SC_GLOBAL +compiler.pycodegen.SC_LOCAL +compiler.pycodegen.StringIO([s]) -- Return a StringIO-like stream for reading or writing +compiler.pycodegen.TRY_FINALLY +compiler.pycodegen.TupleArg(??) +compiler.pycodegen.VERSION +compiler.pycodegen.ast +compiler.pycodegen.callfunc_opcode_info +compiler.pycodegen.compile(??) +compiler.pycodegen.compileFile(??) +compiler.pycodegen.findOp(??) +compiler.pycodegen.future +compiler.pycodegen.generateArgList(??) +compiler.pycodegen.imp +compiler.pycodegen.is_constant_false(??) +compiler.pycodegen.marshal +compiler.pycodegen.misc +compiler.pycodegen.os +compiler.pycodegen.parse(??) +compiler.pycodegen.pyassem +compiler.pycodegen.struct +compiler.pycodegen.symbols +compiler.pycodegen.syntax +compiler.pycodegen.sys +compiler.pycodegen.types +compiler.pycodegen.walk(??) +compiler.pycodegen.wrap_aug(??) +compiler.pycodegen.wrapper +compiler.symbols +compiler.symbols.ClassScope(??) +compiler.symbols.FunctionScope(??) +compiler.symbols.GenExprScope(??) +compiler.symbols.LambdaScope(??) +compiler.symbols.MANGLE_LEN +compiler.symbols.ModuleScope(??) +compiler.symbols.SC_CELL +compiler.symbols.SC_FREE +compiler.symbols.SC_GLOBAL +compiler.symbols.SC_LOCAL +compiler.symbols.SC_UNKNOWN +compiler.symbols.Scope(??) +compiler.symbols.SymbolVisitor(??) +compiler.symbols.ast +compiler.symbols.list_eq(??) +compiler.symbols.mangle(??) +compiler.symbols.sort(??) +compiler.symbols.sys +compiler.symbols.types +compiler.syntax +compiler.syntax.SyntaxErrorChecker(??) +compiler.syntax.ast +compiler.syntax.check(??) +compiler.syntax.walk(??) +compiler.transformer +compiler.transformer.Add(??) +compiler.transformer.And(??) +compiler.transformer.AssAttr(??) +compiler.transformer.AssList(??) +compiler.transformer.AssName(??) +compiler.transformer.AssTuple(??) +compiler.transformer.Assert(??) +compiler.transformer.Assign(??) +compiler.transformer.AugAssign(??) +compiler.transformer.Backquote(??) +compiler.transformer.Bitand(??) +compiler.transformer.Bitor(??) +compiler.transformer.Bitxor(??) +compiler.transformer.Break(??) +compiler.transformer.CO_VARARGS +compiler.transformer.CO_VARKEYWORDS +compiler.transformer.CallFunc(??) +compiler.transformer.Class(??) +compiler.transformer.Compare(??) +compiler.transformer.Const(??) +compiler.transformer.Continue(??) +compiler.transformer.Decorators(??) +compiler.transformer.Dict(??) +compiler.transformer.Discard(??) +compiler.transformer.Div(??) +compiler.transformer.Ellipsis(??) +compiler.transformer.EmptyNode(??) +compiler.transformer.Exec(??) +compiler.transformer.Expression(??) +compiler.transformer.FloorDiv(??) +compiler.transformer.For(??) +compiler.transformer.From(??) +compiler.transformer.Function(??) +compiler.transformer.GenExpr(??) +compiler.transformer.GenExprFor(??) +compiler.transformer.GenExprIf(??) +compiler.transformer.GenExprInner(??) +compiler.transformer.Getattr(??) +compiler.transformer.Global(??) +compiler.transformer.If(??) +compiler.transformer.Import(??) +compiler.transformer.Invert(??) +compiler.transformer.Keyword(??) +compiler.transformer.Lambda(??) +compiler.transformer.LeftShift(??) +compiler.transformer.List(??) +compiler.transformer.ListComp(??) +compiler.transformer.ListCompFor(??) +compiler.transformer.ListCompIf(??) +compiler.transformer.Mod(??) +compiler.transformer.Module(??) +compiler.transformer.Mul(??) +compiler.transformer.Name(??) +compiler.transformer.Node(??) +compiler.transformer.Not(??) +compiler.transformer.OP_APPLY +compiler.transformer.OP_ASSIGN +compiler.transformer.OP_DELETE +compiler.transformer.Or(??) +compiler.transformer.Pass(??) +compiler.transformer.Power(??) +compiler.transformer.Print(??) +compiler.transformer.Printnl(??) +compiler.transformer.Raise(??) +compiler.transformer.Return(??) +compiler.transformer.RightShift(??) +compiler.transformer.Slice(??) +compiler.transformer.Sliceobj(??) +compiler.transformer.Stmt(??) +compiler.transformer.Sub(??) +compiler.transformer.Subscript(??) +compiler.transformer.Transformer(??) +compiler.transformer.TryExcept(??) +compiler.transformer.TryFinally(??) +compiler.transformer.Tuple(??) +compiler.transformer.UnaryAdd(??) +compiler.transformer.UnarySub(??) +compiler.transformer.WalkerError(??) +compiler.transformer.While(??) +compiler.transformer.Yield(??) +compiler.transformer.asList(??) +compiler.transformer.debug_tree(??) +compiler.transformer.extractLineNo(??) +compiler.transformer.flatten(??) +compiler.transformer.flatten_nodes(??) +compiler.transformer.k +compiler.transformer.name +compiler.transformer.nodes +compiler.transformer.obj(??) +compiler.transformer.parse(??) +compiler.transformer.parseFile(??) +compiler.transformer.parser +compiler.transformer.symbol +compiler.transformer.sys +compiler.transformer.token +compiler.transformer.types +compiler.transformer.v +compiler.visitor +compiler.visitor.ASTVisitor(??) +compiler.visitor.ExampleASTVisitor(??) +compiler.visitor.ast +compiler.visitor.dumpNode(??) +compiler.visitor.walk(??) +compiler.walk(??) +complex(real[, imag]) -> complex number +cookielib.Absent(??) +cookielib.Cookie(??) +cookielib.CookieJar(??) +cookielib.CookiePolicy(??) +cookielib.DAYS +cookielib.DEFAULT_HTTP_PORT +cookielib.DefaultCookiePolicy(??) +cookielib.EPOCH_YEAR +cookielib.ESCAPED_CHAR_RE +cookielib.FileCookieJar(??) +cookielib.HEADER_ESCAPE_RE +cookielib.HEADER_JOIN_ESCAPE_RE +cookielib.HEADER_QUOTED_VALUE_RE +cookielib.HEADER_TOKEN_RE +cookielib.HEADER_VALUE_RE +cookielib.HTTP_PATH_SAFE +cookielib.IPV4_RE +cookielib.ISO_DATE_RE +cookielib.LOOSE_HTTP_DATE_RE +cookielib.LWPCookieJar(??) +cookielib.LoadError(??) +cookielib.MISSING_FILENAME_TEXT +cookielib.MONTHS +cookielib.MONTHS_LOWER +cookielib.MozillaCookieJar(??) +cookielib.STRICT_DATE_RE +cookielib.StringTypes +cookielib.TIMEZONE_RE +cookielib.UTC_ZONES +cookielib.WEEKDAY_RE +cookielib.copy +cookielib.cut_port_re +cookielib.debug +cookielib.deepvalues(??) +cookielib.domain_match(??) +cookielib.eff_request_host(??) +cookielib.escape_path(??) +cookielib.http2time(??) +cookielib.httplib +cookielib.is_HDN(??) +cookielib.is_third_party(??) +cookielib.iso2time(??) +cookielib.join_header_words(??) +cookielib.liberal_is_HDN(??) +cookielib.logging +cookielib.lwp_cookie_str(??) +cookielib.month +cookielib.offset_from_tz_string(??) +cookielib.parse_ns_headers(??) +cookielib.re +cookielib.reach(??) +cookielib.request_host(??) +cookielib.request_path(??) +cookielib.request_port(??) +cookielib.reraise_unmasked_exceptions(??) +cookielib.split_header_words(??) +cookielib.sys +cookielib.time +cookielib.time2isoz(??) +cookielib.time2netscape(??) +cookielib.timegm(??) +cookielib.unmatched(??) +cookielib.uppercase_escaped_char(??) +cookielib.urllib +cookielib.urlparse +cookielib.user_domain_match(??) +cookielib.vals_sorted_by_key(??) +copy.Error(??) +copy.PyStringMap +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table +copy.error(??) +copy.inspect +copy.name +copy.t +copy_reg.add_extension(??) +copy_reg.clear_extension_cache(??) +copy_reg.constructor(??) +copy_reg.dispatch_table +copy_reg.pickle(??) +copy_reg.pickle_complex(??) +copy_reg.remove_extension(??) +copyright +credits +crypt.crypt(word, salt) -> string +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO([s]) -- Return a StringIO-like stream for reading or writing +csv.excel(??) +csv.excel_tab(??) +csv.get_dialect +csv.list_dialects +csv.re +csv.reader +csv.register_dialect +csv.unregister_dialect +csv.writer +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate +curses.beep +curses.can_change_color +curses.cbreak +curses.color_content +curses.color_pair +curses.curs_set +curses.def_prog_mode +curses.def_shell_mode +curses.delay_output +curses.doupdate +curses.echo +curses.endwin +curses.erasechar +curses.error(??) +curses.filter +curses.flash +curses.flushinp +curses.getmouse +curses.getsyx +curses.getwin +curses.halfdelay +curses.has_colors +curses.has_ic +curses.has_il +curses.has_key +curses.has_key.has_key(??) +curses.init_color +curses.init_pair +curses.initscr(??) +curses.intrflush +curses.isendwin +curses.keyname +curses.killchar +curses.longname +curses.meta +curses.mouseinterval +curses.mousemask +curses.napms +curses.newpad +curses.newwin +curses.nl +curses.nocbreak +curses.noecho +curses.nonl +curses.noqiflush +curses.noraw +curses.pair_content +curses.pair_number +curses.panel +curses.panel.bottom_panel +curses.panel.error(??) +curses.panel.new_panel +curses.panel.top_panel +curses.panel.update_panels +curses.panel.version +curses.putp +curses.qiflush +curses.raw +curses.reset_prog_mode +curses.reset_shell_mode +curses.resetty +curses.savetty +curses.setsyx +curses.setupterm +curses.start_color(??) +curses.termattrs +curses.termname +curses.textpad +curses.textpad.Textbox(??) +curses.textpad.ascii +curses.textpad.curses +curses.textpad.rectangle(??) +curses.tigetflag +curses.tigetnum +curses.tigetstr +curses.tparm +curses.typeahead +curses.unctrl +curses.ungetch +curses.ungetmouse +curses.use_default_colors +curses.use_env +curses.version +curses.wrapper(??) +curses.wrapper.func_closure +curses.wrapper.func_code +curses.wrapper.func_defaults +curses.wrapper.func_dict +curses.wrapper.func_doc +curses.wrapper.func_globals +curses.wrapper.func_name +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta +datetime.tzinfo +dbhash.bsddb +dbhash.error(??) +dbhash.open(??) +dbhash.sys +decimal.ALWAYS_ROUND +decimal.BasicContext +decimal.Clamped(??) +decimal.Context +decimal.ConversionSyntax(??) +decimal.Decimal +decimal.DecimalException(??) +decimal.DefaultContext +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext +decimal.Inexact(??) +decimal.Inf +decimal.Infsign +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.NEVER_ROUND +decimal.NaN +decimal.Overflow(??) +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.negInf +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary. +difflib.Differ(??) +difflib.HtmlDiff +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dircache.annotate(??) +dircache.cache +dircache.listdir(??) +dircache.opendir(??) +dircache.os +dircache.reset(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.cmp_op +dis.dis(??) +dis.disassemble(??) +dis.disassemble_string(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.hascompare +dis.hasconst +dis.hasfree +dis.hasjabs +dis.hasjrel +dis.haslocal +dis.hasname +dis.opmap +dis.opname +dis.sys +dis.types +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.StringIO(??) +doctest.Tester(??) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib +doctest.inspect +doctest.is_private(??) +doctest.linecache +doctest.master +doctest.os +doctest.pdb +doctest.re +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys +doctest.tempfile +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback +doctest.types +doctest.unittest +doctest.warnings +dumbdbm.UserDict +dumbdbm.error(??) +dumbdbm.open(??) +dummy_thread.LockType +dummy_thread.allocate_lock(??) +dummy_thread.error(??) +dummy_thread.exit(??) +dummy_thread.get_ident(??) +dummy_thread.interrupt_main(??) +dummy_thread.start_new_thread(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread +dummy_threading.Timer(??) +dummy_threading.activeCount(??) +dummy_threading.currentThread(??) +dummy_threading.enumerate(??) +dummy_threading.local +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.threading +email.Charset +email.Charset.ALIASES +email.Charset.BASE64 +email.Charset.CHARSETS +email.Charset.CODEC_MAP +email.Charset.Charset(??) +email.Charset.DEFAULT_CHARSET +email.Charset.MISC_LEN +email.Charset.QP +email.Charset.SHORTEST +email.Charset.add_alias(??) +email.Charset.add_charset(??) +email.Charset.add_codec(??) +email.Charset.email +email.Charset.encode_7or8bit(??) +email.Encoders +email.Encoders.base64 +email.Encoders.encode_7or8bit(??) +email.Encoders.encode_base64(??) +email.Encoders.encode_noop(??) +email.Encoders.encode_quopri(??) +email.Errors +email.Errors.BoundaryError(??) +email.Errors.FirstHeaderLineIsContinuationDefect(??) +email.Errors.HeaderParseError(??) +email.Errors.MalformedHeaderDefect(??) +email.Errors.MessageDefect(??) +email.Errors.MessageError(??) +email.Errors.MessageParseError(??) +email.Errors.MisplacedEnvelopeHeaderDefect(??) +email.Errors.MultipartConversionError(??) +email.Errors.MultipartInvariantViolationDefect(??) +email.Errors.NoBoundaryInMultipartDefect(??) +email.Errors.StartBoundaryNotFoundDefect(??) +email.FeedParser +email.FeedParser.BufferedSubFile +email.FeedParser.EMPTYSTRING +email.FeedParser.Errors +email.FeedParser.FeedParser(??) +email.FeedParser.Message +email.FeedParser.NL +email.FeedParser.NLCRE +email.FeedParser.NLCRE_bol +email.FeedParser.NLCRE_crack +email.FeedParser.NLCRE_eol +email.FeedParser.NeedMoreData +email.FeedParser.headerRE +email.FeedParser.re +email.Generator.DecodedGenerator(??) +email.Generator.Generator(??) +email.Generator.Header(??) +email.Generator.NL +email.Generator.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.Generator.UNDERSCORE +email.Generator.fcre +email.Generator.random +email.Generator.re +email.Generator.sys +email.Generator.time +email.Generator.warnings +email.Header +email.Header.Charset(??) +email.Header.Header(??) +email.Header.HeaderParseError(??) +email.Header.MAXLINELEN +email.Header.NL +email.Header.SPACE +email.Header.SPACE8 +email.Header.UEMPTYSTRING +email.Header.USASCII +email.Header.USPACE +email.Header.UTF8 +email.Header.binascii +email.Header.decode_header(??) +email.Header.ecre +email.Header.email +email.Header.fcre +email.Header.make_header(??) +email.Header.re +email.Iterators +email.Iterators.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.Iterators.body_line_iterator(??) +email.Iterators.sys +email.Iterators.typed_subpart_iterator(??) +email.Iterators.walk(??) +email.MIMEAudio +email.MIMEAudio.Encoders +email.MIMEAudio.Errors +email.MIMEAudio.MIMEAudio(??) +email.MIMEAudio.MIMENonMultipart(??) +email.MIMEAudio.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.MIMEAudio.sndhdr +email.MIMEBase +email.MIMEBase.MIMEBase(??) +email.MIMEBase.Message +email.MIMEImage +email.MIMEImage.Encoders +email.MIMEImage.Errors +email.MIMEImage.MIMEImage(??) +email.MIMEImage.MIMENonMultipart(??) +email.MIMEImage.imghdr +email.MIMEMessage.MIMEMessage(??) +email.MIMEMessage.MIMENonMultipart(??) +email.MIMEMessage.Message +email.MIMEMultipart +email.MIMEMultipart.MIMEBase +email.MIMEMultipart.MIMEMultipart(??) +email.MIMENonMultipart +email.MIMENonMultipart.Errors +email.MIMENonMultipart.MIMEBase +email.MIMENonMultipart.MIMENonMultipart(??) +email.MIMEText +email.MIMEText.MIMENonMultipart(??) +email.MIMEText.MIMEText(??) +email.MIMEText.encode_7or8bit(??) +email.Message +email.Message.Charset +email.Message.Errors +email.Message.Message(??) +email.Message.SEMISPACE +email.Message.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.Message.Utils +email.Message.binascii +email.Message.paramre +email.Message.re +email.Message.tspecials +email.Message.uu +email.Message.warnings +email.Parser +email.Parser.FeedParser(??) +email.Parser.HeaderParser(??) +email.Parser.Message(??) +email.Parser.Parser(??) +email.Parser.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.Parser.warnings +email.Utils +email.Utils.COMMASPACE +email.Utils.CRLF +email.Utils.EMPTYSTRING +email.Utils.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.Utils.UEMPTYSTRING +email.Utils.base64 +email.Utils.collapse_rfc2231_value(??) +email.Utils.decode_params(??) +email.Utils.decode_rfc2231(??) +email.Utils.ecre +email.Utils.encode_rfc2231(??) +email.Utils.escapesre +email.Utils.fix_eols(??) +email.Utils.formataddr(??) +email.Utils.formatdate(??) +email.Utils.getaddresses(??) +email.Utils.make_msgid(??) +email.Utils.mktime_tz(??) +email.Utils.os +email.Utils.parseaddr(??) +email.Utils.parsedate(??) +email.Utils.parsedate_tz(??) +email.Utils.quote(??) +email.Utils.random +email.Utils.re +email.Utils.rfc2231_continuation +email.Utils.socket +email.Utils.specialsre +email.Utils.time +email.Utils.unquote(??) +email.Utils.warnings +email.base64MIME +email.base64MIME.CRLF +email.base64MIME.EMPTYSTRING +email.base64MIME.MISC_LEN +email.base64MIME.NL +email.base64MIME.a2b_base64 +email.base64MIME.b2a_base64 +email.base64MIME.base64_len(??) +email.base64MIME.body_decode(??) +email.base64MIME.body_encode(??) +email.base64MIME.decode(??) +email.base64MIME.decodestring(??) +email.base64MIME.encode(??) +email.base64MIME.encodestring(??) +email.base64MIME.fix_eols(??) +email.base64MIME.header_encode(??) +email.base64MIME.re +email.message_from_file(??) +email.message_from_string(??) +email.quopriMIME +email.quopriMIME.CRLF +email.quopriMIME.MISC_LEN +email.quopriMIME.NL +email.quopriMIME.body_decode(??) +email.quopriMIME.body_encode(??) +email.quopriMIME.body_quopri_check(??) +email.quopriMIME.body_quopri_len(??) +email.quopriMIME.bqre +email.quopriMIME.decode(??) +email.quopriMIME.decodestring(??) +email.quopriMIME.encode(??) +email.quopriMIME.encodestring(??) +email.quopriMIME.fix_eols(??) +email.quopriMIME.header_decode(??) +email.quopriMIME.header_encode(??) +email.quopriMIME.header_quopri_check(??) +email.quopriMIME.header_quopri_len(??) +email.quopriMIME.hexdigits +email.quopriMIME.hqre +email.quopriMIME.quote(??) +email.quopriMIME.re +email.quopriMIME.unquote(??) +enumerate(iterable) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EADV +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EBADE +errno.EBADF +errno.EBADFD +errno.EBADMSG +errno.EBADR +errno.EBADRQC +errno.EBADSLT +errno.EBFONT +errno.EBUSY +errno.ECHILD +errno.ECHRNG +errno.ECOMM +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDEADLOCK +errno.EDESTADDRREQ +errno.EDOM +errno.EDOTDOT +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.EISNAM +errno.EL2HLT +errno.EL2NSYNC +errno.EL3HLT +errno.EL3RST +errno.ELIBACC +errno.ELIBBAD +errno.ELIBEXEC +errno.ELIBMAX +errno.ELIBSCN +errno.ELNRNG +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENAVAIL +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOANO +errno.ENOBUFS +errno.ENOCSI +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENONET +errno.ENOPKG +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTNAM +errno.ENOTSOCK +errno.ENOTTY +errno.ENOTUNIQ +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.ERANGE +errno.EREMCHG +errno.EREMOTE +errno.EREMOTEIO +errno.ERESTART +errno.EROFS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESRMNT +errno.ESTALE +errno.ESTRPIPE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUCLEAN +errno.EUNATCH +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.EXFULL +errno.errorcode +eval(source[, globals[, locals]]) -> value +exceptions.ArithmeticError(??) +exceptions.AssertionError(??) +exceptions.AttributeError(??) +exceptions.DeprecationWarning(??) +exceptions.EOFError(??) +exceptions.EnvironmentError(??) +exceptions.Exception(??) +exceptions.FloatingPointError(??) +exceptions.FutureWarning(??) +exceptions.IOError(??) +exceptions.ImportError(??) +exceptions.IndentationError(??) +exceptions.IndexError(??) +exceptions.KeyError(??) +exceptions.KeyboardInterrupt(??) +exceptions.LookupError(??) +exceptions.MemoryError(??) +exceptions.NameError(??) +exceptions.NotImplementedError(??) +exceptions.OSError(??) +exceptions.OverflowError(??) +exceptions.OverflowWarning(??) +exceptions.PendingDeprecationWarning(??) +exceptions.ReferenceError(??) +exceptions.RuntimeError(??) +exceptions.RuntimeWarning(??) +exceptions.StandardError(??) +exceptions.StopIteration(??) +exceptions.SyntaxError(??) +exceptions.SyntaxWarning(??) +exceptions.SystemError(??) +exceptions.SystemExit(??) +exceptions.TabError(??) +exceptions.TypeError(??) +exceptions.UnboundLocalError(??) +exceptions.UnicodeDecodeError(??) +exceptions.UnicodeEncodeError(??) +exceptions.UnicodeError(??) +exceptions.UnicodeTranslateError(??) +exceptions.UserWarning(??) +exceptions.ValueError(??) +exceptions.Warning(??) +exceptions.ZeroDivisionError(??) +execfile(filename[, globals[, locals]]) +exit +fcntl.DN_ACCESS +fcntl.DN_ATTRIB +fcntl.DN_CREATE +fcntl.DN_DELETE +fcntl.DN_MODIFY +fcntl.DN_MULTISHOT +fcntl.DN_RENAME +fcntl.FD_CLOEXEC +fcntl.F_DUPFD +fcntl.F_EXLCK +fcntl.F_GETFD +fcntl.F_GETFL +fcntl.F_GETLEASE +fcntl.F_GETLK +fcntl.F_GETLK64 +fcntl.F_GETOWN +fcntl.F_GETSIG +fcntl.F_NOTIFY +fcntl.F_RDLCK +fcntl.F_SETFD +fcntl.F_SETFL +fcntl.F_SETLEASE +fcntl.F_SETLK +fcntl.F_SETLK64 +fcntl.F_SETLKW +fcntl.F_SETLKW64 +fcntl.F_SETOWN +fcntl.F_SETSIG +fcntl.F_SHLCK +fcntl.F_UNLCK +fcntl.F_WRLCK +fcntl.I_ATMARK +fcntl.I_CANPUT +fcntl.I_CKBAND +fcntl.I_FDINSERT +fcntl.I_FIND +fcntl.I_FLUSH +fcntl.I_FLUSHBAND +fcntl.I_GETBAND +fcntl.I_GETCLTIME +fcntl.I_GETSIG +fcntl.I_GRDOPT +fcntl.I_GWROPT +fcntl.I_LINK +fcntl.I_LIST +fcntl.I_LOOK +fcntl.I_NREAD +fcntl.I_PEEK +fcntl.I_PLINK +fcntl.I_POP +fcntl.I_PUNLINK +fcntl.I_PUSH +fcntl.I_RECVFD +fcntl.I_SENDFD +fcntl.I_SETCLTIME +fcntl.I_SETSIG +fcntl.I_SRDOPT +fcntl.I_STR +fcntl.I_SWROPT +fcntl.I_UNLINK +fcntl.LOCK_EX +fcntl.LOCK_MAND +fcntl.LOCK_NB +fcntl.LOCK_READ +fcntl.LOCK_RW +fcntl.LOCK_SH +fcntl.LOCK_UN +fcntl.LOCK_WRITE +fcntl.fcntl(fd, opt, [arg]) +fcntl.flock(fd, operation) +fcntl.ioctl(fd, opt[, arg[, mutate_flag]]) +fcntl.lockf (fd, operation, length=0, start=0, whence=0) +file(name[, mode[, buffering]]) -> file object +filecmp.BUFSIZE +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.ifilter(function or None, sequence) --> ifilter object +filecmp.ifilterfalse(function or None, sequence) --> ifilterfalse object +filecmp.imap(func, *iterables) --> imap object +filecmp.izip(iter1 [,iter2 [...]]) --> izip object +filecmp.os +filecmp.stat +filecmp.warnings +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.input([files[, inplace[, backup]]]) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os +fileinput.sys +filter(function or None, sequence) -> list, tuple, or string +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.re +fnmatch.translate(??) +formatter.AS_IS +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys +formatter.test(??) +fpformat.NotANumber(??) +fpformat.decoder +fpformat.extract(??) +fpformat.fix(??) +fpformat.re +fpformat.roundfrac(??) +fpformat.sci(??) +fpformat.test(??) +fpformat.unexpo(??) +frozenset(iterable) --> frozenset object +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.os +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket +ftplib.sys +ftplib.test(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_INSTANCES +gc.DEBUG_LEAK +gc.DEBUG_OBJECTS +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.collect() -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gdbm.error(??) +gdbm.open(filename, [flags, [mode]]) -> dbm_object +gdbm.open_flags +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os +getopt.short_has_arg(??) +getpass.default_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.sys +getpass.termios +getpass.unix_getpass(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale +gettext.ngettext(??) +gettext.os +gettext.re +gettext.struct +gettext.sys +gettext.test(??) +gettext.textdomain(??) +gettext.translation(??) +glob.fnmatch +glob.glob(??) +glob.glob1(??) +glob.has_magic(??) +glob.magic_check +glob.os +glob.re +globals() -> dictionary +gopherlib.A_BINARY +gopherlib.A_CALENDAR +gopherlib.A_CSO +gopherlib.A_DUPLICATE +gopherlib.A_ERROR +gopherlib.A_EVENT +gopherlib.A_GIF +gopherlib.A_HTML +gopherlib.A_IMAGE +gopherlib.A_INDEX +gopherlib.A_MACBINHEX +gopherlib.A_MENU +gopherlib.A_MIME +gopherlib.A_PCBINHEX +gopherlib.A_PLUS_IMAGE +gopherlib.A_PLUS_MOVIE +gopherlib.A_PLUS_SOUND +gopherlib.A_QUERY +gopherlib.A_SOUND +gopherlib.A_TELNET +gopherlib.A_TEXT +gopherlib.A_TN3270 +gopherlib.A_UUENCODED +gopherlib.A_WHOIS +gopherlib.A_WWW +gopherlib.CRLF +gopherlib.DEF_HOST +gopherlib.DEF_PORT +gopherlib.DEF_SELECTOR +gopherlib.TAB +gopherlib.get_alt_binary(??) +gopherlib.get_alt_textfile(??) +gopherlib.get_binary(??) +gopherlib.get_directory(??) +gopherlib.get_textfile(??) +gopherlib.path_to_datatype_name(??) +gopherlib.path_to_selector(??) +gopherlib.send_query(??) +gopherlib.send_selector(??) +gopherlib.test(??) +gopherlib.type_to_name(??) +grp.getgrall() -> list of tuples +grp.getgrgid(id) -> tuple +grp.getgrnam(name) -> tuple +grp.struct_group +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.LOWU32(??) +gzip.READ +gzip.U32(??) +gzip.WRITE +gzip.open(??) +gzip.read32(??) +gzip.struct +gzip.sys +gzip.time +gzip.write32(??) +gzip.write32u(??) +gzip.zlib +hasattr(object, name) -> bool +hash(object) -> integer +heapq.bisect +heapq.heapify +heapq.heappop +heapq.heappush +heapq.heapreplace +heapq.islice(iterable, [start,] stop [, step]) --> islice object +heapq.nlargest +heapq.nsmallest +heapq.repeat(element [,times]) -> create an iterator which returns the element +help +hex(number) -> string +hmac.HMAC(??) +hmac.digest_size +hmac.new(??) +hotshot.Profile(??) +hotshot.ProfilerError(??) +hotshot.log +hotshot.log.ENTER +hotshot.log.EXIT +hotshot.log.LINE +hotshot.log.LogReader(??) +hotshot.log.WHAT_ADD_INFO +hotshot.log.WHAT_DEFINE_FILE +hotshot.log.WHAT_DEFINE_FUNC +hotshot.log.WHAT_ENTER +hotshot.log.WHAT_EXIT +hotshot.log.WHAT_LINENO +hotshot.log.os +hotshot.log.parser +hotshot.log.symbol +hotshot.log.sys +hotshot.stats +hotshot.stats.ENTER +hotshot.stats.EXIT +hotshot.stats.FakeCode(??) +hotshot.stats.FakeFrame(??) +hotshot.stats.Profile(??) +hotshot.stats.StatsLoader(??) +hotshot.stats.hotshot +hotshot.stats.load(??) +hotshot.stats.profile +hotshot.stats.pstats +hotshot.stones +hotshot.stones.errno +hotshot.stones.hotshot +hotshot.stones.main(??) +hotshot.stones.os +hotshot.stones.sys +hotshot.stones.test +htmlentitydefs.codepoint2name +htmlentitydefs.entitydefs +htmlentitydefs.name2codepoint +htmllib.AS_IS +htmllib.HTMLParseError(??) +htmllib.HTMLParser(??) +htmllib.sgmllib +htmllib.test(??) +httplib.ACCEPTED +httplib.BAD_GATEWAY +httplib.BAD_REQUEST +httplib.BadStatusLine(??) +httplib.CONFLICT +httplib.CONTINUE +httplib.CREATED +httplib.CannotSendHeader(??) +httplib.CannotSendRequest(??) +httplib.EXPECTATION_FAILED +httplib.FAILED_DEPENDENCY +httplib.FORBIDDEN +httplib.FOUND +httplib.FakeSocket(??) +httplib.GATEWAY_TIMEOUT +httplib.GONE +httplib.HTTP(??) +httplib.HTTPConnection(??) +httplib.HTTPException(??) +httplib.HTTPMessage(??) +httplib.HTTPResponse(??) +httplib.HTTPS(??) +httplib.HTTPSConnection(??) +httplib.HTTPS_PORT +httplib.HTTP_PORT +httplib.HTTP_VERSION_NOT_SUPPORTED +httplib.IM_USED +httplib.INSUFFICIENT_STORAGE +httplib.INTERNAL_SERVER_ERROR +httplib.ImproperConnectionState(??) +httplib.IncompleteRead(??) +httplib.InvalidURL(??) +httplib.LENGTH_REQUIRED +httplib.LOCKED +httplib.LineAndFileWrapper(??) +httplib.MAXAMOUNT +httplib.METHOD_NOT_ALLOWED +httplib.MOVED_PERMANENTLY +httplib.MULTIPLE_CHOICES +httplib.MULTI_STATUS +httplib.NON_AUTHORITATIVE_INFORMATION +httplib.NOT_ACCEPTABLE +httplib.NOT_EXTENDED +httplib.NOT_FOUND +httplib.NOT_IMPLEMENTED +httplib.NOT_MODIFIED +httplib.NO_CONTENT +httplib.NotConnected(??) +httplib.OK +httplib.PARTIAL_CONTENT +httplib.PAYMENT_REQUIRED +httplib.PRECONDITION_FAILED +httplib.PROCESSING +httplib.PROXY_AUTHENTICATION_REQUIRED +httplib.REQUESTED_RANGE_NOT_SATISFIABLE +httplib.REQUEST_ENTITY_TOO_LARGE +httplib.REQUEST_TIMEOUT +httplib.REQUEST_URI_TOO_LONG +httplib.RESET_CONTENT +httplib.ResponseNotReady(??) +httplib.SEE_OTHER +httplib.SERVICE_UNAVAILABLE +httplib.SSLFile(??) +httplib.SWITCHING_PROTOCOLS +httplib.SharedSocket(??) +httplib.SharedSocketClient(??) +httplib.StringIO([s]) -- Return a StringIO-like stream for reading or writing +httplib.TEMPORARY_REDIRECT +httplib.UNAUTHORIZED +httplib.UNPROCESSABLE_ENTITY +httplib.UNSUPPORTED_MEDIA_TYPE +httplib.UPGRADE_REQUIRED +httplib.USE_PROXY +httplib.UnimplementedFileMode(??) +httplib.UnknownProtocol(??) +httplib.UnknownTransferEncoding(??) +httplib.errno +httplib.error(??) +httplib.mimetools +httplib.socket +httplib.test(??) +httplib.urlsplit(??) +id(object) -> integer +ihooks.BUILTIN_MODULE +ihooks.BasicModuleImporter(??) +ihooks.BasicModuleLoader(??) +ihooks.C_BUILTIN +ihooks.C_EXTENSION +ihooks.FROZEN_MODULE +ihooks.FancyModuleLoader(??) +ihooks.Hooks(??) +ihooks.ModuleImporter(??) +ihooks.ModuleLoader(??) +ihooks.PKG_DIRECTORY +ihooks.PY_COMPILED +ihooks.PY_FROZEN +ihooks.PY_SOURCE +ihooks.VERBOSE +ihooks.current_importer +ihooks.default_importer +ihooks.imp +ihooks.install(??) +ihooks.os +ihooks.sys +ihooks.uninstall(??) +imaplib.AllowedVersions +imaplib.CRLF +imaplib.Commands +imaplib.Continuation +imaplib.Debug +imaplib.Flags +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate +imaplib.Internaldate2tuple(??) +imaplib.Literal +imaplib.MapCRLF +imaplib.Mon2num +imaplib.ParseFlags(??) +imaplib.Response_code +imaplib.Time2Internaldate(??) +imaplib.Untagged_response +imaplib.Untagged_status +imaplib.binascii +imaplib.os +imaplib.random +imaplib.re +imaplib.socket +imaplib.sys +imaplib.time +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.acquire_lock() -> None +imp.find_module(name, [path]) -> (file, filename, (suffix, mode, type)) +imp.get_frozen_object +imp.get_magic() -> string +imp.get_suffixes() -> [(suffix, mode, type), ...] +imp.init_builtin +imp.init_frozen +imp.is_builtin +imp.is_frozen +imp.load_compiled +imp.load_dynamic +imp.load_module(name, file, filename, (suffix, mode, type)) -> module +imp.load_package +imp.load_source +imp.lock_held() -> boolean +imp.new_module(name) -> module +imp.release_lock() -> None +imputil.BuiltinImporter(??) +imputil.DynLoadSuffixImporter(??) +imputil.ImportManager(??) +imputil.Importer(??) +imputil.imp +imputil.marshal +imputil.py_suffix_importer(??) +imputil.struct +imputil.sys +input([prompt]) -> value +inspect.BlockFinder(??) +inspect.CO_NEWLOCALS +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.EndOfBlock(??) +inspect.ListReader(??) +inspect.classify_class_attrs(??) +inspect.currentframe +inspect.dis +inspect.findsource(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getblock(??) +inspect.getclasstree(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.imp +inspect.indentsize(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.joinseq(??) +inspect.linecache +inspect.modulesbyfile +inspect.os +inspect.re +inspect.stack(??) +inspect.string +inspect.strseq(??) +inspect.sys +inspect.tokenize +inspect.trace(??) +inspect.types +inspect.walktree(??) +int(x[, base]) -> integer +intern(string) -> string +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(collection) -> iterator +itertools.chain(*iterables) --> chain object +itertools.count([firstval]) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.ifilter(function or None, sequence) --> ifilter object +itertools.ifilterfalse(function or None, sequence) --> ifilterfalse object +itertools.imap(func, *iterables) --> imap object +itertools.islice(iterable, [start,] stop [, step]) --> islice object +itertools.izip(iter1 [,iter2 [...]]) --> izip object +itertools.repeat(element [,times]) -> create an iterator which returns the element +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +keyword.iskeyword +keyword.kwlist +keyword.main(??) +len(object) -> integer +license +linecache.cache +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os +linecache.sys +linecache.updatecache(??) +linuxaudiodev.AFMT_A_LAW +linuxaudiodev.AFMT_MU_LAW +linuxaudiodev.AFMT_S16_BE +linuxaudiodev.AFMT_S16_LE +linuxaudiodev.AFMT_S16_NE +linuxaudiodev.AFMT_S8 +linuxaudiodev.AFMT_U16_BE +linuxaudiodev.AFMT_U16_LE +linuxaudiodev.AFMT_U8 +linuxaudiodev.error(??) +linuxaudiodev.open +list() -> new list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.bind_textdomain_codeset(domain, codeset) -> string +locale.bindtextdomain(domain, dir) -> string +locale.dcgettext(domain, msg, category) -> string +locale.dgettext(domain, msg) -> string +locale.encoding_alias +locale.format(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.gettext(msg) -> string +locale.locale_alias +locale.localeconv +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll +locale.strxfrm +locale.sys +locale.textdomain(domain) -> string +locale.windows_locale +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.Manager(??) +logging.NOTSET +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StreamHandler(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit +logging.basicConfig(??) +logging.cStringIO +logging.codecs +logging.config +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.fileConfig(??) +logging.config.listen(??) +logging.config.logging +logging.config.os +logging.config.socket +logging.config.stopListening(??) +logging.config.string +logging.config.struct +logging.config.sys +logging.config.thread +logging.config.threading +logging.config.traceback +logging.critical(??) +logging.currentframe +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.cPickle +logging.handlers.codecs +logging.handlers.glob +logging.handlers.logging +logging.handlers.os +logging.handlers.socket +logging.handlers.string +logging.handlers.struct +logging.handlers.sys +logging.handlers.time +logging.handlers.types +logging.info(??) +logging.log(??) +logging.makeLogRecord(??) +logging.os +logging.raiseExceptions +logging.root +logging.setLoggerClass(??) +logging.shutdown(??) +logging.string +logging.sys +logging.thread +logging.threading +logging.time +logging.traceback +logging.types +logging.warn(??) +logging.warning(??) +long(x[, base]) -> integer +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(??) +macpath.S_ISCHR(??) +macpath.S_ISDIR(??) +macpath.S_ISFIFO(??) +macpath.S_ISGID +macpath.S_ISLNK(??) +macpath.S_ISREG(??) +macpath.S_ISSOCK(??) +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.abspath(??) +macpath.altsep +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames +macpath.walk(??) +macurl2path.os +macurl2path.pathname2url(??) +macurl2path.test(??) +macurl2path.url2pathname(??) +macurl2path.urllib +mailbox.BabylMailbox(??) +mailbox.MHMailbox(??) +mailbox.Maildir(??) +mailbox.MmdfMailbox(??) +mailbox.PortableUnixMailbox(??) +mailbox.UnixMailbox(??) +mailbox.os +mailbox.rfc822 +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(function, sequence[, sequence, ...]) -> list +markupbase.ParserBase(??) +marshal.dump +marshal.dumps +marshal.load +marshal.loads +marshal.version +math.acos(x) +math.asin(x) +math.atan(x) +math.atan2(y, x) +math.ceil(x) +math.cos(x) +math.cosh(x) +math.degrees(x) -> converts angle x from radians to degrees +math.e +math.exp(x) +math.fabs(x) +math.floor(x) +math.fmod(x,y) +math.frexp(x) +math.hypot(x,y) +math.ldexp(x, i) -> x * (2**i) +math.log(x[, base]) -> the logarithm of x to the given base. +math.log10(x) -> the base 10 logarithm of x. +math.modf(x) +math.pi +math.pow(x,y) +math.radians(x) -> converts angle x from degrees to radians +math.sin(x) +math.sinh(x) +math.sqrt(x) +math.tan(x) +math.tanh(x) +max(sequence) -> value +md5.MD5Type +md5.digest_size +md5.md5 +md5.new([arg]) -> md5 object +mhlib.Error(??) +mhlib.FOLDER_PROTECT +mhlib.Folder(??) +mhlib.IntSet(??) +mhlib.MH(??) +mhlib.MH_PROFILE +mhlib.MH_SEQUENCES +mhlib.Message(??) +mhlib.PATH +mhlib.SubMessage(??) +mhlib.bisect +mhlib.isnumeric(??) +mhlib.mimetools +mhlib.multifile +mhlib.numericprog +mhlib.os +mhlib.pickline(??) +mhlib.re +mhlib.shutil +mhlib.sys +mhlib.test(??) +mhlib.updateline(??) +mimetools.Message(??) +mimetools.choose_boundary(??) +mimetools.copybinary(??) +mimetools.copyliteral(??) +mimetools.decode(??) +mimetools.decodetab +mimetools.encode(??) +mimetools.encodetab +mimetools.os +mimetools.pipethrough(??) +mimetools.pipeto(??) +mimetools.rfc822 +mimetools.tempfile +mimetools.uudecode_pipe +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types +mimetypes.encodings_map +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited +mimetypes.knownfiles +mimetypes.os +mimetypes.posixpath +mimetypes.read_mime_types(??) +mimetypes.suffix_map +mimetypes.types_map +mimetypes.urllib +mimify.CHARSET +mimify.File(??) +mimify.HeaderFile(??) +mimify.MAXLEN +mimify.QUOTE +mimify.base64_re +mimify.chrset +mimify.cte +mimify.he +mimify.iso_char +mimify.mime_char +mimify.mime_code +mimify.mime_decode(??) +mimify.mime_decode_header(??) +mimify.mime_encode(??) +mimify.mime_encode_header(??) +mimify.mime_head +mimify.mime_header +mimify.mime_header_char +mimify.mimify(??) +mimify.mimify_part(??) +mimify.mp +mimify.mv +mimify.qp +mimify.re +mimify.repl +mimify.sys +mimify.unmimify(??) +mimify.unmimify_part(??) +min(sequence) -> value +mmap.ACCESS_COPY +mmap.ACCESS_READ +mmap.ACCESS_WRITE +mmap.MAP_ANON +mmap.MAP_ANONYMOUS +mmap.MAP_DENYWRITE +mmap.MAP_EXECUTABLE +mmap.MAP_PRIVATE +mmap.MAP_SHARED +mmap.PAGESIZE +mmap.PROT_EXEC +mmap.PROT_READ +mmap.PROT_WRITE +mmap.error(??) +mmap.mmap +modulefinder.AddPackagePath(??) +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.READ_MODE +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS +modulefinder.dis +modulefinder.imp +modulefinder.marshal +modulefinder.new +modulefinder.os +modulefinder.packagePathMap +modulefinder.replacePackageMap +modulefinder.sys +modulefinder.test(??) +multifile.Error(??) +multifile.MultiFile(??) +mutex.deque(iterable) --> deque object +mutex.mutex(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os +netrc.shlex +new.classobj(name, bases, dict) +new.code +new.function(code, globals[, name[, argdefs[, closure]]]) +new.instance(class[, dict]) +new.instancemethod(function, instance, class) +new.module(name[, doc]) +nis.cat +nis.error(??) +nis.maps +nis.match +nntplib.CRLF +nntplib.LONGRESP +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.error_data(??) +nntplib.error_perm(??) +nntplib.error_proto(??) +nntplib.error_reply(??) +nntplib.error_temp(??) +nntplib.re +nntplib.socket +ntpath.abspath(??) +ntpath.altsep +ntpath.basename(??) +ntpath.commonprefix(??) +ntpath.curdir +ntpath.defpath +ntpath.devnull +ntpath.dirname(??) +ntpath.exists(??) +ntpath.expanduser(??) +ntpath.expandvars(??) +ntpath.extsep +ntpath.getatime(??) +ntpath.getctime(??) +ntpath.getmtime(??) +ntpath.getsize(??) +ntpath.isabs(??) +ntpath.isdir(??) +ntpath.isfile(??) +ntpath.islink(??) +ntpath.ismount(??) +ntpath.join(??) +ntpath.lexists(??) +ntpath.normcase(??) +ntpath.normpath(??) +ntpath.os +ntpath.pardir +ntpath.pathsep +ntpath.realpath(??) +ntpath.sep +ntpath.split(??) +ntpath.splitdrive(??) +ntpath.splitext(??) +ntpath.splitunc(??) +ntpath.stat +ntpath.supports_unicode_filenames +ntpath.sys +ntpath.walk(??) +nturl2path.pathname2url(??) +nturl2path.url2pathname(??) +object +oct(number) -> string +opcode.EXTENDED_ARG +opcode.HAVE_ARGUMENT +opcode.cmp_op +opcode.hascompare +opcode.hasconst +opcode.hasfree +opcode.hasjabs +opcode.hasjrel +opcode.haslocal +opcode.hasname +opcode.opmap +opcode.opname +open +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.delslice(a, b, c) -- Same as del a[b:c]. +operator.div(a, b) -- Same as a / b when __future__.division is not in effect. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.getslice(a, b, c) -- Same as a[b:c]. +operator.gt(a, b) -- Same as a>b. +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.isCallable(a) -- Same as callable(a). +operator.isMappingType(a) -- Return True if a has a mapping type, False otherwise. +operator.isNumberType(a) -- Return True if a has a numeric type, False otherwise. +operator.isSequenceType(a) -- Return True if a has a sequence type, False otherwise. +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.itemgetter(item) --> itemgetter object +operator.le(a, b) -- Same as a<=b. +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a> b. +operator.sequenceIncludes(a, b) -- Same as b in a (note reversed operands; deprecated). +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.setslice(a, b, c, d) -- Same as a[b:c] = d. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b when __future__.division is in effect. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.make_option(??) +optparse.os +optparse.sys +optparse.textwrap +optparse.types +ord(c) -> integer +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_OK +os.NGROUPS_MAX +os.O_APPEND +os.O_CREAT +os.O_DIRECT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_LARGEFILE +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_RSYNC +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.P_NOWAIT +os.P_NOWAITO +os.P_WAIT +os.R_OK +os.TMP_MAX +os.UserDict +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(path, mode) -> 1 if granted, 0 otherwise +os.altsep +os.chdir(path) +os.chmod(path, mode) +os.chown(path, uid, gid) +os.chroot(path) +os.close(fd) +os.confstr(name) -> string +os.confstr_names +os.ctermid() -> string +os.curdir +os.defpath +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(??) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fildes) +os.fdatasync(fildes) +os.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.getcwd() -> path +os.getcwdu() -> path +os.getegid() -> egid +os.getenv(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getsid(pid) -> sid +os.getuid() -> uid +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst) +os.listdir(path) -> list_of_strings +os.lseek(fd, pos, how) -> newpos +os.lstat(path) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0777]) +os.minor(device) -> minor number +os.mkdir(path [, mode=0777]) +os.mkfifo(filename [, mode=0666]) +os.mknod(filename [, mode=0600, device]) +os.name +os.nice(inc) -> new_priority +os.open(filename, flag [, mode=0777]) -> fd +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path +os.pathconf(path, name) -> integer +os.pathconf_names +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(command [, mode='r' [, bufsize]]) -> pipe +os.popen2(??) +os.popen3(??) +os.popen4(??) +os.putenv(key, value) +os.read(fd, buffersize) -> string +os.readlink(path) -> path +os.remove(path) +os.removedirs(path) +os.rename(old, new) +os.renames(old, new) +os.rmdir(path) +os.sep +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setregid(rgid, egid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.stat(path) -> stat result +os.stat_float_times([newval]) -> oldval +os.stat_result +os.statvfs(path) -> statvfs result +os.statvfs_result +os.strerror(code) -> string +os.symlink(src, dst) +os.sys +os.sysconf(name) -> integer +os.sysconf_names +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.tempnam([dir[, prefix]]) -> string +os.times() -> (utime, stime, cutime, cstime, elapsed_time) +os.tmpfile() -> file object +os.tmpnam() -> string +os.ttyname(fd) -> string +os.umask(new_mask) -> old_mask +os.uname() -> (sysname, nodename, release, version, machine) +os.unlink(path) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, (atime, utime)) +os.wait() -> (pid, status) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, string) -> byteswritten +os2emxpath.abspath(??) +os2emxpath.altsep +os2emxpath.basename(??) +os2emxpath.commonprefix(??) +os2emxpath.curdir +os2emxpath.defpath +os2emxpath.devnull +os2emxpath.dirname(??) +os2emxpath.exists(??) +os2emxpath.expanduser(??) +os2emxpath.expandvars(??) +os2emxpath.extsep +os2emxpath.getatime(??) +os2emxpath.getctime(??) +os2emxpath.getmtime(??) +os2emxpath.getsize(??) +os2emxpath.isabs(??) +os2emxpath.isdir(??) +os2emxpath.isfile(??) +os2emxpath.islink(??) +os2emxpath.ismount(??) +os2emxpath.join(??) +os2emxpath.lexists(??) +os2emxpath.normcase(??) +os2emxpath.normpath(??) +os2emxpath.os +os2emxpath.pardir +os2emxpath.pathsep +os2emxpath.realpath(??) +os2emxpath.sep +os2emxpath.split(??) +os2emxpath.splitdrive(??) +os2emxpath.splitext(??) +os2emxpath.splitunc(??) +os2emxpath.stat +os2emxpath.supports_unicode_filenames +os2emxpath.walk(??) +ossaudiodev.AFMT_AC3 +ossaudiodev.AFMT_A_LAW +ossaudiodev.AFMT_IMA_ADPCM +ossaudiodev.AFMT_MPEG +ossaudiodev.AFMT_MU_LAW +ossaudiodev.AFMT_QUERY +ossaudiodev.AFMT_S16_BE +ossaudiodev.AFMT_S16_LE +ossaudiodev.AFMT_S16_NE +ossaudiodev.AFMT_S8 +ossaudiodev.AFMT_U16_BE +ossaudiodev.AFMT_U16_LE +ossaudiodev.AFMT_U8 +ossaudiodev.OSSAudioError(??) +ossaudiodev.SNDCTL_COPR_HALT +ossaudiodev.SNDCTL_COPR_LOAD +ossaudiodev.SNDCTL_COPR_RCODE +ossaudiodev.SNDCTL_COPR_RCVMSG +ossaudiodev.SNDCTL_COPR_RDATA +ossaudiodev.SNDCTL_COPR_RESET +ossaudiodev.SNDCTL_COPR_RUN +ossaudiodev.SNDCTL_COPR_SENDMSG +ossaudiodev.SNDCTL_COPR_WCODE +ossaudiodev.SNDCTL_COPR_WDATA +ossaudiodev.SNDCTL_DSP_BIND_CHANNEL +ossaudiodev.SNDCTL_DSP_CHANNELS +ossaudiodev.SNDCTL_DSP_GETBLKSIZE +ossaudiodev.SNDCTL_DSP_GETCAPS +ossaudiodev.SNDCTL_DSP_GETCHANNELMASK +ossaudiodev.SNDCTL_DSP_GETFMTS +ossaudiodev.SNDCTL_DSP_GETIPTR +ossaudiodev.SNDCTL_DSP_GETISPACE +ossaudiodev.SNDCTL_DSP_GETODELAY +ossaudiodev.SNDCTL_DSP_GETOPTR +ossaudiodev.SNDCTL_DSP_GETOSPACE +ossaudiodev.SNDCTL_DSP_GETSPDIF +ossaudiodev.SNDCTL_DSP_GETTRIGGER +ossaudiodev.SNDCTL_DSP_MAPINBUF +ossaudiodev.SNDCTL_DSP_MAPOUTBUF +ossaudiodev.SNDCTL_DSP_NONBLOCK +ossaudiodev.SNDCTL_DSP_POST +ossaudiodev.SNDCTL_DSP_PROFILE +ossaudiodev.SNDCTL_DSP_RESET +ossaudiodev.SNDCTL_DSP_SAMPLESIZE +ossaudiodev.SNDCTL_DSP_SETDUPLEX +ossaudiodev.SNDCTL_DSP_SETFMT +ossaudiodev.SNDCTL_DSP_SETFRAGMENT +ossaudiodev.SNDCTL_DSP_SETSPDIF +ossaudiodev.SNDCTL_DSP_SETSYNCRO +ossaudiodev.SNDCTL_DSP_SETTRIGGER +ossaudiodev.SNDCTL_DSP_SPEED +ossaudiodev.SNDCTL_DSP_STEREO +ossaudiodev.SNDCTL_DSP_SUBDIVIDE +ossaudiodev.SNDCTL_DSP_SYNC +ossaudiodev.SNDCTL_FM_4OP_ENABLE +ossaudiodev.SNDCTL_FM_LOAD_INSTR +ossaudiodev.SNDCTL_MIDI_INFO +ossaudiodev.SNDCTL_MIDI_MPUCMD +ossaudiodev.SNDCTL_MIDI_MPUMODE +ossaudiodev.SNDCTL_MIDI_PRETIME +ossaudiodev.SNDCTL_SEQ_CTRLRATE +ossaudiodev.SNDCTL_SEQ_GETINCOUNT +ossaudiodev.SNDCTL_SEQ_GETOUTCOUNT +ossaudiodev.SNDCTL_SEQ_GETTIME +ossaudiodev.SNDCTL_SEQ_NRMIDIS +ossaudiodev.SNDCTL_SEQ_NRSYNTHS +ossaudiodev.SNDCTL_SEQ_OUTOFBAND +ossaudiodev.SNDCTL_SEQ_PANIC +ossaudiodev.SNDCTL_SEQ_PERCMODE +ossaudiodev.SNDCTL_SEQ_RESET +ossaudiodev.SNDCTL_SEQ_RESETSAMPLES +ossaudiodev.SNDCTL_SEQ_SYNC +ossaudiodev.SNDCTL_SEQ_TESTMIDI +ossaudiodev.SNDCTL_SEQ_THRESHOLD +ossaudiodev.SNDCTL_SYNTH_CONTROL +ossaudiodev.SNDCTL_SYNTH_ID +ossaudiodev.SNDCTL_SYNTH_INFO +ossaudiodev.SNDCTL_SYNTH_MEMAVL +ossaudiodev.SNDCTL_SYNTH_REMOVESAMPLE +ossaudiodev.SNDCTL_TMR_CONTINUE +ossaudiodev.SNDCTL_TMR_METRONOME +ossaudiodev.SNDCTL_TMR_SELECT +ossaudiodev.SNDCTL_TMR_SOURCE +ossaudiodev.SNDCTL_TMR_START +ossaudiodev.SNDCTL_TMR_STOP +ossaudiodev.SNDCTL_TMR_TEMPO +ossaudiodev.SNDCTL_TMR_TIMEBASE +ossaudiodev.SOUND_MIXER_ALTPCM +ossaudiodev.SOUND_MIXER_BASS +ossaudiodev.SOUND_MIXER_CD +ossaudiodev.SOUND_MIXER_DIGITAL1 +ossaudiodev.SOUND_MIXER_DIGITAL2 +ossaudiodev.SOUND_MIXER_DIGITAL3 +ossaudiodev.SOUND_MIXER_IGAIN +ossaudiodev.SOUND_MIXER_IMIX +ossaudiodev.SOUND_MIXER_LINE +ossaudiodev.SOUND_MIXER_LINE1 +ossaudiodev.SOUND_MIXER_LINE2 +ossaudiodev.SOUND_MIXER_LINE3 +ossaudiodev.SOUND_MIXER_MIC +ossaudiodev.SOUND_MIXER_MONITOR +ossaudiodev.SOUND_MIXER_NRDEVICES +ossaudiodev.SOUND_MIXER_OGAIN +ossaudiodev.SOUND_MIXER_PCM +ossaudiodev.SOUND_MIXER_PHONEIN +ossaudiodev.SOUND_MIXER_PHONEOUT +ossaudiodev.SOUND_MIXER_RADIO +ossaudiodev.SOUND_MIXER_RECLEV +ossaudiodev.SOUND_MIXER_SPEAKER +ossaudiodev.SOUND_MIXER_SYNTH +ossaudiodev.SOUND_MIXER_TREBLE +ossaudiodev.SOUND_MIXER_VIDEO +ossaudiodev.SOUND_MIXER_VOLUME +ossaudiodev.control_labels +ossaudiodev.control_names +ossaudiodev.error(??) +ossaudiodev.open +ossaudiodev.openmixer +parser.ASTType +parser.ParserError(??) +parser.STType +parser.ast2list +parser.ast2tuple +parser.compileast +parser.compilest +parser.expr +parser.isexpr +parser.issuite +parser.sequence2ast +parser.sequence2st +parser.st2list +parser.st2tuple +parser.suite +parser.tuple2ast +parser.tuple2st +pdb.Pdb(??) +pdb.Repr(??) +pdb.TESTCMD +pdb.bdb +pdb.cmd +pdb.find_function(??) +pdb.help(??) +pdb.line_prefix +pdb.linecache +pdb.main(??) +pdb.os +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint +pdb.re +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.sys +pdb.test(??) +pdb.traceback +pickle.APPEND +pickle.APPENDS +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BUILD +pickle.BooleanType +pickle.BufferType +pickle.BuiltinFunctionType +pickle.BuiltinMethodType +pickle.ClassType +pickle.CodeType +pickle.ComplexType +pickle.DICT +pickle.DUP +pickle.DictProxyType +pickle.DictType +pickle.DictionaryType +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.EllipsisType +pickle.FALSE +pickle.FLOAT +pickle.FileType +pickle.FloatType +pickle.FrameType +pickle.FunctionType +pickle.GET +pickle.GLOBAL +pickle.GeneratorType +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.InstanceType +pickle.IntType +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.LambdaType +pickle.ListType +pickle.LongType +pickle.MARK +pickle.MethodType +pickle.ModuleType +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWTRUE +pickle.NONE +pickle.NoneType +pickle.NotImplementedType +pickle.OBJ +pickle.ObjectType +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINSTRING +pickle.STOP +pickle.STRING +pickle.SliceType +pickle.StringIO([s]) -- Return a StringIO-like stream for reading or writing +pickle.StringType +pickle.StringTypes +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.TracebackType +pickle.TupleType +pickle.TypeType +pickle.UNICODE +pickle.UnboundMethodType +pickle.UnicodeType +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.XRangeType +pickle.classmap +pickle.compatible_formats +pickle.decode_long(??) +pickle.dispatch_table +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.load(??) +pickle.loads(??) +pickle.marshal +pickle.mloads +pickle.re +pickle.struct +pickle.sys +pickle.warnings +pickle.whichmodule(??) +pickletools.ArgumentDescriptor +pickletools.OpcodeInfo +pickletools.StackObject +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.UP_TO_NEWLINE +pickletools.anyobject +pickletools.code2op +pickletools.decimalnl_long +pickletools.decimalnl_short +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8 +pickletools.floatnl +pickletools.genops(??) +pickletools.int4 +pickletools.long1 +pickletools.long4 +pickletools.markobject +pickletools.opcodes +pickletools.pybool +pickletools.pydict +pickletools.pyfloat +pickletools.pyint +pickletools.pyinteger_or_bool +pickletools.pylist +pickletools.pylong +pickletools.pynone +pickletools.pystring +pickletools.pytuple +pickletools.pyunicode +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice +pickletools.string1 +pickletools.string4 +pickletools.stringnl +pickletools.stringnl_noescape +pickletools.stringnl_noescape_pair +pickletools.uint1 +pickletools.uint2 +pickletools.unicodestring4 +pickletools.unicodestringnl +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os +pipes.quote(??) +pipes.re +pipes.stepkinds +pipes.string +pipes.tempfile +pipes.test(??) +pkgutil.extend_path(??) +pkgutil.os +pkgutil.sys +platform.architecture(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re +platform.release(??) +platform.string +platform.sys +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.version(??) +platform.win32_ver(??) +popen2.MAXFD +popen2.Popen3(??) +popen2.Popen4(??) +popen2.os +popen2.popen2(??) +popen2.popen3(??) +popen2.popen4(??) +popen2.sys +poplib.CR +poplib.CRLF +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.error_proto(??) +poplib.re +poplib.socket +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_OK +posix.NGROUPS_MAX +posix.O_APPEND +posix.O_CREAT +posix.O_DIRECT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_LARGEFILE +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_RSYNC +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.R_OK +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(path, mode) -> 1 if granted, 0 otherwise +posix.chdir(path) +posix.chmod(path, mode) +posix.chown(path, uid, gid) +posix.chroot(path) +posix.close(fd) +posix.confstr(name) -> string +posix.confstr_names +posix.ctermid() -> string +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ +posix.error(??) +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fildes) +posix.fdatasync(fildes) +posix.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.getcwd() -> path +posix.getcwdu() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchown(path, uid, gid) +posix.link(src, dst) +posix.listdir(path) -> list_of_strings +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path [, mode=0777]) +posix.mkfifo(filename [, mode=0666]) +posix.mknod(filename [, mode=0600, device]) +posix.nice(inc) -> new_priority +posix.open(filename, flag [, mode=0777]) -> fd +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names +posix.pipe() -> (read_end, write_end) +posix.popen(command [, mode='r' [, bufsize]]) -> pipe +posix.putenv(key, value) +posix.read(fd, buffersize) -> string +posix.readlink(path) -> path +posix.remove(path) +posix.rename(old, new) +posix.rmdir(path) +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setregid(rgid, egid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(path) -> stat result +posix.stat_float_times([newval]) -> oldval +posix.stat_result +posix.statvfs(path) -> statvfs result +posix.statvfs_result +posix.strerror(code) -> string +posix.symlink(src, dst) +posix.sysconf(name) -> integer +posix.sysconf_names +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.tempnam([dir[, prefix]]) -> string +posix.times() -> (utime, stime, cutime, cstime, elapsed_time) +posix.tmpfile() -> file object +posix.tmpnam() -> string +posix.ttyname(fd) -> string +posix.umask(new_mask) -> old_mask +posix.uname() -> (sysname, nodename, release, version, machine) +posix.unlink(path) +posix.unsetenv(key) +posix.utime(path, (atime, utime)) +posix.wait() -> (pid, status) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, string) -> byteswritten +posixfile.SEEK_CUR +posixfile.SEEK_END +posixfile.SEEK_SET +posixfile.fileopen(??) +posixfile.open(??) +posixpath.abspath(??) +posixpath.altsep +posixpath.basename(??) +posixpath.commonprefix(??) +posixpath.curdir +posixpath.defpath +posixpath.devnull +posixpath.dirname(??) +posixpath.exists(??) +posixpath.expanduser(??) +posixpath.expandvars(??) +posixpath.extsep +posixpath.getatime(??) +posixpath.getctime(??) +posixpath.getmtime(??) +posixpath.getsize(??) +posixpath.isabs(??) +posixpath.isdir(??) +posixpath.isfile(??) +posixpath.islink(??) +posixpath.ismount(??) +posixpath.join(??) +posixpath.lexists(??) +posixpath.normcase(??) +posixpath.normpath(??) +posixpath.os +posixpath.pardir +posixpath.pathsep +posixpath.realpath(??) +posixpath.samefile(??) +posixpath.sameopenfile(??) +posixpath.samestat(??) +posixpath.sep +posixpath.split(??) +posixpath.splitdrive(??) +posixpath.splitext(??) +posixpath.stat +posixpath.supports_unicode_filenames +posixpath.walk(??) +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.saferepr(??) +profile.OptionParser(??) +profile.Profile(??) +profile.Stats(??) +profile.help(??) +profile.marshal +profile.os +profile.run(??) +profile.runctx(??) +profile.sys +profile.time +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal +pstats.os +pstats.re +pstats.time +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd +pwd.struct_pwent +py_compile.MAGIC +py_compile.PyCompileError(??) +py_compile.compile(??) +py_compile.imp +py_compile.main(??) +py_compile.marshal +py_compile.os +py_compile.set_creator_type(??) +py_compile.sys +py_compile.traceback +py_compile.wr_long(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.NEWLINE +pyclbr.imp +pyclbr.itemgetter(item) --> itemgetter object +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys +pyclbr.tokenize +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.Scanner(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque(iterable) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.expandtabs(s [,tabsize]) -> string +pydoc.find(s, sub [,start [,end]]) -> in +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.gui(??) +pydoc.help +pydoc.html +pydoc.imp +pydoc.importfile(??) +pydoc.inspect +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.join(list [,sep]) -> string +pydoc.locate(??) +pydoc.lower(s) -> string +pydoc.os +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.re +pydoc.replace(??) +pydoc.resolve(??) +pydoc.rfind(s, sub [,start [,end]]) -> int +pydoc.rstrip(s [,chars]) -> string +pydoc.safeimport(??) +pydoc.serve(??) +pydoc.split(s [,sep [,maxsplit]]) -> list of strings +pydoc.splitdoc(??) +pydoc.strip(s [,chars]) -> string +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys +pydoc.tempfilepager(??) +pydoc.text +pydoc.ttypager(??) +pydoc.types +pydoc.visiblename(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pyexpat.EXPAT_VERSION +pyexpat.ErrorString(errno) -> string +pyexpat.ExpatError(??) +pyexpat.ParserCreate([encoding[, namespace_separator]]) -> parser +pyexpat.XMLParserType +pyexpat.XML_PARAM_ENTITY_PARSING_ALWAYS +pyexpat.XML_PARAM_ENTITY_PARSING_NEVER +pyexpat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +pyexpat.error(??) +pyexpat.errors +pyexpat.features +pyexpat.model +pyexpat.native_encoding +pyexpat.version_info +quit +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp +quopri.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random +random.SG_MAGICCONST +random.SystemRandom +random.TWOPI +random.WichmannHill +random.betavariate +random.choice +random.expovariate +random.gammavariate +random.gauss +random.getrandbits(k) -> x. Generates a long int with k random bits. +random.getstate +random.jumpahead(int) -> None. Create new state from existing state and integer. +random.lognormvariate +random.normalvariate +random.paretovariate +random.randint +random.random() -> x in the interval [0, 1). +random.randrange +random.sample +random.seed +random.setstate +random.shuffle +random.uniform +random.vonmisesvariate +random.weibullvariate +range([start,] stop[, step]) -> list of integers +raw_input([prompt]) -> string +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.engine +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sub(??) +re.subn(??) +re.template(??) +readline.add_history(string) -> None +readline.clear_history() -> None +readline.get_begidx() -> int +readline.get_completer() -> function +readline.get_completer_delims() -> string +readline.get_current_history_length() -> integer +readline.get_endidx() -> int +readline.get_history_item() -> string +readline.get_history_length() -> int +readline.get_line_buffer() -> string +readline.insert_text(string) -> None +readline.parse_and_bind(string) -> None +readline.read_history_file([filename]) -> None +readline.read_init_file([filename]) -> None +readline.redisplay() -> None +readline.remove_history_item(pos) -> None +readline.replace_history_item(pos, line) -> None +readline.set_completer([function]) -> None +readline.set_completer_delims(string) -> None +readline.set_history_length(length) -> None +readline.set_startup_hook([function]) -> None +readline.write_history_file([filename]) -> None +reconvert.RE_ANSI_HEX +reconvert.RE_BK_PLUS_QM +reconvert.RE_CONTEXT_INDEP_OPS +reconvert.RE_NEWLINE_OR +reconvert.RE_NO_BK_PARENS +reconvert.RE_NO_BK_VBAR +reconvert.RE_NO_GNU_EXTENSIONS +reconvert.RE_SYNTAX_AWK +reconvert.RE_SYNTAX_EGREP +reconvert.RE_SYNTAX_EMACS +reconvert.RE_SYNTAX_GREP +reconvert.RE_TIGHT_VBAR +reconvert.convert(??) +reconvert.main(??) +reconvert.mastertable +reconvert.quote(??) +reconvert.regex +reconvert.warnings +reduce(function, sequence[, initial]) -> value +regex.casefold +regex.compile +regex.error(??) +regex.get_syntax +regex.match +regex.search +regex.set_syntax +regex.symcomp +regex_syntax.RE_ANSI_HEX +regex_syntax.RE_BK_PLUS_QM +regex_syntax.RE_CONTEXT_INDEP_OPS +regex_syntax.RE_NEWLINE_OR +regex_syntax.RE_NO_BK_PARENS +regex_syntax.RE_NO_BK_VBAR +regex_syntax.RE_NO_GNU_EXTENSIONS +regex_syntax.RE_SYNTAX_AWK +regex_syntax.RE_SYNTAX_EGREP +regex_syntax.RE_SYNTAX_EMACS +regex_syntax.RE_SYNTAX_GREP +regex_syntax.RE_TIGHT_VBAR +regsub.cache +regsub.capwords(??) +regsub.clear_cache(??) +regsub.compile(??) +regsub.expand(??) +regsub.gsub(??) +regsub.intsplit(??) +regsub.regex +regsub.split(??) +regsub.splitx(??) +regsub.sub(??) +regsub.test(??) +regsub.warnings +reload(module) -> module +repr(object) -> string +repr.Repr(??) +repr.aRepr +repr.islice(iterable, [start,] stop [, step]) --> islice object +repr.repr +resource.RLIMIT_AS +resource.RLIMIT_CORE +resource.RLIMIT_CPU +resource.RLIMIT_DATA +resource.RLIMIT_FSIZE +resource.RLIMIT_MEMLOCK +resource.RLIMIT_NOFILE +resource.RLIMIT_NPROC +resource.RLIMIT_OFILE +resource.RLIMIT_RSS +resource.RLIMIT_STACK +resource.RLIM_INFINITY +resource.RUSAGE_CHILDREN +resource.RUSAGE_SELF +resource.error(??) +resource.getpagesize +resource.getrlimit +resource.getrusage +resource.setrlimit +resource.struct_rusage +reversed(sequence) -> reverse iterator over values of the sequence +rexec.FileBase(??) +rexec.FileDelegate(??) +rexec.FileWrapper(??) +rexec.RExec(??) +rexec.RHooks(??) +rexec.RModuleImporter(??) +rexec.RModuleLoader(??) +rexec.TEMPLATE +rexec.ihooks +rexec.imp +rexec.os +rexec.sys +rexec.test(??) +rfc822.AddressList(??) +rfc822.AddrlistClass(??) +rfc822.Message(??) +rfc822.dump_address_pair(??) +rfc822.formatdate(??) +rfc822.mktime_tz(??) +rfc822.parseaddr(??) +rfc822.parsedate(??) +rfc822.parsedate_tz(??) +rfc822.quote(??) +rfc822.time +rfc822.unquote(??) +rlcompleter.Completer(??) +rlcompleter.get_class_members(??) +rlcompleter.readline +robotparser.Entry(??) +robotparser.RobotFileParser(??) +robotparser.RuleLine(??) +robotparser.URLopener(??) +robotparser.debug +robotparser.urllib +robotparser.urlparse +round(number[, ndigits]) -> floating point number +sched.bisect +sched.scheduler(??) +select.POLLERR +select.POLLHUP +select.POLLIN +select.POLLMSG +select.POLLNVAL +select.POLLOUT +select.POLLPRI +select.POLLRDBAND +select.POLLRDNORM +select.POLLWRBAND +select.POLLWRNORM +select.error(??) +select.poll +select.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +set(iterable) --> set object +setattr(object, name, value) +sets.BaseSet +sets.ImmutableSet +sets.Set +sets.generators +sets.ifilter(function or None, sequence) --> ifilter object +sets.ifilterfalse(function or None, sequence) --> ifilterfalse object +sgmllib.SGMLParseError(??) +sgmllib.SGMLParser(??) +sgmllib.TestSGMLParser(??) +sgmllib.attrfind +sgmllib.charref +sgmllib.endbracket +sgmllib.entityref +sgmllib.incomplete +sgmllib.interesting +sgmllib.markupbase +sgmllib.piclose +sgmllib.re +sgmllib.shorttag +sgmllib.shorttagopen +sgmllib.starttagopen +sgmllib.tagfind +sgmllib.test(??) +sha.blocksize +sha.digest_size +sha.digestsize +sha.new +sha.sha +shelve.BsdDbShelf(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(file, protocol=0) -- Create a pickler. +shelve.Shelf(??) +shelve.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shelve.Unpickler(file) -- Create an unpickler. +shelve.UserDict +shelve.open(??) +shelve.warnings +shlex.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shlex.deque(iterable) --> deque object +shlex.os +shlex.shlex(??) +shlex.split(??) +shlex.sys +shutil.Error(??) +shutil.abspath(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.destinsrc(??) +shutil.exceptions +shutil.move(??) +shutil.os +shutil.rmtree(??) +shutil.stat +shutil.sys +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCLD +signal.SIGCONT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPOLL +signal.SIGPROF +signal.SIGPWR +signal.SIGQUIT +signal.SIGRTMAX +signal.SIGRTMIN +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_DFL +signal.SIG_IGN +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getsignal(sig) -> action +signal.pause() +signal.signal(sig, action) -> action +site.abs__file__(??) +site.addbuilddir(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.aliasmbcs(??) +site.execsitecustomize(??) +site.main(??) +site.makepath(??) +site.os +site.removeduppaths(??) +site.setBEGINLIBPATH(??) +site.setcopyright(??) +site.setencoding(??) +site.sethelper(??) +site.setquit(??) +site.sys +slice([start,] stop[, step]) +smtpd.COMMASPACE +smtpd.DEBUGSTREAM +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat +smtpd.asyncore +smtpd.errno +smtpd.getopt +smtpd.os +smtpd.parseargs(??) +smtpd.program +smtpd.socket +smtpd.sys +smtpd.time +smtpd.usage(??) +smtplib.CRLF +smtplib.OLDSTYLE_AUTH +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SSLFakeFile(??) +smtplib.SSLFakeSocket(??) +smtplib.base64 +smtplib.encode_base64(??) +smtplib.hmac +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re +smtplib.rfc822 +smtplib.socket +smtplib.stderr +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK +socket.AF_ASH +socket.AF_ATMPVC +socket.AF_ATMSVC +socket.AF_AX25 +socket.AF_BRIDGE +socket.AF_DECnet +socket.AF_ECONET +socket.AF_INET +socket.AF_INET6 +socket.AF_IPX +socket.AF_IRDA +socket.AF_KEY +socket.AF_NETBEUI +socket.AF_NETLINK +socket.AF_NETROM +socket.AF_PACKET +socket.AF_PPPOX +socket.AF_ROSE +socket.AF_ROUTE +socket.AF_SECURITY +socket.AF_SNA +socket.AF_UNIX +socket.AF_UNSPEC +socket.AF_WANPIPE +socket.AF_X25 +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.CAPI +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GRE +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV6 +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PACKET_BROADCAST +socket.PACKET_FASTROUTE +socket.PACKET_HOST +socket.PACKET_LOOPBACK +socket.PACKET_MULTICAST +socket.PACKET_OTHERHOST +socket.PACKET_OUTGOING +socket.PF_PACKET +socket.RAND_add(string, entropy) +socket.RAND_egd(path) -> bytes +socket.RAND_status() -> 0 or 1 +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM +socket.SOCK_RAW +socket.SOCK_RDM +socket.SOCK_SEQPACKET +socket.SOCK_STREAM +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SSLType +socket.SSL_ERROR_EOF +socket.SSL_ERROR_INVALID_ERROR_CODE +socket.SSL_ERROR_SSL +socket.SSL_ERROR_SYSCALL +socket.SSL_ERROR_WANT_CONNECT +socket.SSL_ERROR_WANT_READ +socket.SSL_ERROR_WANT_WRITE +socket.SSL_ERROR_WANT_X509_LOOKUP +socket.SSL_ERROR_ZERO_RETURN +socket.SocketType +socket.TCP_CORK +socket.TCP_DEFER_ACCEPT +socket.TCP_INFO +socket.TCP_KEEPCNT +socket.TCP_KEEPIDLE +socket.TCP_KEEPINTVL +socket.TCP_LINGER2 +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_QUICKACK +socket.TCP_SYNCNT +socket.TCP_WINDOW_CLAMP +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(host, port [, family, socktype, proto, flags]) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6 +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.inet_aton(string) -> packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os +socket.setdefaulttimeout(timeout) +socket.socket([family[, type[, proto]]]) -> socket object +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.ssl(??) +socket.sslerror(??) +socket.sys +socket.timeout(??) +sorted(iterable, cmp=None, key=None, reverse=False) --> new sorted list +sre.DEBUG +sre.DOTALL +sre.I +sre.IGNORECASE +sre.L +sre.LOCALE +sre.M +sre.MULTILINE +sre.S +sre.Scanner(??) +sre.T +sre.TEMPLATE +sre.U +sre.UNICODE +sre.VERBOSE +sre.X +sre.compile(??) +sre.copy_reg +sre.error(??) +sre.escape(??) +sre.findall(??) +sre.finditer(??) +sre.match(??) +sre.purge(??) +sre.search(??) +sre.split(??) +sre.sre_compile +sre.sre_parse +sre.sub(??) +sre.subn(??) +sre.sys +sre.template(??) +sre_compile.ANY +sre_compile.ANY_ALL +sre_compile.ASSERT +sre_compile.ASSERT_NOT +sre_compile.AT +sre_compile.ATCODES +sre_compile.AT_BEGINNING +sre_compile.AT_BEGINNING_LINE +sre_compile.AT_BEGINNING_STRING +sre_compile.AT_BOUNDARY +sre_compile.AT_END +sre_compile.AT_END_LINE +sre_compile.AT_END_STRING +sre_compile.AT_LOCALE +sre_compile.AT_LOC_BOUNDARY +sre_compile.AT_LOC_NON_BOUNDARY +sre_compile.AT_MULTILINE +sre_compile.AT_NON_BOUNDARY +sre_compile.AT_UNICODE +sre_compile.AT_UNI_BOUNDARY +sre_compile.AT_UNI_NON_BOUNDARY +sre_compile.BIGCHARSET +sre_compile.BRANCH +sre_compile.CALL +sre_compile.CATEGORY +sre_compile.CATEGORY_DIGIT +sre_compile.CATEGORY_LINEBREAK +sre_compile.CATEGORY_LOC_NOT_WORD +sre_compile.CATEGORY_LOC_WORD +sre_compile.CATEGORY_NOT_DIGIT +sre_compile.CATEGORY_NOT_LINEBREAK +sre_compile.CATEGORY_NOT_SPACE +sre_compile.CATEGORY_NOT_WORD +sre_compile.CATEGORY_SPACE +sre_compile.CATEGORY_UNI_DIGIT +sre_compile.CATEGORY_UNI_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_DIGIT +sre_compile.CATEGORY_UNI_NOT_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_SPACE +sre_compile.CATEGORY_UNI_NOT_WORD +sre_compile.CATEGORY_UNI_SPACE +sre_compile.CATEGORY_UNI_WORD +sre_compile.CATEGORY_WORD +sre_compile.CHARSET +sre_compile.CHCODES +sre_compile.CH_LOCALE +sre_compile.CH_UNICODE +sre_compile.FAILURE +sre_compile.GROUPREF +sre_compile.GROUPREF_EXISTS +sre_compile.GROUPREF_IGNORE +sre_compile.IN +sre_compile.INFO +sre_compile.IN_IGNORE +sre_compile.JUMP +sre_compile.LITERAL +sre_compile.LITERAL_IGNORE +sre_compile.MAGIC +sre_compile.MARK +sre_compile.MAXCODE +sre_compile.MAXREPEAT +sre_compile.MAX_REPEAT +sre_compile.MAX_UNTIL +sre_compile.MIN_REPEAT +sre_compile.MIN_REPEAT_ONE +sre_compile.MIN_UNTIL +sre_compile.NEGATE +sre_compile.NOT_LITERAL +sre_compile.NOT_LITERAL_IGNORE +sre_compile.OPCODES +sre_compile.OP_IGNORE +sre_compile.RANGE +sre_compile.REPEAT +sre_compile.REPEAT_ONE +sre_compile.SRE_FLAG_DEBUG +sre_compile.SRE_FLAG_DOTALL +sre_compile.SRE_FLAG_IGNORECASE +sre_compile.SRE_FLAG_LOCALE +sre_compile.SRE_FLAG_MULTILINE +sre_compile.SRE_FLAG_TEMPLATE +sre_compile.SRE_FLAG_UNICODE +sre_compile.SRE_FLAG_VERBOSE +sre_compile.SRE_INFO_CHARSET +sre_compile.SRE_INFO_LITERAL +sre_compile.SRE_INFO_PREFIX +sre_compile.STRING_TYPES +sre_compile.SUBPATTERN +sre_compile.SUCCESS +sre_compile.compile(??) +sre_compile.error(??) +sre_compile.isstring(??) +sre_compile.makedict(??) +sre_compile.sys +sre_constants.ANY +sre_constants.ANY_ALL +sre_constants.ASSERT +sre_constants.ASSERT_NOT +sre_constants.AT +sre_constants.ATCODES +sre_constants.AT_BEGINNING +sre_constants.AT_BEGINNING_LINE +sre_constants.AT_BEGINNING_STRING +sre_constants.AT_BOUNDARY +sre_constants.AT_END +sre_constants.AT_END_LINE +sre_constants.AT_END_STRING +sre_constants.AT_LOCALE +sre_constants.AT_LOC_BOUNDARY +sre_constants.AT_LOC_NON_BOUNDARY +sre_constants.AT_MULTILINE +sre_constants.AT_NON_BOUNDARY +sre_constants.AT_UNICODE +sre_constants.AT_UNI_BOUNDARY +sre_constants.AT_UNI_NON_BOUNDARY +sre_constants.BIGCHARSET +sre_constants.BRANCH +sre_constants.CALL +sre_constants.CATEGORY +sre_constants.CATEGORY_DIGIT +sre_constants.CATEGORY_LINEBREAK +sre_constants.CATEGORY_LOC_NOT_WORD +sre_constants.CATEGORY_LOC_WORD +sre_constants.CATEGORY_NOT_DIGIT +sre_constants.CATEGORY_NOT_LINEBREAK +sre_constants.CATEGORY_NOT_SPACE +sre_constants.CATEGORY_NOT_WORD +sre_constants.CATEGORY_SPACE +sre_constants.CATEGORY_UNI_DIGIT +sre_constants.CATEGORY_UNI_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_DIGIT +sre_constants.CATEGORY_UNI_NOT_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_SPACE +sre_constants.CATEGORY_UNI_NOT_WORD +sre_constants.CATEGORY_UNI_SPACE +sre_constants.CATEGORY_UNI_WORD +sre_constants.CATEGORY_WORD +sre_constants.CHARSET +sre_constants.CHCODES +sre_constants.CH_LOCALE +sre_constants.CH_UNICODE +sre_constants.FAILURE +sre_constants.GROUPREF +sre_constants.GROUPREF_EXISTS +sre_constants.GROUPREF_IGNORE +sre_constants.IN +sre_constants.INFO +sre_constants.IN_IGNORE +sre_constants.JUMP +sre_constants.LITERAL +sre_constants.LITERAL_IGNORE +sre_constants.MAGIC +sre_constants.MARK +sre_constants.MAXREPEAT +sre_constants.MAX_REPEAT +sre_constants.MAX_UNTIL +sre_constants.MIN_REPEAT +sre_constants.MIN_REPEAT_ONE +sre_constants.MIN_UNTIL +sre_constants.NEGATE +sre_constants.NOT_LITERAL +sre_constants.NOT_LITERAL_IGNORE +sre_constants.OPCODES +sre_constants.OP_IGNORE +sre_constants.RANGE +sre_constants.REPEAT +sre_constants.REPEAT_ONE +sre_constants.SRE_FLAG_DEBUG +sre_constants.SRE_FLAG_DOTALL +sre_constants.SRE_FLAG_IGNORECASE +sre_constants.SRE_FLAG_LOCALE +sre_constants.SRE_FLAG_MULTILINE +sre_constants.SRE_FLAG_TEMPLATE +sre_constants.SRE_FLAG_UNICODE +sre_constants.SRE_FLAG_VERBOSE +sre_constants.SRE_INFO_CHARSET +sre_constants.SRE_INFO_LITERAL +sre_constants.SRE_INFO_PREFIX +sre_constants.SUBPATTERN +sre_constants.SUCCESS +sre_constants.error(??) +sre_constants.makedict(??) +sre_parse.ANY +sre_parse.ANY_ALL +sre_parse.ASSERT +sre_parse.ASSERT_NOT +sre_parse.AT +sre_parse.ATCODES +sre_parse.AT_BEGINNING +sre_parse.AT_BEGINNING_LINE +sre_parse.AT_BEGINNING_STRING +sre_parse.AT_BOUNDARY +sre_parse.AT_END +sre_parse.AT_END_LINE +sre_parse.AT_END_STRING +sre_parse.AT_LOCALE +sre_parse.AT_LOC_BOUNDARY +sre_parse.AT_LOC_NON_BOUNDARY +sre_parse.AT_MULTILINE +sre_parse.AT_NON_BOUNDARY +sre_parse.AT_UNICODE +sre_parse.AT_UNI_BOUNDARY +sre_parse.AT_UNI_NON_BOUNDARY +sre_parse.BIGCHARSET +sre_parse.BRANCH +sre_parse.CALL +sre_parse.CATEGORIES +sre_parse.CATEGORY +sre_parse.CATEGORY_DIGIT +sre_parse.CATEGORY_LINEBREAK +sre_parse.CATEGORY_LOC_NOT_WORD +sre_parse.CATEGORY_LOC_WORD +sre_parse.CATEGORY_NOT_DIGIT +sre_parse.CATEGORY_NOT_LINEBREAK +sre_parse.CATEGORY_NOT_SPACE +sre_parse.CATEGORY_NOT_WORD +sre_parse.CATEGORY_SPACE +sre_parse.CATEGORY_UNI_DIGIT +sre_parse.CATEGORY_UNI_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_DIGIT +sre_parse.CATEGORY_UNI_NOT_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_SPACE +sre_parse.CATEGORY_UNI_NOT_WORD +sre_parse.CATEGORY_UNI_SPACE +sre_parse.CATEGORY_UNI_WORD +sre_parse.CATEGORY_WORD +sre_parse.CHARSET +sre_parse.CHCODES +sre_parse.CH_LOCALE +sre_parse.CH_UNICODE +sre_parse.DIGITS +sre_parse.ESCAPES +sre_parse.FAILURE +sre_parse.FLAGS +sre_parse.GROUPREF +sre_parse.GROUPREF_EXISTS +sre_parse.GROUPREF_IGNORE +sre_parse.HEXDIGITS +sre_parse.IN +sre_parse.INFO +sre_parse.IN_IGNORE +sre_parse.JUMP +sre_parse.LITERAL +sre_parse.LITERAL_IGNORE +sre_parse.MAGIC +sre_parse.MARK +sre_parse.MAXREPEAT +sre_parse.MAX_REPEAT +sre_parse.MAX_UNTIL +sre_parse.MIN_REPEAT +sre_parse.MIN_REPEAT_ONE +sre_parse.MIN_UNTIL +sre_parse.NEGATE +sre_parse.NOT_LITERAL +sre_parse.NOT_LITERAL_IGNORE +sre_parse.OCTDIGITS +sre_parse.OPCODES +sre_parse.OP_IGNORE +sre_parse.Pattern(??) +sre_parse.RANGE +sre_parse.REPEAT +sre_parse.REPEAT_CHARS +sre_parse.REPEAT_ONE +sre_parse.SPECIAL_CHARS +sre_parse.SRE_FLAG_DEBUG +sre_parse.SRE_FLAG_DOTALL +sre_parse.SRE_FLAG_IGNORECASE +sre_parse.SRE_FLAG_LOCALE +sre_parse.SRE_FLAG_MULTILINE +sre_parse.SRE_FLAG_TEMPLATE +sre_parse.SRE_FLAG_UNICODE +sre_parse.SRE_FLAG_VERBOSE +sre_parse.SRE_INFO_CHARSET +sre_parse.SRE_INFO_LITERAL +sre_parse.SRE_INFO_PREFIX +sre_parse.SUBPATTERN +sre_parse.SUCCESS +sre_parse.SubPattern(??) +sre_parse.Tokenizer(??) +sre_parse.WHITESPACE +sre_parse.error(??) +sre_parse.expand_template(??) +sre_parse.isdigit(??) +sre_parse.isident(??) +sre_parse.isname(??) +sre_parse.makedict(??) +sre_parse.parse(??) +sre_parse.parse_template(??) +sre_parse.sys +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFREG +stat.S_IFSOCK +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(??) +stat.S_ISCHR(??) +stat.S_ISDIR(??) +stat.S_ISFIFO(??) +stat.S_ISGID +stat.S_ISLNK(??) +stat.S_ISREG(??) +stat.S_ISSOCK(??) +stat.S_ISUID +stat.S_ISVTX +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +statcache.ST_ATIME +statcache.ST_CTIME +statcache.ST_DEV +statcache.ST_GID +statcache.ST_INO +statcache.ST_MODE +statcache.ST_MTIME +statcache.ST_NLINK +statcache.ST_SIZE +statcache.ST_UID +statcache.S_ENFMT +statcache.S_IEXEC +statcache.S_IFBLK +statcache.S_IFCHR +statcache.S_IFDIR +statcache.S_IFIFO +statcache.S_IFLNK +statcache.S_IFMT(??) +statcache.S_IFREG +statcache.S_IFSOCK +statcache.S_IMODE(??) +statcache.S_IREAD +statcache.S_IRGRP +statcache.S_IROTH +statcache.S_IRUSR +statcache.S_IRWXG +statcache.S_IRWXO +statcache.S_IRWXU +statcache.S_ISBLK(??) +statcache.S_ISCHR(??) +statcache.S_ISDIR(??) +statcache.S_ISFIFO(??) +statcache.S_ISGID +statcache.S_ISLNK(??) +statcache.S_ISREG(??) +statcache.S_ISSOCK(??) +statcache.S_ISUID +statcache.S_ISVTX +statcache.S_IWGRP +statcache.S_IWOTH +statcache.S_IWRITE +statcache.S_IWUSR +statcache.S_IXGRP +statcache.S_IXOTH +statcache.S_IXUSR +statcache.cache +statcache.forget(??) +statcache.forget_dir(??) +statcache.forget_except_prefix(??) +statcache.forget_prefix(??) +statcache.isdir(??) +statcache.reset(??) +statcache.stat(??) +staticmethod(function) -> method +statvfs.F_BAVAIL +statvfs.F_BFREE +statvfs.F_BLOCKS +statvfs.F_BSIZE +statvfs.F_FAVAIL +statvfs.F_FFREE +statvfs.F_FILES +statvfs.F_FLAG +statvfs.F_FRSIZE +statvfs.F_NAMEMAX +str(object) -> string +string.Template +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.atof(s) -> float +string.atof_error(??) +string.atoi(s [,base]) -> int +string.atoi_error(??) +string.atol(s [,base]) -> long +string.atol_error(??) +string.capitalize(s) -> string +string.capwords(s, [sep]) -> string +string.center(s, width[, fillchar]) -> string +string.count(s, sub[, start[,end]]) -> int +string.digits +string.expandtabs(s [,tabsize]) -> string +string.find(s, sub [,start [,end]]) -> in +string.hexdigits +string.index(s, sub [,start [,end]]) -> int +string.index_error(??) +string.join(list [,sep]) -> string +string.joinfields(??) +string.letters +string.ljust(s, width[, fillchar]) -> string +string.lower(s) -> string +string.lowercase +string.lstrip(s [,chars]) -> string +string.maketrans(frm, to) -> string +string.octdigits +string.printable +string.punctuation +string.replace (str, old, new[, maxsplit]) -> string +string.rfind(s, sub [,start [,end]]) -> int +string.rindex(s, sub [,start [,end]]) -> int +string.rjust(s, width[, fillchar]) -> string +string.rsplit(s [,sep [,maxsplit]]) -> list of strings +string.rstrip(s [,chars]) -> string +string.split(s [,sep [,maxsplit]]) -> list of strings +string.splitfields(??) +string.strip(s [,chars]) -> string +string.swapcase(s) -> string +string.translate(s,table [,deletions]) -> string +string.upper(s) -> string +string.uppercase +string.whitespace +string.zfill(x, width) -> string +stringold.atof(s) -> float +stringold.atof_error(??) +stringold.atoi(s [,base]) -> int +stringold.atoi_error(??) +stringold.atol(s [,base]) -> long +stringold.atol_error(??) +stringold.capitalize(s) -> string +stringold.capwords(s, [sep]) -> string +stringold.center(s, width) -> string +stringold.count(s, sub[, start[,end]]) -> int +stringold.digits +stringold.expandtabs(s [,tabsize]) -> string +stringold.find(s, sub [,start [,end]]) -> in +stringold.hexdigits +stringold.index(s, sub [,start [,end]]) -> int +stringold.index_error(??) +stringold.join(list [,sep]) -> string +stringold.joinfields(??) +stringold.letters +stringold.ljust(s, width) -> string +stringold.lower(s) -> string +stringold.lowercase +stringold.lstrip(s) -> string +stringold.maketrans(frm, to) -> string +stringold.octdigits +stringold.replace (str, old, new[, maxsplit]) -> string +stringold.rfind(s, sub [,start [,end]]) -> int +stringold.rindex(s, sub [,start [,end]]) -> int +stringold.rjust(s, width) -> string +stringold.rstrip(s) -> string +stringold.split(str [,sep [,maxsplit]]) -> list of strings +stringold.splitfields(??) +stringold.strip(s) -> string +stringold.swapcase(s) -> string +stringold.translate(s,table [,deletechars]) -> string +stringold.upper(s) -> string +stringold.uppercase +stringold.whitespace +stringold.zfill(x, width) -> string +stringprep.b1_set +stringprep.b3_exceptions +stringprep.c22_specials +stringprep.c6_set +stringprep.c7_set +stringprep.c8_set +stringprep.c9_set +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata +strop.atof(s) -> float +strop.atoi(s [,base]) -> int +strop.atol(s [,base]) -> long +strop.capitalize(s) -> string +strop.count(s, sub[, start[, end]]) -> int +strop.expandtabs(string, [tabsize]) -> string +strop.find(s, sub [,start [,end]]) -> in +strop.join(list [,sep]) -> string +strop.joinfields +strop.lower(s) -> string +strop.lowercase +strop.lstrip(s) -> string +strop.maketrans(frm, to) -> string +strop.replace (str, old, new[, maxsplit]) -> string +strop.rfind(s, sub [,start [,end]]) -> int +strop.rstrip(s) -> string +strop.split(s [,sep [,maxsplit]]) -> list of strings +strop.splitfields +strop.strip(s) -> string +strop.swapcase(s) -> string +strop.translate(s,table [,deletechars]) -> string +strop.upper(s) -> string +strop.uppercase +strop.whitespace +struct.calcsize(fmt) -> int +struct.error(??) +struct.pack(fmt, v1, v2, ...) -> string +struct.unpack(fmt, string) -> (v1, v2, ...) +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen +subprocess.STDOUT +subprocess.call(??) +subprocess.errno +subprocess.fcntl +subprocess.list2cmdline(??) +subprocess.mswindows +subprocess.os +subprocess.pickle +subprocess.select +subprocess.sys +subprocess.traceback +subprocess.types +sum(sequence, start=0) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.open(??) +sunau.openfp(??) +sunaudio.MAGIC +sunaudio.error(??) +sunaudio.get_long_be(??) +sunaudio.gethdr(??) +sunaudio.printhdr(??) +super(type) -> unbound super object +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.exec_stmt +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.fpdef +symbol.fplist +symbol.funcdef +symbol.gen_for +symbol.gen_if +symbol.gen_iter +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.list_for +symbol.list_if +symbol.list_iter +symbol.listmaker +symbol.main(??) +symbol.not_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.print_stmt +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name +symbol.term +symbol.test +symbol.testlist +symbol.testlist1 +symbol.testlist_gexp +symbol.testlist_safe +symbol.trailer +symbol.try_stmt +symbol.varargslist +symbol.while_stmt +symbol.xor_expr +symbol.yield_stmt +symtable.Class(??) +symtable.DEF_BOUND +symtable.DEF_DOUBLESTAR +symtable.DEF_FREE +symtable.DEF_FREE_CLASS +symtable.DEF_FREE_GLOBAL +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_INTUPLE +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.DEF_STAR +symtable.Function(??) +symtable.OPT_BARE_EXEC +symtable.OPT_EXEC +symtable.OPT_IMPORT_STAR +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.is_free(??) +symtable.newSymbolTable +symtable.symtable(??) +symtable.weakref +sys.api_version +sys.argv +sys.builtin_module_names +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.exc_clear() -> None +sys.exc_info() -> (type, value, traceback) +sys.exc_type +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.hexversion +sys.maxint +sys.maxunicode +sys.meta_path +sys.modules +sys.path +sys.path_hooks +sys.path_importer_cache +sys.platform +sys.prefix +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.settrace(function) +sys.stderr +sys.stdin +sys.stdout +sys.version +sys.version_info +sys.warnoptions +syslog.LOG_ALERT +syslog.LOG_AUTH +syslog.LOG_CONS +syslog.LOG_CRIT +syslog.LOG_CRON +syslog.LOG_DAEMON +syslog.LOG_DEBUG +syslog.LOG_EMERG +syslog.LOG_ERR +syslog.LOG_INFO +syslog.LOG_KERN +syslog.LOG_LOCAL0 +syslog.LOG_LOCAL1 +syslog.LOG_LOCAL2 +syslog.LOG_LOCAL3 +syslog.LOG_LOCAL4 +syslog.LOG_LOCAL5 +syslog.LOG_LOCAL6 +syslog.LOG_LOCAL7 +syslog.LOG_LPR +syslog.LOG_MAIL +syslog.LOG_MASK +syslog.LOG_NDELAY +syslog.LOG_NEWS +syslog.LOG_NOTICE +syslog.LOG_NOWAIT +syslog.LOG_PERROR +syslog.LOG_PID +syslog.LOG_SYSLOG +syslog.LOG_UPTO +syslog.LOG_USER +syslog.LOG_UUCP +syslog.LOG_WARNING +syslog.closelog +syslog.openlog +syslog.setlogmask +syslog.syslog +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt +tabnanny.main(??) +tabnanny.os +tabnanny.process_tokens(??) +tabnanny.sys +tabnanny.tokenize +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DIRTYPE +tarfile.ExFileObject +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.MAGIC +tarfile.MAXSIZE_MEMBER +tarfile.NUL +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES +tarfile.ReadError(??) +tarfile.SUPPORTED_TYPES +tarfile.SYMTYPE +tarfile.S_IFBLK +tarfile.S_IFCHR +tarfile.S_IFDIR +tarfile.S_IFIFO +tarfile.S_IFLNK +tarfile.S_IFREG +tarfile.StreamError(??) +tarfile.TAR_GZIPPED +tarfile.TAR_PLAIN +tarfile.TGEXEC +tarfile.TGREAD +tarfile.TGWRITE +tarfile.TOEXEC +tarfile.TOREAD +tarfile.TOWRITE +tarfile.TSGID +tarfile.TSUID +tarfile.TSVTX +tarfile.TUEXEC +tarfile.TUREAD +tarfile.TUWRITE +tarfile.TarError(??) +tarfile.TarFile +tarfile.TarFileCompat(??) +tarfile.TarInfo +tarfile.TarIter(??) +tarfile.VERSION +tarfile.calc_chksum(??) +tarfile.copyfileobj(??) +tarfile.errno +tarfile.filemode(??) +tarfile.filemode_table +tarfile.grp +tarfile.is_tarfile(??) +tarfile.normpath(??) +tarfile.nts(??) +tarfile.open +tarfile.os +tarfile.pwd +tarfile.shutil +tarfile.stat +tarfile.struct +tarfile.sys +tarfile.time +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.select +telnetlib.socket +telnetlib.sys +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp([suffix, [prefix, [dir]]]) +tempfile.mkstemp([suffix, [prefix, [dir, [text]]]]) +tempfile.mktemp([suffix, [prefix, [dir]]]) +tempfile.tempdir +tempfile.template +termios.B0 +termios.B110 +termios.B115200 +termios.B1200 +termios.B134 +termios.B150 +termios.B1800 +termios.B19200 +termios.B200 +termios.B230400 +termios.B2400 +termios.B300 +termios.B38400 +termios.B460800 +termios.B4800 +termios.B50 +termios.B57600 +termios.B600 +termios.B75 +termios.B9600 +termios.BRKINT +termios.BS0 +termios.BS1 +termios.BSDLY +termios.CBAUD +termios.CBAUDEX +termios.CDSUSP +termios.CEOF +termios.CEOL +termios.CEOT +termios.CERASE +termios.CFLUSH +termios.CIBAUD +termios.CINTR +termios.CKILL +termios.CLNEXT +termios.CLOCAL +termios.CQUIT +termios.CR0 +termios.CR1 +termios.CR2 +termios.CR3 +termios.CRDLY +termios.CREAD +termios.CRPRNT +termios.CRTSCTS +termios.CS5 +termios.CS6 +termios.CS7 +termios.CS8 +termios.CSIZE +termios.CSTART +termios.CSTOP +termios.CSTOPB +termios.CSUSP +termios.CWERASE +termios.ECHO +termios.ECHOCTL +termios.ECHOE +termios.ECHOK +termios.ECHOKE +termios.ECHONL +termios.ECHOPRT +termios.EXTA +termios.EXTB +termios.FF0 +termios.FF1 +termios.FFDLY +termios.FIOASYNC +termios.FIOCLEX +termios.FIONBIO +termios.FIONCLEX +termios.FIONREAD +termios.FLUSHO +termios.HUPCL +termios.ICANON +termios.ICRNL +termios.IEXTEN +termios.IGNBRK +termios.IGNCR +termios.IGNPAR +termios.IMAXBEL +termios.INLCR +termios.INPCK +termios.IOCSIZE_MASK +termios.IOCSIZE_SHIFT +termios.ISIG +termios.ISTRIP +termios.IUCLC +termios.IXANY +termios.IXOFF +termios.IXON +termios.NCC +termios.NCCS +termios.NL0 +termios.NL1 +termios.NLDLY +termios.NOFLSH +termios.N_MOUSE +termios.N_PPP +termios.N_SLIP +termios.N_STRIP +termios.N_TTY +termios.OCRNL +termios.OFDEL +termios.OFILL +termios.OLCUC +termios.ONLCR +termios.ONLRET +termios.ONOCR +termios.OPOST +termios.PARENB +termios.PARMRK +termios.PARODD +termios.PENDIN +termios.TAB0 +termios.TAB1 +termios.TAB2 +termios.TAB3 +termios.TABDLY +termios.TCFLSH +termios.TCGETA +termios.TCGETS +termios.TCIFLUSH +termios.TCIOFF +termios.TCIOFLUSH +termios.TCION +termios.TCOFLUSH +termios.TCOOFF +termios.TCOON +termios.TCSADRAIN +termios.TCSAFLUSH +termios.TCSANOW +termios.TCSBRK +termios.TCSBRKP +termios.TCSETA +termios.TCSETAF +termios.TCSETAW +termios.TCSETS +termios.TCSETSF +termios.TCSETSW +termios.TCXONC +termios.TIOCCONS +termios.TIOCEXCL +termios.TIOCGETD +termios.TIOCGICOUNT +termios.TIOCGLCKTRMIOS +termios.TIOCGPGRP +termios.TIOCGSERIAL +termios.TIOCGSOFTCAR +termios.TIOCGWINSZ +termios.TIOCINQ +termios.TIOCLINUX +termios.TIOCMBIC +termios.TIOCMBIS +termios.TIOCMGET +termios.TIOCMIWAIT +termios.TIOCMSET +termios.TIOCM_CAR +termios.TIOCM_CD +termios.TIOCM_CTS +termios.TIOCM_DSR +termios.TIOCM_DTR +termios.TIOCM_LE +termios.TIOCM_RI +termios.TIOCM_RNG +termios.TIOCM_RTS +termios.TIOCM_SR +termios.TIOCM_ST +termios.TIOCNOTTY +termios.TIOCNXCL +termios.TIOCOUTQ +termios.TIOCPKT +termios.TIOCPKT_DATA +termios.TIOCPKT_DOSTOP +termios.TIOCPKT_FLUSHREAD +termios.TIOCPKT_FLUSHWRITE +termios.TIOCPKT_NOSTOP +termios.TIOCPKT_START +termios.TIOCPKT_STOP +termios.TIOCSCTTY +termios.TIOCSERCONFIG +termios.TIOCSERGETLSR +termios.TIOCSERGETMULTI +termios.TIOCSERGSTRUCT +termios.TIOCSERGWILD +termios.TIOCSERSETMULTI +termios.TIOCSERSWILD +termios.TIOCSER_TEMT +termios.TIOCSETD +termios.TIOCSLCKTRMIOS +termios.TIOCSPGRP +termios.TIOCSSERIAL +termios.TIOCSSOFTCAR +termios.TIOCSTI +termios.TIOCSWINSZ +termios.TOSTOP +termios.VDISCARD +termios.VEOF +termios.VEOL +termios.VEOL2 +termios.VERASE +termios.VINTR +termios.VKILL +termios.VLNEXT +termios.VMIN +termios.VQUIT +termios.VREPRINT +termios.VSTART +termios.VSTOP +termios.VSUSP +termios.VSWTC +termios.VSWTCH +termios.VT0 +termios.VT1 +termios.VTDLY +termios.VTIME +termios.VWERASE +termios.XCASE +termios.XTABS +termios.error(??) +termios.tcdrain(fd) -> None +termios.tcflow(fd, action) -> None +termios.tcflush(fd, queue) -> None +termios.tcgetattr(fd) -> list_of_attrs +termios.tcsendbreak(fd, duration) -> None +termios.tcsetattr(fd, when, attributes) -> None +textwrap.TextWrapper(??) +textwrap.dedent(text : string) -> string +textwrap.fill(??) +textwrap.re +textwrap.string +textwrap.wrap(??) +this.c +this.d +this.i +this.s +thread.LockType +thread.allocate +thread.allocate_lock() -> lock object +thread.error(??) +thread.exit() +thread.exit_thread +thread.get_ident() -> integer +thread.interrupt_main() +thread.start_new +thread.start_new_thread(function, args[, kwargs]) +threading.BoundedSemaphore(??) +threading.Condition(??) +threading.Event(??) +threading.Lock +threading.RLock(??) +threading.Semaphore(??) +threading.Thread +threading.ThreadError(??) +threading.Timer(??) +threading.activeCount(??) +threading.currentThread(??) +threading.deque(iterable) --> deque object +threading.enumerate(??) +threading.local +threading.setprofile(??) +threading.settrace(??) +time.accept2dyear +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_day, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_day,tm_hour,tm_min,tm_sec,tm_wday,tm_yday,tm_isdst) +time.mktime(tuple) -> floating point number +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time +time.time() -> floating point number +time.timezone +time.tzname +time.tzset(zone) +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer +timeit.dummy_src_name +timeit.gc +timeit.itertools +timeit.main(??) +timeit.reindent(??) +timeit.sys +timeit.template +timeit.time +timing.finish +timing.micro +timing.milli +timing.seconds +timing.start +toaiff.error(??) +toaiff.os +toaiff.pipes +toaiff.sndhdr +toaiff.t +toaiff.table +toaiff.tempfile +toaiff.toaiff(??) +toaiff.uncompress +token.AMPER +token.AMPEREQUAL +token.AT +token.BACKQUOTE +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.main(??) +token.tok_name +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BACKQUOTE +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.TILDE +tokenize.Token +tokenize.TokenError(??) +tokenize.Triple +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.double3prog +tokenize.endprogs +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.printtoken(??) +tokenize.pseudoprog +tokenize.re +tokenize.single3prog +tokenize.single_quoted +tokenize.string +tokenize.t +tokenize.tabsize +tokenize.tok_name +tokenize.tokenize(??) +tokenize.tokenize_loop(??) +tokenize.tokenprog +tokenize.triple_quoted +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.cPickle +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc +trace.linecache +trace.main(??) +trace.modname(??) +trace.os +trace.pickle +trace.re +trace.rx_blank +trace.sys +trace.threading +trace.token +trace.tokenize +trace.types +trace.usage(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys +traceback.tb_lineno(??) +traceback.types +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B460800 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CBAUD +tty.CBAUDEX +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CIBAUD +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.IOCSIZE_MASK +tty.IOCSIZE_SHIFT +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IUCLC +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCC +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.N_MOUSE +tty.N_PPP +tty.N_SLIP +tty.N_STRIP +tty.N_TTY +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.OLCUC +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCFLSH +tty.TCGETA +tty.TCGETS +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSBRK +tty.TCSBRKP +tty.TCSETA +tty.TCSETAF +tty.TCSETAW +tty.TCSETS +tty.TCSETSF +tty.TCSETSW +tty.TCXONC +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGICOUNT +tty.TIOCGLCKTRMIOS +tty.TIOCGPGRP +tty.TIOCGSERIAL +tty.TIOCGSOFTCAR +tty.TIOCGWINSZ +tty.TIOCINQ +tty.TIOCLINUX +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMIWAIT +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSERCONFIG +tty.TIOCSERGETLSR +tty.TIOCSERGETMULTI +tty.TIOCSERGSTRUCT +tty.TIOCSERGWILD +tty.TIOCSERSETMULTI +tty.TIOCSERSWILD +tty.TIOCSER_TEMT +tty.TIOCSETD +tty.TIOCSLCKTRMIOS +tty.TIOCSPGRP +tty.TIOCSSERIAL +tty.TIOCSSOFTCAR +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VSWTC +tty.VSWTCH +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.XCASE +tty.XTABS +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> an empty tuple +type(object) -> the object's type +types.BooleanType +types.BufferType +types.BuiltinFunctionType +types.BuiltinMethodType +types.ClassType +types.CodeType +types.ComplexType +types.DictProxyType +types.DictType +types.DictionaryType +types.EllipsisType +types.FileType +types.FloatType +types.FrameType +types.FunctionType +types.GeneratorType +types.InstanceType +types.IntType +types.LambdaType +types.ListType +types.LongType +types.MethodType +types.ModuleType +types.NoneType +types.NotImplementedType +types.ObjectType +types.SliceType +types.StringType +types.StringTypes +types.TracebackType +types.TupleType +types.TypeType +types.UnboundMethodType +types.UnicodeType +types.XRangeType +unichr(i) -> Unicode character +unicode(string [, encoding[, errors]]) -> object +unicodedata.bidirectional +unicodedata.category +unicodedata.combining +unicodedata.decimal +unicodedata.decomposition +unicodedata.digit +unicodedata.east_asian_width +unicodedata.lookup +unicodedata.mirrored +unicodedata.name +unicodedata.normalize +unicodedata.numeric +unicodedata.ucnhash_CAPI +unicodedata.unidata_version +unittest.FunctionTestCase +unittest.TestCase +unittest.TestLoader +unittest.TestProgram +unittest.TestResult +unittest.TestSuite +unittest.TextTestRunner +unittest.defaultTestLoader +unittest.findTestCases(??) +unittest.getTestCaseNames(??) +unittest.main +unittest.makeSuite(??) +unittest.os +unittest.sys +unittest.time +unittest.traceback +unittest.types +urllib.ContentTooShortError(??) +urllib.FancyURLopener(??) +urllib.MAXFTPCACHE +urllib.URLopener(??) +urllib.addbase(??) +urllib.addclosehook(??) +urllib.addinfo(??) +urllib.addinfourl(??) +urllib.always_safe +urllib.basejoin(??) +urllib.ftpcache +urllib.ftperrors(??) +urllib.ftpwrapper(??) +urllib.getproxies(??) +urllib.getproxies_environment(??) +urllib.localhost(??) +urllib.main(??) +urllib.noheaders(??) +urllib.os +urllib.pathname2url(??) +urllib.proxy_bypass(??) +urllib.quote('abc def') -> 'abc%20def' +urllib.quote_plus(??) +urllib.reporthook(??) +urllib.socket +urllib.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.splitgophertype('/Xselector') --> 'X', 'selector'. +urllib.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.splitnport(??) +urllib.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.splitport('host:port') --> 'host', 'port'. +urllib.splitquery('/path?query') --> '/path', 'query'. +urllib.splittag('/path#tag') --> '/path', 'tag'. +urllib.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.splitvalue('attr=value') --> 'attr', 'value'. +urllib.string +urllib.sys +urllib.test(??) +urllib.test1(??) +urllib.thishost(??) +urllib.time +urllib.toBytes(u"URL") --> 'URL'. +urllib.unquote('abc%20def') -> 'abc def'. +urllib.unquote_plus(??) +urllib.unwrap('') --> 'type://host/path'. +urllib.url2pathname(??) +urllib.urlcleanup(??) +urllib.urlencode(??) +urllib.urlopen(url [, data]) -> open file-like object +urllib.urlretrieve(??) +urllib2.AbstractBasicAuthHandler(??) +urllib2.AbstractDigestAuthHandler(??) +urllib2.AbstractHTTPHandler(??) +urllib2.BaseHandler(??) +urllib2.CacheFTPHandler(??) +urllib2.CustomProxy(??) +urllib2.CustomProxyHandler(??) +urllib2.FTPHandler(??) +urllib2.FileHandler(??) +urllib2.GopherError(??) +urllib2.GopherHandler(??) +urllib2.HTTPBasicAuthHandler(??) +urllib2.HTTPCookieProcessor(??) +urllib2.HTTPDefaultErrorHandler(??) +urllib2.HTTPDigestAuthHandler(??) +urllib2.HTTPError(??) +urllib2.HTTPErrorProcessor(??) +urllib2.HTTPHandler(??) +urllib2.HTTPPasswordMgr(??) +urllib2.HTTPPasswordMgrWithDefaultRealm(??) +urllib2.HTTPRedirectHandler(??) +urllib2.HTTPSHandler(??) +urllib2.OpenerDirector(??) +urllib2.OpenerFactory(??) +urllib2.ProxyBasicAuthHandler(??) +urllib2.ProxyDigestAuthHandler(??) +urllib2.ProxyHandler(??) +urllib2.Request(??) +urllib2.StringIO([s]) -- Return a StringIO-like stream for reading or writing +urllib2.URLError(??) +urllib2.UnknownHandler(??) +urllib2.addinfourl(??) +urllib2.base64 +urllib2.bisect +urllib2.build_opener(??) +urllib2.cookielib +urllib2.ftplib +urllib2.ftpwrapper(??) +urllib2.getproxies(??) +urllib2.gopherlib +urllib2.httplib +urllib2.inspect +urllib2.install_opener(??) +urllib2.localhost(??) +urllib2.md5 +urllib2.mimetools +urllib2.mimetypes +urllib2.noheaders(??) +urllib2.os +urllib2.parse_http_list(??) +urllib2.parse_keqv_list(??) +urllib2.posixpath +urllib2.random +urllib2.randombytes(??) +urllib2.re +urllib2.sha +urllib2.socket +urllib2.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib2.splitgophertype('/Xselector') --> 'X', 'selector'. +urllib2.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib2.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib2.splitport('host:port') --> 'host', 'port'. +urllib2.splitquery('/path?query') --> '/path', 'query'. +urllib2.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib2.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib2.splitvalue('attr=value') --> 'attr', 'value'. +urllib2.sys +urllib2.time +urllib2.unquote('abc%20def') -> 'abc def'. +urllib2.unwrap('') --> 'type://host/path'. +urllib2.url2pathname(??) +urllib2.urlopen(??) +urllib2.urlparse +urlparse.MAX_CACHE_SIZE +urlparse.clear_cache(??) +urlparse.non_hierarchical +urlparse.scheme_chars +urlparse.test(??) +urlparse.test_input +urlparse.urldefrag(??) +urlparse.urljoin(??) +urlparse.urlparse(??) +urlparse.urlsplit(??) +urlparse.urlunparse(??) +urlparse.urlunsplit(??) +urlparse.uses_fragment +urlparse.uses_netloc +urlparse.uses_params +urlparse.uses_query +urlparse.uses_relative +user.home +user.os +user.pythonrc +uu.Error(??) +uu.StringType +uu.binascii +uu.decode(??) +uu.encode(??) +uu.os +uu.sys +uu.test(??) +vars([object]) -> dictionary +warnings.defaultaction +warnings.filters +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.linecache +warnings.onceregistry +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys +warnings.types +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.big_endian +wave.open(??) +wave.openfp(??) +wave.struct +weakref.CallableProxyType +weakref.KeyedRef +weakref.ProxyType +weakref.ProxyTypes +weakref.ReferenceError(??) +weakref.ReferenceType +weakref.UserDict +weakref.WeakKeyDictionary(??) +weakref.WeakValueDictionary(??) +weakref.getweakrefcount(object) -- return the number of weak references +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.InternetConfig(??) +webbrowser.Konqueror(??) +webbrowser.Netscape(??) +webbrowser.PROCESS_CREATION_DELAY +webbrowser.WindowsDefault(??) +webbrowser.browser +webbrowser.get(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.os +webbrowser.register(??) +webbrowser.sys +whichdb.dbm +whichdb.os +whichdb.struct +whichdb.sys +whichdb.whichdb(??) +whrandom.choice +whrandom.randint +whrandom.random +whrandom.randrange +whrandom.seed +whrandom.uniform +whrandom.warnings +whrandom.whrandom(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct +xml.dom +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE +xml.dom.EMPTY_PREFIX +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg +xml.dom.domreg.EmptyNodeList +xml.dom.domreg.GetattrMagic(??) +xml.dom.domreg.NewStyle +xml.dom.domreg.NodeList +xml.dom.domreg.StringTypes +xml.dom.domreg.defproperty(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered +xml.dom.domreg.well_known_implementations +xml.dom.expatbuilder +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE +xml.dom.expatbuilder.EMPTY_PREFIX +xml.dom.expatbuilder.ElementInfo +xml.dom.expatbuilder.EmptyNodeList +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch +xml.dom.expatbuilder.FilterVisibilityController +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.GetattrMagic(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.NewStyle +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.NodeList +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter +xml.dom.expatbuilder.Skipper +xml.dom.expatbuilder.StringTypes +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.defproperty(??) +xml.dom.expatbuilder.expat +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation +xml.dom.expatbuilder.xmlbuilder +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat +xml.dom.minicompat.EmptyNodeList +xml.dom.minicompat.GetattrMagic(??) +xml.dom.minicompat.NewStyle +xml.dom.minicompat.NodeList +xml.dom.minicompat.StringTypes +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml +xml.dom.minidom +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE +xml.dom.minidom.EMPTY_PREFIX +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo +xml.dom.minidom.EmptyNodeList +xml.dom.minidom.Entity(??) +xml.dom.minidom.GetattrMagic(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap +xml.dom.minidom.NewStyle +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap +xml.dom.minidom.StringTypes +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml +xml.dom.pulldom +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.types +xml.dom.pulldom.xml +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.EmptyNodeList +xml.dom.xmlbuilder.GetattrMagic(??) +xml.dom.xmlbuilder.NewStyle +xml.dom.xmlbuilder.NodeList +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.StringTypes +xml.dom.xmlbuilder.copy +xml.dom.xmlbuilder.defproperty(??) +xml.dom.xmlbuilder.xml +xml.parsers +xml.parsers.expat +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors +xml.parsers.expat.features +xml.parsers.expat.model +xml.parsers.expat.native_encoding +xml.parsers.expat.version_info +xml.sax +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list +xml.sax.expatreader +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader +xml.sax.handler +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features +xml.sax.handler.all_properties +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler +xml.sax.saxutils.os +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.types +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib +xml.sax.saxutils.urlparse +xml.sax.saxutils.xmlreader +xml.sax.xmlreader +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler +xmllib.Error(??) +xmllib.TestXMLParser(??) +xmllib.XMLParser(??) +xmllib.amp +xmllib.attrfind +xmllib.attrtrans +xmllib.cdataclose +xmllib.cdataopen +xmllib.charref +xmllib.commentclose +xmllib.commentopen +xmllib.doctype +xmllib.doubledash +xmllib.endbracket +xmllib.endbracketfind +xmllib.endtagopen +xmllib.entityref +xmllib.illegal +xmllib.interesting +xmllib.ncname +xmllib.newline +xmllib.procclose +xmllib.procopen +xmllib.qname +xmllib.re +xmllib.ref +xmllib.space +xmllib.starttagend +xmllib.starttagmatch +xmllib.starttagopen +xmllib.string +xmllib.tagfind +xmllib.test(??) +xmllib.version +xmllib.xmldecl +xmllib.xmlns +xmlrpclib.APPLICATION_ERROR +xmlrpclib.Binary(??) +xmlrpclib.Boolean +xmlrpclib.BooleanType +xmlrpclib.BufferType +xmlrpclib.BuiltinFunctionType +xmlrpclib.BuiltinMethodType +xmlrpclib.ClassType +xmlrpclib.CodeType +xmlrpclib.ComplexType +xmlrpclib.DateTime(??) +xmlrpclib.DictProxyType +xmlrpclib.DictType +xmlrpclib.DictionaryType +xmlrpclib.EllipsisType +xmlrpclib.Error(??) +xmlrpclib.ExpatParser(??) +xmlrpclib.False +xmlrpclib.FastMarshaller +xmlrpclib.FastParser +xmlrpclib.FastUnmarshaller +xmlrpclib.Fault(??) +xmlrpclib.FileType +xmlrpclib.FloatType +xmlrpclib.FrameType +xmlrpclib.FunctionType +xmlrpclib.GeneratorType +xmlrpclib.INTERNAL_ERROR +xmlrpclib.INVALID_ENCODING_CHAR +xmlrpclib.INVALID_METHOD_PARAMS +xmlrpclib.INVALID_XMLRPC +xmlrpclib.InstanceType +xmlrpclib.IntType +xmlrpclib.LambdaType +xmlrpclib.ListType +xmlrpclib.LongType +xmlrpclib.MAXINT +xmlrpclib.METHOD_NOT_FOUND +xmlrpclib.MININT +xmlrpclib.Marshaller(??) +xmlrpclib.MethodType +xmlrpclib.ModuleType +xmlrpclib.MultiCall(??) +xmlrpclib.MultiCallIterator(??) +xmlrpclib.NOT_WELLFORMED_ERROR +xmlrpclib.NoneType +xmlrpclib.NotImplementedType +xmlrpclib.ObjectType +xmlrpclib.PARSE_ERROR +xmlrpclib.ProtocolError(??) +xmlrpclib.ResponseError(??) +xmlrpclib.SERVER_ERROR +xmlrpclib.SYSTEM_ERROR +xmlrpclib.SafeTransport(??) +xmlrpclib.Server(??) +xmlrpclib.ServerProxy(??) +xmlrpclib.SgmlopParser +xmlrpclib.SliceType +xmlrpclib.SlowParser(??) +xmlrpclib.StringIO +xmlrpclib.StringType +xmlrpclib.StringTypes +xmlrpclib.TRANSPORT_ERROR +xmlrpclib.TracebackType +xmlrpclib.Transport(??) +xmlrpclib.True +xmlrpclib.TupleType +xmlrpclib.TypeType +xmlrpclib.UNSUPPORTED_ENCODING +xmlrpclib.UnboundMethodType +xmlrpclib.UnicodeType +xmlrpclib.Unmarshaller(??) +xmlrpclib.WRAPPERS +xmlrpclib.XRangeType +xmlrpclib.base64 +xmlrpclib.boolean +xmlrpclib.dumps(??) +xmlrpclib.escape(??) +xmlrpclib.expat +xmlrpclib.getparser() -> parser, unmarshaller +xmlrpclib.loads(??) +xmlrpclib.operator +xmlrpclib.re +xmlrpclib.string +xmlrpclib.time +xrange([start,] stop[, step]) -> xrange object +xxsubtype.bench +xxsubtype.spamdict +xxsubtype.spamlist +zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)] +zipfile.BadZipfile(??) +zipfile.PyZipFile(??) +zipfile.ZIP_DEFLATED +zipfile.ZIP_STORED +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii +zipfile.error(??) +zipfile.is_zipfile(??) +zipfile.os +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringFileHeader +zipfile.struct +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structFileHeader +zipfile.time +zipfile.zlib +zipimport.ZipImportError(??) +zipimport.zipimporter(archivepath) -> zipimporter object +zlib.DEFLATED +zlib.DEF_MEM_LEVEL +zlib.MAX_WBITS +zlib.ZLIB_VERSION +zlib.Z_BEST_COMPRESSION +zlib.Z_BEST_SPEED +zlib.Z_DEFAULT_COMPRESSION +zlib.Z_DEFAULT_STRATEGY +zlib.Z_FILTERED +zlib.Z_FINISH +zlib.Z_FULL_FLUSH +zlib.Z_HUFFMAN_ONLY +zlib.Z_NO_FLUSH +zlib.Z_SYNC_FLUSH +zlib.adler32(string[, start]) -- Compute an Adler-32 checksum of string. +zlib.compress(string[, level]) -- Returned compressed string. +zlib.compressobj([level]) -- Return a compressor object. +zlib.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zlib.decompress(string[, wbits[, bufsize]]) -- Return decompressed string. +zlib.decompressobj([wbits]) -- Return a decompressor object. +zlib.error(??) diff --git a/third_party/qscintilla/qsci/api/python/Python-2.5.api b/third_party/qscintilla/qsci/api/python/Python-2.5.api new file mode 100644 index 0000000..ca82c00 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-2.5.api @@ -0,0 +1,8539 @@ +ArithmeticError +AssertionError +AttributeError +BaseException +BaseHTTPServer.BaseHTTPRequestHandler(??) +BaseHTTPServer.DEFAULT_ERROR_MESSAGE +BaseHTTPServer.HTTPServer(??) +BaseHTTPServer.SocketServer +BaseHTTPServer.mimetools +BaseHTTPServer.socket +BaseHTTPServer.sys +BaseHTTPServer.test(??) +BaseHTTPServer.time +Bastion.Bastion(??) +Bastion.BastionClass(??) +Bastion.MethodType +CGIHTTPServer.BaseHTTPServer +CGIHTTPServer.CGIHTTPRequestHandler(??) +CGIHTTPServer.SimpleHTTPServer +CGIHTTPServer.executable(??) +CGIHTTPServer.nobody +CGIHTTPServer.nobody_uid(??) +CGIHTTPServer.os +CGIHTTPServer.select +CGIHTTPServer.sys +CGIHTTPServer.test(??) +CGIHTTPServer.urllib +ConfigParser.ConfigParser(??) +ConfigParser.DEFAULTSECT +ConfigParser.DuplicateSectionError +ConfigParser.Error +ConfigParser.InterpolationDepthError +ConfigParser.InterpolationError +ConfigParser.InterpolationMissingOptionError +ConfigParser.InterpolationSyntaxError +ConfigParser.MAX_INTERPOLATION_DEPTH +ConfigParser.MissingSectionHeaderError +ConfigParser.NoOptionError +ConfigParser.NoSectionError +ConfigParser.ParsingError +ConfigParser.RawConfigParser(??) +ConfigParser.SafeConfigParser(??) +ConfigParser.re +Cookie.BaseCookie +Cookie.Cookie +Cookie.CookieError +Cookie.Morsel +Cookie.SerialCookie +Cookie.SimpleCookie +Cookie.SmartCookie +Cookie.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +Cookie.loads(string) -- Load a pickle from the given string +Cookie.re +Cookie.string +Cookie.warnings +DeprecationWarning +DocXMLRPCServer.CGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocCGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCServer(??) +DocXMLRPCServer.ServerHTMLDoc(??) +DocXMLRPCServer.SimpleXMLRPCRequestHandler(??) +DocXMLRPCServer.SimpleXMLRPCServer(??) +DocXMLRPCServer.XMLRPCDocGenerator(??) +DocXMLRPCServer.inspect +DocXMLRPCServer.pydoc +DocXMLRPCServer.re +DocXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +DocXMLRPCServer.sys +EOFError +Ellipsis +EnvironmentError +Exception +False +FloatingPointError +FutureWarning +GeneratorExit +HTMLParser.HTMLParseError +HTMLParser.HTMLParser(??) +HTMLParser.attrfind +HTMLParser.charref +HTMLParser.commentclose +HTMLParser.endendtag +HTMLParser.endtagfind +HTMLParser.entityref +HTMLParser.incomplete +HTMLParser.interesting_cdata +HTMLParser.interesting_normal +HTMLParser.locatestarttagend +HTMLParser.markupbase +HTMLParser.piclose +HTMLParser.re +HTMLParser.starttagopen +HTMLParser.tagfind +IOError +ImportError +ImportWarning +IndentationError +IndexError +KeyError +KeyboardInterrupt +LookupError +MemoryError +MimeWriter.MimeWriter(??) +MimeWriter.mimetools +NameError +None +NotImplemented +NotImplementedError +OSError +OverflowError +PendingDeprecationWarning +Queue.Empty +Queue.Full +Queue.Queue(??) +Queue.deque(iterable) --> deque object +ReferenceError +RuntimeError +RuntimeWarning +SimpleHTTPServer.BaseHTTPServer +SimpleHTTPServer.SimpleHTTPRequestHandler(??) +SimpleHTTPServer.StringIO([s]) -- Return a StringIO-like stream for reading or writing +SimpleHTTPServer.cgi +SimpleHTTPServer.mimetypes +SimpleHTTPServer.os +SimpleHTTPServer.posixpath +SimpleHTTPServer.shutil +SimpleHTTPServer.test(??) +SimpleHTTPServer.urllib +SimpleHTTPServer.urlparse +SimpleXMLRPCServer.BaseHTTPServer +SimpleXMLRPCServer.CGIXMLRPCRequestHandler(??) +SimpleXMLRPCServer.Fault +SimpleXMLRPCServer.SimpleXMLRPCDispatcher(??) +SimpleXMLRPCServer.SimpleXMLRPCRequestHandler(??) +SimpleXMLRPCServer.SimpleXMLRPCServer(??) +SimpleXMLRPCServer.SocketServer +SimpleXMLRPCServer.fcntl +SimpleXMLRPCServer.list_public_methods(??) +SimpleXMLRPCServer.os +SimpleXMLRPCServer.remove_duplicates([2,2,2,1,3,3]) => [3,1,2] +SimpleXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +SimpleXMLRPCServer.sys +SimpleXMLRPCServer.xmlrpclib +SocketServer.BaseRequestHandler(??) +SocketServer.BaseServer(??) +SocketServer.DatagramRequestHandler(??) +SocketServer.ForkingMixIn(??) +SocketServer.ForkingTCPServer(??) +SocketServer.ForkingUDPServer(??) +SocketServer.StreamRequestHandler(??) +SocketServer.TCPServer(??) +SocketServer.ThreadingMixIn(??) +SocketServer.ThreadingTCPServer(??) +SocketServer.ThreadingUDPServer(??) +SocketServer.ThreadingUnixDatagramServer(??) +SocketServer.ThreadingUnixStreamServer(??) +SocketServer.UDPServer(??) +SocketServer.UnixDatagramServer(??) +SocketServer.UnixStreamServer(??) +SocketServer.os +SocketServer.socket +SocketServer.sys +StandardError +StopIteration +StringIO.EINVAL +StringIO.StringIO(??) +StringIO.test(??) +SyntaxError +SyntaxWarning +SystemError +SystemExit +TabError +True +TypeError +UnboundLocalError +UnicodeDecodeError +UnicodeEncodeError +UnicodeError +UnicodeTranslateError +UnicodeWarning +UserDict.DictMixin(??) +UserDict.IterableUserDict(??) +UserDict.UserDict(??) +UserList.UserList(??) +UserString.MutableString(??) +UserString.UserString(??) +UserString.sys +UserWarning +ValueError +Warning +ZeroDivisionError +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error +aifc.open(??) +aifc.openfp(??) +aifc.struct +all(iterable) -> bool +any(iterable) -> bool +anydbm.error +anydbm.open(??) +apply(object[, args[, kwargs]]) -> value +array.ArrayType +array.array(typecode [, initializer]) -> array +asynchat.async_chat(??) +asynchat.asyncore +asynchat.deque(iterable) --> deque object +asynchat.fifo(??) +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asynchat.socket +asyncore.EALREADY +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINTR +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode +asyncore.fcntl +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select +asyncore.socket +asyncore.socket_map +asyncore.sys +asyncore.time +asyncore.write(??) +atexit.register(??) +atexit.sys +audiodev.AudioDev(??) +audiodev.Play_Audio_sgi(??) +audiodev.Play_Audio_sun(??) +audiodev.error +audiodev.test(??) +audioop.add +audioop.adpcm2lin +audioop.alaw2lin +audioop.avg +audioop.avgpp +audioop.bias +audioop.cross +audioop.error +audioop.findfactor +audioop.findfit +audioop.findmax +audioop.getsample +audioop.lin2adpcm +audioop.lin2alaw +audioop.lin2lin +audioop.lin2ulaw +audioop.max +audioop.maxpp +audioop.minmax +audioop.mul +audioop.ratecv +audioop.reverse +audioop.rms +audioop.tomono +audioop.tostereo +audioop.ulaw2lin +base64.EMPTYSTRING +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.binascii +base64.decode(??) +base64.decodestring(??) +base64.encode(??) +base64.encodestring(??) +base64.k +base64.re +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct +base64.test(??) +base64.test1(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +base64.v +basestring +bdb.Bdb(??) +bdb.BdbQuit +bdb.Breakpoint(??) +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.foo(??) +bdb.os +bdb.set_trace(??) +bdb.sys +bdb.test(??) +bdb.types +binascii.Error +binascii.Incomplete +binascii.a2b_base64 +binascii.a2b_hex(hexstr) -> s; Binary data of hexadecimal representation. +binascii.a2b_hqx +binascii.a2b_qp +binascii.a2b_uu +binascii.b2a_base64 +binascii.b2a_hex(data) -> s; Hexadecimal representation of binary data. +binascii.b2a_hqx +binascii.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +binascii.b2a_uu +binascii.crc32 +binascii.crc_hqx +binascii.hexlify +binascii.rlecode_hqx +binascii.rledecode_hqx +binascii.unhexlify +binhex.BinHex(??) +binhex.Error +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii +binhex.binhex(??) +binhex.getfileinfo(??) +binhex.hexbin(??) +binhex.openrsrc(??) +binhex.os +binhex.struct +binhex.sys +bisect.bisect +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +bsddb.UserDict +bsddb.btopen(??) +bsddb.db +bsddb.db.DB +bsddb.db.DBAccessError +bsddb.db.DBAgainError +bsddb.db.DBBusyError +bsddb.db.DBCursorClosedError +bsddb.db.DBEnv +bsddb.db.DBError +bsddb.db.DBFileExistsError +bsddb.db.DBInvalidArgError +bsddb.db.DBKeyEmptyError +bsddb.db.DBKeyExistError +bsddb.db.DBLockDeadlockError +bsddb.db.DBLockNotGrantedError +bsddb.db.DBNoMemoryError +bsddb.db.DBNoServerError +bsddb.db.DBNoServerHomeError +bsddb.db.DBNoServerIDError +bsddb.db.DBNoSpaceError +bsddb.db.DBNoSuchFileError +bsddb.db.DBNotFoundError +bsddb.db.DBOldVersionError +bsddb.db.DBPageNotFoundError +bsddb.db.DBPermissionsError +bsddb.db.DBRunRecoveryError +bsddb.db.DBSecondaryBadError +bsddb.db.DBVerifyBadError +bsddb.db.DB_AFTER +bsddb.db.DB_AGGRESSIVE +bsddb.db.DB_APPEND +bsddb.db.DB_ARCH_ABS +bsddb.db.DB_ARCH_DATA +bsddb.db.DB_ARCH_LOG +bsddb.db.DB_ARCH_REMOVE +bsddb.db.DB_AUTO_COMMIT +bsddb.db.DB_BEFORE +bsddb.db.DB_BTREE +bsddb.db.DB_CACHED_COUNTS +bsddb.db.DB_CDB_ALLDB +bsddb.db.DB_CHECKPOINT +bsddb.db.DB_CHKSUM +bsddb.db.DB_CONSUME +bsddb.db.DB_CONSUME_WAIT +bsddb.db.DB_CREATE +bsddb.db.DB_CURRENT +bsddb.db.DB_DIRECT_DB +bsddb.db.DB_DIRECT_LOG +bsddb.db.DB_DIRTY_READ +bsddb.db.DB_DONOTINDEX +bsddb.db.DB_DUP +bsddb.db.DB_DUPSORT +bsddb.db.DB_ENCRYPT +bsddb.db.DB_ENCRYPT_AES +bsddb.db.DB_EXCL +bsddb.db.DB_EXTENT +bsddb.db.DB_FAST_STAT +bsddb.db.DB_FCNTL_LOCKING +bsddb.db.DB_FIRST +bsddb.db.DB_FLUSH +bsddb.db.DB_FORCE +bsddb.db.DB_GET_BOTH +bsddb.db.DB_GET_RECNO +bsddb.db.DB_HASH +bsddb.db.DB_INCOMPLETE +bsddb.db.DB_INIT_CDB +bsddb.db.DB_INIT_LOCK +bsddb.db.DB_INIT_LOG +bsddb.db.DB_INIT_MPOOL +bsddb.db.DB_INIT_REP +bsddb.db.DB_INIT_TXN +bsddb.db.DB_JOINENV +bsddb.db.DB_JOIN_ITEM +bsddb.db.DB_JOIN_NOSORT +bsddb.db.DB_KEYEMPTY +bsddb.db.DB_KEYEXIST +bsddb.db.DB_KEYFIRST +bsddb.db.DB_KEYLAST +bsddb.db.DB_LAST +bsddb.db.DB_LOCKDOWN +bsddb.db.DB_LOCK_CONFLICT +bsddb.db.DB_LOCK_DEADLOCK +bsddb.db.DB_LOCK_DEFAULT +bsddb.db.DB_LOCK_DIRTY +bsddb.db.DB_LOCK_DUMP +bsddb.db.DB_LOCK_GET +bsddb.db.DB_LOCK_INHERIT +bsddb.db.DB_LOCK_IREAD +bsddb.db.DB_LOCK_IWR +bsddb.db.DB_LOCK_IWRITE +bsddb.db.DB_LOCK_MAXLOCKS +bsddb.db.DB_LOCK_MINLOCKS +bsddb.db.DB_LOCK_MINWRITE +bsddb.db.DB_LOCK_NG +bsddb.db.DB_LOCK_NORUN +bsddb.db.DB_LOCK_NOTGRANTED +bsddb.db.DB_LOCK_NOWAIT +bsddb.db.DB_LOCK_OLDEST +bsddb.db.DB_LOCK_PUT +bsddb.db.DB_LOCK_PUT_ALL +bsddb.db.DB_LOCK_PUT_OBJ +bsddb.db.DB_LOCK_RANDOM +bsddb.db.DB_LOCK_READ +bsddb.db.DB_LOCK_RECORD +bsddb.db.DB_LOCK_SWITCH +bsddb.db.DB_LOCK_UPGRADE +bsddb.db.DB_LOCK_UPGRADE_WRITE +bsddb.db.DB_LOCK_WAIT +bsddb.db.DB_LOCK_WRITE +bsddb.db.DB_LOCK_WWRITE +bsddb.db.DB_LOCK_YOUNGEST +bsddb.db.DB_LOG_AUTOREMOVE +bsddb.db.DB_LSTAT_ABORTED +bsddb.db.DB_LSTAT_ERR +bsddb.db.DB_LSTAT_FREE +bsddb.db.DB_LSTAT_HELD +bsddb.db.DB_LSTAT_PENDING +bsddb.db.DB_LSTAT_WAITING +bsddb.db.DB_MAX_PAGES +bsddb.db.DB_MAX_RECORDS +bsddb.db.DB_MULTIPLE +bsddb.db.DB_MULTIPLE_KEY +bsddb.db.DB_NEXT +bsddb.db.DB_NEXT_DUP +bsddb.db.DB_NEXT_NODUP +bsddb.db.DB_NODUPDATA +bsddb.db.DB_NOLOCKING +bsddb.db.DB_NOMMAP +bsddb.db.DB_NOORDERCHK +bsddb.db.DB_NOOVERWRITE +bsddb.db.DB_NOPANIC +bsddb.db.DB_NOSERVER +bsddb.db.DB_NOSERVER_HOME +bsddb.db.DB_NOSERVER_ID +bsddb.db.DB_NOSYNC +bsddb.db.DB_NOTFOUND +bsddb.db.DB_ODDFILESIZE +bsddb.db.DB_OLD_VERSION +bsddb.db.DB_OPFLAGS_MASK +bsddb.db.DB_ORDERCHKONLY +bsddb.db.DB_PAGE_NOTFOUND +bsddb.db.DB_PANIC_ENVIRONMENT +bsddb.db.DB_POSITION +bsddb.db.DB_PREV +bsddb.db.DB_PREV_NODUP +bsddb.db.DB_PRIVATE +bsddb.db.DB_PR_PAGE +bsddb.db.DB_PR_RECOVERYTEST +bsddb.db.DB_QUEUE +bsddb.db.DB_RDONLY +bsddb.db.DB_RDWRMASTER +bsddb.db.DB_RECNO +bsddb.db.DB_RECNUM +bsddb.db.DB_RECORDCOUNT +bsddb.db.DB_RECOVER +bsddb.db.DB_RECOVER_FATAL +bsddb.db.DB_REGION_INIT +bsddb.db.DB_RENUMBER +bsddb.db.DB_REVSPLITOFF +bsddb.db.DB_RMW +bsddb.db.DB_RPCCLIENT +bsddb.db.DB_RUNRECOVERY +bsddb.db.DB_SALVAGE +bsddb.db.DB_SECONDARY_BAD +bsddb.db.DB_SET +bsddb.db.DB_SET_LOCK_TIMEOUT +bsddb.db.DB_SET_RANGE +bsddb.db.DB_SET_RECNO +bsddb.db.DB_SET_TXN_TIMEOUT +bsddb.db.DB_SNAPSHOT +bsddb.db.DB_STAT_CLEAR +bsddb.db.DB_SYSTEM_MEM +bsddb.db.DB_THREAD +bsddb.db.DB_TIME_NOTGRANTED +bsddb.db.DB_TRUNCATE +bsddb.db.DB_TXN_NOSYNC +bsddb.db.DB_TXN_NOT_DURABLE +bsddb.db.DB_TXN_NOWAIT +bsddb.db.DB_TXN_SYNC +bsddb.db.DB_TXN_WRITE_NOSYNC +bsddb.db.DB_UNKNOWN +bsddb.db.DB_UPGRADE +bsddb.db.DB_USE_ENVIRON +bsddb.db.DB_USE_ENVIRON_ROOT +bsddb.db.DB_VERIFY +bsddb.db.DB_VERIFY_BAD +bsddb.db.DB_VERSION_MAJOR +bsddb.db.DB_VERSION_MINOR +bsddb.db.DB_VERSION_PATCH +bsddb.db.DB_VERSION_STRING +bsddb.db.DB_WRITECURSOR +bsddb.db.DB_XA_CREATE +bsddb.db.DB_YIELDCPU +bsddb.db.EACCES +bsddb.db.EAGAIN +bsddb.db.EBUSY +bsddb.db.EEXIST +bsddb.db.EINVAL +bsddb.db.ENOENT +bsddb.db.ENOMEM +bsddb.db.ENOSPC +bsddb.db.EPERM +bsddb.db.cvsid +bsddb.db.version +bsddb.dbobj +bsddb.dbobj.DB(??) +bsddb.dbobj.DBEnv(??) +bsddb.dbobj.DBSequence(??) +bsddb.dbobj.DictMixin(??) +bsddb.dbobj.db +bsddb.dbrecio +bsddb.dbrecio.DBRecIO(??) +bsddb.dbrecio.errno +bsddb.dbrecio.string +bsddb.dbshelve +bsddb.dbshelve.DBShelf(??) +bsddb.dbshelve.DBShelfCursor(??) +bsddb.dbshelve.DictMixin(??) +bsddb.dbshelve.cPickle +bsddb.dbshelve.db +bsddb.dbshelve.open(??) +bsddb.dbtables +bsddb.dbtables.Cond(??) +bsddb.dbtables.DB +bsddb.dbtables.DBAccessError +bsddb.dbtables.DBAgainError +bsddb.dbtables.DBBusyError +bsddb.dbtables.DBCursorClosedError +bsddb.dbtables.DBEnv +bsddb.dbtables.DBError +bsddb.dbtables.DBFileExistsError +bsddb.dbtables.DBIncompleteError +bsddb.dbtables.DBInvalidArgError +bsddb.dbtables.DBKeyEmptyError +bsddb.dbtables.DBKeyExistError +bsddb.dbtables.DBLockDeadlockError +bsddb.dbtables.DBLockNotGrantedError +bsddb.dbtables.DBNoMemoryError +bsddb.dbtables.DBNoServerError +bsddb.dbtables.DBNoServerHomeError +bsddb.dbtables.DBNoServerIDError +bsddb.dbtables.DBNoSpaceError +bsddb.dbtables.DBNoSuchFileError +bsddb.dbtables.DBNotFoundError +bsddb.dbtables.DBOldVersionError +bsddb.dbtables.DBPageNotFoundError +bsddb.dbtables.DBPermissionsError +bsddb.dbtables.DBRunRecoveryError +bsddb.dbtables.DBSecondaryBadError +bsddb.dbtables.DBVerifyBadError +bsddb.dbtables.DB_AFTER +bsddb.dbtables.DB_AGGRESSIVE +bsddb.dbtables.DB_APPEND +bsddb.dbtables.DB_ARCH_ABS +bsddb.dbtables.DB_ARCH_DATA +bsddb.dbtables.DB_ARCH_LOG +bsddb.dbtables.DB_ARCH_REMOVE +bsddb.dbtables.DB_AUTO_COMMIT +bsddb.dbtables.DB_BEFORE +bsddb.dbtables.DB_BTREE +bsddb.dbtables.DB_CACHED_COUNTS +bsddb.dbtables.DB_CDB_ALLDB +bsddb.dbtables.DB_CHECKPOINT +bsddb.dbtables.DB_CHKSUM +bsddb.dbtables.DB_CONSUME +bsddb.dbtables.DB_CONSUME_WAIT +bsddb.dbtables.DB_CREATE +bsddb.dbtables.DB_CURRENT +bsddb.dbtables.DB_DIRECT_DB +bsddb.dbtables.DB_DIRECT_LOG +bsddb.dbtables.DB_DIRTY_READ +bsddb.dbtables.DB_DONOTINDEX +bsddb.dbtables.DB_DUP +bsddb.dbtables.DB_DUPSORT +bsddb.dbtables.DB_ENCRYPT +bsddb.dbtables.DB_ENCRYPT_AES +bsddb.dbtables.DB_EXCL +bsddb.dbtables.DB_EXTENT +bsddb.dbtables.DB_FAST_STAT +bsddb.dbtables.DB_FCNTL_LOCKING +bsddb.dbtables.DB_FIRST +bsddb.dbtables.DB_FLUSH +bsddb.dbtables.DB_FORCE +bsddb.dbtables.DB_GET_BOTH +bsddb.dbtables.DB_GET_RECNO +bsddb.dbtables.DB_HASH +bsddb.dbtables.DB_INCOMPLETE +bsddb.dbtables.DB_INIT_CDB +bsddb.dbtables.DB_INIT_LOCK +bsddb.dbtables.DB_INIT_LOG +bsddb.dbtables.DB_INIT_MPOOL +bsddb.dbtables.DB_INIT_REP +bsddb.dbtables.DB_INIT_TXN +bsddb.dbtables.DB_JOINENV +bsddb.dbtables.DB_JOIN_ITEM +bsddb.dbtables.DB_JOIN_NOSORT +bsddb.dbtables.DB_KEYEMPTY +bsddb.dbtables.DB_KEYEXIST +bsddb.dbtables.DB_KEYFIRST +bsddb.dbtables.DB_KEYLAST +bsddb.dbtables.DB_LAST +bsddb.dbtables.DB_LOCKDOWN +bsddb.dbtables.DB_LOCK_CONFLICT +bsddb.dbtables.DB_LOCK_DEADLOCK +bsddb.dbtables.DB_LOCK_DEFAULT +bsddb.dbtables.DB_LOCK_DIRTY +bsddb.dbtables.DB_LOCK_DUMP +bsddb.dbtables.DB_LOCK_GET +bsddb.dbtables.DB_LOCK_INHERIT +bsddb.dbtables.DB_LOCK_IREAD +bsddb.dbtables.DB_LOCK_IWR +bsddb.dbtables.DB_LOCK_IWRITE +bsddb.dbtables.DB_LOCK_MAXLOCKS +bsddb.dbtables.DB_LOCK_MINLOCKS +bsddb.dbtables.DB_LOCK_MINWRITE +bsddb.dbtables.DB_LOCK_NG +bsddb.dbtables.DB_LOCK_NORUN +bsddb.dbtables.DB_LOCK_NOTGRANTED +bsddb.dbtables.DB_LOCK_NOWAIT +bsddb.dbtables.DB_LOCK_OLDEST +bsddb.dbtables.DB_LOCK_PUT +bsddb.dbtables.DB_LOCK_PUT_ALL +bsddb.dbtables.DB_LOCK_PUT_OBJ +bsddb.dbtables.DB_LOCK_RANDOM +bsddb.dbtables.DB_LOCK_READ +bsddb.dbtables.DB_LOCK_RECORD +bsddb.dbtables.DB_LOCK_SWITCH +bsddb.dbtables.DB_LOCK_UPGRADE +bsddb.dbtables.DB_LOCK_UPGRADE_WRITE +bsddb.dbtables.DB_LOCK_WAIT +bsddb.dbtables.DB_LOCK_WRITE +bsddb.dbtables.DB_LOCK_WWRITE +bsddb.dbtables.DB_LOCK_YOUNGEST +bsddb.dbtables.DB_LOG_AUTOREMOVE +bsddb.dbtables.DB_LSTAT_ABORTED +bsddb.dbtables.DB_LSTAT_ERR +bsddb.dbtables.DB_LSTAT_FREE +bsddb.dbtables.DB_LSTAT_HELD +bsddb.dbtables.DB_LSTAT_PENDING +bsddb.dbtables.DB_LSTAT_WAITING +bsddb.dbtables.DB_MAX_PAGES +bsddb.dbtables.DB_MAX_RECORDS +bsddb.dbtables.DB_MULTIPLE +bsddb.dbtables.DB_MULTIPLE_KEY +bsddb.dbtables.DB_NEXT +bsddb.dbtables.DB_NEXT_DUP +bsddb.dbtables.DB_NEXT_NODUP +bsddb.dbtables.DB_NODUPDATA +bsddb.dbtables.DB_NOLOCKING +bsddb.dbtables.DB_NOMMAP +bsddb.dbtables.DB_NOORDERCHK +bsddb.dbtables.DB_NOOVERWRITE +bsddb.dbtables.DB_NOPANIC +bsddb.dbtables.DB_NOSERVER +bsddb.dbtables.DB_NOSERVER_HOME +bsddb.dbtables.DB_NOSERVER_ID +bsddb.dbtables.DB_NOSYNC +bsddb.dbtables.DB_NOTFOUND +bsddb.dbtables.DB_ODDFILESIZE +bsddb.dbtables.DB_OLD_VERSION +bsddb.dbtables.DB_OPFLAGS_MASK +bsddb.dbtables.DB_ORDERCHKONLY +bsddb.dbtables.DB_PAGE_NOTFOUND +bsddb.dbtables.DB_PANIC_ENVIRONMENT +bsddb.dbtables.DB_POSITION +bsddb.dbtables.DB_PREV +bsddb.dbtables.DB_PREV_NODUP +bsddb.dbtables.DB_PRIVATE +bsddb.dbtables.DB_PR_PAGE +bsddb.dbtables.DB_PR_RECOVERYTEST +bsddb.dbtables.DB_QUEUE +bsddb.dbtables.DB_RDONLY +bsddb.dbtables.DB_RDWRMASTER +bsddb.dbtables.DB_RECNO +bsddb.dbtables.DB_RECNUM +bsddb.dbtables.DB_RECORDCOUNT +bsddb.dbtables.DB_RECOVER +bsddb.dbtables.DB_RECOVER_FATAL +bsddb.dbtables.DB_REGION_INIT +bsddb.dbtables.DB_RENUMBER +bsddb.dbtables.DB_REVSPLITOFF +bsddb.dbtables.DB_RMW +bsddb.dbtables.DB_RPCCLIENT +bsddb.dbtables.DB_RUNRECOVERY +bsddb.dbtables.DB_SALVAGE +bsddb.dbtables.DB_SECONDARY_BAD +bsddb.dbtables.DB_SET +bsddb.dbtables.DB_SET_LOCK_TIMEOUT +bsddb.dbtables.DB_SET_RANGE +bsddb.dbtables.DB_SET_RECNO +bsddb.dbtables.DB_SET_TXN_TIMEOUT +bsddb.dbtables.DB_SNAPSHOT +bsddb.dbtables.DB_STAT_CLEAR +bsddb.dbtables.DB_SYSTEM_MEM +bsddb.dbtables.DB_THREAD +bsddb.dbtables.DB_TIME_NOTGRANTED +bsddb.dbtables.DB_TRUNCATE +bsddb.dbtables.DB_TXN_NOSYNC +bsddb.dbtables.DB_TXN_NOT_DURABLE +bsddb.dbtables.DB_TXN_NOWAIT +bsddb.dbtables.DB_TXN_SYNC +bsddb.dbtables.DB_TXN_WRITE_NOSYNC +bsddb.dbtables.DB_UNKNOWN +bsddb.dbtables.DB_UPGRADE +bsddb.dbtables.DB_USE_ENVIRON +bsddb.dbtables.DB_USE_ENVIRON_ROOT +bsddb.dbtables.DB_VERIFY +bsddb.dbtables.DB_VERIFY_BAD +bsddb.dbtables.DB_VERSION_MAJOR +bsddb.dbtables.DB_VERSION_MINOR +bsddb.dbtables.DB_VERSION_PATCH +bsddb.dbtables.DB_VERSION_STRING +bsddb.dbtables.DB_WRITECURSOR +bsddb.dbtables.DB_XA_CREATE +bsddb.dbtables.DB_YIELDCPU +bsddb.dbtables.EACCES +bsddb.dbtables.EAGAIN +bsddb.dbtables.EBUSY +bsddb.dbtables.EEXIST +bsddb.dbtables.EINVAL +bsddb.dbtables.ENOENT +bsddb.dbtables.ENOMEM +bsddb.dbtables.ENOSPC +bsddb.dbtables.EPERM +bsddb.dbtables.ExactCond(??) +bsddb.dbtables.LikeCond(??) +bsddb.dbtables.ListType +bsddb.dbtables.PostfixCond(??) +bsddb.dbtables.PrefixCond(??) +bsddb.dbtables.StringType +bsddb.dbtables.TableAlreadyExists +bsddb.dbtables.TableDBError +bsddb.dbtables.bsdTableDB(??) +bsddb.dbtables.contains_metastrings(??) +bsddb.dbtables.copy +bsddb.dbtables.cvsid +bsddb.dbtables.pickle +bsddb.dbtables.random +bsddb.dbtables.re +bsddb.dbtables.sys +bsddb.dbtables.version +bsddb.dbtables.xdrlib +bsddb.dbutils +bsddb.dbutils.DeadlockWrap(function, *_args, **_kwargs) - automatically retries +bsddb.dbutils.db +bsddb.error +bsddb.hashopen(??) +bsddb.os +bsddb.ref +bsddb.rnopen(??) +bsddb.sys +buffer(object [, offset[, size]]) +bz2.BZ2Compressor([compresslevel=9]) -> compressor object +bz2.BZ2Decompressor() -> decompressor object +bz2.BZ2File(name [, mode='r', buffering=0, compresslevel=9]) -> file object +bz2.compress(data [, compresslevel=9]) -> string +bz2.decompress(data) -> decompressed data +cPickle.BadPickleGet +cPickle.HIGHEST_PROTOCOL +cPickle.PickleError +cPickle.Pickler(file, protocol=0) -- Create a pickler. +cPickle.PicklingError +cPickle.UnpickleableError +cPickle.Unpickler(file) -- Create an unpickler. +cPickle.UnpicklingError +cPickle.compatible_formats +cPickle.dump(obj, file, protocol=0) -- Write an object in pickle format to the given file. +cPickle.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +cPickle.format_version +cPickle.load(file) -- Load a pickle from the given file +cPickle.loads(string) -- Load a pickle from the given string +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.help(??) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +cStringIO.InputType +cStringIO.OutputType +cStringIO.StringIO([s]) -- Return a StringIO-like stream for reading or writing +cStringIO.cStringIO_CAPI +calendar.Calendar +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar +calendar.IllegalMonthError +calendar.IllegalWeekdayError +calendar.January +calendar.LocaleHTMLCalendar +calendar.LocaleTextCalendar +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar +calendar.TimeEncoding(??) +calendar.WEDNESDAY +calendar.c +calendar.calendar +calendar.datetime +calendar.day_abbr +calendar.day_name +calendar.error +calendar.firstweekday +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.locale +calendar.main(??) +calendar.mdays +calendar.month +calendar.month_abbr +calendar.month_name +calendar.monthcalendar +calendar.monthrange(??) +calendar.prcal +calendar.prmonth +calendar.prweek +calendar.setfirstweekday(??) +calendar.sys +calendar.timegm(??) +calendar.week +calendar.weekday(??) +calendar.weekheader +calendar.with_statement +callable(object) -> bool +cgi.FieldStorage(??) +cgi.FormContent(??) +cgi.FormContentDict(??) +cgi.InterpFormContentDict(??) +cgi.MiniFieldStorage(??) +cgi.StringIO([s]) -- Return a StringIO-like stream for reading or writing +cgi.SvFormContentDict(??) +cgi.UserDict +cgi.attrgetter(attr, ...) --> attrgetter object +cgi.dolog(??) +cgi.escape(??) +cgi.initlog(??) +cgi.log(??) +cgi.logfile +cgi.logfp +cgi.maxlen +cgi.mimetools +cgi.nolog(??) +cgi.os +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.rfc822 +cgi.sys +cgi.test(??) +cgi.urllib +cgi.valid_boundary(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler +cgitb.html(??) +cgitb.lookup(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys +cgitb.text(??) +chr(i) -> character +chunk.Chunk(??) +classmethod(function) -> method +cmath.acos(x) +cmath.acosh(x) +cmath.asin(x) +cmath.asinh(x) +cmath.atan(x) +cmath.atanh(x) +cmath.cos(x) +cmath.cosh(x) +cmath.e +cmath.exp(x) +cmath.log(x[, base]) -> the logarithm of x to the given base. +cmath.log10(x) +cmath.pi +cmath.sin(x) +cmath.sinh(x) +cmath.sqrt(x) +cmath.tan(x) +cmath.tanh(x) +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string +cmp(x, y) -> integer +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.softspace(??) +code.sys +code.traceback +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder +codecs.BufferedIncrementalEncoder +codecs.Codec(??) +codecs.CodecInfo +codecs.EncodedFile(??) +codecs.IncrementalDecoder +codecs.IncrementalEncoder +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode +codecs.ascii_encode +codecs.backslashreplace_errors +codecs.charbuffer_encode +codecs.charmap_build +codecs.charmap_decode +codecs.charmap_encode +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode +codecs.escape_encode +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode +codecs.latin_1_encode +codecs.lookup(encoding) -> (encoder, decoder, stream_reader, stream_writer) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode +codecs.raw_unicode_escape_encode +codecs.readbuffer_encode +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors +codecs.strict_errors +codecs.sys +codecs.unicode_escape_decode +codecs.unicode_escape_encode +codecs.unicode_internal_decode +codecs.unicode_internal_encode +codecs.utf_16_be_decode +codecs.utf_16_be_encode +codecs.utf_16_decode +codecs.utf_16_encode +codecs.utf_16_ex_decode +codecs.utf_16_le_decode +codecs.utf_16_le_encode +codecs.utf_7_decode +codecs.utf_7_encode +codecs.utf_8_decode +codecs.utf_8_encode +codecs.xmlcharrefreplace_errors +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +codeop.fname +coerce(x, y) -> (x1, y1) +collections.defaultdict(default_factory) --> dict with default factory +collections.deque(iterable) --> deque object +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +commands.getoutput(??) +commands.getstatus(??) +commands.getstatusoutput(??) +commands.mk2arg(??) +commands.mkarg(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_path(??) +compileall.main(??) +compileall.os +compileall.py_compile +compileall.sys +compiler.ast +compiler.ast.Add(??) +compiler.ast.And(??) +compiler.ast.AssAttr(??) +compiler.ast.AssList(??) +compiler.ast.AssName(??) +compiler.ast.AssTuple(??) +compiler.ast.Assert(??) +compiler.ast.Assign(??) +compiler.ast.AugAssign(??) +compiler.ast.Backquote(??) +compiler.ast.Bitand(??) +compiler.ast.Bitor(??) +compiler.ast.Bitxor(??) +compiler.ast.Break(??) +compiler.ast.CO_VARARGS +compiler.ast.CO_VARKEYWORDS +compiler.ast.CallFunc(??) +compiler.ast.Class(??) +compiler.ast.Compare(??) +compiler.ast.Const(??) +compiler.ast.Continue(??) +compiler.ast.Decorators(??) +compiler.ast.Dict(??) +compiler.ast.Discard(??) +compiler.ast.Div(??) +compiler.ast.Ellipsis(??) +compiler.ast.EmptyNode(??) +compiler.ast.Exec(??) +compiler.ast.Expression(??) +compiler.ast.FloorDiv(??) +compiler.ast.For(??) +compiler.ast.From(??) +compiler.ast.Function(??) +compiler.ast.GenExpr(??) +compiler.ast.GenExprFor(??) +compiler.ast.GenExprIf(??) +compiler.ast.GenExprInner(??) +compiler.ast.Getattr(??) +compiler.ast.Global(??) +compiler.ast.If(??) +compiler.ast.IfExp(??) +compiler.ast.Import(??) +compiler.ast.Invert(??) +compiler.ast.Keyword(??) +compiler.ast.Lambda(??) +compiler.ast.LeftShift(??) +compiler.ast.List(??) +compiler.ast.ListComp(??) +compiler.ast.ListCompFor(??) +compiler.ast.ListCompIf(??) +compiler.ast.Mod(??) +compiler.ast.Module(??) +compiler.ast.Mul(??) +compiler.ast.Name(??) +compiler.ast.Node(??) +compiler.ast.Not(??) +compiler.ast.Or(??) +compiler.ast.Pass(??) +compiler.ast.Power(??) +compiler.ast.Print(??) +compiler.ast.Printnl(??) +compiler.ast.Raise(??) +compiler.ast.Return(??) +compiler.ast.RightShift(??) +compiler.ast.Slice(??) +compiler.ast.Sliceobj(??) +compiler.ast.Stmt(??) +compiler.ast.Sub(??) +compiler.ast.Subscript(??) +compiler.ast.TryExcept(??) +compiler.ast.TryFinally(??) +compiler.ast.Tuple(??) +compiler.ast.UnaryAdd(??) +compiler.ast.UnarySub(??) +compiler.ast.While(??) +compiler.ast.With(??) +compiler.ast.Yield(??) +compiler.ast.flatten(??) +compiler.ast.flatten_nodes(??) +compiler.ast.name +compiler.ast.nodes +compiler.ast.obj(??) +compiler.compile(??) +compiler.compileFile(??) +compiler.consts +compiler.consts.CO_FUTURE_ABSIMPORT +compiler.consts.CO_FUTURE_DIVISION +compiler.consts.CO_FUTURE_WITH_STATEMENT +compiler.consts.CO_GENERATOR +compiler.consts.CO_GENERATOR_ALLOWED +compiler.consts.CO_NESTED +compiler.consts.CO_NEWLOCALS +compiler.consts.CO_OPTIMIZED +compiler.consts.CO_VARARGS +compiler.consts.CO_VARKEYWORDS +compiler.consts.OP_APPLY +compiler.consts.OP_ASSIGN +compiler.consts.OP_DELETE +compiler.consts.SC_CELL +compiler.consts.SC_FREE +compiler.consts.SC_GLOBAL +compiler.consts.SC_LOCAL +compiler.consts.SC_UNKNOWN +compiler.future +compiler.future.BadFutureParser(??) +compiler.future.FutureParser(??) +compiler.future.ast +compiler.future.find_futures(??) +compiler.future.is_future(??) +compiler.future.walk(??) +compiler.misc +compiler.misc.MANGLE_LEN +compiler.misc.Set(??) +compiler.misc.Stack(??) +compiler.misc.flatten(??) +compiler.misc.mangle(??) +compiler.misc.set_filename(??) +compiler.parse(??) +compiler.parseFile(??) +compiler.pyassem +compiler.pyassem.Block(??) +compiler.pyassem.CONV +compiler.pyassem.CO_NEWLOCALS +compiler.pyassem.CO_OPTIMIZED +compiler.pyassem.CO_VARARGS +compiler.pyassem.CO_VARKEYWORDS +compiler.pyassem.DONE +compiler.pyassem.FLAT +compiler.pyassem.FlowGraph(??) +compiler.pyassem.LineAddrTable(??) +compiler.pyassem.PyFlowGraph(??) +compiler.pyassem.RAW +compiler.pyassem.StackDepthTracker(??) +compiler.pyassem.TupleArg(??) +compiler.pyassem.dfs_postorder(??) +compiler.pyassem.dis +compiler.pyassem.findDepth +compiler.pyassem.getArgCount(??) +compiler.pyassem.isJump(??) +compiler.pyassem.misc +compiler.pyassem.new +compiler.pyassem.sys +compiler.pyassem.twobyte(??) +compiler.pycodegen +compiler.pycodegen.AbstractClassCode(??) +compiler.pycodegen.AbstractCompileMode(??) +compiler.pycodegen.AbstractFunctionCode(??) +compiler.pycodegen.AugGetattr(??) +compiler.pycodegen.AugName(??) +compiler.pycodegen.AugSlice(??) +compiler.pycodegen.AugSubscript(??) +compiler.pycodegen.CO_FUTURE_ABSIMPORT +compiler.pycodegen.CO_FUTURE_DIVISION +compiler.pycodegen.CO_FUTURE_WITH_STATEMENT +compiler.pycodegen.CO_GENERATOR +compiler.pycodegen.CO_NESTED +compiler.pycodegen.CO_NEWLOCALS +compiler.pycodegen.CO_VARARGS +compiler.pycodegen.CO_VARKEYWORDS +compiler.pycodegen.ClassCodeGenerator(??) +compiler.pycodegen.CodeGenerator(??) +compiler.pycodegen.Delegator(??) +compiler.pycodegen.END_FINALLY +compiler.pycodegen.EXCEPT +compiler.pycodegen.Expression(??) +compiler.pycodegen.ExpressionCodeGenerator(??) +compiler.pycodegen.FunctionCodeGenerator(??) +compiler.pycodegen.GenExprCodeGenerator(??) +compiler.pycodegen.Interactive(??) +compiler.pycodegen.InteractiveCodeGenerator(??) +compiler.pycodegen.LOOP +compiler.pycodegen.LocalNameFinder(??) +compiler.pycodegen.Module(??) +compiler.pycodegen.ModuleCodeGenerator(??) +compiler.pycodegen.NestedScopeMixin(??) +compiler.pycodegen.OpFinder(??) +compiler.pycodegen.SC_CELL +compiler.pycodegen.SC_FREE +compiler.pycodegen.SC_GLOBAL +compiler.pycodegen.SC_LOCAL +compiler.pycodegen.StringIO([s]) -- Return a StringIO-like stream for reading or writing +compiler.pycodegen.TRY_FINALLY +compiler.pycodegen.TupleArg(??) +compiler.pycodegen.VERSION +compiler.pycodegen.ast +compiler.pycodegen.callfunc_opcode_info +compiler.pycodegen.compile(??) +compiler.pycodegen.compileFile(??) +compiler.pycodegen.findOp(??) +compiler.pycodegen.future +compiler.pycodegen.generateArgList(??) +compiler.pycodegen.imp +compiler.pycodegen.is_constant_false(??) +compiler.pycodegen.marshal +compiler.pycodegen.misc +compiler.pycodegen.os +compiler.pycodegen.parse(??) +compiler.pycodegen.pyassem +compiler.pycodegen.struct +compiler.pycodegen.symbols +compiler.pycodegen.syntax +compiler.pycodegen.sys +compiler.pycodegen.walk(??) +compiler.pycodegen.wrap_aug(??) +compiler.pycodegen.wrapper +compiler.symbols +compiler.symbols.ClassScope(??) +compiler.symbols.FunctionScope(??) +compiler.symbols.GenExprScope(??) +compiler.symbols.LambdaScope(??) +compiler.symbols.MANGLE_LEN +compiler.symbols.ModuleScope(??) +compiler.symbols.SC_CELL +compiler.symbols.SC_FREE +compiler.symbols.SC_GLOBAL +compiler.symbols.SC_LOCAL +compiler.symbols.SC_UNKNOWN +compiler.symbols.Scope(??) +compiler.symbols.SymbolVisitor(??) +compiler.symbols.ast +compiler.symbols.list_eq(??) +compiler.symbols.mangle(??) +compiler.symbols.sys +compiler.symbols.types +compiler.syntax +compiler.syntax.SyntaxErrorChecker(??) +compiler.syntax.ast +compiler.syntax.check(??) +compiler.syntax.walk(??) +compiler.transformer +compiler.transformer.Add(??) +compiler.transformer.And(??) +compiler.transformer.AssAttr(??) +compiler.transformer.AssList(??) +compiler.transformer.AssName(??) +compiler.transformer.AssTuple(??) +compiler.transformer.Assert(??) +compiler.transformer.Assign(??) +compiler.transformer.AugAssign(??) +compiler.transformer.Backquote(??) +compiler.transformer.Bitand(??) +compiler.transformer.Bitor(??) +compiler.transformer.Bitxor(??) +compiler.transformer.Break(??) +compiler.transformer.CO_VARARGS +compiler.transformer.CO_VARKEYWORDS +compiler.transformer.CallFunc(??) +compiler.transformer.Class(??) +compiler.transformer.Compare(??) +compiler.transformer.Const(??) +compiler.transformer.Continue(??) +compiler.transformer.Decorators(??) +compiler.transformer.Dict(??) +compiler.transformer.Discard(??) +compiler.transformer.Div(??) +compiler.transformer.Ellipsis(??) +compiler.transformer.EmptyNode(??) +compiler.transformer.Exec(??) +compiler.transformer.Expression(??) +compiler.transformer.FloorDiv(??) +compiler.transformer.For(??) +compiler.transformer.From(??) +compiler.transformer.Function(??) +compiler.transformer.GenExpr(??) +compiler.transformer.GenExprFor(??) +compiler.transformer.GenExprIf(??) +compiler.transformer.GenExprInner(??) +compiler.transformer.Getattr(??) +compiler.transformer.Global(??) +compiler.transformer.If(??) +compiler.transformer.IfExp(??) +compiler.transformer.Import(??) +compiler.transformer.Invert(??) +compiler.transformer.Keyword(??) +compiler.transformer.Lambda(??) +compiler.transformer.LeftShift(??) +compiler.transformer.List(??) +compiler.transformer.ListComp(??) +compiler.transformer.ListCompFor(??) +compiler.transformer.ListCompIf(??) +compiler.transformer.Mod(??) +compiler.transformer.Module(??) +compiler.transformer.Mul(??) +compiler.transformer.Name(??) +compiler.transformer.Node(??) +compiler.transformer.Not(??) +compiler.transformer.OP_APPLY +compiler.transformer.OP_ASSIGN +compiler.transformer.OP_DELETE +compiler.transformer.Or(??) +compiler.transformer.Pass(??) +compiler.transformer.Power(??) +compiler.transformer.Print(??) +compiler.transformer.Printnl(??) +compiler.transformer.Raise(??) +compiler.transformer.Return(??) +compiler.transformer.RightShift(??) +compiler.transformer.Slice(??) +compiler.transformer.Sliceobj(??) +compiler.transformer.Stmt(??) +compiler.transformer.Sub(??) +compiler.transformer.Subscript(??) +compiler.transformer.Transformer(??) +compiler.transformer.TryExcept(??) +compiler.transformer.TryFinally(??) +compiler.transformer.Tuple(??) +compiler.transformer.UnaryAdd(??) +compiler.transformer.UnarySub(??) +compiler.transformer.WalkerError +compiler.transformer.While(??) +compiler.transformer.With(??) +compiler.transformer.Yield(??) +compiler.transformer.asList(??) +compiler.transformer.debug_tree(??) +compiler.transformer.extractLineNo(??) +compiler.transformer.flatten(??) +compiler.transformer.flatten_nodes(??) +compiler.transformer.k +compiler.transformer.name +compiler.transformer.nodes +compiler.transformer.obj(??) +compiler.transformer.parse(??) +compiler.transformer.parseFile(??) +compiler.transformer.parser +compiler.transformer.symbol +compiler.transformer.sys +compiler.transformer.token +compiler.transformer.v +compiler.visitor +compiler.visitor.ASTVisitor(??) +compiler.visitor.ExampleASTVisitor(??) +compiler.visitor.ast +compiler.visitor.dumpNode(??) +compiler.visitor.walk(??) +compiler.walk(??) +complex(real[, imag]) -> complex number +contextlib.GeneratorContextManager +contextlib.closing +contextlib.contextmanager(??) +contextlib.nested(??) +contextlib.sys +cookielib.Absent(??) +cookielib.Cookie(??) +cookielib.CookieJar(??) +cookielib.CookiePolicy(??) +cookielib.DAYS +cookielib.DEFAULT_HTTP_PORT +cookielib.DefaultCookiePolicy(??) +cookielib.EPOCH_YEAR +cookielib.ESCAPED_CHAR_RE +cookielib.FileCookieJar(??) +cookielib.HEADER_ESCAPE_RE +cookielib.HEADER_JOIN_ESCAPE_RE +cookielib.HEADER_QUOTED_VALUE_RE +cookielib.HEADER_TOKEN_RE +cookielib.HEADER_VALUE_RE +cookielib.HTTP_PATH_SAFE +cookielib.IPV4_RE +cookielib.ISO_DATE_RE +cookielib.LOOSE_HTTP_DATE_RE +cookielib.LWPCookieJar(??) +cookielib.LoadError +cookielib.MISSING_FILENAME_TEXT +cookielib.MONTHS +cookielib.MONTHS_LOWER +cookielib.MozillaCookieJar(??) +cookielib.STRICT_DATE_RE +cookielib.TIMEZONE_RE +cookielib.UTC_ZONES +cookielib.WEEKDAY_RE +cookielib.copy +cookielib.cut_port_re +cookielib.debug +cookielib.deepvalues(??) +cookielib.domain_match(??) +cookielib.eff_request_host(??) +cookielib.escape_path(??) +cookielib.http2time(??) +cookielib.httplib +cookielib.is_HDN(??) +cookielib.is_third_party(??) +cookielib.iso2time(??) +cookielib.join_header_words(??) +cookielib.liberal_is_HDN(??) +cookielib.logger +cookielib.lwp_cookie_str(??) +cookielib.month +cookielib.offset_from_tz_string(??) +cookielib.parse_ns_headers(??) +cookielib.re +cookielib.reach(??) +cookielib.request_host(??) +cookielib.request_path(??) +cookielib.request_port(??) +cookielib.split_header_words(??) +cookielib.time +cookielib.time2isoz(??) +cookielib.time2netscape(??) +cookielib.timegm(??) +cookielib.unmatched(??) +cookielib.uppercase_escaped_char(??) +cookielib.urllib +cookielib.urlparse +cookielib.user_domain_match(??) +cookielib.vals_sorted_by_key(??) +copy.Error +copy.PyStringMap +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table +copy.error +copy.name +copy.t +copy_reg.add_extension(??) +copy_reg.clear_extension_cache(??) +copy_reg.constructor(??) +copy_reg.dispatch_table +copy_reg.pickle(??) +copy_reg.pickle_complex(??) +copy_reg.remove_extension(??) +copyright +credits +crypt.crypt(word, salt) -> string +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO([s]) -- Return a StringIO-like stream for reading or writing +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit +csv.get_dialect +csv.list_dialects +csv.re +csv.reader +csv.register_dialect +csv.unregister_dialect +csv.writer +ctypes.ARRAY(??) +ctypes.ArgumentError +ctypes.Array +ctypes.BigEndianStructure +ctypes.CDLL +ctypes.CFUNCTYPE(restype, *argtypes) -> function prototype. +ctypes.DEFAULT_MODE +ctypes.LibraryLoader +ctypes.LittleEndianStructure +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure +ctypes.Union +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance) -> byref-object +ctypes.c_buffer(??) +ctypes.c_byte +ctypes.c_char +ctypes.c_char_p +ctypes.c_double +ctypes.c_float +ctypes.c_int +ctypes.c_int16 +ctypes.c_int32 +ctypes.c_int64 +ctypes.c_int8 +ctypes.c_long +ctypes.c_longlong +ctypes.c_short +ctypes.c_size_t +ctypes.c_ubyte +ctypes.c_uint +ctypes.c_uint16 +ctypes.c_uint32 +ctypes.c_uint64 +ctypes.c_uint8 +ctypes.c_ulong +ctypes.c_ulonglong +ctypes.c_ushort +ctypes.c_void_p +ctypes.c_voidp +ctypes.c_wchar +ctypes.c_wchar_p +ctypes.cast(??) +ctypes.cdll +ctypes.create_string_buffer(aString) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.count([firstval]) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.ensure_utf8(??) +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.ifilter(function or None, sequence) --> ifilter object +ctypes.macholib.dyld.ifilterfalse(function or None, sequence) --> ifilterfalse object +ctypes.macholib.dyld.imap(func, *iterables) --> imap object +ctypes.macholib.dyld.islice(iterable, [start,] stop [, step]) --> islice object +ctypes.macholib.dyld.izip(iter1 [,iter2 [...]]) --> izip object +ctypes.macholib.dyld.os +ctypes.macholib.dyld.repeat(element [,times]) -> create an iterator which returns the element +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dylib +ctypes.macholib.dylib.DYLIB_RE +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework +ctypes.macholib.framework.STRICT_FRAMEWORK_RE +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove +ctypes.memset +ctypes.pointer(??) +ctypes.py_object +ctypes.pydll +ctypes.pythonapi +ctypes.resize +ctypes.set_conversion_mode(encoding, errors) -> (previous-encoding, previous-errors) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util +ctypes.util.errno +ctypes.util.find_library(??) +ctypes.util.os +ctypes.util.re +ctypes.util.sys +ctypes.util.tempfile +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate +curses.beep +curses.can_change_color +curses.cbreak +curses.color_content +curses.color_pair +curses.curs_set +curses.def_prog_mode +curses.def_shell_mode +curses.delay_output +curses.doupdate +curses.echo +curses.endwin +curses.erasechar +curses.error +curses.filter +curses.flash +curses.flushinp +curses.getmouse +curses.getsyx +curses.getwin +curses.halfdelay +curses.has_colors +curses.has_ic +curses.has_il +curses.has_key +curses.has_key.has_key(??) +curses.init_color +curses.init_pair +curses.initscr(??) +curses.intrflush +curses.is_term_resized +curses.isendwin +curses.keyname +curses.killchar +curses.longname +curses.meta +curses.mouseinterval +curses.mousemask +curses.napms +curses.newpad +curses.newwin +curses.nl +curses.nocbreak +curses.noecho +curses.nonl +curses.noqiflush +curses.noraw +curses.pair_content +curses.pair_number +curses.panel +curses.panel.bottom_panel +curses.panel.error +curses.panel.new_panel +curses.panel.top_panel +curses.panel.update_panels +curses.panel.version +curses.putp +curses.qiflush +curses.raw +curses.reset_prog_mode +curses.reset_shell_mode +curses.resetty +curses.resize_term +curses.resizeterm +curses.savetty +curses.setsyx +curses.setupterm +curses.start_color(??) +curses.termattrs +curses.termname +curses.textpad +curses.textpad.Textbox(??) +curses.textpad.ascii +curses.textpad.curses +curses.textpad.rectangle(??) +curses.tigetflag +curses.tigetnum +curses.tigetstr +curses.tparm +curses.typeahead +curses.unctrl +curses.ungetch +curses.ungetmouse +curses.use_default_colors +curses.use_env +curses.version +curses.wrapper(??) +curses.wrapper.func_closure +curses.wrapper.func_code +curses.wrapper.func_defaults +curses.wrapper.func_dict +curses.wrapper.func_doc +curses.wrapper.func_globals +curses.wrapper.func_name +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta +datetime.tzinfo +dbhash.bsddb +dbhash.error +dbhash.open(??) +dbhash.sys +decimal.ALWAYS_ROUND +decimal.BasicContext +decimal.Clamped +decimal.Context +decimal.ConversionSyntax +decimal.Decimal +decimal.DecimalException +decimal.DefaultContext +decimal.DivisionByZero +decimal.DivisionImpossible +decimal.DivisionUndefined +decimal.ExtendedContext +decimal.Inexact +decimal.Inf +decimal.Infsign +decimal.InvalidContext +decimal.InvalidOperation +decimal.NEVER_ROUND +decimal.NaN +decimal.Overflow +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded +decimal.Subnormal +decimal.Underflow +decimal.getcontext(??) +decimal.localcontext(??) +decimal.negInf +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary. +difflib.Differ(??) +difflib.HtmlDiff +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dircache.annotate(??) +dircache.cache +dircache.listdir(??) +dircache.opendir(??) +dircache.os +dircache.reset(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.cmp_op +dis.dis(??) +dis.disassemble(??) +dis.disassemble_string(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.hascompare +dis.hasconst +dis.hasfree +dis.hasjabs +dis.hasjrel +dis.haslocal +dis.hasname +dis.opmap +dis.opname +dis.sys +dis.types +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase +doctest.DocTestFailure +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.StringIO(??) +doctest.Tester(??) +doctest.UnexpectedException +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib +doctest.inspect +doctest.linecache +doctest.master +doctest.os +doctest.pdb +doctest.re +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys +doctest.tempfile +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback +doctest.unittest +doctest.warnings +dumbdbm.UserDict +dumbdbm.error +dumbdbm.open(??) +dummy_thread.LockType +dummy_thread.allocate_lock(??) +dummy_thread.error +dummy_thread.exit(??) +dummy_thread.get_ident(??) +dummy_thread.interrupt_main(??) +dummy_thread.stack_size(??) +dummy_thread.start_new_thread(??) +dummy_thread.warnings +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread +dummy_threading.Timer(??) +dummy_threading.activeCount(??) +dummy_threading.currentThread(??) +dummy_threading.enumerate(??) +dummy_threading.local +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading +email.Charset +email.Encoders +email.Errors +email.FeedParser +email.Generator +email.Header +email.Iterators +email.LazyImporter +email.MIMEAudio +email.MIMEBase +email.MIMEImage +email.MIMEMessage +email.MIMEMultipart +email.MIMENonMultipart +email.MIMEText +email.Message +email.Parser +email.Utils +email.base64MIME +email.base64mime +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64 +email.base64mime.b2a_base64 +email.base64mime.base64_len(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.encode(??) +email.base64mime.encodestring(??) +email.base64mime.fix_eols(??) +email.base64mime.header_encode(??) +email.base64mime.re +email.charset +email.charset.ALIASES +email.charset.BASE64 +email.charset.CHARSETS +email.charset.CODEC_MAP +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.MISC_LEN +email.charset.QP +email.charset.SHORTEST +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email +email.charset.encode_7or8bit(??) +email.charset.errors +email.email +email.encoders +email.encoders.base64 +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors +email.errors.BoundaryError +email.errors.CharsetError +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderParseError +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError +email.errors.MessageParseError +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MultipartConversionError +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.feedparser +email.feedparser.BufferedSubFile +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE +email.feedparser.NLCRE_bol +email.feedparser.NLCRE_crack +email.feedparser.NLCRE_eol +email.feedparser.NeedMoreData +email.feedparser.errors +email.feedparser.headerRE +email.feedparser.message +email.feedparser.re +email.generator +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.Header(??) +email.generator.NL +email.generator.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.generator.UNDERSCORE +email.generator.fcre +email.generator.random +email.generator.re +email.generator.sys +email.generator.time +email.generator.warnings +email.header +email.header.Charset(??) +email.header.Header(??) +email.header.HeaderParseError +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.UEMPTYSTRING +email.header.USASCII +email.header.USPACE +email.header.UTF8 +email.header.binascii +email.header.decode_header(??) +email.header.ecre +email.header.email +email.header.fcre +email.header.make_header(??) +email.header.re +email.importer +email.iterators +email.iterators.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.iterators.body_line_iterator(??) +email.iterators.sys +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.message.binascii +email.message.email +email.message.errors +email.message.paramre +email.message.re +email.message.tspecials +email.message.utils +email.message.uu +email.message.warnings +email.message_from_file(??) +email.message_from_string(??) +email.mime +email.mime.Audio +email.mime.Base +email.mime.Image +email.mime.Message +email.mime.Multipart +email.mime.NonMultipart +email.mime.Text +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders +email.mime.audio +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.mime.audio.encoders +email.mime.audio.sndhdr +email.mime.base +email.mime.base.MIMEBase(??) +email.mime.base.message +email.mime.image +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders +email.mime.image.imghdr +email.mime.message +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message +email.mime.multipart +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors +email.mime.text +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.mime.text.encode_7or8bit(??) +email.parser +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Message(??) +email.parser.Parser(??) +email.parser.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.parser.warnings +email.quopriMIME +email.quoprimime +email.quoprimime.CRLF +email.quoprimime.MISC_LEN +email.quoprimime.NL +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_quopri_check(??) +email.quoprimime.body_quopri_len(??) +email.quoprimime.bqre +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.encode(??) +email.quoprimime.encodestring(??) +email.quoprimime.fix_eols(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_quopri_check(??) +email.quoprimime.header_quopri_len(??) +email.quoprimime.hexdigits +email.quoprimime.hqre +email.quoprimime.quote(??) +email.quoprimime.re +email.quoprimime.unquote(??) +email.sys +email.utils +email.utils.COMMASPACE +email.utils.CRLF +email.utils.EMPTYSTRING +email.utils.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.base64 +email.utils.collapse_rfc2231_value(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre +email.utils.encode_rfc2231(??) +email.utils.escapesre +email.utils.fix_eols(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random +email.utils.re +email.utils.rfc2231_continuation +email.utils.socket +email.utils.specialsre +email.utils.time +email.utils.unquote(??) +email.utils.urllib +email.utils.warnings +enumerate(iterable) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EADV +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EBADE +errno.EBADF +errno.EBADFD +errno.EBADMSG +errno.EBADR +errno.EBADRQC +errno.EBADSLT +errno.EBFONT +errno.EBUSY +errno.ECHILD +errno.ECHRNG +errno.ECOMM +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDEADLOCK +errno.EDESTADDRREQ +errno.EDOM +errno.EDOTDOT +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.EISNAM +errno.EL2HLT +errno.EL2NSYNC +errno.EL3HLT +errno.EL3RST +errno.ELIBACC +errno.ELIBBAD +errno.ELIBEXEC +errno.ELIBMAX +errno.ELIBSCN +errno.ELNRNG +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENAVAIL +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOANO +errno.ENOBUFS +errno.ENOCSI +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENONET +errno.ENOPKG +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTNAM +errno.ENOTSOCK +errno.ENOTTY +errno.ENOTUNIQ +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.ERANGE +errno.EREMCHG +errno.EREMOTE +errno.EREMOTEIO +errno.ERESTART +errno.EROFS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESRMNT +errno.ESTALE +errno.ESTRPIPE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUCLEAN +errno.EUNATCH +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.EXFULL +errno.errorcode +eval(source[, globals[, locals]]) -> value +exceptions.ArithmeticError +exceptions.AssertionError +exceptions.AttributeError +exceptions.BaseException +exceptions.DeprecationWarning +exceptions.EOFError +exceptions.EnvironmentError +exceptions.Exception +exceptions.FloatingPointError +exceptions.FutureWarning +exceptions.GeneratorExit +exceptions.IOError +exceptions.ImportError +exceptions.ImportWarning +exceptions.IndentationError +exceptions.IndexError +exceptions.KeyError +exceptions.KeyboardInterrupt +exceptions.LookupError +exceptions.MemoryError +exceptions.NameError +exceptions.NotImplementedError +exceptions.OSError +exceptions.OverflowError +exceptions.PendingDeprecationWarning +exceptions.ReferenceError +exceptions.RuntimeError +exceptions.RuntimeWarning +exceptions.StandardError +exceptions.StopIteration +exceptions.SyntaxError +exceptions.SyntaxWarning +exceptions.SystemError +exceptions.SystemExit +exceptions.TabError +exceptions.TypeError +exceptions.UnboundLocalError +exceptions.UnicodeDecodeError +exceptions.UnicodeEncodeError +exceptions.UnicodeError +exceptions.UnicodeTranslateError +exceptions.UnicodeWarning +exceptions.UserWarning +exceptions.ValueError +exceptions.Warning +exceptions.ZeroDivisionError +execfile(filename[, globals[, locals]]) +exit +fcntl.DN_ACCESS +fcntl.DN_ATTRIB +fcntl.DN_CREATE +fcntl.DN_DELETE +fcntl.DN_MODIFY +fcntl.DN_MULTISHOT +fcntl.DN_RENAME +fcntl.FD_CLOEXEC +fcntl.F_DUPFD +fcntl.F_EXLCK +fcntl.F_GETFD +fcntl.F_GETFL +fcntl.F_GETLEASE +fcntl.F_GETLK +fcntl.F_GETLK64 +fcntl.F_GETOWN +fcntl.F_GETSIG +fcntl.F_NOTIFY +fcntl.F_RDLCK +fcntl.F_SETFD +fcntl.F_SETFL +fcntl.F_SETLEASE +fcntl.F_SETLK +fcntl.F_SETLK64 +fcntl.F_SETLKW +fcntl.F_SETLKW64 +fcntl.F_SETOWN +fcntl.F_SETSIG +fcntl.F_SHLCK +fcntl.F_UNLCK +fcntl.F_WRLCK +fcntl.I_ATMARK +fcntl.I_CANPUT +fcntl.I_CKBAND +fcntl.I_FDINSERT +fcntl.I_FIND +fcntl.I_FLUSH +fcntl.I_FLUSHBAND +fcntl.I_GETBAND +fcntl.I_GETCLTIME +fcntl.I_GETSIG +fcntl.I_GRDOPT +fcntl.I_GWROPT +fcntl.I_LINK +fcntl.I_LIST +fcntl.I_LOOK +fcntl.I_NREAD +fcntl.I_PEEK +fcntl.I_PLINK +fcntl.I_POP +fcntl.I_PUNLINK +fcntl.I_PUSH +fcntl.I_RECVFD +fcntl.I_SENDFD +fcntl.I_SETCLTIME +fcntl.I_SETSIG +fcntl.I_SRDOPT +fcntl.I_STR +fcntl.I_SWROPT +fcntl.I_UNLINK +fcntl.LOCK_EX +fcntl.LOCK_MAND +fcntl.LOCK_NB +fcntl.LOCK_READ +fcntl.LOCK_RW +fcntl.LOCK_SH +fcntl.LOCK_UN +fcntl.LOCK_WRITE +fcntl.fcntl(fd, opt, [arg]) +fcntl.flock(fd, operation) +fcntl.ioctl(fd, opt[, arg[, mutate_flag]]) +fcntl.lockf (fd, operation, length=0, start=0, whence=0) +file(name[, mode[, buffering]]) -> file object +filecmp.BUFSIZE +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.ifilter(function or None, sequence) --> ifilter object +filecmp.ifilterfalse(function or None, sequence) --> ifilterfalse object +filecmp.imap(func, *iterables) --> imap object +filecmp.izip(iter1 [,iter2 [...]]) --> izip object +filecmp.os +filecmp.stat +filecmp.warnings +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input([files[, inplace[, backup[, mode[, openhook]]]]]) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os +fileinput.sys +filter(function or None, sequence) -> list, tuple, or string +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.re +fnmatch.translate(??) +formatter.AS_IS +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys +formatter.test(??) +fpformat.NotANumber +fpformat.decoder +fpformat.extract(??) +fpformat.fix(??) +fpformat.re +fpformat.roundfrac(??) +fpformat.sci(??) +fpformat.test(??) +fpformat.unexpo(??) +frozenset(iterable) --> frozenset object +ftplib.CRLF +ftplib.Error +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors +ftplib.error_perm +ftplib.error_proto +ftplib.error_reply +ftplib.error_temp +ftplib.ftpcp(??) +ftplib.os +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket +ftplib.sys +ftplib.test(??) +functools.WRAPPER_ASSIGNMENTS +functools.WRAPPER_UPDATES +functools.partial(func, *args, **keywords) - new function with partial application +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_INSTANCES +gc.DEBUG_LEAK +gc.DEBUG_OBJECTS +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gdbm.error +gdbm.open(filename, [flags, [mode]]) -> dbm_object +gdbm.open_flags +getattr(object, name[, default]) -> value +getopt.GetoptError +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os +getopt.short_has_arg(??) +getpass.default_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.sys +getpass.termios +getpass.unix_getpass(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale +gettext.ngettext(??) +gettext.os +gettext.re +gettext.struct +gettext.sys +gettext.test(??) +gettext.textdomain(??) +gettext.translation(??) +glob.fnmatch +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check +glob.os +glob.re +globals() -> dictionary +gopherlib.A_BINARY +gopherlib.A_CALENDAR +gopherlib.A_CSO +gopherlib.A_DUPLICATE +gopherlib.A_ERROR +gopherlib.A_EVENT +gopherlib.A_GIF +gopherlib.A_HTML +gopherlib.A_IMAGE +gopherlib.A_INDEX +gopherlib.A_MACBINHEX +gopherlib.A_MENU +gopherlib.A_MIME +gopherlib.A_PCBINHEX +gopherlib.A_PLUS_IMAGE +gopherlib.A_PLUS_MOVIE +gopherlib.A_PLUS_SOUND +gopherlib.A_QUERY +gopherlib.A_SOUND +gopherlib.A_TELNET +gopherlib.A_TEXT +gopherlib.A_TN3270 +gopherlib.A_UUENCODED +gopherlib.A_WHOIS +gopherlib.A_WWW +gopherlib.CRLF +gopherlib.DEF_HOST +gopherlib.DEF_PORT +gopherlib.DEF_SELECTOR +gopherlib.TAB +gopherlib.get_alt_binary(??) +gopherlib.get_alt_textfile(??) +gopherlib.get_binary(??) +gopherlib.get_directory(??) +gopherlib.get_textfile(??) +gopherlib.path_to_datatype_name(??) +gopherlib.path_to_selector(??) +gopherlib.send_query(??) +gopherlib.send_selector(??) +gopherlib.test(??) +gopherlib.type_to_name(??) +gopherlib.warnings +grp.getgrall() -> list of tuples +grp.getgrgid(id) -> tuple +grp.getgrnam(name) -> tuple +grp.struct_group +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.LOWU32(??) +gzip.READ +gzip.U32(??) +gzip.WRITE +gzip.open(??) +gzip.read32(??) +gzip.struct +gzip.sys +gzip.time +gzip.write32(??) +gzip.write32u(??) +gzip.zlib +hasattr(object, name) -> bool +hash(object) -> integer +hashlib.md5 +hashlib.new(name, string='') - Return a new hashing object using the named algorithm; +hashlib.sha1 +hashlib.sha224 +hashlib.sha256 +hashlib.sha384 +hashlib.sha512 +heapq.bisect +heapq.count([firstval]) --> count object +heapq.heapify +heapq.heappop +heapq.heappush +heapq.heapreplace +heapq.imap(func, *iterables) --> imap object +heapq.islice(iterable, [start,] stop [, step]) --> islice object +heapq.itemgetter(item, ...) --> itemgetter object +heapq.izip(iter1 [,iter2 [...]]) --> izip object +heapq.neg(a) -- Same as -a. +heapq.nlargest(??) +heapq.nsmallest(??) +heapq.repeat(element [,times]) -> create an iterator which returns the element +heapq.tee(iterable, n=2) --> tuple of n independent iterators. +help +hex(number) -> string +hmac.HMAC(??) +hmac.digest_size +hmac.new(??) +hotshot.Profile(??) +hotshot.ProfilerError +hotshot.log +hotshot.log.ENTER +hotshot.log.EXIT +hotshot.log.LINE +hotshot.log.LogReader(??) +hotshot.log.WHAT_ADD_INFO +hotshot.log.WHAT_DEFINE_FILE +hotshot.log.WHAT_DEFINE_FUNC +hotshot.log.WHAT_ENTER +hotshot.log.WHAT_EXIT +hotshot.log.WHAT_LINENO +hotshot.log.os +hotshot.log.parser +hotshot.log.symbol +hotshot.log.sys +hotshot.stats +hotshot.stats.ENTER +hotshot.stats.EXIT +hotshot.stats.FakeCode(??) +hotshot.stats.FakeFrame(??) +hotshot.stats.Profile(??) +hotshot.stats.StatsLoader(??) +hotshot.stats.hotshot +hotshot.stats.load(??) +hotshot.stats.profile +hotshot.stats.pstats +hotshot.stones +hotshot.stones.errno +hotshot.stones.hotshot +hotshot.stones.main(??) +hotshot.stones.os +hotshot.stones.sys +hotshot.stones.test +htmlentitydefs.codepoint2name +htmlentitydefs.entitydefs +htmlentitydefs.name2codepoint +htmllib.AS_IS +htmllib.HTMLParseError +htmllib.HTMLParser(??) +htmllib.sgmllib +htmllib.test(??) +httplib.ACCEPTED +httplib.BAD_GATEWAY +httplib.BAD_REQUEST +httplib.BadStatusLine +httplib.CONFLICT +httplib.CONTINUE +httplib.CREATED +httplib.CannotSendHeader +httplib.CannotSendRequest +httplib.EXPECTATION_FAILED +httplib.FAILED_DEPENDENCY +httplib.FORBIDDEN +httplib.FOUND +httplib.FakeSocket(??) +httplib.GATEWAY_TIMEOUT +httplib.GONE +httplib.HTTP(??) +httplib.HTTPConnection(??) +httplib.HTTPException +httplib.HTTPMessage(??) +httplib.HTTPResponse(??) +httplib.HTTPS(??) +httplib.HTTPSConnection(??) +httplib.HTTPS_PORT +httplib.HTTP_PORT +httplib.HTTP_VERSION_NOT_SUPPORTED +httplib.IM_USED +httplib.INSUFFICIENT_STORAGE +httplib.INTERNAL_SERVER_ERROR +httplib.ImproperConnectionState +httplib.IncompleteRead +httplib.InvalidURL +httplib.LENGTH_REQUIRED +httplib.LOCKED +httplib.LineAndFileWrapper(??) +httplib.MAXAMOUNT +httplib.METHOD_NOT_ALLOWED +httplib.MOVED_PERMANENTLY +httplib.MULTIPLE_CHOICES +httplib.MULTI_STATUS +httplib.NON_AUTHORITATIVE_INFORMATION +httplib.NOT_ACCEPTABLE +httplib.NOT_EXTENDED +httplib.NOT_FOUND +httplib.NOT_IMPLEMENTED +httplib.NOT_MODIFIED +httplib.NO_CONTENT +httplib.NotConnected +httplib.OK +httplib.PARTIAL_CONTENT +httplib.PAYMENT_REQUIRED +httplib.PRECONDITION_FAILED +httplib.PROCESSING +httplib.PROXY_AUTHENTICATION_REQUIRED +httplib.REQUESTED_RANGE_NOT_SATISFIABLE +httplib.REQUEST_ENTITY_TOO_LARGE +httplib.REQUEST_TIMEOUT +httplib.REQUEST_URI_TOO_LONG +httplib.RESET_CONTENT +httplib.ResponseNotReady +httplib.SEE_OTHER +httplib.SERVICE_UNAVAILABLE +httplib.SSLFile(??) +httplib.SWITCHING_PROTOCOLS +httplib.SharedSocket(??) +httplib.SharedSocketClient(??) +httplib.StringIO([s]) -- Return a StringIO-like stream for reading or writing +httplib.TEMPORARY_REDIRECT +httplib.UNAUTHORIZED +httplib.UNPROCESSABLE_ENTITY +httplib.UNSUPPORTED_MEDIA_TYPE +httplib.UPGRADE_REQUIRED +httplib.USE_PROXY +httplib.UnimplementedFileMode +httplib.UnknownProtocol +httplib.UnknownTransferEncoding +httplib.errno +httplib.error +httplib.mimetools +httplib.responses +httplib.socket +httplib.test(??) +httplib.urlsplit(??) +id(object) -> integer +ihooks.BUILTIN_MODULE +ihooks.BasicModuleImporter(??) +ihooks.BasicModuleLoader(??) +ihooks.C_BUILTIN +ihooks.C_EXTENSION +ihooks.FROZEN_MODULE +ihooks.FancyModuleLoader(??) +ihooks.Hooks(??) +ihooks.ModuleImporter(??) +ihooks.ModuleLoader(??) +ihooks.PKG_DIRECTORY +ihooks.PY_COMPILED +ihooks.PY_FROZEN +ihooks.PY_SOURCE +ihooks.VERBOSE +ihooks.current_importer +ihooks.default_importer +ihooks.imp +ihooks.install(??) +ihooks.os +ihooks.sys +ihooks.uninstall(??) +imaplib.AllowedVersions +imaplib.CRLF +imaplib.Commands +imaplib.Continuation +imaplib.Debug +imaplib.Flags +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate +imaplib.Internaldate2tuple(??) +imaplib.Literal +imaplib.MapCRLF +imaplib.Mon2num +imaplib.ParseFlags(??) +imaplib.Response_code +imaplib.Time2Internaldate(??) +imaplib.Untagged_response +imaplib.Untagged_status +imaplib.binascii +imaplib.os +imaplib.random +imaplib.re +imaplib.socket +imaplib.sys +imaplib.time +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exif(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.acquire_lock() -> None +imp.find_module(name, [path]) -> (file, filename, (suffix, mode, type)) +imp.get_frozen_object +imp.get_magic() -> string +imp.get_suffixes() -> [(suffix, mode, type), ...] +imp.init_builtin +imp.init_frozen +imp.is_builtin +imp.is_frozen +imp.load_compiled +imp.load_dynamic +imp.load_module(name, file, filename, (suffix, mode, type)) -> module +imp.load_package +imp.load_source +imp.lock_held() -> boolean +imp.new_module(name) -> module +imp.release_lock() -> None +imputil.BuiltinImporter(??) +imputil.DynLoadSuffixImporter(??) +imputil.ImportManager(??) +imputil.Importer(??) +imputil.imp +imputil.marshal +imputil.py_suffix_importer(??) +imputil.struct +imputil.sys +input([prompt]) -> value +inspect.BlockFinder(??) +inspect.CO_NEWLOCALS +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.EndOfBlock +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.classify_class_attrs(??) +inspect.currentframe +inspect.dis +inspect.findsource(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getblock(??) +inspect.getclasstree(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.imp +inspect.indentsize(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.joinseq(??) +inspect.linecache +inspect.modulesbyfile +inspect.os +inspect.re +inspect.stack(??) +inspect.string +inspect.strseq(??) +inspect.sys +inspect.tokenize +inspect.trace(??) +inspect.types +inspect.walktree(??) +int(x[, base]) -> integer +intern(string) -> string +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(collection) -> iterator +itertools.chain(*iterables) --> chain object +itertools.count([firstval]) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.ifilter(function or None, sequence) --> ifilter object +itertools.ifilterfalse(function or None, sequence) --> ifilterfalse object +itertools.imap(func, *iterables) --> imap object +itertools.islice(iterable, [start,] stop [, step]) --> islice object +itertools.izip(iter1 [,iter2 [...]]) --> izip object +itertools.repeat(element [,times]) -> create an iterator which returns the element +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +keyword.iskeyword +keyword.kwlist +keyword.main(??) +len(object) -> integer +license +linecache.cache +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os +linecache.sys +linecache.updatecache(??) +linuxaudiodev.AFMT_A_LAW +linuxaudiodev.AFMT_MU_LAW +linuxaudiodev.AFMT_S16_BE +linuxaudiodev.AFMT_S16_LE +linuxaudiodev.AFMT_S16_NE +linuxaudiodev.AFMT_S8 +linuxaudiodev.AFMT_U16_BE +linuxaudiodev.AFMT_U16_LE +linuxaudiodev.AFMT_U8 +linuxaudiodev.error +linuxaudiodev.open +list() -> new list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.bind_textdomain_codeset(domain, codeset) -> string +locale.bindtextdomain(domain, dir) -> string +locale.currency(??) +locale.dcgettext(domain, msg, category) -> string +locale.dgettext(domain, msg) -> string +locale.encodings +locale.format(??) +locale.format_string(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.gettext(msg) -> string +locale.locale_alias +locale.locale_encoding_alias +locale.localeconv +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.operator +locale.re +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll +locale.strxfrm +locale.sys +locale.textdomain(domain) -> string +locale.windows_locale +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.Manager(??) +logging.NOTSET +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StreamHandler(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit +logging.basicConfig(??) +logging.cStringIO +logging.codecs +logging.config +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.fileConfig(??) +logging.config.listen(??) +logging.config.logging +logging.config.os +logging.config.socket +logging.config.stopListening(??) +logging.config.string +logging.config.struct +logging.config.sys +logging.config.thread +logging.config.threading +logging.config.traceback +logging.config.types +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.cPickle +logging.handlers.codecs +logging.handlers.glob +logging.handlers.logging +logging.handlers.os +logging.handlers.socket +logging.handlers.string +logging.handlers.struct +logging.handlers.sys +logging.handlers.time +logging.handlers.types +logging.info(??) +logging.log(??) +logging.logProcesses +logging.logThreads +logging.makeLogRecord(??) +logging.os +logging.raiseExceptions +logging.root +logging.setLoggerClass(??) +logging.shutdown(??) +logging.string +logging.sys +logging.thread +logging.threading +logging.time +logging.traceback +logging.types +logging.warn(??) +logging.warning(??) +long(x[, base]) -> integer +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(??) +macpath.S_ISCHR(??) +macpath.S_ISDIR(??) +macpath.S_ISFIFO(??) +macpath.S_ISGID +macpath.S_ISLNK(??) +macpath.S_ISREG(??) +macpath.S_ISSOCK(??) +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.abspath(??) +macpath.altsep +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error +macpath.normcase(??) +macpath.normpath(??) +macpath.os +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames +macpath.walk(??) +macurl2path.os +macurl2path.pathname2url(??) +macurl2path.test(??) +macurl2path.url2pathname(??) +macurl2path.urllib +mailbox.Babyl(??) +mailbox.BabylMailbox(??) +mailbox.BabylMessage(??) +mailbox.Error +mailbox.ExternalClashError +mailbox.FormatError +mailbox.MH(??) +mailbox.MHMailbox(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.MmdfMailbox(??) +mailbox.NoSuchMailboxError +mailbox.NotEmptyError +mailbox.PortableUnixMailbox(??) +mailbox.StringIO +mailbox.UnixMailbox(??) +mailbox.calendar +mailbox.copy +mailbox.email +mailbox.errno +mailbox.fcntl +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os +mailbox.rfc822 +mailbox.socket +mailbox.sys +mailbox.time +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(function, sequence[, sequence, ...]) -> list +markupbase.ParserBase(??) +marshal.dump +marshal.dumps +marshal.load +marshal.loads +marshal.version +math.acos(x) +math.asin(x) +math.atan(x) +math.atan2(y, x) +math.ceil(x) +math.cos(x) +math.cosh(x) +math.degrees(x) -> converts angle x from radians to degrees +math.e +math.exp(x) +math.fabs(x) +math.floor(x) +math.fmod(x,y) +math.frexp(x) +math.hypot(x,y) +math.ldexp(x, i) -> x * (2**i) +math.log(x[, base]) -> the logarithm of x to the given base. +math.log10(x) -> the base 10 logarithm of x. +math.modf(x) +math.pi +math.pow(x,y) +math.radians(x) -> converts angle x from degrees to radians +math.sin(x) +math.sinh(x) +math.sqrt(x) +math.tan(x) +math.tanh(x) +max(iterable[, key=func]) -> value +md5.blocksize +md5.digest_size +md5.md5 +md5.new +mhlib.Error +mhlib.FOLDER_PROTECT +mhlib.Folder(??) +mhlib.IntSet(??) +mhlib.MH(??) +mhlib.MH_PROFILE +mhlib.MH_SEQUENCES +mhlib.Message(??) +mhlib.PATH +mhlib.SubMessage(??) +mhlib.bisect +mhlib.isnumeric(??) +mhlib.mimetools +mhlib.multifile +mhlib.numericprog +mhlib.os +mhlib.pickline(??) +mhlib.re +mhlib.shutil +mhlib.sys +mhlib.test(??) +mhlib.updateline(??) +mimetools.Message(??) +mimetools.choose_boundary(??) +mimetools.copybinary(??) +mimetools.copyliteral(??) +mimetools.decode(??) +mimetools.decodetab +mimetools.encode(??) +mimetools.encodetab +mimetools.os +mimetools.pipethrough(??) +mimetools.pipeto(??) +mimetools.rfc822 +mimetools.tempfile +mimetools.uudecode_pipe +mimetypes.MimeTypes(??) +mimetypes.add_type +mimetypes.common_types +mimetypes.encodings_map +mimetypes.guess_all_extensions +mimetypes.guess_extension +mimetypes.guess_type +mimetypes.init(??) +mimetypes.inited +mimetypes.knownfiles +mimetypes.os +mimetypes.posixpath +mimetypes.read_mime_types(??) +mimetypes.suffix_map +mimetypes.types_map +mimetypes.urllib +mimify.CHARSET +mimify.File(??) +mimify.HeaderFile(??) +mimify.MAXLEN +mimify.QUOTE +mimify.base64_re +mimify.chrset +mimify.cte +mimify.he +mimify.iso_char +mimify.mime_char +mimify.mime_code +mimify.mime_decode(??) +mimify.mime_decode_header(??) +mimify.mime_encode(??) +mimify.mime_encode_header(??) +mimify.mime_head +mimify.mime_header +mimify.mime_header_char +mimify.mimify(??) +mimify.mimify_part(??) +mimify.mp +mimify.mv +mimify.qp +mimify.re +mimify.repl +mimify.sys +mimify.unmimify(??) +mimify.unmimify_part(??) +min(iterable[, key=func]) -> value +mmap.ACCESS_COPY +mmap.ACCESS_READ +mmap.ACCESS_WRITE +mmap.MAP_ANON +mmap.MAP_ANONYMOUS +mmap.MAP_DENYWRITE +mmap.MAP_EXECUTABLE +mmap.MAP_PRIVATE +mmap.MAP_SHARED +mmap.PAGESIZE +mmap.PROT_EXEC +mmap.PROT_READ +mmap.PROT_WRITE +mmap.error +mmap.mmap +modulefinder.AddPackagePath(??) +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.READ_MODE +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS +modulefinder.dis +modulefinder.imp +modulefinder.marshal +modulefinder.new +modulefinder.os +modulefinder.packagePathMap +modulefinder.replacePackageMap +modulefinder.sys +modulefinder.test(??) +multifile.Error +multifile.MultiFile(??) +mutex.deque(iterable) --> deque object +mutex.mutex(??) +netrc.NetrcParseError +netrc.netrc(??) +netrc.os +netrc.shlex +new.classobj(name, bases, dict) +new.code +new.function(code, globals[, name[, argdefs[, closure]]]) +new.instance(class[, dict]) +new.instancemethod(function, instance, class) +new.module(name[, doc]) +nis.cat(map, domain = defaultdomain) +nis.error +nis.get_default_domain() -> str +nis.maps(domain = defaultdomain) +nis.match(key, map, domain = defaultdomain) +nntplib.CRLF +nntplib.LONGRESP +nntplib.NNTP(??) +nntplib.NNTPDataError +nntplib.NNTPError +nntplib.NNTPPermanentError +nntplib.NNTPProtocolError +nntplib.NNTPReplyError +nntplib.NNTPTemporaryError +nntplib.NNTP_PORT +nntplib.error_data +nntplib.error_perm +nntplib.error_proto +nntplib.error_reply +nntplib.error_temp +nntplib.re +nntplib.socket +ntpath.abspath(??) +ntpath.altsep +ntpath.basename(??) +ntpath.commonprefix(??) +ntpath.curdir +ntpath.defpath +ntpath.devnull +ntpath.dirname(??) +ntpath.exists(??) +ntpath.expanduser(??) +ntpath.expandvars(??) +ntpath.extsep +ntpath.getatime(??) +ntpath.getctime(??) +ntpath.getmtime(??) +ntpath.getsize(??) +ntpath.isabs(??) +ntpath.isdir(??) +ntpath.isfile(??) +ntpath.islink(??) +ntpath.ismount(??) +ntpath.join(??) +ntpath.lexists(??) +ntpath.normcase(??) +ntpath.normpath(??) +ntpath.os +ntpath.pardir +ntpath.pathsep +ntpath.realpath(??) +ntpath.sep +ntpath.split(??) +ntpath.splitdrive(??) +ntpath.splitext(??) +ntpath.splitunc(??) +ntpath.stat +ntpath.supports_unicode_filenames +ntpath.sys +ntpath.walk(??) +nturl2path.pathname2url(??) +nturl2path.url2pathname(??) +object +oct(number) -> string +opcode.EXTENDED_ARG +opcode.HAVE_ARGUMENT +opcode.cmp_op +opcode.hascompare +opcode.hasconst +opcode.hasfree +opcode.hasjabs +opcode.hasjrel +opcode.haslocal +opcode.hasname +opcode.opmap +opcode.opname +open(name[, mode[, buffering]]) -> file object +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.delslice(a, b, c) -- Same as del a[b:c]. +operator.div(a, b) -- Same as a / b when __future__.division is not in effect. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.getslice(a, b, c) -- Same as a[b:c]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(a, b) -- Same as a += b. +operator.iand(a, b) -- Same as a &= b. +operator.iconcat(a, b) -- Same as a += b, for a and b sequences. +operator.idiv(a, b) -- Same as a /= b when __future__.division is not in effect. +operator.ifloordiv(a, b) -- Same as a //= b. +operator.ilshift(a, b) -- Same as a <<= b. +operator.imod(a, b) -- Same as a %= b. +operator.imul(a, b) -- Same as a *= b. +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(a, b) -- Same as a |= b. +operator.ipow(a, b) -- Same as a **= b. +operator.irepeat(a, b) -- Same as a *= b, where a is a sequence, and b is an integer. +operator.irshift(a, b) -- Same as a >>= b. +operator.isCallable(a) -- Same as callable(a). +operator.isMappingType(a) -- Return True if a has a mapping type, False otherwise. +operator.isNumberType(a) -- Return True if a has a numeric type, False otherwise. +operator.isSequenceType(a) -- Return True if a has a sequence type, False otherwise. +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(a, b) -- Same as a -= b. +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(a, b) -- Same as a /= b when __future__.division is in effect. +operator.ixor(a, b) -- Same as a ^= b. +operator.le(a, b) -- Same as a<=b. +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a> b. +operator.sequenceIncludes(a, b) -- Same as b in a (note reversed operands; deprecated). +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.setslice(a, b, c, d) -- Same as a[b:c] = d. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b when __future__.division is in effect. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError +optparse.BadOptionError +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT +optparse.OptParseError +optparse.Option(??) +optparse.OptionConflictError +optparse.OptionContainer(??) +optparse.OptionError +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.isbasestring(??) +optparse.make_option(??) +optparse.os +optparse.sys +optparse.textwrap +optparse.types +ord(c) -> integer +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_OK +os.NGROUPS_MAX +os.O_APPEND +os.O_CREAT +os.O_DIRECT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_LARGEFILE +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_RSYNC +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.P_NOWAIT +os.P_NOWAITO +os.P_WAIT +os.R_OK +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.TMP_MAX +os.UserDict +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(path, mode) -> True if granted, False otherwise +os.altsep +os.chdir(path) +os.chmod(path, mode) +os.chown(path, uid, gid) +os.chroot(path) +os.close(fd) +os.confstr(name) -> string +os.confstr_names +os.ctermid() -> string +os.curdir +os.defpath +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ +os.error +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(??) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fildes) +os.fdatasync(fildes) +os.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.getcwd() -> path +os.getcwdu() -> path +os.getegid() -> egid +os.getenv(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getsid(pid) -> sid +os.getuid() -> uid +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst) +os.listdir(path) -> list_of_strings +os.lseek(fd, pos, how) -> newpos +os.lstat(path) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0777]) +os.minor(device) -> minor number +os.mkdir(path [, mode=0777]) +os.mkfifo(filename [, mode=0666]) +os.mknod(filename [, mode=0600, device]) +os.name +os.nice(inc) -> new_priority +os.open(filename, flag [, mode=0777]) -> fd +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path +os.pathconf(path, name) -> integer +os.pathconf_names +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(command [, mode='r' [, bufsize]]) -> pipe +os.popen2(??) +os.popen3(??) +os.popen4(??) +os.putenv(key, value) +os.read(fd, buffersize) -> string +os.readlink(path) -> path +os.remove(path) +os.removedirs(path) +os.rename(old, new) +os.renames(old, new) +os.rmdir(path) +os.sep +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setregid(rgid, egid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.stat(path) -> stat result +os.stat_float_times([newval]) -> oldval +os.stat_result +os.statvfs(path) -> statvfs result +os.statvfs_result +os.strerror(code) -> string +os.symlink(src, dst) +os.sys +os.sysconf(name) -> integer +os.sysconf_names +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.tempnam([dir[, prefix]]) -> string +os.times() -> (utime, stime, cutime, cstime, elapsed_time) +os.tmpfile() -> file object +os.tmpnam() -> string +os.ttyname(fd) -> string +os.umask(new_mask) -> old_mask +os.uname() -> (sysname, nodename, release, version, machine) +os.unlink(path) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, (atime, mtime)) +os.wait() -> (pid, status) +os.wait3(options) -> (pid, status, rusage) +os.wait4(pid, options) -> (pid, status, rusage) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, string) -> byteswritten +os2emxpath.abspath(??) +os2emxpath.altsep +os2emxpath.basename(??) +os2emxpath.commonprefix(??) +os2emxpath.curdir +os2emxpath.defpath +os2emxpath.devnull +os2emxpath.dirname(??) +os2emxpath.exists(??) +os2emxpath.expanduser(??) +os2emxpath.expandvars(??) +os2emxpath.extsep +os2emxpath.getatime(??) +os2emxpath.getctime(??) +os2emxpath.getmtime(??) +os2emxpath.getsize(??) +os2emxpath.isabs(??) +os2emxpath.isdir(??) +os2emxpath.isfile(??) +os2emxpath.islink(??) +os2emxpath.ismount(??) +os2emxpath.join(??) +os2emxpath.lexists(??) +os2emxpath.normcase(??) +os2emxpath.normpath(??) +os2emxpath.os +os2emxpath.pardir +os2emxpath.pathsep +os2emxpath.realpath(??) +os2emxpath.sep +os2emxpath.split(??) +os2emxpath.splitdrive(??) +os2emxpath.splitext(??) +os2emxpath.splitunc(??) +os2emxpath.stat +os2emxpath.supports_unicode_filenames +os2emxpath.walk(??) +ossaudiodev.AFMT_AC3 +ossaudiodev.AFMT_A_LAW +ossaudiodev.AFMT_IMA_ADPCM +ossaudiodev.AFMT_MPEG +ossaudiodev.AFMT_MU_LAW +ossaudiodev.AFMT_QUERY +ossaudiodev.AFMT_S16_BE +ossaudiodev.AFMT_S16_LE +ossaudiodev.AFMT_S16_NE +ossaudiodev.AFMT_S8 +ossaudiodev.AFMT_U16_BE +ossaudiodev.AFMT_U16_LE +ossaudiodev.AFMT_U8 +ossaudiodev.OSSAudioError +ossaudiodev.SNDCTL_COPR_HALT +ossaudiodev.SNDCTL_COPR_LOAD +ossaudiodev.SNDCTL_COPR_RCODE +ossaudiodev.SNDCTL_COPR_RCVMSG +ossaudiodev.SNDCTL_COPR_RDATA +ossaudiodev.SNDCTL_COPR_RESET +ossaudiodev.SNDCTL_COPR_RUN +ossaudiodev.SNDCTL_COPR_SENDMSG +ossaudiodev.SNDCTL_COPR_WCODE +ossaudiodev.SNDCTL_COPR_WDATA +ossaudiodev.SNDCTL_DSP_BIND_CHANNEL +ossaudiodev.SNDCTL_DSP_CHANNELS +ossaudiodev.SNDCTL_DSP_GETBLKSIZE +ossaudiodev.SNDCTL_DSP_GETCAPS +ossaudiodev.SNDCTL_DSP_GETCHANNELMASK +ossaudiodev.SNDCTL_DSP_GETFMTS +ossaudiodev.SNDCTL_DSP_GETIPTR +ossaudiodev.SNDCTL_DSP_GETISPACE +ossaudiodev.SNDCTL_DSP_GETODELAY +ossaudiodev.SNDCTL_DSP_GETOPTR +ossaudiodev.SNDCTL_DSP_GETOSPACE +ossaudiodev.SNDCTL_DSP_GETSPDIF +ossaudiodev.SNDCTL_DSP_GETTRIGGER +ossaudiodev.SNDCTL_DSP_MAPINBUF +ossaudiodev.SNDCTL_DSP_MAPOUTBUF +ossaudiodev.SNDCTL_DSP_NONBLOCK +ossaudiodev.SNDCTL_DSP_POST +ossaudiodev.SNDCTL_DSP_PROFILE +ossaudiodev.SNDCTL_DSP_RESET +ossaudiodev.SNDCTL_DSP_SAMPLESIZE +ossaudiodev.SNDCTL_DSP_SETDUPLEX +ossaudiodev.SNDCTL_DSP_SETFMT +ossaudiodev.SNDCTL_DSP_SETFRAGMENT +ossaudiodev.SNDCTL_DSP_SETSPDIF +ossaudiodev.SNDCTL_DSP_SETSYNCRO +ossaudiodev.SNDCTL_DSP_SETTRIGGER +ossaudiodev.SNDCTL_DSP_SPEED +ossaudiodev.SNDCTL_DSP_STEREO +ossaudiodev.SNDCTL_DSP_SUBDIVIDE +ossaudiodev.SNDCTL_DSP_SYNC +ossaudiodev.SNDCTL_FM_4OP_ENABLE +ossaudiodev.SNDCTL_FM_LOAD_INSTR +ossaudiodev.SNDCTL_MIDI_INFO +ossaudiodev.SNDCTL_MIDI_MPUCMD +ossaudiodev.SNDCTL_MIDI_MPUMODE +ossaudiodev.SNDCTL_MIDI_PRETIME +ossaudiodev.SNDCTL_SEQ_CTRLRATE +ossaudiodev.SNDCTL_SEQ_GETINCOUNT +ossaudiodev.SNDCTL_SEQ_GETOUTCOUNT +ossaudiodev.SNDCTL_SEQ_GETTIME +ossaudiodev.SNDCTL_SEQ_NRMIDIS +ossaudiodev.SNDCTL_SEQ_NRSYNTHS +ossaudiodev.SNDCTL_SEQ_OUTOFBAND +ossaudiodev.SNDCTL_SEQ_PANIC +ossaudiodev.SNDCTL_SEQ_PERCMODE +ossaudiodev.SNDCTL_SEQ_RESET +ossaudiodev.SNDCTL_SEQ_RESETSAMPLES +ossaudiodev.SNDCTL_SEQ_SYNC +ossaudiodev.SNDCTL_SEQ_TESTMIDI +ossaudiodev.SNDCTL_SEQ_THRESHOLD +ossaudiodev.SNDCTL_SYNTH_CONTROL +ossaudiodev.SNDCTL_SYNTH_ID +ossaudiodev.SNDCTL_SYNTH_INFO +ossaudiodev.SNDCTL_SYNTH_MEMAVL +ossaudiodev.SNDCTL_SYNTH_REMOVESAMPLE +ossaudiodev.SNDCTL_TMR_CONTINUE +ossaudiodev.SNDCTL_TMR_METRONOME +ossaudiodev.SNDCTL_TMR_SELECT +ossaudiodev.SNDCTL_TMR_SOURCE +ossaudiodev.SNDCTL_TMR_START +ossaudiodev.SNDCTL_TMR_STOP +ossaudiodev.SNDCTL_TMR_TEMPO +ossaudiodev.SNDCTL_TMR_TIMEBASE +ossaudiodev.SOUND_MIXER_ALTPCM +ossaudiodev.SOUND_MIXER_BASS +ossaudiodev.SOUND_MIXER_CD +ossaudiodev.SOUND_MIXER_DIGITAL1 +ossaudiodev.SOUND_MIXER_DIGITAL2 +ossaudiodev.SOUND_MIXER_DIGITAL3 +ossaudiodev.SOUND_MIXER_IGAIN +ossaudiodev.SOUND_MIXER_IMIX +ossaudiodev.SOUND_MIXER_LINE +ossaudiodev.SOUND_MIXER_LINE1 +ossaudiodev.SOUND_MIXER_LINE2 +ossaudiodev.SOUND_MIXER_LINE3 +ossaudiodev.SOUND_MIXER_MIC +ossaudiodev.SOUND_MIXER_MONITOR +ossaudiodev.SOUND_MIXER_NRDEVICES +ossaudiodev.SOUND_MIXER_OGAIN +ossaudiodev.SOUND_MIXER_PCM +ossaudiodev.SOUND_MIXER_PHONEIN +ossaudiodev.SOUND_MIXER_PHONEOUT +ossaudiodev.SOUND_MIXER_RADIO +ossaudiodev.SOUND_MIXER_RECLEV +ossaudiodev.SOUND_MIXER_SPEAKER +ossaudiodev.SOUND_MIXER_SYNTH +ossaudiodev.SOUND_MIXER_TREBLE +ossaudiodev.SOUND_MIXER_VIDEO +ossaudiodev.SOUND_MIXER_VOLUME +ossaudiodev.control_labels +ossaudiodev.control_names +ossaudiodev.error +ossaudiodev.open +ossaudiodev.openmixer +parser.ASTType +parser.ParserError +parser.STType +parser.ast2list +parser.ast2tuple +parser.compileast +parser.compilest +parser.expr +parser.isexpr +parser.issuite +parser.sequence2ast +parser.sequence2st +parser.st2list +parser.st2tuple +parser.suite +parser.tuple2ast +parser.tuple2st +pdb.Pdb(??) +pdb.Repr(??) +pdb.TESTCMD +pdb.bdb +pdb.cmd +pdb.find_function(??) +pdb.help(??) +pdb.line_prefix +pdb.linecache +pdb.main(??) +pdb.os +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint +pdb.re +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.sys +pdb.test(??) +pdb.traceback +pickle.APPEND +pickle.APPENDS +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BUILD +pickle.BooleanType +pickle.BufferType +pickle.BuiltinFunctionType +pickle.BuiltinMethodType +pickle.ClassType +pickle.CodeType +pickle.ComplexType +pickle.DICT +pickle.DUP +pickle.DictProxyType +pickle.DictType +pickle.DictionaryType +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.EllipsisType +pickle.FALSE +pickle.FLOAT +pickle.FileType +pickle.FloatType +pickle.FrameType +pickle.FunctionType +pickle.GET +pickle.GLOBAL +pickle.GeneratorType +pickle.GetSetDescriptorType +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.InstanceType +pickle.IntType +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.LambdaType +pickle.ListType +pickle.LongType +pickle.MARK +pickle.MemberDescriptorType +pickle.MethodType +pickle.ModuleType +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWTRUE +pickle.NONE +pickle.NoneType +pickle.NotImplementedType +pickle.OBJ +pickle.ObjectType +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError +pickle.Pickler(??) +pickle.PicklingError +pickle.PyStringMap +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINSTRING +pickle.STOP +pickle.STRING +pickle.SliceType +pickle.StringIO([s]) -- Return a StringIO-like stream for reading or writing +pickle.StringType +pickle.StringTypes +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.TracebackType +pickle.TupleType +pickle.TypeType +pickle.UNICODE +pickle.UnboundMethodType +pickle.UnicodeType +pickle.Unpickler(??) +pickle.UnpicklingError +pickle.XRangeType +pickle.classmap +pickle.compatible_formats +pickle.decode_long(??) +pickle.dispatch_table +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.load(??) +pickle.loads(??) +pickle.marshal +pickle.mloads +pickle.re +pickle.struct +pickle.sys +pickle.whichmodule(??) +pickletools.ArgumentDescriptor +pickletools.OpcodeInfo +pickletools.StackObject +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.UP_TO_NEWLINE +pickletools.anyobject +pickletools.code2op +pickletools.decimalnl_long +pickletools.decimalnl_short +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8 +pickletools.floatnl +pickletools.genops(??) +pickletools.int4 +pickletools.long1 +pickletools.long4 +pickletools.markobject +pickletools.opcodes +pickletools.pybool +pickletools.pydict +pickletools.pyfloat +pickletools.pyint +pickletools.pyinteger_or_bool +pickletools.pylist +pickletools.pylong +pickletools.pynone +pickletools.pystring +pickletools.pytuple +pickletools.pyunicode +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice +pickletools.string1 +pickletools.string4 +pickletools.stringnl +pickletools.stringnl_noescape +pickletools.stringnl_noescape_pair +pickletools.uint1 +pickletools.uint2 +pickletools.unicodestring4 +pickletools.unicodestringnl +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os +pipes.quote(??) +pipes.re +pipes.stepkinds +pipes.string +pipes.tempfile +pipes.test(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.imp +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys +pkgutil.walk_packages(??) +pkgutil.zipimport +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.architecture(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re +platform.release(??) +platform.string +platform.sys +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.version(??) +platform.win32_ver(??) +popen2.MAXFD +popen2.Popen3(??) +popen2.Popen4(??) +popen2.os +popen2.popen2(??) +popen2.popen3(??) +popen2.popen4(??) +popen2.sys +poplib.CR +poplib.CRLF +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.error_proto +poplib.re +poplib.socket +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_OK +posix.NGROUPS_MAX +posix.O_APPEND +posix.O_CREAT +posix.O_DIRECT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_LARGEFILE +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_RSYNC +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.R_OK +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(path, mode) -> True if granted, False otherwise +posix.chdir(path) +posix.chmod(path, mode) +posix.chown(path, uid, gid) +posix.chroot(path) +posix.close(fd) +posix.confstr(name) -> string +posix.confstr_names +posix.ctermid() -> string +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ +posix.error +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fildes) +posix.fdatasync(fildes) +posix.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.getcwd() -> path +posix.getcwdu() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchown(path, uid, gid) +posix.link(src, dst) +posix.listdir(path) -> list_of_strings +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path [, mode=0777]) +posix.mkfifo(filename [, mode=0666]) +posix.mknod(filename [, mode=0600, device]) +posix.nice(inc) -> new_priority +posix.open(filename, flag [, mode=0777]) -> fd +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names +posix.pipe() -> (read_end, write_end) +posix.popen(command [, mode='r' [, bufsize]]) -> pipe +posix.putenv(key, value) +posix.read(fd, buffersize) -> string +posix.readlink(path) -> path +posix.remove(path) +posix.rename(old, new) +posix.rmdir(path) +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setregid(rgid, egid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(path) -> stat result +posix.stat_float_times([newval]) -> oldval +posix.stat_result +posix.statvfs(path) -> statvfs result +posix.statvfs_result +posix.strerror(code) -> string +posix.symlink(src, dst) +posix.sysconf(name) -> integer +posix.sysconf_names +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.tempnam([dir[, prefix]]) -> string +posix.times() -> (utime, stime, cutime, cstime, elapsed_time) +posix.tmpfile() -> file object +posix.tmpnam() -> string +posix.ttyname(fd) -> string +posix.umask(new_mask) -> old_mask +posix.uname() -> (sysname, nodename, release, version, machine) +posix.unlink(path) +posix.unsetenv(key) +posix.utime(path, (atime, mtime)) +posix.wait() -> (pid, status) +posix.wait3(options) -> (pid, status, rusage) +posix.wait4(pid, options) -> (pid, status, rusage) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, string) -> byteswritten +posixfile.SEEK_CUR +posixfile.SEEK_END +posixfile.SEEK_SET +posixfile.fileopen(??) +posixfile.open(??) +posixpath.abspath(??) +posixpath.altsep +posixpath.basename(??) +posixpath.commonprefix(??) +posixpath.curdir +posixpath.defpath +posixpath.devnull +posixpath.dirname(??) +posixpath.exists(??) +posixpath.expanduser(??) +posixpath.expandvars(??) +posixpath.extsep +posixpath.getatime(??) +posixpath.getctime(??) +posixpath.getmtime(??) +posixpath.getsize(??) +posixpath.isabs(??) +posixpath.isdir(??) +posixpath.isfile(??) +posixpath.islink(??) +posixpath.ismount(??) +posixpath.join(??) +posixpath.lexists(??) +posixpath.normcase(??) +posixpath.normpath(??) +posixpath.os +posixpath.pardir +posixpath.pathsep +posixpath.realpath(??) +posixpath.samefile(??) +posixpath.sameopenfile(??) +posixpath.samestat(??) +posixpath.sep +posixpath.split(??) +posixpath.splitdrive(??) +posixpath.splitext(??) +posixpath.stat +posixpath.supports_unicode_filenames +posixpath.walk(??) +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.saferepr(??) +profile.OptionParser(??) +profile.Profile(??) +profile.Stats(??) +profile.help(??) +profile.main(??) +profile.marshal +profile.os +profile.resgetrusage(??) +profile.resource +profile.run(??) +profile.runctx(??) +profile.sys +profile.time +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal +pstats.os +pstats.re +pstats.sys +pstats.time +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd +pwd.struct_pwent +py_compile.MAGIC +py_compile.PyCompileError +py_compile.compile(??) +py_compile.imp +py_compile.main(??) +py_compile.marshal +py_compile.os +py_compile.set_creator_type(??) +py_compile.sys +py_compile.traceback +py_compile.wr_long(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.NEWLINE +pyclbr.OP +pyclbr.imp +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys +pyclbr.tokenize +pydoc.Doc(??) +pydoc.ErrorDuringImport +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.Scanner(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque(iterable) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.expandtabs(s [,tabsize]) -> string +pydoc.find(s, sub [,start [,end]]) -> in +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.gui(??) +pydoc.help +pydoc.html +pydoc.imp +pydoc.importfile(??) +pydoc.inspect +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.join(list [,sep]) -> string +pydoc.locate(??) +pydoc.lower(s) -> string +pydoc.os +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.re +pydoc.replace(??) +pydoc.resolve(??) +pydoc.rfind(s, sub [,start [,end]]) -> int +pydoc.rstrip(s [,chars]) -> string +pydoc.safeimport(??) +pydoc.serve(??) +pydoc.source_synopsis(??) +pydoc.split(s [,sep [,maxsplit]]) -> list of strings +pydoc.splitdoc(??) +pydoc.strip(s [,chars]) -> string +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys +pydoc.tempfilepager(??) +pydoc.text +pydoc.ttypager(??) +pydoc.types +pydoc.visiblename(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pyexpat.EXPAT_VERSION +pyexpat.ErrorString(errno) -> string +pyexpat.ExpatError +pyexpat.ParserCreate([encoding[, namespace_separator]]) -> parser +pyexpat.XMLParserType +pyexpat.XML_PARAM_ENTITY_PARSING_ALWAYS +pyexpat.XML_PARAM_ENTITY_PARSING_NEVER +pyexpat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +pyexpat.error +pyexpat.errors +pyexpat.expat_CAPI +pyexpat.features +pyexpat.model +pyexpat.native_encoding +pyexpat.version_info +quit +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp +quopri.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random +random.SG_MAGICCONST +random.SystemRandom +random.TWOPI +random.WichmannHill +random.betavariate +random.choice +random.expovariate +random.gammavariate +random.gauss +random.getrandbits(k) -> x. Generates a long int with k random bits. +random.getstate +random.jumpahead(int) -> None. Create new state from existing state and integer. +random.lognormvariate +random.normalvariate +random.paretovariate +random.randint +random.random() -> x in the interval [0, 1). +random.randrange +random.sample +random.seed +random.setstate +random.shuffle +random.uniform +random.vonmisesvariate +random.weibullvariate +range([start,] stop[, step]) -> list of integers +raw_input([prompt]) -> string +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copy_reg +re.error +re.escape(??) +re.findall(??) +re.finditer(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile +re.sre_parse +re.sub(??) +re.subn(??) +re.sys +re.template(??) +readline.add_history(string) -> None +readline.clear_history() -> None +readline.get_begidx() -> int +readline.get_completer() -> function +readline.get_completer_delims() -> string +readline.get_current_history_length() -> integer +readline.get_endidx() -> int +readline.get_history_item() -> string +readline.get_history_length() -> int +readline.get_line_buffer() -> string +readline.insert_text(string) -> None +readline.parse_and_bind(string) -> None +readline.read_history_file([filename]) -> None +readline.read_init_file([filename]) -> None +readline.redisplay() -> None +readline.remove_history_item(pos) -> None +readline.replace_history_item(pos, line) -> None +readline.set_completer([function]) -> None +readline.set_completer_delims(string) -> None +readline.set_history_length(length) -> None +readline.set_pre_input_hook([function]) -> None +readline.set_startup_hook([function]) -> None +readline.write_history_file([filename]) -> None +reduce(function, sequence[, initial]) -> value +reload(module) -> module +repr(object) -> string +repr.Repr(??) +repr.aRepr +repr.islice(iterable, [start,] stop [, step]) --> islice object +repr.repr +resource.RLIMIT_AS +resource.RLIMIT_CORE +resource.RLIMIT_CPU +resource.RLIMIT_DATA +resource.RLIMIT_FSIZE +resource.RLIMIT_MEMLOCK +resource.RLIMIT_NOFILE +resource.RLIMIT_NPROC +resource.RLIMIT_OFILE +resource.RLIMIT_RSS +resource.RLIMIT_STACK +resource.RLIM_INFINITY +resource.RUSAGE_CHILDREN +resource.RUSAGE_SELF +resource.error +resource.getpagesize +resource.getrlimit +resource.getrusage +resource.setrlimit +resource.struct_rusage +reversed(sequence) -> reverse iterator over values of the sequence +rexec.FileBase(??) +rexec.FileDelegate(??) +rexec.FileWrapper(??) +rexec.RExec(??) +rexec.RHooks(??) +rexec.RModuleImporter(??) +rexec.RModuleLoader(??) +rexec.TEMPLATE +rexec.ihooks +rexec.imp +rexec.os +rexec.sys +rexec.test(??) +rfc822.AddressList(??) +rfc822.AddrlistClass(??) +rfc822.Message(??) +rfc822.dump_address_pair(??) +rfc822.formatdate(??) +rfc822.mktime_tz(??) +rfc822.parseaddr(??) +rfc822.parsedate(??) +rfc822.parsedate_tz(??) +rfc822.quote(??) +rfc822.time +rfc822.unquote(??) +rlcompleter.Completer(??) +rlcompleter.get_class_members(??) +rlcompleter.readline +robotparser.Entry(??) +robotparser.RobotFileParser(??) +robotparser.RuleLine(??) +robotparser.URLopener(??) +robotparser.debug +robotparser.urllib +robotparser.urlparse +round(number[, ndigits]) -> floating point number +runpy.get_loader(??) +runpy.imp +runpy.run_module(??) +runpy.sys +sched.heapq +sched.scheduler(??) +select.POLLERR +select.POLLHUP +select.POLLIN +select.POLLMSG +select.POLLNVAL +select.POLLOUT +select.POLLPRI +select.POLLRDBAND +select.POLLRDNORM +select.POLLWRBAND +select.POLLWRNORM +select.error +select.poll +select.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +set(iterable) --> set object +setattr(object, name, value) +sets.BaseSet +sets.ImmutableSet +sets.Set +sets.generators +sets.ifilter(function or None, sequence) --> ifilter object +sets.ifilterfalse(function or None, sequence) --> ifilterfalse object +sgmllib.SGMLParseError +sgmllib.SGMLParser(??) +sgmllib.TestSGMLParser(??) +sgmllib.attrfind +sgmllib.charref +sgmllib.endbracket +sgmllib.entityref +sgmllib.incomplete +sgmllib.interesting +sgmllib.markupbase +sgmllib.piclose +sgmllib.re +sgmllib.shorttag +sgmllib.shorttagopen +sgmllib.starttagopen +sgmllib.tagfind +sgmllib.test(??) +sha.blocksize +sha.digest_size +sha.digestsize +sha.new +sha.sha +shelve.BsdDbShelf(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(file, protocol=0) -- Create a pickler. +shelve.Shelf(??) +shelve.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shelve.Unpickler(file) -- Create an unpickler. +shelve.UserDict +shelve.open(??) +shelve.warnings +shlex.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shlex.deque(iterable) --> deque object +shlex.os +shlex.shlex(??) +shlex.split(??) +shlex.sys +shutil.Error +shutil.abspath(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.destinsrc(??) +shutil.move(??) +shutil.os +shutil.rmtree(??) +shutil.stat +shutil.sys +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCLD +signal.SIGCONT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPOLL +signal.SIGPROF +signal.SIGPWR +signal.SIGQUIT +signal.SIGRTMAX +signal.SIGRTMIN +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_DFL +signal.SIG_IGN +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getsignal(sig) -> action +signal.pause() +signal.signal(sig, action) -> action +site.abs__file__(??) +site.addbuilddir(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.aliasmbcs(??) +site.execsitecustomize(??) +site.main(??) +site.makepath(??) +site.os +site.removeduppaths(??) +site.setBEGINLIBPATH(??) +site.setcopyright(??) +site.setencoding(??) +site.sethelper(??) +site.setquit(??) +site.sys +slice([start,] stop[, step]) +smtpd.COMMASPACE +smtpd.DEBUGSTREAM +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat +smtpd.asyncore +smtpd.errno +smtpd.getopt +smtpd.os +smtpd.parseargs(??) +smtpd.program +smtpd.socket +smtpd.sys +smtpd.time +smtpd.usage(??) +smtplib.CRLF +smtplib.OLDSTYLE_AUTH +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError +smtplib.SMTPConnectError +smtplib.SMTPDataError +smtplib.SMTPException +smtplib.SMTPHeloError +smtplib.SMTPRecipientsRefused +smtplib.SMTPResponseException +smtplib.SMTPSenderRefused +smtplib.SMTPServerDisconnected +smtplib.SMTP_PORT +smtplib.SSLFakeFile(??) +smtplib.SSLFakeSocket(??) +smtplib.base64 +smtplib.email +smtplib.encode_base64(??) +smtplib.hmac +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re +smtplib.socket +smtplib.stderr +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK +socket.AF_ASH +socket.AF_ATMPVC +socket.AF_ATMSVC +socket.AF_AX25 +socket.AF_BRIDGE +socket.AF_DECnet +socket.AF_ECONET +socket.AF_INET +socket.AF_INET6 +socket.AF_IPX +socket.AF_IRDA +socket.AF_KEY +socket.AF_NETBEUI +socket.AF_NETLINK +socket.AF_NETROM +socket.AF_PACKET +socket.AF_PPPOX +socket.AF_ROSE +socket.AF_ROUTE +socket.AF_SECURITY +socket.AF_SNA +socket.AF_UNIX +socket.AF_UNSPEC +socket.AF_WANPIPE +socket.AF_X25 +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.CAPI +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GRE +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV6 +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NETLINK_DNRTMSG +socket.NETLINK_FIREWALL +socket.NETLINK_IP6_FW +socket.NETLINK_NFLOG +socket.NETLINK_ROUTE +socket.NETLINK_USERSOCK +socket.NETLINK_W1 +socket.NETLINK_XFRM +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PACKET_BROADCAST +socket.PACKET_FASTROUTE +socket.PACKET_HOST +socket.PACKET_LOOPBACK +socket.PACKET_MULTICAST +socket.PACKET_OTHERHOST +socket.PACKET_OUTGOING +socket.PF_PACKET +socket.RAND_add(string, entropy) +socket.RAND_egd(path) -> bytes +socket.RAND_status() -> 0 or 1 +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM +socket.SOCK_RAW +socket.SOCK_RDM +socket.SOCK_SEQPACKET +socket.SOCK_STREAM +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SSLType +socket.SSL_ERROR_EOF +socket.SSL_ERROR_INVALID_ERROR_CODE +socket.SSL_ERROR_SSL +socket.SSL_ERROR_SYSCALL +socket.SSL_ERROR_WANT_CONNECT +socket.SSL_ERROR_WANT_READ +socket.SSL_ERROR_WANT_WRITE +socket.SSL_ERROR_WANT_X509_LOOKUP +socket.SSL_ERROR_ZERO_RETURN +socket.SocketType +socket.TCP_CORK +socket.TCP_DEFER_ACCEPT +socket.TCP_INFO +socket.TCP_KEEPCNT +socket.TCP_KEEPIDLE +socket.TCP_KEEPINTVL +socket.TCP_LINGER2 +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_QUICKACK +socket.TCP_SYNCNT +socket.TCP_WINDOW_CLAMP +socket.error +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror +socket.getaddrinfo(host, port [, family, socktype, proto, flags]) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6 +socket.herror +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.inet_aton(string) -> packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os +socket.setdefaulttimeout(timeout) +socket.socket([family[, type[, proto]]]) -> socket object +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.ssl(??) +socket.sslerror +socket.sys +socket.timeout +sorted(iterable, cmp=None, key=None, reverse=False) --> new sorted list +spwd.getspall() -> list_of_entries +spwd.getspnam(name) -> (sp_namp, sp_pwdp, sp_lstchg, sp_min, sp_max, +spwd.struct_spwd +sqlite3.Binary +sqlite3.Cache +sqlite3.Connection +sqlite3.Cursor +sqlite3.DataError +sqlite3.DatabaseError +sqlite3.Date +sqlite3.DateFromTicks(??) +sqlite3.Error +sqlite3.IntegrityError +sqlite3.InterfaceError +sqlite3.InternalError +sqlite3.NotSupportedError +sqlite3.OperationalError +sqlite3.OptimizedUnicode +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol +sqlite3.ProgrammingError +sqlite3.Row +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement +sqlite3.Time +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp +sqlite3.TimestampFromTicks(??) +sqlite3.Warning +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters +sqlite3.apilevel +sqlite3.complete_statement +sqlite3.connect +sqlite3.converters +sqlite3.datetime +sqlite3.dbapi2 +sqlite3.dbapi2.Binary +sqlite3.dbapi2.Cache +sqlite3.dbapi2.Connection +sqlite3.dbapi2.Cursor +sqlite3.dbapi2.DataError +sqlite3.dbapi2.DatabaseError +sqlite3.dbapi2.Date +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error +sqlite3.dbapi2.IntegrityError +sqlite3.dbapi2.InterfaceError +sqlite3.dbapi2.InternalError +sqlite3.dbapi2.NotSupportedError +sqlite3.dbapi2.OperationalError +sqlite3.dbapi2.OptimizedUnicode +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol +sqlite3.dbapi2.ProgrammingError +sqlite3.dbapi2.Row +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement +sqlite3.dbapi2.Time +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.complete_statement +sqlite3.dbapi2.connect +sqlite3.dbapi2.converters +sqlite3.dbapi2.datetime +sqlite3.dbapi2.enable_callback_tracebacks +sqlite3.dbapi2.enable_shared_cache +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter +sqlite3.dbapi2.register_converter +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info +sqlite3.dbapi2.x +sqlite3.enable_callback_tracebacks +sqlite3.enable_shared_cache +sqlite3.paramstyle +sqlite3.register_adapter +sqlite3.register_converter +sqlite3.sqlite_version +sqlite3.sqlite_version_info +sqlite3.threadsafety +sqlite3.time +sqlite3.version +sqlite3.version_info +sqlite3.x +sre.DOTALL +sre.I +sre.IGNORECASE +sre.L +sre.LOCALE +sre.M +sre.MULTILINE +sre.S +sre.U +sre.UNICODE +sre.VERBOSE +sre.X +sre.compile(??) +sre.error +sre.escape(??) +sre.findall(??) +sre.finditer(??) +sre.match(??) +sre.purge(??) +sre.search(??) +sre.split(??) +sre.sub(??) +sre.subn(??) +sre.template(??) +sre.warnings +sre_compile.ANY +sre_compile.ANY_ALL +sre_compile.ASSERT +sre_compile.ASSERT_NOT +sre_compile.AT +sre_compile.ATCODES +sre_compile.AT_BEGINNING +sre_compile.AT_BEGINNING_LINE +sre_compile.AT_BEGINNING_STRING +sre_compile.AT_BOUNDARY +sre_compile.AT_END +sre_compile.AT_END_LINE +sre_compile.AT_END_STRING +sre_compile.AT_LOCALE +sre_compile.AT_LOC_BOUNDARY +sre_compile.AT_LOC_NON_BOUNDARY +sre_compile.AT_MULTILINE +sre_compile.AT_NON_BOUNDARY +sre_compile.AT_UNICODE +sre_compile.AT_UNI_BOUNDARY +sre_compile.AT_UNI_NON_BOUNDARY +sre_compile.BIGCHARSET +sre_compile.BRANCH +sre_compile.CALL +sre_compile.CATEGORY +sre_compile.CATEGORY_DIGIT +sre_compile.CATEGORY_LINEBREAK +sre_compile.CATEGORY_LOC_NOT_WORD +sre_compile.CATEGORY_LOC_WORD +sre_compile.CATEGORY_NOT_DIGIT +sre_compile.CATEGORY_NOT_LINEBREAK +sre_compile.CATEGORY_NOT_SPACE +sre_compile.CATEGORY_NOT_WORD +sre_compile.CATEGORY_SPACE +sre_compile.CATEGORY_UNI_DIGIT +sre_compile.CATEGORY_UNI_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_DIGIT +sre_compile.CATEGORY_UNI_NOT_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_SPACE +sre_compile.CATEGORY_UNI_NOT_WORD +sre_compile.CATEGORY_UNI_SPACE +sre_compile.CATEGORY_UNI_WORD +sre_compile.CATEGORY_WORD +sre_compile.CHARSET +sre_compile.CHCODES +sre_compile.CH_LOCALE +sre_compile.CH_UNICODE +sre_compile.FAILURE +sre_compile.GROUPREF +sre_compile.GROUPREF_EXISTS +sre_compile.GROUPREF_IGNORE +sre_compile.IN +sre_compile.INFO +sre_compile.IN_IGNORE +sre_compile.JUMP +sre_compile.LITERAL +sre_compile.LITERAL_IGNORE +sre_compile.MAGIC +sre_compile.MARK +sre_compile.MAXCODE +sre_compile.MAXREPEAT +sre_compile.MAX_REPEAT +sre_compile.MAX_UNTIL +sre_compile.MIN_REPEAT +sre_compile.MIN_REPEAT_ONE +sre_compile.MIN_UNTIL +sre_compile.NEGATE +sre_compile.NOT_LITERAL +sre_compile.NOT_LITERAL_IGNORE +sre_compile.OPCODES +sre_compile.OP_IGNORE +sre_compile.RANGE +sre_compile.REPEAT +sre_compile.REPEAT_ONE +sre_compile.SRE_FLAG_DEBUG +sre_compile.SRE_FLAG_DOTALL +sre_compile.SRE_FLAG_IGNORECASE +sre_compile.SRE_FLAG_LOCALE +sre_compile.SRE_FLAG_MULTILINE +sre_compile.SRE_FLAG_TEMPLATE +sre_compile.SRE_FLAG_UNICODE +sre_compile.SRE_FLAG_VERBOSE +sre_compile.SRE_INFO_CHARSET +sre_compile.SRE_INFO_LITERAL +sre_compile.SRE_INFO_PREFIX +sre_compile.STRING_TYPES +sre_compile.SUBPATTERN +sre_compile.SUCCESS +sre_compile.compile(??) +sre_compile.error +sre_compile.isstring(??) +sre_compile.makedict(??) +sre_compile.set(??) +sre_compile.sys +sre_constants.ANY +sre_constants.ANY_ALL +sre_constants.ASSERT +sre_constants.ASSERT_NOT +sre_constants.AT +sre_constants.ATCODES +sre_constants.AT_BEGINNING +sre_constants.AT_BEGINNING_LINE +sre_constants.AT_BEGINNING_STRING +sre_constants.AT_BOUNDARY +sre_constants.AT_END +sre_constants.AT_END_LINE +sre_constants.AT_END_STRING +sre_constants.AT_LOCALE +sre_constants.AT_LOC_BOUNDARY +sre_constants.AT_LOC_NON_BOUNDARY +sre_constants.AT_MULTILINE +sre_constants.AT_NON_BOUNDARY +sre_constants.AT_UNICODE +sre_constants.AT_UNI_BOUNDARY +sre_constants.AT_UNI_NON_BOUNDARY +sre_constants.BIGCHARSET +sre_constants.BRANCH +sre_constants.CALL +sre_constants.CATEGORY +sre_constants.CATEGORY_DIGIT +sre_constants.CATEGORY_LINEBREAK +sre_constants.CATEGORY_LOC_NOT_WORD +sre_constants.CATEGORY_LOC_WORD +sre_constants.CATEGORY_NOT_DIGIT +sre_constants.CATEGORY_NOT_LINEBREAK +sre_constants.CATEGORY_NOT_SPACE +sre_constants.CATEGORY_NOT_WORD +sre_constants.CATEGORY_SPACE +sre_constants.CATEGORY_UNI_DIGIT +sre_constants.CATEGORY_UNI_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_DIGIT +sre_constants.CATEGORY_UNI_NOT_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_SPACE +sre_constants.CATEGORY_UNI_NOT_WORD +sre_constants.CATEGORY_UNI_SPACE +sre_constants.CATEGORY_UNI_WORD +sre_constants.CATEGORY_WORD +sre_constants.CHARSET +sre_constants.CHCODES +sre_constants.CH_LOCALE +sre_constants.CH_UNICODE +sre_constants.FAILURE +sre_constants.GROUPREF +sre_constants.GROUPREF_EXISTS +sre_constants.GROUPREF_IGNORE +sre_constants.IN +sre_constants.INFO +sre_constants.IN_IGNORE +sre_constants.JUMP +sre_constants.LITERAL +sre_constants.LITERAL_IGNORE +sre_constants.MAGIC +sre_constants.MARK +sre_constants.MAXREPEAT +sre_constants.MAX_REPEAT +sre_constants.MAX_UNTIL +sre_constants.MIN_REPEAT +sre_constants.MIN_REPEAT_ONE +sre_constants.MIN_UNTIL +sre_constants.NEGATE +sre_constants.NOT_LITERAL +sre_constants.NOT_LITERAL_IGNORE +sre_constants.OPCODES +sre_constants.OP_IGNORE +sre_constants.RANGE +sre_constants.REPEAT +sre_constants.REPEAT_ONE +sre_constants.SRE_FLAG_DEBUG +sre_constants.SRE_FLAG_DOTALL +sre_constants.SRE_FLAG_IGNORECASE +sre_constants.SRE_FLAG_LOCALE +sre_constants.SRE_FLAG_MULTILINE +sre_constants.SRE_FLAG_TEMPLATE +sre_constants.SRE_FLAG_UNICODE +sre_constants.SRE_FLAG_VERBOSE +sre_constants.SRE_INFO_CHARSET +sre_constants.SRE_INFO_LITERAL +sre_constants.SRE_INFO_PREFIX +sre_constants.SUBPATTERN +sre_constants.SUCCESS +sre_constants.error +sre_constants.makedict(??) +sre_parse.ANY +sre_parse.ANY_ALL +sre_parse.ASSERT +sre_parse.ASSERT_NOT +sre_parse.AT +sre_parse.ATCODES +sre_parse.AT_BEGINNING +sre_parse.AT_BEGINNING_LINE +sre_parse.AT_BEGINNING_STRING +sre_parse.AT_BOUNDARY +sre_parse.AT_END +sre_parse.AT_END_LINE +sre_parse.AT_END_STRING +sre_parse.AT_LOCALE +sre_parse.AT_LOC_BOUNDARY +sre_parse.AT_LOC_NON_BOUNDARY +sre_parse.AT_MULTILINE +sre_parse.AT_NON_BOUNDARY +sre_parse.AT_UNICODE +sre_parse.AT_UNI_BOUNDARY +sre_parse.AT_UNI_NON_BOUNDARY +sre_parse.BIGCHARSET +sre_parse.BRANCH +sre_parse.CALL +sre_parse.CATEGORIES +sre_parse.CATEGORY +sre_parse.CATEGORY_DIGIT +sre_parse.CATEGORY_LINEBREAK +sre_parse.CATEGORY_LOC_NOT_WORD +sre_parse.CATEGORY_LOC_WORD +sre_parse.CATEGORY_NOT_DIGIT +sre_parse.CATEGORY_NOT_LINEBREAK +sre_parse.CATEGORY_NOT_SPACE +sre_parse.CATEGORY_NOT_WORD +sre_parse.CATEGORY_SPACE +sre_parse.CATEGORY_UNI_DIGIT +sre_parse.CATEGORY_UNI_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_DIGIT +sre_parse.CATEGORY_UNI_NOT_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_SPACE +sre_parse.CATEGORY_UNI_NOT_WORD +sre_parse.CATEGORY_UNI_SPACE +sre_parse.CATEGORY_UNI_WORD +sre_parse.CATEGORY_WORD +sre_parse.CHARSET +sre_parse.CHCODES +sre_parse.CH_LOCALE +sre_parse.CH_UNICODE +sre_parse.DIGITS +sre_parse.ESCAPES +sre_parse.FAILURE +sre_parse.FLAGS +sre_parse.GROUPREF +sre_parse.GROUPREF_EXISTS +sre_parse.GROUPREF_IGNORE +sre_parse.HEXDIGITS +sre_parse.IN +sre_parse.INFO +sre_parse.IN_IGNORE +sre_parse.JUMP +sre_parse.LITERAL +sre_parse.LITERAL_IGNORE +sre_parse.MAGIC +sre_parse.MARK +sre_parse.MAXREPEAT +sre_parse.MAX_REPEAT +sre_parse.MAX_UNTIL +sre_parse.MIN_REPEAT +sre_parse.MIN_REPEAT_ONE +sre_parse.MIN_UNTIL +sre_parse.NEGATE +sre_parse.NOT_LITERAL +sre_parse.NOT_LITERAL_IGNORE +sre_parse.OCTDIGITS +sre_parse.OPCODES +sre_parse.OP_IGNORE +sre_parse.Pattern(??) +sre_parse.RANGE +sre_parse.REPEAT +sre_parse.REPEAT_CHARS +sre_parse.REPEAT_ONE +sre_parse.SPECIAL_CHARS +sre_parse.SRE_FLAG_DEBUG +sre_parse.SRE_FLAG_DOTALL +sre_parse.SRE_FLAG_IGNORECASE +sre_parse.SRE_FLAG_LOCALE +sre_parse.SRE_FLAG_MULTILINE +sre_parse.SRE_FLAG_TEMPLATE +sre_parse.SRE_FLAG_UNICODE +sre_parse.SRE_FLAG_VERBOSE +sre_parse.SRE_INFO_CHARSET +sre_parse.SRE_INFO_LITERAL +sre_parse.SRE_INFO_PREFIX +sre_parse.SUBPATTERN +sre_parse.SUCCESS +sre_parse.SubPattern(??) +sre_parse.Tokenizer(??) +sre_parse.WHITESPACE +sre_parse.error +sre_parse.expand_template(??) +sre_parse.isdigit(??) +sre_parse.isident(??) +sre_parse.isname(??) +sre_parse.makedict(??) +sre_parse.parse(??) +sre_parse.parse_template(??) +sre_parse.set(??) +sre_parse.sys +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFREG +stat.S_IFSOCK +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(??) +stat.S_ISCHR(??) +stat.S_ISDIR(??) +stat.S_ISFIFO(??) +stat.S_ISGID +stat.S_ISLNK(??) +stat.S_ISREG(??) +stat.S_ISSOCK(??) +stat.S_ISUID +stat.S_ISVTX +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +staticmethod(function) -> method +statvfs.F_BAVAIL +statvfs.F_BFREE +statvfs.F_BLOCKS +statvfs.F_BSIZE +statvfs.F_FAVAIL +statvfs.F_FFREE +statvfs.F_FILES +statvfs.F_FLAG +statvfs.F_FRSIZE +statvfs.F_NAMEMAX +str(object) -> string +string.Template +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.atof(s) -> float +string.atof_error +string.atoi(s [,base]) -> int +string.atoi_error +string.atol(s [,base]) -> long +string.atol_error +string.capitalize(s) -> string +string.capwords(s, [sep]) -> string +string.center(s, width[, fillchar]) -> string +string.count(s, sub[, start[,end]]) -> int +string.digits +string.expandtabs(s [,tabsize]) -> string +string.find(s, sub [,start [,end]]) -> in +string.hexdigits +string.index(s, sub [,start [,end]]) -> int +string.index_error +string.join(list [,sep]) -> string +string.joinfields(??) +string.letters +string.ljust(s, width[, fillchar]) -> string +string.lower(s) -> string +string.lowercase +string.lstrip(s [,chars]) -> string +string.maketrans(frm, to) -> string +string.octdigits +string.printable +string.punctuation +string.replace (str, old, new[, maxsplit]) -> string +string.rfind(s, sub [,start [,end]]) -> int +string.rindex(s, sub [,start [,end]]) -> int +string.rjust(s, width[, fillchar]) -> string +string.rsplit(s [,sep [,maxsplit]]) -> list of strings +string.rstrip(s [,chars]) -> string +string.split(s [,sep [,maxsplit]]) -> list of strings +string.splitfields(??) +string.strip(s [,chars]) -> string +string.swapcase(s) -> string +string.translate(s,table [,deletions]) -> string +string.upper(s) -> string +string.uppercase +string.whitespace +string.zfill(x, width) -> string +stringold.atof(s) -> float +stringold.atof_error +stringold.atoi(s [,base]) -> int +stringold.atoi_error +stringold.atol(s [,base]) -> long +stringold.atol_error +stringold.capitalize(s) -> string +stringold.capwords(s, [sep]) -> string +stringold.center(s, width) -> string +stringold.count(s, sub[, start[,end]]) -> int +stringold.digits +stringold.expandtabs(s [,tabsize]) -> string +stringold.find(s, sub [,start [,end]]) -> in +stringold.hexdigits +stringold.index(s, sub [,start [,end]]) -> int +stringold.index_error +stringold.join(list [,sep]) -> string +stringold.joinfields(??) +stringold.letters +stringold.ljust(s, width) -> string +stringold.lower(s) -> string +stringold.lowercase +stringold.lstrip(s) -> string +stringold.maketrans(frm, to) -> string +stringold.octdigits +stringold.replace (str, old, new[, maxsplit]) -> string +stringold.rfind(s, sub [,start [,end]]) -> int +stringold.rindex(s, sub [,start [,end]]) -> int +stringold.rjust(s, width) -> string +stringold.rstrip(s) -> string +stringold.split(str [,sep [,maxsplit]]) -> list of strings +stringold.splitfields(??) +stringold.strip(s) -> string +stringold.swapcase(s) -> string +stringold.translate(s,table [,deletechars]) -> string +stringold.upper(s) -> string +stringold.uppercase +stringold.whitespace +stringold.zfill(x, width) -> string +stringprep.b1_set +stringprep.b3_exceptions +stringprep.c22_specials +stringprep.c6_set +stringprep.c7_set +stringprep.c8_set +stringprep.c9_set +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata +strop.atof(s) -> float +strop.atoi(s [,base]) -> int +strop.atol(s [,base]) -> long +strop.capitalize(s) -> string +strop.count(s, sub[, start[, end]]) -> int +strop.expandtabs(string, [tabsize]) -> string +strop.find(s, sub [,start [,end]]) -> in +strop.join(list [,sep]) -> string +strop.joinfields +strop.lower(s) -> string +strop.lowercase +strop.lstrip(s) -> string +strop.maketrans(frm, to) -> string +strop.replace (str, old, new[, maxsplit]) -> string +strop.rfind(s, sub [,start [,end]]) -> int +strop.rstrip(s) -> string +strop.split(s [,sep [,maxsplit]]) -> list of strings +strop.splitfields +strop.strip(s) -> string +strop.swapcase(s) -> string +strop.translate(s,table [,deletechars]) -> string +strop.upper(s) -> string +strop.uppercase +strop.whitespace +struct.Struct +struct.calcsize(??) +struct.error +struct.pack(??) +struct.pack_into(??) +struct.unpack(??) +struct.unpack_from(??) +subprocess.CalledProcessError +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen +subprocess.STDOUT +subprocess.call(??) +subprocess.check_call(??) +subprocess.errno +subprocess.fcntl +subprocess.list2cmdline(??) +subprocess.mswindows +subprocess.os +subprocess.pickle +subprocess.select +subprocess.sys +subprocess.traceback +subprocess.types +sum(sequence, start=0) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error +sunau.open(??) +sunau.openfp(??) +sunaudio.MAGIC +sunaudio.error +sunaudio.get_long_be(??) +sunaudio.gethdr(??) +sunaudio.printhdr(??) +super(type) -> unbound super object +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.exec_stmt +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.fpdef +symbol.fplist +symbol.funcdef +symbol.gen_for +symbol.gen_if +symbol.gen_iter +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.list_for +symbol.list_if +symbol.list_iter +symbol.listmaker +symbol.main(??) +symbol.not_test +symbol.old_lambdef +symbol.old_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.print_stmt +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name +symbol.term +symbol.test +symbol.testlist +symbol.testlist1 +symbol.testlist_gexp +symbol.testlist_safe +symbol.trailer +symbol.try_stmt +symbol.varargslist +symbol.while_stmt +symbol.with_stmt +symbol.with_var +symbol.xor_expr +symbol.yield_expr +symbol.yield_stmt +symtable.Class(??) +symtable.DEF_BOUND +symtable.DEF_DOUBLESTAR +symtable.DEF_FREE +symtable.DEF_FREE_CLASS +symtable.DEF_FREE_GLOBAL +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_INTUPLE +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.DEF_STAR +symtable.Function(??) +symtable.OPT_BARE_EXEC +symtable.OPT_EXEC +symtable.OPT_IMPORT_STAR +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.is_free(??) +symtable.newSymbolTable +symtable.symtable(??) +symtable.weakref +sys.api_version +sys.argv +sys.builtin_module_names +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.exc_clear() -> None +sys.exc_info() -> (type, value, traceback) +sys.exc_type +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.hexversion +sys.maxint +sys.maxunicode +sys.meta_path +sys.modules +sys.path +sys.path_hooks +sys.path_importer_cache +sys.platform +sys.prefix +sys.setappdefaultencoding +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.settrace(function) +sys.stderr +sys.stdin +sys.stdout +sys.subversion +sys.version +sys.version_info +sys.warnoptions +syslog.LOG_ALERT +syslog.LOG_AUTH +syslog.LOG_CONS +syslog.LOG_CRIT +syslog.LOG_CRON +syslog.LOG_DAEMON +syslog.LOG_DEBUG +syslog.LOG_EMERG +syslog.LOG_ERR +syslog.LOG_INFO +syslog.LOG_KERN +syslog.LOG_LOCAL0 +syslog.LOG_LOCAL1 +syslog.LOG_LOCAL2 +syslog.LOG_LOCAL3 +syslog.LOG_LOCAL4 +syslog.LOG_LOCAL5 +syslog.LOG_LOCAL6 +syslog.LOG_LOCAL7 +syslog.LOG_LPR +syslog.LOG_MAIL +syslog.LOG_MASK +syslog.LOG_NDELAY +syslog.LOG_NEWS +syslog.LOG_NOTICE +syslog.LOG_NOWAIT +syslog.LOG_PERROR +syslog.LOG_PID +syslog.LOG_SYSLOG +syslog.LOG_UPTO +syslog.LOG_USER +syslog.LOG_UUCP +syslog.LOG_WARNING +syslog.closelog +syslog.openlog +syslog.setlogmask +syslog.syslog +tabnanny.NannyNag +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt +tabnanny.main(??) +tabnanny.os +tabnanny.process_tokens(??) +tabnanny.sys +tabnanny.tokenize +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError +tarfile.DIRTYPE +tarfile.ExFileObject +tarfile.ExtractError +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.MAGIC +tarfile.MAXSIZE_MEMBER +tarfile.NUL +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES +tarfile.ReadError +tarfile.SUPPORTED_TYPES +tarfile.SYMTYPE +tarfile.S_IFBLK +tarfile.S_IFCHR +tarfile.S_IFDIR +tarfile.S_IFIFO +tarfile.S_IFLNK +tarfile.S_IFREG +tarfile.StreamError +tarfile.TAR_GZIPPED +tarfile.TAR_PLAIN +tarfile.TGEXEC +tarfile.TGREAD +tarfile.TGWRITE +tarfile.TOEXEC +tarfile.TOREAD +tarfile.TOWRITE +tarfile.TSGID +tarfile.TSUID +tarfile.TSVTX +tarfile.TUEXEC +tarfile.TUREAD +tarfile.TUWRITE +tarfile.TarError +tarfile.TarFile +tarfile.TarFileCompat(??) +tarfile.TarInfo +tarfile.TarIter(??) +tarfile.VERSION +tarfile.calc_chksums(??) +tarfile.copy +tarfile.copyfileobj(??) +tarfile.errno +tarfile.filemode(??) +tarfile.filemode_table +tarfile.grp +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.normpath(??) +tarfile.nti(??) +tarfile.open +tarfile.os +tarfile.pwd +tarfile.shutil +tarfile.stat +tarfile.stn(??) +tarfile.struct +tarfile.sys +tarfile.time +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.select +telnetlib.socket +telnetlib.sys +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp([suffix, [prefix, [dir]]]) +tempfile.mkstemp([suffix, [prefix, [dir, [text]]]]) +tempfile.mktemp([suffix, [prefix, [dir]]]) +tempfile.tempdir +tempfile.template +termios.B0 +termios.B110 +termios.B115200 +termios.B1200 +termios.B134 +termios.B150 +termios.B1800 +termios.B19200 +termios.B200 +termios.B230400 +termios.B2400 +termios.B300 +termios.B38400 +termios.B460800 +termios.B4800 +termios.B50 +termios.B57600 +termios.B600 +termios.B75 +termios.B9600 +termios.BRKINT +termios.BS0 +termios.BS1 +termios.BSDLY +termios.CBAUD +termios.CBAUDEX +termios.CDSUSP +termios.CEOF +termios.CEOL +termios.CEOT +termios.CERASE +termios.CFLUSH +termios.CIBAUD +termios.CINTR +termios.CKILL +termios.CLNEXT +termios.CLOCAL +termios.CQUIT +termios.CR0 +termios.CR1 +termios.CR2 +termios.CR3 +termios.CRDLY +termios.CREAD +termios.CRPRNT +termios.CRTSCTS +termios.CS5 +termios.CS6 +termios.CS7 +termios.CS8 +termios.CSIZE +termios.CSTART +termios.CSTOP +termios.CSTOPB +termios.CSUSP +termios.CWERASE +termios.ECHO +termios.ECHOCTL +termios.ECHOE +termios.ECHOK +termios.ECHOKE +termios.ECHONL +termios.ECHOPRT +termios.EXTA +termios.EXTB +termios.FF0 +termios.FF1 +termios.FFDLY +termios.FIOASYNC +termios.FIOCLEX +termios.FIONBIO +termios.FIONCLEX +termios.FIONREAD +termios.FLUSHO +termios.HUPCL +termios.ICANON +termios.ICRNL +termios.IEXTEN +termios.IGNBRK +termios.IGNCR +termios.IGNPAR +termios.IMAXBEL +termios.INLCR +termios.INPCK +termios.IOCSIZE_MASK +termios.IOCSIZE_SHIFT +termios.ISIG +termios.ISTRIP +termios.IUCLC +termios.IXANY +termios.IXOFF +termios.IXON +termios.NCC +termios.NCCS +termios.NL0 +termios.NL1 +termios.NLDLY +termios.NOFLSH +termios.N_MOUSE +termios.N_PPP +termios.N_SLIP +termios.N_STRIP +termios.N_TTY +termios.OCRNL +termios.OFDEL +termios.OFILL +termios.OLCUC +termios.ONLCR +termios.ONLRET +termios.ONOCR +termios.OPOST +termios.PARENB +termios.PARMRK +termios.PARODD +termios.PENDIN +termios.TAB0 +termios.TAB1 +termios.TAB2 +termios.TAB3 +termios.TABDLY +termios.TCFLSH +termios.TCGETA +termios.TCGETS +termios.TCIFLUSH +termios.TCIOFF +termios.TCIOFLUSH +termios.TCION +termios.TCOFLUSH +termios.TCOOFF +termios.TCOON +termios.TCSADRAIN +termios.TCSAFLUSH +termios.TCSANOW +termios.TCSBRK +termios.TCSBRKP +termios.TCSETA +termios.TCSETAF +termios.TCSETAW +termios.TCSETS +termios.TCSETSF +termios.TCSETSW +termios.TCXONC +termios.TIOCCONS +termios.TIOCEXCL +termios.TIOCGETD +termios.TIOCGICOUNT +termios.TIOCGLCKTRMIOS +termios.TIOCGPGRP +termios.TIOCGSERIAL +termios.TIOCGSOFTCAR +termios.TIOCGWINSZ +termios.TIOCINQ +termios.TIOCLINUX +termios.TIOCMBIC +termios.TIOCMBIS +termios.TIOCMGET +termios.TIOCMIWAIT +termios.TIOCMSET +termios.TIOCM_CAR +termios.TIOCM_CD +termios.TIOCM_CTS +termios.TIOCM_DSR +termios.TIOCM_DTR +termios.TIOCM_LE +termios.TIOCM_RI +termios.TIOCM_RNG +termios.TIOCM_RTS +termios.TIOCM_SR +termios.TIOCM_ST +termios.TIOCNOTTY +termios.TIOCNXCL +termios.TIOCOUTQ +termios.TIOCPKT +termios.TIOCPKT_DATA +termios.TIOCPKT_DOSTOP +termios.TIOCPKT_FLUSHREAD +termios.TIOCPKT_FLUSHWRITE +termios.TIOCPKT_NOSTOP +termios.TIOCPKT_START +termios.TIOCPKT_STOP +termios.TIOCSCTTY +termios.TIOCSERCONFIG +termios.TIOCSERGETLSR +termios.TIOCSERGETMULTI +termios.TIOCSERGSTRUCT +termios.TIOCSERGWILD +termios.TIOCSERSETMULTI +termios.TIOCSERSWILD +termios.TIOCSER_TEMT +termios.TIOCSETD +termios.TIOCSLCKTRMIOS +termios.TIOCSPGRP +termios.TIOCSSERIAL +termios.TIOCSSOFTCAR +termios.TIOCSTI +termios.TIOCSWINSZ +termios.TOSTOP +termios.VDISCARD +termios.VEOF +termios.VEOL +termios.VEOL2 +termios.VERASE +termios.VINTR +termios.VKILL +termios.VLNEXT +termios.VMIN +termios.VQUIT +termios.VREPRINT +termios.VSTART +termios.VSTOP +termios.VSUSP +termios.VSWTC +termios.VSWTCH +termios.VT0 +termios.VT1 +termios.VTDLY +termios.VTIME +termios.VWERASE +termios.XCASE +termios.XTABS +termios.error +termios.tcdrain(fd) -> None +termios.tcflow(fd, action) -> None +termios.tcflush(fd, queue) -> None +termios.tcgetattr(fd) -> list_of_attrs +termios.tcsendbreak(fd, duration) -> None +termios.tcsetattr(fd, when, attributes) -> None +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.re +textwrap.string +textwrap.wrap(??) +this.c +this.d +this.i +this.s +thread.LockType +thread.allocate +thread.allocate_lock() -> lock object +thread.error +thread.exit() +thread.exit_thread +thread.get_ident() -> integer +thread.interrupt_main() +thread.stack_size([size]) -> size +thread.start_new +thread.start_new_thread(function, args[, kwargs]) +threading.BoundedSemaphore(??) +threading.Condition(??) +threading.Event(??) +threading.Lock +threading.RLock(??) +threading.Semaphore(??) +threading.Thread +threading.ThreadError +threading.Timer(??) +threading.activeCount(??) +threading.currentThread(??) +threading.deque(iterable) --> deque object +threading.enumerate(??) +threading.local +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.accept2dyear +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_day, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_day,tm_hour,tm_min,tm_sec,tm_wday,tm_yday,tm_isdst) +time.mktime(tuple) -> floating point number +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time +time.time() -> floating point number +time.timezone +time.tzname +time.tzset(zone) +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer +timeit.dummy_src_name +timeit.gc +timeit.itertools +timeit.main(??) +timeit.reindent(??) +timeit.sys +timeit.template +timeit.time +toaiff.error +toaiff.os +toaiff.pipes +toaiff.sndhdr +toaiff.t +toaiff.table +toaiff.tempfile +toaiff.toaiff(??) +toaiff.uncompress +token.AMPER +token.AMPEREQUAL +token.AT +token.BACKQUOTE +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.main(??) +token.tok_name +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BACKQUOTE +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing +tokenize.String +tokenize.TILDE +tokenize.Token +tokenize.TokenError +tokenize.Triple +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.double3prog +tokenize.endprogs +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.printtoken(??) +tokenize.pseudoprog +tokenize.re +tokenize.single3prog +tokenize.single_quoted +tokenize.string +tokenize.t +tokenize.tabsize +tokenize.tok_name +tokenize.tokenize(??) +tokenize.tokenize_loop(??) +tokenize.tokenprog +tokenize.triple_quoted +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.cPickle +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc +trace.linecache +trace.main(??) +trace.modname(??) +trace.os +trace.pickle +trace.re +trace.rx_blank +trace.sys +trace.threading +trace.token +trace.tokenize +trace.types +trace.usage(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys +traceback.tb_lineno(??) +traceback.types +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B460800 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CBAUD +tty.CBAUDEX +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CIBAUD +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.IOCSIZE_MASK +tty.IOCSIZE_SHIFT +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IUCLC +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCC +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.N_MOUSE +tty.N_PPP +tty.N_SLIP +tty.N_STRIP +tty.N_TTY +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.OLCUC +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCFLSH +tty.TCGETA +tty.TCGETS +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSBRK +tty.TCSBRKP +tty.TCSETA +tty.TCSETAF +tty.TCSETAW +tty.TCSETS +tty.TCSETSF +tty.TCSETSW +tty.TCXONC +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGICOUNT +tty.TIOCGLCKTRMIOS +tty.TIOCGPGRP +tty.TIOCGSERIAL +tty.TIOCGSOFTCAR +tty.TIOCGWINSZ +tty.TIOCINQ +tty.TIOCLINUX +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMIWAIT +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSERCONFIG +tty.TIOCSERGETLSR +tty.TIOCSERGETMULTI +tty.TIOCSERGSTRUCT +tty.TIOCSERGWILD +tty.TIOCSERSETMULTI +tty.TIOCSERSWILD +tty.TIOCSER_TEMT +tty.TIOCSETD +tty.TIOCSLCKTRMIOS +tty.TIOCSPGRP +tty.TIOCSSERIAL +tty.TIOCSSOFTCAR +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VSWTC +tty.VSWTCH +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.XCASE +tty.XTABS +tty.error +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> an empty tuple +type(object) -> the object's type +types.BooleanType +types.BufferType +types.BuiltinFunctionType +types.BuiltinMethodType +types.ClassType +types.CodeType +types.ComplexType +types.DictProxyType +types.DictType +types.DictionaryType +types.EllipsisType +types.FileType +types.FloatType +types.FrameType +types.FunctionType +types.GeneratorType +types.GetSetDescriptorType +types.InstanceType +types.IntType +types.LambdaType +types.ListType +types.LongType +types.MemberDescriptorType +types.MethodType +types.ModuleType +types.NoneType +types.NotImplementedType +types.ObjectType +types.SliceType +types.StringType +types.StringTypes +types.TracebackType +types.TupleType +types.TypeType +types.UnboundMethodType +types.UnicodeType +types.XRangeType +unichr(i) -> Unicode character +unicode(string [, encoding[, errors]]) -> object +unicodedata.UCD +unicodedata.bidirectional(unichr) +unicodedata.category(unichr) +unicodedata.combining(unichr) +unicodedata.decimal(unichr[, default]) +unicodedata.decomposition(unichr) +unicodedata.digit(unichr[, default]) +unicodedata.east_asian_width(unichr) +unicodedata.lookup(name) +unicodedata.mirrored(unichr) +unicodedata.name(unichr[, default]) +unicodedata.normalize(form, unistr) +unicodedata.numeric(unichr[, default]) +unicodedata.ucd_3_2_0 +unicodedata.ucnhash_CAPI +unicodedata.unidata_version +unittest.FunctionTestCase +unittest.TestCase +unittest.TestLoader +unittest.TestProgram +unittest.TestResult +unittest.TestSuite +unittest.TextTestRunner +unittest.defaultTestLoader +unittest.findTestCases(??) +unittest.getTestCaseNames(??) +unittest.main +unittest.makeSuite(??) +unittest.os +unittest.sys +unittest.time +unittest.traceback +unittest.types +urllib.ContentTooShortError +urllib.FancyURLopener(??) +urllib.MAXFTPCACHE +urllib.URLopener(??) +urllib.addbase(??) +urllib.addclosehook(??) +urllib.addinfo(??) +urllib.addinfourl(??) +urllib.always_safe +urllib.basejoin(??) +urllib.ftpcache +urllib.ftperrors(??) +urllib.ftpwrapper(??) +urllib.getproxies(??) +urllib.getproxies_environment(??) +urllib.localhost(??) +urllib.main(??) +urllib.noheaders(??) +urllib.os +urllib.pathname2url(??) +urllib.proxy_bypass(??) +urllib.quote('abc def') -> 'abc%20def' +urllib.quote_plus(??) +urllib.reporthook(??) +urllib.socket +urllib.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.splitgophertype('/Xselector') --> 'X', 'selector'. +urllib.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.splitnport(??) +urllib.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.splitport('host:port') --> 'host', 'port'. +urllib.splitquery('/path?query') --> '/path', 'query'. +urllib.splittag('/path#tag') --> '/path', 'tag'. +urllib.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.splitvalue('attr=value') --> 'attr', 'value'. +urllib.string +urllib.sys +urllib.test(??) +urllib.test1(??) +urllib.thishost(??) +urllib.time +urllib.toBytes(u"URL") --> 'URL'. +urllib.unquote('abc%20def') -> 'abc def'. +urllib.unquote_plus(??) +urllib.unwrap('') --> 'type://host/path'. +urllib.url2pathname(??) +urllib.urlcleanup(??) +urllib.urlencode(??) +urllib.urlopen(url [, data]) -> open file-like object +urllib.urlretrieve(??) +urllib2.AbstractBasicAuthHandler(??) +urllib2.AbstractDigestAuthHandler(??) +urllib2.AbstractHTTPHandler(??) +urllib2.BaseHandler(??) +urllib2.CacheFTPHandler(??) +urllib2.FTPHandler(??) +urllib2.FileHandler(??) +urllib2.GopherError +urllib2.GopherHandler(??) +urllib2.HTTPBasicAuthHandler(??) +urllib2.HTTPCookieProcessor(??) +urllib2.HTTPDefaultErrorHandler(??) +urllib2.HTTPDigestAuthHandler(??) +urllib2.HTTPError +urllib2.HTTPErrorProcessor(??) +urllib2.HTTPHandler(??) +urllib2.HTTPPasswordMgr(??) +urllib2.HTTPPasswordMgrWithDefaultRealm(??) +urllib2.HTTPRedirectHandler(??) +urllib2.HTTPSHandler(??) +urllib2.OpenerDirector(??) +urllib2.ProxyBasicAuthHandler(??) +urllib2.ProxyDigestAuthHandler(??) +urllib2.ProxyHandler(??) +urllib2.Request(??) +urllib2.StringIO([s]) -- Return a StringIO-like stream for reading or writing +urllib2.URLError +urllib2.UnknownHandler(??) +urllib2.addinfourl(??) +urllib2.base64 +urllib2.bisect +urllib2.build_opener(??) +urllib2.ftpwrapper(??) +urllib2.getproxies(??) +urllib2.hashlib +urllib2.httplib +urllib2.install_opener(??) +urllib2.localhost(??) +urllib2.mimetools +urllib2.noheaders(??) +urllib2.os +urllib2.parse_http_list(??) +urllib2.parse_keqv_list(??) +urllib2.posixpath +urllib2.quote('abc def') -> 'abc%20def' +urllib2.random +urllib2.randombytes(??) +urllib2.re +urllib2.request_host(??) +urllib2.socket +urllib2.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib2.splitgophertype('/Xselector') --> 'X', 'selector'. +urllib2.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib2.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib2.splitport('host:port') --> 'host', 'port'. +urllib2.splitquery('/path?query') --> '/path', 'query'. +urllib2.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib2.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib2.splitvalue('attr=value') --> 'attr', 'value'. +urllib2.sys +urllib2.time +urllib2.unquote('abc%20def') -> 'abc def'. +urllib2.unwrap('') --> 'type://host/path'. +urllib2.url2pathname(??) +urllib2.urlopen(??) +urllib2.urlparse +urlparse.BaseResult +urlparse.MAX_CACHE_SIZE +urlparse.ParseResult +urlparse.SplitResult +urlparse.clear_cache(??) +urlparse.non_hierarchical +urlparse.scheme_chars +urlparse.test(??) +urlparse.test_input +urlparse.urldefrag(??) +urlparse.urljoin(??) +urlparse.urlparse(??) +urlparse.urlsplit(??) +urlparse.urlunparse(??) +urlparse.urlunsplit(??) +urlparse.uses_fragment +urlparse.uses_netloc +urlparse.uses_params +urlparse.uses_query +urlparse.uses_relative +user.home +user.os +user.pythonrc +uu.Error +uu.binascii +uu.decode(??) +uu.encode(??) +uu.os +uu.sys +uu.test(??) +uuid.NAMESPACE_DNS +uuid.NAMESPACE_OID +uuid.NAMESPACE_URL +uuid.NAMESPACE_X500 +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID +uuid.ctypes +uuid.getnode(??) +uuid.lib +uuid.libname +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +warnings.defaultaction +warnings.filters +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.linecache +warnings.onceregistry +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys +warnings.types +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.big_endian +wave.open(??) +wave.openfp(??) +wave.struct +weakref.CallableProxyType +weakref.KeyedRef +weakref.ProxyType +weakref.ProxyTypes +weakref.ReferenceError +weakref.ReferenceType +weakref.UserDict +weakref.WeakKeyDictionary(??) +weakref.WeakValueDictionary(??) +weakref.getweakrefcount(object) -- return the number of weak references +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref +webbrowser.BackgroundBrowser +webbrowser.BaseBrowser +webbrowser.Elinks +webbrowser.Error +webbrowser.Galeon +webbrowser.GenericBrowser +webbrowser.Grail +webbrowser.Konqueror +webbrowser.Mozilla +webbrowser.Netscape +webbrowser.Opera +webbrowser.UnixBrowser +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex +webbrowser.stat +webbrowser.subprocess +webbrowser.sys +webbrowser.time +whichdb.dbm +whichdb.os +whichdb.struct +whichdb.sys +whichdb.whichdb(??) +wsgiref.handlers +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.StringType +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os +wsgiref.handlers.sys +wsgiref.handlers.time +wsgiref.headers +wsgiref.headers.Headers(??) +wsgiref.headers.ListType +wsgiref.headers.TupleType +wsgiref.headers.re +wsgiref.headers.tspecials +wsgiref.simple_server +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib +wsgiref.util +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.DictType +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.ListType +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.StringType +wsgiref.validate.TupleType +wsgiref.validate.WSGIWarning +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.header_re +wsgiref.validate.re +wsgiref.validate.sys +wsgiref.validate.validator(??) +wsgiref.validate.warnings +xdrlib.ConversionError +xdrlib.Error +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct +xml.dom +xml.dom.DOMException +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr +xml.dom.EMPTY_NAMESPACE +xml.dom.EMPTY_PREFIX +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr +xml.dom.InuseAttributeErr +xml.dom.InvalidAccessErr +xml.dom.InvalidCharacterErr +xml.dom.InvalidModificationErr +xml.dom.InvalidStateErr +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr +xml.dom.NoDataAllowedErr +xml.dom.NoModificationAllowedErr +xml.dom.Node(??) +xml.dom.NodeFilter +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr +xml.dom.NotSupportedErr +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg +xml.dom.domreg.EmptyNodeList +xml.dom.domreg.NodeList +xml.dom.domreg.StringTypes +xml.dom.domreg.defproperty(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered +xml.dom.domreg.well_known_implementations +xml.dom.expatbuilder +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE +xml.dom.expatbuilder.EMPTY_PREFIX +xml.dom.expatbuilder.ElementInfo +xml.dom.expatbuilder.EmptyNodeList +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch +xml.dom.expatbuilder.FilterVisibilityController +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.NodeList +xml.dom.expatbuilder.ParseEscape +xml.dom.expatbuilder.Rejecter +xml.dom.expatbuilder.Skipper +xml.dom.expatbuilder.StringTypes +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.defproperty(??) +xml.dom.expatbuilder.expat +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation +xml.dom.expatbuilder.xmlbuilder +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat +xml.dom.minicompat.EmptyNodeList +xml.dom.minicompat.NodeList +xml.dom.minicompat.StringTypes +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml +xml.dom.minidom +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE +xml.dom.minidom.EMPTY_PREFIX +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo +xml.dom.minidom.EmptyNodeList +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap +xml.dom.minidom.StringTypes +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml +xml.dom.pulldom +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.types +xml.dom.pulldom.xml +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy +xml.dom.xmlbuilder.xml +xml.etree +xml.etree.ElementInclude +xml.etree.ElementInclude.ElementTree +xml.etree.ElementInclude.FatalIncludeError +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath +xml.etree.ElementPath.Path(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.re +xml.etree.ElementPath.xpath_descendant_or_self(??) +xml.etree.ElementPath.xpath_tokenizer +xml.etree.ElementTree +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLTreeBuilder(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fixtag(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re +xml.etree.ElementTree.string +xml.etree.ElementTree.sys +xml.etree.ElementTree.tostring(??) +xml.etree.cElementTree +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element +xml.etree.cElementTree.ElementPath +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement +xml.etree.cElementTree.TreeBuilder +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser +xml.etree.cElementTree.XMLParserError +xml.etree.cElementTree.XMLTreeBuilder +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.tostring(??) +xml.parsers +xml.parsers.expat +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error +xml.parsers.expat.errors +xml.parsers.expat.expat_CAPI +xml.parsers.expat.features +xml.parsers.expat.model +xml.parsers.expat.native_encoding +xml.parsers.expat.version_info +xml.sax +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException +xml.sax.SAXNotRecognizedException +xml.sax.SAXNotSupportedException +xml.sax.SAXParseException +xml.sax.SAXReaderNotAvailable +xml.sax.default_parser_list +xml.sax.expatreader +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException +xml.sax.expatreader.SAXNotRecognizedException +xml.sax.expatreader.SAXNotSupportedException +xml.sax.expatreader.SAXParseException +xml.sax.expatreader.SAXReaderNotAvailable +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader +xml.sax.handler +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features +xml.sax.handler.all_properties +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler +xml.sax.saxutils.os +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.types +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib +xml.sax.saxutils.urlparse +xml.sax.saxutils.xmlreader +xml.sax.xmlreader +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException +xml.sax.xmlreader.SAXNotSupportedException +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler +xmlcore.dom +xmlcore.dom.DOMException +xmlcore.dom.DOMSTRING_SIZE_ERR +xmlcore.dom.DomstringSizeErr +xmlcore.dom.EMPTY_NAMESPACE +xmlcore.dom.EMPTY_PREFIX +xmlcore.dom.HIERARCHY_REQUEST_ERR +xmlcore.dom.HierarchyRequestErr +xmlcore.dom.INDEX_SIZE_ERR +xmlcore.dom.INUSE_ATTRIBUTE_ERR +xmlcore.dom.INVALID_ACCESS_ERR +xmlcore.dom.INVALID_CHARACTER_ERR +xmlcore.dom.INVALID_MODIFICATION_ERR +xmlcore.dom.INVALID_STATE_ERR +xmlcore.dom.IndexSizeErr +xmlcore.dom.InuseAttributeErr +xmlcore.dom.InvalidAccessErr +xmlcore.dom.InvalidCharacterErr +xmlcore.dom.InvalidModificationErr +xmlcore.dom.InvalidStateErr +xmlcore.dom.NAMESPACE_ERR +xmlcore.dom.NOT_FOUND_ERR +xmlcore.dom.NOT_SUPPORTED_ERR +xmlcore.dom.NO_DATA_ALLOWED_ERR +xmlcore.dom.NO_MODIFICATION_ALLOWED_ERR +xmlcore.dom.NamespaceErr +xmlcore.dom.NoDataAllowedErr +xmlcore.dom.NoModificationAllowedErr +xmlcore.dom.Node(??) +xmlcore.dom.NodeFilter +xmlcore.dom.NodeFilter.NodeFilter(??) +xmlcore.dom.NotFoundErr +xmlcore.dom.NotSupportedErr +xmlcore.dom.SYNTAX_ERR +xmlcore.dom.SyntaxErr +xmlcore.dom.UserDataHandler(??) +xmlcore.dom.VALIDATION_ERR +xmlcore.dom.ValidationErr +xmlcore.dom.WRONG_DOCUMENT_ERR +xmlcore.dom.WrongDocumentErr +xmlcore.dom.XHTML_NAMESPACE +xmlcore.dom.XMLNS_NAMESPACE +xmlcore.dom.XML_NAMESPACE +xmlcore.dom.domreg +xmlcore.dom.domreg.EmptyNodeList +xmlcore.dom.domreg.NodeList +xmlcore.dom.domreg.StringTypes +xmlcore.dom.domreg.defproperty(??) +xmlcore.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xmlcore.dom.domreg.registerDOMImplementation(name, factory) +xmlcore.dom.domreg.registered +xmlcore.dom.domreg.well_known_implementations +xmlcore.dom.expatbuilder +xmlcore.dom.expatbuilder.CDATA_SECTION_NODE +xmlcore.dom.expatbuilder.DOCUMENT_NODE +xmlcore.dom.expatbuilder.EMPTY_NAMESPACE +xmlcore.dom.expatbuilder.EMPTY_PREFIX +xmlcore.dom.expatbuilder.ElementInfo +xmlcore.dom.expatbuilder.EmptyNodeList +xmlcore.dom.expatbuilder.ExpatBuilder(??) +xmlcore.dom.expatbuilder.ExpatBuilderNS(??) +xmlcore.dom.expatbuilder.FILTER_ACCEPT +xmlcore.dom.expatbuilder.FILTER_INTERRUPT +xmlcore.dom.expatbuilder.FILTER_REJECT +xmlcore.dom.expatbuilder.FILTER_SKIP +xmlcore.dom.expatbuilder.FilterCrutch +xmlcore.dom.expatbuilder.FilterVisibilityController +xmlcore.dom.expatbuilder.FragmentBuilder(??) +xmlcore.dom.expatbuilder.FragmentBuilderNS(??) +xmlcore.dom.expatbuilder.InternalSubsetExtractor(??) +xmlcore.dom.expatbuilder.Namespaces(??) +xmlcore.dom.expatbuilder.Node(??) +xmlcore.dom.expatbuilder.NodeFilter(??) +xmlcore.dom.expatbuilder.NodeList +xmlcore.dom.expatbuilder.ParseEscape +xmlcore.dom.expatbuilder.Rejecter +xmlcore.dom.expatbuilder.Skipper +xmlcore.dom.expatbuilder.StringTypes +xmlcore.dom.expatbuilder.TEXT_NODE +xmlcore.dom.expatbuilder.XMLNS_NAMESPACE +xmlcore.dom.expatbuilder.defproperty(??) +xmlcore.dom.expatbuilder.expat +xmlcore.dom.expatbuilder.makeBuilder(??) +xmlcore.dom.expatbuilder.minidom +xmlcore.dom.expatbuilder.parse(??) +xmlcore.dom.expatbuilder.parseFragment(??) +xmlcore.dom.expatbuilder.parseFragmentString(??) +xmlcore.dom.expatbuilder.parseString(??) +xmlcore.dom.expatbuilder.theDOMImplementation +xmlcore.dom.expatbuilder.xmlbuilder +xmlcore.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xmlcore.dom.minicompat +xmlcore.dom.minicompat.EmptyNodeList +xmlcore.dom.minicompat.NodeList +xmlcore.dom.minicompat.StringTypes +xmlcore.dom.minicompat.defproperty(??) +xmlcore.dom.minicompat.xmlcore +xmlcore.dom.minidom +xmlcore.dom.minidom.Attr(??) +xmlcore.dom.minidom.AttributeList +xmlcore.dom.minidom.CDATASection(??) +xmlcore.dom.minidom.CharacterData(??) +xmlcore.dom.minidom.Childless(??) +xmlcore.dom.minidom.Comment(??) +xmlcore.dom.minidom.DOMImplementation(??) +xmlcore.dom.minidom.DOMImplementationLS(??) +xmlcore.dom.minidom.Document(??) +xmlcore.dom.minidom.DocumentFragment(??) +xmlcore.dom.minidom.DocumentLS(??) +xmlcore.dom.minidom.DocumentType(??) +xmlcore.dom.minidom.EMPTY_NAMESPACE +xmlcore.dom.minidom.EMPTY_PREFIX +xmlcore.dom.minidom.Element(??) +xmlcore.dom.minidom.ElementInfo +xmlcore.dom.minidom.EmptyNodeList +xmlcore.dom.minidom.Entity(??) +xmlcore.dom.minidom.Identified(??) +xmlcore.dom.minidom.NamedNodeMap +xmlcore.dom.minidom.Node(??) +xmlcore.dom.minidom.NodeList +xmlcore.dom.minidom.Notation(??) +xmlcore.dom.minidom.ProcessingInstruction(??) +xmlcore.dom.minidom.ReadOnlySequentialNamedNodeMap +xmlcore.dom.minidom.StringTypes +xmlcore.dom.minidom.Text(??) +xmlcore.dom.minidom.TypeInfo +xmlcore.dom.minidom.XMLNS_NAMESPACE +xmlcore.dom.minidom.defproperty(??) +xmlcore.dom.minidom.domreg +xmlcore.dom.minidom.getDOMImplementation(??) +xmlcore.dom.minidom.parse(??) +xmlcore.dom.minidom.parseString(??) +xmlcore.dom.minidom.xmlcore +xmlcore.dom.pulldom +xmlcore.dom.pulldom.CHARACTERS +xmlcore.dom.pulldom.COMMENT +xmlcore.dom.pulldom.DOMEventStream(??) +xmlcore.dom.pulldom.END_DOCUMENT +xmlcore.dom.pulldom.END_ELEMENT +xmlcore.dom.pulldom.ErrorHandler(??) +xmlcore.dom.pulldom.IGNORABLE_WHITESPACE +xmlcore.dom.pulldom.PROCESSING_INSTRUCTION +xmlcore.dom.pulldom.PullDOM(??) +xmlcore.dom.pulldom.SAX2DOM(??) +xmlcore.dom.pulldom.START_DOCUMENT +xmlcore.dom.pulldom.START_ELEMENT +xmlcore.dom.pulldom.default_bufsize +xmlcore.dom.pulldom.parse(??) +xmlcore.dom.pulldom.parseString(??) +xmlcore.dom.pulldom.types +xmlcore.dom.pulldom.xmlcore +xmlcore.dom.registerDOMImplementation(name, factory) +xmlcore.dom.xmlbuilder +xmlcore.dom.xmlbuilder.DOMBuilder(??) +xmlcore.dom.xmlbuilder.DOMBuilderFilter(??) +xmlcore.dom.xmlbuilder.DOMEntityResolver +xmlcore.dom.xmlbuilder.DOMImplementationLS(??) +xmlcore.dom.xmlbuilder.DOMInputSource +xmlcore.dom.xmlbuilder.DocumentLS(??) +xmlcore.dom.xmlbuilder.Options(??) +xmlcore.dom.xmlbuilder.copy +xmlcore.dom.xmlbuilder.xmlcore +xmlcore.etree +xmlcore.etree.ElementInclude +xmlcore.etree.ElementInclude.ElementTree +xmlcore.etree.ElementInclude.FatalIncludeError +xmlcore.etree.ElementInclude.XINCLUDE +xmlcore.etree.ElementInclude.XINCLUDE_FALLBACK +xmlcore.etree.ElementInclude.XINCLUDE_INCLUDE +xmlcore.etree.ElementInclude.copy +xmlcore.etree.ElementInclude.default_loader(??) +xmlcore.etree.ElementInclude.include(??) +xmlcore.etree.ElementPath +xmlcore.etree.ElementPath.Path(??) +xmlcore.etree.ElementPath.find(??) +xmlcore.etree.ElementPath.findall(??) +xmlcore.etree.ElementPath.findtext(??) +xmlcore.etree.ElementPath.re +xmlcore.etree.ElementPath.xpath_descendant_or_self(??) +xmlcore.etree.ElementPath.xpath_tokenizer +xmlcore.etree.ElementTree +xmlcore.etree.ElementTree.Comment(??) +xmlcore.etree.ElementTree.Element(??) +xmlcore.etree.ElementTree.ElementPath +xmlcore.etree.ElementTree.ElementTree(??) +xmlcore.etree.ElementTree.PI(??) +xmlcore.etree.ElementTree.ProcessingInstruction(??) +xmlcore.etree.ElementTree.QName(??) +xmlcore.etree.ElementTree.SubElement(??) +xmlcore.etree.ElementTree.TreeBuilder(??) +xmlcore.etree.ElementTree.VERSION +xmlcore.etree.ElementTree.XML(??) +xmlcore.etree.ElementTree.XMLID(??) +xmlcore.etree.ElementTree.XMLParser(??) +xmlcore.etree.ElementTree.XMLTreeBuilder(??) +xmlcore.etree.ElementTree.dump(??) +xmlcore.etree.ElementTree.fixtag(??) +xmlcore.etree.ElementTree.fromstring(??) +xmlcore.etree.ElementTree.iselement(??) +xmlcore.etree.ElementTree.iterparse(??) +xmlcore.etree.ElementTree.parse(??) +xmlcore.etree.ElementTree.re +xmlcore.etree.ElementTree.string +xmlcore.etree.ElementTree.sys +xmlcore.etree.ElementTree.tostring(??) +xmlcore.etree.cElementTree +xmlcore.etree.cElementTree.Comment(??) +xmlcore.etree.cElementTree.Element +xmlcore.etree.cElementTree.ElementPath +xmlcore.etree.cElementTree.ElementTree(??) +xmlcore.etree.cElementTree.PI(??) +xmlcore.etree.cElementTree.ProcessingInstruction(??) +xmlcore.etree.cElementTree.QName(??) +xmlcore.etree.cElementTree.SubElement +xmlcore.etree.cElementTree.TreeBuilder +xmlcore.etree.cElementTree.VERSION +xmlcore.etree.cElementTree.XML(??) +xmlcore.etree.cElementTree.XMLID(??) +xmlcore.etree.cElementTree.XMLParser +xmlcore.etree.cElementTree.XMLParserError +xmlcore.etree.cElementTree.XMLTreeBuilder +xmlcore.etree.cElementTree.dump(??) +xmlcore.etree.cElementTree.fromstring(??) +xmlcore.etree.cElementTree.iselement(??) +xmlcore.etree.cElementTree.iterparse +xmlcore.etree.cElementTree.parse(??) +xmlcore.etree.cElementTree.tostring(??) +xmlcore.parsers +xmlcore.parsers.expat +xmlcore.parsers.expat.EXPAT_VERSION +xmlcore.parsers.expat.ErrorString(errno) -> string +xmlcore.parsers.expat.ExpatError +xmlcore.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xmlcore.parsers.expat.XMLParserType +xmlcore.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xmlcore.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xmlcore.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xmlcore.parsers.expat.error +xmlcore.parsers.expat.errors +xmlcore.parsers.expat.expat_CAPI +xmlcore.parsers.expat.features +xmlcore.parsers.expat.model +xmlcore.parsers.expat.native_encoding +xmlcore.parsers.expat.version_info +xmlcore.sax +xmlcore.sax.ContentHandler(??) +xmlcore.sax.ErrorHandler(??) +xmlcore.sax.InputSource(??) +xmlcore.sax.SAXException +xmlcore.sax.SAXNotRecognizedException +xmlcore.sax.SAXNotSupportedException +xmlcore.sax.SAXParseException +xmlcore.sax.SAXReaderNotAvailable +xmlcore.sax.default_parser_list +xmlcore.sax.expatreader +xmlcore.sax.expatreader.AttributesImpl(??) +xmlcore.sax.expatreader.AttributesNSImpl(??) +xmlcore.sax.expatreader.ExpatLocator(??) +xmlcore.sax.expatreader.ExpatParser(??) +xmlcore.sax.expatreader.SAXException +xmlcore.sax.expatreader.SAXNotRecognizedException +xmlcore.sax.expatreader.SAXNotSupportedException +xmlcore.sax.expatreader.SAXParseException +xmlcore.sax.expatreader.SAXReaderNotAvailable +xmlcore.sax.expatreader.create_parser(??) +xmlcore.sax.expatreader.expat +xmlcore.sax.expatreader.feature_external_ges +xmlcore.sax.expatreader.feature_external_pes +xmlcore.sax.expatreader.feature_namespace_prefixes +xmlcore.sax.expatreader.feature_namespaces +xmlcore.sax.expatreader.feature_string_interning +xmlcore.sax.expatreader.feature_validation +xmlcore.sax.expatreader.handler +xmlcore.sax.expatreader.property_interning_dict +xmlcore.sax.expatreader.property_xml_string +xmlcore.sax.expatreader.saxutils +xmlcore.sax.expatreader.version +xmlcore.sax.expatreader.xmlreader +xmlcore.sax.handler +xmlcore.sax.handler.ContentHandler(??) +xmlcore.sax.handler.DTDHandler(??) +xmlcore.sax.handler.EntityResolver(??) +xmlcore.sax.handler.ErrorHandler(??) +xmlcore.sax.handler.all_features +xmlcore.sax.handler.all_properties +xmlcore.sax.handler.feature_external_ges +xmlcore.sax.handler.feature_external_pes +xmlcore.sax.handler.feature_namespace_prefixes +xmlcore.sax.handler.feature_namespaces +xmlcore.sax.handler.feature_string_interning +xmlcore.sax.handler.feature_validation +xmlcore.sax.handler.property_declaration_handler +xmlcore.sax.handler.property_dom_node +xmlcore.sax.handler.property_encoding +xmlcore.sax.handler.property_interning_dict +xmlcore.sax.handler.property_lexical_handler +xmlcore.sax.handler.property_xml_string +xmlcore.sax.handler.version +xmlcore.sax.make_parser(??) +xmlcore.sax.parse(??) +xmlcore.sax.parseString(??) +xmlcore.sax.saxutils +xmlcore.sax.saxutils.XMLFilterBase(??) +xmlcore.sax.saxutils.XMLGenerator(??) +xmlcore.sax.saxutils.escape(??) +xmlcore.sax.saxutils.handler +xmlcore.sax.saxutils.os +xmlcore.sax.saxutils.prepare_input_source(??) +xmlcore.sax.saxutils.quoteattr(??) +xmlcore.sax.saxutils.types +xmlcore.sax.saxutils.unescape(??) +xmlcore.sax.saxutils.urllib +xmlcore.sax.saxutils.urlparse +xmlcore.sax.saxutils.xmlreader +xmlcore.sax.xmlreader +xmlcore.sax.xmlreader.AttributesImpl(??) +xmlcore.sax.xmlreader.AttributesNSImpl(??) +xmlcore.sax.xmlreader.IncrementalParser(??) +xmlcore.sax.xmlreader.InputSource(??) +xmlcore.sax.xmlreader.Locator(??) +xmlcore.sax.xmlreader.SAXNotRecognizedException +xmlcore.sax.xmlreader.SAXNotSupportedException +xmlcore.sax.xmlreader.XMLReader(??) +xmlcore.sax.xmlreader.handler +xmllib.Error +xmllib.TestXMLParser(??) +xmllib.XMLParser(??) +xmllib.amp +xmllib.attrfind +xmllib.attrtrans +xmllib.cdataclose +xmllib.cdataopen +xmllib.charref +xmllib.commentclose +xmllib.commentopen +xmllib.doctype +xmllib.doubledash +xmllib.endbracket +xmllib.endbracketfind +xmllib.endtagopen +xmllib.entityref +xmllib.illegal +xmllib.interesting +xmllib.ncname +xmllib.newline +xmllib.procclose +xmllib.procopen +xmllib.qname +xmllib.re +xmllib.ref +xmllib.space +xmllib.starttagend +xmllib.starttagmatch +xmllib.starttagopen +xmllib.string +xmllib.tagfind +xmllib.test(??) +xmllib.version +xmllib.xmldecl +xmllib.xmlns +xmlrpclib.APPLICATION_ERROR +xmlrpclib.Binary(??) +xmlrpclib.Boolean +xmlrpclib.BooleanType +xmlrpclib.BufferType +xmlrpclib.BuiltinFunctionType +xmlrpclib.BuiltinMethodType +xmlrpclib.ClassType +xmlrpclib.CodeType +xmlrpclib.ComplexType +xmlrpclib.DateTime(??) +xmlrpclib.DictProxyType +xmlrpclib.DictType +xmlrpclib.DictionaryType +xmlrpclib.EllipsisType +xmlrpclib.Error +xmlrpclib.ExpatParser(??) +xmlrpclib.False +xmlrpclib.FastMarshaller +xmlrpclib.FastParser +xmlrpclib.FastUnmarshaller +xmlrpclib.Fault +xmlrpclib.FileType +xmlrpclib.FloatType +xmlrpclib.FrameType +xmlrpclib.FunctionType +xmlrpclib.GeneratorType +xmlrpclib.GetSetDescriptorType +xmlrpclib.INTERNAL_ERROR +xmlrpclib.INVALID_ENCODING_CHAR +xmlrpclib.INVALID_METHOD_PARAMS +xmlrpclib.INVALID_XMLRPC +xmlrpclib.InstanceType +xmlrpclib.IntType +xmlrpclib.LambdaType +xmlrpclib.ListType +xmlrpclib.LongType +xmlrpclib.MAXINT +xmlrpclib.METHOD_NOT_FOUND +xmlrpclib.MININT +xmlrpclib.Marshaller(??) +xmlrpclib.MemberDescriptorType +xmlrpclib.MethodType +xmlrpclib.ModuleType +xmlrpclib.MultiCall(??) +xmlrpclib.MultiCallIterator(??) +xmlrpclib.NOT_WELLFORMED_ERROR +xmlrpclib.NoneType +xmlrpclib.NotImplementedType +xmlrpclib.ObjectType +xmlrpclib.PARSE_ERROR +xmlrpclib.ProtocolError +xmlrpclib.ResponseError +xmlrpclib.SERVER_ERROR +xmlrpclib.SYSTEM_ERROR +xmlrpclib.SafeTransport(??) +xmlrpclib.Server(??) +xmlrpclib.ServerProxy(??) +xmlrpclib.SgmlopParser +xmlrpclib.SliceType +xmlrpclib.SlowParser(??) +xmlrpclib.StringIO +xmlrpclib.StringType +xmlrpclib.StringTypes +xmlrpclib.TRANSPORT_ERROR +xmlrpclib.TracebackType +xmlrpclib.Transport(??) +xmlrpclib.True +xmlrpclib.TupleType +xmlrpclib.TypeType +xmlrpclib.UNSUPPORTED_ENCODING +xmlrpclib.UnboundMethodType +xmlrpclib.UnicodeType +xmlrpclib.Unmarshaller(??) +xmlrpclib.WRAPPERS +xmlrpclib.XRangeType +xmlrpclib.base64 +xmlrpclib.boolean +xmlrpclib.datetime +xmlrpclib.dumps(??) +xmlrpclib.escape(??) +xmlrpclib.expat +xmlrpclib.getparser() -> parser, unmarshaller +xmlrpclib.loads(??) +xmlrpclib.operator +xmlrpclib.re +xmlrpclib.string +xmlrpclib.time +xrange([start,] stop[, step]) -> xrange object +xxsubtype.bench +xxsubtype.spamdict +xxsubtype.spamlist +zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)] +zipfile.BadZipfile +zipfile.LargeZipFile +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP_DEFLATED +zipfile.ZIP_STORED +zipfile.ZipFile(??) +zipfile.ZipInfo +zipfile.binascii +zipfile.cStringIO +zipfile.error +zipfile.is_zipfile(??) +zipfile.main(??) +zipfile.os +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys +zipfile.time +zipfile.zlib +zipimport.ZipImportError +zipimport.zipimporter(archivepath) -> zipimporter object +zlib.DEFLATED +zlib.DEF_MEM_LEVEL +zlib.MAX_WBITS +zlib.ZLIB_VERSION +zlib.Z_BEST_COMPRESSION +zlib.Z_BEST_SPEED +zlib.Z_DEFAULT_COMPRESSION +zlib.Z_DEFAULT_STRATEGY +zlib.Z_FILTERED +zlib.Z_FINISH +zlib.Z_FULL_FLUSH +zlib.Z_HUFFMAN_ONLY +zlib.Z_NO_FLUSH +zlib.Z_SYNC_FLUSH +zlib.adler32(string[, start]) -- Compute an Adler-32 checksum of string. +zlib.compress(string[, level]) -- Returned compressed string. +zlib.compressobj([level]) -- Return a compressor object. +zlib.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zlib.decompress(string[, wbits[, bufsize]]) -- Return decompressed string. +zlib.decompressobj([wbits]) -- Return a decompressor object. +zlib.error diff --git a/third_party/qscintilla/qsci/api/python/Python-2.6.api b/third_party/qscintilla/qsci/api/python/Python-2.6.api new file mode 100644 index 0000000..9f4bb4b --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-2.6.api @@ -0,0 +1,8216 @@ +ArithmeticError +AssertionError +AttributeError +BaseException +BaseHTTPServer.BaseHTTPRequestHandler(??) +BaseHTTPServer.DEFAULT_ERROR_CONTENT_TYPE +BaseHTTPServer.DEFAULT_ERROR_MESSAGE +BaseHTTPServer.HTTPServer(??) +BaseHTTPServer.SocketServer +BaseHTTPServer.catch_warnings +BaseHTTPServer.filterwarnings(??) +BaseHTTPServer.mimetools +BaseHTTPServer.socket +BaseHTTPServer.sys +BaseHTTPServer.test(??) +BaseHTTPServer.time +Bastion.Bastion(??) +Bastion.BastionClass(??) +Bastion.MethodType +BufferError +BytesWarning +CGIHTTPServer.BaseHTTPServer +CGIHTTPServer.CGIHTTPRequestHandler(??) +CGIHTTPServer.SimpleHTTPServer +CGIHTTPServer.executable(??) +CGIHTTPServer.nobody +CGIHTTPServer.nobody_uid(??) +CGIHTTPServer.os +CGIHTTPServer.select +CGIHTTPServer.sys +CGIHTTPServer.test(??) +CGIHTTPServer.urllib +ConfigParser.ConfigParser(??) +ConfigParser.DEFAULTSECT +ConfigParser.DuplicateSectionError +ConfigParser.Error +ConfigParser.InterpolationDepthError +ConfigParser.InterpolationError +ConfigParser.InterpolationMissingOptionError +ConfigParser.InterpolationSyntaxError +ConfigParser.MAX_INTERPOLATION_DEPTH +ConfigParser.MissingSectionHeaderError +ConfigParser.NoOptionError +ConfigParser.NoSectionError +ConfigParser.ParsingError +ConfigParser.RawConfigParser(??) +ConfigParser.SafeConfigParser(??) +ConfigParser.re +Cookie.BaseCookie +Cookie.Cookie +Cookie.CookieError +Cookie.Morsel +Cookie.SerialCookie +Cookie.SimpleCookie +Cookie.SmartCookie +Cookie.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +Cookie.loads(string) -- Load a pickle from the given string +Cookie.re +Cookie.string +Cookie.warnings +DeprecationWarning +DocXMLRPCServer.CGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocCGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCServer(??) +DocXMLRPCServer.ServerHTMLDoc(??) +DocXMLRPCServer.SimpleXMLRPCRequestHandler(??) +DocXMLRPCServer.SimpleXMLRPCServer(??) +DocXMLRPCServer.XMLRPCDocGenerator(??) +DocXMLRPCServer.inspect +DocXMLRPCServer.pydoc +DocXMLRPCServer.re +DocXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +DocXMLRPCServer.sys +EOFError +Ellipsis +EnvironmentError +Exception +False +FloatingPointError +FutureWarning +GeneratorExit +HTMLParser.HTMLParseError +HTMLParser.HTMLParser(??) +HTMLParser.attrfind +HTMLParser.charref +HTMLParser.commentclose +HTMLParser.endendtag +HTMLParser.endtagfind +HTMLParser.entityref +HTMLParser.incomplete +HTMLParser.interesting_cdata +HTMLParser.interesting_normal +HTMLParser.locatestarttagend +HTMLParser.markupbase +HTMLParser.piclose +HTMLParser.re +HTMLParser.starttagopen +HTMLParser.tagfind +IOError +ImportError +ImportWarning +IndentationError +IndexError +KeyError +KeyboardInterrupt +LookupError +MemoryError +MimeWriter.MimeWriter(??) +MimeWriter.mimetools +MimeWriter.warnings +NameError +None +NotImplemented +NotImplementedError +OSError +OverflowError +PendingDeprecationWarning +Queue.Empty +Queue.Full +Queue.LifoQueue(??) +Queue.PriorityQueue(??) +Queue.Queue(??) +Queue.deque(iterable[, maxlen]) --> deque object +Queue.heapq +ReferenceError +RuntimeError +RuntimeWarning +SimpleHTTPServer.BaseHTTPServer +SimpleHTTPServer.SimpleHTTPRequestHandler(??) +SimpleHTTPServer.StringIO([s]) -- Return a StringIO-like stream for reading or writing +SimpleHTTPServer.cgi +SimpleHTTPServer.mimetypes +SimpleHTTPServer.os +SimpleHTTPServer.posixpath +SimpleHTTPServer.shutil +SimpleHTTPServer.test(??) +SimpleHTTPServer.urllib +SimpleXMLRPCServer.BaseHTTPServer +SimpleXMLRPCServer.CGIXMLRPCRequestHandler(??) +SimpleXMLRPCServer.Fault +SimpleXMLRPCServer.SimpleXMLRPCDispatcher(??) +SimpleXMLRPCServer.SimpleXMLRPCRequestHandler(??) +SimpleXMLRPCServer.SimpleXMLRPCServer(??) +SimpleXMLRPCServer.SocketServer +SimpleXMLRPCServer.fcntl +SimpleXMLRPCServer.list_public_methods(??) +SimpleXMLRPCServer.os +SimpleXMLRPCServer.remove_duplicates([2,2,2,1,3,3]) => [3,1,2] +SimpleXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +SimpleXMLRPCServer.sys +SimpleXMLRPCServer.traceback +SimpleXMLRPCServer.xmlrpclib +SocketServer.BaseRequestHandler(??) +SocketServer.BaseServer(??) +SocketServer.DatagramRequestHandler(??) +SocketServer.ForkingMixIn(??) +SocketServer.ForkingTCPServer(??) +SocketServer.ForkingUDPServer(??) +SocketServer.StreamRequestHandler(??) +SocketServer.TCPServer(??) +SocketServer.ThreadingMixIn(??) +SocketServer.ThreadingTCPServer(??) +SocketServer.ThreadingUDPServer(??) +SocketServer.ThreadingUnixDatagramServer(??) +SocketServer.ThreadingUnixStreamServer(??) +SocketServer.UDPServer(??) +SocketServer.UnixDatagramServer(??) +SocketServer.UnixStreamServer(??) +SocketServer.os +SocketServer.select +SocketServer.socket +SocketServer.sys +SocketServer.threading +StandardError +StopIteration +StringIO.EINVAL +StringIO.StringIO(??) +StringIO.test(??) +SyntaxError +SyntaxWarning +SystemError +SystemExit +TabError +True +TypeError +UnboundLocalError +UnicodeDecodeError +UnicodeEncodeError +UnicodeError +UnicodeTranslateError +UnicodeWarning +UserDict.DictMixin(??) +UserDict.IterableUserDict(??) +UserDict.UserDict(??) +UserList.UserList +UserList.collections +UserString.MutableString +UserString.UserString +UserString.collections +UserString.sys +UserWarning +ValueError +Warning +ZeroDivisionError +abc.ABCMeta +abc.abstractmethod(??) +abc.abstractproperty +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error +aifc.open(??) +aifc.openfp(??) +aifc.struct +all(iterable) -> bool +any(iterable) -> bool +anydbm.error +anydbm.open(??) +apply(object[, args[, kwargs]]) -> value +array.ArrayType +array.array(typecode [, initializer]) -> array +ast.AST +ast.Add +ast.And +ast.Assert +ast.Assign +ast.Attribute +ast.AugAssign +ast.AugLoad +ast.AugStore +ast.BinOp +ast.BitAnd +ast.BitOr +ast.BitXor +ast.BoolOp +ast.Break +ast.Call +ast.ClassDef +ast.Compare +ast.Continue +ast.Del +ast.Delete +ast.Dict +ast.Div +ast.Ellipsis +ast.Eq +ast.ExceptHandler +ast.Exec +ast.Expr +ast.Expression +ast.ExtSlice +ast.FloorDiv +ast.For +ast.FunctionDef +ast.GeneratorExp +ast.Global +ast.Gt +ast.GtE +ast.If +ast.IfExp +ast.Import +ast.ImportFrom +ast.In +ast.Index +ast.Interactive +ast.Invert +ast.Is +ast.IsNot +ast.LShift +ast.Lambda +ast.List +ast.ListComp +ast.Load +ast.Lt +ast.LtE +ast.Mod +ast.Module +ast.Mult +ast.Name +ast.NodeTransformer +ast.NodeVisitor +ast.Not +ast.NotEq +ast.NotIn +ast.Num +ast.Or +ast.Param +ast.Pass +ast.Pow +ast.Print +ast.PyCF_ONLY_AST +ast.RShift +ast.Raise +ast.Repr +ast.Return +ast.Slice +ast.Store +ast.Str +ast.Sub +ast.Subscript +ast.Suite +ast.TryExcept +ast.TryFinally +ast.Tuple +ast.UAdd +ast.USub +ast.UnaryOp +ast.While +ast.With +ast.Yield +ast.alias +ast.arguments +ast.boolop +ast.cmpop +ast.comprehension +ast.copy_location(??) +ast.dump(??) +ast.excepthandler +ast.expr +ast.expr_context +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword +ast.literal_eval(??) +ast.mod +ast.operator +ast.parse(??) +ast.slice +ast.stmt +ast.unaryop +ast.walk(??) +asynchat.async_chat(??) +asynchat.asyncore +asynchat.catch_warnings +asynchat.deque(iterable[, maxlen]) --> deque object +asynchat.fifo(??) +asynchat.filterwarnings(??) +asynchat.find_prefix_at_end(??) +asynchat.py3kwarning +asynchat.simple_producer(??) +asynchat.socket +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINTR +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode +asyncore.fcntl +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select +asyncore.socket +asyncore.socket_map +asyncore.sys +asyncore.time +asyncore.write(??) +atexit.register(??) +atexit.sys +audiodev.AudioDev(??) +audiodev.Play_Audio_sgi(??) +audiodev.Play_Audio_sun(??) +audiodev.error +audiodev.test(??) +audioop.add +audioop.adpcm2lin +audioop.alaw2lin +audioop.avg +audioop.avgpp +audioop.bias +audioop.cross +audioop.error +audioop.findfactor +audioop.findfit +audioop.findmax +audioop.getsample +audioop.lin2adpcm +audioop.lin2alaw +audioop.lin2lin +audioop.lin2ulaw +audioop.max +audioop.maxpp +audioop.minmax +audioop.mul +audioop.ratecv +audioop.reverse +audioop.rms +audioop.tomono +audioop.tostereo +audioop.ulaw2lin +base64.EMPTYSTRING +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.binascii +base64.decode(??) +base64.decodestring(??) +base64.encode(??) +base64.encodestring(??) +base64.k +base64.re +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct +base64.test(??) +base64.test1(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +base64.v +basestring +bdb.Bdb(??) +bdb.BdbQuit +bdb.Breakpoint(??) +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.foo(??) +bdb.os +bdb.set_trace(??) +bdb.sys +bdb.test(??) +bdb.types +bin(number) -> string +binascii.Error +binascii.Incomplete +binascii.a2b_base64 +binascii.a2b_hex(hexstr) -> s; Binary data of hexadecimal representation. +binascii.a2b_hqx +binascii.a2b_qp +binascii.a2b_uu +binascii.b2a_base64 +binascii.b2a_hex(data) -> s; Hexadecimal representation of binary data. +binascii.b2a_hqx +binascii.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +binascii.b2a_uu +binascii.crc32 +binascii.crc_hqx +binascii.hexlify +binascii.rlecode_hqx +binascii.rledecode_hqx +binascii.unhexlify +binhex.BinHex(??) +binhex.Error +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii +binhex.binhex(??) +binhex.getfileinfo(??) +binhex.hexbin(??) +binhex.openrsrc(??) +binhex.os +binhex.struct +binhex.sys +bisect.bisect +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +buffer(object [, offset[, size]]) +bytearray(iterable_of_ints) -> bytearray. +bytes +cPickle.BadPickleGet +cPickle.HIGHEST_PROTOCOL +cPickle.PickleError +cPickle.Pickler(file, protocol=0) -- Create a pickler. +cPickle.PicklingError +cPickle.UnpickleableError +cPickle.Unpickler(file) -- Create an unpickler. +cPickle.UnpicklingError +cPickle.compatible_formats +cPickle.dump(obj, file, protocol=0) -- Write an object in pickle format to the given file. +cPickle.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +cPickle.format_version +cPickle.load(file) -- Load a pickle from the given file +cPickle.loads(string) -- Load a pickle from the given string +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.help(??) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +cStringIO.InputType +cStringIO.OutputType +cStringIO.StringIO([s]) -- Return a StringIO-like stream for reading or writing +cStringIO.cStringIO_CAPI +calendar.Calendar +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar +calendar.IllegalMonthError +calendar.IllegalWeekdayError +calendar.January +calendar.LocaleHTMLCalendar +calendar.LocaleTextCalendar +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar +calendar.TimeEncoding(??) +calendar.WEDNESDAY +calendar.c +calendar.calendar +calendar.datetime +calendar.day_abbr +calendar.day_name +calendar.error +calendar.firstweekday +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays +calendar.month +calendar.month_abbr +calendar.month_name +calendar.monthcalendar +calendar.monthrange(??) +calendar.prcal +calendar.prmonth +calendar.prweek +calendar.setfirstweekday(??) +calendar.sys +calendar.timegm(??) +calendar.week +calendar.weekday(??) +calendar.weekheader +callable(object) -> bool +cgi.FieldStorage(??) +cgi.FormContent(??) +cgi.FormContentDict(??) +cgi.InterpFormContentDict(??) +cgi.MiniFieldStorage(??) +cgi.StringIO([s]) -- Return a StringIO-like stream for reading or writing +cgi.SvFormContentDict(??) +cgi.UserDict +cgi.attrgetter(attr, ...) --> attrgetter object +cgi.catch_warnings +cgi.dolog(??) +cgi.escape(??) +cgi.filterwarnings(??) +cgi.initlog(??) +cgi.log(??) +cgi.logfile +cgi.logfp +cgi.maxlen +cgi.mimetools +cgi.nolog(??) +cgi.os +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.rfc822 +cgi.sys +cgi.test(??) +cgi.urllib +cgi.urlparse +cgi.valid_boundary(??) +cgi.warn +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler +cgitb.html(??) +cgitb.lookup(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys +cgitb.text(??) +chr(i) -> character +chunk.Chunk(??) +classmethod(function) -> method +cmath.acos(x) +cmath.acosh(x) +cmath.asin(x) +cmath.asinh(x) +cmath.atan(x) +cmath.atanh(x) +cmath.cos(x) +cmath.cosh(x) +cmath.e +cmath.exp(x) +cmath.isinf(z) -> bool +cmath.isnan(z) -> bool +cmath.log(x[, base]) -> the logarithm of x to the given base. +cmath.log10(x) +cmath.phase(z) -> float +cmath.pi +cmath.polar(z) -> r: float, phi: float +cmath.rect(r, phi) -> z: complex +cmath.sin(x) +cmath.sinh(x) +cmath.sqrt(x) +cmath.tan(x) +cmath.tanh(x) +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string +cmp(x, y) -> integer +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.softspace(??) +code.sys +code.traceback +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder +codecs.BufferedIncrementalEncoder +codecs.Codec(??) +codecs.CodecInfo +codecs.EncodedFile(??) +codecs.IncrementalDecoder +codecs.IncrementalEncoder +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode +codecs.ascii_encode +codecs.backslashreplace_errors +codecs.charbuffer_encode +codecs.charmap_build +codecs.charmap_decode +codecs.charmap_encode +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode +codecs.escape_encode +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode +codecs.latin_1_encode +codecs.lookup(encoding) -> CodecInfo +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode +codecs.raw_unicode_escape_encode +codecs.readbuffer_encode +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors +codecs.strict_errors +codecs.sys +codecs.unicode_escape_decode +codecs.unicode_escape_encode +codecs.unicode_internal_decode +codecs.unicode_internal_encode +codecs.utf_16_be_decode +codecs.utf_16_be_encode +codecs.utf_16_decode +codecs.utf_16_encode +codecs.utf_16_ex_decode +codecs.utf_16_le_decode +codecs.utf_16_le_encode +codecs.utf_32_be_decode +codecs.utf_32_be_encode +codecs.utf_32_decode +codecs.utf_32_encode +codecs.utf_32_ex_decode +codecs.utf_32_le_decode +codecs.utf_32_le_encode +codecs.utf_7_decode +codecs.utf_7_encode +codecs.utf_8_decode +codecs.utf_8_encode +codecs.xmlcharrefreplace_errors +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +codeop.fname +coerce(x, y) -> (x1, y1) +collections.Callable +collections.Container +collections.Hashable +collections.ItemsView +collections.Iterable +collections.Iterator +collections.KeysView +collections.Mapping +collections.MappingView +collections.MutableMapping +collections.MutableSequence +collections.MutableSet +collections.Sequence +collections.Set +collections.Sized +collections.ValuesView +collections.defaultdict(default_factory) --> dict with default factory +collections.deque(iterable[, maxlen]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +commands.getoutput(??) +commands.getstatus(??) +commands.getstatusoutput(??) +commands.mk2arg(??) +commands.mkarg(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_path(??) +compileall.main(??) +compileall.os +compileall.py_compile +compileall.sys +compiler.ast +compiler.ast.Add(??) +compiler.ast.And(??) +compiler.ast.AssAttr(??) +compiler.ast.AssList(??) +compiler.ast.AssName(??) +compiler.ast.AssTuple(??) +compiler.ast.Assert(??) +compiler.ast.Assign(??) +compiler.ast.AugAssign(??) +compiler.ast.Backquote(??) +compiler.ast.Bitand(??) +compiler.ast.Bitor(??) +compiler.ast.Bitxor(??) +compiler.ast.Break(??) +compiler.ast.CO_VARARGS +compiler.ast.CO_VARKEYWORDS +compiler.ast.CallFunc(??) +compiler.ast.Class(??) +compiler.ast.Compare(??) +compiler.ast.Const(??) +compiler.ast.Continue(??) +compiler.ast.Decorators(??) +compiler.ast.Dict(??) +compiler.ast.Discard(??) +compiler.ast.Div(??) +compiler.ast.Ellipsis(??) +compiler.ast.EmptyNode(??) +compiler.ast.Exec(??) +compiler.ast.Expression(??) +compiler.ast.FloorDiv(??) +compiler.ast.For(??) +compiler.ast.From(??) +compiler.ast.Function(??) +compiler.ast.GenExpr(??) +compiler.ast.GenExprFor(??) +compiler.ast.GenExprIf(??) +compiler.ast.GenExprInner(??) +compiler.ast.Getattr(??) +compiler.ast.Global(??) +compiler.ast.If(??) +compiler.ast.IfExp(??) +compiler.ast.Import(??) +compiler.ast.Invert(??) +compiler.ast.Keyword(??) +compiler.ast.Lambda(??) +compiler.ast.LeftShift(??) +compiler.ast.List(??) +compiler.ast.ListComp(??) +compiler.ast.ListCompFor(??) +compiler.ast.ListCompIf(??) +compiler.ast.Mod(??) +compiler.ast.Module(??) +compiler.ast.Mul(??) +compiler.ast.Name(??) +compiler.ast.Node(??) +compiler.ast.Not(??) +compiler.ast.Or(??) +compiler.ast.Pass(??) +compiler.ast.Power(??) +compiler.ast.Print(??) +compiler.ast.Printnl(??) +compiler.ast.Raise(??) +compiler.ast.Return(??) +compiler.ast.RightShift(??) +compiler.ast.Slice(??) +compiler.ast.Sliceobj(??) +compiler.ast.Stmt(??) +compiler.ast.Sub(??) +compiler.ast.Subscript(??) +compiler.ast.TryExcept(??) +compiler.ast.TryFinally(??) +compiler.ast.Tuple(??) +compiler.ast.UnaryAdd(??) +compiler.ast.UnarySub(??) +compiler.ast.While(??) +compiler.ast.With(??) +compiler.ast.Yield(??) +compiler.ast.flatten(??) +compiler.ast.flatten_nodes(??) +compiler.ast.name +compiler.ast.nodes +compiler.ast.obj(??) +compiler.compile(??) +compiler.compileFile(??) +compiler.consts +compiler.consts.CO_FUTURE_ABSIMPORT +compiler.consts.CO_FUTURE_DIVISION +compiler.consts.CO_FUTURE_PRINT_FUNCTION +compiler.consts.CO_FUTURE_WITH_STATEMENT +compiler.consts.CO_GENERATOR +compiler.consts.CO_GENERATOR_ALLOWED +compiler.consts.CO_NESTED +compiler.consts.CO_NEWLOCALS +compiler.consts.CO_OPTIMIZED +compiler.consts.CO_VARARGS +compiler.consts.CO_VARKEYWORDS +compiler.consts.OP_APPLY +compiler.consts.OP_ASSIGN +compiler.consts.OP_DELETE +compiler.consts.SC_CELL +compiler.consts.SC_FREE +compiler.consts.SC_GLOBAL +compiler.consts.SC_LOCAL +compiler.consts.SC_UNKNOWN +compiler.future +compiler.future.BadFutureParser(??) +compiler.future.FutureParser(??) +compiler.future.ast +compiler.future.find_futures(??) +compiler.future.is_future(??) +compiler.future.walk(??) +compiler.misc +compiler.misc.MANGLE_LEN +compiler.misc.Set(??) +compiler.misc.Stack(??) +compiler.misc.flatten(??) +compiler.misc.mangle(??) +compiler.misc.set_filename(??) +compiler.parse(??) +compiler.parseFile(??) +compiler.pyassem +compiler.pyassem.Block(??) +compiler.pyassem.CONV +compiler.pyassem.CO_NEWLOCALS +compiler.pyassem.CO_OPTIMIZED +compiler.pyassem.CO_VARARGS +compiler.pyassem.CO_VARKEYWORDS +compiler.pyassem.DONE +compiler.pyassem.FLAT +compiler.pyassem.FlowGraph(??) +compiler.pyassem.LineAddrTable(??) +compiler.pyassem.PyFlowGraph(??) +compiler.pyassem.RAW +compiler.pyassem.StackDepthTracker(??) +compiler.pyassem.TupleArg(??) +compiler.pyassem.dfs_postorder(??) +compiler.pyassem.dis +compiler.pyassem.findDepth +compiler.pyassem.getArgCount(??) +compiler.pyassem.isJump(??) +compiler.pyassem.misc +compiler.pyassem.sys +compiler.pyassem.twobyte(??) +compiler.pyassem.types +compiler.pycodegen +compiler.pycodegen.AbstractClassCode(??) +compiler.pycodegen.AbstractCompileMode(??) +compiler.pycodegen.AbstractFunctionCode(??) +compiler.pycodegen.AugGetattr(??) +compiler.pycodegen.AugName(??) +compiler.pycodegen.AugSlice(??) +compiler.pycodegen.AugSubscript(??) +compiler.pycodegen.CO_FUTURE_ABSIMPORT +compiler.pycodegen.CO_FUTURE_DIVISION +compiler.pycodegen.CO_FUTURE_PRINT_FUNCTION +compiler.pycodegen.CO_FUTURE_WITH_STATEMENT +compiler.pycodegen.CO_GENERATOR +compiler.pycodegen.CO_NESTED +compiler.pycodegen.CO_NEWLOCALS +compiler.pycodegen.CO_VARARGS +compiler.pycodegen.CO_VARKEYWORDS +compiler.pycodegen.ClassCodeGenerator(??) +compiler.pycodegen.CodeGenerator(??) +compiler.pycodegen.Delegator(??) +compiler.pycodegen.END_FINALLY +compiler.pycodegen.EXCEPT +compiler.pycodegen.Expression(??) +compiler.pycodegen.ExpressionCodeGenerator(??) +compiler.pycodegen.FunctionCodeGenerator(??) +compiler.pycodegen.GenExprCodeGenerator(??) +compiler.pycodegen.Interactive(??) +compiler.pycodegen.InteractiveCodeGenerator(??) +compiler.pycodegen.LOOP +compiler.pycodegen.LocalNameFinder(??) +compiler.pycodegen.Module(??) +compiler.pycodegen.ModuleCodeGenerator(??) +compiler.pycodegen.NestedScopeMixin(??) +compiler.pycodegen.OpFinder(??) +compiler.pycodegen.SC_CELL +compiler.pycodegen.SC_FREE +compiler.pycodegen.SC_GLOBAL +compiler.pycodegen.SC_LOCAL +compiler.pycodegen.StringIO([s]) -- Return a StringIO-like stream for reading or writing +compiler.pycodegen.TRY_FINALLY +compiler.pycodegen.TupleArg(??) +compiler.pycodegen.VERSION +compiler.pycodegen.ast +compiler.pycodegen.callfunc_opcode_info +compiler.pycodegen.compile(??) +compiler.pycodegen.compileFile(??) +compiler.pycodegen.findOp(??) +compiler.pycodegen.future +compiler.pycodegen.generateArgList(??) +compiler.pycodegen.imp +compiler.pycodegen.is_constant_false(??) +compiler.pycodegen.marshal +compiler.pycodegen.misc +compiler.pycodegen.os +compiler.pycodegen.parse(??) +compiler.pycodegen.pyassem +compiler.pycodegen.struct +compiler.pycodegen.symbols +compiler.pycodegen.syntax +compiler.pycodegen.sys +compiler.pycodegen.walk(??) +compiler.pycodegen.wrap_aug(??) +compiler.pycodegen.wrapper +compiler.symbols +compiler.symbols.ClassScope(??) +compiler.symbols.FunctionScope(??) +compiler.symbols.GenExprScope(??) +compiler.symbols.LambdaScope(??) +compiler.symbols.MANGLE_LEN +compiler.symbols.ModuleScope(??) +compiler.symbols.SC_CELL +compiler.symbols.SC_FREE +compiler.symbols.SC_GLOBAL +compiler.symbols.SC_LOCAL +compiler.symbols.SC_UNKNOWN +compiler.symbols.Scope(??) +compiler.symbols.SymbolVisitor(??) +compiler.symbols.ast +compiler.symbols.list_eq(??) +compiler.symbols.mangle(??) +compiler.symbols.sys +compiler.symbols.types +compiler.syntax +compiler.syntax.SyntaxErrorChecker(??) +compiler.syntax.ast +compiler.syntax.check(??) +compiler.syntax.walk(??) +compiler.transformer +compiler.transformer.Add(??) +compiler.transformer.And(??) +compiler.transformer.AssAttr(??) +compiler.transformer.AssList(??) +compiler.transformer.AssName(??) +compiler.transformer.AssTuple(??) +compiler.transformer.Assert(??) +compiler.transformer.Assign(??) +compiler.transformer.AugAssign(??) +compiler.transformer.Backquote(??) +compiler.transformer.Bitand(??) +compiler.transformer.Bitor(??) +compiler.transformer.Bitxor(??) +compiler.transformer.Break(??) +compiler.transformer.CO_VARARGS +compiler.transformer.CO_VARKEYWORDS +compiler.transformer.CallFunc(??) +compiler.transformer.Class(??) +compiler.transformer.Compare(??) +compiler.transformer.Const(??) +compiler.transformer.Continue(??) +compiler.transformer.Decorators(??) +compiler.transformer.Dict(??) +compiler.transformer.Discard(??) +compiler.transformer.Div(??) +compiler.transformer.Ellipsis(??) +compiler.transformer.EmptyNode(??) +compiler.transformer.Exec(??) +compiler.transformer.Expression(??) +compiler.transformer.FloorDiv(??) +compiler.transformer.For(??) +compiler.transformer.From(??) +compiler.transformer.Function(??) +compiler.transformer.GenExpr(??) +compiler.transformer.GenExprFor(??) +compiler.transformer.GenExprIf(??) +compiler.transformer.GenExprInner(??) +compiler.transformer.Getattr(??) +compiler.transformer.Global(??) +compiler.transformer.If(??) +compiler.transformer.IfExp(??) +compiler.transformer.Import(??) +compiler.transformer.Invert(??) +compiler.transformer.Keyword(??) +compiler.transformer.Lambda(??) +compiler.transformer.LeftShift(??) +compiler.transformer.List(??) +compiler.transformer.ListComp(??) +compiler.transformer.ListCompFor(??) +compiler.transformer.ListCompIf(??) +compiler.transformer.Mod(??) +compiler.transformer.Module(??) +compiler.transformer.Mul(??) +compiler.transformer.Name(??) +compiler.transformer.Node(??) +compiler.transformer.Not(??) +compiler.transformer.OP_APPLY +compiler.transformer.OP_ASSIGN +compiler.transformer.OP_DELETE +compiler.transformer.Or(??) +compiler.transformer.Pass(??) +compiler.transformer.Power(??) +compiler.transformer.Print(??) +compiler.transformer.Printnl(??) +compiler.transformer.Raise(??) +compiler.transformer.Return(??) +compiler.transformer.RightShift(??) +compiler.transformer.Slice(??) +compiler.transformer.Sliceobj(??) +compiler.transformer.Stmt(??) +compiler.transformer.Sub(??) +compiler.transformer.Subscript(??) +compiler.transformer.Transformer(??) +compiler.transformer.TryExcept(??) +compiler.transformer.TryFinally(??) +compiler.transformer.Tuple(??) +compiler.transformer.UnaryAdd(??) +compiler.transformer.UnarySub(??) +compiler.transformer.WalkerError +compiler.transformer.While(??) +compiler.transformer.With(??) +compiler.transformer.Yield(??) +compiler.transformer.asList(??) +compiler.transformer.debug_tree(??) +compiler.transformer.extractLineNo(??) +compiler.transformer.flatten(??) +compiler.transformer.flatten_nodes(??) +compiler.transformer.k +compiler.transformer.name +compiler.transformer.nodes +compiler.transformer.obj(??) +compiler.transformer.parse(??) +compiler.transformer.parseFile(??) +compiler.transformer.parser +compiler.transformer.symbol +compiler.transformer.token +compiler.transformer.v +compiler.visitor +compiler.visitor.ASTVisitor(??) +compiler.visitor.ExampleASTVisitor(??) +compiler.visitor.ast +compiler.visitor.dumpNode(??) +compiler.visitor.walk(??) +compiler.walk(??) +complex(real[, imag]) -> complex number +contextlib.GeneratorContextManager +contextlib.closing +contextlib.contextmanager(??) +contextlib.nested(??) +contextlib.sys +contextlib.wraps(??) +cookielib.Absent(??) +cookielib.Cookie(??) +cookielib.CookieJar(??) +cookielib.CookiePolicy(??) +cookielib.DAYS +cookielib.DEFAULT_HTTP_PORT +cookielib.DefaultCookiePolicy(??) +cookielib.EPOCH_YEAR +cookielib.ESCAPED_CHAR_RE +cookielib.FileCookieJar(??) +cookielib.HEADER_ESCAPE_RE +cookielib.HEADER_JOIN_ESCAPE_RE +cookielib.HEADER_QUOTED_VALUE_RE +cookielib.HEADER_TOKEN_RE +cookielib.HEADER_VALUE_RE +cookielib.HTTP_PATH_SAFE +cookielib.IPV4_RE +cookielib.ISO_DATE_RE +cookielib.LOOSE_HTTP_DATE_RE +cookielib.LWPCookieJar(??) +cookielib.LoadError +cookielib.MISSING_FILENAME_TEXT +cookielib.MONTHS +cookielib.MONTHS_LOWER +cookielib.MozillaCookieJar(??) +cookielib.STRICT_DATE_RE +cookielib.TIMEZONE_RE +cookielib.UTC_ZONES +cookielib.WEEKDAY_RE +cookielib.copy +cookielib.cut_port_re +cookielib.debug +cookielib.deepvalues(??) +cookielib.domain_match(??) +cookielib.eff_request_host(??) +cookielib.escape_path(??) +cookielib.http2time(??) +cookielib.httplib +cookielib.is_HDN(??) +cookielib.is_third_party(??) +cookielib.iso2time(??) +cookielib.join_header_words(??) +cookielib.liberal_is_HDN(??) +cookielib.logger +cookielib.lwp_cookie_str(??) +cookielib.month +cookielib.offset_from_tz_string(??) +cookielib.parse_ns_headers(??) +cookielib.re +cookielib.reach(??) +cookielib.request_host(??) +cookielib.request_path(??) +cookielib.request_port(??) +cookielib.split_header_words(??) +cookielib.time +cookielib.time2isoz(??) +cookielib.time2netscape(??) +cookielib.timegm(??) +cookielib.unmatched(??) +cookielib.uppercase_escaped_char(??) +cookielib.urllib +cookielib.urlparse +cookielib.user_domain_match(??) +cookielib.vals_sorted_by_key(??) +copy.Error +copy.PyStringMap +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table +copy.error +copy.name +copy.t +copy_reg.add_extension(??) +copy_reg.clear_extension_cache(??) +copy_reg.constructor(??) +copy_reg.dispatch_table +copy_reg.pickle(??) +copy_reg.pickle_complex(??) +copy_reg.remove_extension(??) +copyright +credits +crypt.crypt(word, salt) -> string +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO([s]) -- Return a StringIO-like stream for reading or writing +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit +csv.get_dialect +csv.list_dialects +csv.re +csv.reader +csv.reduce(function, sequence[, initial]) -> value +csv.register_dialect +csv.unregister_dialect +csv.writer +ctypes.ARRAY(??) +ctypes.ArgumentError +ctypes.Array +ctypes.BigEndianStructure +ctypes.CDLL +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader +ctypes.LittleEndianStructure +ctypes.POINTER +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure +ctypes.Union +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool +ctypes.c_buffer(??) +ctypes.c_byte +ctypes.c_char +ctypes.c_char_p +ctypes.c_double +ctypes.c_float +ctypes.c_int +ctypes.c_int16 +ctypes.c_int32 +ctypes.c_int64 +ctypes.c_int8 +ctypes.c_long +ctypes.c_longdouble +ctypes.c_longlong +ctypes.c_short +ctypes.c_size_t +ctypes.c_ubyte +ctypes.c_uint +ctypes.c_uint16 +ctypes.c_uint32 +ctypes.c_uint64 +ctypes.c_uint8 +ctypes.c_ulong +ctypes.c_ulonglong +ctypes.c_ushort +ctypes.c_void_p +ctypes.c_voidp +ctypes.c_wchar +ctypes.c_wchar_p +ctypes.cast(??) +ctypes.cdll +ctypes.create_string_buffer(aString) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable[, r]) --> combinations object +ctypes.macholib.dyld.count([firstval]) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.ensure_utf8(??) +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.ifilter(function or None, sequence) --> ifilter object +ctypes.macholib.dyld.ifilterfalse(function or None, sequence) --> ifilterfalse object +ctypes.macholib.dyld.imap(func, *iterables) --> imap object +ctypes.macholib.dyld.islice(iterable, [start,] stop [, step]) --> islice object +ctypes.macholib.dyld.izip(iter1 [,iter2 [...]]) --> izip object +ctypes.macholib.dyld.izip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> izip_longest object +ctypes.macholib.dyld.os +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables) --> product object +ctypes.macholib.dyld.repeat(element [,times]) -> create an iterator which returns the element +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dylib.DYLIB_RE +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework +ctypes.macholib.framework.STRICT_FRAMEWORK_RE +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove +ctypes.memset +ctypes.pointer +ctypes.py_object +ctypes.pydll +ctypes.pythonapi +ctypes.resize +ctypes.set_conversion_mode(encoding, errors) -> (previous-encoding, previous-errors) +ctypes.set_errno +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util +ctypes.util.errno +ctypes.util.find_library(??) +ctypes.util.os +ctypes.util.re +ctypes.util.sys +ctypes.util.tempfile +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta +datetime.tzinfo +decimal.BasicContext +decimal.Clamped +decimal.Context +decimal.ConversionSyntax +decimal.Dec_0 +decimal.Dec_n1 +decimal.Dec_p1 +decimal.Decimal +decimal.DecimalException +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext +decimal.DivisionByZero +decimal.DivisionImpossible +decimal.DivisionUndefined +decimal.ExtendedContext +decimal.Inexact +decimal.Inf +decimal.Infsign +decimal.InvalidContext +decimal.InvalidOperation +decimal.NaN +decimal.Overflow +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded +decimal.Subnormal +decimal.Underflow +decimal.getcontext(??) +decimal.localcontext(??) +decimal.negInf +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary. +difflib.Differ(??) +difflib.HtmlDiff +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq +difflib.ndiff(??) +difflib.reduce(function, sequence[, initial]) -> value +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dircache.annotate(??) +dircache.cache +dircache.listdir(??) +dircache.opendir(??) +dircache.os +dircache.reset(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.cmp_op +dis.dis(??) +dis.disassemble(??) +dis.disassemble_string(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.hascompare +dis.hasconst +dis.hasfree +dis.hasjabs +dis.hasjrel +dis.haslocal +dis.hasname +dis.opmap +dis.opname +dis.sys +dis.types +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase +doctest.DocTestFailure +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.Tester(??) +doctest.UnexpectedException +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib +doctest.inspect +doctest.linecache +doctest.master +doctest.namedtuple(??) +doctest.os +doctest.pdb +doctest.re +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys +doctest.tempfile +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback +doctest.unittest +doctest.warnings +dumbdbm.UserDict +dumbdbm.error +dumbdbm.open(??) +dummy_thread.LockType +dummy_thread.allocate_lock(??) +dummy_thread.error +dummy_thread.exit(??) +dummy_thread.get_ident(??) +dummy_thread.interrupt_main(??) +dummy_thread.stack_size(??) +dummy_thread.start_new_thread(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread +dummy_threading.Timer(??) +dummy_threading.activeCount(??) +dummy_threading.active_count(??) +dummy_threading.currentThread(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.local +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading +email.Charset +email.Encoders +email.Errors +email.FeedParser +email.Generator +email.Header +email.Iterators +email.LazyImporter +email.MIMEAudio +email.MIMEBase +email.MIMEImage +email.MIMEMessage +email.MIMEMultipart +email.MIMENonMultipart +email.MIMEText +email.Message +email.Parser +email.Utils +email.base64MIME +email.base64mime +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64 +email.base64mime.b2a_base64 +email.base64mime.base64_len(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.encode(??) +email.base64mime.encodestring(??) +email.base64mime.fix_eols(??) +email.base64mime.header_encode(??) +email.charset +email.charset.ALIASES +email.charset.BASE64 +email.charset.CHARSETS +email.charset.CODEC_MAP +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.MISC_LEN +email.charset.QP +email.charset.SHORTEST +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email +email.charset.encode_7or8bit(??) +email.charset.errors +email.email +email.encoders +email.encoders.base64 +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors +email.errors.BoundaryError +email.errors.CharsetError +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderParseError +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError +email.errors.MessageParseError +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MultipartConversionError +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.feedparser +email.feedparser.BufferedSubFile +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE +email.feedparser.NLCRE_bol +email.feedparser.NLCRE_crack +email.feedparser.NLCRE_eol +email.feedparser.NeedMoreData +email.feedparser.errors +email.feedparser.headerRE +email.feedparser.message +email.feedparser.re +email.generator +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.Header(??) +email.generator.NL +email.generator.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.generator.UNDERSCORE +email.generator.fcre +email.generator.random +email.generator.re +email.generator.sys +email.generator.time +email.generator.warnings +email.header +email.header.Charset(??) +email.header.Header(??) +email.header.HeaderParseError +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.UEMPTYSTRING +email.header.USASCII +email.header.USPACE +email.header.UTF8 +email.header.binascii +email.header.decode_header(??) +email.header.ecre +email.header.email +email.header.fcre +email.header.make_header(??) +email.header.re +email.importer +email.iterators +email.iterators.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.iterators.body_line_iterator(??) +email.iterators.sys +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.message.binascii +email.message.email +email.message.errors +email.message.re +email.message.tspecials +email.message.utils +email.message.uu +email.message.warnings +email.message_from_file(??) +email.message_from_string(??) +email.mime +email.mime.Audio +email.mime.Base +email.mime.Image +email.mime.Message +email.mime.Multipart +email.mime.NonMultipart +email.mime.Text +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders +email.mime.audio +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.mime.audio.encoders +email.mime.audio.sndhdr +email.mime.base +email.mime.base.MIMEBase(??) +email.mime.base.message +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders +email.mime.image.imghdr +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors +email.mime.text +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.mime.text.encode_7or8bit(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Message(??) +email.parser.Parser(??) +email.parser.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.parser.warnings +email.quopriMIME +email.quoprimime +email.quoprimime.CRLF +email.quoprimime.MISC_LEN +email.quoprimime.NL +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_quopri_check(??) +email.quoprimime.body_quopri_len(??) +email.quoprimime.bqre +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.encode(??) +email.quoprimime.encodestring(??) +email.quoprimime.fix_eols(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_quopri_check(??) +email.quoprimime.header_quopri_len(??) +email.quoprimime.hexdigits +email.quoprimime.hqre +email.quoprimime.quote(??) +email.quoprimime.re +email.quoprimime.unquote(??) +email.sys +email.utils +email.utils.COMMASPACE +email.utils.CRLF +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.base64 +email.utils.collapse_rfc2231_value(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre +email.utils.encode_rfc2231(??) +email.utils.escapesre +email.utils.fix_eols(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random +email.utils.re +email.utils.rfc2231_continuation +email.utils.socket +email.utils.specialsre +email.utils.time +email.utils.unquote(??) +email.utils.urllib +email.utils.warnings +enumerate(iterable) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EADV +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EBADE +errno.EBADF +errno.EBADFD +errno.EBADMSG +errno.EBADR +errno.EBADRQC +errno.EBADSLT +errno.EBFONT +errno.EBUSY +errno.ECHILD +errno.ECHRNG +errno.ECOMM +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDEADLOCK +errno.EDESTADDRREQ +errno.EDOM +errno.EDOTDOT +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.EISNAM +errno.EL2HLT +errno.EL2NSYNC +errno.EL3HLT +errno.EL3RST +errno.ELIBACC +errno.ELIBBAD +errno.ELIBEXEC +errno.ELIBMAX +errno.ELIBSCN +errno.ELNRNG +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENAVAIL +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOANO +errno.ENOBUFS +errno.ENOCSI +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENONET +errno.ENOPKG +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTNAM +errno.ENOTSOCK +errno.ENOTTY +errno.ENOTUNIQ +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.ERANGE +errno.EREMCHG +errno.EREMOTE +errno.EREMOTEIO +errno.ERESTART +errno.EROFS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESRMNT +errno.ESTALE +errno.ESTRPIPE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUCLEAN +errno.EUNATCH +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.EXFULL +errno.errorcode +eval(source[, globals[, locals]]) -> value +exceptions.ArithmeticError +exceptions.AssertionError +exceptions.AttributeError +exceptions.BaseException +exceptions.BufferError +exceptions.BytesWarning +exceptions.DeprecationWarning +exceptions.EOFError +exceptions.EnvironmentError +exceptions.Exception +exceptions.FloatingPointError +exceptions.FutureWarning +exceptions.GeneratorExit +exceptions.IOError +exceptions.ImportError +exceptions.ImportWarning +exceptions.IndentationError +exceptions.IndexError +exceptions.KeyError +exceptions.KeyboardInterrupt +exceptions.LookupError +exceptions.MemoryError +exceptions.NameError +exceptions.NotImplementedError +exceptions.OSError +exceptions.OverflowError +exceptions.PendingDeprecationWarning +exceptions.ReferenceError +exceptions.RuntimeError +exceptions.RuntimeWarning +exceptions.StandardError +exceptions.StopIteration +exceptions.SyntaxError +exceptions.SyntaxWarning +exceptions.SystemError +exceptions.SystemExit +exceptions.TabError +exceptions.TypeError +exceptions.UnboundLocalError +exceptions.UnicodeDecodeError +exceptions.UnicodeEncodeError +exceptions.UnicodeError +exceptions.UnicodeTranslateError +exceptions.UnicodeWarning +exceptions.UserWarning +exceptions.ValueError +exceptions.Warning +exceptions.ZeroDivisionError +execfile(filename[, globals[, locals]]) +exit +fcntl.DN_ACCESS +fcntl.DN_ATTRIB +fcntl.DN_CREATE +fcntl.DN_DELETE +fcntl.DN_MODIFY +fcntl.DN_MULTISHOT +fcntl.DN_RENAME +fcntl.FASYNC +fcntl.FD_CLOEXEC +fcntl.F_DUPFD +fcntl.F_EXLCK +fcntl.F_GETFD +fcntl.F_GETFL +fcntl.F_GETLEASE +fcntl.F_GETLK +fcntl.F_GETLK64 +fcntl.F_GETOWN +fcntl.F_GETSIG +fcntl.F_NOTIFY +fcntl.F_RDLCK +fcntl.F_SETFD +fcntl.F_SETFL +fcntl.F_SETLEASE +fcntl.F_SETLK +fcntl.F_SETLK64 +fcntl.F_SETLKW +fcntl.F_SETLKW64 +fcntl.F_SETOWN +fcntl.F_SETSIG +fcntl.F_SHLCK +fcntl.F_UNLCK +fcntl.F_WRLCK +fcntl.I_ATMARK +fcntl.I_CANPUT +fcntl.I_CKBAND +fcntl.I_FDINSERT +fcntl.I_FIND +fcntl.I_FLUSH +fcntl.I_FLUSHBAND +fcntl.I_GETBAND +fcntl.I_GETCLTIME +fcntl.I_GETSIG +fcntl.I_GRDOPT +fcntl.I_GWROPT +fcntl.I_LINK +fcntl.I_LIST +fcntl.I_LOOK +fcntl.I_NREAD +fcntl.I_PEEK +fcntl.I_PLINK +fcntl.I_POP +fcntl.I_PUNLINK +fcntl.I_PUSH +fcntl.I_RECVFD +fcntl.I_SENDFD +fcntl.I_SETCLTIME +fcntl.I_SETSIG +fcntl.I_SRDOPT +fcntl.I_STR +fcntl.I_SWROPT +fcntl.I_UNLINK +fcntl.LOCK_EX +fcntl.LOCK_MAND +fcntl.LOCK_NB +fcntl.LOCK_READ +fcntl.LOCK_RW +fcntl.LOCK_SH +fcntl.LOCK_UN +fcntl.LOCK_WRITE +fcntl.fcntl(fd, opt, [arg]) +fcntl.flock(fd, operation) +fcntl.ioctl(fd, opt[, arg[, mutate_flag]]) +fcntl.lockf (fd, operation, length=0, start=0, whence=0) +file(name[, mode[, buffering]]) -> file object +filecmp.BUFSIZE +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.ifilter(function or None, sequence) --> ifilter object +filecmp.ifilterfalse(function or None, sequence) --> ifilterfalse object +filecmp.imap(func, *iterables) --> imap object +filecmp.izip(iter1 [,iter2 [...]]) --> izip object +filecmp.os +filecmp.stat +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input([files[, inplace[, backup[, mode[, openhook]]]]]) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os +fileinput.sys +filter(function or None, sequence) -> list, tuple, or string +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.re +fnmatch.translate(??) +format(value[, format_spec]) -> string +formatter.AS_IS +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys +formatter.test(??) +fpformat.NotANumber +fpformat.decoder +fpformat.extract(??) +fpformat.fix(??) +fpformat.re +fpformat.roundfrac(??) +fpformat.sci(??) +fpformat.test(??) +fpformat.unexpo(??) +fractions.Fraction +fractions.Rational +fractions.division +fractions.gcd(??) +fractions.math +fractions.numbers +fractions.operator +fractions.re +frozenset(iterable) --> frozenset object +ftplib.CRLF +ftplib.Error +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors +ftplib.error_perm +ftplib.error_proto +ftplib.error_reply +ftplib.error_temp +ftplib.ftpcp(??) +ftplib.os +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket +ftplib.sys +ftplib.test(??) +functools.WRAPPER_ASSIGNMENTS +functools.WRAPPER_UPDATES +functools.partial(func, *args, **keywords) - new function with partial application +functools.reduce(function, sequence[, initial]) -> value +functools.update_wrapper(??) +functools.wraps(??) +future_builtins.ascii(object) -> string +future_builtins.filter +future_builtins.hex(number) -> string +future_builtins.map +future_builtins.oct(number) -> string +future_builtins.zip +gc.DEBUG_COLLECTABLE +gc.DEBUG_INSTANCES +gc.DEBUG_LEAK +gc.DEBUG_OBJECTS +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os +genericpath.stat +getattr(object, name[, default]) -> value +getopt.GetoptError +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os +getopt.short_has_arg(??) +getpass.GetPassWarning +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.os +getpass.sys +getpass.termios +getpass.unix_getpass(??) +getpass.warnings +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale +gettext.ngettext(??) +gettext.os +gettext.re +gettext.struct +gettext.sys +gettext.test(??) +gettext.textdomain(??) +gettext.translation(??) +glob.fnmatch +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check +glob.os +glob.re +glob.sys +globals() -> dictionary +grp.getgrall() -> list of tuples +grp.getgrgid(id) -> tuple +grp.getgrnam(name) -> tuple +grp.struct_group +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.open(??) +gzip.read32(??) +gzip.struct +gzip.sys +gzip.time +gzip.write32u(??) +gzip.zlib +hasattr(object, name) -> bool +hash(object) -> integer +hashlib.md5 +hashlib.new(name, string='') - Return a new hashing object using the named algorithm; +hashlib.sha1 +hashlib.sha224 +hashlib.sha256 +hashlib.sha384 +hashlib.sha512 +heapq.bisect +heapq.count([firstval]) --> count object +heapq.heapify +heapq.heappop +heapq.heappush +heapq.heappushpop +heapq.heapreplace +heapq.imap(func, *iterables) --> imap object +heapq.islice(iterable, [start,] stop [, step]) --> islice object +heapq.itemgetter(item, ...) --> itemgetter object +heapq.izip(iter1 [,iter2 [...]]) --> izip object +heapq.merge(??) +heapq.neg(a) -- Same as -a. +heapq.nlargest(??) +heapq.nsmallest(??) +heapq.repeat(element [,times]) -> create an iterator which returns the element +heapq.tee(iterable, n=2) --> tuple of n independent iterators. +help +hex(number) -> string +hmac.HMAC(??) +hmac.digest_size +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +hmac.x +hotshot.Profile(??) +hotshot.ProfilerError +hotshot.log +hotshot.log.ENTER +hotshot.log.EXIT +hotshot.log.LINE +hotshot.log.LogReader(??) +hotshot.log.WHAT_ADD_INFO +hotshot.log.WHAT_DEFINE_FILE +hotshot.log.WHAT_DEFINE_FUNC +hotshot.log.WHAT_ENTER +hotshot.log.WHAT_EXIT +hotshot.log.WHAT_LINENO +hotshot.log.os +hotshot.log.parser +hotshot.log.symbol +hotshot.stats +hotshot.stats.ENTER +hotshot.stats.EXIT +hotshot.stats.FakeCode(??) +hotshot.stats.FakeFrame(??) +hotshot.stats.Profile(??) +hotshot.stats.StatsLoader(??) +hotshot.stats.hotshot +hotshot.stats.load(??) +hotshot.stats.profile +hotshot.stats.pstats +hotshot.stones.errno +hotshot.stones.hotshot +hotshot.stones.main(??) +hotshot.stones.sys +hotshot.stones.test +htmlentitydefs.codepoint2name +htmlentitydefs.entitydefs +htmlentitydefs.name2codepoint +htmllib.AS_IS +htmllib.HTMLParseError +htmllib.HTMLParser(??) +htmllib.sgmllib +htmllib.test(??) +httplib.ACCEPTED +httplib.BAD_GATEWAY +httplib.BAD_REQUEST +httplib.BadStatusLine +httplib.CONFLICT +httplib.CONTINUE +httplib.CREATED +httplib.CannotSendHeader +httplib.CannotSendRequest +httplib.EXPECTATION_FAILED +httplib.FAILED_DEPENDENCY +httplib.FORBIDDEN +httplib.FOUND +httplib.FakeSocket(??) +httplib.GATEWAY_TIMEOUT +httplib.GONE +httplib.HTTP(??) +httplib.HTTPConnection(??) +httplib.HTTPException +httplib.HTTPMessage(??) +httplib.HTTPResponse(??) +httplib.HTTPS(??) +httplib.HTTPSConnection(??) +httplib.HTTPS_PORT +httplib.HTTP_PORT +httplib.HTTP_VERSION_NOT_SUPPORTED +httplib.IM_USED +httplib.INSUFFICIENT_STORAGE +httplib.INTERNAL_SERVER_ERROR +httplib.ImproperConnectionState +httplib.IncompleteRead +httplib.InvalidURL +httplib.LENGTH_REQUIRED +httplib.LOCKED +httplib.LineAndFileWrapper(??) +httplib.MAXAMOUNT +httplib.METHOD_NOT_ALLOWED +httplib.MOVED_PERMANENTLY +httplib.MULTIPLE_CHOICES +httplib.MULTI_STATUS +httplib.NON_AUTHORITATIVE_INFORMATION +httplib.NOT_ACCEPTABLE +httplib.NOT_EXTENDED +httplib.NOT_FOUND +httplib.NOT_IMPLEMENTED +httplib.NOT_MODIFIED +httplib.NO_CONTENT +httplib.NotConnected +httplib.OK +httplib.PARTIAL_CONTENT +httplib.PAYMENT_REQUIRED +httplib.PRECONDITION_FAILED +httplib.PROCESSING +httplib.PROXY_AUTHENTICATION_REQUIRED +httplib.REQUESTED_RANGE_NOT_SATISFIABLE +httplib.REQUEST_ENTITY_TOO_LARGE +httplib.REQUEST_TIMEOUT +httplib.REQUEST_URI_TOO_LONG +httplib.RESET_CONTENT +httplib.ResponseNotReady +httplib.SEE_OTHER +httplib.SERVICE_UNAVAILABLE +httplib.SWITCHING_PROTOCOLS +httplib.StringIO([s]) -- Return a StringIO-like stream for reading or writing +httplib.TEMPORARY_REDIRECT +httplib.UNAUTHORIZED +httplib.UNPROCESSABLE_ENTITY +httplib.UNSUPPORTED_MEDIA_TYPE +httplib.UPGRADE_REQUIRED +httplib.USE_PROXY +httplib.UnimplementedFileMode +httplib.UnknownProtocol +httplib.UnknownTransferEncoding +httplib.error +httplib.mimetools +httplib.py3kwarning +httplib.responses +httplib.socket +httplib.ssl +httplib.test(??) +httplib.urlsplit(??) +httplib.warnings +id(object) -> integer +ihooks.BUILTIN_MODULE +ihooks.BasicModuleImporter(??) +ihooks.BasicModuleLoader(??) +ihooks.C_BUILTIN +ihooks.C_EXTENSION +ihooks.FROZEN_MODULE +ihooks.FancyModuleLoader(??) +ihooks.Hooks(??) +ihooks.ModuleImporter(??) +ihooks.ModuleLoader(??) +ihooks.PKG_DIRECTORY +ihooks.PY_COMPILED +ihooks.PY_FROZEN +ihooks.PY_SOURCE +ihooks.VERBOSE +ihooks.current_importer +ihooks.default_importer +ihooks.imp +ihooks.install(??) +ihooks.os +ihooks.sys +ihooks.uninstall(??) +imaplib.AllowedVersions +imaplib.CRLF +imaplib.Commands +imaplib.Continuation +imaplib.Debug +imaplib.Flags +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate +imaplib.Internaldate2tuple(??) +imaplib.Literal +imaplib.MapCRLF +imaplib.Mon2num +imaplib.ParseFlags(??) +imaplib.Response_code +imaplib.Time2Internaldate(??) +imaplib.Untagged_response +imaplib.Untagged_status +imaplib.binascii +imaplib.os +imaplib.random +imaplib.re +imaplib.socket +imaplib.ssl +imaplib.sys +imaplib.time +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exif(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.acquire_lock() -> None +imp.find_module(name, [path]) -> (file, filename, (suffix, mode, type)) +imp.get_frozen_object +imp.get_magic() -> string +imp.get_suffixes() -> [(suffix, mode, type), ...] +imp.init_builtin +imp.init_frozen +imp.is_builtin +imp.is_frozen +imp.load_compiled +imp.load_dynamic +imp.load_module(name, file, filename, (suffix, mode, type)) -> module +imp.load_package +imp.load_source +imp.lock_held() -> boolean +imp.new_module(name) -> module +imp.release_lock() -> None +imp.reload(module) -> module +imputil.BuiltinImporter(??) +imputil.DynLoadSuffixImporter(??) +imputil.ImportManager(??) +imputil.Importer(??) +imputil.imp +imputil.marshal +imputil.py_suffix_importer(??) +imputil.struct +imputil.sys +input([prompt]) -> value +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, keywords) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.CO_GENERATOR +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.EndOfBlock +inspect.ModuleInfo(name, suffix, mode, module_type) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.currentframe +inspect.dis +inspect.findsource(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getblock(??) +inspect.getclasstree(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.imp +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.joinseq(??) +inspect.linecache +inspect.modulesbyfile +inspect.namedtuple(??) +inspect.os +inspect.re +inspect.stack(??) +inspect.string +inspect.strseq(??) +inspect.sys +inspect.tokenize +inspect.trace(??) +inspect.types +inspect.walktree(??) +int(x[, base]) -> integer +intern(string) -> string +io.BlockingIOError +io.BufferedIOBase +io.BufferedRWPair +io.BufferedRandom +io.BufferedReader +io.BufferedWriter +io.BytesIO([buffer]) -> object +io.DEFAULT_BUFFER_SIZE +io.FileIO +io.IOBase +io.IncrementalNewlineDecoder +io.OpenWrapper +io.RawIOBase +io.StringIO +io.TextIOBase +io.TextIOWrapper +io.UnsupportedOperation +io.abc +io.codecs +io.open(??) +io.os +io.print_function +io.threading +io.unicode_literals +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(collection) -> iterator +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable[, r]) --> combinations object +itertools.count([firstval]) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.ifilter(function or None, sequence) --> ifilter object +itertools.ifilterfalse(function or None, sequence) --> ifilterfalse object +itertools.imap(func, *iterables) --> imap object +itertools.islice(iterable, [start,] stop [, step]) --> islice object +itertools.izip(iter1 [,iter2 [...]]) --> izip object +itertools.izip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> izip_longest object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables) --> product object +itertools.repeat(element [,times]) -> create an iterator which returns the element +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +json.JSONDecoder +json.JSONEncoder +json.decoder +json.decoder.ANYTHING +json.decoder.BACKSLASH +json.decoder.DEFAULT_ENCODING +json.decoder.FLAGS +json.decoder.JSONArray(??) +json.decoder.JSONConstant(??) +json.decoder.JSONDecoder +json.decoder.JSONNumber(??) +json.decoder.JSONObject(??) +json.decoder.JSONScanner +json.decoder.JSONString(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK +json.decoder.Scanner +json.decoder.WHITESPACE +json.decoder.c_scanstring +json.decoder.errmsg(??) +json.decoder.linecol(??) +json.decoder.pattern(??) +json.decoder.py_scanstring(??) +json.decoder.re +json.decoder.scanstring(basestring, end, encoding) -> (str, end) +json.decoder.sys +json.dump(??) +json.dumps(??) +json.encoder +json.encoder.ESCAPE +json.encoder.ESCAPE_ASCII +json.encoder.ESCAPE_DCT +json.encoder.FLOAT_REPR +json.encoder.HAS_UTF8 +json.encoder.JSONEncoder +json.encoder.c_encode_basestring_ascii +json.encoder.encode_basestring(??) +json.encoder.encode_basestring_ascii(basestring) -> str +json.encoder.floatstr(??) +json.encoder.i +json.encoder.math +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re +json.load(??) +json.loads(??) +json.scanner +json.scanner.BRANCH +json.scanner.DOTALL +json.scanner.FLAGS +json.scanner.MULTILINE +json.scanner.SUBPATTERN +json.scanner.Scanner +json.scanner.VERBOSE +json.scanner.pattern(??) +json.scanner.re +json.scanner.sre_compile +json.scanner.sre_constants +json.scanner.sre_parse +json.tool.json +json.tool.main(??) +json.tool.sys +keyword.iskeyword +keyword.kwlist +keyword.main(??) +len(object) -> integer +license +linecache.cache +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os +linecache.sys +linecache.updatecache(??) +linuxaudiodev.AFMT_A_LAW +linuxaudiodev.AFMT_MU_LAW +linuxaudiodev.AFMT_S16_BE +linuxaudiodev.AFMT_S16_LE +linuxaudiodev.AFMT_S16_NE +linuxaudiodev.AFMT_S8 +linuxaudiodev.AFMT_U16_BE +linuxaudiodev.AFMT_U16_LE +linuxaudiodev.AFMT_U8 +linuxaudiodev.error +linuxaudiodev.open +list() -> new list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.bind_textdomain_codeset(domain, codeset) -> string +locale.bindtextdomain(domain, dir) -> string +locale.currency(??) +locale.dcgettext(domain, msg, category) -> string +locale.dgettext(domain, msg) -> string +locale.encodings +locale.format(??) +locale.format_string(??) +locale.functools +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.gettext(msg) -> string +locale.locale_alias +locale.locale_encoding_alias +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.operator +locale.re +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll +locale.strxfrm +locale.sys +locale.textdomain(domain) -> string +locale.windows_locale +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StreamHandler(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit +logging.basicConfig(??) +logging.cStringIO +logging.codecs +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.fileConfig(??) +logging.config.listen(??) +logging.config.logging +logging.config.os +logging.config.socket +logging.config.stopListening(??) +logging.config.string +logging.config.struct +logging.config.sys +logging.config.thread +logging.config.threading +logging.config.traceback +logging.config.types +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.cPickle +logging.handlers.codecs +logging.handlers.logging +logging.handlers.os +logging.handlers.re +logging.handlers.socket +logging.handlers.string +logging.handlers.struct +logging.handlers.time +logging.handlers.types +logging.info(??) +logging.log(??) +logging.logProcesses +logging.logThreads +logging.makeLogRecord(??) +logging.os +logging.raiseExceptions +logging.root +logging.setLoggerClass(??) +logging.shutdown(??) +logging.string +logging.sys +logging.thread +logging.threading +logging.time +logging.traceback +logging.types +logging.warn(??) +logging.warning(??) +long(x[, base]) -> integer +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(??) +macpath.S_ISCHR(??) +macpath.S_ISDIR(??) +macpath.S_ISFIFO(??) +macpath.S_ISGID +macpath.S_ISLNK(??) +macpath.S_ISREG(??) +macpath.S_ISSOCK(??) +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.genericpath +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error +macpath.normcase(??) +macpath.normpath(??) +macpath.os +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames +macpath.walk(??) +macpath.warnings +macurl2path.os +macurl2path.pathname2url(??) +macurl2path.test(??) +macurl2path.url2pathname(??) +macurl2path.urllib +mailbox.Babyl(??) +mailbox.BabylMailbox(??) +mailbox.BabylMessage(??) +mailbox.Error +mailbox.ExternalClashError +mailbox.FormatError +mailbox.MH(??) +mailbox.MHMailbox(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.MmdfMailbox(??) +mailbox.NoSuchMailboxError +mailbox.NotEmptyError +mailbox.PortableUnixMailbox(??) +mailbox.StringIO +mailbox.UnixMailbox(??) +mailbox.calendar +mailbox.copy +mailbox.email +mailbox.errno +mailbox.fcntl +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os +mailbox.rfc822 +mailbox.socket +mailbox.sys +mailbox.time +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(function, sequence[, sequence, ...]) -> list +markupbase.ParserBase(??) +marshal.dump +marshal.dumps +marshal.load +marshal.loads +marshal.version +math.acos(x) +math.acosh(x) +math.asin(x) +math.asinh(x) +math.atan(x) +math.atan2(y, x) +math.atanh(x) +math.ceil(x) +math.copysign(x,y) +math.cos(x) +math.cosh(x) +math.degrees(x) -> converts angle x from radians to degrees +math.e +math.exp(x) +math.fabs(x) +math.factorial +math.floor(x) +math.fmod(x,y) +math.frexp(x) +math.fsum +math.hypot(x,y) +math.isinf(x) -> bool +math.isnan(x) -> bool +math.ldexp(x, i) -> x * (2**i) +math.log(x[, base]) -> the logarithm of x to the given base. +math.log10(x) -> the base 10 logarithm of x. +math.log1p(x) +math.modf(x) +math.pi +math.pow(x,y) +math.radians(x) -> converts angle x from degrees to radians +math.sin(x) +math.sinh(x) +math.sqrt(x) +math.tan(x) +math.tanh(x) +math.trunc(x:Real) -> Integral +max(iterable[, key=func]) -> value +md5.blocksize +md5.digest_size +md5.md5 +md5.new +md5.warnings +mhlib.Error +mhlib.FOLDER_PROTECT +mhlib.Folder(??) +mhlib.IntSet(??) +mhlib.MH(??) +mhlib.MH_PROFILE +mhlib.MH_SEQUENCES +mhlib.Message(??) +mhlib.PATH +mhlib.SubMessage(??) +mhlib.bisect +mhlib.isnumeric(??) +mhlib.mimetools +mhlib.multifile +mhlib.numericprog +mhlib.os +mhlib.pickline(??) +mhlib.re +mhlib.shutil +mhlib.sys +mhlib.test(??) +mhlib.updateline(??) +mimetools.Message(??) +mimetools.catch_warnings +mimetools.choose_boundary(??) +mimetools.copybinary(??) +mimetools.copyliteral(??) +mimetools.decode(??) +mimetools.decodetab +mimetools.encode(??) +mimetools.encodetab +mimetools.filterwarnings(??) +mimetools.os +mimetools.pipethrough(??) +mimetools.pipeto(??) +mimetools.rfc822 +mimetools.sys +mimetools.tempfile +mimetools.uudecode_pipe +mimetools.warnpy3k(??) +mimetypes.MimeTypes(??) +mimetypes.add_type +mimetypes.common_types +mimetypes.encodings_map +mimetypes.guess_all_extensions +mimetypes.guess_extension +mimetypes.guess_type +mimetypes.init(??) +mimetypes.inited +mimetypes.knownfiles +mimetypes.os +mimetypes.posixpath +mimetypes.read_mime_types(??) +mimetypes.suffix_map +mimetypes.types_map +mimetypes.urllib +mimify.CHARSET +mimify.File(??) +mimify.HeaderFile(??) +mimify.MAXLEN +mimify.QUOTE +mimify.base64_re +mimify.chrset +mimify.cte +mimify.he +mimify.iso_char +mimify.mime_char +mimify.mime_code +mimify.mime_decode(??) +mimify.mime_decode_header(??) +mimify.mime_encode(??) +mimify.mime_encode_header(??) +mimify.mime_head +mimify.mime_header +mimify.mime_header_char +mimify.mimify(??) +mimify.mimify_part(??) +mimify.mp +mimify.mv +mimify.qp +mimify.re +mimify.repl +mimify.sys +mimify.unmimify(??) +mimify.unmimify_part(??) +mimify.warnings +min(iterable[, key=func]) -> value +mmap.ACCESS_COPY +mmap.ACCESS_READ +mmap.ACCESS_WRITE +mmap.ALLOCATIONGRANULARITY +mmap.MAP_ANON +mmap.MAP_ANONYMOUS +mmap.MAP_DENYWRITE +mmap.MAP_EXECUTABLE +mmap.MAP_PRIVATE +mmap.MAP_SHARED +mmap.PAGESIZE +mmap.PROT_EXEC +mmap.PROT_READ +mmap.PROT_WRITE +mmap.error +mmap.mmap +modulefinder.AddPackagePath(??) +modulefinder.HAVE_ARGUMENT +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.READ_MODE +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS +modulefinder.dis +modulefinder.generators +modulefinder.imp +modulefinder.marshal +modulefinder.os +modulefinder.packagePathMap +modulefinder.replacePackageMap +modulefinder.struct +modulefinder.sys +modulefinder.test(??) +modulefinder.types +multifile.Error +multifile.MultiFile(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process +multiprocessing.ProcessError +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.Semaphore(??) +multiprocessing.TimeoutError +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection +multiprocessing.connection.AuthenticationError +multiprocessing.connection.BUFSIZE +multiprocessing.connection.CHALLENGE +multiprocessing.connection.Client(??) +multiprocessing.connection.ConnectionWrapper +multiprocessing.connection.FAILURE +multiprocessing.connection.Finalize +multiprocessing.connection.Listener +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.close(fd) +multiprocessing.connection.current_process(??) +multiprocessing.connection.debug(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.duplicate +multiprocessing.connection.errno +multiprocessing.connection.families +multiprocessing.connection.get_temp_dir(??) +multiprocessing.connection.itertools +multiprocessing.connection.os +multiprocessing.connection.socket +multiprocessing.connection.sub_debug(??) +multiprocessing.connection.sys +multiprocessing.connection.tempfile +multiprocessing.connection.time +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy +multiprocessing.dummy.Array(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition +multiprocessing.dummy.DummyProcess +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.TimeoutError +multiprocessing.dummy.Value +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array +multiprocessing.dummy.connection +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection +multiprocessing.dummy.connection.Listener +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families +multiprocessing.dummy.cpu_count(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary. +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.itertools +multiprocessing.dummy.list() -> new list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys +multiprocessing.dummy.threading +multiprocessing.dummy.weakref +multiprocessing.forking +multiprocessing.forking.ForkingPickler(??) +multiprocessing.forking.Pickler(??) +multiprocessing.forking.Popen +multiprocessing.forking.assert_spawning(??) +multiprocessing.forking.close(fd) +multiprocessing.forking.duplicate +multiprocessing.forking.exit +multiprocessing.forking.old_main_modules +multiprocessing.forking.os +multiprocessing.forking.partial(func, *args, **keywords) - new function with partial application +multiprocessing.forking.prepare(??) +multiprocessing.forking.process +multiprocessing.forking.signal +multiprocessing.forking.sys +multiprocessing.forking.time +multiprocessing.forking.util +multiprocessing.freeze_support(??) +multiprocessing.get_logger(??) +multiprocessing.heap.Arena +multiprocessing.heap.BufferWrapper +multiprocessing.heap.Finalize +multiprocessing.heap.Heap +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect +multiprocessing.heap.info(??) +multiprocessing.heap.itertools +multiprocessing.heap.mmap +multiprocessing.heap.os +multiprocessing.heap.sys +multiprocessing.heap.tempfile +multiprocessing.heap.threading +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy +multiprocessing.managers.AuthenticationString +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BaseListProxy +multiprocessing.managers.BaseManager +multiprocessing.managers.BaseProxy +multiprocessing.managers.ConditionProxy +multiprocessing.managers.DictProxy +multiprocessing.managers.EventProxy +multiprocessing.managers.Finalize +multiprocessing.managers.ForkingPickler(??) +multiprocessing.managers.IteratorProxy +multiprocessing.managers.ListProxy +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace +multiprocessing.managers.NamespaceProxy +multiprocessing.managers.PicklingError +multiprocessing.managers.Pool(??) +multiprocessing.managers.PoolProxy +multiprocessing.managers.Popen +multiprocessing.managers.Process +multiprocessing.managers.ProcessLocalSet +multiprocessing.managers.Queue +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError +multiprocessing.managers.Server +multiprocessing.managers.State +multiprocessing.managers.SyncManager +multiprocessing.managers.Token +multiprocessing.managers.Value +multiprocessing.managers.ValueProxy +multiprocessing.managers.active_children(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array +multiprocessing.managers.assert_spawning(??) +multiprocessing.managers.connection +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.current_process(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.exit +multiprocessing.managers.format_exc(??) +multiprocessing.managers.info(??) +multiprocessing.managers.listener_client +multiprocessing.managers.name +multiprocessing.managers.os +multiprocessing.managers.public_methods(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.sys +multiprocessing.managers.threading +multiprocessing.managers.util +multiprocessing.managers.view_types +multiprocessing.managers.weakref +multiprocessing.os +multiprocessing.pool +multiprocessing.pool.ApplyResult +multiprocessing.pool.CLOSE +multiprocessing.pool.Finalize +multiprocessing.pool.IMapIterator +multiprocessing.pool.IMapUnorderedIterator +multiprocessing.pool.MapResult +multiprocessing.pool.Pool +multiprocessing.pool.Process +multiprocessing.pool.Queue +multiprocessing.pool.RUN +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool +multiprocessing.pool.TimeoutError +multiprocessing.pool.collections +multiprocessing.pool.cpu_count(??) +multiprocessing.pool.debug(??) +multiprocessing.pool.itertools +multiprocessing.pool.job_counter +multiprocessing.pool.mapstar(??) +multiprocessing.pool.threading +multiprocessing.pool.time +multiprocessing.pool.worker(??) +multiprocessing.process +multiprocessing.process.AuthenticationString +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.Process +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools +multiprocessing.process.name +multiprocessing.process.os +multiprocessing.process.signal +multiprocessing.process.signum +multiprocessing.process.sys +multiprocessing.queues.BoundedSemaphore +multiprocessing.queues.Condition +multiprocessing.queues.Empty +multiprocessing.queues.Finalize +multiprocessing.queues.Full +multiprocessing.queues.JoinableQueue +multiprocessing.queues.Lock +multiprocessing.queues.Pipe(??) +multiprocessing.queues.Queue +multiprocessing.queues.Semaphore +multiprocessing.queues.SimpleQueue +multiprocessing.queues.assert_spawning(??) +multiprocessing.queues.atexit +multiprocessing.queues.collections +multiprocessing.queues.debug(??) +multiprocessing.queues.info(??) +multiprocessing.queues.os +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys +multiprocessing.queues.threading +multiprocessing.queues.time +multiprocessing.queues.weakref +multiprocessing.reduction.Client(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.Listener +multiprocessing.reduction.Popen +multiprocessing.reduction.close(fd) +multiprocessing.reduction.current_process(??) +multiprocessing.reduction.debug(??) +multiprocessing.reduction.duplicate +multiprocessing.reduction.fromfd(??) +multiprocessing.reduction.os +multiprocessing.reduction.rebuild_connection(??) +multiprocessing.reduction.rebuild_handle(??) +multiprocessing.reduction.rebuild_socket(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.reduce_connection(??) +multiprocessing.reduction.reduce_handle(??) +multiprocessing.reduction.reduce_socket(??) +multiprocessing.reduction.register_after_fork(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.socket +multiprocessing.reduction.sub_debug(??) +multiprocessing.reduction.sys +multiprocessing.reduction.threading +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.ForkingPickler(??) +multiprocessing.sharedctypes.RLock(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized +multiprocessing.sharedctypes.SynchronizedArray +multiprocessing.sharedctypes.SynchronizedBase +multiprocessing.sharedctypes.SynchronizedString +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes +multiprocessing.sharedctypes.heap +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.sys +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type +multiprocessing.sharedctypes.weakref +multiprocessing.synchronize.BoundedSemaphore +multiprocessing.synchronize.Condition +multiprocessing.synchronize.Event +multiprocessing.synchronize.Finalize +multiprocessing.synchronize.Lock +multiprocessing.synchronize.Popen +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock +multiprocessing.synchronize.Semaphore +multiprocessing.synchronize.assert_spawning(??) +multiprocessing.synchronize.current_process(??) +multiprocessing.synchronize.debug(??) +multiprocessing.synchronize.os +multiprocessing.synchronize.register_after_fork(??) +multiprocessing.synchronize.sys +multiprocessing.synchronize.threading +multiprocessing.sys +multiprocessing.util +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize +multiprocessing.util.ForkAwareLocal +multiprocessing.util.ForkAwareThreadLock +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.active_children(??) +multiprocessing.util.atexit +multiprocessing.util.current_process(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.threading +multiprocessing.util.weakref +mutex.deque(iterable[, maxlen]) --> deque object +mutex.mutex(??) +netrc.NetrcParseError +netrc.netrc(??) +netrc.os +netrc.shlex +new.classobj(name, bases, dict) +new.code +new.function(code, globals[, name[, argdefs[, closure]]]) +new.instance(class[, dict]) +new.instancemethod(function, instance, class) +new.module(name[, doc]) +next(iterator[, default]) +nis.cat(map, domain = defaultdomain) +nis.error +nis.get_default_domain() -> str +nis.maps(domain = defaultdomain) +nis.match(key, map, domain = defaultdomain) +nntplib.CRLF +nntplib.LONGRESP +nntplib.NNTP(??) +nntplib.NNTPDataError +nntplib.NNTPError +nntplib.NNTPPermanentError +nntplib.NNTPProtocolError +nntplib.NNTPReplyError +nntplib.NNTPTemporaryError +nntplib.NNTP_PORT +nntplib.error_data +nntplib.error_perm +nntplib.error_proto +nntplib.error_reply +nntplib.error_temp +nntplib.re +nntplib.socket +ntpath.abspath(??) +ntpath.altsep +ntpath.basename(??) +ntpath.commonprefix(??) +ntpath.curdir +ntpath.defpath +ntpath.devnull +ntpath.dirname(??) +ntpath.exists(??) +ntpath.expanduser(??) +ntpath.expandvars(??) +ntpath.extsep +ntpath.genericpath +ntpath.getatime(??) +ntpath.getctime(??) +ntpath.getmtime(??) +ntpath.getsize(??) +ntpath.isabs(??) +ntpath.isdir(??) +ntpath.isfile(??) +ntpath.islink(??) +ntpath.ismount(??) +ntpath.join(??) +ntpath.lexists(??) +ntpath.normcase(??) +ntpath.normpath(??) +ntpath.os +ntpath.pardir +ntpath.pathsep +ntpath.realpath(??) +ntpath.relpath(??) +ntpath.sep +ntpath.split(??) +ntpath.splitdrive(??) +ntpath.splitext(??) +ntpath.splitunc(??) +ntpath.stat +ntpath.supports_unicode_filenames +ntpath.sys +ntpath.walk(??) +ntpath.warnings +nturl2path.pathname2url(??) +nturl2path.url2pathname(??) +numbers.ABCMeta +numbers.Complex +numbers.Integral +numbers.Number +numbers.Rational +numbers.Real +numbers.abstractmethod(??) +numbers.abstractproperty +numbers.division +object +oct(number) -> string +opcode.EXTENDED_ARG +opcode.HAVE_ARGUMENT +opcode.cmp_op +opcode.hascompare +opcode.hasconst +opcode.hasfree +opcode.hasjabs +opcode.hasjrel +opcode.haslocal +opcode.hasname +opcode.opmap +opcode.opname +open(name[, mode[, buffering]]) -> file object +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.delslice(a, b, c) -- Same as del a[b:c]. +operator.div(a, b) -- Same as a / b when __future__.division is not in effect. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.getslice(a, b, c) -- Same as a[b:c]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(a, b) -- Same as a += b. +operator.iand(a, b) -- Same as a &= b. +operator.iconcat(a, b) -- Same as a += b, for a and b sequences. +operator.idiv(a, b) -- Same as a /= b when __future__.division is not in effect. +operator.ifloordiv(a, b) -- Same as a //= b. +operator.ilshift(a, b) -- Same as a <<= b. +operator.imod(a, b) -- Same as a %= b. +operator.imul(a, b) -- Same as a *= b. +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(a, b) -- Same as a |= b. +operator.ipow(a, b) -- Same as a **= b. +operator.irepeat(a, b) -- Same as a *= b, where a is a sequence, and b is an integer. +operator.irshift(a, b) -- Same as a >>= b. +operator.isCallable(a) -- Same as callable(a). +operator.isMappingType(a) -- Return True if a has a mapping type, False otherwise. +operator.isNumberType(a) -- Return True if a has a numeric type, False otherwise. +operator.isSequenceType(a) -- Return True if a has a sequence type, False otherwise. +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(a, b) -- Same as a -= b. +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(a, b) -- Same as a /= b when __future__.division is in effect. +operator.ixor(a, b) -- Same as a ^= b. +operator.le(a, b) -- Same as a<=b. +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.repeat(a, b) -- Return a * b, where a is a sequence, and b is an integer. +operator.rshift(a, b) -- Same as a >> b. +operator.sequenceIncludes(a, b) -- Same as b in a (note reversed operands; deprecated). +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.setslice(a, b, c, d) -- Same as a[b:c] = d. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b when __future__.division is in effect. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError +optparse.BadOptionError +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT +optparse.OptParseError +optparse.Option(??) +optparse.OptionConflictError +optparse.OptionContainer(??) +optparse.OptionError +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.isbasestring(??) +optparse.make_option(??) +optparse.os +optparse.sys +optparse.textwrap +optparse.types +ord(c) -> integer +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_OK +os.NGROUPS_MAX +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_LARGEFILE +os.O_NDELAY +os.O_NOATIME +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_RSYNC +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.P_NOWAIT +os.P_NOWAITO +os.P_WAIT +os.R_OK +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.TMP_MAX +os.UserDict +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(path, mode) -> True if granted, False otherwise +os.altsep +os.chdir(path) +os.chmod(path, mode) +os.chown(path, uid, gid) +os.chroot(path) +os.close(fd) +os.closerange(fd_low, fd_high) +os.confstr(name) -> string +os.confstr_names +os.ctermid() -> string +os.curdir +os.defpath +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ +os.errno +os.error +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(??) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fildes) +os.fchmod(fd, mode) +os.fchown(fd, uid, gid) +os.fdatasync(fildes) +os.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.getcwd() -> path +os.getcwdu() -> path +os.getegid() -> egid +os.getenv(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getsid(pid) -> sid +os.getuid() -> uid +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst) +os.listdir(path) -> list_of_strings +os.lseek(fd, pos, how) -> newpos +os.lstat(path) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0777]) +os.minor(device) -> minor number +os.mkdir(path [, mode=0777]) +os.mkfifo(filename [, mode=0666]) +os.mknod(filename [, mode=0600, device]) +os.name +os.nice(inc) -> new_priority +os.open(filename, flag [, mode=0777]) -> fd +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path +os.pathconf(path, name) -> integer +os.pathconf_names +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(command [, mode='r' [, bufsize]]) -> pipe +os.popen2(??) +os.popen3(??) +os.popen4(??) +os.putenv(key, value) +os.read(fd, buffersize) -> string +os.readlink(path) -> path +os.remove(path) +os.removedirs(path) +os.rename(old, new) +os.renames(old, new) +os.rmdir(path) +os.sep +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setregid(rgid, egid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.stat(path) -> stat result +os.stat_float_times([newval]) -> oldval +os.stat_result +os.statvfs(path) -> statvfs result +os.statvfs_result +os.strerror(code) -> string +os.symlink(src, dst) +os.sys +os.sysconf(name) -> integer +os.sysconf_names +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.tempnam([dir[, prefix]]) -> string +os.times() -> (utime, stime, cutime, cstime, elapsed_time) +os.tmpfile() -> file object +os.tmpnam() -> string +os.ttyname(fd) -> string +os.umask(new_mask) -> old_mask +os.uname() -> (sysname, nodename, release, version, machine) +os.unlink(path) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, (atime, mtime)) +os.wait() -> (pid, status) +os.wait3(options) -> (pid, status, rusage) +os.wait4(pid, options) -> (pid, status, rusage) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, string) -> byteswritten +os2emxpath.abspath(??) +os2emxpath.altsep +os2emxpath.basename(??) +os2emxpath.commonprefix(??) +os2emxpath.curdir +os2emxpath.defpath +os2emxpath.devnull +os2emxpath.dirname(??) +os2emxpath.exists(??) +os2emxpath.expanduser(??) +os2emxpath.expandvars(??) +os2emxpath.extsep +os2emxpath.getatime(??) +os2emxpath.getctime(??) +os2emxpath.getmtime(??) +os2emxpath.getsize(??) +os2emxpath.isabs(??) +os2emxpath.isdir(??) +os2emxpath.isfile(??) +os2emxpath.islink(??) +os2emxpath.ismount(??) +os2emxpath.join(??) +os2emxpath.lexists(??) +os2emxpath.normcase(??) +os2emxpath.normpath(??) +os2emxpath.os +os2emxpath.pardir +os2emxpath.pathsep +os2emxpath.realpath(??) +os2emxpath.sep +os2emxpath.split(??) +os2emxpath.splitdrive(??) +os2emxpath.splitext(??) +os2emxpath.splitunc(??) +os2emxpath.stat +os2emxpath.supports_unicode_filenames +os2emxpath.walk(??) +ossaudiodev.AFMT_AC3 +ossaudiodev.AFMT_A_LAW +ossaudiodev.AFMT_IMA_ADPCM +ossaudiodev.AFMT_MPEG +ossaudiodev.AFMT_MU_LAW +ossaudiodev.AFMT_QUERY +ossaudiodev.AFMT_S16_BE +ossaudiodev.AFMT_S16_LE +ossaudiodev.AFMT_S16_NE +ossaudiodev.AFMT_S8 +ossaudiodev.AFMT_U16_BE +ossaudiodev.AFMT_U16_LE +ossaudiodev.AFMT_U8 +ossaudiodev.OSSAudioError +ossaudiodev.SNDCTL_COPR_HALT +ossaudiodev.SNDCTL_COPR_LOAD +ossaudiodev.SNDCTL_COPR_RCODE +ossaudiodev.SNDCTL_COPR_RCVMSG +ossaudiodev.SNDCTL_COPR_RDATA +ossaudiodev.SNDCTL_COPR_RESET +ossaudiodev.SNDCTL_COPR_RUN +ossaudiodev.SNDCTL_COPR_SENDMSG +ossaudiodev.SNDCTL_COPR_WCODE +ossaudiodev.SNDCTL_COPR_WDATA +ossaudiodev.SNDCTL_DSP_BIND_CHANNEL +ossaudiodev.SNDCTL_DSP_CHANNELS +ossaudiodev.SNDCTL_DSP_GETBLKSIZE +ossaudiodev.SNDCTL_DSP_GETCAPS +ossaudiodev.SNDCTL_DSP_GETCHANNELMASK +ossaudiodev.SNDCTL_DSP_GETFMTS +ossaudiodev.SNDCTL_DSP_GETIPTR +ossaudiodev.SNDCTL_DSP_GETISPACE +ossaudiodev.SNDCTL_DSP_GETODELAY +ossaudiodev.SNDCTL_DSP_GETOPTR +ossaudiodev.SNDCTL_DSP_GETOSPACE +ossaudiodev.SNDCTL_DSP_GETSPDIF +ossaudiodev.SNDCTL_DSP_GETTRIGGER +ossaudiodev.SNDCTL_DSP_MAPINBUF +ossaudiodev.SNDCTL_DSP_MAPOUTBUF +ossaudiodev.SNDCTL_DSP_NONBLOCK +ossaudiodev.SNDCTL_DSP_POST +ossaudiodev.SNDCTL_DSP_PROFILE +ossaudiodev.SNDCTL_DSP_RESET +ossaudiodev.SNDCTL_DSP_SAMPLESIZE +ossaudiodev.SNDCTL_DSP_SETDUPLEX +ossaudiodev.SNDCTL_DSP_SETFMT +ossaudiodev.SNDCTL_DSP_SETFRAGMENT +ossaudiodev.SNDCTL_DSP_SETSPDIF +ossaudiodev.SNDCTL_DSP_SETSYNCRO +ossaudiodev.SNDCTL_DSP_SETTRIGGER +ossaudiodev.SNDCTL_DSP_SPEED +ossaudiodev.SNDCTL_DSP_STEREO +ossaudiodev.SNDCTL_DSP_SUBDIVIDE +ossaudiodev.SNDCTL_DSP_SYNC +ossaudiodev.SNDCTL_FM_4OP_ENABLE +ossaudiodev.SNDCTL_FM_LOAD_INSTR +ossaudiodev.SNDCTL_MIDI_INFO +ossaudiodev.SNDCTL_MIDI_MPUCMD +ossaudiodev.SNDCTL_MIDI_MPUMODE +ossaudiodev.SNDCTL_MIDI_PRETIME +ossaudiodev.SNDCTL_SEQ_CTRLRATE +ossaudiodev.SNDCTL_SEQ_GETINCOUNT +ossaudiodev.SNDCTL_SEQ_GETOUTCOUNT +ossaudiodev.SNDCTL_SEQ_GETTIME +ossaudiodev.SNDCTL_SEQ_NRMIDIS +ossaudiodev.SNDCTL_SEQ_NRSYNTHS +ossaudiodev.SNDCTL_SEQ_OUTOFBAND +ossaudiodev.SNDCTL_SEQ_PANIC +ossaudiodev.SNDCTL_SEQ_PERCMODE +ossaudiodev.SNDCTL_SEQ_RESET +ossaudiodev.SNDCTL_SEQ_RESETSAMPLES +ossaudiodev.SNDCTL_SEQ_SYNC +ossaudiodev.SNDCTL_SEQ_TESTMIDI +ossaudiodev.SNDCTL_SEQ_THRESHOLD +ossaudiodev.SNDCTL_SYNTH_CONTROL +ossaudiodev.SNDCTL_SYNTH_ID +ossaudiodev.SNDCTL_SYNTH_INFO +ossaudiodev.SNDCTL_SYNTH_MEMAVL +ossaudiodev.SNDCTL_SYNTH_REMOVESAMPLE +ossaudiodev.SNDCTL_TMR_CONTINUE +ossaudiodev.SNDCTL_TMR_METRONOME +ossaudiodev.SNDCTL_TMR_SELECT +ossaudiodev.SNDCTL_TMR_SOURCE +ossaudiodev.SNDCTL_TMR_START +ossaudiodev.SNDCTL_TMR_STOP +ossaudiodev.SNDCTL_TMR_TEMPO +ossaudiodev.SNDCTL_TMR_TIMEBASE +ossaudiodev.SOUND_MIXER_ALTPCM +ossaudiodev.SOUND_MIXER_BASS +ossaudiodev.SOUND_MIXER_CD +ossaudiodev.SOUND_MIXER_DIGITAL1 +ossaudiodev.SOUND_MIXER_DIGITAL2 +ossaudiodev.SOUND_MIXER_DIGITAL3 +ossaudiodev.SOUND_MIXER_IGAIN +ossaudiodev.SOUND_MIXER_IMIX +ossaudiodev.SOUND_MIXER_LINE +ossaudiodev.SOUND_MIXER_LINE1 +ossaudiodev.SOUND_MIXER_LINE2 +ossaudiodev.SOUND_MIXER_LINE3 +ossaudiodev.SOUND_MIXER_MIC +ossaudiodev.SOUND_MIXER_MONITOR +ossaudiodev.SOUND_MIXER_NRDEVICES +ossaudiodev.SOUND_MIXER_OGAIN +ossaudiodev.SOUND_MIXER_PCM +ossaudiodev.SOUND_MIXER_PHONEIN +ossaudiodev.SOUND_MIXER_PHONEOUT +ossaudiodev.SOUND_MIXER_RADIO +ossaudiodev.SOUND_MIXER_RECLEV +ossaudiodev.SOUND_MIXER_SPEAKER +ossaudiodev.SOUND_MIXER_SYNTH +ossaudiodev.SOUND_MIXER_TREBLE +ossaudiodev.SOUND_MIXER_VIDEO +ossaudiodev.SOUND_MIXER_VOLUME +ossaudiodev.control_labels +ossaudiodev.control_names +ossaudiodev.error +ossaudiodev.open +ossaudiodev.openmixer +parser.ASTType +parser.ParserError +parser.STType +parser.ast2list +parser.ast2tuple +parser.compileast +parser.compilest +parser.expr +parser.isexpr +parser.issuite +parser.sequence2ast +parser.sequence2st +parser.st2list +parser.st2tuple +parser.suite +parser.tuple2ast +parser.tuple2st +pdb.Pdb(??) +pdb.Repr(??) +pdb.Restart +pdb.TESTCMD +pdb.bdb +pdb.cmd +pdb.find_function(??) +pdb.help(??) +pdb.line_prefix +pdb.linecache +pdb.main(??) +pdb.os +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint +pdb.re +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.sys +pdb.test(??) +pdb.traceback +pickle.APPEND +pickle.APPENDS +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BUILD +pickle.BooleanType +pickle.BufferType +pickle.BuiltinFunctionType +pickle.BuiltinMethodType +pickle.ClassType +pickle.CodeType +pickle.ComplexType +pickle.DICT +pickle.DUP +pickle.DictProxyType +pickle.DictType +pickle.DictionaryType +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.EllipsisType +pickle.FALSE +pickle.FLOAT +pickle.FileType +pickle.FloatType +pickle.FrameType +pickle.FunctionType +pickle.GET +pickle.GLOBAL +pickle.GeneratorType +pickle.GetSetDescriptorType +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.InstanceType +pickle.IntType +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.LambdaType +pickle.ListType +pickle.LongType +pickle.MARK +pickle.MemberDescriptorType +pickle.MethodType +pickle.ModuleType +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWTRUE +pickle.NONE +pickle.NoneType +pickle.NotImplementedType +pickle.OBJ +pickle.ObjectType +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError +pickle.Pickler(??) +pickle.PicklingError +pickle.PyStringMap +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINSTRING +pickle.STOP +pickle.STRING +pickle.SliceType +pickle.StringIO([s]) -- Return a StringIO-like stream for reading or writing +pickle.StringType +pickle.StringTypes +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.TracebackType +pickle.TupleType +pickle.TypeType +pickle.UNICODE +pickle.UnboundMethodType +pickle.UnicodeType +pickle.Unpickler(??) +pickle.UnpicklingError +pickle.XRangeType +pickle.classmap +pickle.compatible_formats +pickle.decode_long(??) +pickle.dispatch_table +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.load(??) +pickle.loads(??) +pickle.marshal +pickle.mloads +pickle.re +pickle.struct +pickle.sys +pickle.whichmodule(??) +pickletools.ArgumentDescriptor +pickletools.OpcodeInfo +pickletools.StackObject +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.UP_TO_NEWLINE +pickletools.anyobject +pickletools.code2op +pickletools.decimalnl_long +pickletools.decimalnl_short +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8 +pickletools.floatnl +pickletools.genops(??) +pickletools.int4 +pickletools.long1 +pickletools.long4 +pickletools.markobject +pickletools.opcodes +pickletools.optimize(??) +pickletools.pybool +pickletools.pydict +pickletools.pyfloat +pickletools.pyint +pickletools.pyinteger_or_bool +pickletools.pylist +pickletools.pylong +pickletools.pynone +pickletools.pystring +pickletools.pytuple +pickletools.pyunicode +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice +pickletools.string1 +pickletools.string4 +pickletools.stringnl +pickletools.stringnl_noescape +pickletools.stringnl_noescape_pair +pickletools.uint1 +pickletools.uint2 +pickletools.unicodestring4 +pickletools.unicodestringnl +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os +pipes.quote(??) +pipes.re +pipes.stepkinds +pipes.string +pipes.tempfile +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.imp +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys +pkgutil.walk_packages(??) +pkgutil.zipimport +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.architecture(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re +platform.release(??) +platform.string +platform.sys +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.version(??) +platform.win32_ver(??) +plistlib.Data(??) +plistlib.Dict +plistlib.DumbXMLWriter(??) +plistlib.PLISTHEADER +plistlib.Plist +plistlib.PlistParser(??) +plistlib.PlistWriter(??) +plistlib.StringIO([s]) -- Return a StringIO-like stream for reading or writing +plistlib.binascii +plistlib.datetime +plistlib.re +plistlib.readPlist(??) +plistlib.readPlistFromResource(??) +plistlib.readPlistFromString(??) +plistlib.warnings +plistlib.writePlist(??) +plistlib.writePlistToResource(??) +plistlib.writePlistToString(??) +popen2.MAXFD +popen2.Popen3(??) +popen2.Popen4(??) +popen2.os +popen2.popen2(??) +popen2.popen3(??) +popen2.popen4(??) +popen2.sys +popen2.warnings +poplib.CR +poplib.CRLF +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.error_proto +poplib.re +poplib.socket +poplib.ssl +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_OK +posix.NGROUPS_MAX +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_LARGEFILE +posix.O_NDELAY +posix.O_NOATIME +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_RSYNC +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.R_OK +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(path, mode) -> True if granted, False otherwise +posix.chdir(path) +posix.chmod(path, mode) +posix.chown(path, uid, gid) +posix.chroot(path) +posix.close(fd) +posix.closerange(fd_low, fd_high) +posix.confstr(name) -> string +posix.confstr_names +posix.ctermid() -> string +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ +posix.error +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fildes) +posix.fchmod(fd, mode) +posix.fchown(fd, uid, gid) +posix.fdatasync(fildes) +posix.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.getcwd() -> path +posix.getcwdu() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchown(path, uid, gid) +posix.link(src, dst) +posix.listdir(path) -> list_of_strings +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path [, mode=0777]) +posix.mkfifo(filename [, mode=0666]) +posix.mknod(filename [, mode=0600, device]) +posix.nice(inc) -> new_priority +posix.open(filename, flag [, mode=0777]) -> fd +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names +posix.pipe() -> (read_end, write_end) +posix.popen(command [, mode='r' [, bufsize]]) -> pipe +posix.putenv(key, value) +posix.read(fd, buffersize) -> string +posix.readlink(path) -> path +posix.remove(path) +posix.rename(old, new) +posix.rmdir(path) +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setregid(rgid, egid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(path) -> stat result +posix.stat_float_times([newval]) -> oldval +posix.stat_result +posix.statvfs(path) -> statvfs result +posix.statvfs_result +posix.strerror(code) -> string +posix.symlink(src, dst) +posix.sysconf(name) -> integer +posix.sysconf_names +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.tempnam([dir[, prefix]]) -> string +posix.times() -> (utime, stime, cutime, cstime, elapsed_time) +posix.tmpfile() -> file object +posix.tmpnam() -> string +posix.ttyname(fd) -> string +posix.umask(new_mask) -> old_mask +posix.uname() -> (sysname, nodename, release, version, machine) +posix.unlink(path) +posix.unsetenv(key) +posix.utime(path, (atime, mtime)) +posix.wait() -> (pid, status) +posix.wait3(options) -> (pid, status, rusage) +posix.wait4(pid, options) -> (pid, status, rusage) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, string) -> byteswritten +posixfile.SEEK_CUR +posixfile.SEEK_END +posixfile.SEEK_SET +posixfile.fileopen(??) +posixfile.open(??) +posixfile.warnings +posixpath.abspath(??) +posixpath.altsep +posixpath.basename(??) +posixpath.commonprefix(??) +posixpath.curdir +posixpath.defpath +posixpath.devnull +posixpath.dirname(??) +posixpath.exists(??) +posixpath.expanduser(??) +posixpath.expandvars(??) +posixpath.extsep +posixpath.genericpath +posixpath.getatime(??) +posixpath.getctime(??) +posixpath.getmtime(??) +posixpath.getsize(??) +posixpath.isabs(??) +posixpath.isdir(??) +posixpath.isfile(??) +posixpath.islink(??) +posixpath.ismount(??) +posixpath.join(??) +posixpath.lexists(??) +posixpath.normcase(??) +posixpath.normpath(??) +posixpath.os +posixpath.pardir +posixpath.pathsep +posixpath.realpath(??) +posixpath.relpath(??) +posixpath.samefile(??) +posixpath.sameopenfile(??) +posixpath.samestat(??) +posixpath.sep +posixpath.split(??) +posixpath.splitdrive(??) +posixpath.splitext(??) +posixpath.stat +posixpath.supports_unicode_filenames +posixpath.walk(??) +posixpath.warnings +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.saferepr(??) +print +profile.OptionParser(??) +profile.Profile(??) +profile.Stats(??) +profile.help(??) +profile.main(??) +profile.marshal +profile.os +profile.resgetrusage(??) +profile.resource +profile.run(??) +profile.runctx(??) +profile.sys +profile.time +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.CmpToKey(??) +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal +pstats.os +pstats.re +pstats.sys +pstats.time +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd +pwd.struct_pwent +py_compile.MAGIC +py_compile.PyCompileError +py_compile.compile(??) +py_compile.imp +py_compile.main(??) +py_compile.marshal +py_compile.os +py_compile.set_creator_type(??) +py_compile.sys +py_compile.traceback +py_compile.wr_long(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.imp +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys +pyclbr.tokenize +pydoc.Doc(??) +pydoc.ErrorDuringImport +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.Scanner(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque(iterable[, maxlen]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.expandtabs(s [,tabsize]) -> string +pydoc.find(s, sub [,start [,end]]) -> in +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.gui(??) +pydoc.help +pydoc.html +pydoc.imp +pydoc.importfile(??) +pydoc.inspect +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.join(list [,sep]) -> string +pydoc.locate(??) +pydoc.lower(s) -> string +pydoc.os +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.re +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.rfind(s, sub [,start [,end]]) -> int +pydoc.rstrip(s [,chars]) -> string +pydoc.safeimport(??) +pydoc.serve(??) +pydoc.source_synopsis(??) +pydoc.split(s [,sep [,maxsplit]]) -> list of strings +pydoc.splitdoc(??) +pydoc.strip(s [,chars]) -> string +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys +pydoc.tempfilepager(??) +pydoc.text +pydoc.ttypager(??) +pydoc.types +pydoc.visiblename(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_topics.topics +pyexpat.EXPAT_VERSION +pyexpat.ErrorString(errno) -> string +pyexpat.ExpatError +pyexpat.ParserCreate([encoding[, namespace_separator]]) -> parser +pyexpat.XMLParserType +pyexpat.XML_PARAM_ENTITY_PARSING_ALWAYS +pyexpat.XML_PARAM_ENTITY_PARSING_NEVER +pyexpat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +pyexpat.error +pyexpat.errors +pyexpat.expat_CAPI +pyexpat.features +pyexpat.model +pyexpat.native_encoding +pyexpat.version_info +quit +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp +quopri.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random +random.SG_MAGICCONST +random.SystemRandom +random.TWOPI +random.WichmannHill +random.betavariate +random.choice +random.division +random.expovariate +random.gammavariate +random.gauss +random.getrandbits(k) -> x. Generates a long int with k random bits. +random.getstate +random.jumpahead(int) -> None. Create new state from existing state and integer. +random.lognormvariate +random.normalvariate +random.paretovariate +random.randint +random.random() -> x in the interval [0, 1). +random.randrange +random.sample +random.seed +random.setstate +random.shuffle +random.triangular +random.uniform +random.vonmisesvariate +random.weibullvariate +range([start,] stop[, step]) -> list of integers +raw_input([prompt]) -> string +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copy_reg +re.error +re.escape(??) +re.findall(??) +re.finditer(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile +re.sre_parse +re.sub(??) +re.subn(??) +re.sys +re.template(??) +reduce(function, sequence[, initial]) -> value +reload(module) -> module +repr(object) -> string +repr.Repr(??) +repr.aRepr +repr.islice(iterable, [start,] stop [, step]) --> islice object +repr.repr +resource.RLIMIT_AS +resource.RLIMIT_CORE +resource.RLIMIT_CPU +resource.RLIMIT_DATA +resource.RLIMIT_FSIZE +resource.RLIMIT_MEMLOCK +resource.RLIMIT_NOFILE +resource.RLIMIT_NPROC +resource.RLIMIT_OFILE +resource.RLIMIT_RSS +resource.RLIMIT_STACK +resource.RLIM_INFINITY +resource.RUSAGE_CHILDREN +resource.RUSAGE_SELF +resource.error +resource.getpagesize +resource.getrlimit +resource.getrusage +resource.setrlimit +resource.struct_rusage +reversed(sequence) -> reverse iterator over values of the sequence +rexec.FileBase(??) +rexec.FileDelegate(??) +rexec.FileWrapper(??) +rexec.RExec(??) +rexec.RHooks(??) +rexec.RModuleImporter(??) +rexec.RModuleLoader(??) +rexec.TEMPLATE +rexec.ihooks +rexec.imp +rexec.os +rexec.sys +rexec.test(??) +rfc822.AddressList(??) +rfc822.AddrlistClass(??) +rfc822.Message(??) +rfc822.dump_address_pair(??) +rfc822.formatdate(??) +rfc822.mktime_tz(??) +rfc822.parseaddr(??) +rfc822.parsedate(??) +rfc822.parsedate_tz(??) +rfc822.quote(??) +rfc822.time +rfc822.unquote(??) +rfc822.warnpy3k(??) +rlcompleter.Completer(??) +rlcompleter.get_class_members(??) +robotparser.Entry(??) +robotparser.RobotFileParser(??) +robotparser.RuleLine(??) +robotparser.URLopener(??) +robotparser.urllib +robotparser.urlparse +round(number[, ndigits]) -> floating point number +runpy.get_loader(??) +runpy.imp +runpy.run_module(??) +runpy.sys +sched.Event(time, priority, action, argument) +sched.heapq +sched.namedtuple(??) +sched.scheduler(??) +select.EPOLLERR +select.EPOLLET +select.EPOLLHUP +select.EPOLLIN +select.EPOLLMSG +select.EPOLLONESHOT +select.EPOLLOUT +select.EPOLLPRI +select.EPOLLRDBAND +select.EPOLLRDNORM +select.EPOLLWRBAND +select.EPOLLWRNORM +select.POLLERR +select.POLLHUP +select.POLLIN +select.POLLMSG +select.POLLNVAL +select.POLLOUT +select.POLLPRI +select.POLLRDBAND +select.POLLRDNORM +select.POLLWRBAND +select.POLLWRNORM +select.epoll +select.error +select.poll +select.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +set(iterable) --> set object +setattr(object, name, value) +sets.BaseSet +sets.ImmutableSet +sets.Set +sets.generators +sets.ifilter(function or None, sequence) --> ifilter object +sets.ifilterfalse(function or None, sequence) --> ifilterfalse object +sets.warnings +sgmllib.SGMLParseError +sgmllib.SGMLParser(??) +sgmllib.TestSGMLParser(??) +sgmllib.attrfind +sgmllib.charref +sgmllib.endbracket +sgmllib.entityref +sgmllib.incomplete +sgmllib.interesting +sgmllib.markupbase +sgmllib.piclose +sgmllib.re +sgmllib.shorttag +sgmllib.shorttagopen +sgmllib.starttagopen +sgmllib.tagfind +sgmllib.test(??) +sha.blocksize +sha.digest_size +sha.digestsize +sha.new +sha.sha +sha.warnings +shelve.BsdDbShelf(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(file, protocol=0) -- Create a pickler. +shelve.Shelf(??) +shelve.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shelve.Unpickler(file) -- Create an unpickler. +shelve.UserDict +shelve.open(??) +shlex.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shlex.deque(iterable[, maxlen]) --> deque object +shlex.os +shlex.shlex(??) +shlex.split(??) +shlex.sys +shutil.Error +shutil.WindowsError +shutil.abspath(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.destinsrc(??) +shutil.fnmatch +shutil.ignore_patterns(??) +shutil.move(??) +shutil.os +shutil.rmtree(??) +shutil.stat +shutil.sys +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCLD +signal.SIGCONT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPOLL +signal.SIGPROF +signal.SIGPWR +signal.SIGQUIT +signal.SIGRTMAX +signal.SIGRTMIN +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_DFL +signal.SIG_IGN +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getitimer(which) +signal.getsignal(sig) -> action +signal.pause() +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(which, seconds[, interval]) +signal.siginterrupt(sig, flag) -> None +signal.signal(sig, action) -> action +site.ENABLE_USER_SITE +site.PREFIXES +site.USER_BASE +site.USER_SITE +site.abs__file__(??) +site.addbuilddir(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.aliasmbcs(??) +site.check_enableusersite(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.main(??) +site.makepath(??) +site.os +site.removeduppaths(??) +site.setBEGINLIBPATH(??) +site.setcopyright(??) +site.setencoding(??) +site.sethelper(??) +site.setquit(??) +site.sys +slice([start,] stop[, step]) +smtpd.COMMASPACE +smtpd.DEBUGSTREAM +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat +smtpd.asyncore +smtpd.errno +smtpd.getopt +smtpd.os +smtpd.parseargs(??) +smtpd.program +smtpd.socket +smtpd.sys +smtpd.time +smtpd.usage(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError +smtplib.SMTPConnectError +smtplib.SMTPDataError +smtplib.SMTPException +smtplib.SMTPHeloError +smtplib.SMTPRecipientsRefused +smtplib.SMTPResponseException +smtplib.SMTPSenderRefused +smtplib.SMTPServerDisconnected +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.SSLFakeFile(??) +smtplib.base64 +smtplib.email +smtplib.encode_base64(??) +smtplib.hmac +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re +smtplib.socket +smtplib.ssl +smtplib.stderr +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK +socket.AF_ASH +socket.AF_ATMPVC +socket.AF_ATMSVC +socket.AF_AX25 +socket.AF_BRIDGE +socket.AF_DECnet +socket.AF_ECONET +socket.AF_INET +socket.AF_INET6 +socket.AF_IPX +socket.AF_IRDA +socket.AF_KEY +socket.AF_NETBEUI +socket.AF_NETLINK +socket.AF_NETROM +socket.AF_PACKET +socket.AF_PPPOX +socket.AF_ROSE +socket.AF_ROUTE +socket.AF_SECURITY +socket.AF_SNA +socket.AF_TIPC +socket.AF_UNIX +socket.AF_UNSPEC +socket.AF_WANPIPE +socket.AF_X25 +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.CAPI +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GRE +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV6 +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NETLINK_DNRTMSG +socket.NETLINK_FIREWALL +socket.NETLINK_IP6_FW +socket.NETLINK_NFLOG +socket.NETLINK_ROUTE +socket.NETLINK_USERSOCK +socket.NETLINK_XFRM +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PACKET_BROADCAST +socket.PACKET_FASTROUTE +socket.PACKET_HOST +socket.PACKET_LOOPBACK +socket.PACKET_MULTICAST +socket.PACKET_OTHERHOST +socket.PACKET_OUTGOING +socket.PF_PACKET +socket.RAND_add(string, entropy) +socket.RAND_egd(path) -> bytes +socket.RAND_status() -> 0 or 1 +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM +socket.SOCK_RAW +socket.SOCK_RDM +socket.SOCK_SEQPACKET +socket.SOCK_STREAM +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_TIPC +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SSL_ERROR_EOF +socket.SSL_ERROR_INVALID_ERROR_CODE +socket.SSL_ERROR_SSL +socket.SSL_ERROR_SYSCALL +socket.SSL_ERROR_WANT_CONNECT +socket.SSL_ERROR_WANT_READ +socket.SSL_ERROR_WANT_WRITE +socket.SSL_ERROR_WANT_X509_LOOKUP +socket.SSL_ERROR_ZERO_RETURN +socket.SocketType +socket.StringIO([s]) -- Return a StringIO-like stream for reading or writing +socket.TCP_CORK +socket.TCP_DEFER_ACCEPT +socket.TCP_INFO +socket.TCP_KEEPCNT +socket.TCP_KEEPIDLE +socket.TCP_KEEPINTVL +socket.TCP_LINGER2 +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_QUICKACK +socket.TCP_SYNCNT +socket.TCP_WINDOW_CLAMP +socket.TIPC_ADDR_ID +socket.TIPC_ADDR_NAME +socket.TIPC_ADDR_NAMESEQ +socket.TIPC_CFG_SRV +socket.TIPC_CLUSTER_SCOPE +socket.TIPC_CONN_TIMEOUT +socket.TIPC_CRITICAL_IMPORTANCE +socket.TIPC_DEST_DROPPABLE +socket.TIPC_HIGH_IMPORTANCE +socket.TIPC_IMPORTANCE +socket.TIPC_LOW_IMPORTANCE +socket.TIPC_MEDIUM_IMPORTANCE +socket.TIPC_NODE_SCOPE +socket.TIPC_PUBLISHED +socket.TIPC_SRC_DROPPABLE +socket.TIPC_SUBSCR_TIMEOUT +socket.TIPC_SUB_CANCEL +socket.TIPC_SUB_PORTS +socket.TIPC_SUB_SERVICE +socket.TIPC_TOP_SRV +socket.TIPC_WAIT_FOREVER +socket.TIPC_WITHDRAWN +socket.TIPC_ZONE_SCOPE +socket.create_connection(??) +socket.error +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror +socket.getaddrinfo(host, port [, family, socktype, proto, flags]) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6 +socket.herror +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.inet_aton(string) -> packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os +socket.setdefaulttimeout(timeout) +socket.socket([family[, type[, proto]]]) -> socket object +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.ssl(??) +socket.sslerror +socket.sys +socket.timeout +socket.warnings +sorted(iterable, cmp=None, key=None, reverse=False) --> new sorted list +spwd.getspall() -> list_of_entries +spwd.getspnam(name) -> (sp_namp, sp_pwdp, sp_lstchg, sp_min, sp_max, +spwd.struct_spwd +sqlite3.Binary +sqlite3.Cache +sqlite3.Connection +sqlite3.Cursor +sqlite3.DataError +sqlite3.DatabaseError +sqlite3.Date +sqlite3.DateFromTicks(??) +sqlite3.Error +sqlite3.IntegrityError +sqlite3.InterfaceError +sqlite3.InternalError +sqlite3.NotSupportedError +sqlite3.OperationalError +sqlite3.OptimizedUnicode +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol +sqlite3.ProgrammingError +sqlite3.Row +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement +sqlite3.Time +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp +sqlite3.TimestampFromTicks(??) +sqlite3.Warning +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters +sqlite3.apilevel +sqlite3.complete_statement(sql) +sqlite3.connect(database[, timeout, isolation_level, detect_types, factory]) +sqlite3.converters +sqlite3.datetime +sqlite3.dbapi2 +sqlite3.dbapi2.Binary +sqlite3.dbapi2.Cache +sqlite3.dbapi2.Connection +sqlite3.dbapi2.Cursor +sqlite3.dbapi2.DataError +sqlite3.dbapi2.DatabaseError +sqlite3.dbapi2.Date +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error +sqlite3.dbapi2.IntegrityError +sqlite3.dbapi2.InterfaceError +sqlite3.dbapi2.InternalError +sqlite3.dbapi2.NotSupportedError +sqlite3.dbapi2.OperationalError +sqlite3.dbapi2.OptimizedUnicode +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol +sqlite3.dbapi2.ProgrammingError +sqlite3.dbapi2.Row +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement +sqlite3.dbapi2.Time +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(database[, timeout, isolation_level, detect_types, factory]) +sqlite3.dbapi2.converters +sqlite3.dbapi2.datetime +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info +sqlite3.dbapi2.x +sqlite3.dump +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info +sqlite3.threadsafety +sqlite3.time +sqlite3.version +sqlite3.version_info +sqlite3.x +sre.DOTALL +sre.I +sre.IGNORECASE +sre.L +sre.LOCALE +sre.M +sre.MULTILINE +sre.S +sre.U +sre.UNICODE +sre.VERBOSE +sre.X +sre.compile(??) +sre.error +sre.escape(??) +sre.findall(??) +sre.finditer(??) +sre.match(??) +sre.purge(??) +sre.search(??) +sre.split(??) +sre.sub(??) +sre.subn(??) +sre.template(??) +sre.warnings +sre_compile.ANY +sre_compile.ANY_ALL +sre_compile.ASSERT +sre_compile.ASSERT_NOT +sre_compile.AT +sre_compile.ATCODES +sre_compile.AT_BEGINNING +sre_compile.AT_BEGINNING_LINE +sre_compile.AT_BEGINNING_STRING +sre_compile.AT_BOUNDARY +sre_compile.AT_END +sre_compile.AT_END_LINE +sre_compile.AT_END_STRING +sre_compile.AT_LOCALE +sre_compile.AT_LOC_BOUNDARY +sre_compile.AT_LOC_NON_BOUNDARY +sre_compile.AT_MULTILINE +sre_compile.AT_NON_BOUNDARY +sre_compile.AT_UNICODE +sre_compile.AT_UNI_BOUNDARY +sre_compile.AT_UNI_NON_BOUNDARY +sre_compile.BIGCHARSET +sre_compile.BRANCH +sre_compile.CALL +sre_compile.CATEGORY +sre_compile.CATEGORY_DIGIT +sre_compile.CATEGORY_LINEBREAK +sre_compile.CATEGORY_LOC_NOT_WORD +sre_compile.CATEGORY_LOC_WORD +sre_compile.CATEGORY_NOT_DIGIT +sre_compile.CATEGORY_NOT_LINEBREAK +sre_compile.CATEGORY_NOT_SPACE +sre_compile.CATEGORY_NOT_WORD +sre_compile.CATEGORY_SPACE +sre_compile.CATEGORY_UNI_DIGIT +sre_compile.CATEGORY_UNI_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_DIGIT +sre_compile.CATEGORY_UNI_NOT_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_SPACE +sre_compile.CATEGORY_UNI_NOT_WORD +sre_compile.CATEGORY_UNI_SPACE +sre_compile.CATEGORY_UNI_WORD +sre_compile.CATEGORY_WORD +sre_compile.CHARSET +sre_compile.CHCODES +sre_compile.CH_LOCALE +sre_compile.CH_UNICODE +sre_compile.FAILURE +sre_compile.GROUPREF +sre_compile.GROUPREF_EXISTS +sre_compile.GROUPREF_IGNORE +sre_compile.IN +sre_compile.INFO +sre_compile.IN_IGNORE +sre_compile.JUMP +sre_compile.LITERAL +sre_compile.LITERAL_IGNORE +sre_compile.MAGIC +sre_compile.MARK +sre_compile.MAXCODE +sre_compile.MAXREPEAT +sre_compile.MAX_REPEAT +sre_compile.MAX_UNTIL +sre_compile.MIN_REPEAT +sre_compile.MIN_REPEAT_ONE +sre_compile.MIN_UNTIL +sre_compile.NEGATE +sre_compile.NOT_LITERAL +sre_compile.NOT_LITERAL_IGNORE +sre_compile.OPCODES +sre_compile.OP_IGNORE +sre_compile.RANGE +sre_compile.REPEAT +sre_compile.REPEAT_ONE +sre_compile.SRE_FLAG_DEBUG +sre_compile.SRE_FLAG_DOTALL +sre_compile.SRE_FLAG_IGNORECASE +sre_compile.SRE_FLAG_LOCALE +sre_compile.SRE_FLAG_MULTILINE +sre_compile.SRE_FLAG_TEMPLATE +sre_compile.SRE_FLAG_UNICODE +sre_compile.SRE_FLAG_VERBOSE +sre_compile.SRE_INFO_CHARSET +sre_compile.SRE_INFO_LITERAL +sre_compile.SRE_INFO_PREFIX +sre_compile.STRING_TYPES +sre_compile.SUBPATTERN +sre_compile.SUCCESS +sre_compile.compile(??) +sre_compile.error +sre_compile.isstring(??) +sre_compile.makedict(??) +sre_compile.set(??) +sre_compile.sre_parse +sre_compile.sys +sre_constants.ANY +sre_constants.ANY_ALL +sre_constants.ASSERT +sre_constants.ASSERT_NOT +sre_constants.AT +sre_constants.ATCODES +sre_constants.AT_BEGINNING +sre_constants.AT_BEGINNING_LINE +sre_constants.AT_BEGINNING_STRING +sre_constants.AT_BOUNDARY +sre_constants.AT_END +sre_constants.AT_END_LINE +sre_constants.AT_END_STRING +sre_constants.AT_LOCALE +sre_constants.AT_LOC_BOUNDARY +sre_constants.AT_LOC_NON_BOUNDARY +sre_constants.AT_MULTILINE +sre_constants.AT_NON_BOUNDARY +sre_constants.AT_UNICODE +sre_constants.AT_UNI_BOUNDARY +sre_constants.AT_UNI_NON_BOUNDARY +sre_constants.BIGCHARSET +sre_constants.BRANCH +sre_constants.CALL +sre_constants.CATEGORY +sre_constants.CATEGORY_DIGIT +sre_constants.CATEGORY_LINEBREAK +sre_constants.CATEGORY_LOC_NOT_WORD +sre_constants.CATEGORY_LOC_WORD +sre_constants.CATEGORY_NOT_DIGIT +sre_constants.CATEGORY_NOT_LINEBREAK +sre_constants.CATEGORY_NOT_SPACE +sre_constants.CATEGORY_NOT_WORD +sre_constants.CATEGORY_SPACE +sre_constants.CATEGORY_UNI_DIGIT +sre_constants.CATEGORY_UNI_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_DIGIT +sre_constants.CATEGORY_UNI_NOT_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_SPACE +sre_constants.CATEGORY_UNI_NOT_WORD +sre_constants.CATEGORY_UNI_SPACE +sre_constants.CATEGORY_UNI_WORD +sre_constants.CATEGORY_WORD +sre_constants.CHARSET +sre_constants.CHCODES +sre_constants.CH_LOCALE +sre_constants.CH_UNICODE +sre_constants.FAILURE +sre_constants.GROUPREF +sre_constants.GROUPREF_EXISTS +sre_constants.GROUPREF_IGNORE +sre_constants.IN +sre_constants.INFO +sre_constants.IN_IGNORE +sre_constants.JUMP +sre_constants.LITERAL +sre_constants.LITERAL_IGNORE +sre_constants.MAGIC +sre_constants.MARK +sre_constants.MAXREPEAT +sre_constants.MAX_REPEAT +sre_constants.MAX_UNTIL +sre_constants.MIN_REPEAT +sre_constants.MIN_REPEAT_ONE +sre_constants.MIN_UNTIL +sre_constants.NEGATE +sre_constants.NOT_LITERAL +sre_constants.NOT_LITERAL_IGNORE +sre_constants.OPCODES +sre_constants.OP_IGNORE +sre_constants.RANGE +sre_constants.REPEAT +sre_constants.REPEAT_ONE +sre_constants.SRE_FLAG_DEBUG +sre_constants.SRE_FLAG_DOTALL +sre_constants.SRE_FLAG_IGNORECASE +sre_constants.SRE_FLAG_LOCALE +sre_constants.SRE_FLAG_MULTILINE +sre_constants.SRE_FLAG_TEMPLATE +sre_constants.SRE_FLAG_UNICODE +sre_constants.SRE_FLAG_VERBOSE +sre_constants.SRE_INFO_CHARSET +sre_constants.SRE_INFO_LITERAL +sre_constants.SRE_INFO_PREFIX +sre_constants.SUBPATTERN +sre_constants.SUCCESS +sre_constants.error +sre_constants.makedict(??) +sre_parse.ANY +sre_parse.ANY_ALL +sre_parse.ASSERT +sre_parse.ASSERT_NOT +sre_parse.AT +sre_parse.ATCODES +sre_parse.AT_BEGINNING +sre_parse.AT_BEGINNING_LINE +sre_parse.AT_BEGINNING_STRING +sre_parse.AT_BOUNDARY +sre_parse.AT_END +sre_parse.AT_END_LINE +sre_parse.AT_END_STRING +sre_parse.AT_LOCALE +sre_parse.AT_LOC_BOUNDARY +sre_parse.AT_LOC_NON_BOUNDARY +sre_parse.AT_MULTILINE +sre_parse.AT_NON_BOUNDARY +sre_parse.AT_UNICODE +sre_parse.AT_UNI_BOUNDARY +sre_parse.AT_UNI_NON_BOUNDARY +sre_parse.BIGCHARSET +sre_parse.BRANCH +sre_parse.CALL +sre_parse.CATEGORIES +sre_parse.CATEGORY +sre_parse.CATEGORY_DIGIT +sre_parse.CATEGORY_LINEBREAK +sre_parse.CATEGORY_LOC_NOT_WORD +sre_parse.CATEGORY_LOC_WORD +sre_parse.CATEGORY_NOT_DIGIT +sre_parse.CATEGORY_NOT_LINEBREAK +sre_parse.CATEGORY_NOT_SPACE +sre_parse.CATEGORY_NOT_WORD +sre_parse.CATEGORY_SPACE +sre_parse.CATEGORY_UNI_DIGIT +sre_parse.CATEGORY_UNI_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_DIGIT +sre_parse.CATEGORY_UNI_NOT_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_SPACE +sre_parse.CATEGORY_UNI_NOT_WORD +sre_parse.CATEGORY_UNI_SPACE +sre_parse.CATEGORY_UNI_WORD +sre_parse.CATEGORY_WORD +sre_parse.CHARSET +sre_parse.CHCODES +sre_parse.CH_LOCALE +sre_parse.CH_UNICODE +sre_parse.DIGITS +sre_parse.ESCAPES +sre_parse.FAILURE +sre_parse.FLAGS +sre_parse.GROUPREF +sre_parse.GROUPREF_EXISTS +sre_parse.GROUPREF_IGNORE +sre_parse.HEXDIGITS +sre_parse.IN +sre_parse.INFO +sre_parse.IN_IGNORE +sre_parse.JUMP +sre_parse.LITERAL +sre_parse.LITERAL_IGNORE +sre_parse.MAGIC +sre_parse.MARK +sre_parse.MAXREPEAT +sre_parse.MAX_REPEAT +sre_parse.MAX_UNTIL +sre_parse.MIN_REPEAT +sre_parse.MIN_REPEAT_ONE +sre_parse.MIN_UNTIL +sre_parse.NEGATE +sre_parse.NOT_LITERAL +sre_parse.NOT_LITERAL_IGNORE +sre_parse.OCTDIGITS +sre_parse.OPCODES +sre_parse.OP_IGNORE +sre_parse.Pattern(??) +sre_parse.RANGE +sre_parse.REPEAT +sre_parse.REPEAT_CHARS +sre_parse.REPEAT_ONE +sre_parse.SPECIAL_CHARS +sre_parse.SRE_FLAG_DEBUG +sre_parse.SRE_FLAG_DOTALL +sre_parse.SRE_FLAG_IGNORECASE +sre_parse.SRE_FLAG_LOCALE +sre_parse.SRE_FLAG_MULTILINE +sre_parse.SRE_FLAG_TEMPLATE +sre_parse.SRE_FLAG_UNICODE +sre_parse.SRE_FLAG_VERBOSE +sre_parse.SRE_INFO_CHARSET +sre_parse.SRE_INFO_LITERAL +sre_parse.SRE_INFO_PREFIX +sre_parse.SUBPATTERN +sre_parse.SUCCESS +sre_parse.SubPattern(??) +sre_parse.Tokenizer(??) +sre_parse.WHITESPACE +sre_parse.error +sre_parse.expand_template(??) +sre_parse.isdigit(??) +sre_parse.isident(??) +sre_parse.isname(??) +sre_parse.makedict(??) +sre_parse.parse(??) +sre_parse.parse_template(??) +sre_parse.set(??) +sre_parse.sys +ssl.CERT_NONE +ssl.CERT_OPTIONAL +ssl.CERT_REQUIRED +ssl.DER_cert_to_PEM_cert(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv2 +ssl.PROTOCOL_SSLv23 +ssl.PROTOCOL_SSLv3 +ssl.PROTOCOL_TLSv1 +ssl.RAND_add(string, entropy) +ssl.RAND_egd(path) -> bytes +ssl.RAND_status() -> 0 or 1 +ssl.SSLError +ssl.SSLSocket +ssl.SSL_ERROR_EOF +ssl.SSL_ERROR_INVALID_ERROR_CODE +ssl.SSL_ERROR_SSL +ssl.SSL_ERROR_SYSCALL +ssl.SSL_ERROR_WANT_CONNECT +ssl.SSL_ERROR_WANT_READ +ssl.SSL_ERROR_WANT_WRITE +ssl.SSL_ERROR_WANT_X509_LOOKUP +ssl.SSL_ERROR_ZERO_RETURN +ssl.base64 +ssl.cert_time_to_seconds(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.socket([family[, type[, proto]]]) -> socket object +ssl.sslwrap_simple(??) +ssl.textwrap +ssl.wrap_socket(??) +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFREG +stat.S_IFSOCK +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(??) +stat.S_ISCHR(??) +stat.S_ISDIR(??) +stat.S_ISFIFO(??) +stat.S_ISGID +stat.S_ISLNK(??) +stat.S_ISREG(??) +stat.S_ISSOCK(??) +stat.S_ISUID +stat.S_ISVTX +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +staticmethod(function) -> method +statvfs.F_BAVAIL +statvfs.F_BFREE +statvfs.F_BLOCKS +statvfs.F_BSIZE +statvfs.F_FAVAIL +statvfs.F_FFREE +statvfs.F_FILES +statvfs.F_FLAG +statvfs.F_FRSIZE +statvfs.F_NAMEMAX +str(object) -> string +string.Formatter +string.Template +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.atof(s) -> float +string.atof_error +string.atoi(s [,base]) -> int +string.atoi_error +string.atol(s [,base]) -> long +string.atol_error +string.capitalize(s) -> string +string.capwords(s, [sep]) -> string +string.center(s, width[, fillchar]) -> string +string.count(s, sub[, start[,end]]) -> int +string.digits +string.expandtabs(s [,tabsize]) -> string +string.find(s, sub [,start [,end]]) -> in +string.hexdigits +string.index(s, sub [,start [,end]]) -> int +string.index_error +string.join(list [,sep]) -> string +string.joinfields(??) +string.letters +string.ljust(s, width[, fillchar]) -> string +string.lower(s) -> string +string.lowercase +string.lstrip(s [,chars]) -> string +string.maketrans(frm, to) -> string +string.octdigits +string.printable +string.punctuation +string.replace (str, old, new[, maxsplit]) -> string +string.rfind(s, sub [,start [,end]]) -> int +string.rindex(s, sub [,start [,end]]) -> int +string.rjust(s, width[, fillchar]) -> string +string.rsplit(s [,sep [,maxsplit]]) -> list of strings +string.rstrip(s [,chars]) -> string +string.split(s [,sep [,maxsplit]]) -> list of strings +string.splitfields(??) +string.strip(s [,chars]) -> string +string.swapcase(s) -> string +string.translate(s,table [,deletions]) -> string +string.upper(s) -> string +string.uppercase +string.whitespace +string.zfill(x, width) -> string +stringold.atof(s) -> float +stringold.atof_error +stringold.atoi(s [,base]) -> int +stringold.atoi_error +stringold.atol(s [,base]) -> long +stringold.atol_error +stringold.capitalize(s) -> string +stringold.capwords(s, [sep]) -> string +stringold.center(s, width) -> string +stringold.count(s, sub[, start[,end]]) -> int +stringold.digits +stringold.expandtabs(s [,tabsize]) -> string +stringold.find(s, sub [,start [,end]]) -> in +stringold.hexdigits +stringold.index(s, sub [,start [,end]]) -> int +stringold.index_error +stringold.join(list [,sep]) -> string +stringold.joinfields(??) +stringold.letters +stringold.ljust(s, width) -> string +stringold.lower(s) -> string +stringold.lowercase +stringold.lstrip(s) -> string +stringold.maketrans(frm, to) -> string +stringold.octdigits +stringold.replace (str, old, new[, maxsplit]) -> string +stringold.rfind(s, sub [,start [,end]]) -> int +stringold.rindex(s, sub [,start [,end]]) -> int +stringold.rjust(s, width) -> string +stringold.rstrip(s) -> string +stringold.split(str [,sep [,maxsplit]]) -> list of strings +stringold.splitfields(??) +stringold.strip(s) -> string +stringold.swapcase(s) -> string +stringold.translate(s,table [,deletechars]) -> string +stringold.upper(s) -> string +stringold.uppercase +stringold.whitespace +stringold.zfill(x, width) -> string +stringprep.b1_set +stringprep.b3_exceptions +stringprep.c22_specials +stringprep.c6_set +stringprep.c7_set +stringprep.c8_set +stringprep.c9_set +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata +strop.atof(s) -> float +strop.atoi(s [,base]) -> int +strop.atol(s [,base]) -> long +strop.capitalize(s) -> string +strop.count(s, sub[, start[, end]]) -> int +strop.expandtabs(string, [tabsize]) -> string +strop.find(s, sub [,start [,end]]) -> in +strop.join(list [,sep]) -> string +strop.joinfields +strop.lower(s) -> string +strop.lowercase +strop.lstrip(s) -> string +strop.maketrans(frm, to) -> string +strop.replace (str, old, new[, maxsplit]) -> string +strop.rfind(s, sub [,start [,end]]) -> int +strop.rstrip(s) -> string +strop.split(s [,sep [,maxsplit]]) -> list of strings +strop.splitfields +strop.strip(s) -> string +strop.swapcase(s) -> string +strop.translate(s,table [,deletechars]) -> string +strop.upper(s) -> string +strop.uppercase +strop.whitespace +struct.Struct +struct.calcsize +struct.error +struct.pack +struct.pack_into +struct.unpack +struct.unpack_from +subprocess.CalledProcessError +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen +subprocess.STDOUT +subprocess.call(??) +subprocess.check_call(??) +subprocess.errno +subprocess.fcntl +subprocess.gc +subprocess.list2cmdline(??) +subprocess.mswindows +subprocess.os +subprocess.pickle +subprocess.select +subprocess.signal +subprocess.sys +subprocess.traceback +subprocess.types +sum(sequence[, start]) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error +sunau.open(??) +sunau.openfp(??) +sunaudio.MAGIC +sunaudio.error +sunaudio.get_long_be(??) +sunaudio.gethdr(??) +sunaudio.printhdr(??) +super(type) -> unbound super object +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.exec_stmt +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.fpdef +symbol.fplist +symbol.funcdef +symbol.gen_for +symbol.gen_if +symbol.gen_iter +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.list_for +symbol.list_if +symbol.list_iter +symbol.listmaker +symbol.main(??) +symbol.not_test +symbol.old_lambdef +symbol.old_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.print_stmt +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name +symbol.term +symbol.test +symbol.testlist +symbol.testlist1 +symbol.testlist_gexp +symbol.testlist_safe +symbol.trailer +symbol.try_stmt +symbol.varargslist +symbol.while_stmt +symbol.with_stmt +symbol.with_var +symbol.xor_expr +symbol.yield_expr +symbol.yield_stmt +symtable.Class +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.OPT_BARE_EXEC +symtable.OPT_EXEC +symtable.OPT_IMPORT_STAR +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol +symtable.SymbolTable +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.warnings +symtable.weakref +sys.api_version +sys.argv +sys.builtin_module_names +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode +sys.exc_clear() -> None +sys.exc_info() -> (type, value, traceback) +sys.exc_type +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags +sys.float_info +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.gettrace() +sys.hexversion +sys.maxint +sys.maxsize +sys.maxunicode +sys.meta_path +sys.modules +sys.path +sys.path_hooks +sys.path_importer_cache +sys.platform +sys.prefix +sys.py3kwarning +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.settrace(function) +sys.stderr +sys.stdin +sys.stdout +sys.subversion +sys.version +sys.version_info +sys.warnoptions +syslog.LOG_ALERT +syslog.LOG_AUTH +syslog.LOG_CONS +syslog.LOG_CRIT +syslog.LOG_CRON +syslog.LOG_DAEMON +syslog.LOG_DEBUG +syslog.LOG_EMERG +syslog.LOG_ERR +syslog.LOG_INFO +syslog.LOG_KERN +syslog.LOG_LOCAL0 +syslog.LOG_LOCAL1 +syslog.LOG_LOCAL2 +syslog.LOG_LOCAL3 +syslog.LOG_LOCAL4 +syslog.LOG_LOCAL5 +syslog.LOG_LOCAL6 +syslog.LOG_LOCAL7 +syslog.LOG_LPR +syslog.LOG_MAIL +syslog.LOG_MASK +syslog.LOG_NDELAY +syslog.LOG_NEWS +syslog.LOG_NOTICE +syslog.LOG_NOWAIT +syslog.LOG_PERROR +syslog.LOG_PID +syslog.LOG_SYSLOG +syslog.LOG_UPTO +syslog.LOG_USER +syslog.LOG_UUCP +syslog.LOG_WARNING +syslog.closelog +syslog.openlog +syslog.setlogmask +syslog.syslog +tabnanny.NannyNag +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt +tabnanny.main(??) +tabnanny.os +tabnanny.process_tokens(??) +tabnanny.sys +tabnanny.tokenize +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.ExFileObject +tarfile.ExtractError +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES +tarfile.HeaderError +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS +tarfile.PAX_FORMAT +tarfile.PAX_NUMBER_FIELDS +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES +tarfile.ReadError +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES +tarfile.SYMTYPE +tarfile.S_IFBLK +tarfile.S_IFCHR +tarfile.S_IFDIR +tarfile.S_IFIFO +tarfile.S_IFLNK +tarfile.S_IFREG +tarfile.StreamError +tarfile.TAR_GZIPPED +tarfile.TAR_PLAIN +tarfile.TGEXEC +tarfile.TGREAD +tarfile.TGWRITE +tarfile.TOEXEC +tarfile.TOREAD +tarfile.TOWRITE +tarfile.TSGID +tarfile.TSUID +tarfile.TSVTX +tarfile.TUEXEC +tarfile.TUREAD +tarfile.TUWRITE +tarfile.TarError +tarfile.TarFile +tarfile.TarFileCompat(??) +tarfile.TarInfo +tarfile.TarIter(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open +tarfile.calc_chksums(??) +tarfile.copy +tarfile.copyfileobj(??) +tarfile.errno +tarfile.filemode(??) +tarfile.filemode_table +tarfile.grp +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.normpath(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open +tarfile.operator +tarfile.os +tarfile.pwd +tarfile.re +tarfile.shutil +tarfile.stat +tarfile.stn(??) +tarfile.struct +tarfile.sys +tarfile.time +tarfile.uts(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.select +telnetlib.socket +telnetlib.sys +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir +tempfile.template +termios.B0 +termios.B110 +termios.B115200 +termios.B1200 +termios.B134 +termios.B150 +termios.B1800 +termios.B19200 +termios.B200 +termios.B230400 +termios.B2400 +termios.B300 +termios.B38400 +termios.B460800 +termios.B4800 +termios.B50 +termios.B57600 +termios.B600 +termios.B75 +termios.B9600 +termios.BRKINT +termios.BS0 +termios.BS1 +termios.BSDLY +termios.CBAUD +termios.CBAUDEX +termios.CDSUSP +termios.CEOF +termios.CEOL +termios.CEOT +termios.CERASE +termios.CFLUSH +termios.CIBAUD +termios.CINTR +termios.CKILL +termios.CLNEXT +termios.CLOCAL +termios.CQUIT +termios.CR0 +termios.CR1 +termios.CR2 +termios.CR3 +termios.CRDLY +termios.CREAD +termios.CRPRNT +termios.CRTSCTS +termios.CS5 +termios.CS6 +termios.CS7 +termios.CS8 +termios.CSIZE +termios.CSTART +termios.CSTOP +termios.CSTOPB +termios.CSUSP +termios.CWERASE +termios.ECHO +termios.ECHOCTL +termios.ECHOE +termios.ECHOK +termios.ECHOKE +termios.ECHONL +termios.ECHOPRT +termios.EXTA +termios.EXTB +termios.FF0 +termios.FF1 +termios.FFDLY +termios.FIOASYNC +termios.FIOCLEX +termios.FIONBIO +termios.FIONCLEX +termios.FIONREAD +termios.FLUSHO +termios.HUPCL +termios.ICANON +termios.ICRNL +termios.IEXTEN +termios.IGNBRK +termios.IGNCR +termios.IGNPAR +termios.IMAXBEL +termios.INLCR +termios.INPCK +termios.IOCSIZE_MASK +termios.IOCSIZE_SHIFT +termios.ISIG +termios.ISTRIP +termios.IUCLC +termios.IXANY +termios.IXOFF +termios.IXON +termios.NCC +termios.NCCS +termios.NL0 +termios.NL1 +termios.NLDLY +termios.NOFLSH +termios.N_MOUSE +termios.N_PPP +termios.N_SLIP +termios.N_STRIP +termios.N_TTY +termios.OCRNL +termios.OFDEL +termios.OFILL +termios.OLCUC +termios.ONLCR +termios.ONLRET +termios.ONOCR +termios.OPOST +termios.PARENB +termios.PARMRK +termios.PARODD +termios.PENDIN +termios.TAB0 +termios.TAB1 +termios.TAB2 +termios.TAB3 +termios.TABDLY +termios.TCFLSH +termios.TCGETA +termios.TCGETS +termios.TCIFLUSH +termios.TCIOFF +termios.TCIOFLUSH +termios.TCION +termios.TCOFLUSH +termios.TCOOFF +termios.TCOON +termios.TCSADRAIN +termios.TCSAFLUSH +termios.TCSANOW +termios.TCSBRK +termios.TCSBRKP +termios.TCSETA +termios.TCSETAF +termios.TCSETAW +termios.TCSETS +termios.TCSETSF +termios.TCSETSW +termios.TCXONC +termios.TIOCCONS +termios.TIOCEXCL +termios.TIOCGETD +termios.TIOCGICOUNT +termios.TIOCGLCKTRMIOS +termios.TIOCGPGRP +termios.TIOCGSERIAL +termios.TIOCGSOFTCAR +termios.TIOCGWINSZ +termios.TIOCINQ +termios.TIOCLINUX +termios.TIOCMBIC +termios.TIOCMBIS +termios.TIOCMGET +termios.TIOCMIWAIT +termios.TIOCMSET +termios.TIOCM_CAR +termios.TIOCM_CD +termios.TIOCM_CTS +termios.TIOCM_DSR +termios.TIOCM_DTR +termios.TIOCM_LE +termios.TIOCM_RI +termios.TIOCM_RNG +termios.TIOCM_RTS +termios.TIOCM_SR +termios.TIOCM_ST +termios.TIOCNOTTY +termios.TIOCNXCL +termios.TIOCOUTQ +termios.TIOCPKT +termios.TIOCPKT_DATA +termios.TIOCPKT_DOSTOP +termios.TIOCPKT_FLUSHREAD +termios.TIOCPKT_FLUSHWRITE +termios.TIOCPKT_NOSTOP +termios.TIOCPKT_START +termios.TIOCPKT_STOP +termios.TIOCSCTTY +termios.TIOCSERCONFIG +termios.TIOCSERGETLSR +termios.TIOCSERGETMULTI +termios.TIOCSERGSTRUCT +termios.TIOCSERGWILD +termios.TIOCSERSETMULTI +termios.TIOCSERSWILD +termios.TIOCSER_TEMT +termios.TIOCSETD +termios.TIOCSLCKTRMIOS +termios.TIOCSPGRP +termios.TIOCSSERIAL +termios.TIOCSSOFTCAR +termios.TIOCSTI +termios.TIOCSWINSZ +termios.TOSTOP +termios.VDISCARD +termios.VEOF +termios.VEOL +termios.VEOL2 +termios.VERASE +termios.VINTR +termios.VKILL +termios.VLNEXT +termios.VMIN +termios.VQUIT +termios.VREPRINT +termios.VSTART +termios.VSTOP +termios.VSUSP +termios.VSWTC +termios.VSWTCH +termios.VT0 +termios.VT1 +termios.VTDLY +termios.VTIME +termios.VWERASE +termios.XCASE +termios.XTABS +termios.error +termios.tcdrain(fd) -> None +termios.tcflow(fd, action) -> None +termios.tcflush(fd, queue) -> None +termios.tcgetattr(fd) -> list_of_attrs +termios.tcsendbreak(fd, duration) -> None +termios.tcsetattr(fd, when, attributes) -> None +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.re +textwrap.string +textwrap.wrap(??) +this.c +this.d +this.i +this.s +thread.LockType +thread.allocate +thread.allocate_lock() -> lock object +thread.error +thread.exit() +thread.exit_thread +thread.get_ident() -> integer +thread.interrupt_main() +thread.stack_size([size]) -> size +thread.start_new +thread.start_new_thread(function, args[, kwargs]) +threading.BoundedSemaphore(??) +threading.Condition(??) +threading.Event(??) +threading.Lock +threading.RLock(??) +threading.Semaphore(??) +threading.Thread +threading.ThreadError +threading.Timer(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.deque(iterable[, maxlen]) --> deque object +threading.enumerate(??) +threading.local +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +threading.warnings +threading.wraps(??) +time.accept2dyear +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time +time.time() -> floating point number +time.timezone +time.tzname +time.tzset(zone) +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer +timeit.dummy_src_name +timeit.gc +timeit.itertools +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys +timeit.template +timeit.time +timeit.timeit(??) +toaiff.error +toaiff.os +toaiff.pipes +toaiff.sndhdr +toaiff.t +toaiff.table +toaiff.tempfile +toaiff.toaiff(??) +toaiff.uncompress +token.AMPER +token.AMPEREQUAL +token.AT +token.BACKQUOTE +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.main(??) +token.tok_name +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BACKQUOTE +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing +tokenize.String +tokenize.TILDE +tokenize.Token +tokenize.TokenError +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.double3prog +tokenize.endprogs +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.printtoken(??) +tokenize.pseudoprog +tokenize.re +tokenize.single3prog +tokenize.single_quoted +tokenize.string +tokenize.t +tokenize.tabsize +tokenize.tok_name +tokenize.tokenize(??) +tokenize.tokenize_loop(??) +tokenize.tokenprog +tokenize.triple_quoted +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.cPickle +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc +trace.linecache +trace.main(??) +trace.modname(??) +trace.os +trace.pickle +trace.re +trace.rx_blank +trace.sys +trace.threading +trace.time +trace.token +trace.tokenize +trace.types +trace.usage(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys +traceback.tb_lineno(??) +traceback.types +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B460800 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CBAUD +tty.CBAUDEX +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CIBAUD +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.IOCSIZE_MASK +tty.IOCSIZE_SHIFT +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IUCLC +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCC +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.N_MOUSE +tty.N_PPP +tty.N_SLIP +tty.N_STRIP +tty.N_TTY +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.OLCUC +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCFLSH +tty.TCGETA +tty.TCGETS +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSBRK +tty.TCSBRKP +tty.TCSETA +tty.TCSETAF +tty.TCSETAW +tty.TCSETS +tty.TCSETSF +tty.TCSETSW +tty.TCXONC +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGICOUNT +tty.TIOCGLCKTRMIOS +tty.TIOCGPGRP +tty.TIOCGSERIAL +tty.TIOCGSOFTCAR +tty.TIOCGWINSZ +tty.TIOCINQ +tty.TIOCLINUX +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMIWAIT +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSERCONFIG +tty.TIOCSERGETLSR +tty.TIOCSERGETMULTI +tty.TIOCSERGSTRUCT +tty.TIOCSERGWILD +tty.TIOCSERSETMULTI +tty.TIOCSERSWILD +tty.TIOCSER_TEMT +tty.TIOCSETD +tty.TIOCSLCKTRMIOS +tty.TIOCSPGRP +tty.TIOCSSERIAL +tty.TIOCSSOFTCAR +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VSWTC +tty.VSWTCH +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.XCASE +tty.XTABS +tty.error +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> an empty tuple +type(object) -> the object's type +types.BooleanType +types.BufferType +types.BuiltinFunctionType +types.BuiltinMethodType +types.ClassType +types.CodeType +types.ComplexType +types.DictProxyType +types.DictType +types.DictionaryType +types.EllipsisType +types.FileType +types.FloatType +types.FrameType +types.FunctionType +types.GeneratorType +types.GetSetDescriptorType +types.InstanceType +types.IntType +types.LambdaType +types.ListType +types.LongType +types.MemberDescriptorType +types.MethodType +types.ModuleType +types.NoneType +types.NotImplementedType +types.ObjectType +types.SliceType +types.StringType +types.StringTypes +types.TracebackType +types.TupleType +types.TypeType +types.UnboundMethodType +types.UnicodeType +types.XRangeType +unichr(i) -> Unicode character +unicode(string [, encoding[, errors]]) -> object +unicodedata.UCD +unicodedata.bidirectional(unichr) +unicodedata.category(unichr) +unicodedata.combining(unichr) +unicodedata.decimal(unichr[, default]) +unicodedata.decomposition(unichr) +unicodedata.digit(unichr[, default]) +unicodedata.east_asian_width(unichr) +unicodedata.lookup(name) +unicodedata.mirrored(unichr) +unicodedata.name(unichr[, default]) +unicodedata.normalize(form, unistr) +unicodedata.numeric(unichr[, default]) +unicodedata.ucd_3_2_0 +unicodedata.ucnhash_CAPI +unicodedata.unidata_version +unittest.FunctionTestCase +unittest.TestCase +unittest.TestLoader +unittest.TestProgram +unittest.TestResult +unittest.TestSuite +unittest.TextTestRunner +unittest.defaultTestLoader +unittest.findTestCases(??) +unittest.getTestCaseNames(??) +unittest.main +unittest.makeSuite(??) +unittest.os +unittest.sys +unittest.time +unittest.traceback +unittest.types +urllib.ContentTooShortError +urllib.FancyURLopener(??) +urllib.MAXFTPCACHE +urllib.URLopener(??) +urllib.addbase(??) +urllib.addclosehook(??) +urllib.addinfo(??) +urllib.addinfourl(??) +urllib.always_safe +urllib.basejoin(??) +urllib.ftpcache +urllib.ftperrors(??) +urllib.ftpwrapper(??) +urllib.getproxies(??) +urllib.getproxies_environment(??) +urllib.localhost(??) +urllib.main(??) +urllib.noheaders(??) +urllib.os +urllib.pathname2url(??) +urllib.proxy_bypass(??) +urllib.proxy_bypass_environment(??) +urllib.quote('abc def') -> 'abc%20def' +urllib.quote_plus(??) +urllib.reporthook(??) +urllib.socket +urllib.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.splitnport(??) +urllib.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.splitport('host:port') --> 'host', 'port'. +urllib.splitquery('/path?query') --> '/path', 'query'. +urllib.splittag('/path#tag') --> '/path', 'tag'. +urllib.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.splitvalue('attr=value') --> 'attr', 'value'. +urllib.ssl +urllib.string +urllib.sys +urllib.test(??) +urllib.test1(??) +urllib.thishost(??) +urllib.time +urllib.toBytes(u"URL") --> 'URL'. +urllib.unquote('abc%20def') -> 'abc def'. +urllib.unquote_plus(??) +urllib.unwrap('') --> 'type://host/path'. +urllib.url2pathname(??) +urllib.urlcleanup(??) +urllib.urlencode(??) +urllib.urlopen(??) +urllib.urlretrieve(??) +urllib.warnings +urllib2.AbstractBasicAuthHandler(??) +urllib2.AbstractDigestAuthHandler(??) +urllib2.AbstractHTTPHandler(??) +urllib2.BaseHandler(??) +urllib2.CacheFTPHandler(??) +urllib2.FTPHandler(??) +urllib2.FileHandler(??) +urllib2.HTTPBasicAuthHandler(??) +urllib2.HTTPCookieProcessor(??) +urllib2.HTTPDefaultErrorHandler(??) +urllib2.HTTPDigestAuthHandler(??) +urllib2.HTTPError +urllib2.HTTPErrorProcessor(??) +urllib2.HTTPHandler(??) +urllib2.HTTPPasswordMgr(??) +urllib2.HTTPPasswordMgrWithDefaultRealm(??) +urllib2.HTTPRedirectHandler(??) +urllib2.HTTPSHandler(??) +urllib2.OpenerDirector(??) +urllib2.ProxyBasicAuthHandler(??) +urllib2.ProxyDigestAuthHandler(??) +urllib2.ProxyHandler(??) +urllib2.Request(??) +urllib2.StringIO([s]) -- Return a StringIO-like stream for reading or writing +urllib2.URLError +urllib2.UnknownHandler(??) +urllib2.addinfourl(??) +urllib2.base64 +urllib2.bisect +urllib2.build_opener(??) +urllib2.ftpwrapper(??) +urllib2.getproxies(??) +urllib2.hashlib +urllib2.httplib +urllib2.install_opener(??) +urllib2.localhost(??) +urllib2.mimetools +urllib2.os +urllib2.parse_http_list(??) +urllib2.parse_keqv_list(??) +urllib2.posixpath +urllib2.quote('abc def') -> 'abc%20def' +urllib2.random +urllib2.randombytes(??) +urllib2.re +urllib2.request_host(??) +urllib2.socket +urllib2.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib2.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib2.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib2.splitport('host:port') --> 'host', 'port'. +urllib2.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib2.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib2.splitvalue('attr=value') --> 'attr', 'value'. +urllib2.sys +urllib2.time +urllib2.unquote('abc%20def') -> 'abc def'. +urllib2.unwrap('') --> 'type://host/path'. +urllib2.url2pathname(??) +urllib2.urlopen(??) +urllib2.urlparse +urlparse.MAX_CACHE_SIZE +urlparse.ParseResult +urlparse.ResultMixin +urlparse.SplitResult +urlparse.clear_cache(??) +urlparse.namedtuple(??) +urlparse.non_hierarchical +urlparse.parse_qs(??) +urlparse.parse_qsl(??) +urlparse.scheme_chars +urlparse.test(??) +urlparse.test_input +urlparse.unquote('abc%20def') -> 'abc def'. +urlparse.urldefrag(??) +urlparse.urljoin(??) +urlparse.urlparse(??) +urlparse.urlsplit(??) +urlparse.urlunparse(??) +urlparse.urlunsplit(??) +urlparse.uses_fragment +urlparse.uses_netloc +urlparse.uses_params +urlparse.uses_query +urlparse.uses_relative +user.home +user.os +user.pythonrc +uu.Error +uu.binascii +uu.decode(??) +uu.encode(??) +uu.os +uu.sys +uu.test(??) +uuid.NAMESPACE_DNS +uuid.NAMESPACE_OID +uuid.NAMESPACE_URL +uuid.NAMESPACE_X500 +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID +uuid.ctypes +uuid.getnode(??) +uuid.lib +uuid.libname +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +warnings.WarningMessage +warnings.catch_warnings +warnings.default_action +warnings.defaultaction +warnings.filters +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.linecache +warnings.once_registry +warnings.onceregistry +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys +warnings.types +warnings.warn +warnings.warn_explicit +warnings.warnpy3k(??) +wave.Chunk(??) +wave.Error +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.big_endian +wave.open(??) +wave.openfp(??) +wave.struct +weakref.CallableProxyType +weakref.KeyedRef +weakref.ProxyType +weakref.ProxyTypes +weakref.ReferenceError +weakref.ReferenceType +weakref.UserDict +weakref.WeakKeyDictionary(??) +weakref.WeakValueDictionary(??) +weakref.getweakrefcount(object) -- return the number of weak references +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref +webbrowser.BackgroundBrowser +webbrowser.BaseBrowser +webbrowser.Elinks +webbrowser.Error +webbrowser.Galeon +webbrowser.GenericBrowser +webbrowser.Grail +webbrowser.Konqueror +webbrowser.Mozilla +webbrowser.Netscape +webbrowser.Opera +webbrowser.UnixBrowser +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex +webbrowser.stat +webbrowser.subprocess +webbrowser.sys +webbrowser.time +whichdb.dbm +whichdb.os +whichdb.struct +whichdb.sys +whichdb.whichdb(??) +wsgiref.handlers +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.StringType +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os +wsgiref.handlers.sys +wsgiref.handlers.time +wsgiref.headers +wsgiref.headers.Headers(??) +wsgiref.headers.ListType +wsgiref.headers.TupleType +wsgiref.headers.re +wsgiref.headers.tspecials +wsgiref.simple_server +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib +wsgiref.util +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.DictType +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.ListType +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.StringType +wsgiref.validate.TupleType +wsgiref.validate.WSGIWarning +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.header_re +wsgiref.validate.re +wsgiref.validate.sys +wsgiref.validate.validator(??) +wsgiref.validate.warnings +xdrlib.ConversionError +xdrlib.Error +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct +xml.dom +xml.dom.DOMException +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr +xml.dom.EMPTY_NAMESPACE +xml.dom.EMPTY_PREFIX +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr +xml.dom.InuseAttributeErr +xml.dom.InvalidAccessErr +xml.dom.InvalidCharacterErr +xml.dom.InvalidModificationErr +xml.dom.InvalidStateErr +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr +xml.dom.NoDataAllowedErr +xml.dom.NoModificationAllowedErr +xml.dom.Node(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr +xml.dom.NotSupportedErr +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg +xml.dom.domreg.EmptyNodeList +xml.dom.domreg.NodeList +xml.dom.domreg.StringTypes +xml.dom.domreg.defproperty(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered +xml.dom.domreg.well_known_implementations +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE +xml.dom.expatbuilder.EMPTY_PREFIX +xml.dom.expatbuilder.ElementInfo +xml.dom.expatbuilder.EmptyNodeList +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch +xml.dom.expatbuilder.FilterVisibilityController +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.NodeList +xml.dom.expatbuilder.ParseEscape +xml.dom.expatbuilder.Rejecter +xml.dom.expatbuilder.Skipper +xml.dom.expatbuilder.StringTypes +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.defproperty(??) +xml.dom.expatbuilder.expat +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation +xml.dom.expatbuilder.xmlbuilder +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat +xml.dom.minicompat.EmptyNodeList +xml.dom.minicompat.NodeList +xml.dom.minicompat.StringTypes +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE +xml.dom.minidom.EMPTY_PREFIX +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo +xml.dom.minidom.EmptyNodeList +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap +xml.dom.minidom.StringTypes +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml +xml.dom.pulldom +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.types +xml.dom.pulldom.xml +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy +xml.dom.xmlbuilder.xml +xml.etree.ElementInclude.ElementTree +xml.etree.ElementInclude.FatalIncludeError +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath.Path(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.re +xml.etree.ElementPath.xpath_descendant_or_self(??) +xml.etree.ElementPath.xpath_tokenizer +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLTreeBuilder(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fixtag(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re +xml.etree.ElementTree.string +xml.etree.ElementTree.sys +xml.etree.ElementTree.tostring(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element +xml.etree.cElementTree.ElementPath +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement +xml.etree.cElementTree.TreeBuilder +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser +xml.etree.cElementTree.XMLParserError +xml.etree.cElementTree.XMLTreeBuilder +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.tostring(??) +xml.parsers +xml.parsers.expat +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error +xml.parsers.expat.errors +xml.parsers.expat.expat_CAPI +xml.parsers.expat.features +xml.parsers.expat.model +xml.parsers.expat.native_encoding +xml.parsers.expat.version_info +xml.sax +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException +xml.sax.SAXNotRecognizedException +xml.sax.SAXNotSupportedException +xml.sax.SAXParseException +xml.sax.SAXReaderNotAvailable +xml.sax.default_parser_list +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException +xml.sax.expatreader.SAXNotRecognizedException +xml.sax.expatreader.SAXNotSupportedException +xml.sax.expatreader.SAXParseException +xml.sax.expatreader.SAXReaderNotAvailable +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader +xml.sax.handler +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features +xml.sax.handler.all_properties +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler +xml.sax.saxutils.os +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.types +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib +xml.sax.saxutils.urlparse +xml.sax.saxutils.xmlreader +xml.sax.xmlreader +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException +xml.sax.xmlreader.SAXNotSupportedException +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler +xmllib.Error +xmllib.TestXMLParser(??) +xmllib.XMLParser(??) +xmllib.amp +xmllib.attrfind +xmllib.attrtrans +xmllib.cdataclose +xmllib.cdataopen +xmllib.charref +xmllib.commentclose +xmllib.commentopen +xmllib.doctype +xmllib.doubledash +xmllib.endbracket +xmllib.endbracketfind +xmllib.endtagopen +xmllib.entityref +xmllib.illegal +xmllib.interesting +xmllib.ncname +xmllib.newline +xmllib.procclose +xmllib.procopen +xmllib.qname +xmllib.re +xmllib.ref +xmllib.space +xmllib.starttagend +xmllib.starttagmatch +xmllib.starttagopen +xmllib.string +xmllib.tagfind +xmllib.test(??) +xmllib.version +xmllib.xmldecl +xmllib.xmlns +xmlrpclib.APPLICATION_ERROR +xmlrpclib.Binary(??) +xmlrpclib.Boolean +xmlrpclib.BooleanType +xmlrpclib.BufferType +xmlrpclib.BuiltinFunctionType +xmlrpclib.BuiltinMethodType +xmlrpclib.ClassType +xmlrpclib.CodeType +xmlrpclib.ComplexType +xmlrpclib.DateTime(??) +xmlrpclib.DictProxyType +xmlrpclib.DictType +xmlrpclib.DictionaryType +xmlrpclib.EllipsisType +xmlrpclib.Error +xmlrpclib.ExpatParser(??) +xmlrpclib.False +xmlrpclib.FastMarshaller +xmlrpclib.FastParser +xmlrpclib.FastUnmarshaller +xmlrpclib.Fault +xmlrpclib.FileType +xmlrpclib.FloatType +xmlrpclib.FrameType +xmlrpclib.FunctionType +xmlrpclib.GeneratorType +xmlrpclib.GetSetDescriptorType +xmlrpclib.INTERNAL_ERROR +xmlrpclib.INVALID_ENCODING_CHAR +xmlrpclib.INVALID_METHOD_PARAMS +xmlrpclib.INVALID_XMLRPC +xmlrpclib.InstanceType +xmlrpclib.IntType +xmlrpclib.LambdaType +xmlrpclib.ListType +xmlrpclib.LongType +xmlrpclib.MAXINT +xmlrpclib.METHOD_NOT_FOUND +xmlrpclib.MININT +xmlrpclib.Marshaller(??) +xmlrpclib.MemberDescriptorType +xmlrpclib.MethodType +xmlrpclib.ModuleType +xmlrpclib.MultiCall(??) +xmlrpclib.MultiCallIterator(??) +xmlrpclib.NOT_WELLFORMED_ERROR +xmlrpclib.NoneType +xmlrpclib.NotImplementedType +xmlrpclib.ObjectType +xmlrpclib.PARSE_ERROR +xmlrpclib.ProtocolError +xmlrpclib.ResponseError +xmlrpclib.SERVER_ERROR +xmlrpclib.SYSTEM_ERROR +xmlrpclib.SafeTransport(??) +xmlrpclib.Server(??) +xmlrpclib.ServerProxy(??) +xmlrpclib.SgmlopParser +xmlrpclib.SliceType +xmlrpclib.SlowParser(??) +xmlrpclib.StringIO +xmlrpclib.StringType +xmlrpclib.StringTypes +xmlrpclib.TRANSPORT_ERROR +xmlrpclib.TracebackType +xmlrpclib.Transport(??) +xmlrpclib.True +xmlrpclib.TupleType +xmlrpclib.TypeType +xmlrpclib.UNSUPPORTED_ENCODING +xmlrpclib.UnboundMethodType +xmlrpclib.UnicodeType +xmlrpclib.Unmarshaller(??) +xmlrpclib.WRAPPERS +xmlrpclib.XRangeType +xmlrpclib.base64 +xmlrpclib.boolean +xmlrpclib.datetime +xmlrpclib.dumps(??) +xmlrpclib.escape(??) +xmlrpclib.expat +xmlrpclib.getparser() -> parser, unmarshaller +xmlrpclib.loads(??) +xmlrpclib.operator +xmlrpclib.re +xmlrpclib.string +xmlrpclib.time +xrange([start,] stop[, step]) -> xrange object +xxsubtype.bench +xxsubtype.spamdict +xxsubtype.spamlist +zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)] +zipfile.BadZipfile +zipfile.LargeZipFile +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo +zipfile.binascii +zipfile.cStringIO +zipfile.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zipfile.error +zipfile.is_zipfile(??) +zipfile.main(??) +zipfile.os +zipfile.shutil +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys +zipfile.time +zipfile.zlib +zipimport.ZipImportError +zipimport.zipimporter(archivepath) -> zipimporter object +zlib.DEFLATED +zlib.DEF_MEM_LEVEL +zlib.MAX_WBITS +zlib.ZLIB_VERSION +zlib.Z_BEST_COMPRESSION +zlib.Z_BEST_SPEED +zlib.Z_DEFAULT_COMPRESSION +zlib.Z_DEFAULT_STRATEGY +zlib.Z_FILTERED +zlib.Z_FINISH +zlib.Z_FULL_FLUSH +zlib.Z_HUFFMAN_ONLY +zlib.Z_NO_FLUSH +zlib.Z_SYNC_FLUSH +zlib.adler32(string[, start]) -- Compute an Adler-32 checksum of string. +zlib.compress(string[, level]) -- Returned compressed string. +zlib.compressobj([level]) -- Return a compressor object. +zlib.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zlib.decompress(string[, wbits[, bufsize]]) -- Return decompressed string. +zlib.decompressobj([wbits]) -- Return a decompressor object. +zlib.error diff --git a/third_party/qscintilla/qsci/api/python/Python-2.7.api b/third_party/qscintilla/qsci/api/python/Python-2.7.api new file mode 100644 index 0000000..6a58168 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-2.7.api @@ -0,0 +1,8270 @@ +ArithmeticError +AssertionError +AttributeError +BaseException +BaseHTTPServer.BaseHTTPRequestHandler(??) +BaseHTTPServer.DEFAULT_ERROR_CONTENT_TYPE +BaseHTTPServer.DEFAULT_ERROR_MESSAGE +BaseHTTPServer.HTTPServer(??) +BaseHTTPServer.SocketServer +BaseHTTPServer.catch_warnings +BaseHTTPServer.filterwarnings(??) +BaseHTTPServer.mimetools +BaseHTTPServer.socket +BaseHTTPServer.sys +BaseHTTPServer.test(??) +BaseHTTPServer.time +Bastion.Bastion(??) +Bastion.BastionClass(??) +Bastion.MethodType +BufferError +BytesWarning +CGIHTTPServer.BaseHTTPServer +CGIHTTPServer.CGIHTTPRequestHandler(??) +CGIHTTPServer.SimpleHTTPServer +CGIHTTPServer.executable(??) +CGIHTTPServer.nobody +CGIHTTPServer.nobody_uid(??) +CGIHTTPServer.os +CGIHTTPServer.select +CGIHTTPServer.sys +CGIHTTPServer.test(??) +CGIHTTPServer.urllib +ConfigParser.ConfigParser(??) +ConfigParser.DEFAULTSECT +ConfigParser.DuplicateSectionError +ConfigParser.Error +ConfigParser.InterpolationDepthError +ConfigParser.InterpolationError +ConfigParser.InterpolationMissingOptionError +ConfigParser.InterpolationSyntaxError +ConfigParser.MAX_INTERPOLATION_DEPTH +ConfigParser.MissingSectionHeaderError +ConfigParser.NoOptionError +ConfigParser.NoSectionError +ConfigParser.ParsingError +ConfigParser.RawConfigParser(??) +ConfigParser.SafeConfigParser(??) +ConfigParser.re +Cookie.BaseCookie +Cookie.Cookie +Cookie.CookieError +Cookie.Morsel +Cookie.SerialCookie +Cookie.SimpleCookie +Cookie.SmartCookie +Cookie.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +Cookie.loads(string) -- Load a pickle from the given string +Cookie.re +Cookie.string +Cookie.warnings +DeprecationWarning +DocXMLRPCServer.CGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocCGIXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCRequestHandler(??) +DocXMLRPCServer.DocXMLRPCServer(??) +DocXMLRPCServer.ServerHTMLDoc(??) +DocXMLRPCServer.SimpleXMLRPCRequestHandler(??) +DocXMLRPCServer.SimpleXMLRPCServer(??) +DocXMLRPCServer.XMLRPCDocGenerator(??) +DocXMLRPCServer.inspect +DocXMLRPCServer.pydoc +DocXMLRPCServer.re +DocXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +DocXMLRPCServer.sys +EOFError +Ellipsis +EnvironmentError +Exception +False +FloatingPointError +FutureWarning +GeneratorExit +HTMLParser.HTMLParseError +HTMLParser.HTMLParser(??) +HTMLParser.attrfind +HTMLParser.charref +HTMLParser.commentclose +HTMLParser.endendtag +HTMLParser.endtagfind +HTMLParser.entityref +HTMLParser.incomplete +HTMLParser.interesting_cdata +HTMLParser.interesting_normal +HTMLParser.locatestarttagend +HTMLParser.markupbase +HTMLParser.piclose +HTMLParser.re +HTMLParser.starttagopen +HTMLParser.tagfind +IOError +ImportError +ImportWarning +IndentationError +IndexError +KeyError +KeyboardInterrupt +LookupError +MemoryError +MimeWriter.MimeWriter(??) +MimeWriter.mimetools +MimeWriter.warnings +NameError +None +NotImplemented +NotImplementedError +OSError +OverflowError +PendingDeprecationWarning +Queue.Empty +Queue.Full +Queue.LifoQueue(??) +Queue.PriorityQueue(??) +Queue.Queue(??) +Queue.deque(iterable[, maxlen]) --> deque object +Queue.heapq +ReferenceError +RuntimeError +RuntimeWarning +SimpleHTTPServer.BaseHTTPServer +SimpleHTTPServer.SimpleHTTPRequestHandler(??) +SimpleHTTPServer.StringIO([s]) -- Return a StringIO-like stream for reading or writing +SimpleHTTPServer.cgi +SimpleHTTPServer.mimetypes +SimpleHTTPServer.os +SimpleHTTPServer.posixpath +SimpleHTTPServer.shutil +SimpleHTTPServer.test(??) +SimpleHTTPServer.urllib +SimpleXMLRPCServer.BaseHTTPServer +SimpleXMLRPCServer.CGIXMLRPCRequestHandler(??) +SimpleXMLRPCServer.Fault +SimpleXMLRPCServer.MultiPathXMLRPCServer(??) +SimpleXMLRPCServer.SimpleXMLRPCDispatcher(??) +SimpleXMLRPCServer.SimpleXMLRPCRequestHandler(??) +SimpleXMLRPCServer.SimpleXMLRPCServer(??) +SimpleXMLRPCServer.SocketServer +SimpleXMLRPCServer.fcntl +SimpleXMLRPCServer.list_public_methods(??) +SimpleXMLRPCServer.os +SimpleXMLRPCServer.re +SimpleXMLRPCServer.remove_duplicates([2,2,2,1,3,3]) => [3,1,2] +SimpleXMLRPCServer.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +SimpleXMLRPCServer.sys +SimpleXMLRPCServer.traceback +SimpleXMLRPCServer.xmlrpclib +SocketServer.BaseRequestHandler(??) +SocketServer.BaseServer(??) +SocketServer.DatagramRequestHandler(??) +SocketServer.ForkingMixIn(??) +SocketServer.ForkingTCPServer(??) +SocketServer.ForkingUDPServer(??) +SocketServer.StreamRequestHandler(??) +SocketServer.TCPServer(??) +SocketServer.ThreadingMixIn(??) +SocketServer.ThreadingTCPServer(??) +SocketServer.ThreadingUDPServer(??) +SocketServer.ThreadingUnixDatagramServer(??) +SocketServer.ThreadingUnixStreamServer(??) +SocketServer.UDPServer(??) +SocketServer.UnixDatagramServer(??) +SocketServer.UnixStreamServer(??) +SocketServer.os +SocketServer.select +SocketServer.socket +SocketServer.sys +SocketServer.threading +StandardError +StopIteration +StringIO.EINVAL +StringIO.StringIO(??) +StringIO.test(??) +SyntaxError +SyntaxWarning +SystemError +SystemExit +TabError +True +TypeError +UnboundLocalError +UnicodeDecodeError +UnicodeEncodeError +UnicodeError +UnicodeTranslateError +UnicodeWarning +UserDict.DictMixin(??) +UserDict.IterableUserDict(??) +UserDict.UserDict(??) +UserList.UserList +UserList.collections +UserString.MutableString +UserString.UserString +UserString.collections +UserString.sys +UserWarning +ValueError +Warning +ZeroDivisionError +abc.ABCMeta +abc.abstractmethod(??) +abc.abstractproperty +abc.types +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error +aifc.open(??) +aifc.openfp(??) +aifc.struct +all(iterable) -> bool +antigravity.webbrowser +any(iterable) -> bool +anydbm.error +anydbm.open(??) +apply(object[, args[, kwargs]]) -> value +argparse.Action +argparse.ArgumentDefaultsHelpFormatter +argparse.ArgumentError +argparse.ArgumentParser +argparse.ArgumentTypeError +argparse.FileType +argparse.HelpFormatter +argparse.Namespace +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter +argparse.RawTextHelpFormatter +argparse.SUPPRESS +argparse.ZERO_OR_MORE +array.ArrayType +array.array(typecode [, initializer]) -> array +ast.AST +ast.Add +ast.And +ast.Assert +ast.Assign +ast.Attribute +ast.AugAssign +ast.AugLoad +ast.AugStore +ast.BinOp +ast.BitAnd +ast.BitOr +ast.BitXor +ast.BoolOp +ast.Break +ast.Call +ast.ClassDef +ast.Compare +ast.Continue +ast.Del +ast.Delete +ast.Dict +ast.DictComp +ast.Div +ast.Ellipsis +ast.Eq +ast.ExceptHandler +ast.Exec +ast.Expr +ast.Expression +ast.ExtSlice +ast.FloorDiv +ast.For +ast.FunctionDef +ast.GeneratorExp +ast.Global +ast.Gt +ast.GtE +ast.If +ast.IfExp +ast.Import +ast.ImportFrom +ast.In +ast.Index +ast.Interactive +ast.Invert +ast.Is +ast.IsNot +ast.LShift +ast.Lambda +ast.List +ast.ListComp +ast.Load +ast.Lt +ast.LtE +ast.Mod +ast.Module +ast.Mult +ast.Name +ast.NodeTransformer +ast.NodeVisitor +ast.Not +ast.NotEq +ast.NotIn +ast.Num +ast.Or +ast.Param +ast.Pass +ast.Pow +ast.Print +ast.PyCF_ONLY_AST +ast.RShift +ast.Raise +ast.Repr +ast.Return +ast.Set +ast.SetComp +ast.Slice +ast.Store +ast.Str +ast.Sub +ast.Subscript +ast.Suite +ast.TryExcept +ast.TryFinally +ast.Tuple +ast.UAdd +ast.USub +ast.UnaryOp +ast.While +ast.With +ast.Yield +ast.alias +ast.arguments +ast.boolop +ast.cmpop +ast.comprehension +ast.copy_location(??) +ast.dump(??) +ast.excepthandler +ast.expr +ast.expr_context +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword +ast.literal_eval(??) +ast.mod +ast.operator +ast.parse(??) +ast.slice +ast.stmt +ast.unaryop +ast.walk(??) +asynchat.async_chat(??) +asynchat.asyncore +asynchat.catch_warnings +asynchat.deque(iterable[, maxlen]) --> deque object +asynchat.fifo(??) +asynchat.filterwarnings(??) +asynchat.find_prefix_at_end(??) +asynchat.py3kwarning +asynchat.simple_producer(??) +asynchat.socket +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINTR +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode +asyncore.fcntl +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select +asyncore.socket +asyncore.socket_map +asyncore.sys +asyncore.time +asyncore.warnings +asyncore.write(??) +atexit.register(??) +atexit.sys +audiodev.AudioDev(??) +audiodev.Play_Audio_sgi(??) +audiodev.Play_Audio_sun(??) +audiodev.error +audiodev.test(??) +audioop.add +audioop.adpcm2lin +audioop.alaw2lin +audioop.avg +audioop.avgpp +audioop.bias +audioop.cross +audioop.error +audioop.findfactor +audioop.findfit +audioop.findmax +audioop.getsample +audioop.lin2adpcm +audioop.lin2alaw +audioop.lin2lin +audioop.lin2ulaw +audioop.max +audioop.maxpp +audioop.minmax +audioop.mul +audioop.ratecv +audioop.reverse +audioop.rms +audioop.tomono +audioop.tostereo +audioop.ulaw2lin +base64.EMPTYSTRING +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.binascii +base64.decode(??) +base64.decodestring(??) +base64.encode(??) +base64.encodestring(??) +base64.k +base64.re +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct +base64.test(??) +base64.test1(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +base64.v +basestring +bdb.Bdb(??) +bdb.BdbQuit +bdb.Breakpoint(??) +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch +bdb.foo(??) +bdb.os +bdb.set_trace(??) +bdb.sys +bdb.test(??) +bdb.types +bin(number) -> string +binascii.Error +binascii.Incomplete +binascii.a2b_base64 +binascii.a2b_hex(hexstr) -> s; Binary data of hexadecimal representation. +binascii.a2b_hqx +binascii.a2b_qp +binascii.a2b_uu +binascii.b2a_base64 +binascii.b2a_hex(data) -> s; Hexadecimal representation of binary data. +binascii.b2a_hqx +binascii.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +binascii.b2a_uu +binascii.crc32 +binascii.crc_hqx +binascii.hexlify +binascii.rlecode_hqx +binascii.rledecode_hqx +binascii.unhexlify +binhex.BinHex(??) +binhex.Error +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii +binhex.binhex(??) +binhex.getfileinfo(??) +binhex.hexbin(??) +binhex.openrsrc(??) +binhex.os +binhex.struct +binhex.sys +bisect.bisect +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +buffer(object [, offset[, size]]) +bytearray(iterable_of_ints) -> bytearray. +bytes +cPickle.BadPickleGet +cPickle.HIGHEST_PROTOCOL +cPickle.PickleError +cPickle.Pickler(file, protocol=0) -- Create a pickler. +cPickle.PicklingError +cPickle.UnpickleableError +cPickle.Unpickler(file) -- Create an unpickler. +cPickle.UnpicklingError +cPickle.compatible_formats +cPickle.dump(obj, file, protocol=0) -- Write an object in pickle format to the given file. +cPickle.dumps(obj, protocol=0) -- Return a string containing an object in pickle format. +cPickle.format_version +cPickle.load(file) -- Load a pickle from the given file +cPickle.loads(string) -- Load a pickle from the given string +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.help(??) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +cStringIO.InputType +cStringIO.OutputType +cStringIO.StringIO([s]) -- Return a StringIO-like stream for reading or writing +cStringIO.cStringIO_CAPI +calendar.Calendar +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar +calendar.IllegalMonthError +calendar.IllegalWeekdayError +calendar.January +calendar.LocaleHTMLCalendar +calendar.LocaleTextCalendar +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar +calendar.TimeEncoding(??) +calendar.WEDNESDAY +calendar.c +calendar.calendar +calendar.datetime +calendar.day_abbr +calendar.day_name +calendar.error +calendar.firstweekday +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays +calendar.month +calendar.month_abbr +calendar.month_name +calendar.monthcalendar +calendar.monthrange(??) +calendar.prcal +calendar.prmonth +calendar.prweek +calendar.setfirstweekday(??) +calendar.sys +calendar.timegm(??) +calendar.week +calendar.weekday(??) +calendar.weekheader +callable(object) -> bool +cgi.FieldStorage(??) +cgi.FormContent(??) +cgi.FormContentDict(??) +cgi.InterpFormContentDict(??) +cgi.MiniFieldStorage(??) +cgi.StringIO([s]) -- Return a StringIO-like stream for reading or writing +cgi.SvFormContentDict(??) +cgi.UserDict +cgi.attrgetter(attr, ...) --> attrgetter object +cgi.catch_warnings +cgi.dolog(??) +cgi.escape(??) +cgi.filterwarnings(??) +cgi.initlog(??) +cgi.log(??) +cgi.logfile +cgi.logfp +cgi.maxlen +cgi.mimetools +cgi.nolog(??) +cgi.os +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.rfc822 +cgi.sys +cgi.test(??) +cgi.urllib +cgi.urlparse +cgi.valid_boundary(??) +cgi.warn +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler +cgitb.html(??) +cgitb.inspect +cgitb.keyword +cgitb.linecache +cgitb.lookup(??) +cgitb.os +cgitb.pydoc +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys +cgitb.tempfile +cgitb.text(??) +cgitb.time +cgitb.tokenize +cgitb.traceback +cgitb.types +chr(i) -> character +chunk.Chunk(??) +classmethod(function) -> method +cmath.acos(x) +cmath.acosh(x) +cmath.asin(x) +cmath.asinh(x) +cmath.atan(x) +cmath.atanh(x) +cmath.cos(x) +cmath.cosh(x) +cmath.e +cmath.exp(x) +cmath.isinf(z) -> bool +cmath.isnan(z) -> bool +cmath.log(x[, base]) -> the logarithm of x to the given base. +cmath.log10(x) +cmath.phase(z) -> float +cmath.pi +cmath.polar(z) -> r: float, phi: float +cmath.rect(r, phi) -> z: complex +cmath.sin(x) +cmath.sinh(x) +cmath.sqrt(x) +cmath.tan(x) +cmath.tanh(x) +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string +cmp(x, y) -> integer +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.softspace(??) +code.sys +code.traceback +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder +codecs.BufferedIncrementalEncoder +codecs.Codec(??) +codecs.CodecInfo +codecs.EncodedFile(??) +codecs.IncrementalDecoder +codecs.IncrementalEncoder +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode +codecs.ascii_encode +codecs.backslashreplace_errors +codecs.charbuffer_encode +codecs.charmap_build +codecs.charmap_decode +codecs.charmap_encode +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode +codecs.escape_encode +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode +codecs.latin_1_encode +codecs.lookup(encoding) -> CodecInfo +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode +codecs.raw_unicode_escape_encode +codecs.readbuffer_encode +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors +codecs.strict_errors +codecs.sys +codecs.unicode_escape_decode +codecs.unicode_escape_encode +codecs.unicode_internal_decode +codecs.unicode_internal_encode +codecs.utf_16_be_decode +codecs.utf_16_be_encode +codecs.utf_16_decode +codecs.utf_16_encode +codecs.utf_16_ex_decode +codecs.utf_16_le_decode +codecs.utf_16_le_encode +codecs.utf_32_be_decode +codecs.utf_32_be_encode +codecs.utf_32_decode +codecs.utf_32_encode +codecs.utf_32_ex_decode +codecs.utf_32_le_decode +codecs.utf_32_le_encode +codecs.utf_7_decode +codecs.utf_7_encode +codecs.utf_8_decode +codecs.utf_8_encode +codecs.xmlcharrefreplace_errors +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +codeop.fname +coerce(x, y) -> (x1, y1) +collections.Callable +collections.Container +collections.Counter +collections.Hashable +collections.ItemsView +collections.Iterable +collections.Iterator +collections.KeysView +collections.Mapping +collections.MappingView +collections.MutableMapping +collections.MutableSequence +collections.MutableSet +collections.OrderedDict +collections.Sequence +collections.Set +collections.Sized +collections.ValuesView +collections.defaultdict(default_factory) --> dict with default factory +collections.deque(iterable[, maxlen]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +commands.getoutput(??) +commands.getstatus(??) +commands.getstatusoutput(??) +commands.mk2arg(??) +commands.mkarg(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.expand_args(??) +compileall.imp +compileall.main(??) +compileall.os +compileall.py_compile +compileall.struct +compileall.sys +compiler.ast +compiler.ast.Add(??) +compiler.ast.And(??) +compiler.ast.AssAttr(??) +compiler.ast.AssList(??) +compiler.ast.AssName(??) +compiler.ast.AssTuple(??) +compiler.ast.Assert(??) +compiler.ast.Assign(??) +compiler.ast.AugAssign(??) +compiler.ast.Backquote(??) +compiler.ast.Bitand(??) +compiler.ast.Bitor(??) +compiler.ast.Bitxor(??) +compiler.ast.Break(??) +compiler.ast.CO_VARARGS +compiler.ast.CO_VARKEYWORDS +compiler.ast.CallFunc(??) +compiler.ast.Class(??) +compiler.ast.Compare(??) +compiler.ast.Const(??) +compiler.ast.Continue(??) +compiler.ast.Decorators(??) +compiler.ast.Dict(??) +compiler.ast.DictComp(??) +compiler.ast.Discard(??) +compiler.ast.Div(??) +compiler.ast.Ellipsis(??) +compiler.ast.EmptyNode(??) +compiler.ast.Exec(??) +compiler.ast.Expression(??) +compiler.ast.FloorDiv(??) +compiler.ast.For(??) +compiler.ast.From(??) +compiler.ast.Function(??) +compiler.ast.GenExpr(??) +compiler.ast.GenExprFor(??) +compiler.ast.GenExprIf(??) +compiler.ast.GenExprInner(??) +compiler.ast.Getattr(??) +compiler.ast.Global(??) +compiler.ast.If(??) +compiler.ast.IfExp(??) +compiler.ast.Import(??) +compiler.ast.Invert(??) +compiler.ast.Keyword(??) +compiler.ast.Lambda(??) +compiler.ast.LeftShift(??) +compiler.ast.List(??) +compiler.ast.ListComp(??) +compiler.ast.ListCompFor(??) +compiler.ast.ListCompIf(??) +compiler.ast.Mod(??) +compiler.ast.Module(??) +compiler.ast.Mul(??) +compiler.ast.Name(??) +compiler.ast.Node(??) +compiler.ast.Not(??) +compiler.ast.Or(??) +compiler.ast.Pass(??) +compiler.ast.Power(??) +compiler.ast.Print(??) +compiler.ast.Printnl(??) +compiler.ast.Raise(??) +compiler.ast.Return(??) +compiler.ast.RightShift(??) +compiler.ast.Set(??) +compiler.ast.SetComp(??) +compiler.ast.Slice(??) +compiler.ast.Sliceobj(??) +compiler.ast.Stmt(??) +compiler.ast.Sub(??) +compiler.ast.Subscript(??) +compiler.ast.TryExcept(??) +compiler.ast.TryFinally(??) +compiler.ast.Tuple(??) +compiler.ast.UnaryAdd(??) +compiler.ast.UnarySub(??) +compiler.ast.While(??) +compiler.ast.With(??) +compiler.ast.Yield(??) +compiler.ast.flatten(??) +compiler.ast.flatten_nodes(??) +compiler.ast.name +compiler.ast.nodes +compiler.ast.obj(??) +compiler.compile(??) +compiler.compileFile(??) +compiler.consts +compiler.consts.CO_FUTURE_ABSIMPORT +compiler.consts.CO_FUTURE_DIVISION +compiler.consts.CO_FUTURE_PRINT_FUNCTION +compiler.consts.CO_FUTURE_WITH_STATEMENT +compiler.consts.CO_GENERATOR +compiler.consts.CO_GENERATOR_ALLOWED +compiler.consts.CO_NESTED +compiler.consts.CO_NEWLOCALS +compiler.consts.CO_OPTIMIZED +compiler.consts.CO_VARARGS +compiler.consts.CO_VARKEYWORDS +compiler.consts.OP_APPLY +compiler.consts.OP_ASSIGN +compiler.consts.OP_DELETE +compiler.consts.SC_CELL +compiler.consts.SC_FREE +compiler.consts.SC_GLOBAL_EXPLICT +compiler.consts.SC_GLOBAL_IMPLICIT +compiler.consts.SC_LOCAL +compiler.consts.SC_UNKNOWN +compiler.future +compiler.future.BadFutureParser(??) +compiler.future.FutureParser(??) +compiler.future.ast +compiler.future.find_futures(??) +compiler.future.is_future(??) +compiler.future.walk(??) +compiler.misc +compiler.misc.MANGLE_LEN +compiler.misc.Set(??) +compiler.misc.Stack(??) +compiler.misc.flatten(??) +compiler.misc.mangle(??) +compiler.misc.set_filename(??) +compiler.parse(??) +compiler.parseFile(??) +compiler.pyassem +compiler.pyassem.Block(??) +compiler.pyassem.CONV +compiler.pyassem.CO_NEWLOCALS +compiler.pyassem.CO_OPTIMIZED +compiler.pyassem.CO_VARARGS +compiler.pyassem.CO_VARKEYWORDS +compiler.pyassem.DONE +compiler.pyassem.FLAT +compiler.pyassem.FlowGraph(??) +compiler.pyassem.LineAddrTable(??) +compiler.pyassem.PyFlowGraph(??) +compiler.pyassem.RAW +compiler.pyassem.StackDepthTracker(??) +compiler.pyassem.TupleArg(??) +compiler.pyassem.dis +compiler.pyassem.findDepth +compiler.pyassem.getArgCount(??) +compiler.pyassem.isJump(??) +compiler.pyassem.misc +compiler.pyassem.order_blocks(??) +compiler.pyassem.sys +compiler.pyassem.twobyte(??) +compiler.pyassem.types +compiler.pycodegen +compiler.pycodegen.AbstractClassCode(??) +compiler.pycodegen.AbstractCompileMode(??) +compiler.pycodegen.AbstractFunctionCode(??) +compiler.pycodegen.AugGetattr(??) +compiler.pycodegen.AugName(??) +compiler.pycodegen.AugSlice(??) +compiler.pycodegen.AugSubscript(??) +compiler.pycodegen.CO_FUTURE_ABSIMPORT +compiler.pycodegen.CO_FUTURE_DIVISION +compiler.pycodegen.CO_FUTURE_PRINT_FUNCTION +compiler.pycodegen.CO_FUTURE_WITH_STATEMENT +compiler.pycodegen.CO_GENERATOR +compiler.pycodegen.CO_NESTED +compiler.pycodegen.CO_NEWLOCALS +compiler.pycodegen.CO_VARARGS +compiler.pycodegen.CO_VARKEYWORDS +compiler.pycodegen.ClassCodeGenerator(??) +compiler.pycodegen.CodeGenerator(??) +compiler.pycodegen.Delegator(??) +compiler.pycodegen.END_FINALLY +compiler.pycodegen.EXCEPT +compiler.pycodegen.Expression(??) +compiler.pycodegen.ExpressionCodeGenerator(??) +compiler.pycodegen.FunctionCodeGenerator(??) +compiler.pycodegen.GenExprCodeGenerator(??) +compiler.pycodegen.Interactive(??) +compiler.pycodegen.InteractiveCodeGenerator(??) +compiler.pycodegen.LOOP +compiler.pycodegen.LocalNameFinder(??) +compiler.pycodegen.Module(??) +compiler.pycodegen.ModuleCodeGenerator(??) +compiler.pycodegen.NestedScopeMixin(??) +compiler.pycodegen.OpFinder(??) +compiler.pycodegen.SC_CELL +compiler.pycodegen.SC_FREE +compiler.pycodegen.SC_GLOBAL_EXPLICT +compiler.pycodegen.SC_GLOBAL_IMPLICIT +compiler.pycodegen.SC_LOCAL +compiler.pycodegen.StringIO([s]) -- Return a StringIO-like stream for reading or writing +compiler.pycodegen.TRY_FINALLY +compiler.pycodegen.TupleArg(??) +compiler.pycodegen.VERSION +compiler.pycodegen.ast +compiler.pycodegen.callfunc_opcode_info +compiler.pycodegen.compile(??) +compiler.pycodegen.compileFile(??) +compiler.pycodegen.findOp(??) +compiler.pycodegen.future +compiler.pycodegen.generateArgList(??) +compiler.pycodegen.imp +compiler.pycodegen.is_constant_false(??) +compiler.pycodegen.marshal +compiler.pycodegen.misc +compiler.pycodegen.os +compiler.pycodegen.parse(??) +compiler.pycodegen.pyassem +compiler.pycodegen.struct +compiler.pycodegen.symbols +compiler.pycodegen.syntax +compiler.pycodegen.sys +compiler.pycodegen.walk(??) +compiler.pycodegen.wrap_aug(??) +compiler.pycodegen.wrapper +compiler.symbols +compiler.symbols.ClassScope(??) +compiler.symbols.FunctionScope(??) +compiler.symbols.GenExprScope(??) +compiler.symbols.LambdaScope(??) +compiler.symbols.MANGLE_LEN +compiler.symbols.ModuleScope(??) +compiler.symbols.SC_CELL +compiler.symbols.SC_FREE +compiler.symbols.SC_GLOBAL_EXPLICT +compiler.symbols.SC_GLOBAL_IMPLICIT +compiler.symbols.SC_LOCAL +compiler.symbols.SC_UNKNOWN +compiler.symbols.Scope(??) +compiler.symbols.SymbolVisitor(??) +compiler.symbols.ast +compiler.symbols.list_eq(??) +compiler.symbols.mangle(??) +compiler.symbols.sys +compiler.symbols.types +compiler.syntax +compiler.syntax.SyntaxErrorChecker(??) +compiler.syntax.ast +compiler.syntax.check(??) +compiler.syntax.walk(??) +compiler.transformer +compiler.transformer.Add(??) +compiler.transformer.And(??) +compiler.transformer.AssAttr(??) +compiler.transformer.AssList(??) +compiler.transformer.AssName(??) +compiler.transformer.AssTuple(??) +compiler.transformer.Assert(??) +compiler.transformer.Assign(??) +compiler.transformer.AugAssign(??) +compiler.transformer.Backquote(??) +compiler.transformer.Bitand(??) +compiler.transformer.Bitor(??) +compiler.transformer.Bitxor(??) +compiler.transformer.Break(??) +compiler.transformer.CO_VARARGS +compiler.transformer.CO_VARKEYWORDS +compiler.transformer.CallFunc(??) +compiler.transformer.Class(??) +compiler.transformer.Compare(??) +compiler.transformer.Const(??) +compiler.transformer.Continue(??) +compiler.transformer.Decorators(??) +compiler.transformer.Dict(??) +compiler.transformer.DictComp(??) +compiler.transformer.Discard(??) +compiler.transformer.Div(??) +compiler.transformer.Ellipsis(??) +compiler.transformer.EmptyNode(??) +compiler.transformer.Exec(??) +compiler.transformer.Expression(??) +compiler.transformer.FloorDiv(??) +compiler.transformer.For(??) +compiler.transformer.From(??) +compiler.transformer.Function(??) +compiler.transformer.GenExpr(??) +compiler.transformer.GenExprFor(??) +compiler.transformer.GenExprIf(??) +compiler.transformer.GenExprInner(??) +compiler.transformer.Getattr(??) +compiler.transformer.Global(??) +compiler.transformer.If(??) +compiler.transformer.IfExp(??) +compiler.transformer.Import(??) +compiler.transformer.Invert(??) +compiler.transformer.Keyword(??) +compiler.transformer.Lambda(??) +compiler.transformer.LeftShift(??) +compiler.transformer.List(??) +compiler.transformer.ListComp(??) +compiler.transformer.ListCompFor(??) +compiler.transformer.ListCompIf(??) +compiler.transformer.Mod(??) +compiler.transformer.Module(??) +compiler.transformer.Mul(??) +compiler.transformer.Name(??) +compiler.transformer.Node(??) +compiler.transformer.Not(??) +compiler.transformer.OP_APPLY +compiler.transformer.OP_ASSIGN +compiler.transformer.OP_DELETE +compiler.transformer.Or(??) +compiler.transformer.Pass(??) +compiler.transformer.Power(??) +compiler.transformer.Print(??) +compiler.transformer.Printnl(??) +compiler.transformer.Raise(??) +compiler.transformer.Return(??) +compiler.transformer.RightShift(??) +compiler.transformer.Set(??) +compiler.transformer.SetComp(??) +compiler.transformer.Slice(??) +compiler.transformer.Sliceobj(??) +compiler.transformer.Stmt(??) +compiler.transformer.Sub(??) +compiler.transformer.Subscript(??) +compiler.transformer.Transformer(??) +compiler.transformer.TryExcept(??) +compiler.transformer.TryFinally(??) +compiler.transformer.Tuple(??) +compiler.transformer.UnaryAdd(??) +compiler.transformer.UnarySub(??) +compiler.transformer.WalkerError +compiler.transformer.While(??) +compiler.transformer.With(??) +compiler.transformer.Yield(??) +compiler.transformer.asList(??) +compiler.transformer.debug_tree(??) +compiler.transformer.extractLineNo(??) +compiler.transformer.flatten(??) +compiler.transformer.flatten_nodes(??) +compiler.transformer.k +compiler.transformer.name +compiler.transformer.nodes +compiler.transformer.obj(??) +compiler.transformer.parse(??) +compiler.transformer.parseFile(??) +compiler.transformer.parser +compiler.transformer.symbol +compiler.transformer.token +compiler.transformer.v +compiler.visitor +compiler.visitor.ASTVisitor(??) +compiler.visitor.ExampleASTVisitor(??) +compiler.visitor.ast +compiler.visitor.dumpNode(??) +compiler.visitor.walk(??) +compiler.walk(??) +compiler.warnings +complex(real[, imag]) -> complex number +contextlib.GeneratorContextManager +contextlib.closing +contextlib.contextmanager(??) +contextlib.nested(??) +contextlib.sys +contextlib.warn +contextlib.wraps(??) +cookielib.Absent(??) +cookielib.Cookie(??) +cookielib.CookieJar(??) +cookielib.CookiePolicy(??) +cookielib.DAYS +cookielib.DEFAULT_HTTP_PORT +cookielib.DefaultCookiePolicy(??) +cookielib.EPOCH_YEAR +cookielib.ESCAPED_CHAR_RE +cookielib.FileCookieJar(??) +cookielib.HEADER_ESCAPE_RE +cookielib.HEADER_JOIN_ESCAPE_RE +cookielib.HEADER_QUOTED_VALUE_RE +cookielib.HEADER_TOKEN_RE +cookielib.HEADER_VALUE_RE +cookielib.HTTP_PATH_SAFE +cookielib.IPV4_RE +cookielib.ISO_DATE_RE +cookielib.LOOSE_HTTP_DATE_RE +cookielib.LWPCookieJar(??) +cookielib.LoadError +cookielib.MISSING_FILENAME_TEXT +cookielib.MONTHS +cookielib.MONTHS_LOWER +cookielib.MozillaCookieJar(??) +cookielib.STRICT_DATE_RE +cookielib.TIMEZONE_RE +cookielib.UTC_ZONES +cookielib.WEEKDAY_RE +cookielib.copy +cookielib.cut_port_re +cookielib.debug +cookielib.deepvalues(??) +cookielib.domain_match(??) +cookielib.eff_request_host(??) +cookielib.escape_path(??) +cookielib.http2time(??) +cookielib.httplib +cookielib.is_HDN(??) +cookielib.is_third_party(??) +cookielib.iso2time(??) +cookielib.join_header_words(??) +cookielib.liberal_is_HDN(??) +cookielib.logger +cookielib.lwp_cookie_str(??) +cookielib.month +cookielib.offset_from_tz_string(??) +cookielib.parse_ns_headers(??) +cookielib.re +cookielib.reach(??) +cookielib.request_host(??) +cookielib.request_path(??) +cookielib.request_port(??) +cookielib.split_header_words(??) +cookielib.time +cookielib.time2isoz(??) +cookielib.time2netscape(??) +cookielib.timegm(??) +cookielib.unmatched(??) +cookielib.uppercase_escaped_char(??) +cookielib.urllib +cookielib.urlparse +cookielib.user_domain_match(??) +cookielib.vals_sorted_by_key(??) +copy.Error +copy.PyStringMap +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table +copy.error +copy.name +copy.t +copy.weakref +copy_reg.add_extension(??) +copy_reg.clear_extension_cache(??) +copy_reg.constructor(??) +copy_reg.dispatch_table +copy_reg.pickle(??) +copy_reg.pickle_complex(??) +copy_reg.remove_extension(??) +copyright +credits +crypt.crypt(word, salt) -> string +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO([s]) -- Return a StringIO-like stream for reading or writing +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit +csv.get_dialect +csv.list_dialects +csv.re +csv.reader +csv.reduce(function, sequence[, initial]) -> value +csv.register_dialect +csv.unregister_dialect +csv.writer +ctypes.ARRAY(??) +ctypes.ArgumentError +ctypes.Array +ctypes.BigEndianStructure +ctypes.CDLL +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader +ctypes.LittleEndianStructure +ctypes.POINTER +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure +ctypes.Union +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool +ctypes.c_buffer(??) +ctypes.c_byte +ctypes.c_char +ctypes.c_char_p +ctypes.c_double +ctypes.c_float +ctypes.c_int +ctypes.c_int16 +ctypes.c_int32 +ctypes.c_int64 +ctypes.c_int8 +ctypes.c_long +ctypes.c_longdouble +ctypes.c_longlong +ctypes.c_short +ctypes.c_size_t +ctypes.c_ssize_t +ctypes.c_ubyte +ctypes.c_uint +ctypes.c_uint16 +ctypes.c_uint32 +ctypes.c_uint64 +ctypes.c_uint8 +ctypes.c_ulong +ctypes.c_ulonglong +ctypes.c_ushort +ctypes.c_void_p +ctypes.c_voidp +ctypes.c_wchar +ctypes.c_wchar_p +ctypes.cast(??) +ctypes.cdll +ctypes.create_string_buffer(aString) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable, r) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.ensure_utf8(??) +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.ifilter(function or None, sequence) --> ifilter object +ctypes.macholib.dyld.ifilterfalse(function or None, sequence) --> ifilterfalse object +ctypes.macholib.dyld.imap(func, *iterables) --> imap object +ctypes.macholib.dyld.islice(iterable, [start,] stop [, step]) --> islice object +ctypes.macholib.dyld.izip(iter1 [,iter2 [...]]) --> izip object +ctypes.macholib.dyld.izip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> izip_longest object +ctypes.macholib.dyld.os +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dylib +ctypes.macholib.dylib.DYLIB_RE +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework +ctypes.macholib.framework.STRICT_FRAMEWORK_RE +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove +ctypes.memset +ctypes.pointer +ctypes.py_object +ctypes.pydll +ctypes.pythonapi +ctypes.resize +ctypes.set_conversion_mode(encoding, errors) -> (previous-encoding, previous-errors) +ctypes.set_errno +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util +ctypes.util.errno +ctypes.util.find_library(??) +ctypes.util.os +ctypes.util.re +ctypes.util.sys +ctypes.util.tempfile +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta +datetime.tzinfo +decimal.BasicContext +decimal.Clamped +decimal.Context +decimal.ConversionSyntax +decimal.Decimal +decimal.DecimalException +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext +decimal.DivisionByZero +decimal.DivisionImpossible +decimal.DivisionUndefined +decimal.ExtendedContext +decimal.Inexact +decimal.InvalidContext +decimal.InvalidOperation +decimal.Overflow +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded +decimal.Subnormal +decimal.Underflow +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq +difflib.ndiff(??) +difflib.reduce(function, sequence[, initial]) -> value +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dircache.annotate(??) +dircache.cache +dircache.listdir(??) +dircache.opendir(??) +dircache.os +dircache.reset(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.cmp_op +dis.dis(??) +dis.disassemble(??) +dis.disassemble_string(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.hascompare +dis.hasconst +dis.hasfree +dis.hasjabs +dis.hasjrel +dis.haslocal +dis.hasname +dis.opmap +dis.opname +dis.sys +dis.types +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase +doctest.DocTestFailure +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.Tester(??) +doctest.UnexpectedException +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib +doctest.inspect +doctest.linecache +doctest.master +doctest.namedtuple(??) +doctest.os +doctest.pdb +doctest.re +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys +doctest.tempfile +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback +doctest.unittest +doctest.warnings +dumbdbm.UserDict +dumbdbm.error +dumbdbm.open(??) +dummy_thread.LockType +dummy_thread.allocate_lock(??) +dummy_thread.error +dummy_thread.exit(??) +dummy_thread.get_ident(??) +dummy_thread.interrupt_main(??) +dummy_thread.stack_size(??) +dummy_thread.start_new_thread(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread +dummy_threading.Timer(??) +dummy_threading.activeCount(??) +dummy_threading.active_count(??) +dummy_threading.currentThread(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.local +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading +email.Charset +email.Encoders +email.Errors +email.FeedParser +email.Generator +email.Header +email.Iterators +email.LazyImporter +email.MIMEAudio +email.MIMEBase +email.MIMEImage +email.MIMEMessage +email.MIMEMultipart +email.MIMENonMultipart +email.MIMEText +email.Message +email.Parser +email.Utils +email.base64MIME +email.base64mime +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64 +email.base64mime.b2a_base64 +email.base64mime.base64_len(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.encode(??) +email.base64mime.encodestring(??) +email.base64mime.fix_eols(??) +email.base64mime.header_encode(??) +email.charset +email.charset.ALIASES +email.charset.BASE64 +email.charset.CHARSETS +email.charset.CODEC_MAP +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.MISC_LEN +email.charset.QP +email.charset.SHORTEST +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.codecs +email.charset.email +email.charset.encode_7or8bit(??) +email.charset.errors +email.email +email.encoders +email.encoders.base64 +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors +email.errors.BoundaryError +email.errors.CharsetError +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderParseError +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError +email.errors.MessageParseError +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MultipartConversionError +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.feedparser +email.feedparser.BufferedSubFile +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE +email.feedparser.NLCRE_bol +email.feedparser.NLCRE_crack +email.feedparser.NLCRE_eol +email.feedparser.NeedMoreData +email.feedparser.errors +email.feedparser.headerRE +email.feedparser.message +email.feedparser.re +email.generator +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.Header(??) +email.generator.NL +email.generator.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.generator.UNDERSCORE +email.generator.fcre +email.generator.random +email.generator.re +email.generator.sys +email.generator.time +email.generator.warnings +email.header +email.header.Charset(??) +email.header.Header(??) +email.header.HeaderParseError +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.UEMPTYSTRING +email.header.USASCII +email.header.USPACE +email.header.UTF8 +email.header.binascii +email.header.decode_header(??) +email.header.ecre +email.header.email +email.header.fcre +email.header.make_header(??) +email.header.re +email.importer +email.iterators +email.iterators.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.iterators.body_line_iterator(??) +email.iterators.sys +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.message.binascii +email.message.email +email.message.errors +email.message.re +email.message.tspecials +email.message.utils +email.message.uu +email.message.warnings +email.message_from_file(??) +email.message_from_string(??) +email.mime +email.mime.Audio +email.mime.Base +email.mime.Image +email.mime.Message +email.mime.Multipart +email.mime.NonMultipart +email.mime.Text +email.mime.application +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders +email.mime.audio +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.mime.audio.encoders +email.mime.audio.sndhdr +email.mime.base +email.mime.base.MIMEBase(??) +email.mime.base.message +email.mime.image +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders +email.mime.image.imghdr +email.mime.message +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message +email.mime.multipart +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors +email.mime.text +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.mime.text.encode_7or8bit(??) +email.parser +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Message(??) +email.parser.Parser(??) +email.parser.StringIO([s]) -- Return a StringIO-like stream for reading or writing +email.parser.warnings +email.quopriMIME +email.quoprimime +email.quoprimime.CRLF +email.quoprimime.MISC_LEN +email.quoprimime.NL +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_quopri_check(??) +email.quoprimime.body_quopri_len(??) +email.quoprimime.bqre +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.encode(??) +email.quoprimime.encodestring(??) +email.quoprimime.fix_eols(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_quopri_check(??) +email.quoprimime.header_quopri_len(??) +email.quoprimime.hexdigits +email.quoprimime.hqre +email.quoprimime.quote(??) +email.quoprimime.re +email.quoprimime.unquote(??) +email.sys +email.utils +email.utils.COMMASPACE +email.utils.CRLF +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.base64 +email.utils.collapse_rfc2231_value(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre +email.utils.encode_rfc2231(??) +email.utils.escapesre +email.utils.fix_eols(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random +email.utils.re +email.utils.rfc2231_continuation +email.utils.socket +email.utils.specialsre +email.utils.time +email.utils.unquote(??) +email.utils.urllib +email.utils.warnings +enumerate(iterable[, start]) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EADV +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EBADE +errno.EBADF +errno.EBADFD +errno.EBADMSG +errno.EBADR +errno.EBADRQC +errno.EBADSLT +errno.EBFONT +errno.EBUSY +errno.ECHILD +errno.ECHRNG +errno.ECOMM +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDEADLOCK +errno.EDESTADDRREQ +errno.EDOM +errno.EDOTDOT +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.EISNAM +errno.EL2HLT +errno.EL2NSYNC +errno.EL3HLT +errno.EL3RST +errno.ELIBACC +errno.ELIBBAD +errno.ELIBEXEC +errno.ELIBMAX +errno.ELIBSCN +errno.ELNRNG +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENAVAIL +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOANO +errno.ENOBUFS +errno.ENOCSI +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENONET +errno.ENOPKG +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTNAM +errno.ENOTSOCK +errno.ENOTTY +errno.ENOTUNIQ +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.ERANGE +errno.EREMCHG +errno.EREMOTE +errno.EREMOTEIO +errno.ERESTART +errno.EROFS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESRMNT +errno.ESTALE +errno.ESTRPIPE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUCLEAN +errno.EUNATCH +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.EXFULL +errno.errorcode +eval(source[, globals[, locals]]) -> value +exceptions.ArithmeticError +exceptions.AssertionError +exceptions.AttributeError +exceptions.BaseException +exceptions.BufferError +exceptions.BytesWarning +exceptions.DeprecationWarning +exceptions.EOFError +exceptions.EnvironmentError +exceptions.Exception +exceptions.FloatingPointError +exceptions.FutureWarning +exceptions.GeneratorExit +exceptions.IOError +exceptions.ImportError +exceptions.ImportWarning +exceptions.IndentationError +exceptions.IndexError +exceptions.KeyError +exceptions.KeyboardInterrupt +exceptions.LookupError +exceptions.MemoryError +exceptions.NameError +exceptions.NotImplementedError +exceptions.OSError +exceptions.OverflowError +exceptions.PendingDeprecationWarning +exceptions.ReferenceError +exceptions.RuntimeError +exceptions.RuntimeWarning +exceptions.StandardError +exceptions.StopIteration +exceptions.SyntaxError +exceptions.SyntaxWarning +exceptions.SystemError +exceptions.SystemExit +exceptions.TabError +exceptions.TypeError +exceptions.UnboundLocalError +exceptions.UnicodeDecodeError +exceptions.UnicodeEncodeError +exceptions.UnicodeError +exceptions.UnicodeTranslateError +exceptions.UnicodeWarning +exceptions.UserWarning +exceptions.ValueError +exceptions.Warning +exceptions.ZeroDivisionError +execfile(filename[, globals[, locals]]) +exit +fcntl.DN_ACCESS +fcntl.DN_ATTRIB +fcntl.DN_CREATE +fcntl.DN_DELETE +fcntl.DN_MODIFY +fcntl.DN_MULTISHOT +fcntl.DN_RENAME +fcntl.FASYNC +fcntl.FD_CLOEXEC +fcntl.F_DUPFD +fcntl.F_EXLCK +fcntl.F_GETFD +fcntl.F_GETFL +fcntl.F_GETLEASE +fcntl.F_GETLK +fcntl.F_GETLK64 +fcntl.F_GETOWN +fcntl.F_GETSIG +fcntl.F_NOTIFY +fcntl.F_RDLCK +fcntl.F_SETFD +fcntl.F_SETFL +fcntl.F_SETLEASE +fcntl.F_SETLK +fcntl.F_SETLK64 +fcntl.F_SETLKW +fcntl.F_SETLKW64 +fcntl.F_SETOWN +fcntl.F_SETSIG +fcntl.F_SHLCK +fcntl.F_UNLCK +fcntl.F_WRLCK +fcntl.I_ATMARK +fcntl.I_CANPUT +fcntl.I_CKBAND +fcntl.I_FDINSERT +fcntl.I_FIND +fcntl.I_FLUSH +fcntl.I_FLUSHBAND +fcntl.I_GETBAND +fcntl.I_GETCLTIME +fcntl.I_GETSIG +fcntl.I_GRDOPT +fcntl.I_GWROPT +fcntl.I_LINK +fcntl.I_LIST +fcntl.I_LOOK +fcntl.I_NREAD +fcntl.I_PEEK +fcntl.I_PLINK +fcntl.I_POP +fcntl.I_PUNLINK +fcntl.I_PUSH +fcntl.I_RECVFD +fcntl.I_SENDFD +fcntl.I_SETCLTIME +fcntl.I_SETSIG +fcntl.I_SRDOPT +fcntl.I_STR +fcntl.I_SWROPT +fcntl.I_UNLINK +fcntl.LOCK_EX +fcntl.LOCK_MAND +fcntl.LOCK_NB +fcntl.LOCK_READ +fcntl.LOCK_RW +fcntl.LOCK_SH +fcntl.LOCK_UN +fcntl.LOCK_WRITE +fcntl.fcntl(fd, opt, [arg]) +fcntl.flock(fd, operation) +fcntl.ioctl(fd, opt[, arg[, mutate_flag]]) +fcntl.lockf (fd, operation, length=0, start=0, whence=0) +file(name[, mode[, buffering]]) -> file object +filecmp.BUFSIZE +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.ifilter(function or None, sequence) --> ifilter object +filecmp.ifilterfalse(function or None, sequence) --> ifilterfalse object +filecmp.imap(func, *iterables) --> imap object +filecmp.izip(iter1 [,iter2 [...]]) --> izip object +filecmp.os +filecmp.stat +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input([files[, inplace[, backup[, mode[, openhook]]]]]) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os +fileinput.sys +filter(function or None, sequence) -> list, tuple, or string +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.re +fnmatch.translate(??) +format(value[, format_spec]) -> string +formatter.AS_IS +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys +formatter.test(??) +fpformat.NotANumber +fpformat.decoder +fpformat.extract(??) +fpformat.fix(??) +fpformat.re +fpformat.roundfrac(??) +fpformat.sci(??) +fpformat.test(??) +fpformat.unexpo(??) +fractions.Decimal +fractions.Fraction +fractions.Rational +fractions.division +fractions.gcd(??) +fractions.math +fractions.numbers +fractions.operator +fractions.re +frozenset() -> empty frozenset object +ftplib.CRLF +ftplib.Error +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors +ftplib.error_perm +ftplib.error_proto +ftplib.error_reply +ftplib.error_temp +ftplib.ftpcp(??) +ftplib.os +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket +ftplib.ssl +ftplib.sys +ftplib.test(??) +functools.WRAPPER_ASSIGNMENTS +functools.WRAPPER_UPDATES +functools.cmp_to_key(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.reduce(function, sequence[, initial]) -> value +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +future_builtins.ascii(object) -> string +future_builtins.filter +future_builtins.hex(number) -> string +future_builtins.map +future_builtins.oct(number) -> string +future_builtins.zip +gc.DEBUG_COLLECTABLE +gc.DEBUG_INSTANCES +gc.DEBUG_LEAK +gc.DEBUG_OBJECTS +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.is_tracked(obj) -> bool +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gen_python_api.add_builtin_modules +gen_python_api.add_builtins +gen_python_api.add_keywords +gen_python_api.add_manual_modules +gen_python_api.add_other_modules +gen_python_api.add_package_modules +gen_python_api.addasgloballist +gen_python_api.api +gen_python_api.apilist +gen_python_api.builtin +gen_python_api.exclude_modules +gen_python_api.exclude_names +gen_python_api.excludedirlist +gen_python_api.excludemodulelist +gen_python_api.f +gen_python_api.folder +gen_python_api.folders +gen_python_api.manuallist +gen_python_api.module +gen_python_api.moduletypes +gen_python_api.os +gen_python_api.processFolder(??) +gen_python_api.processModule(??) +gen_python_api.processName(??) +gen_python_api.re +gen_python_api.string +gen_python_api.sys +gen_python_api.types +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os +genericpath.stat +getattr(object, name[, default]) -> value +getopt.GetoptError +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os +getopt.short_has_arg(??) +getpass.GetPassWarning +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.os +getpass.sys +getpass.termios +getpass.unix_getpass(??) +getpass.warnings +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale +gettext.ngettext(??) +gettext.os +gettext.re +gettext.struct +gettext.sys +gettext.test(??) +gettext.textdomain(??) +gettext.translation(??) +glob.fnmatch +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check +glob.os +glob.re +glob.sys +globals() -> dictionary +grp.getgrall() -> list of tuples +grp.getgrgid(id) -> tuple +grp.getgrnam(name) -> tuple +grp.struct_group +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile +gzip.READ +gzip.WRITE +gzip.io +gzip.open(??) +gzip.os +gzip.read32(??) +gzip.struct +gzip.sys +gzip.time +gzip.write32u(??) +gzip.zlib +hasattr(object, name) -> bool +hash(object) -> integer +hashlib.algorithms +hashlib.md5 +hashlib.new(name, string='') - Return a new hashing object using the named algorithm; +hashlib.sha1 +hashlib.sha224 +hashlib.sha256 +hashlib.sha384 +hashlib.sha512 +heapq.bisect +heapq.chain(*iterables) --> chain object +heapq.count(start=0, step=1) --> count object +heapq.heapify +heapq.heappop +heapq.heappush +heapq.heappushpop +heapq.heapreplace +heapq.imap(func, *iterables) --> imap object +heapq.islice(iterable, [start,] stop [, step]) --> islice object +heapq.itemgetter(item, ...) --> itemgetter object +heapq.izip(iter1 [,iter2 [...]]) --> izip object +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +heapq.repeat(object [,times]) -> create an iterator which returns the object +heapq.tee(iterable, n=2) --> tuple of n independent iterators. +help +hex(number) -> string +hmac.HMAC(??) +hmac.digest_size +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +hmac.x +hotshot.Profile(??) +hotshot.ProfilerError +hotshot.log +hotshot.log.ENTER +hotshot.log.EXIT +hotshot.log.LINE +hotshot.log.LogReader(??) +hotshot.log.WHAT_ADD_INFO +hotshot.log.WHAT_DEFINE_FILE +hotshot.log.WHAT_DEFINE_FUNC +hotshot.log.WHAT_ENTER +hotshot.log.WHAT_EXIT +hotshot.log.WHAT_LINENO +hotshot.log.os +hotshot.log.parser +hotshot.log.symbol +hotshot.stats +hotshot.stats.ENTER +hotshot.stats.EXIT +hotshot.stats.FakeCode(??) +hotshot.stats.FakeFrame(??) +hotshot.stats.Profile(??) +hotshot.stats.StatsLoader(??) +hotshot.stats.hotshot +hotshot.stats.load(??) +hotshot.stats.profile +hotshot.stats.pstats +hotshot.stones +hotshot.stones.errno +hotshot.stones.hotshot +hotshot.stones.main(??) +hotshot.stones.sys +hotshot.stones.test +htmlentitydefs.codepoint2name +htmlentitydefs.entitydefs +htmlentitydefs.name2codepoint +htmllib.AS_IS +htmllib.HTMLParseError +htmllib.HTMLParser(??) +htmllib.sgmllib +htmllib.test(??) +httplib.ACCEPTED +httplib.BAD_GATEWAY +httplib.BAD_REQUEST +httplib.BadStatusLine +httplib.CONFLICT +httplib.CONTINUE +httplib.CREATED +httplib.CannotSendHeader +httplib.CannotSendRequest +httplib.EXPECTATION_FAILED +httplib.FAILED_DEPENDENCY +httplib.FORBIDDEN +httplib.FOUND +httplib.FakeSocket(??) +httplib.GATEWAY_TIMEOUT +httplib.GONE +httplib.HTTP(??) +httplib.HTTPConnection(??) +httplib.HTTPException +httplib.HTTPMessage(??) +httplib.HTTPResponse(??) +httplib.HTTPS(??) +httplib.HTTPSConnection(??) +httplib.HTTPS_PORT +httplib.HTTP_PORT +httplib.HTTP_VERSION_NOT_SUPPORTED +httplib.IM_USED +httplib.INSUFFICIENT_STORAGE +httplib.INTERNAL_SERVER_ERROR +httplib.ImproperConnectionState +httplib.IncompleteRead +httplib.InvalidURL +httplib.LENGTH_REQUIRED +httplib.LOCKED +httplib.LineAndFileWrapper(??) +httplib.MAXAMOUNT +httplib.METHOD_NOT_ALLOWED +httplib.MOVED_PERMANENTLY +httplib.MULTIPLE_CHOICES +httplib.MULTI_STATUS +httplib.NON_AUTHORITATIVE_INFORMATION +httplib.NOT_ACCEPTABLE +httplib.NOT_EXTENDED +httplib.NOT_FOUND +httplib.NOT_IMPLEMENTED +httplib.NOT_MODIFIED +httplib.NO_CONTENT +httplib.NotConnected +httplib.OK +httplib.PARTIAL_CONTENT +httplib.PAYMENT_REQUIRED +httplib.PRECONDITION_FAILED +httplib.PROCESSING +httplib.PROXY_AUTHENTICATION_REQUIRED +httplib.REQUESTED_RANGE_NOT_SATISFIABLE +httplib.REQUEST_ENTITY_TOO_LARGE +httplib.REQUEST_TIMEOUT +httplib.REQUEST_URI_TOO_LONG +httplib.RESET_CONTENT +httplib.ResponseNotReady +httplib.SEE_OTHER +httplib.SERVICE_UNAVAILABLE +httplib.SWITCHING_PROTOCOLS +httplib.StringIO([s]) -- Return a StringIO-like stream for reading or writing +httplib.TEMPORARY_REDIRECT +httplib.UNAUTHORIZED +httplib.UNPROCESSABLE_ENTITY +httplib.UNSUPPORTED_MEDIA_TYPE +httplib.UPGRADE_REQUIRED +httplib.USE_PROXY +httplib.UnimplementedFileMode +httplib.UnknownProtocol +httplib.UnknownTransferEncoding +httplib.array(typecode [, initializer]) -> array +httplib.error +httplib.mimetools +httplib.py3kwarning +httplib.responses +httplib.socket +httplib.ssl +httplib.test(??) +httplib.urlsplit(??) +httplib.warnings +id(object) -> integer +ihooks.BUILTIN_MODULE +ihooks.BasicModuleImporter(??) +ihooks.BasicModuleLoader(??) +ihooks.C_BUILTIN +ihooks.C_EXTENSION +ihooks.FROZEN_MODULE +ihooks.FancyModuleLoader(??) +ihooks.Hooks(??) +ihooks.ModuleImporter(??) +ihooks.ModuleLoader(??) +ihooks.PKG_DIRECTORY +ihooks.PY_COMPILED +ihooks.PY_FROZEN +ihooks.PY_SOURCE +ihooks.VERBOSE +ihooks.current_importer +ihooks.default_importer +ihooks.imp +ihooks.install(??) +ihooks.os +ihooks.sys +ihooks.uninstall(??) +ihooks.warn +imaplib.AllowedVersions +imaplib.CRLF +imaplib.Commands +imaplib.Continuation +imaplib.Debug +imaplib.Flags +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate +imaplib.Internaldate2tuple(??) +imaplib.Literal +imaplib.MapCRLF +imaplib.Mon2num +imaplib.ParseFlags(??) +imaplib.Response_code +imaplib.Time2Internaldate(??) +imaplib.Untagged_response +imaplib.Untagged_status +imaplib.binascii +imaplib.random +imaplib.re +imaplib.socket +imaplib.ssl +imaplib.subprocess +imaplib.sys +imaplib.time +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exif(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.acquire_lock() -> None +imp.find_module(name, [path]) -> (file, filename, (suffix, mode, type)) +imp.get_frozen_object +imp.get_magic() -> string +imp.get_suffixes() -> [(suffix, mode, type), ...] +imp.init_builtin +imp.init_frozen +imp.is_builtin +imp.is_frozen +imp.load_compiled +imp.load_dynamic +imp.load_module(name, file, filename, (suffix, mode, type)) -> module +imp.load_package +imp.load_source +imp.lock_held() -> boolean +imp.new_module(name) -> module +imp.release_lock() -> None +imp.reload(module) -> module +importlib.import_module(??) +importlib.sys +imputil.BuiltinImporter(??) +imputil.DynLoadSuffixImporter(??) +imputil.ImportManager(??) +imputil.Importer(??) +imputil.imp +imputil.marshal +imputil.py_suffix_importer(??) +imputil.struct +imputil.sys +input([prompt]) -> value +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, keywords) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.CO_GENERATOR +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.EndOfBlock +inspect.ModuleInfo(name, suffix, mode, module_type) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.currentframe +inspect.dis +inspect.findsource(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.imp +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.joinseq(??) +inspect.linecache +inspect.modulesbyfile +inspect.namedtuple(??) +inspect.os +inspect.re +inspect.stack(??) +inspect.string +inspect.strseq(??) +inspect.sys +inspect.tokenize +inspect.trace(??) +inspect.types +inspect.walktree(??) +int(x[, base]) -> integer +intern(string) -> string +io.BlockingIOError +io.BufferedIOBase +io.BufferedRWPair +io.BufferedRandom +io.BufferedReader +io.BufferedWriter +io.BytesIO([buffer]) -> object +io.DEFAULT_BUFFER_SIZE +io.FileIO +io.IOBase +io.IncrementalNewlineDecoder +io.OpenWrapper +io.RawIOBase +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO +io.TextIOBase +io.TextIOWrapper +io.UnsupportedOperation +io.abc +io.open +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(collection) -> iterator +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable, r) --> combinations object +itertools.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.ifilter(function or None, sequence) --> ifilter object +itertools.ifilterfalse(function or None, sequence) --> ifilterfalse object +itertools.imap(func, *iterables) --> imap object +itertools.islice(iterable, [start,] stop [, step]) --> islice object +itertools.izip(iter1 [,iter2 [...]]) --> izip object +itertools.izip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> izip_longest object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +json.JSONDecoder +json.JSONEncoder +json.decoder +json.decoder.BACKSLASH +json.decoder.DEFAULT_ENCODING +json.decoder.FLAGS +json.decoder.JSONArray(??) +json.decoder.JSONDecoder +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK +json.decoder.WHITESPACE +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring +json.decoder.errmsg(??) +json.decoder.linecol(??) +json.decoder.make_scanner +json.decoder.py_scanstring(??) +json.decoder.re +json.decoder.scanstring(basestring, end, encoding, strict=True) -> (str, end) +json.decoder.struct +json.decoder.sys +json.dump(??) +json.dumps(??) +json.encoder +json.encoder.ESCAPE +json.encoder.ESCAPE_ASCII +json.encoder.ESCAPE_DCT +json.encoder.FLOAT_REPR +json.encoder.HAS_UTF8 +json.encoder.INFINITY +json.encoder.JSONEncoder +json.encoder.c_encode_basestring_ascii +json.encoder.c_make_encoder +json.encoder.encode_basestring(??) +json.encoder.encode_basestring_ascii(basestring) -> str +json.encoder.i +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re +json.load(??) +json.loads(??) +json.scanner +json.scanner.NUMBER_RE +json.scanner.c_make_scanner +json.scanner.make_scanner +json.scanner.py_make_scanner(??) +json.scanner.re +json.tool +json.tool.json +json.tool.main(??) +json.tool.sys +keyword.iskeyword +keyword.kwlist +keyword.main(??) +len(object) -> integer +license +linecache.cache +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os +linecache.sys +linecache.updatecache(??) +linuxaudiodev.AFMT_A_LAW +linuxaudiodev.AFMT_MU_LAW +linuxaudiodev.AFMT_S16_BE +linuxaudiodev.AFMT_S16_LE +linuxaudiodev.AFMT_S16_NE +linuxaudiodev.AFMT_S8 +linuxaudiodev.AFMT_U16_BE +linuxaudiodev.AFMT_U16_LE +linuxaudiodev.AFMT_U8 +linuxaudiodev.error +linuxaudiodev.open +list() -> new empty list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.bind_textdomain_codeset(domain, codeset) -> string +locale.bindtextdomain(domain, dir) -> string +locale.currency(??) +locale.dcgettext(domain, msg, category) -> string +locale.dgettext(domain, msg) -> string +locale.encodings +locale.format(??) +locale.format_string(??) +locale.functools +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.gettext(msg) -> string +locale.locale_alias +locale.locale_encoding_alias +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.operator +locale.re +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll +locale.strxfrm +locale.sys +locale.textdomain(domain) -> string +locale.windows_locale +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler +logging.Filter +logging.Filterer +logging.Formatter +logging.Handler +logging.INFO +logging.LogRecord +logging.Logger +logging.LoggerAdapter +logging.Manager +logging.NOTSET +logging.NullHandler +logging.PlaceHolder +logging.RootLogger +logging.StreamHandler +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit +logging.basicConfig(??) +logging.cStringIO +logging.captureWarnings(??) +logging.codecs +logging.config +logging.config.BaseConfigurator +logging.config.ConvertingDict +logging.config.ConvertingList +logging.config.ConvertingTuple +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator +logging.config.IDENTIFIER +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.cStringIO +logging.config.dictConfig(??) +logging.config.dictConfigClass +logging.config.fileConfig(??) +logging.config.listen(??) +logging.config.logging +logging.config.os +logging.config.re +logging.config.socket +logging.config.stopListening(??) +logging.config.struct +logging.config.sys +logging.config.thread +logging.config.threading +logging.config.traceback +logging.config.types +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers +logging.handlers.BaseRotatingHandler +logging.handlers.BufferingHandler +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler +logging.handlers.HTTPHandler +logging.handlers.MemoryHandler +logging.handlers.NTEventLogHandler +logging.handlers.RotatingFileHandler +logging.handlers.SMTPHandler +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler +logging.handlers.SysLogHandler +logging.handlers.TimedRotatingFileHandler +logging.handlers.WatchedFileHandler +logging.handlers.cPickle +logging.handlers.codecs +logging.handlers.logging +logging.handlers.os +logging.handlers.re +logging.handlers.socket +logging.handlers.struct +logging.handlers.time +logging.info(??) +logging.log(??) +logging.logMultiprocessing +logging.logProcesses +logging.logThreads +logging.makeLogRecord(??) +logging.os +logging.raiseExceptions +logging.root +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys +logging.thread +logging.threading +logging.time +logging.traceback +logging.warn(??) +logging.warning(??) +logging.warnings +logging.weakref +long(x[, base]) -> integer +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(??) +macpath.S_ISCHR(??) +macpath.S_ISDIR(??) +macpath.S_ISFIFO(??) +macpath.S_ISGID +macpath.S_ISLNK(??) +macpath.S_ISREG(??) +macpath.S_ISSOCK(??) +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.genericpath +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error +macpath.normcase(??) +macpath.normpath(??) +macpath.os +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames +macpath.walk(??) +macpath.warnings +macurl2path.os +macurl2path.pathname2url(??) +macurl2path.test(??) +macurl2path.url2pathname(??) +macurl2path.urllib +mailbox.Babyl(??) +mailbox.BabylMailbox(??) +mailbox.BabylMessage(??) +mailbox.Error +mailbox.ExternalClashError +mailbox.FormatError +mailbox.MH(??) +mailbox.MHMailbox(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.MmdfMailbox(??) +mailbox.NoSuchMailboxError +mailbox.NotEmptyError +mailbox.PortableUnixMailbox(??) +mailbox.StringIO +mailbox.UnixMailbox(??) +mailbox.calendar +mailbox.copy +mailbox.email +mailbox.errno +mailbox.fcntl +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os +mailbox.rfc822 +mailbox.socket +mailbox.sys +mailbox.time +mailbox.warnings +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(function, sequence[, sequence, ...]) -> list +markupbase.ParserBase(??) +marshal.dump(value, file[, version]) +marshal.dumps(value[, version]) +marshal.load(file) +marshal.loads(string) +marshal.version +math.acos(x) +math.acosh(x) +math.asin(x) +math.asinh(x) +math.atan(x) +math.atan2(y, x) +math.atanh(x) +math.ceil(x) +math.copysign(x, y) +math.cos(x) +math.cosh(x) +math.degrees(x) +math.e +math.erf(x) +math.erfc(x) +math.exp(x) +math.expm1(x) +math.fabs(x) +math.factorial(x) -> Integral +math.floor(x) +math.fmod(x, y) +math.frexp(x) +math.fsum(iterable) +math.gamma(x) +math.hypot(x, y) +math.isinf(x) -> bool +math.isnan(x) -> bool +math.ldexp(x, i) +math.lgamma(x) +math.log(x[, base]) +math.log10(x) +math.log1p(x) +math.modf(x) +math.pi +math.pow(x, y) +math.radians(x) +math.sin(x) +math.sinh(x) +math.sqrt(x) +math.tan(x) +math.tanh(x) +math.trunc(x:Real) -> Integral +max(iterable[, key=func]) -> value +md5.blocksize +md5.digest_size +md5.md5 +md5.new +md5.warnings +memoryview(object) +mhlib.Error +mhlib.FOLDER_PROTECT +mhlib.Folder(??) +mhlib.IntSet(??) +mhlib.MH(??) +mhlib.MH_PROFILE +mhlib.MH_SEQUENCES +mhlib.Message(??) +mhlib.PATH +mhlib.SubMessage(??) +mhlib.bisect +mhlib.isnumeric(??) +mhlib.mimetools +mhlib.multifile +mhlib.numericprog +mhlib.os +mhlib.pickline(??) +mhlib.re +mhlib.shutil +mhlib.sys +mhlib.test(??) +mhlib.updateline(??) +mimetools.Message(??) +mimetools.catch_warnings +mimetools.choose_boundary(??) +mimetools.copybinary(??) +mimetools.copyliteral(??) +mimetools.decode(??) +mimetools.decodetab +mimetools.encode(??) +mimetools.encodetab +mimetools.filterwarnings(??) +mimetools.os +mimetools.pipethrough(??) +mimetools.pipeto(??) +mimetools.rfc822 +mimetools.sys +mimetools.tempfile +mimetools.uudecode_pipe +mimetools.warnpy3k(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types +mimetypes.encodings_map +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited +mimetypes.knownfiles +mimetypes.os +mimetypes.posixpath +mimetypes.read_mime_types(??) +mimetypes.suffix_map +mimetypes.sys +mimetypes.types_map +mimetypes.urllib +mimify.CHARSET +mimify.File(??) +mimify.HeaderFile(??) +mimify.MAXLEN +mimify.QUOTE +mimify.base64_re +mimify.chrset +mimify.cte +mimify.he +mimify.iso_char +mimify.mime_char +mimify.mime_code +mimify.mime_decode(??) +mimify.mime_decode_header(??) +mimify.mime_encode(??) +mimify.mime_encode_header(??) +mimify.mime_head +mimify.mime_header +mimify.mime_header_char +mimify.mimify(??) +mimify.mimify_part(??) +mimify.mp +mimify.mv +mimify.qp +mimify.re +mimify.repl +mimify.sys +mimify.unmimify(??) +mimify.unmimify_part(??) +mimify.warnings +min(iterable[, key=func]) -> value +mmap.ACCESS_COPY +mmap.ACCESS_READ +mmap.ACCESS_WRITE +mmap.ALLOCATIONGRANULARITY +mmap.MAP_ANON +mmap.MAP_ANONYMOUS +mmap.MAP_DENYWRITE +mmap.MAP_EXECUTABLE +mmap.MAP_PRIVATE +mmap.MAP_SHARED +mmap.PAGESIZE +mmap.PROT_EXEC +mmap.PROT_READ +mmap.PROT_WRITE +mmap.error +mmap.mmap +modulefinder.AddPackagePath(??) +modulefinder.HAVE_ARGUMENT +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.READ_MODE +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS +modulefinder.dis +modulefinder.generators +modulefinder.imp +modulefinder.marshal +modulefinder.os +modulefinder.packagePathMap +modulefinder.replacePackageMap +modulefinder.struct +modulefinder.sys +modulefinder.test(??) +modulefinder.types +multifile.Error +multifile.MultiFile(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process +multiprocessing.ProcessError +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.TimeoutError +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection +multiprocessing.connection.AuthenticationError +multiprocessing.connection.BUFSIZE +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.ConnectionWrapper +multiprocessing.connection.FAILURE +multiprocessing.connection.Finalize +multiprocessing.connection.Listener +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.close(fd) +multiprocessing.connection.current_process(??) +multiprocessing.connection.debug(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.duplicate +multiprocessing.connection.errno +multiprocessing.connection.families +multiprocessing.connection.get_temp_dir(??) +multiprocessing.connection.itertools +multiprocessing.connection.os +multiprocessing.connection.socket +multiprocessing.connection.sub_debug(??) +multiprocessing.connection.sys +multiprocessing.connection.tempfile +multiprocessing.connection.time +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy +multiprocessing.dummy.Array(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition +multiprocessing.dummy.DummyProcess +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.TimeoutError +multiprocessing.dummy.Value +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array +multiprocessing.dummy.connection +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection +multiprocessing.dummy.connection.Listener +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families +multiprocessing.dummy.cpu_count(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.itertools +multiprocessing.dummy.list() -> new empty list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys +multiprocessing.dummy.threading +multiprocessing.dummy.weakref +multiprocessing.forking +multiprocessing.forking.ForkingPickler(??) +multiprocessing.forking.Pickler(??) +multiprocessing.forking.Popen +multiprocessing.forking.assert_spawning(??) +multiprocessing.forking.close(fd) +multiprocessing.forking.duplicate +multiprocessing.forking.exit +multiprocessing.forking.old_main_modules +multiprocessing.forking.os +multiprocessing.forking.partial(func, *args, **keywords) - new function with partial application +multiprocessing.forking.prepare(??) +multiprocessing.forking.process +multiprocessing.forking.signal +multiprocessing.forking.sys +multiprocessing.forking.time +multiprocessing.forking.util +multiprocessing.freeze_support(??) +multiprocessing.get_logger(??) +multiprocessing.heap +multiprocessing.heap.Arena +multiprocessing.heap.BufferWrapper +multiprocessing.heap.Finalize +multiprocessing.heap.Heap +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect +multiprocessing.heap.info(??) +multiprocessing.heap.itertools +multiprocessing.heap.mmap +multiprocessing.heap.os +multiprocessing.heap.sys +multiprocessing.heap.tempfile +multiprocessing.heap.threading +multiprocessing.log_to_stderr(??) +multiprocessing.managers +multiprocessing.managers.AcquirerProxy +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy +multiprocessing.managers.AuthenticationString +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BaseListProxy +multiprocessing.managers.BaseManager +multiprocessing.managers.BaseProxy +multiprocessing.managers.ConditionProxy +multiprocessing.managers.DictProxy +multiprocessing.managers.EventProxy +multiprocessing.managers.Finalize +multiprocessing.managers.ForkingPickler(??) +multiprocessing.managers.IteratorProxy +multiprocessing.managers.ListProxy +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace +multiprocessing.managers.NamespaceProxy +multiprocessing.managers.PicklingError +multiprocessing.managers.Pool(??) +multiprocessing.managers.PoolProxy +multiprocessing.managers.Popen +multiprocessing.managers.Process +multiprocessing.managers.ProcessLocalSet +multiprocessing.managers.Queue +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError +multiprocessing.managers.Server +multiprocessing.managers.State +multiprocessing.managers.SyncManager +multiprocessing.managers.Token +multiprocessing.managers.Value +multiprocessing.managers.ValueProxy +multiprocessing.managers.active_children(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array +multiprocessing.managers.assert_spawning(??) +multiprocessing.managers.connection +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.current_process(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.exit +multiprocessing.managers.format_exc(??) +multiprocessing.managers.info(??) +multiprocessing.managers.listener_client +multiprocessing.managers.name +multiprocessing.managers.os +multiprocessing.managers.public_methods(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.sys +multiprocessing.managers.threading +multiprocessing.managers.util +multiprocessing.managers.view_types +multiprocessing.managers.weakref +multiprocessing.os +multiprocessing.pool +multiprocessing.pool.ApplyResult +multiprocessing.pool.CLOSE +multiprocessing.pool.Finalize +multiprocessing.pool.IMapIterator +multiprocessing.pool.IMapUnorderedIterator +multiprocessing.pool.MapResult +multiprocessing.pool.Pool +multiprocessing.pool.Process +multiprocessing.pool.Queue +multiprocessing.pool.RUN +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool +multiprocessing.pool.TimeoutError +multiprocessing.pool.collections +multiprocessing.pool.cpu_count(??) +multiprocessing.pool.debug(??) +multiprocessing.pool.itertools +multiprocessing.pool.job_counter +multiprocessing.pool.mapstar(??) +multiprocessing.pool.threading +multiprocessing.pool.time +multiprocessing.pool.worker(??) +multiprocessing.process +multiprocessing.process.AuthenticationString +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.Process +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools +multiprocessing.process.name +multiprocessing.process.os +multiprocessing.process.signal +multiprocessing.process.signum +multiprocessing.process.sys +multiprocessing.queues +multiprocessing.queues.BoundedSemaphore +multiprocessing.queues.Condition +multiprocessing.queues.Empty +multiprocessing.queues.Finalize +multiprocessing.queues.Full +multiprocessing.queues.JoinableQueue +multiprocessing.queues.Lock +multiprocessing.queues.Pipe(??) +multiprocessing.queues.Queue +multiprocessing.queues.Semaphore +multiprocessing.queues.SimpleQueue +multiprocessing.queues.assert_spawning(??) +multiprocessing.queues.atexit +multiprocessing.queues.collections +multiprocessing.queues.debug(??) +multiprocessing.queues.info(??) +multiprocessing.queues.os +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys +multiprocessing.queues.threading +multiprocessing.queues.time +multiprocessing.queues.weakref +multiprocessing.reduction +multiprocessing.reduction.Client(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.Listener +multiprocessing.reduction.Popen +multiprocessing.reduction.close(fd) +multiprocessing.reduction.current_process(??) +multiprocessing.reduction.debug(??) +multiprocessing.reduction.duplicate +multiprocessing.reduction.fromfd(??) +multiprocessing.reduction.os +multiprocessing.reduction.rebuild_connection(??) +multiprocessing.reduction.rebuild_handle(??) +multiprocessing.reduction.rebuild_socket(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.reduce_connection(??) +multiprocessing.reduction.reduce_handle(??) +multiprocessing.reduction.reduce_socket(??) +multiprocessing.reduction.register_after_fork(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.socket +multiprocessing.reduction.sub_debug(??) +multiprocessing.reduction.sys +multiprocessing.reduction.threading +multiprocessing.sharedctypes +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.ForkingPickler(??) +multiprocessing.sharedctypes.RLock(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized +multiprocessing.sharedctypes.SynchronizedArray +multiprocessing.sharedctypes.SynchronizedBase +multiprocessing.sharedctypes.SynchronizedString +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes +multiprocessing.sharedctypes.heap +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.sys +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type +multiprocessing.sharedctypes.weakref +multiprocessing.synchronize +multiprocessing.synchronize.BoundedSemaphore +multiprocessing.synchronize.Condition +multiprocessing.synchronize.Event +multiprocessing.synchronize.Finalize +multiprocessing.synchronize.Lock +multiprocessing.synchronize.Popen +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock +multiprocessing.synchronize.Semaphore +multiprocessing.synchronize.assert_spawning(??) +multiprocessing.synchronize.current_process(??) +multiprocessing.synchronize.debug(??) +multiprocessing.synchronize.os +multiprocessing.synchronize.register_after_fork(??) +multiprocessing.synchronize.sys +multiprocessing.synchronize.threading +multiprocessing.sys +multiprocessing.util +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize +multiprocessing.util.ForkAwareLocal +multiprocessing.util.ForkAwareThreadLock +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.active_children(??) +multiprocessing.util.atexit +multiprocessing.util.current_process(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.threading +multiprocessing.util.weakref +mutex.deque(iterable[, maxlen]) --> deque object +mutex.mutex(??) +netrc.NetrcParseError +netrc.netrc(??) +netrc.os +netrc.shlex +new.classobj(name, bases, dict) +new.code +new.function(code, globals[, name[, argdefs[, closure]]]) +new.instance(class[, dict]) +new.instancemethod(function, instance, class) +new.module(name[, doc]) +next(iterator[, default]) +nis.cat(map, domain = defaultdomain) +nis.error +nis.get_default_domain() -> str +nis.maps(domain = defaultdomain) +nis.match(key, map, domain = defaultdomain) +nntplib.CRLF +nntplib.LONGRESP +nntplib.NNTP(??) +nntplib.NNTPDataError +nntplib.NNTPError +nntplib.NNTPPermanentError +nntplib.NNTPProtocolError +nntplib.NNTPReplyError +nntplib.NNTPTemporaryError +nntplib.NNTP_PORT +nntplib.error_data +nntplib.error_perm +nntplib.error_proto +nntplib.error_reply +nntplib.error_temp +nntplib.re +nntplib.socket +ntpath.abspath(??) +ntpath.altsep +ntpath.basename(??) +ntpath.commonprefix(??) +ntpath.curdir +ntpath.defpath +ntpath.devnull +ntpath.dirname(??) +ntpath.exists(??) +ntpath.expanduser(??) +ntpath.expandvars(??) +ntpath.extsep +ntpath.genericpath +ntpath.getatime(??) +ntpath.getctime(??) +ntpath.getmtime(??) +ntpath.getsize(??) +ntpath.isabs(??) +ntpath.isdir(??) +ntpath.isfile(??) +ntpath.islink(??) +ntpath.ismount(??) +ntpath.join(??) +ntpath.lexists(??) +ntpath.normcase(??) +ntpath.normpath(??) +ntpath.os +ntpath.pardir +ntpath.pathsep +ntpath.realpath(??) +ntpath.relpath(??) +ntpath.sep +ntpath.split(??) +ntpath.splitdrive(??) +ntpath.splitext(??) +ntpath.splitunc(??) +ntpath.stat +ntpath.supports_unicode_filenames +ntpath.sys +ntpath.walk(??) +ntpath.warnings +nturl2path.pathname2url(??) +nturl2path.url2pathname(??) +numbers.ABCMeta +numbers.Complex +numbers.Integral +numbers.Number +numbers.Rational +numbers.Real +numbers.abstractmethod(??) +numbers.abstractproperty +numbers.division +object +oct(number) -> string +opcode.EXTENDED_ARG +opcode.HAVE_ARGUMENT +opcode.cmp_op +opcode.hascompare +opcode.hasconst +opcode.hasfree +opcode.hasjabs +opcode.hasjrel +opcode.haslocal +opcode.hasname +opcode.opmap +opcode.opname +open(name[, mode[, buffering]]) -> file object +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.delslice(a, b, c) -- Same as del a[b:c]. +operator.div(a, b) -- Same as a / b when __future__.division is not in effect. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.getslice(a, b, c) -- Same as a[b:c]. +operator.gt(a, b) -- Same as a>b. +operator.iadd +operator.iand +operator.iconcat +operator.idiv +operator.ifloordiv +operator.ilshift +operator.imod +operator.imul +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior +operator.ipow +operator.irepeat +operator.irshift +operator.isCallable(a) -- Same as callable(a). +operator.isMappingType(a) -- Return True if a has a mapping type, False otherwise. +operator.isNumberType(a) -- Return True if a has a numeric type, False otherwise. +operator.isSequenceType(a) -- Return True if a has a sequence type, False otherwise. +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv +operator.ixor +operator.le(a, b) -- Same as a<=b. +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.repeat(a, b) -- Return a * b, where a is a sequence, and b is an integer. +operator.rshift(a, b) -- Same as a >> b. +operator.sequenceIncludes(a, b) -- Same as b in a (note reversed operands; deprecated). +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.setslice(a, b, c, d) -- Same as a[b:c] = d. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b when __future__.division is in effect. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError +optparse.BadOptionError +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT +optparse.OptParseError +optparse.Option(??) +optparse.OptionConflictError +optparse.OptionContainer(??) +optparse.OptionError +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.isbasestring(??) +optparse.make_option(??) +optparse.os +optparse.sys +optparse.textwrap +optparse.types +ord(c) -> integer +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_OK +os.NGROUPS_MAX +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_LARGEFILE +os.O_NDELAY +os.O_NOATIME +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_RSYNC +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.P_NOWAIT +os.P_NOWAITO +os.P_WAIT +os.R_OK +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.TMP_MAX +os.UserDict +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(path, mode) -> True if granted, False otherwise +os.altsep +os.chdir(path) +os.chmod(path, mode) +os.chown(path, uid, gid) +os.chroot(path) +os.close(fd) +os.closerange(fd_low, fd_high) +os.confstr(name) -> string +os.confstr_names +os.ctermid() -> string +os.curdir +os.defpath +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ +os.errno +os.error +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fildes) +os.fchmod(fd, mode) +os.fchown(fd, uid, gid) +os.fdatasync(fildes) +os.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.getcwd() -> path +os.getcwdu() -> path +os.getegid() -> egid +os.getenv(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getresgid() -> (rgid, egid, sgid) +os.getresuid() -> (ruid, euid, suid) +os.getsid(pid) -> sid +os.getuid() -> uid +os.initgroups(username, gid) -> None +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst) +os.listdir(path) -> list_of_strings +os.lseek(fd, pos, how) -> newpos +os.lstat(path) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0777]) +os.minor(device) -> minor number +os.mkdir(path [, mode=0777]) +os.mkfifo(filename [, mode=0666]) +os.mknod(filename [, mode=0600, device]) +os.name +os.nice(inc) -> new_priority +os.open(filename, flag [, mode=0777]) -> fd +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path +os.pathconf(path, name) -> integer +os.pathconf_names +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(command [, mode='r' [, bufsize]]) -> pipe +os.popen2(??) +os.popen3(??) +os.popen4(??) +os.putenv(key, value) +os.read(fd, buffersize) -> string +os.readlink(path) -> path +os.remove(path) +os.removedirs(path) +os.rename(old, new) +os.renames(old, new) +os.rmdir(path) +os.sep +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setregid(rgid, egid) +os.setresgid(rgid, egid, sgid) +os.setresuid(ruid, euid, suid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.stat(path) -> stat result +os.stat_float_times([newval]) -> oldval +os.stat_result +os.statvfs(path) -> statvfs result +os.statvfs_result +os.strerror(code) -> string +os.symlink(src, dst) +os.sys +os.sysconf(name) -> integer +os.sysconf_names +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.tempnam([dir[, prefix]]) -> string +os.times() -> (utime, stime, cutime, cstime, elapsed_time) +os.tmpfile() -> file object +os.tmpnam() -> string +os.ttyname(fd) -> string +os.umask(new_mask) -> old_mask +os.uname() -> (sysname, nodename, release, version, machine) +os.unlink(path) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, (atime, mtime)) +os.wait() -> (pid, status) +os.wait3(options) -> (pid, status, rusage) +os.wait4(pid, options) -> (pid, status, rusage) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, string) -> byteswritten +os2emxpath.abspath(??) +os2emxpath.altsep +os2emxpath.basename(??) +os2emxpath.commonprefix(??) +os2emxpath.curdir +os2emxpath.defpath +os2emxpath.devnull +os2emxpath.dirname(??) +os2emxpath.exists(??) +os2emxpath.expanduser(??) +os2emxpath.expandvars(??) +os2emxpath.extsep +os2emxpath.getatime(??) +os2emxpath.getctime(??) +os2emxpath.getmtime(??) +os2emxpath.getsize(??) +os2emxpath.isabs(??) +os2emxpath.isdir(??) +os2emxpath.isfile(??) +os2emxpath.islink(??) +os2emxpath.ismount(??) +os2emxpath.join(??) +os2emxpath.lexists(??) +os2emxpath.normcase(??) +os2emxpath.normpath(??) +os2emxpath.os +os2emxpath.pardir +os2emxpath.pathsep +os2emxpath.realpath(??) +os2emxpath.sep +os2emxpath.split(??) +os2emxpath.splitdrive(??) +os2emxpath.splitext(??) +os2emxpath.splitunc(??) +os2emxpath.stat +os2emxpath.supports_unicode_filenames +os2emxpath.walk(??) +ossaudiodev.AFMT_AC3 +ossaudiodev.AFMT_A_LAW +ossaudiodev.AFMT_IMA_ADPCM +ossaudiodev.AFMT_MPEG +ossaudiodev.AFMT_MU_LAW +ossaudiodev.AFMT_QUERY +ossaudiodev.AFMT_S16_BE +ossaudiodev.AFMT_S16_LE +ossaudiodev.AFMT_S16_NE +ossaudiodev.AFMT_S8 +ossaudiodev.AFMT_U16_BE +ossaudiodev.AFMT_U16_LE +ossaudiodev.AFMT_U8 +ossaudiodev.OSSAudioError +ossaudiodev.SNDCTL_COPR_HALT +ossaudiodev.SNDCTL_COPR_LOAD +ossaudiodev.SNDCTL_COPR_RCODE +ossaudiodev.SNDCTL_COPR_RCVMSG +ossaudiodev.SNDCTL_COPR_RDATA +ossaudiodev.SNDCTL_COPR_RESET +ossaudiodev.SNDCTL_COPR_RUN +ossaudiodev.SNDCTL_COPR_SENDMSG +ossaudiodev.SNDCTL_COPR_WCODE +ossaudiodev.SNDCTL_COPR_WDATA +ossaudiodev.SNDCTL_DSP_BIND_CHANNEL +ossaudiodev.SNDCTL_DSP_CHANNELS +ossaudiodev.SNDCTL_DSP_GETBLKSIZE +ossaudiodev.SNDCTL_DSP_GETCAPS +ossaudiodev.SNDCTL_DSP_GETCHANNELMASK +ossaudiodev.SNDCTL_DSP_GETFMTS +ossaudiodev.SNDCTL_DSP_GETIPTR +ossaudiodev.SNDCTL_DSP_GETISPACE +ossaudiodev.SNDCTL_DSP_GETODELAY +ossaudiodev.SNDCTL_DSP_GETOPTR +ossaudiodev.SNDCTL_DSP_GETOSPACE +ossaudiodev.SNDCTL_DSP_GETSPDIF +ossaudiodev.SNDCTL_DSP_GETTRIGGER +ossaudiodev.SNDCTL_DSP_MAPINBUF +ossaudiodev.SNDCTL_DSP_MAPOUTBUF +ossaudiodev.SNDCTL_DSP_NONBLOCK +ossaudiodev.SNDCTL_DSP_POST +ossaudiodev.SNDCTL_DSP_PROFILE +ossaudiodev.SNDCTL_DSP_RESET +ossaudiodev.SNDCTL_DSP_SAMPLESIZE +ossaudiodev.SNDCTL_DSP_SETDUPLEX +ossaudiodev.SNDCTL_DSP_SETFMT +ossaudiodev.SNDCTL_DSP_SETFRAGMENT +ossaudiodev.SNDCTL_DSP_SETSPDIF +ossaudiodev.SNDCTL_DSP_SETSYNCRO +ossaudiodev.SNDCTL_DSP_SETTRIGGER +ossaudiodev.SNDCTL_DSP_SPEED +ossaudiodev.SNDCTL_DSP_STEREO +ossaudiodev.SNDCTL_DSP_SUBDIVIDE +ossaudiodev.SNDCTL_DSP_SYNC +ossaudiodev.SNDCTL_FM_4OP_ENABLE +ossaudiodev.SNDCTL_FM_LOAD_INSTR +ossaudiodev.SNDCTL_MIDI_INFO +ossaudiodev.SNDCTL_MIDI_MPUCMD +ossaudiodev.SNDCTL_MIDI_MPUMODE +ossaudiodev.SNDCTL_MIDI_PRETIME +ossaudiodev.SNDCTL_SEQ_CTRLRATE +ossaudiodev.SNDCTL_SEQ_GETINCOUNT +ossaudiodev.SNDCTL_SEQ_GETOUTCOUNT +ossaudiodev.SNDCTL_SEQ_GETTIME +ossaudiodev.SNDCTL_SEQ_NRMIDIS +ossaudiodev.SNDCTL_SEQ_NRSYNTHS +ossaudiodev.SNDCTL_SEQ_OUTOFBAND +ossaudiodev.SNDCTL_SEQ_PANIC +ossaudiodev.SNDCTL_SEQ_PERCMODE +ossaudiodev.SNDCTL_SEQ_RESET +ossaudiodev.SNDCTL_SEQ_RESETSAMPLES +ossaudiodev.SNDCTL_SEQ_SYNC +ossaudiodev.SNDCTL_SEQ_TESTMIDI +ossaudiodev.SNDCTL_SEQ_THRESHOLD +ossaudiodev.SNDCTL_SYNTH_CONTROL +ossaudiodev.SNDCTL_SYNTH_ID +ossaudiodev.SNDCTL_SYNTH_INFO +ossaudiodev.SNDCTL_SYNTH_MEMAVL +ossaudiodev.SNDCTL_SYNTH_REMOVESAMPLE +ossaudiodev.SNDCTL_TMR_CONTINUE +ossaudiodev.SNDCTL_TMR_METRONOME +ossaudiodev.SNDCTL_TMR_SELECT +ossaudiodev.SNDCTL_TMR_SOURCE +ossaudiodev.SNDCTL_TMR_START +ossaudiodev.SNDCTL_TMR_STOP +ossaudiodev.SNDCTL_TMR_TEMPO +ossaudiodev.SNDCTL_TMR_TIMEBASE +ossaudiodev.SOUND_MIXER_ALTPCM +ossaudiodev.SOUND_MIXER_BASS +ossaudiodev.SOUND_MIXER_CD +ossaudiodev.SOUND_MIXER_DIGITAL1 +ossaudiodev.SOUND_MIXER_DIGITAL2 +ossaudiodev.SOUND_MIXER_DIGITAL3 +ossaudiodev.SOUND_MIXER_IGAIN +ossaudiodev.SOUND_MIXER_IMIX +ossaudiodev.SOUND_MIXER_LINE +ossaudiodev.SOUND_MIXER_LINE1 +ossaudiodev.SOUND_MIXER_LINE2 +ossaudiodev.SOUND_MIXER_LINE3 +ossaudiodev.SOUND_MIXER_MIC +ossaudiodev.SOUND_MIXER_MONITOR +ossaudiodev.SOUND_MIXER_NRDEVICES +ossaudiodev.SOUND_MIXER_OGAIN +ossaudiodev.SOUND_MIXER_PCM +ossaudiodev.SOUND_MIXER_PHONEIN +ossaudiodev.SOUND_MIXER_PHONEOUT +ossaudiodev.SOUND_MIXER_RADIO +ossaudiodev.SOUND_MIXER_RECLEV +ossaudiodev.SOUND_MIXER_SPEAKER +ossaudiodev.SOUND_MIXER_SYNTH +ossaudiodev.SOUND_MIXER_TREBLE +ossaudiodev.SOUND_MIXER_VIDEO +ossaudiodev.SOUND_MIXER_VOLUME +ossaudiodev.control_labels +ossaudiodev.control_names +ossaudiodev.error +ossaudiodev.open +ossaudiodev.openmixer +parser.ASTType +parser.ParserError +parser.STType +parser.ast2list +parser.ast2tuple +parser.compileast +parser.compilest +parser.expr +parser.isexpr +parser.issuite +parser.sequence2ast +parser.sequence2st +parser.st2list +parser.st2tuple +parser.suite +parser.tuple2ast +parser.tuple2st +pdb.Pdb(??) +pdb.Repr(??) +pdb.Restart +pdb.TESTCMD +pdb.bdb +pdb.cmd +pdb.find_function(??) +pdb.help(??) +pdb.line_prefix +pdb.linecache +pdb.main(??) +pdb.os +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint +pdb.re +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.sys +pdb.test(??) +pdb.traceback +pickle.APPEND +pickle.APPENDS +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BUILD +pickle.BooleanType +pickle.BufferType +pickle.BuiltinFunctionType +pickle.BuiltinMethodType +pickle.ClassType +pickle.CodeType +pickle.ComplexType +pickle.DICT +pickle.DUP +pickle.DictProxyType +pickle.DictType +pickle.DictionaryType +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.EllipsisType +pickle.FALSE +pickle.FLOAT +pickle.FileType +pickle.FloatType +pickle.FrameType +pickle.FunctionType +pickle.GET +pickle.GLOBAL +pickle.GeneratorType +pickle.GetSetDescriptorType +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.InstanceType +pickle.IntType +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.LambdaType +pickle.ListType +pickle.LongType +pickle.MARK +pickle.MemberDescriptorType +pickle.MethodType +pickle.ModuleType +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWTRUE +pickle.NONE +pickle.NoneType +pickle.NotImplementedType +pickle.OBJ +pickle.ObjectType +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError +pickle.Pickler(??) +pickle.PicklingError +pickle.PyStringMap +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINSTRING +pickle.STOP +pickle.STRING +pickle.SliceType +pickle.StringIO([s]) -- Return a StringIO-like stream for reading or writing +pickle.StringType +pickle.StringTypes +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.TracebackType +pickle.TupleType +pickle.TypeType +pickle.UNICODE +pickle.UnboundMethodType +pickle.UnicodeType +pickle.Unpickler(??) +pickle.UnpicklingError +pickle.XRangeType +pickle.classmap +pickle.compatible_formats +pickle.decode_long(??) +pickle.dispatch_table +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.load(??) +pickle.loads(??) +pickle.marshal +pickle.mloads +pickle.re +pickle.struct +pickle.sys +pickle.whichmodule(??) +pickletools.ArgumentDescriptor +pickletools.OpcodeInfo +pickletools.StackObject +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.UP_TO_NEWLINE +pickletools.anyobject +pickletools.code2op +pickletools.decimalnl_long +pickletools.decimalnl_short +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8 +pickletools.floatnl +pickletools.genops(??) +pickletools.int4 +pickletools.long1 +pickletools.long4 +pickletools.markobject +pickletools.opcodes +pickletools.optimize(??) +pickletools.pybool +pickletools.pydict +pickletools.pyfloat +pickletools.pyint +pickletools.pyinteger_or_bool +pickletools.pylist +pickletools.pylong +pickletools.pynone +pickletools.pystring +pickletools.pytuple +pickletools.pyunicode +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice +pickletools.string1 +pickletools.string4 +pickletools.stringnl +pickletools.stringnl_noescape +pickletools.stringnl_noescape_pair +pickletools.uint1 +pickletools.uint2 +pickletools.unicodestring4 +pickletools.unicodestringnl +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os +pipes.quote(??) +pipes.re +pipes.stepkinds +pipes.string +pipes.tempfile +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.imp +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys +pkgutil.walk_packages(??) +pkgutil.zipimport +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.DEV_NULL +platform.architecture(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re +platform.release(??) +platform.string +platform.sys +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.version(??) +platform.win32_ver(??) +plistlib.Data(??) +plistlib.Dict +plistlib.DumbXMLWriter(??) +plistlib.PLISTHEADER +plistlib.Plist +plistlib.PlistParser(??) +plistlib.PlistWriter(??) +plistlib.StringIO([s]) -- Return a StringIO-like stream for reading or writing +plistlib.binascii +plistlib.datetime +plistlib.re +plistlib.readPlist(??) +plistlib.readPlistFromResource(??) +plistlib.readPlistFromString(??) +plistlib.warnings +plistlib.writePlist(??) +plistlib.writePlistToResource(??) +plistlib.writePlistToString(??) +popen2.MAXFD +popen2.Popen3(??) +popen2.Popen4(??) +popen2.os +popen2.popen2(??) +popen2.popen3(??) +popen2.popen4(??) +popen2.sys +popen2.warnings +poplib.CR +poplib.CRLF +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.error_proto +poplib.re +poplib.socket +poplib.ssl +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_OK +posix.NGROUPS_MAX +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_LARGEFILE +posix.O_NDELAY +posix.O_NOATIME +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_RSYNC +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.R_OK +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(path, mode) -> True if granted, False otherwise +posix.chdir(path) +posix.chmod(path, mode) +posix.chown(path, uid, gid) +posix.chroot(path) +posix.close(fd) +posix.closerange(fd_low, fd_high) +posix.confstr(name) -> string +posix.confstr_names +posix.ctermid() -> string +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ +posix.error +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fildes) +posix.fchmod(fd, mode) +posix.fchown(fd, uid, gid) +posix.fdatasync(fildes) +posix.fdopen(fd [, mode='r' [, bufsize]]) -> file_object +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.getcwd() -> path +posix.getcwdu() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getresgid() -> (rgid, egid, sgid) +posix.getresuid() -> (ruid, euid, suid) +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.initgroups(username, gid) -> None +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchown(path, uid, gid) +posix.link(src, dst) +posix.listdir(path) -> list_of_strings +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path [, mode=0777]) +posix.mkfifo(filename [, mode=0666]) +posix.mknod(filename [, mode=0600, device]) +posix.nice(inc) -> new_priority +posix.open(filename, flag [, mode=0777]) -> fd +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names +posix.pipe() -> (read_end, write_end) +posix.popen(command [, mode='r' [, bufsize]]) -> pipe +posix.putenv(key, value) +posix.read(fd, buffersize) -> string +posix.readlink(path) -> path +posix.remove(path) +posix.rename(old, new) +posix.rmdir(path) +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setregid(rgid, egid) +posix.setresgid(rgid, egid, sgid) +posix.setresuid(ruid, euid, suid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(path) -> stat result +posix.stat_float_times([newval]) -> oldval +posix.stat_result +posix.statvfs(path) -> statvfs result +posix.statvfs_result +posix.strerror(code) -> string +posix.symlink(src, dst) +posix.sysconf(name) -> integer +posix.sysconf_names +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.tempnam([dir[, prefix]]) -> string +posix.times() -> (utime, stime, cutime, cstime, elapsed_time) +posix.tmpfile() -> file object +posix.tmpnam() -> string +posix.ttyname(fd) -> string +posix.umask(new_mask) -> old_mask +posix.uname() -> (sysname, nodename, release, version, machine) +posix.unlink(path) +posix.unsetenv(key) +posix.utime(path, (atime, mtime)) +posix.wait() -> (pid, status) +posix.wait3(options) -> (pid, status, rusage) +posix.wait4(pid, options) -> (pid, status, rusage) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, string) -> byteswritten +posixfile.SEEK_CUR +posixfile.SEEK_END +posixfile.SEEK_SET +posixfile.fileopen(??) +posixfile.open(??) +posixfile.warnings +posixpath.abspath(??) +posixpath.altsep +posixpath.basename(??) +posixpath.commonprefix(??) +posixpath.curdir +posixpath.defpath +posixpath.devnull +posixpath.dirname(??) +posixpath.exists(??) +posixpath.expanduser(??) +posixpath.expandvars(??) +posixpath.extsep +posixpath.genericpath +posixpath.getatime(??) +posixpath.getctime(??) +posixpath.getmtime(??) +posixpath.getsize(??) +posixpath.isabs(??) +posixpath.isdir(??) +posixpath.isfile(??) +posixpath.islink(??) +posixpath.ismount(??) +posixpath.join(??) +posixpath.lexists(??) +posixpath.normcase(??) +posixpath.normpath(??) +posixpath.os +posixpath.pardir +posixpath.pathsep +posixpath.realpath(??) +posixpath.relpath(??) +posixpath.samefile(??) +posixpath.sameopenfile(??) +posixpath.samestat(??) +posixpath.sep +posixpath.split(??) +posixpath.splitdrive(??) +posixpath.splitext(??) +posixpath.stat +posixpath.supports_unicode_filenames +posixpath.walk(??) +posixpath.warnings +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.saferepr(??) +pprint.warnings +print +profile.OptionParser(??) +profile.Profile(??) +profile.Stats(??) +profile.help(??) +profile.main(??) +profile.marshal +profile.os +profile.resgetrusage(??) +profile.resource +profile.run(??) +profile.runctx(??) +profile.sys +profile.time +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal +pstats.os +pstats.re +pstats.sys +pstats.time +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd +pwd.struct_pwent +py_compile.MAGIC +py_compile.PyCompileError +py_compile.compile(??) +py_compile.imp +py_compile.main(??) +py_compile.marshal +py_compile.os +py_compile.sys +py_compile.traceback +py_compile.wr_long(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.imp +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys +pyclbr.tokenize +pydoc.Doc(??) +pydoc.ErrorDuringImport +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.Scanner(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque(iterable[, maxlen]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.expandtabs(s [,tabsize]) -> string +pydoc.extract_tb(??) +pydoc.find(s, sub [,start [,end]]) -> in +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.gui(??) +pydoc.help +pydoc.html +pydoc.imp +pydoc.importfile(??) +pydoc.inspect +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.join(list [,sep]) -> string +pydoc.locate(??) +pydoc.lower(s) -> string +pydoc.os +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.re +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.rfind(s, sub [,start [,end]]) -> int +pydoc.rstrip(s [,chars]) -> string +pydoc.safeimport(??) +pydoc.serve(??) +pydoc.source_synopsis(??) +pydoc.split(s [,sep [,maxsplit]]) -> list of strings +pydoc.splitdoc(??) +pydoc.strip(s [,chars]) -> string +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys +pydoc.tempfilepager(??) +pydoc.text +pydoc.ttypager(??) +pydoc.types +pydoc.visiblename(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics +pydoc_data.topics.topics +pyexpat.EXPAT_VERSION +pyexpat.ErrorString(errno) -> string +pyexpat.ExpatError +pyexpat.ParserCreate([encoding[, namespace_separator]]) -> parser +pyexpat.XMLParserType +pyexpat.XML_PARAM_ENTITY_PARSING_ALWAYS +pyexpat.XML_PARAM_ENTITY_PARSING_NEVER +pyexpat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +pyexpat.error +pyexpat.errors +pyexpat.expat_CAPI +pyexpat.features +pyexpat.model +pyexpat.native_encoding +pyexpat.version_info +quit +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp +quopri.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random +random.SG_MAGICCONST +random.SystemRandom +random.TWOPI +random.WichmannHill +random.betavariate +random.choice +random.division +random.expovariate +random.gammavariate +random.gauss +random.getrandbits(k) -> x. Generates a long int with k random bits. +random.getstate +random.jumpahead(int) -> None. Create new state from existing state and integer. +random.lognormvariate +random.normalvariate +random.paretovariate +random.randint +random.random() -> x in the interval [0, 1). +random.randrange +random.sample +random.seed +random.setstate +random.shuffle +random.triangular +random.uniform +random.vonmisesvariate +random.weibullvariate +range([start,] stop[, step]) -> list of integers +raw_input([prompt]) -> string +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copy_reg +re.error +re.escape(??) +re.findall(??) +re.finditer(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile +re.sre_parse +re.sub(??) +re.subn(??) +re.sys +re.template(??) +reduce(function, sequence[, initial]) -> value +reload(module) -> module +repr(object) -> string +repr.Repr(??) +repr.aRepr +repr.islice(iterable, [start,] stop [, step]) --> islice object +repr.repr +resource.RLIMIT_AS +resource.RLIMIT_CORE +resource.RLIMIT_CPU +resource.RLIMIT_DATA +resource.RLIMIT_FSIZE +resource.RLIMIT_MEMLOCK +resource.RLIMIT_NOFILE +resource.RLIMIT_NPROC +resource.RLIMIT_OFILE +resource.RLIMIT_RSS +resource.RLIMIT_STACK +resource.RLIM_INFINITY +resource.RUSAGE_CHILDREN +resource.RUSAGE_SELF +resource.error +resource.getpagesize +resource.getrlimit +resource.getrusage +resource.setrlimit +resource.struct_rusage +reversed(sequence) -> reverse iterator over values of the sequence +rexec.FileBase(??) +rexec.FileDelegate(??) +rexec.FileWrapper(??) +rexec.RExec(??) +rexec.RHooks(??) +rexec.RModuleImporter(??) +rexec.RModuleLoader(??) +rexec.TEMPLATE +rexec.ihooks +rexec.imp +rexec.os +rexec.sys +rexec.test(??) +rfc822.AddressList(??) +rfc822.AddrlistClass(??) +rfc822.Message(??) +rfc822.dump_address_pair(??) +rfc822.formatdate(??) +rfc822.mktime_tz(??) +rfc822.parseaddr(??) +rfc822.parsedate(??) +rfc822.parsedate_tz(??) +rfc822.quote(??) +rfc822.time +rfc822.unquote(??) +rfc822.warnpy3k(??) +rlcompleter.Completer(??) +rlcompleter.get_class_members(??) +robotparser.Entry(??) +robotparser.RobotFileParser(??) +robotparser.RuleLine(??) +robotparser.URLopener(??) +robotparser.urllib +robotparser.urlparse +round(number[, ndigits]) -> floating point number +runpy.get_loader(??) +runpy.imp +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys +sched.Event(time, priority, action, argument) +sched.heapq +sched.namedtuple(??) +sched.scheduler(??) +select.EPOLLERR +select.EPOLLET +select.EPOLLHUP +select.EPOLLIN +select.EPOLLMSG +select.EPOLLONESHOT +select.EPOLLOUT +select.EPOLLPRI +select.EPOLLRDBAND +select.EPOLLRDNORM +select.EPOLLWRBAND +select.EPOLLWRNORM +select.PIPE_BUF +select.POLLERR +select.POLLHUP +select.POLLIN +select.POLLMSG +select.POLLNVAL +select.POLLOUT +select.POLLPRI +select.POLLRDBAND +select.POLLRDNORM +select.POLLWRBAND +select.POLLWRNORM +select.epoll +select.error +select.poll +select.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +set() -> new empty set object +setattr(object, name, value) +sets.BaseSet +sets.ImmutableSet +sets.Set +sets.ifilter(function or None, sequence) --> ifilter object +sets.ifilterfalse(function or None, sequence) --> ifilterfalse object +sets.warnings +sgmllib.SGMLParseError +sgmllib.SGMLParser(??) +sgmllib.TestSGMLParser(??) +sgmllib.attrfind +sgmllib.charref +sgmllib.endbracket +sgmllib.entityref +sgmllib.incomplete +sgmllib.interesting +sgmllib.markupbase +sgmllib.piclose +sgmllib.re +sgmllib.shorttag +sgmllib.shorttagopen +sgmllib.starttagopen +sgmllib.tagfind +sgmllib.test(??) +sha.blocksize +sha.digest_size +sha.digestsize +sha.new +sha.sha +sha.warnings +shelve.BsdDbShelf(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(file, protocol=0) -- Create a pickler. +shelve.Shelf(??) +shelve.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shelve.Unpickler(file) -- Create an unpickler. +shelve.UserDict +shelve.open(??) +shlex.StringIO([s]) -- Return a StringIO-like stream for reading or writing +shlex.deque(iterable[, maxlen]) --> deque object +shlex.os +shlex.shlex(??) +shlex.split(??) +shlex.sys +shutil.Error +shutil.ExecError +shutil.SpecialFileError +shutil.WindowsError +shutil.abspath(??) +shutil.collections +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.errno +shutil.fnmatch +shutil.get_archive_formats(??) +shutil.getgrnam(name) -> tuple +shutil.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.os +shutil.register_archive_format(??) +shutil.rmtree(??) +shutil.stat +shutil.sys +shutil.unregister_archive_format(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCLD +signal.SIGCONT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPOLL +signal.SIGPROF +signal.SIGPWR +signal.SIGQUIT +signal.SIGRTMAX +signal.SIGRTMIN +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_DFL +signal.SIG_IGN +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getitimer(which) +signal.getsignal(sig) -> action +signal.pause() +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(which, seconds[, interval]) +signal.siginterrupt(sig, flag) -> None +signal.signal(sig, action) -> action +site.ENABLE_USER_SITE +site.PREFIXES +site.USER_BASE +site.USER_SITE +site.abs__file__(??) +site.addbuilddir(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.aliasmbcs(??) +site.check_enableusersite(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.main(??) +site.makepath(??) +site.os +site.removeduppaths(??) +site.setBEGINLIBPATH(??) +site.setcopyright(??) +site.setencoding(??) +site.sethelper(??) +site.setquit(??) +site.sys +slice([start,] stop[, step]) +smtpd.COMMASPACE +smtpd.DEBUGSTREAM +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat +smtpd.asyncore +smtpd.errno +smtpd.getopt +smtpd.os +smtpd.parseargs(??) +smtpd.program +smtpd.socket +smtpd.sys +smtpd.time +smtpd.usage(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError +smtplib.SMTPConnectError +smtplib.SMTPDataError +smtplib.SMTPException +smtplib.SMTPHeloError +smtplib.SMTPRecipientsRefused +smtplib.SMTPResponseException +smtplib.SMTPSenderRefused +smtplib.SMTPServerDisconnected +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.SSLFakeFile(??) +smtplib.base64 +smtplib.email +smtplib.encode_base64(??) +smtplib.hmac +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re +smtplib.socket +smtplib.ssl +smtplib.stderr +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK +socket.AF_ASH +socket.AF_ATMPVC +socket.AF_ATMSVC +socket.AF_AX25 +socket.AF_BRIDGE +socket.AF_DECnet +socket.AF_ECONET +socket.AF_INET +socket.AF_INET6 +socket.AF_IPX +socket.AF_IRDA +socket.AF_KEY +socket.AF_LLC +socket.AF_NETBEUI +socket.AF_NETLINK +socket.AF_NETROM +socket.AF_PACKET +socket.AF_PPPOX +socket.AF_ROSE +socket.AF_ROUTE +socket.AF_SECURITY +socket.AF_SNA +socket.AF_TIPC +socket.AF_UNIX +socket.AF_UNSPEC +socket.AF_WANPIPE +socket.AF_X25 +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.CAPI +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EINTR +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GRE +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV6 +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.MethodType +socket.NETLINK_DNRTMSG +socket.NETLINK_FIREWALL +socket.NETLINK_IP6_FW +socket.NETLINK_NFLOG +socket.NETLINK_ROUTE +socket.NETLINK_USERSOCK +socket.NETLINK_XFRM +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PACKET_BROADCAST +socket.PACKET_FASTROUTE +socket.PACKET_HOST +socket.PACKET_LOOPBACK +socket.PACKET_MULTICAST +socket.PACKET_OTHERHOST +socket.PACKET_OUTGOING +socket.PF_PACKET +socket.RAND_add(string, entropy) +socket.RAND_egd(path) -> bytes +socket.RAND_status() -> 0 or 1 +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM +socket.SOCK_RAW +socket.SOCK_RDM +socket.SOCK_SEQPACKET +socket.SOCK_STREAM +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_TIPC +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SSL_ERROR_EOF +socket.SSL_ERROR_INVALID_ERROR_CODE +socket.SSL_ERROR_SSL +socket.SSL_ERROR_SYSCALL +socket.SSL_ERROR_WANT_CONNECT +socket.SSL_ERROR_WANT_READ +socket.SSL_ERROR_WANT_WRITE +socket.SSL_ERROR_WANT_X509_LOOKUP +socket.SSL_ERROR_ZERO_RETURN +socket.SocketType +socket.StringIO([s]) -- Return a StringIO-like stream for reading or writing +socket.TCP_CORK +socket.TCP_DEFER_ACCEPT +socket.TCP_INFO +socket.TCP_KEEPCNT +socket.TCP_KEEPIDLE +socket.TCP_KEEPINTVL +socket.TCP_LINGER2 +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_QUICKACK +socket.TCP_SYNCNT +socket.TCP_WINDOW_CLAMP +socket.TIPC_ADDR_ID +socket.TIPC_ADDR_NAME +socket.TIPC_ADDR_NAMESEQ +socket.TIPC_CFG_SRV +socket.TIPC_CLUSTER_SCOPE +socket.TIPC_CONN_TIMEOUT +socket.TIPC_CRITICAL_IMPORTANCE +socket.TIPC_DEST_DROPPABLE +socket.TIPC_HIGH_IMPORTANCE +socket.TIPC_IMPORTANCE +socket.TIPC_LOW_IMPORTANCE +socket.TIPC_MEDIUM_IMPORTANCE +socket.TIPC_NODE_SCOPE +socket.TIPC_PUBLISHED +socket.TIPC_SRC_DROPPABLE +socket.TIPC_SUBSCR_TIMEOUT +socket.TIPC_SUB_CANCEL +socket.TIPC_SUB_PORTS +socket.TIPC_SUB_SERVICE +socket.TIPC_TOP_SRV +socket.TIPC_WAIT_FOREVER +socket.TIPC_WITHDRAWN +socket.TIPC_ZONE_SCOPE +socket.create_connection(??) +socket.errno +socket.error +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror +socket.getaddrinfo(host, port [, family, socktype, proto, flags]) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6 +socket.herror +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.inet_aton(string) -> packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.m +socket.meth(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os +socket.p +socket.partial(func, *args, **keywords) - new function with partial application +socket.setdefaulttimeout(timeout) +socket.socket([family[, type[, proto]]]) -> socket object +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.ssl(??) +socket.sslerror +socket.sys +socket.timeout +socket.warnings +sorted(iterable, cmp=None, key=None, reverse=False) --> new sorted list +spwd.getspall() -> list_of_entries +spwd.getspnam(name) -> (sp_namp, sp_pwdp, sp_lstchg, sp_min, sp_max, +spwd.struct_spwd +sre.DOTALL +sre.I +sre.IGNORECASE +sre.L +sre.LOCALE +sre.M +sre.MULTILINE +sre.S +sre.U +sre.UNICODE +sre.VERBOSE +sre.X +sre.compile(??) +sre.error +sre.escape(??) +sre.findall(??) +sre.finditer(??) +sre.match(??) +sre.purge(??) +sre.search(??) +sre.split(??) +sre.sub(??) +sre.subn(??) +sre.template(??) +sre.warnings +sre_compile.ANY +sre_compile.ANY_ALL +sre_compile.ASSERT +sre_compile.ASSERT_NOT +sre_compile.AT +sre_compile.ATCODES +sre_compile.AT_BEGINNING +sre_compile.AT_BEGINNING_LINE +sre_compile.AT_BEGINNING_STRING +sre_compile.AT_BOUNDARY +sre_compile.AT_END +sre_compile.AT_END_LINE +sre_compile.AT_END_STRING +sre_compile.AT_LOCALE +sre_compile.AT_LOC_BOUNDARY +sre_compile.AT_LOC_NON_BOUNDARY +sre_compile.AT_MULTILINE +sre_compile.AT_NON_BOUNDARY +sre_compile.AT_UNICODE +sre_compile.AT_UNI_BOUNDARY +sre_compile.AT_UNI_NON_BOUNDARY +sre_compile.BIGCHARSET +sre_compile.BRANCH +sre_compile.CALL +sre_compile.CATEGORY +sre_compile.CATEGORY_DIGIT +sre_compile.CATEGORY_LINEBREAK +sre_compile.CATEGORY_LOC_NOT_WORD +sre_compile.CATEGORY_LOC_WORD +sre_compile.CATEGORY_NOT_DIGIT +sre_compile.CATEGORY_NOT_LINEBREAK +sre_compile.CATEGORY_NOT_SPACE +sre_compile.CATEGORY_NOT_WORD +sre_compile.CATEGORY_SPACE +sre_compile.CATEGORY_UNI_DIGIT +sre_compile.CATEGORY_UNI_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_DIGIT +sre_compile.CATEGORY_UNI_NOT_LINEBREAK +sre_compile.CATEGORY_UNI_NOT_SPACE +sre_compile.CATEGORY_UNI_NOT_WORD +sre_compile.CATEGORY_UNI_SPACE +sre_compile.CATEGORY_UNI_WORD +sre_compile.CATEGORY_WORD +sre_compile.CHARSET +sre_compile.CHCODES +sre_compile.CH_LOCALE +sre_compile.CH_UNICODE +sre_compile.FAILURE +sre_compile.GROUPREF +sre_compile.GROUPREF_EXISTS +sre_compile.GROUPREF_IGNORE +sre_compile.IN +sre_compile.INFO +sre_compile.IN_IGNORE +sre_compile.JUMP +sre_compile.LITERAL +sre_compile.LITERAL_IGNORE +sre_compile.MAGIC +sre_compile.MARK +sre_compile.MAXCODE +sre_compile.MAXREPEAT +sre_compile.MAX_REPEAT +sre_compile.MAX_UNTIL +sre_compile.MIN_REPEAT +sre_compile.MIN_REPEAT_ONE +sre_compile.MIN_UNTIL +sre_compile.NEGATE +sre_compile.NOT_LITERAL +sre_compile.NOT_LITERAL_IGNORE +sre_compile.OPCODES +sre_compile.OP_IGNORE +sre_compile.RANGE +sre_compile.REPEAT +sre_compile.REPEAT_ONE +sre_compile.SRE_FLAG_DEBUG +sre_compile.SRE_FLAG_DOTALL +sre_compile.SRE_FLAG_IGNORECASE +sre_compile.SRE_FLAG_LOCALE +sre_compile.SRE_FLAG_MULTILINE +sre_compile.SRE_FLAG_TEMPLATE +sre_compile.SRE_FLAG_UNICODE +sre_compile.SRE_FLAG_VERBOSE +sre_compile.SRE_INFO_CHARSET +sre_compile.SRE_INFO_LITERAL +sre_compile.SRE_INFO_PREFIX +sre_compile.STRING_TYPES +sre_compile.SUBPATTERN +sre_compile.SUCCESS +sre_compile.compile(??) +sre_compile.error +sre_compile.isstring(??) +sre_compile.makedict(??) +sre_compile.sre_parse +sre_compile.sys +sre_constants.ANY +sre_constants.ANY_ALL +sre_constants.ASSERT +sre_constants.ASSERT_NOT +sre_constants.AT +sre_constants.ATCODES +sre_constants.AT_BEGINNING +sre_constants.AT_BEGINNING_LINE +sre_constants.AT_BEGINNING_STRING +sre_constants.AT_BOUNDARY +sre_constants.AT_END +sre_constants.AT_END_LINE +sre_constants.AT_END_STRING +sre_constants.AT_LOCALE +sre_constants.AT_LOC_BOUNDARY +sre_constants.AT_LOC_NON_BOUNDARY +sre_constants.AT_MULTILINE +sre_constants.AT_NON_BOUNDARY +sre_constants.AT_UNICODE +sre_constants.AT_UNI_BOUNDARY +sre_constants.AT_UNI_NON_BOUNDARY +sre_constants.BIGCHARSET +sre_constants.BRANCH +sre_constants.CALL +sre_constants.CATEGORY +sre_constants.CATEGORY_DIGIT +sre_constants.CATEGORY_LINEBREAK +sre_constants.CATEGORY_LOC_NOT_WORD +sre_constants.CATEGORY_LOC_WORD +sre_constants.CATEGORY_NOT_DIGIT +sre_constants.CATEGORY_NOT_LINEBREAK +sre_constants.CATEGORY_NOT_SPACE +sre_constants.CATEGORY_NOT_WORD +sre_constants.CATEGORY_SPACE +sre_constants.CATEGORY_UNI_DIGIT +sre_constants.CATEGORY_UNI_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_DIGIT +sre_constants.CATEGORY_UNI_NOT_LINEBREAK +sre_constants.CATEGORY_UNI_NOT_SPACE +sre_constants.CATEGORY_UNI_NOT_WORD +sre_constants.CATEGORY_UNI_SPACE +sre_constants.CATEGORY_UNI_WORD +sre_constants.CATEGORY_WORD +sre_constants.CHARSET +sre_constants.CHCODES +sre_constants.CH_LOCALE +sre_constants.CH_UNICODE +sre_constants.FAILURE +sre_constants.GROUPREF +sre_constants.GROUPREF_EXISTS +sre_constants.GROUPREF_IGNORE +sre_constants.IN +sre_constants.INFO +sre_constants.IN_IGNORE +sre_constants.JUMP +sre_constants.LITERAL +sre_constants.LITERAL_IGNORE +sre_constants.MAGIC +sre_constants.MARK +sre_constants.MAXREPEAT +sre_constants.MAX_REPEAT +sre_constants.MAX_UNTIL +sre_constants.MIN_REPEAT +sre_constants.MIN_REPEAT_ONE +sre_constants.MIN_UNTIL +sre_constants.NEGATE +sre_constants.NOT_LITERAL +sre_constants.NOT_LITERAL_IGNORE +sre_constants.OPCODES +sre_constants.OP_IGNORE +sre_constants.RANGE +sre_constants.REPEAT +sre_constants.REPEAT_ONE +sre_constants.SRE_FLAG_DEBUG +sre_constants.SRE_FLAG_DOTALL +sre_constants.SRE_FLAG_IGNORECASE +sre_constants.SRE_FLAG_LOCALE +sre_constants.SRE_FLAG_MULTILINE +sre_constants.SRE_FLAG_TEMPLATE +sre_constants.SRE_FLAG_UNICODE +sre_constants.SRE_FLAG_VERBOSE +sre_constants.SRE_INFO_CHARSET +sre_constants.SRE_INFO_LITERAL +sre_constants.SRE_INFO_PREFIX +sre_constants.SUBPATTERN +sre_constants.SUCCESS +sre_constants.error +sre_constants.makedict(??) +sre_parse.ANY +sre_parse.ANY_ALL +sre_parse.ASSERT +sre_parse.ASSERT_NOT +sre_parse.AT +sre_parse.ATCODES +sre_parse.AT_BEGINNING +sre_parse.AT_BEGINNING_LINE +sre_parse.AT_BEGINNING_STRING +sre_parse.AT_BOUNDARY +sre_parse.AT_END +sre_parse.AT_END_LINE +sre_parse.AT_END_STRING +sre_parse.AT_LOCALE +sre_parse.AT_LOC_BOUNDARY +sre_parse.AT_LOC_NON_BOUNDARY +sre_parse.AT_MULTILINE +sre_parse.AT_NON_BOUNDARY +sre_parse.AT_UNICODE +sre_parse.AT_UNI_BOUNDARY +sre_parse.AT_UNI_NON_BOUNDARY +sre_parse.BIGCHARSET +sre_parse.BRANCH +sre_parse.CALL +sre_parse.CATEGORIES +sre_parse.CATEGORY +sre_parse.CATEGORY_DIGIT +sre_parse.CATEGORY_LINEBREAK +sre_parse.CATEGORY_LOC_NOT_WORD +sre_parse.CATEGORY_LOC_WORD +sre_parse.CATEGORY_NOT_DIGIT +sre_parse.CATEGORY_NOT_LINEBREAK +sre_parse.CATEGORY_NOT_SPACE +sre_parse.CATEGORY_NOT_WORD +sre_parse.CATEGORY_SPACE +sre_parse.CATEGORY_UNI_DIGIT +sre_parse.CATEGORY_UNI_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_DIGIT +sre_parse.CATEGORY_UNI_NOT_LINEBREAK +sre_parse.CATEGORY_UNI_NOT_SPACE +sre_parse.CATEGORY_UNI_NOT_WORD +sre_parse.CATEGORY_UNI_SPACE +sre_parse.CATEGORY_UNI_WORD +sre_parse.CATEGORY_WORD +sre_parse.CHARSET +sre_parse.CHCODES +sre_parse.CH_LOCALE +sre_parse.CH_UNICODE +sre_parse.DIGITS +sre_parse.ESCAPES +sre_parse.FAILURE +sre_parse.FLAGS +sre_parse.GROUPREF +sre_parse.GROUPREF_EXISTS +sre_parse.GROUPREF_IGNORE +sre_parse.HEXDIGITS +sre_parse.IN +sre_parse.INFO +sre_parse.IN_IGNORE +sre_parse.JUMP +sre_parse.LITERAL +sre_parse.LITERAL_IGNORE +sre_parse.MAGIC +sre_parse.MARK +sre_parse.MAXREPEAT +sre_parse.MAX_REPEAT +sre_parse.MAX_UNTIL +sre_parse.MIN_REPEAT +sre_parse.MIN_REPEAT_ONE +sre_parse.MIN_UNTIL +sre_parse.NEGATE +sre_parse.NOT_LITERAL +sre_parse.NOT_LITERAL_IGNORE +sre_parse.OCTDIGITS +sre_parse.OPCODES +sre_parse.OP_IGNORE +sre_parse.Pattern(??) +sre_parse.RANGE +sre_parse.REPEAT +sre_parse.REPEAT_CHARS +sre_parse.REPEAT_ONE +sre_parse.SPECIAL_CHARS +sre_parse.SRE_FLAG_DEBUG +sre_parse.SRE_FLAG_DOTALL +sre_parse.SRE_FLAG_IGNORECASE +sre_parse.SRE_FLAG_LOCALE +sre_parse.SRE_FLAG_MULTILINE +sre_parse.SRE_FLAG_TEMPLATE +sre_parse.SRE_FLAG_UNICODE +sre_parse.SRE_FLAG_VERBOSE +sre_parse.SRE_INFO_CHARSET +sre_parse.SRE_INFO_LITERAL +sre_parse.SRE_INFO_PREFIX +sre_parse.SUBPATTERN +sre_parse.SUCCESS +sre_parse.SubPattern(??) +sre_parse.Tokenizer(??) +sre_parse.WHITESPACE +sre_parse.error +sre_parse.expand_template(??) +sre_parse.isdigit(??) +sre_parse.isident(??) +sre_parse.isname(??) +sre_parse.makedict(??) +sre_parse.parse(??) +sre_parse.parse_template(??) +sre_parse.sys +ssl.CERT_NONE +ssl.CERT_OPTIONAL +ssl.CERT_REQUIRED +ssl.DER_cert_to_PEM_cert(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO +ssl.OPENSSL_VERSION_NUMBER +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv2 +ssl.PROTOCOL_SSLv23 +ssl.PROTOCOL_SSLv3 +ssl.PROTOCOL_TLSv1 +ssl.RAND_add(string, entropy) +ssl.RAND_egd(path) -> bytes +ssl.RAND_status() -> 0 or 1 +ssl.SSLError +ssl.SSLSocket +ssl.SSL_ERROR_EOF +ssl.SSL_ERROR_INVALID_ERROR_CODE +ssl.SSL_ERROR_SSL +ssl.SSL_ERROR_SYSCALL +ssl.SSL_ERROR_WANT_CONNECT +ssl.SSL_ERROR_WANT_READ +ssl.SSL_ERROR_WANT_WRITE +ssl.SSL_ERROR_WANT_X509_LOOKUP +ssl.SSL_ERROR_ZERO_RETURN +ssl.base64 +ssl.cert_time_to_seconds(??) +ssl.errno +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.socket([family[, type[, proto]]]) -> socket object +ssl.socket_error +ssl.sslwrap_simple(??) +ssl.textwrap +ssl.wrap_socket(??) +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFREG +stat.S_IFSOCK +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(??) +stat.S_ISCHR(??) +stat.S_ISDIR(??) +stat.S_ISFIFO(??) +stat.S_ISGID +stat.S_ISLNK(??) +stat.S_ISREG(??) +stat.S_ISSOCK(??) +stat.S_ISUID +stat.S_ISVTX +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +staticmethod(function) -> method +statvfs.F_BAVAIL +statvfs.F_BFREE +statvfs.F_BLOCKS +statvfs.F_BSIZE +statvfs.F_FAVAIL +statvfs.F_FFREE +statvfs.F_FILES +statvfs.F_FLAG +statvfs.F_FRSIZE +statvfs.F_NAMEMAX +str(object) -> string +string.Formatter +string.Template +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.atof(s) -> float +string.atof_error +string.atoi(s [,base]) -> int +string.atoi_error +string.atol(s [,base]) -> long +string.atol_error +string.capitalize(s) -> string +string.capwords(s [,sep]) -> string +string.center(s, width[, fillchar]) -> string +string.count(s, sub[, start[,end]]) -> int +string.digits +string.expandtabs(s [,tabsize]) -> string +string.find(s, sub [,start [,end]]) -> in +string.hexdigits +string.index(s, sub [,start [,end]]) -> int +string.index_error +string.join(list [,sep]) -> string +string.joinfields(??) +string.letters +string.ljust(s, width[, fillchar]) -> string +string.lower(s) -> string +string.lowercase +string.lstrip(s [,chars]) -> string +string.maketrans(frm, to) -> string +string.octdigits +string.printable +string.punctuation +string.replace (str, old, new[, maxsplit]) -> string +string.rfind(s, sub [,start [,end]]) -> int +string.rindex(s, sub [,start [,end]]) -> int +string.rjust(s, width[, fillchar]) -> string +string.rsplit(s [,sep [,maxsplit]]) -> list of strings +string.rstrip(s [,chars]) -> string +string.split(s [,sep [,maxsplit]]) -> list of strings +string.splitfields(??) +string.strip(s [,chars]) -> string +string.swapcase(s) -> string +string.translate(s,table [,deletions]) -> string +string.upper(s) -> string +string.uppercase +string.whitespace +string.zfill(x, width) -> string +stringold.atof(s) -> float +stringold.atof_error +stringold.atoi(s [,base]) -> int +stringold.atoi_error +stringold.atol(s [,base]) -> long +stringold.atol_error +stringold.capitalize(s) -> string +stringold.capwords(s, [sep]) -> string +stringold.center(s, width) -> string +stringold.count(s, sub[, start[,end]]) -> int +stringold.digits +stringold.expandtabs(s [,tabsize]) -> string +stringold.find(s, sub [,start [,end]]) -> in +stringold.hexdigits +stringold.index(s, sub [,start [,end]]) -> int +stringold.index_error +stringold.join(list [,sep]) -> string +stringold.joinfields(??) +stringold.letters +stringold.ljust(s, width) -> string +stringold.lower(s) -> string +stringold.lowercase +stringold.lstrip(s) -> string +stringold.maketrans(frm, to) -> string +stringold.octdigits +stringold.replace (str, old, new[, maxsplit]) -> string +stringold.rfind(s, sub [,start [,end]]) -> int +stringold.rindex(s, sub [,start [,end]]) -> int +stringold.rjust(s, width) -> string +stringold.rstrip(s) -> string +stringold.split(str [,sep [,maxsplit]]) -> list of strings +stringold.splitfields(??) +stringold.strip(s) -> string +stringold.swapcase(s) -> string +stringold.translate(s,table [,deletechars]) -> string +stringold.upper(s) -> string +stringold.uppercase +stringold.whitespace +stringold.zfill(x, width) -> string +stringprep.b1_set +stringprep.b3_exceptions +stringprep.c22_specials +stringprep.c6_set +stringprep.c7_set +stringprep.c8_set +stringprep.c9_set +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata +strop.atof(s) -> float +strop.atoi(s [,base]) -> int +strop.atol(s [,base]) -> long +strop.capitalize(s) -> string +strop.count(s, sub[, start[, end]]) -> int +strop.expandtabs(string, [tabsize]) -> string +strop.find(s, sub [,start [,end]]) -> in +strop.join(list [,sep]) -> string +strop.joinfields +strop.lower(s) -> string +strop.lowercase +strop.lstrip(s) -> string +strop.maketrans(frm, to) -> string +strop.replace (str, old, new[, maxsplit]) -> string +strop.rfind(s, sub [,start [,end]]) -> int +strop.rstrip(s) -> string +strop.split(s [,sep [,maxsplit]]) -> list of strings +strop.splitfields +strop.strip(s) -> string +strop.swapcase(s) -> string +strop.translate(s,table [,deletechars]) -> string +strop.upper(s) -> string +strop.uppercase +strop.whitespace +struct.Struct +struct.calcsize +struct.error +struct.pack +struct.pack_into +struct.unpack +struct.unpack_from +subprocess.CalledProcessError +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen +subprocess.STDOUT +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno +subprocess.fcntl +subprocess.gc +subprocess.list2cmdline(??) +subprocess.mswindows +subprocess.os +subprocess.pickle +subprocess.select +subprocess.signal +subprocess.sys +subprocess.traceback +subprocess.types +sum(sequence[, start]) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error +sunau.open(??) +sunau.openfp(??) +sunaudio.MAGIC +sunaudio.error +sunaudio.get_long_be(??) +sunaudio.gethdr(??) +sunaudio.printhdr(??) +super(type) -> unbound super object +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictmaker +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.exec_stmt +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.fpdef +symbol.fplist +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.list_for +symbol.list_if +symbol.list_iter +symbol.listmaker +symbol.main(??) +symbol.not_test +symbol.old_lambdef +symbol.old_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.print_stmt +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name +symbol.term +symbol.test +symbol.testlist +symbol.testlist1 +symbol.testlist_comp +symbol.testlist_safe +symbol.trailer +symbol.try_stmt +symbol.varargslist +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.OPT_BARE_EXEC +symtable.OPT_EXEC +symtable.OPT_IMPORT_STAR +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol +symtable.SymbolTable +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref +sys.api_version +sys.argv +sys.builtin_module_names +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode +sys.exc_clear() -> None +sys.exc_info() -> (type, value, traceback) +sys.exc_type +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags +sys.float_info +sys.float_repr_style +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.gettrace() +sys.hexversion +sys.long_info +sys.maxint +sys.maxsize +sys.maxunicode +sys.meta_path +sys.modules +sys.path +sys.path_hooks +sys.path_importer_cache +sys.platform +sys.prefix +sys.py3kwarning +sys.setappdefaultencoding +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.settrace(function) +sys.stderr +sys.stdin +sys.stdout +sys.subversion +sys.version +sys.version_info +sys.warnoptions +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys +syslog.LOG_ALERT +syslog.LOG_AUTH +syslog.LOG_CONS +syslog.LOG_CRIT +syslog.LOG_CRON +syslog.LOG_DAEMON +syslog.LOG_DEBUG +syslog.LOG_EMERG +syslog.LOG_ERR +syslog.LOG_INFO +syslog.LOG_KERN +syslog.LOG_LOCAL0 +syslog.LOG_LOCAL1 +syslog.LOG_LOCAL2 +syslog.LOG_LOCAL3 +syslog.LOG_LOCAL4 +syslog.LOG_LOCAL5 +syslog.LOG_LOCAL6 +syslog.LOG_LOCAL7 +syslog.LOG_LPR +syslog.LOG_MAIL +syslog.LOG_MASK +syslog.LOG_NDELAY +syslog.LOG_NEWS +syslog.LOG_NOTICE +syslog.LOG_NOWAIT +syslog.LOG_PERROR +syslog.LOG_PID +syslog.LOG_SYSLOG +syslog.LOG_UPTO +syslog.LOG_USER +syslog.LOG_UUCP +syslog.LOG_WARNING +syslog.closelog +syslog.openlog +syslog.setlogmask +syslog.syslog +tabnanny.NannyNag +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt +tabnanny.main(??) +tabnanny.os +tabnanny.process_tokens(??) +tabnanny.sys +tabnanny.tokenize +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError +tarfile.EmptyHeaderError +tarfile.ExFileObject +tarfile.ExtractError +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES +tarfile.HeaderError +tarfile.InvalidHeaderError +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS +tarfile.PAX_FORMAT +tarfile.PAX_NUMBER_FIELDS +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES +tarfile.ReadError +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES +tarfile.SYMTYPE +tarfile.S_IFBLK +tarfile.S_IFCHR +tarfile.S_IFDIR +tarfile.S_IFIFO +tarfile.S_IFLNK +tarfile.S_IFREG +tarfile.StreamError +tarfile.SubsequentHeaderError +tarfile.TAR_GZIPPED +tarfile.TAR_PLAIN +tarfile.TGEXEC +tarfile.TGREAD +tarfile.TGWRITE +tarfile.TOEXEC +tarfile.TOREAD +tarfile.TOWRITE +tarfile.TSGID +tarfile.TSUID +tarfile.TSVTX +tarfile.TUEXEC +tarfile.TUREAD +tarfile.TUWRITE +tarfile.TarError +tarfile.TarFile +tarfile.TarFileCompat(??) +tarfile.TarInfo +tarfile.TarIter(??) +tarfile.TruncatedHeaderError +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open +tarfile.calc_chksums(??) +tarfile.copy +tarfile.copyfileobj(??) +tarfile.errno +tarfile.filemode(??) +tarfile.filemode_table +tarfile.grp +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open +tarfile.operator +tarfile.os +tarfile.pwd +tarfile.re +tarfile.shutil +tarfile.stat +tarfile.stn(??) +tarfile.struct +tarfile.sys +tarfile.time +tarfile.uts(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.select +telnetlib.socket +telnetlib.sys +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir +tempfile.template +termios.B0 +termios.B110 +termios.B115200 +termios.B1200 +termios.B134 +termios.B150 +termios.B1800 +termios.B19200 +termios.B200 +termios.B230400 +termios.B2400 +termios.B300 +termios.B38400 +termios.B460800 +termios.B4800 +termios.B50 +termios.B57600 +termios.B600 +termios.B75 +termios.B9600 +termios.BRKINT +termios.BS0 +termios.BS1 +termios.BSDLY +termios.CBAUD +termios.CBAUDEX +termios.CDSUSP +termios.CEOF +termios.CEOL +termios.CEOT +termios.CERASE +termios.CFLUSH +termios.CIBAUD +termios.CINTR +termios.CKILL +termios.CLNEXT +termios.CLOCAL +termios.CQUIT +termios.CR0 +termios.CR1 +termios.CR2 +termios.CR3 +termios.CRDLY +termios.CREAD +termios.CRPRNT +termios.CRTSCTS +termios.CS5 +termios.CS6 +termios.CS7 +termios.CS8 +termios.CSIZE +termios.CSTART +termios.CSTOP +termios.CSTOPB +termios.CSUSP +termios.CWERASE +termios.ECHO +termios.ECHOCTL +termios.ECHOE +termios.ECHOK +termios.ECHOKE +termios.ECHONL +termios.ECHOPRT +termios.EXTA +termios.EXTB +termios.FF0 +termios.FF1 +termios.FFDLY +termios.FIOASYNC +termios.FIOCLEX +termios.FIONBIO +termios.FIONCLEX +termios.FIONREAD +termios.FLUSHO +termios.HUPCL +termios.ICANON +termios.ICRNL +termios.IEXTEN +termios.IGNBRK +termios.IGNCR +termios.IGNPAR +termios.IMAXBEL +termios.INLCR +termios.INPCK +termios.IOCSIZE_MASK +termios.IOCSIZE_SHIFT +termios.ISIG +termios.ISTRIP +termios.IUCLC +termios.IXANY +termios.IXOFF +termios.IXON +termios.NCC +termios.NCCS +termios.NL0 +termios.NL1 +termios.NLDLY +termios.NOFLSH +termios.N_MOUSE +termios.N_PPP +termios.N_SLIP +termios.N_STRIP +termios.N_TTY +termios.OCRNL +termios.OFDEL +termios.OFILL +termios.OLCUC +termios.ONLCR +termios.ONLRET +termios.ONOCR +termios.OPOST +termios.PARENB +termios.PARMRK +termios.PARODD +termios.PENDIN +termios.TAB0 +termios.TAB1 +termios.TAB2 +termios.TAB3 +termios.TABDLY +termios.TCFLSH +termios.TCGETA +termios.TCGETS +termios.TCIFLUSH +termios.TCIOFF +termios.TCIOFLUSH +termios.TCION +termios.TCOFLUSH +termios.TCOOFF +termios.TCOON +termios.TCSADRAIN +termios.TCSAFLUSH +termios.TCSANOW +termios.TCSBRK +termios.TCSBRKP +termios.TCSETA +termios.TCSETAF +termios.TCSETAW +termios.TCSETS +termios.TCSETSF +termios.TCSETSW +termios.TCXONC +termios.TIOCCONS +termios.TIOCEXCL +termios.TIOCGETD +termios.TIOCGICOUNT +termios.TIOCGLCKTRMIOS +termios.TIOCGPGRP +termios.TIOCGSERIAL +termios.TIOCGSOFTCAR +termios.TIOCGWINSZ +termios.TIOCINQ +termios.TIOCLINUX +termios.TIOCMBIC +termios.TIOCMBIS +termios.TIOCMGET +termios.TIOCMIWAIT +termios.TIOCMSET +termios.TIOCM_CAR +termios.TIOCM_CD +termios.TIOCM_CTS +termios.TIOCM_DSR +termios.TIOCM_DTR +termios.TIOCM_LE +termios.TIOCM_RI +termios.TIOCM_RNG +termios.TIOCM_RTS +termios.TIOCM_SR +termios.TIOCM_ST +termios.TIOCNOTTY +termios.TIOCNXCL +termios.TIOCOUTQ +termios.TIOCPKT +termios.TIOCPKT_DATA +termios.TIOCPKT_DOSTOP +termios.TIOCPKT_FLUSHREAD +termios.TIOCPKT_FLUSHWRITE +termios.TIOCPKT_NOSTOP +termios.TIOCPKT_START +termios.TIOCPKT_STOP +termios.TIOCSCTTY +termios.TIOCSERCONFIG +termios.TIOCSERGETLSR +termios.TIOCSERGETMULTI +termios.TIOCSERGSTRUCT +termios.TIOCSERGWILD +termios.TIOCSERSETMULTI +termios.TIOCSERSWILD +termios.TIOCSER_TEMT +termios.TIOCSETD +termios.TIOCSLCKTRMIOS +termios.TIOCSPGRP +termios.TIOCSSERIAL +termios.TIOCSSOFTCAR +termios.TIOCSTI +termios.TIOCSWINSZ +termios.TOSTOP +termios.VDISCARD +termios.VEOF +termios.VEOL +termios.VEOL2 +termios.VERASE +termios.VINTR +termios.VKILL +termios.VLNEXT +termios.VMIN +termios.VQUIT +termios.VREPRINT +termios.VSTART +termios.VSTOP +termios.VSUSP +termios.VSWTC +termios.VSWTCH +termios.VT0 +termios.VT1 +termios.VTDLY +termios.VTIME +termios.VWERASE +termios.XCASE +termios.XTABS +termios.error +termios.tcdrain(fd) -> None +termios.tcflow(fd, action) -> None +termios.tcflush(fd, queue) -> None +termios.tcgetattr(fd) -> list_of_attrs +termios.tcsendbreak(fd, duration) -> None +termios.tcsetattr(fd, when, attributes) -> None +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.re +textwrap.string +textwrap.wrap(??) +this.c +this.d +this.i +this.s +thread.LockType +thread.allocate +thread.allocate_lock() -> lock object +thread.error +thread.exit() +thread.exit_thread +thread.get_ident() -> integer +thread.interrupt_main() +thread.stack_size([size]) -> size +thread.start_new +thread.start_new_thread(function, args[, kwargs]) +threading.BoundedSemaphore(??) +threading.Condition(??) +threading.Event(??) +threading.Lock +threading.RLock(??) +threading.Semaphore(??) +threading.Thread +threading.ThreadError +threading.Timer(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.deque(iterable[, maxlen]) --> deque object +threading.enumerate(??) +threading.local +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +threading.warnings +time.accept2dyear +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time +time.time() -> floating point number +time.timezone +time.tzname +time.tzset(zone) +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer +timeit.dummy_src_name +timeit.gc +timeit.itertools +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys +timeit.template +timeit.time +timeit.timeit(??) +toaiff.error +toaiff.os +toaiff.pipes +toaiff.sndhdr +toaiff.t +toaiff.table +toaiff.tempfile +toaiff.toaiff(??) +toaiff.uncompress +token.AMPER +token.AMPEREQUAL +token.AT +token.BACKQUOTE +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.main(??) +token.tok_name +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BACKQUOTE +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing +tokenize.String +tokenize.TILDE +tokenize.Token +tokenize.TokenError +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.double3prog +tokenize.endprogs +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.printtoken(??) +tokenize.pseudoprog +tokenize.re +tokenize.single3prog +tokenize.single_quoted +tokenize.string +tokenize.t +tokenize.tabsize +tokenize.tok_name +tokenize.tokenize(??) +tokenize.tokenize_loop(??) +tokenize.tokenprog +tokenize.triple_quoted +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.cPickle +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc +trace.linecache +trace.main(??) +trace.modname(??) +trace.os +trace.pickle +trace.re +trace.rx_blank +trace.sys +trace.threading +trace.time +trace.token +trace.tokenize +trace.types +trace.usage(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys +traceback.tb_lineno(??) +traceback.types +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B460800 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CBAUD +tty.CBAUDEX +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CIBAUD +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.IOCSIZE_MASK +tty.IOCSIZE_SHIFT +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IUCLC +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCC +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.N_MOUSE +tty.N_PPP +tty.N_SLIP +tty.N_STRIP +tty.N_TTY +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.OLCUC +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCFLSH +tty.TCGETA +tty.TCGETS +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSBRK +tty.TCSBRKP +tty.TCSETA +tty.TCSETAF +tty.TCSETAW +tty.TCSETS +tty.TCSETSF +tty.TCSETSW +tty.TCXONC +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGICOUNT +tty.TIOCGLCKTRMIOS +tty.TIOCGPGRP +tty.TIOCGSERIAL +tty.TIOCGSOFTCAR +tty.TIOCGWINSZ +tty.TIOCINQ +tty.TIOCLINUX +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMIWAIT +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSERCONFIG +tty.TIOCSERGETLSR +tty.TIOCSERGETMULTI +tty.TIOCSERGSTRUCT +tty.TIOCSERGWILD +tty.TIOCSERSETMULTI +tty.TIOCSERSWILD +tty.TIOCSER_TEMT +tty.TIOCSETD +tty.TIOCSLCKTRMIOS +tty.TIOCSPGRP +tty.TIOCSSERIAL +tty.TIOCSSOFTCAR +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VSWTC +tty.VSWTCH +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.XCASE +tty.XTABS +tty.error +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> empty tuple +type(object) -> the object's type +types.BooleanType +types.BufferType +types.BuiltinFunctionType +types.BuiltinMethodType +types.ClassType +types.CodeType +types.ComplexType +types.DictProxyType +types.DictType +types.DictionaryType +types.EllipsisType +types.FileType +types.FloatType +types.FrameType +types.FunctionType +types.GeneratorType +types.GetSetDescriptorType +types.InstanceType +types.IntType +types.LambdaType +types.ListType +types.LongType +types.MemberDescriptorType +types.MethodType +types.ModuleType +types.NoneType +types.NotImplementedType +types.ObjectType +types.SliceType +types.StringType +types.StringTypes +types.TracebackType +types.TupleType +types.TypeType +types.UnboundMethodType +types.UnicodeType +types.XRangeType +unichr(i) -> Unicode character +unicode(string [, encoding[, errors]]) -> object +unicodedata.UCD +unicodedata.bidirectional(unichr) +unicodedata.category(unichr) +unicodedata.combining(unichr) +unicodedata.decimal(unichr[, default]) +unicodedata.decomposition(unichr) +unicodedata.digit(unichr[, default]) +unicodedata.east_asian_width(unichr) +unicodedata.lookup(name) +unicodedata.mirrored(unichr) +unicodedata.name(unichr[, default]) +unicodedata.normalize(form, unistr) +unicodedata.numeric(unichr[, default]) +unicodedata.ucd_3_2_0 +unicodedata.ucnhash_CAPI +unicodedata.unidata_version +urllib.ContentTooShortError +urllib.FancyURLopener(??) +urllib.MAXFTPCACHE +urllib.URLopener(??) +urllib.addbase(??) +urllib.addclosehook(??) +urllib.addinfo(??) +urllib.addinfourl(??) +urllib.always_safe +urllib.basejoin(??) +urllib.c +urllib.ftpcache +urllib.ftperrors(??) +urllib.ftpwrapper(??) +urllib.getproxies(??) +urllib.getproxies_environment(??) +urllib.i +urllib.localhost(??) +urllib.main(??) +urllib.noheaders(??) +urllib.os +urllib.pathname2url(??) +urllib.proxy_bypass(??) +urllib.proxy_bypass_environment(??) +urllib.quote('abc def') -> 'abc%20def' +urllib.quote_plus(??) +urllib.reporthook(??) +urllib.socket +urllib.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.splitnport(??) +urllib.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.splitport('host:port') --> 'host', 'port'. +urllib.splitquery('/path?query') --> '/path', 'query'. +urllib.splittag('/path#tag') --> '/path', 'tag'. +urllib.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.splitvalue('attr=value') --> 'attr', 'value'. +urllib.ssl +urllib.string +urllib.sys +urllib.test(??) +urllib.test1(??) +urllib.thishost(??) +urllib.time +urllib.toBytes(u"URL") --> 'URL'. +urllib.unquote('abc%20def') -> 'abc def'. +urllib.unquote_plus(??) +urllib.unwrap('') --> 'type://host/path'. +urllib.url2pathname(??) +urllib.urlcleanup(??) +urllib.urlencode(??) +urllib.urlopen(??) +urllib.urlretrieve(??) +urllib2.AbstractBasicAuthHandler(??) +urllib2.AbstractDigestAuthHandler(??) +urllib2.AbstractHTTPHandler(??) +urllib2.BaseHandler(??) +urllib2.CacheFTPHandler(??) +urllib2.FTPHandler(??) +urllib2.FileHandler(??) +urllib2.HTTPBasicAuthHandler(??) +urllib2.HTTPCookieProcessor(??) +urllib2.HTTPDefaultErrorHandler(??) +urllib2.HTTPDigestAuthHandler(??) +urllib2.HTTPError +urllib2.HTTPErrorProcessor(??) +urllib2.HTTPHandler(??) +urllib2.HTTPPasswordMgr(??) +urllib2.HTTPPasswordMgrWithDefaultRealm(??) +urllib2.HTTPRedirectHandler(??) +urllib2.HTTPSHandler(??) +urllib2.OpenerDirector(??) +urllib2.ProxyBasicAuthHandler(??) +urllib2.ProxyDigestAuthHandler(??) +urllib2.ProxyHandler(??) +urllib2.Request(??) +urllib2.StringIO([s]) -- Return a StringIO-like stream for reading or writing +urllib2.URLError +urllib2.UnknownHandler(??) +urllib2.addinfourl(??) +urllib2.base64 +urllib2.bisect +urllib2.build_opener(??) +urllib2.ftpwrapper(??) +urllib2.getproxies(??) +urllib2.hashlib +urllib2.httplib +urllib2.install_opener(??) +urllib2.localhost(??) +urllib2.mimetools +urllib2.os +urllib2.parse_http_list(??) +urllib2.parse_keqv_list(??) +urllib2.posixpath +urllib2.proxy_bypass(??) +urllib2.quote('abc def') -> 'abc%20def' +urllib2.random +urllib2.randombytes(??) +urllib2.re +urllib2.request_host(??) +urllib2.socket +urllib2.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib2.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib2.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib2.splitport('host:port') --> 'host', 'port'. +urllib2.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib2.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib2.splitvalue('attr=value') --> 'attr', 'value'. +urllib2.sys +urllib2.time +urllib2.unquote('abc%20def') -> 'abc def'. +urllib2.unwrap('') --> 'type://host/path'. +urllib2.url2pathname(??) +urllib2.urlopen(??) +urllib2.urlparse +urlparse.MAX_CACHE_SIZE +urlparse.ParseResult +urlparse.ResultMixin +urlparse.SplitResult +urlparse.clear_cache(??) +urlparse.namedtuple(??) +urlparse.non_hierarchical +urlparse.parse_qs(??) +urlparse.parse_qsl(??) +urlparse.scheme_chars +urlparse.test(??) +urlparse.test_input +urlparse.unquote('abc%20def') -> 'abc def'. +urlparse.urldefrag(??) +urlparse.urljoin(??) +urlparse.urlparse(??) +urlparse.urlsplit(??) +urlparse.urlunparse(??) +urlparse.urlunsplit(??) +urlparse.uses_fragment +urlparse.uses_netloc +urlparse.uses_params +urlparse.uses_query +urlparse.uses_relative +user.home +user.os +user.pythonrc +uu.Error +uu.binascii +uu.decode(??) +uu.encode(??) +uu.os +uu.sys +uu.test(??) +uuid.NAMESPACE_DNS +uuid.NAMESPACE_OID +uuid.NAMESPACE_URL +uuid.NAMESPACE_X500 +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID +uuid.ctypes +uuid.getnode(??) +uuid.lib +uuid.libname +uuid.sys +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +warnings.WarningMessage +warnings.catch_warnings +warnings.default_action +warnings.defaultaction +warnings.filters +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.linecache +warnings.once_registry +warnings.onceregistry +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys +warnings.types +warnings.warn +warnings.warn_explicit +warnings.warnpy3k(??) +wave.Chunk(??) +wave.Error +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.big_endian +wave.open(??) +wave.openfp(??) +wave.struct +weakref.CallableProxyType +weakref.KeyedRef +weakref.ProxyType +weakref.ProxyTypes +weakref.ReferenceError +weakref.ReferenceType +weakref.UserDict +weakref.WeakKeyDictionary(??) +weakref.WeakSet +weakref.WeakValueDictionary(??) +weakref.getweakrefcount(object) -- return the number of weak references +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref +webbrowser.BackgroundBrowser +webbrowser.BaseBrowser +webbrowser.Elinks +webbrowser.Error +webbrowser.Galeon +webbrowser.GenericBrowser +webbrowser.Grail +webbrowser.Konqueror +webbrowser.Mozilla +webbrowser.Netscape +webbrowser.Opera +webbrowser.UnixBrowser +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex +webbrowser.stat +webbrowser.subprocess +webbrowser.sys +webbrowser.time +whichdb.dbm +whichdb.os +whichdb.struct +whichdb.sys +whichdb.whichdb(??) +wsgiref.handlers +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.StringType +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os +wsgiref.handlers.sys +wsgiref.handlers.time +wsgiref.headers +wsgiref.headers.Headers(??) +wsgiref.headers.ListType +wsgiref.headers.TupleType +wsgiref.headers.re +wsgiref.headers.tspecials +wsgiref.simple_server +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib +wsgiref.util +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate +wsgiref.validate.DictType +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.ListType +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.StringType +wsgiref.validate.TupleType +wsgiref.validate.WSGIWarning +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.header_re +wsgiref.validate.re +wsgiref.validate.sys +wsgiref.validate.validator(??) +wsgiref.validate.warnings +xdrlib.ConversionError +xdrlib.Error +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct +xml.dom +xml.dom.DOMException +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr +xml.dom.EMPTY_NAMESPACE +xml.dom.EMPTY_PREFIX +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr +xml.dom.InuseAttributeErr +xml.dom.InvalidAccessErr +xml.dom.InvalidCharacterErr +xml.dom.InvalidModificationErr +xml.dom.InvalidStateErr +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr +xml.dom.NoDataAllowedErr +xml.dom.NoModificationAllowedErr +xml.dom.Node(??) +xml.dom.NodeFilter +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr +xml.dom.NotSupportedErr +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg +xml.dom.domreg.EmptyNodeList +xml.dom.domreg.NodeList +xml.dom.domreg.StringTypes +xml.dom.domreg.defproperty(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered +xml.dom.domreg.well_known_implementations +xml.dom.expatbuilder +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE +xml.dom.expatbuilder.EMPTY_PREFIX +xml.dom.expatbuilder.ElementInfo +xml.dom.expatbuilder.EmptyNodeList +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch +xml.dom.expatbuilder.FilterVisibilityController +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.NodeList +xml.dom.expatbuilder.ParseEscape +xml.dom.expatbuilder.Rejecter +xml.dom.expatbuilder.Skipper +xml.dom.expatbuilder.StringTypes +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.defproperty(??) +xml.dom.expatbuilder.expat +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation +xml.dom.expatbuilder.xmlbuilder +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat +xml.dom.minicompat.EmptyNodeList +xml.dom.minicompat.NodeList +xml.dom.minicompat.StringTypes +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml +xml.dom.minidom +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE +xml.dom.minidom.EMPTY_PREFIX +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo +xml.dom.minidom.EmptyNodeList +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap +xml.dom.minidom.StringTypes +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml +xml.dom.pulldom +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.types +xml.dom.pulldom.xml +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy +xml.dom.xmlbuilder.xml +xml.etree +xml.etree.ElementInclude +xml.etree.ElementInclude.ElementTree +xml.etree.ElementInclude.FatalIncludeError +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re +xml.etree.ElementTree +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element +xml.etree.ElementTree.ElementPath +xml.etree.ElementTree.ElementTree +xml.etree.ElementTree.HTML_EMPTY +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser +xml.etree.ElementTree.XMLTreeBuilder +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings +xml.etree.cElementTree +xml.etree.cElementTree.Comment +xml.etree.cElementTree.Element +xml.etree.cElementTree.ElementPath +xml.etree.cElementTree.ElementTree +xml.etree.cElementTree.PI +xml.etree.cElementTree.ParseError +xml.etree.cElementTree.ProcessingInstruction +xml.etree.cElementTree.QName +xml.etree.cElementTree.SubElement +xml.etree.cElementTree.TreeBuilder +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser +xml.etree.cElementTree.XMLTreeBuilder +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers +xml.parsers.expat +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error +xml.parsers.expat.errors +xml.parsers.expat.expat_CAPI +xml.parsers.expat.features +xml.parsers.expat.model +xml.parsers.expat.native_encoding +xml.parsers.expat.version_info +xml.sax +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException +xml.sax.SAXNotRecognizedException +xml.sax.SAXNotSupportedException +xml.sax.SAXParseException +xml.sax.SAXReaderNotAvailable +xml.sax.default_parser_list +xml.sax.expatreader +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException +xml.sax.expatreader.SAXNotRecognizedException +xml.sax.expatreader.SAXNotSupportedException +xml.sax.expatreader.SAXParseException +xml.sax.expatreader.SAXReaderNotAvailable +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader +xml.sax.handler +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features +xml.sax.handler.all_properties +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler +xml.sax.saxutils.os +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.types +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib +xml.sax.saxutils.urlparse +xml.sax.saxutils.xmlreader +xml.sax.xmlreader +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException +xml.sax.xmlreader.SAXNotSupportedException +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler +xmllib.Error +xmllib.TestXMLParser(??) +xmllib.XMLParser(??) +xmllib.amp +xmllib.attrfind +xmllib.attrtrans +xmllib.cdataclose +xmllib.cdataopen +xmllib.charref +xmllib.commentclose +xmllib.commentopen +xmllib.doctype +xmllib.doubledash +xmllib.endbracket +xmllib.endbracketfind +xmllib.endtagopen +xmllib.entityref +xmllib.illegal +xmllib.interesting +xmllib.ncname +xmllib.newline +xmllib.procclose +xmllib.procopen +xmllib.qname +xmllib.re +xmllib.ref +xmllib.space +xmllib.starttagend +xmllib.starttagmatch +xmllib.starttagopen +xmllib.string +xmllib.tagfind +xmllib.test(??) +xmllib.version +xmllib.xmldecl +xmllib.xmlns +xmlrpclib.APPLICATION_ERROR +xmlrpclib.Binary(??) +xmlrpclib.Boolean +xmlrpclib.BooleanType +xmlrpclib.BufferType +xmlrpclib.BuiltinFunctionType +xmlrpclib.BuiltinMethodType +xmlrpclib.ClassType +xmlrpclib.CodeType +xmlrpclib.ComplexType +xmlrpclib.DateTime(??) +xmlrpclib.DictProxyType +xmlrpclib.DictType +xmlrpclib.DictionaryType +xmlrpclib.EllipsisType +xmlrpclib.Error +xmlrpclib.ExpatParser(??) +xmlrpclib.False +xmlrpclib.FastMarshaller +xmlrpclib.FastParser +xmlrpclib.FastUnmarshaller +xmlrpclib.Fault +xmlrpclib.FileType +xmlrpclib.FloatType +xmlrpclib.FrameType +xmlrpclib.FunctionType +xmlrpclib.GeneratorType +xmlrpclib.GetSetDescriptorType +xmlrpclib.GzipDecodedResponse +xmlrpclib.INTERNAL_ERROR +xmlrpclib.INVALID_ENCODING_CHAR +xmlrpclib.INVALID_METHOD_PARAMS +xmlrpclib.INVALID_XMLRPC +xmlrpclib.InstanceType +xmlrpclib.IntType +xmlrpclib.LambdaType +xmlrpclib.ListType +xmlrpclib.LongType +xmlrpclib.MAXINT +xmlrpclib.METHOD_NOT_FOUND +xmlrpclib.MININT +xmlrpclib.Marshaller(??) +xmlrpclib.MemberDescriptorType +xmlrpclib.MethodType +xmlrpclib.ModuleType +xmlrpclib.MultiCall(??) +xmlrpclib.MultiCallIterator(??) +xmlrpclib.NOT_WELLFORMED_ERROR +xmlrpclib.NoneType +xmlrpclib.NotImplementedType +xmlrpclib.ObjectType +xmlrpclib.PARSE_ERROR +xmlrpclib.ProtocolError +xmlrpclib.ResponseError +xmlrpclib.SERVER_ERROR +xmlrpclib.SYSTEM_ERROR +xmlrpclib.SafeTransport(??) +xmlrpclib.Server(??) +xmlrpclib.ServerProxy(??) +xmlrpclib.SliceType +xmlrpclib.SlowParser(??) +xmlrpclib.StringIO +xmlrpclib.StringType +xmlrpclib.StringTypes +xmlrpclib.TRANSPORT_ERROR +xmlrpclib.TracebackType +xmlrpclib.Transport(??) +xmlrpclib.True +xmlrpclib.TupleType +xmlrpclib.TypeType +xmlrpclib.UNSUPPORTED_ENCODING +xmlrpclib.UnboundMethodType +xmlrpclib.UnicodeType +xmlrpclib.Unmarshaller(??) +xmlrpclib.WRAPPERS +xmlrpclib.XRangeType +xmlrpclib.base64 +xmlrpclib.boolean +xmlrpclib.datetime +xmlrpclib.dumps(??) +xmlrpclib.errno +xmlrpclib.escape(??) +xmlrpclib.expat +xmlrpclib.getparser() -> parser, unmarshaller +xmlrpclib.gzip +xmlrpclib.gzip_decode(??) +xmlrpclib.gzip_encode(??) +xmlrpclib.httplib +xmlrpclib.loads(??) +xmlrpclib.operator +xmlrpclib.re +xmlrpclib.socket +xmlrpclib.string +xmlrpclib.time +xrange([start,] stop[, step]) -> xrange object +xxsubtype.bench +xxsubtype.spamdict +xxsubtype.spamlist +zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)] +zipfile.BadZipfile +zipfile.LargeZipFile +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile +zipfile.ZipFile(??) +zipfile.ZipInfo +zipfile.binascii +zipfile.cStringIO +zipfile.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zipfile.error +zipfile.io +zipfile.is_zipfile(??) +zipfile.main(??) +zipfile.os +zipfile.re +zipfile.shutil +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys +zipfile.time +zipfile.zlib +zipimport.ZipImportError +zipimport.zipimporter(archivepath) -> zipimporter object +zlib.DEFLATED +zlib.DEF_MEM_LEVEL +zlib.MAX_WBITS +zlib.ZLIB_VERSION +zlib.Z_BEST_COMPRESSION +zlib.Z_BEST_SPEED +zlib.Z_DEFAULT_COMPRESSION +zlib.Z_DEFAULT_STRATEGY +zlib.Z_FILTERED +zlib.Z_FINISH +zlib.Z_FULL_FLUSH +zlib.Z_HUFFMAN_ONLY +zlib.Z_NO_FLUSH +zlib.Z_SYNC_FLUSH +zlib.adler32(string[, start]) -- Compute an Adler-32 checksum of string. +zlib.compress(string[, level]) -- Returned compressed string. +zlib.compressobj([level]) -- Return a compressor object. +zlib.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zlib.decompress(string[, wbits[, bufsize]]) -- Return decompressed string. +zlib.decompressobj([wbits]) -- Return a decompressor object. +zlib.error diff --git a/third_party/qscintilla/qsci/api/python/Python-3.1.api b/third_party/qscintilla/qsci/api/python/Python-3.1.api new file mode 100644 index 0000000..5187c7c --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.1.api @@ -0,0 +1,7235 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BufferError(??) +BytesWarning(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +NameError(??) +None(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +ReferenceError(??) +RuntimeError(??) +RuntimeWarning(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABCMeta(??) +abc.WeakSet(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +all(iterable) -> bool +any(iterable) -> bool +array.ArrayType(??) +array.array(typecode [, initializer]) -> array +array.typecodes +ascii(object) -> string +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.Assert(??) +ast.Assign(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FunctionDef(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ONLY_AST +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.TryExcept(??) +ast.TryFinally(??) +ast.Tuple(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.unaryop(??) +ast.walk(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.buffer(??) +asynchat.deque(iterable[, maxlen]) --> deque object +asynchat.fifo(??) +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asynchat.socket(??) +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINTR +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.fcntl(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +audioop.add(??) +audioop.adpcm2lin(??) +audioop.alaw2lin(??) +audioop.avg(??) +audioop.avgpp(??) +audioop.bias(??) +audioop.cross(??) +audioop.error(??) +audioop.findfactor(??) +audioop.findfit(??) +audioop.findmax(??) +audioop.getsample(??) +audioop.lin2adpcm(??) +audioop.lin2alaw(??) +audioop.lin2lin(??) +audioop.lin2ulaw(??) +audioop.max(??) +audioop.maxpp(??) +audioop.minmax(??) +audioop.mul(??) +audioop.ratecv(??) +audioop.reverse(??) +audioop.rms(??) +audioop.tomono(??) +audioop.tostereo(??) +audioop.ulaw2lin(??) +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bdb.types(??) +bin(number) -> string +binascii.Error(??) +binascii.Incomplete(??) +binascii.a2b_base64(??) +binascii.a2b_hex(hexstr) -> s; Binary data of hexadecimal representation. +binascii.a2b_hqx(??) +binascii.a2b_qp(??) +binascii.a2b_uu(??) +binascii.b2a_base64(??) +binascii.b2a_hex(data) -> s; Hexadecimal representation of binary data. +binascii.b2a_hqx(??) +binascii.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +binascii.b2a_uu(??) +binascii.crc32(??) +binascii.crc_hqx(??) +binascii.hexlify(??) +binascii.rlecode_hqx(??) +binascii.rledecode_hqx(??) +binascii.unhexlify(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +binhex.sys(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.NameError(??) +builtins.None +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.ReferenceError(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(number) -> number +builtins.all(iterable) -> bool +builtins.any(iterable) -> bool +builtins.ascii(object) -> string +builtins.bin(number) -> string +builtins.bool(x) -> bool +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.chr(i) -> Unicode character +builtins.classmethod(function) -> method +builtins.compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +builtins.complex(real[, imag]) -> complex number +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(object, name) +builtins.dict() -> new empty dictionary. +builtins.dir([object]) -> list of strings +builtins.divmod(x, y) -> (div, mod) +builtins.enumerate(iterable) -> iterator for index, value of iterable +builtins.eval(source[, globals[, locals]]) -> value +builtins.exec(object[, globals[, locals]]) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(x) -> floating point number +builtins.format(value[, format_spec]) -> string +builtins.frozenset(iterable) --> frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals() -> dictionary +builtins.hasattr(object, name) -> bool +builtins.hash(object) -> integer +builtins.help(??) +builtins.hex(number) -> string +builtins.id(object) -> integer +builtins.input([prompt]) -> string +builtins.int(x[, base]) -> integer +builtins.isinstance(object, class-or-type-or-tuple) -> bool +builtins.issubclass(C, B) -> bool +builtins.iter(iterable) -> iterator +builtins.len(object) -> integer +builtins.license(??) +builtins.list() -> new list +builtins.locals() -> dictionary +builtins.map(func, *iterables) --> map object +builtins.max(iterable[, key=func]) -> value +builtins.memoryview(object) +builtins.min(iterable[, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(number) -> string +builtins.open(??) +builtins.ord(c) -> integer +builtins.pow(x, y[, z]) -> number +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout) +builtins.property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +builtins.quit(??) +builtins.range([start,] stop[, step]) -> range object +builtins.repr(object) -> string +builtins.reversed(sequence) -> reverse iterator over values of the sequence +builtins.round(number[, ndigits]) -> number +builtins.set(iterable) --> set object +builtins.setattr(object, name, value) +builtins.slice([start,] stop[, step]) +builtins.sorted(iterable, key=None, reverse=False) --> new sorted list +builtins.staticmethod(function) -> method +builtins.str(string[, encoding[, errors]]) -> str +builtins.sum(iterable[, start]) -> value +builtins.super() -> same as super(__class__, ) +builtins.tuple() -> an empty tuple +builtins.type(object) -> the object's type +builtins.vars([object]) -> dictionary +builtins.zip(iter1 [,iter2 [...]]) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor([compresslevel=9]) -> compressor object +bz2.BZ2Decompressor() -> decompressor object +bz2.BZ2File(name [, mode='r', buffering=0, compresslevel=9]) -> file object +bz2.compress(data [, compresslevel=9]) -> string +bz2.decompress(data) -> decompressed data +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.help(??) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +cgi.FieldStorage(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.attrgetter(attr, ...) --> attrgetter object +cgi.dolog(??) +cgi.email(??) +cgi.escape(??) +cgi.initlog(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warn(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +cgitb.types(??) +chr(i) -> Unicode character +chunk.Chunk(??) +classmethod(function) -> method +cmath.acos(x) +cmath.acosh(x) +cmath.asin(x) +cmath.asinh(x) +cmath.atan(x) +cmath.atanh(x) +cmath.cos(x) +cmath.cosh(x) +cmath.e +cmath.exp(x) +cmath.isinf(z) -> bool +cmath.isnan(z) -> bool +cmath.log(x[, base]) -> the logarithm of x to the given base. +cmath.log10(x) +cmath.phase(z) -> float +cmath.pi +cmath.polar(z) -> r: float, phi: float +cmath.rect(r, phi) -> z: complex +cmath.sin(x) +cmath.sinh(x) +cmath.sqrt(x) +cmath.tan(x) +cmath.tanh(x) +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charbuffer_encode(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(encoding) -> CodecInfo +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unicode_internal_decode(??) +codecs.unicode_internal_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.ByteString(??) +collections.Callable(??) +collections.Container(??) +collections.Counter(??) +collections.Hashable(??) +collections.ItemsView(??) +collections.Iterable(??) +collections.Iterator(??) +collections.KeysView(??) +collections.Mapping(??) +collections.MappingView(??) +collections.MutableMapping(??) +collections.MutableSequence(??) +collections.MutableSet(??) +collections.OrderedDict(??) +collections.Sequence(??) +collections.Set(??) +collections.Sized(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.ValuesView(??) +collections.bytearray_iterator(??) +collections.bytes_iterator(??) +collections.defaultdict(default_factory) --> dict with default factory +collections.deque(iterable[, maxlen]) --> deque object +collections.dict_itemiterator(??) +collections.dict_items(??) +collections.dict_keyiterator(??) +collections.dict_keys(??) +collections.dict_proxy(??) +collections.dict_valueiterator(??) +collections.dict_values(??) +collections.list_iterator(??) +collections.list_reverseiterator(??) +collections.namedtuple(??) +collections.range_iterator(??) +collections.set_iterator(??) +collections.str_iterator(??) +collections.tuple_iterator(??) +collections.zip_iterator(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_path(??) +compileall.imp(??) +compileall.main(??) +compileall.os(??) +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(real[, imag]) -> complex number +configparser.ConfigParser(??) +configparser.DEFAULTSECT +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.re(??) +contextlib.GeneratorContextManager(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.nested(??) +contextlib.sys(??) +contextlib.warn(??) +contextlib.wraps(??) +copy.Error(??) +copy.PyStringMap(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copy.name +copy.t(??) +copy.weakref(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.crypt(word, salt) -> string +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable[, r]) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable[, r]) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1]) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(function or None, sequence) --> filterfalse object +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.islice(iterable, [start,] stop [, step]) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_conversion_mode(encoding, errors) -> (previous-encoding, previous-errors) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util(??) +ctypes.util.errno(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.re(??) +ctypes.util.sys(??) +ctypes.util.tempfile(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii(??) +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.newpad(??) +curses.newwin(??) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.wrapper(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.tzinfo(??) +dbm.dumb(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(path[, flag[, mode]]) -> mapping +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary. +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.cmp_op(??) +dis.dis(??) +dis.disassemble(??) +dis.disassemble_string(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.flag2name(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.sys(??) +dis.types(??) +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.tempfile(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +doctest.warnings(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.local(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderParseError(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.message(??) +email.feedparser.re(??) +email.generator(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.Header(??) +email.generator.NL +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.generator.warnings(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO([buffer]) -> object +email.message.Charset(??) +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.base64(??) +email.message.binascii(??) +email.message.errors(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message.warnings(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio(??) +email.mime.audio.BytesIO([buffer]) -> object +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base(??) +email.mime.base.MIMEBase(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.mime.text.encode_7or8bit(??) +email.parser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Message(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.warnings(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.EMPTYSTRING +email.utils.StringIO(??) +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.base64(??) +email.utils.collapse_rfc2231_value(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +email.utils.warnings(??) +enumerate(iterable) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EADV +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EBADE +errno.EBADF +errno.EBADFD +errno.EBADMSG +errno.EBADR +errno.EBADRQC +errno.EBADSLT +errno.EBFONT +errno.EBUSY +errno.ECHILD +errno.ECHRNG +errno.ECOMM +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDEADLOCK +errno.EDESTADDRREQ +errno.EDOM +errno.EDOTDOT +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.EISNAM +errno.EL2HLT +errno.EL2NSYNC +errno.EL3HLT +errno.EL3RST +errno.ELIBACC +errno.ELIBBAD +errno.ELIBEXEC +errno.ELIBMAX +errno.ELIBSCN +errno.ELNRNG +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENAVAIL +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOANO +errno.ENOBUFS +errno.ENOCSI +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENONET +errno.ENOPKG +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTNAM +errno.ENOTSOCK +errno.ENOTTY +errno.ENOTUNIQ +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.ERANGE +errno.EREMCHG +errno.EREMOTE +errno.EREMOTEIO +errno.ERESTART +errno.EROFS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESRMNT +errno.ESTALE +errno.ESTRPIPE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUCLEAN +errno.EUNATCH +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.EXFULL +errno.errorcode(??) +eval(source[, globals[, locals]]) -> value +exec(object[, globals[, locals]]) +exit(??) +fcntl.DN_ACCESS +fcntl.DN_ATTRIB +fcntl.DN_CREATE +fcntl.DN_DELETE +fcntl.DN_MODIFY +fcntl.DN_MULTISHOT +fcntl.DN_RENAME +fcntl.FASYNC +fcntl.FD_CLOEXEC +fcntl.F_DUPFD +fcntl.F_EXLCK +fcntl.F_GETFD +fcntl.F_GETFL +fcntl.F_GETLEASE +fcntl.F_GETLK +fcntl.F_GETLK64 +fcntl.F_GETOWN +fcntl.F_GETSIG +fcntl.F_NOTIFY +fcntl.F_RDLCK +fcntl.F_SETFD +fcntl.F_SETFL +fcntl.F_SETLEASE +fcntl.F_SETLK +fcntl.F_SETLK64 +fcntl.F_SETLKW +fcntl.F_SETLKW64 +fcntl.F_SETOWN +fcntl.F_SETSIG +fcntl.F_SHLCK +fcntl.F_UNLCK +fcntl.F_WRLCK +fcntl.I_ATMARK +fcntl.I_CANPUT +fcntl.I_CKBAND +fcntl.I_FDINSERT +fcntl.I_FIND +fcntl.I_FLUSH +fcntl.I_FLUSHBAND +fcntl.I_GETBAND +fcntl.I_GETCLTIME +fcntl.I_GETSIG +fcntl.I_GRDOPT +fcntl.I_GWROPT +fcntl.I_LINK +fcntl.I_LIST +fcntl.I_LOOK +fcntl.I_NREAD +fcntl.I_PEEK +fcntl.I_PLINK +fcntl.I_POP +fcntl.I_PUNLINK +fcntl.I_PUSH +fcntl.I_RECVFD +fcntl.I_SENDFD +fcntl.I_SETCLTIME +fcntl.I_SETSIG +fcntl.I_SRDOPT +fcntl.I_STR +fcntl.I_SWROPT +fcntl.I_UNLINK +fcntl.LOCK_EX +fcntl.LOCK_MAND +fcntl.LOCK_NB +fcntl.LOCK_READ +fcntl.LOCK_RW +fcntl.LOCK_SH +fcntl.LOCK_UN +fcntl.LOCK_WRITE +fcntl.fcntl(fd, opt, [arg]) +fcntl.flock(fd, operation) +fcntl.ioctl(fd, opt[, arg[, mutate_flag]]) +fcntl.lockf (fd, operation, length=0, start=0, whence=0) +filecmp.BUFSIZE +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(function or None, sequence) --> filterfalse object +filecmp.os(??) +filecmp.stat(??) +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(files=None, inplace=False, backup="", bufsize=0, mode="r", openhook=None) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.re(??) +fnmatch.translate(??) +format(value[, format_spec]) -> string +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +frozenset(iterable) --> frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.os(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.sys(??) +ftplib.test(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.reduce(function, sequence[, initial]) -> value +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage(??) +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.is_tracked(obj) -> bool +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.os(??) +gettext.re(??) +gettext.struct(??) +gettext.sys(??) +gettext.test(??) +gettext.textdomain(??) +gettext.translation(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +glob.sys(??) +globals() -> dictionary +grp.getgrall() -> list of tuples +grp.getgrgid(id) -> tuple +grp.getgrnam(name) -> tuple +grp.struct_group(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.LOWU32(??) +gzip.READ +gzip.U32(??) +gzip.WRITE +gzip.builtins(??) +gzip.open(??) +gzip.read32(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(object, name) -> bool +hash(object) -> integer +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha512(??) +heapq.bisect(??) +heapq.chain(*iterables) --> chain object +heapq.count(start=0, step=1]) --> count object +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(??) +heapq.heappushpop(??) +heapq.heapreplace(??) +heapq.islice(iterable, [start,] stop [, step]) --> islice object +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +heapq.repeat(object [,times]) -> create an iterator which returns the object +heapq.tee(iterable, n=2) --> tuple of n independent iterators. +help(??) +hex(number) -> string +hmac.HMAC(??) +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.name2codepoint(??) +html.parser.HTMLParseError(??) +html.parser.HTMLParser(??) +html.parser.attrfind(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_cdata(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind(??) +http.client(??) +http.client.ACCEPTED +http.client.BAD_GATEWAY +http.client.BAD_REQUEST +http.client.BadStatusLine(??) +http.client.CONFLICT +http.client.CONTINUE +http.client.CREATED +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED +http.client.FAILED_DEPENDENCY +http.client.FORBIDDEN +http.client.FOUND +http.client.FakeSocket(??) +http.client.GATEWAY_TIMEOUT +http.client.GONE +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED +http.client.IM_USED +http.client.INSUFFICIENT_STORAGE +http.client.INTERNAL_SERVER_ERROR +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED +http.client.LOCKED +http.client.LineAndFileWrapper(??) +http.client.MAXAMOUNT +http.client.METHOD_NOT_ALLOWED +http.client.MOVED_PERMANENTLY +http.client.MULTIPLE_CHOICES +http.client.MULTI_STATUS +http.client.NON_AUTHORITATIVE_INFORMATION +http.client.NOT_ACCEPTABLE +http.client.NOT_EXTENDED +http.client.NOT_FOUND +http.client.NOT_IMPLEMENTED +http.client.NOT_MODIFIED +http.client.NO_CONTENT +http.client.NotConnected(??) +http.client.OK +http.client.PARTIAL_CONTENT +http.client.PAYMENT_REQUIRED +http.client.PRECONDITION_FAILED +http.client.PROCESSING +http.client.PROXY_AUTHENTICATION_REQUIRED +http.client.REQUESTED_RANGE_NOT_SATISFIABLE +http.client.REQUEST_ENTITY_TOO_LARGE +http.client.REQUEST_TIMEOUT +http.client.REQUEST_URI_TOO_LONG +http.client.RESET_CONTENT +http.client.ResponseNotReady(??) +http.client.SEE_OTHER +http.client.SERVICE_UNAVAILABLE +http.client.SWITCHING_PROTOCOLS +http.client.TEMPORARY_REDIRECT +http.client.UNAUTHORIZED +http.client.UNPROCESSABLE_ENTITY +http.client.UNSUPPORTED_MEDIA_TYPE +http.client.UPGRADE_REQUIRED +http.client.USE_PROXY +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.email(??) +http.client.error(??) +http.client.io(??) +http.client.os(??) +http.client.parse_headers(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.client.warnings(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.dumps(??) +http.cookies.loads(??) +http.cookies.re(??) +http.cookies.string(??) +http.cookies.warnings(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.cgi(??) +http.server.email(??) +http.server.executable(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(object) -> integer +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.Debug +imaplib.Flags(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.acquire_lock() -> None +imp.find_module(name, [path]) -> (file, filename, (suffix, mode, type)) +imp.get_frozen_object(??) +imp.get_magic() -> string +imp.get_suffixes() -> [(suffix, mode, type), ...] +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(name, file, filename, (suffix, mode, type)) -> module +imp.load_package(??) +imp.load_source(??) +imp.lock_held() -> boolean +imp.new_module(name) -> module +imp.release_lock() -> None +imp.reload(module) -> module +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.PyLoader(??) +importlib.abc.PyPycLoader(??) +importlib.abc.ResourceLoader(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.abc.types(??) +importlib.errno(??) +importlib.imp(??) +importlib.import_module(??) +importlib.machinery(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.PathFinder(??) +importlib.marshal(??) +importlib.os(??) +importlib.re(??) +importlib.sep +importlib.sys(??) +importlib.tokenize(??) +importlib.util(??) +importlib.util.module_for_loader(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +input([prompt]) -> string +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.CO_GENERATOR +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.EndOfBlock(??) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.ModuleInfo(name, suffix, mode, module_type) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getblock(??) +inspect.getclasstree(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.imp(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.joinseq(??) +inspect.linecache(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.stack(??) +inspect.string(??) +inspect.strseq(??) +inspect.sys(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.walktree(??) +int(x[, base]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO([buffer]) -> object +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +ipaddr.BaseIP(??) +ipaddr.Error(??) +ipaddr.IP(??) +ipaddr.IPAddressExclusionError(??) +ipaddr.IPTypeError(??) +ipaddr.IPv4(??) +ipaddr.IPv4IpValidationError(??) +ipaddr.IPv4NetmaskValidationError(??) +ipaddr.IPv6(??) +ipaddr.IPv6IpValidationError(??) +ipaddr.IPv6NetmaskValidationError(??) +ipaddr.PrefixlenDiffInvalidError(??) +ipaddr.collapse_address_list(??) +ipaddr.struct(??) +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(iterable) -> iterator +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable[, r]) --> combinations object +itertools.combinations_with_replacement(iterable[, r]) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1]) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.filterfalse(function or None, sequence) --> filterfalse object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.islice(iterable, [start,] stop [, step]) --> islice object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecoder(??) +json.JSONEncoder(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS +json.decoder.JSONArray(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.binascii(??) +json.decoder.c_scanstring(??) +json.decoder.errmsg(??) +json.decoder.linecol(??) +json.decoder.make_scanner(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanstring(basestring, end, strict=True) -> (bytes, end) +json.decoder.struct(??) +json.decoder.sys(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.FLOAT_REPR(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(??) +json.encoder.encode_basestring_ascii(basestring) -> bytes +json.encoder.i +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +keyword.main(??) +len(object) -> integer +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list() -> new list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.bind_textdomain_codeset(domain, codeset) -> string +locale.bindtextdomain(domain, dir) -> string +locale.collections(??) +locale.currency(??) +locale.dcgettext(domain, msg, category) -> string +locale.dgettext(domain, msg) -> string +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.gettext(msg) -> string +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.textdomain(domain) -> string +locale.windows_locale(??) +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StreamHandler(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.codecs(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.fileConfig(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.os(??) +logging.config.socket(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.thread(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.codecs(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.log(??) +logging.logMultiprocessing +logging.logProcesses +logging.logThreads +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions +logging.root(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.thread(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(??) +macpath.S_ISCHR(??) +macpath.S_ISDIR(??) +macpath.S_ISFIFO(??) +macpath.S_ISGID +macpath.S_ISLNK(??) +macpath.S_ISREG(??) +macpath.S_ISSOCK(??) +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep(??) +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.genericpath(??) +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os(??) +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames(??) +macurl2path.os(??) +macurl2path.pathname2url(??) +macurl2path.test(??) +macurl2path.url2pathname(??) +macurl2path.urllib(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.sys(??) +mailbox.time(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(func, *iterables) --> map object +marshal.dump(value, file[, version]) +marshal.dumps(value[, version]) +marshal.load(file) +marshal.loads(string) +marshal.version +math.acos(x) +math.acosh(x) +math.asin(x) +math.asinh(x) +math.atan(x) +math.atan2(y, x) +math.atanh(x) +math.ceil(x) +math.copysign(x,y) +math.cos(x) +math.cosh(x) +math.degrees(x) -> converts angle x from radians to degrees +math.e +math.exp(x) +math.fabs(x) +math.factorial(x) -> Integral +math.floor(x) +math.fmod(x,y) +math.frexp(x) +math.fsum(??) +math.hypot(x,y) +math.isinf(x) -> bool +math.isnan(x) -> bool +math.ldexp(x, i) -> x * (2**i) +math.log(x[, base]) -> the logarithm of x to the given base. +math.log10(x) -> the base 10 logarithm of x. +math.log1p(x) +math.modf(x) +math.pi +math.pow(x,y) +math.radians(x) -> converts angle x from degrees to radians +math.sin(x) +math.sinh(x) +math.sqrt(x) +math.tan(x) +math.tanh(x) +math.trunc(x:Real) -> Integral +max(iterable[, key=func]) -> value +memoryview(object) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable[, key=func]) -> value +mmap.ACCESS_COPY +mmap.ACCESS_READ +mmap.ACCESS_WRITE +mmap.ALLOCATIONGRANULARITY +mmap.MAP_ANON +mmap.MAP_ANONYMOUS +mmap.MAP_DENYWRITE +mmap.MAP_EXECUTABLE +mmap.MAP_PRIVATE +mmap.MAP_SHARED +mmap.PAGESIZE +mmap.PROT_EXEC +mmap.PROT_READ +mmap.PROT_WRITE +mmap.error(??) +mmap.mmap(??) +modulefinder.AddPackagePath(??) +modulefinder.HAVE_ARGUMENT +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.READ_MODE +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.generators(??) +modulefinder.imp(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.struct(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.CHALLENGE +multiprocessing.connection.Client(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Finalize(??) +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.close(fd) +multiprocessing.connection.current_process(??) +multiprocessing.connection.debug(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.duplicate(??) +multiprocessing.connection.errno(??) +multiprocessing.connection.families(??) +multiprocessing.connection.get_temp_dir(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.sub_debug(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.TimeoutError(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.cpu_count(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary. +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.itertools(??) +multiprocessing.dummy.list() -> new list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forking(??) +multiprocessing.forking.ForkingPickler(??) +multiprocessing.forking.Pickler(??) +multiprocessing.forking.Popen(??) +multiprocessing.forking.assert_spawning(??) +multiprocessing.forking.close(fd) +multiprocessing.forking.duplicate(??) +multiprocessing.forking.exit(??) +multiprocessing.forking.old_main_modules(??) +multiprocessing.forking.os(??) +multiprocessing.forking.partial(func, *args, **keywords) - new function with partial application +multiprocessing.forking.prepare(??) +multiprocessing.forking.process(??) +multiprocessing.forking.signal(??) +multiprocessing.forking.sys(??) +multiprocessing.forking.time(??) +multiprocessing.forking.util(??) +multiprocessing.freeze_support(??) +multiprocessing.get_logger(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Finalize(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.info(??) +multiprocessing.heap.itertools(??) +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AuthenticationString(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.Finalize(??) +multiprocessing.managers.ForkingPickler(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PicklingError(??) +multiprocessing.managers.Pool(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.Popen(??) +multiprocessing.managers.Process(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.active_children(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.assert_spawning(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.copyreg(??) +multiprocessing.managers.current_process(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.exit(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.info(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.os(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.managers.weakref(??) +multiprocessing.os(??) +multiprocessing.pool(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.Finalize(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.MapResult(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.Process(??) +multiprocessing.pool.RUN +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.cpu_count(??) +multiprocessing.pool.debug(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.worker(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.Process(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.queues.BoundedSemaphore(??) +multiprocessing.queues.Condition(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Lock(??) +multiprocessing.queues.Pipe(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.Semaphore(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.assert_spawning(??) +multiprocessing.queues.atexit(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.info(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reduction.Client(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.Listener(??) +multiprocessing.reduction.Popen(??) +multiprocessing.reduction.close(fd) +multiprocessing.reduction.current_process(??) +multiprocessing.reduction.debug(??) +multiprocessing.reduction.duplicate(??) +multiprocessing.reduction.fromfd(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.rebuild_connection(??) +multiprocessing.reduction.rebuild_handle(??) +multiprocessing.reduction.rebuild_socket(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.reduce_connection(??) +multiprocessing.reduction.reduce_handle(??) +multiprocessing.reduction.reduce_socket(??) +multiprocessing.reduction.register_after_fork(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sub_debug(??) +multiprocessing.reduction.sys(??) +multiprocessing.reduction.threading(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.ForkingPickler(??) +multiprocessing.sharedctypes.RLock(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.sys(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Finalize(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.Popen(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.assert_spawning(??) +multiprocessing.synchronize.current_process(??) +multiprocessing.synchronize.debug(??) +multiprocessing.synchronize.os(??) +multiprocessing.synchronize.register_after_fork(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.threading(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.active_children(??) +multiprocessing.util.atexit(??) +multiprocessing.util.current_process(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +next(iterator[, default]) +nis.cat(map, domain = defaultdomain) +nis.error(??) +nis.get_default_domain() -> str +nis.maps(domain = defaultdomain) +nis.match(key, map, domain = defaultdomain) +nntplib.CRLF +nntplib.LONGRESP(??) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.error_data(??) +nntplib.error_perm(??) +nntplib.error_proto(??) +nntplib.error_reply(??) +nntplib.error_temp(??) +nntplib.re(??) +nntplib.socket(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +numbers.abstractproperty(??) +object(??) +oct(number) -> string +open(??) +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(a, b) -- Same as a += b. +operator.iand(a, b) -- Same as a &= b. +operator.iconcat(a, b) -- Same as a += b, for a and b sequences. +operator.ifloordiv(a, b) -- Same as a //= b. +operator.ilshift(a, b) -- Same as a <<= b. +operator.imod(a, b) -- Same as a %= b. +operator.imul(a, b) -- Same as a *= b. +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(a, b) -- Same as a |= b. +operator.ipow(a, b) -- Same as a **= b. +operator.irshift(a, b) -- Same as a >>= b. +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(a, b) -- Same as a -= b. +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(a, b) -- Same as a /= b. +operator.ixor(a, b) -- Same as a ^= b. +operator.le(a, b) -- Same as a<=b. +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.rshift(a, b) -- Same as a >> b. +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(c) -> integer +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_OK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_LARGEFILE +os.O_NDELAY +os.O_NOATIME +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_RSYNC +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.P_NOWAIT +os.P_NOWAITO +os.P_WAIT +os.R_OK +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(path, mode) -> True if granted, False otherwise +os.altsep(??) +os.chdir(path) +os.chmod(path, mode) +os.chown(path, uid, gid) +os.chroot(path) +os.close(fd) +os.closerange(fd_low, fd_high) +os.confstr(name) -> string +os.confstr_names(??) +os.ctermid() -> string +os.curdir +os.defpath +os.device_encoding(fd) -> str +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ(??) +os.errno(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(??) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fildes) +os.fchmod(fd, mode) +os.fchown(fd, uid, gid) +os.fdatasync(fildes) +os.fdopen(??) +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.getcwd() -> path +os.getcwdb() -> path +os.getegid() -> egid +os.getenv(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getsid(pid) -> sid +os.getuid() -> uid +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst) +os.listdir(path) -> list_of_strings +os.lseek(fd, pos, how) -> newpos +os.lstat(path) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0o777]) +os.minor(device) -> minor number +os.mkdir(path [, mode=0777]) +os.mkfifo(filename [, mode=0666]) +os.mknod(filename [, mode=0600, device]) +os.name +os.nice(inc) -> new_priority +os.open(filename, flag [, mode=0777]) -> fd +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path(??) +os.pathconf(path, name) -> integer +os.pathconf_names(??) +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(??) +os.putenv(key, value) +os.read(fd, buffersize) -> string +os.readlink(path) -> path +os.remove(path) +os.removedirs(path) +os.rename(old, new) +os.renames(old, new) +os.rmdir(path) +os.sep +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setregid(rgid, egid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.stat(path) -> stat result +os.stat_float_times([newval]) -> oldval +os.stat_result(??) +os.statvfs(path) -> statvfs result +os.statvfs_result(??) +os.strerror(code) -> string +os.symlink(src, dst) +os.sys(??) +os.sysconf(name) -> integer +os.sysconf_names(??) +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.times() -> (utime, stime, cutime, cstime, elapsed_time) +os.ttyname(fd) -> string +os.umask(new_mask) -> old_mask +os.uname() -> (sysname, nodename, release, version, machine) +os.unlink(path) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, (atime, mtime)) +os.wait() -> (pid, status) +os.wait3(options) -> (pid, status, rusage) +os.wait4(pid, options) -> (pid, status, rusage) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, string) -> byteswritten +ossaudiodev.AFMT_AC3 +ossaudiodev.AFMT_A_LAW +ossaudiodev.AFMT_IMA_ADPCM +ossaudiodev.AFMT_MPEG +ossaudiodev.AFMT_MU_LAW +ossaudiodev.AFMT_QUERY +ossaudiodev.AFMT_S16_BE +ossaudiodev.AFMT_S16_LE +ossaudiodev.AFMT_S16_NE +ossaudiodev.AFMT_S8 +ossaudiodev.AFMT_U16_BE +ossaudiodev.AFMT_U16_LE +ossaudiodev.AFMT_U8 +ossaudiodev.OSSAudioError(??) +ossaudiodev.SNDCTL_COPR_HALT +ossaudiodev.SNDCTL_COPR_LOAD +ossaudiodev.SNDCTL_COPR_RCODE +ossaudiodev.SNDCTL_COPR_RCVMSG +ossaudiodev.SNDCTL_COPR_RDATA +ossaudiodev.SNDCTL_COPR_RESET +ossaudiodev.SNDCTL_COPR_RUN +ossaudiodev.SNDCTL_COPR_SENDMSG +ossaudiodev.SNDCTL_COPR_WCODE +ossaudiodev.SNDCTL_COPR_WDATA +ossaudiodev.SNDCTL_DSP_BIND_CHANNEL +ossaudiodev.SNDCTL_DSP_CHANNELS +ossaudiodev.SNDCTL_DSP_GETBLKSIZE +ossaudiodev.SNDCTL_DSP_GETCAPS +ossaudiodev.SNDCTL_DSP_GETCHANNELMASK +ossaudiodev.SNDCTL_DSP_GETFMTS +ossaudiodev.SNDCTL_DSP_GETIPTR +ossaudiodev.SNDCTL_DSP_GETISPACE +ossaudiodev.SNDCTL_DSP_GETODELAY +ossaudiodev.SNDCTL_DSP_GETOPTR +ossaudiodev.SNDCTL_DSP_GETOSPACE +ossaudiodev.SNDCTL_DSP_GETSPDIF +ossaudiodev.SNDCTL_DSP_GETTRIGGER +ossaudiodev.SNDCTL_DSP_MAPINBUF +ossaudiodev.SNDCTL_DSP_MAPOUTBUF +ossaudiodev.SNDCTL_DSP_NONBLOCK +ossaudiodev.SNDCTL_DSP_POST +ossaudiodev.SNDCTL_DSP_PROFILE +ossaudiodev.SNDCTL_DSP_RESET +ossaudiodev.SNDCTL_DSP_SAMPLESIZE +ossaudiodev.SNDCTL_DSP_SETDUPLEX +ossaudiodev.SNDCTL_DSP_SETFMT +ossaudiodev.SNDCTL_DSP_SETFRAGMENT +ossaudiodev.SNDCTL_DSP_SETSPDIF +ossaudiodev.SNDCTL_DSP_SETSYNCRO +ossaudiodev.SNDCTL_DSP_SETTRIGGER +ossaudiodev.SNDCTL_DSP_SPEED +ossaudiodev.SNDCTL_DSP_STEREO +ossaudiodev.SNDCTL_DSP_SUBDIVIDE +ossaudiodev.SNDCTL_DSP_SYNC +ossaudiodev.SNDCTL_FM_4OP_ENABLE +ossaudiodev.SNDCTL_FM_LOAD_INSTR +ossaudiodev.SNDCTL_MIDI_INFO +ossaudiodev.SNDCTL_MIDI_MPUCMD +ossaudiodev.SNDCTL_MIDI_MPUMODE +ossaudiodev.SNDCTL_MIDI_PRETIME +ossaudiodev.SNDCTL_SEQ_CTRLRATE +ossaudiodev.SNDCTL_SEQ_GETINCOUNT +ossaudiodev.SNDCTL_SEQ_GETOUTCOUNT +ossaudiodev.SNDCTL_SEQ_GETTIME +ossaudiodev.SNDCTL_SEQ_NRMIDIS +ossaudiodev.SNDCTL_SEQ_NRSYNTHS +ossaudiodev.SNDCTL_SEQ_OUTOFBAND +ossaudiodev.SNDCTL_SEQ_PANIC +ossaudiodev.SNDCTL_SEQ_PERCMODE +ossaudiodev.SNDCTL_SEQ_RESET +ossaudiodev.SNDCTL_SEQ_RESETSAMPLES +ossaudiodev.SNDCTL_SEQ_SYNC +ossaudiodev.SNDCTL_SEQ_TESTMIDI +ossaudiodev.SNDCTL_SEQ_THRESHOLD +ossaudiodev.SNDCTL_SYNTH_CONTROL +ossaudiodev.SNDCTL_SYNTH_ID +ossaudiodev.SNDCTL_SYNTH_INFO +ossaudiodev.SNDCTL_SYNTH_MEMAVL +ossaudiodev.SNDCTL_SYNTH_REMOVESAMPLE +ossaudiodev.SNDCTL_TMR_CONTINUE +ossaudiodev.SNDCTL_TMR_METRONOME +ossaudiodev.SNDCTL_TMR_SELECT +ossaudiodev.SNDCTL_TMR_SOURCE +ossaudiodev.SNDCTL_TMR_START +ossaudiodev.SNDCTL_TMR_STOP +ossaudiodev.SNDCTL_TMR_TEMPO +ossaudiodev.SNDCTL_TMR_TIMEBASE +ossaudiodev.SOUND_MIXER_ALTPCM +ossaudiodev.SOUND_MIXER_BASS +ossaudiodev.SOUND_MIXER_CD +ossaudiodev.SOUND_MIXER_DIGITAL1 +ossaudiodev.SOUND_MIXER_DIGITAL2 +ossaudiodev.SOUND_MIXER_DIGITAL3 +ossaudiodev.SOUND_MIXER_IGAIN +ossaudiodev.SOUND_MIXER_IMIX +ossaudiodev.SOUND_MIXER_LINE +ossaudiodev.SOUND_MIXER_LINE1 +ossaudiodev.SOUND_MIXER_LINE2 +ossaudiodev.SOUND_MIXER_LINE3 +ossaudiodev.SOUND_MIXER_MIC +ossaudiodev.SOUND_MIXER_MONITOR +ossaudiodev.SOUND_MIXER_NRDEVICES +ossaudiodev.SOUND_MIXER_OGAIN +ossaudiodev.SOUND_MIXER_PCM +ossaudiodev.SOUND_MIXER_PHONEIN +ossaudiodev.SOUND_MIXER_PHONEOUT +ossaudiodev.SOUND_MIXER_RADIO +ossaudiodev.SOUND_MIXER_RECLEV +ossaudiodev.SOUND_MIXER_SPEAKER +ossaudiodev.SOUND_MIXER_SYNTH +ossaudiodev.SOUND_MIXER_TREBLE +ossaudiodev.SOUND_MIXER_VIDEO +ossaudiodev.SOUND_MIXER_VOLUME +ossaudiodev.control_labels(??) +ossaudiodev.control_names(??) +ossaudiodev.error(??) +ossaudiodev.open(??) +ossaudiodev.openmixer(??) +parser.ParserError(??) +parser.STType(??) +parser.compilest(??) +parser.expr(??) +parser.isexpr(??) +parser.issuite(??) +parser.sequence2st(??) +parser.st2list(??) +parser.st2tuple(??) +parser.suite(??) +parser.tuple2st(??) +pdb.Pdb(??) +pdb.Repr(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.find_function(??) +pdb.help(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BUILD +pickle.BuiltinFunctionType(??) +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWTRUE +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(file, protocol=None) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(file, *, encoding='ASCII', errors='strict') +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.classmap(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.load(??) +pickle.loads(??) +pickle.marshal(??) +pickle.mloads(??) +pickle.re(??) +pickle.struct(??) +pickle.sys(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybytes(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.unicodestring4(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.string(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.imp(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.architecture(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.version(??) +platform.win32_ver(??) +plistlib.BytesIO([buffer]) -> object +plistlib.Data(??) +plistlib.Dict(??) +plistlib.DumbXMLWriter(??) +plistlib.PLISTHEADER +plistlib.Plist(??) +plistlib.PlistParser(??) +plistlib.PlistWriter(??) +plistlib.binascii(??) +plistlib.datetime(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_OK +posix.NGROUPS_MAX +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_LARGEFILE +posix.O_NDELAY +posix.O_NOATIME +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_RSYNC +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.R_OK +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(path, mode) -> True if granted, False otherwise +posix.chdir(path) +posix.chmod(path, mode) +posix.chown(path, uid, gid) +posix.chroot(path) +posix.close(fd) +posix.closerange(fd_low, fd_high) +posix.confstr(name) -> string +posix.confstr_names(??) +posix.ctermid() -> string +posix.device_encoding(fd) -> str +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ(??) +posix.error(??) +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fildes) +posix.fchmod(fd, mode) +posix.fchown(fd, uid, gid) +posix.fdatasync(fildes) +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.getcwd() -> path +posix.getcwdb() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchown(path, uid, gid) +posix.link(src, dst) +posix.listdir(path) -> list_of_strings +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path [, mode=0777]) +posix.mkfifo(filename [, mode=0666]) +posix.mknod(filename [, mode=0600, device]) +posix.nice(inc) -> new_priority +posix.open(filename, flag [, mode=0777]) -> fd +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names(??) +posix.pipe() -> (read_end, write_end) +posix.putenv(key, value) +posix.read(fd, buffersize) -> string +posix.readlink(path) -> path +posix.remove(path) +posix.rename(old, new) +posix.rmdir(path) +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setregid(rgid, egid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(path) -> stat result +posix.stat_float_times([newval]) -> oldval +posix.stat_result(??) +posix.statvfs(path) -> statvfs result +posix.statvfs_result(??) +posix.strerror(code) -> string +posix.symlink(src, dst) +posix.sysconf(name) -> integer +posix.sysconf_names(??) +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.times() -> (utime, stime, cutime, cstime, elapsed_time) +posix.ttyname(fd) -> string +posix.umask(new_mask) -> old_mask +posix.uname() -> (sysname, nodename, release, version, machine) +posix.unlink(path) +posix.unsetenv(key) +posix.utime(path, (atime, mtime)) +posix.wait() -> (pid, status) +posix.wait3(options) -> (pid, status, rusage) +posix.wait4(pid, options) -> (pid, status, rusage) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, string) -> byteswritten +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout) +profile.OptionParser(??) +profile.Profile(??) +profile.Stats(??) +profile.help(??) +profile.main(??) +profile.marshal(??) +profile.os(??) +profile.resgetrusage(??) +profile.resource(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.CmpToKey(??) +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd(??) +py_compile.MAGIC +py_compile.PyCompileError(??) +py_compile.builtins(??) +py_compile.compile(??) +py_compile.imp(??) +py_compile.main(??) +py_compile.marshal(??) +py_compile.os(??) +py_compile.re(??) +py_compile.read_encoding(??) +py_compile.set_creator_type(??) +py_compile.sys(??) +py_compile.traceback(??) +py_compile.wr_long(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.imp(??) +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.Scanner(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque(iterable[, maxlen]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.gui(??) +pydoc.help(??) +pydoc.html(??) +pydoc.imp(??) +pydoc.importfile(??) +pydoc.inspect(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.serve(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.ttypager(??) +pydoc.visiblename(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.deque(iterable[, maxlen]) --> deque object +queue.heapq(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.division(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates a long int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range([start,] stop[, step]) -> range object +re.A +re.ASCII +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copyreg(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.sys(??) +re.template(??) +readline.add_history(string) -> None +readline.clear_history() -> None +readline.get_begidx() -> int +readline.get_completer() -> function +readline.get_completer_delims() -> string +readline.get_completion_type() -> int +readline.get_current_history_length() -> integer +readline.get_endidx() -> int +readline.get_history_item() -> string +readline.get_history_length() -> int +readline.get_line_buffer() -> string +readline.insert_text(string) -> None +readline.parse_and_bind(string) -> None +readline.read_history_file([filename]) -> None +readline.read_init_file([filename]) -> None +readline.redisplay() -> None +readline.remove_history_item(pos) -> None +readline.replace_history_item(pos, line) -> None +readline.set_completer([function]) -> None +readline.set_completer_delims(string) -> None +readline.set_completion_display_matches_hook([function]) -> None +readline.set_history_length(length) -> None +readline.set_pre_input_hook([function]) -> None +readline.set_startup_hook([function]) -> None +readline.write_history_file([filename]) -> None +repr(object) -> string +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.islice(iterable, [start,] stop [, step]) --> islice object +reprlib.repr(??) +resource.RLIMIT_AS +resource.RLIMIT_CORE +resource.RLIMIT_CPU +resource.RLIMIT_DATA +resource.RLIMIT_FSIZE +resource.RLIMIT_MEMLOCK +resource.RLIMIT_NOFILE +resource.RLIMIT_NPROC +resource.RLIMIT_OFILE +resource.RLIMIT_RSS +resource.RLIMIT_STACK +resource.RLIM_INFINITY +resource.RUSAGE_CHILDREN +resource.RUSAGE_SELF +resource.error(??) +resource.getpagesize(??) +resource.getrlimit(??) +resource.getrusage(??) +resource.setrlimit(??) +resource.struct_rusage(??) +reversed(sequence) -> reverse iterator over values of the sequence +rlcompleter.Completer(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(number[, ndigits]) -> number +runpy.get_loader(??) +runpy.imp(??) +runpy.run_module(??) +runpy.sys(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +select.EPOLLERR +select.EPOLLET +select.EPOLLHUP +select.EPOLLIN +select.EPOLLMSG +select.EPOLLONESHOT +select.EPOLLOUT +select.EPOLLPRI +select.EPOLLRDBAND +select.EPOLLRDNORM +select.EPOLLWRBAND +select.EPOLLWRNORM +select.POLLERR +select.POLLHUP +select.POLLIN +select.POLLMSG +select.POLLNVAL +select.POLLOUT +select.POLLPRI +select.POLLRDBAND +select.POLLRDNORM +select.POLLWRBAND +select.POLLWRNORM +select.epoll(??) +select.error(??) +select.poll(??) +select.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +set(iterable) --> set object +setattr(object, name, value) +shelve.BsdDbShelf(??) +shelve.BytesIO([buffer]) -> object +shelve.DbfilenameShelf(??) +shelve.Pickler(file, protocol=None) +shelve.Shelf(??) +shelve.Unpickler(file, *, encoding='ASCII', errors='strict') +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque(iterable[, maxlen]) --> deque object +shlex.os(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.Error(??) +shutil.SpecialFileError(??) +shutil.WindowsError(??) +shutil.abspath(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.fnmatch(??) +shutil.ignore_patterns(??) +shutil.move(??) +shutil.os(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCLD +signal.SIGCONT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPOLL +signal.SIGPROF +signal.SIGPWR +signal.SIGQUIT +signal.SIGRTMAX +signal.SIGRTMIN +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_DFL +signal.SIG_IGN +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getitimer(which) +signal.getsignal(sig) -> action +signal.pause() +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(which, seconds[, interval]) +signal.siginterrupt(sig, flag) -> None +signal.signal(sig, action) -> action +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs__file__(??) +site.addbuilddir(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.aliasmbcs(??) +site.builtins(??) +site.check_enableusersite(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setBEGINLIBPATH(??) +site.setcopyright(??) +site.setencoding(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +slice([start,] stop[, step]) +smtpd.COMMASPACE +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.errno(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.SSLFakeFile(??) +smtplib.base64(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.stderr(??) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK +socket.AF_ASH +socket.AF_ATMPVC +socket.AF_ATMSVC +socket.AF_AX25 +socket.AF_BRIDGE +socket.AF_DECnet +socket.AF_ECONET +socket.AF_INET +socket.AF_INET6 +socket.AF_IPX +socket.AF_IRDA +socket.AF_KEY +socket.AF_NETBEUI +socket.AF_NETLINK +socket.AF_NETROM +socket.AF_PACKET +socket.AF_PPPOX +socket.AF_ROSE +socket.AF_ROUTE +socket.AF_SECURITY +socket.AF_SNA +socket.AF_TIPC +socket.AF_UNIX +socket.AF_UNSPEC +socket.AF_WANPIPE +socket.AF_X25 +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.CAPI(??) +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GRE +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV6 +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NETLINK_DNRTMSG +socket.NETLINK_FIREWALL +socket.NETLINK_IP6_FW +socket.NETLINK_NFLOG +socket.NETLINK_ROUTE +socket.NETLINK_USERSOCK +socket.NETLINK_XFRM +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PACKET_BROADCAST +socket.PACKET_FASTROUTE +socket.PACKET_HOST +socket.PACKET_LOOPBACK +socket.PACKET_MULTICAST +socket.PACKET_OTHERHOST +socket.PACKET_OUTGOING +socket.PF_PACKET +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM +socket.SOCK_RAW +socket.SOCK_RDM +socket.SOCK_SEQPACKET +socket.SOCK_STREAM +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_TIPC +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SocketIO(??) +socket.SocketType(??) +socket.TCP_CORK +socket.TCP_DEFER_ACCEPT +socket.TCP_INFO +socket.TCP_KEEPCNT +socket.TCP_KEEPIDLE +socket.TCP_KEEPINTVL +socket.TCP_LINGER2 +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_QUICKACK +socket.TCP_SYNCNT +socket.TCP_WINDOW_CLAMP +socket.TIPC_ADDR_ID +socket.TIPC_ADDR_NAME +socket.TIPC_ADDR_NAMESEQ +socket.TIPC_CFG_SRV +socket.TIPC_CLUSTER_SCOPE +socket.TIPC_CONN_TIMEOUT +socket.TIPC_CRITICAL_IMPORTANCE +socket.TIPC_DEST_DROPPABLE +socket.TIPC_HIGH_IMPORTANCE +socket.TIPC_IMPORTANCE +socket.TIPC_LOW_IMPORTANCE +socket.TIPC_MEDIUM_IMPORTANCE +socket.TIPC_NODE_SCOPE +socket.TIPC_PUBLISHED +socket.TIPC_SRC_DROPPABLE +socket.TIPC_SUBSCR_TIMEOUT +socket.TIPC_SUB_CANCEL +socket.TIPC_SUB_PORTS +socket.TIPC_SUB_SERVICE +socket.TIPC_TOP_SRV +socket.TIPC_WAIT_FOREVER +socket.TIPC_WITHDRAWN +socket.TIPC_ZONE_SCOPE +socket.create_connection(??) +socket.dup(integer) -> integer +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(host, port [, family, socktype, proto, flags]) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.setdefaulttimeout(timeout) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.os(??) +socketserver.select(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +sorted(iterable, key=None, reverse=False) --> new sorted list +spwd.getspall() -> list_of_entries +spwd.getspnam(name) -> (sp_namp, sp_pwdp, sp_lstchg, sp_min, sp_max, +spwd.struct_spwd(??) +sqlite3.Binary(??) +sqlite3.Cache(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement(??) +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.complete_statement(sql) +sqlite3.connect(database[, timeout, isolation_level, detect_types, factory]) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Cache(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement(??) +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(database[, timeout, isolation_level, detect_types, factory]) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.dump(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.AF_INET +ssl.CERT_NONE +ssl.CERT_OPTIONAL +ssl.CERT_REQUIRED +ssl.DER_cert_to_PEM_cert(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv2 +ssl.PROTOCOL_SSLv23 +ssl.PROTOCOL_SSLv3 +ssl.PROTOCOL_TLSv1 +ssl.RAND_add(string, entropy) +ssl.RAND_egd(path) -> bytes +ssl.RAND_status() -> 0 or 1 +ssl.SOCK_STREAM +ssl.SSLError(??) +ssl.SSLSocket(??) +ssl.SSL_ERROR_EOF +ssl.SSL_ERROR_INVALID_ERROR_CODE +ssl.SSL_ERROR_SSL +ssl.SSL_ERROR_SYSCALL +ssl.SSL_ERROR_WANT_CONNECT +ssl.SSL_ERROR_WANT_READ +ssl.SSL_ERROR_WANT_WRITE +ssl.SSL_ERROR_WANT_X509_LOOKUP +ssl.SSL_ERROR_ZERO_RETURN +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.textwrap(??) +ssl.traceback(??) +ssl.wrap_socket(??) +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFREG +stat.S_IFSOCK +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(??) +stat.S_ISCHR(??) +stat.S_ISDIR(??) +stat.S_ISFIFO(??) +stat.S_ISGID +stat.S_ISLNK(??) +stat.S_ISREG(??) +stat.S_ISSOCK(??) +stat.S_ISUID +stat.S_ISVTX +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +staticmethod(function) -> method +str(string[, encoding[, errors]]) -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s, [sep]) -> string +string.digits +string.hexdigits +string.maketrans(frm, to) -> bytes +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(??) +struct.calcsize(??) +struct.error(??) +struct.pack(??) +struct.pack_into(??) +struct.unpack(??) +struct.unpack_from(??) +subprocess.CalledProcessError(??) +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno(??) +subprocess.fcntl(??) +subprocess.gc(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.mswindows(??) +subprocess.os(??) +subprocess.pickle(??) +subprocess.select(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.traceback(??) +sum(iterable[, start]) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.open(??) +sunau.openfp(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.main(??) +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist1 +symbol.testlist_comp +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_expr +symbol.yield_stmt +symtable.Class(??) +symtable.DEF_BOUND +symtable.DEF_FREE_CLASS +symtable.DEF_FREE_GLOBAL +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.OPT_IMPORT_STAR +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.api_version +sys.argv(??) +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode(??) +sys.exc_info() -> (type, value, traceback) +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.gettrace() +sys.hexversion +sys.int_info(??) +sys.intern(string) -> string +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setfilesystemencoding(string) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.subversion(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +syslog.LOG_ALERT +syslog.LOG_AUTH +syslog.LOG_CONS +syslog.LOG_CRIT +syslog.LOG_CRON +syslog.LOG_DAEMON +syslog.LOG_DEBUG +syslog.LOG_EMERG +syslog.LOG_ERR +syslog.LOG_INFO +syslog.LOG_KERN +syslog.LOG_LOCAL0 +syslog.LOG_LOCAL1 +syslog.LOG_LOCAL2 +syslog.LOG_LOCAL3 +syslog.LOG_LOCAL4 +syslog.LOG_LOCAL5 +syslog.LOG_LOCAL6 +syslog.LOG_LOCAL7 +syslog.LOG_LPR +syslog.LOG_MAIL +syslog.LOG_MASK(??) +syslog.LOG_NDELAY +syslog.LOG_NEWS +syslog.LOG_NOTICE +syslog.LOG_NOWAIT +syslog.LOG_PERROR +syslog.LOG_PID +syslog.LOG_SYSLOG +syslog.LOG_UPTO(??) +syslog.LOG_USER +syslog.LOG_UUCP +syslog.LOG_WARNING +syslog.closelog(??) +syslog.openlog(??) +syslog.setlogmask(??) +syslog.syslog(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.S_IFBLK +tarfile.S_IFCHR +tarfile.S_IFDIR +tarfile.S_IFIFO +tarfile.S_IFLNK +tarfile.S_IFREG +tarfile.StreamError(??) +tarfile.TGEXEC +tarfile.TGREAD +tarfile.TGWRITE +tarfile.TOEXEC +tarfile.TOREAD +tarfile.TOWRITE +tarfile.TSGID +tarfile.TSUID +tarfile.TSVTX +tarfile.TUEXEC +tarfile.TUREAD +tarfile.TUWRITE +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TarIter(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.errno(??) +tarfile.filemode(??) +tarfile.filemode_table(??) +tarfile.grp(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.normpath(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.select(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +termios.B0 +termios.B110 +termios.B115200 +termios.B1200 +termios.B134 +termios.B150 +termios.B1800 +termios.B19200 +termios.B200 +termios.B230400 +termios.B2400 +termios.B300 +termios.B38400 +termios.B460800 +termios.B4800 +termios.B50 +termios.B57600 +termios.B600 +termios.B75 +termios.B9600 +termios.BRKINT +termios.BS0 +termios.BS1 +termios.BSDLY +termios.CBAUD +termios.CBAUDEX +termios.CDSUSP +termios.CEOF +termios.CEOL +termios.CEOT +termios.CERASE +termios.CFLUSH +termios.CIBAUD +termios.CINTR +termios.CKILL +termios.CLNEXT +termios.CLOCAL +termios.CQUIT +termios.CR0 +termios.CR1 +termios.CR2 +termios.CR3 +termios.CRDLY +termios.CREAD +termios.CRPRNT +termios.CRTSCTS +termios.CS5 +termios.CS6 +termios.CS7 +termios.CS8 +termios.CSIZE +termios.CSTART +termios.CSTOP +termios.CSTOPB +termios.CSUSP +termios.CWERASE +termios.ECHO +termios.ECHOCTL +termios.ECHOE +termios.ECHOK +termios.ECHOKE +termios.ECHONL +termios.ECHOPRT +termios.EXTA +termios.EXTB +termios.FF0 +termios.FF1 +termios.FFDLY +termios.FIOASYNC +termios.FIOCLEX +termios.FIONBIO +termios.FIONCLEX +termios.FIONREAD +termios.FLUSHO +termios.HUPCL +termios.ICANON +termios.ICRNL +termios.IEXTEN +termios.IGNBRK +termios.IGNCR +termios.IGNPAR +termios.IMAXBEL +termios.INLCR +termios.INPCK +termios.IOCSIZE_MASK +termios.IOCSIZE_SHIFT +termios.ISIG +termios.ISTRIP +termios.IUCLC +termios.IXANY +termios.IXOFF +termios.IXON +termios.NCC +termios.NCCS +termios.NL0 +termios.NL1 +termios.NLDLY +termios.NOFLSH +termios.N_MOUSE +termios.N_PPP +termios.N_SLIP +termios.N_STRIP +termios.N_TTY +termios.OCRNL +termios.OFDEL +termios.OFILL +termios.OLCUC +termios.ONLCR +termios.ONLRET +termios.ONOCR +termios.OPOST +termios.PARENB +termios.PARMRK +termios.PARODD +termios.PENDIN +termios.TAB0 +termios.TAB1 +termios.TAB2 +termios.TAB3 +termios.TABDLY +termios.TCFLSH +termios.TCGETA +termios.TCGETS +termios.TCIFLUSH +termios.TCIOFF +termios.TCIOFLUSH +termios.TCION +termios.TCOFLUSH +termios.TCOOFF +termios.TCOON +termios.TCSADRAIN +termios.TCSAFLUSH +termios.TCSANOW +termios.TCSBRK +termios.TCSBRKP +termios.TCSETA +termios.TCSETAF +termios.TCSETAW +termios.TCSETS +termios.TCSETSF +termios.TCSETSW +termios.TCXONC +termios.TIOCCONS +termios.TIOCEXCL +termios.TIOCGETD +termios.TIOCGICOUNT +termios.TIOCGLCKTRMIOS +termios.TIOCGPGRP +termios.TIOCGSERIAL +termios.TIOCGSOFTCAR +termios.TIOCGWINSZ +termios.TIOCINQ +termios.TIOCLINUX +termios.TIOCMBIC +termios.TIOCMBIS +termios.TIOCMGET +termios.TIOCMIWAIT +termios.TIOCMSET +termios.TIOCM_CAR +termios.TIOCM_CD +termios.TIOCM_CTS +termios.TIOCM_DSR +termios.TIOCM_DTR +termios.TIOCM_LE +termios.TIOCM_RI +termios.TIOCM_RNG +termios.TIOCM_RTS +termios.TIOCM_SR +termios.TIOCM_ST +termios.TIOCNOTTY +termios.TIOCNXCL +termios.TIOCOUTQ +termios.TIOCPKT +termios.TIOCPKT_DATA +termios.TIOCPKT_DOSTOP +termios.TIOCPKT_FLUSHREAD +termios.TIOCPKT_FLUSHWRITE +termios.TIOCPKT_NOSTOP +termios.TIOCPKT_START +termios.TIOCPKT_STOP +termios.TIOCSCTTY +termios.TIOCSERCONFIG +termios.TIOCSERGETLSR +termios.TIOCSERGETMULTI +termios.TIOCSERGSTRUCT +termios.TIOCSERGWILD +termios.TIOCSERSETMULTI +termios.TIOCSERSWILD +termios.TIOCSER_TEMT +termios.TIOCSETD +termios.TIOCSLCKTRMIOS +termios.TIOCSPGRP +termios.TIOCSSERIAL +termios.TIOCSSOFTCAR +termios.TIOCSTI +termios.TIOCSWINSZ +termios.TOSTOP +termios.VDISCARD +termios.VEOF +termios.VEOL +termios.VEOL2 +termios.VERASE +termios.VINTR +termios.VKILL +termios.VLNEXT +termios.VMIN +termios.VQUIT +termios.VREPRINT +termios.VSTART +termios.VSTOP +termios.VSUSP +termios.VSWTC +termios.VSWTCH +termios.VT0 +termios.VT1 +termios.VTDLY +termios.VTIME +termios.VWERASE +termios.XCASE +termios.XTABS +termios.error(??) +termios.tcdrain(fd) -> None +termios.tcflow(fd, action) -> None +termios.tcflush(fd, queue) -> None +termios.tcgetattr(fd) -> list_of_attrs +termios.tcsendbreak(fd, duration) -> None +termios.tcsetattr(fd, when, attributes) -> None +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.re(??) +textwrap.string(??) +textwrap.wrap(??) +threading.BoundedSemaphore(??) +threading.Condition(??) +threading.Event(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.deque(iterable[, maxlen]) --> deque object +threading.enumerate(??) +threading.local(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.accept2dyear +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.timezone +time.tzname(??) +time.tzset(zone) +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +token.AMPER +token.AMPEREQUAL +token.AT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.main(??) +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.TILDE +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(type, string, start, end, line) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.double3prog(??) +tokenize.endprogs(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(encoding) -> CodecInfo +tokenize.main(??) +tokenize.maybe(??) +tokenize.pseudoprog(??) +tokenize.re(??) +tokenize.single3prog(??) +tokenize.single_quoted(??) +tokenize.string(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.tokenprog(??) +tokenize.triple_quoted(??) +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc(??) +trace.io(??) +trace.linecache(??) +trace.main(??) +trace.modname(??) +trace.os(??) +trace.pickle(??) +trace.re(??) +trace.rx_blank(??) +trace.sys(??) +trace.threading(??) +trace.time(??) +trace.token(??) +trace.tokenize(??) +trace.types(??) +trace.usage(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B460800 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CBAUD +tty.CBAUDEX +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CIBAUD +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.IOCSIZE_MASK +tty.IOCSIZE_SHIFT +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IUCLC +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCC +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.N_MOUSE +tty.N_PPP +tty.N_SLIP +tty.N_STRIP +tty.N_TTY +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.OLCUC +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCFLSH +tty.TCGETA +tty.TCGETS +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSBRK +tty.TCSBRKP +tty.TCSETA +tty.TCSETAF +tty.TCSETAW +tty.TCSETS +tty.TCSETSF +tty.TCSETSW +tty.TCXONC +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGICOUNT +tty.TIOCGLCKTRMIOS +tty.TIOCGPGRP +tty.TIOCGSERIAL +tty.TIOCGSOFTCAR +tty.TIOCGWINSZ +tty.TIOCINQ +tty.TIOCLINUX +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMIWAIT +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSERCONFIG +tty.TIOCSERGETLSR +tty.TIOCSERGETMULTI +tty.TIOCSERGSTRUCT +tty.TIOCSERGWILD +tty.TIOCSERSETMULTI +tty.TIOCSERSWILD +tty.TIOCSER_TEMT +tty.TIOCSETD +tty.TIOCSLCKTRMIOS +tty.TIOCSPGRP +tty.TIOCSSERIAL +tty.TIOCSSOFTCAR +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VSWTC +tty.VSWTCH +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.XCASE +tty.XTABS +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> an empty tuple +type(object) -> the object's type +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CodeType(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MemberDescriptorType(??) +types.MethodType(??) +types.ModuleType(??) +types.TracebackType(??) +unicodedata.UCD(??) +unicodedata.bidirectional(unichr) +unicodedata.category(unichr) +unicodedata.combining(unichr) +unicodedata.decimal(unichr[, default]) +unicodedata.decomposition(unichr) +unicodedata.digit(unichr[, default]) +unicodedata.east_asian_width(unichr) +unicodedata.lookup(name) +unicodedata.mirrored(unichr) +unicodedata.name(unichr[, default]) +unicodedata.normalize(form, unistr) +unicodedata.numeric(unichr[, default]) +unicodedata.ucd_3_2_0(??) +unicodedata.ucnhash_CAPI(??) +unicodedata.unidata_version +unittest.CmpToKey(??) +unittest.FunctionTestCase(??) +unittest.SkipTest(??) +unittest.TestCase(??) +unittest.TestLoader(??) +unittest.TestProgram(??) +unittest.TestResult(??) +unittest.TestSuite(??) +unittest.TextTestRunner(??) +unittest.defaultTestLoader(??) +unittest.difflib(??) +unittest.expectedFailure(??) +unittest.findTestCases(??) +unittest.functools(??) +unittest.getTestCaseNames(??) +unittest.main(??) +unittest.makeSuite(??) +unittest.os(??) +unittest.pprint(??) +unittest.re(??) +unittest.skip(??) +unittest.skipIf(??) +unittest.skipUnless(??) +unittest.sys(??) +unittest.three_way_cmp(??) +unittest.time(??) +unittest.traceback(??) +unittest.types(??) +unittest.warnings(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.Quoter(??) +urllib.parse.ResultMixin(??) +urllib.parse.SplitResult(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.scheme_chars +urllib.parse.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.parse.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.parse.splitnport(??) +urllib.parse.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.parse.splitport('host:port') --> 'host', 'port'. +urllib.parse.splitquery('/path?query') --> '/path', 'query'. +urllib.parse.splittag('/path#tag') --> '/path', 'tag'. +urllib.parse.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.parse.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.parse.splitvalue('attr=value') --> 'attr', 'value'. +urllib.parse.sys(??) +urllib.parse.test(??) +urllib.parse.test_input +urllib.parse.to_bytes(u"URL") --> 'URL'. +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap('') --> 'type://host/path'. +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.random(??) +urllib.request.randombytes(??) +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.request.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.request.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.request.splitport('host:port') --> 'host', 'port'. +urllib.request.splitquery('/path?query') --> '/path', 'query'. +urllib.request.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.request.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.request.splitvalue('attr=value') --> 'attr', 'value'. +urllib.request.ssl(??) +urllib.request.sys(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.to_bytes(u"URL") --> 'URL'. +urllib.request.unquote(??) +urllib.request.unwrap('') --> 'type://host/path'. +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID(??) +uuid.bytes_(??) +uuid.ctypes(??) +uuid.getnode(??) +uuid.int_(??) +uuid.lib(??) +uuid.libname +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.default_action +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.linecache(??) +warnings.once_registry(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.big_endian +wave.builtins(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.collections(??) +weakref.getweakrefcount(object) -- return the number of weak references +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.io(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex(??) +webbrowser.stat(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.time(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO([buffer]) -> object +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct(??) +xml.dom(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.EmptyNodeList(??) +xml.dom.domreg.NodeList(??) +xml.dom.domreg.StringTypes(??) +xml.dom.domreg.defproperty(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.EmptyNodeList(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.NodeList(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.StringTypes(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.defproperty(??) +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat(??) +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.codecs(??) +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.types(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath.Path(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_descendant_or_self(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLTreeBuilder(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fixtag(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementPath(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLParserError(??) +xml.etree.cElementTree.XMLTreeBuilder(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.tostring(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.version_info(??) +xml.sax(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(??) +xmlrpc.client.dumps(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.http(??) +xmlrpc.client.io(??) +xmlrpc.client.loads(??) +xmlrpc.client.operator(??) +xmlrpc.client.re(??) +xmlrpc.client.time(??) +xmlrpc.server(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.http(??) +xmlrpc.server.inspect(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(iter1 [,iter2 [...]]) --> zip object +zipfile.BadZipfile(??) +zipfile.LargeZipFile(??) +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zipfile.error(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.main(??) +zipfile.os(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.ZipImportError(??) +zipimport.zipimporter(archivepath) -> zipimporter object +zlib.DEFLATED +zlib.DEF_MEM_LEVEL +zlib.MAX_WBITS +zlib.ZLIB_VERSION +zlib.Z_BEST_COMPRESSION +zlib.Z_BEST_SPEED +zlib.Z_DEFAULT_COMPRESSION +zlib.Z_DEFAULT_STRATEGY +zlib.Z_FILTERED +zlib.Z_FINISH +zlib.Z_FULL_FLUSH +zlib.Z_HUFFMAN_ONLY +zlib.Z_NO_FLUSH +zlib.Z_SYNC_FLUSH +zlib.adler32(string[, start]) -- Compute an Adler-32 checksum of string. +zlib.compress(string[, level]) -- Returned compressed string. +zlib.compressobj([level]) -- Return a compressor object. +zlib.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zlib.decompress(string[, wbits[, bufsize]]) -- Return decompressed string. +zlib.decompressobj([wbits]) -- Return a decompressor object. +zlib.error(??) diff --git a/third_party/qscintilla/qsci/api/python/Python-3.10.api b/third_party/qscintilla/qsci/api/python/Python-3.10.api new file mode 100644 index 0000000..84daedf --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.10.api @@ -0,0 +1,9373 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EncodingWarning(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +ModuleNotFoundError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +RecursionError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopAsyncIteration(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abc.update_abstractmethods(??) +abs(??) +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.struct(??) +aifc.warnings(??) +aiter(??) +all(??) +anext(??) +any(??) +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.BooleanOptionalAction(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +ascii(??) +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.AnnAssign(expr target, expr annotation, expr? value, int simple) +ast.Assert(expr test, expr? msg) +ast.Assign(expr* targets, expr value, string? type_comment) +ast.AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment) +ast.AsyncFunctionDef(identifier name, arguments args, stmt* body, expr* decorator_list, expr? returns, string? type_comment) +ast.AsyncWith(withitem* items, stmt* body, string? type_comment) +ast.Attribute(expr value, identifier attr, expr_context ctx) +ast.AugAssign(expr target, operator op, expr value) +ast.AugLoad(??) +ast.AugStore(??) +ast.Await(expr value) +ast.BinOp(expr left, operator op, expr right) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(boolop op, expr* values) +ast.Break(??) +ast.Bytes(??) +ast.Call(expr func, expr* args, keyword* keywords) +ast.ClassDef(identifier name, expr* bases, keyword* keywords, stmt* body, expr* decorator_list) +ast.Compare(expr left, cmpop* ops, expr* comparators) +ast.Constant(constant value, string? kind) +ast.Continue(??) +ast.Del(??) +ast.Delete(expr* targets) +ast.Dict(expr* keys, expr* values) +ast.DictComp(expr key, expr value, comprehension* generators) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(expr? type, identifier? name, stmt* body) +ast.Expr(expr value) +ast.Expression(expr body) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment) +ast.FormattedValue(expr value, int? conversion, expr? format_spec) +ast.FunctionDef(identifier name, arguments args, stmt* body, expr* decorator_list, expr? returns, string? type_comment) +ast.FunctionType(expr* argtypes, expr returns) +ast.GeneratorExp(expr elt, comprehension* generators) +ast.Global(identifier* names) +ast.Gt(??) +ast.GtE(??) +ast.If(expr test, stmt* body, stmt* orelse) +ast.IfExp(expr test, expr body, expr orelse) +ast.Import(alias* names) +ast.ImportFrom(identifier? module, alias* names, int? level) +ast.In(??) +ast.Index(??) +ast.IntEnum(??) +ast.Interactive(stmt* body) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.JoinedStr(expr* values) +ast.LShift(??) +ast.Lambda(arguments args, expr body) +ast.List(expr* elts, expr_context ctx) +ast.ListComp(expr elt, comprehension* generators) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.MatMult(??) +ast.Match(expr subject, match_case* cases) +ast.MatchAs(pattern? pattern, identifier? name) +ast.MatchClass(expr cls, pattern* patterns, identifier* kwd_attrs, pattern* kwd_patterns) +ast.MatchMapping(expr* keys, pattern* patterns, identifier? rest) +ast.MatchOr(pattern* patterns) +ast.MatchSequence(pattern* patterns) +ast.MatchSingleton(constant value) +ast.MatchStar(identifier? name) +ast.MatchValue(expr value) +ast.Mod(??) +ast.Module(stmt* body, type_ignore* type_ignores) +ast.Mult(??) +ast.Name(identifier id, expr_context ctx) +ast.NameConstant(??) +ast.NamedExpr(expr target, expr value) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(identifier* names) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ALLOW_TOP_LEVEL_AWAIT +ast.PyCF_ONLY_AST +ast.PyCF_TYPE_COMMENTS +ast.RShift(??) +ast.Raise(expr? exc, expr? cause) +ast.Return(expr? value) +ast.Set(expr* elts) +ast.SetComp(expr elt, comprehension* generators) +ast.Slice(expr? lower, expr? upper, expr? step) +ast.Starred(expr value, expr_context ctx) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(expr value, expr slice, expr_context ctx) +ast.Suite(??) +ast.Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody) +ast.Tuple(expr* elts, expr_context ctx) +ast.TypeIgnore(int lineno, string tag) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(unaryop op, expr operand) +ast.While(expr test, stmt* body, stmt* orelse) +ast.With(withitem* items, stmt* body, string? type_comment) +ast.Yield(expr? value) +ast.YieldFrom(expr value) +ast.alias(identifier name, identifier? asname) +ast.arg(identifier arg, expr? annotation, string? type_comment) +ast.arguments(arg* posonlyargs, arg* args, arg? vararg, arg* kwonlyargs, expr* kw_defaults, arg? kwarg, expr* defaults) +ast.auto(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(expr target, expr iter, expr* ifs, int is_async) +ast.contextmanager(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.get_source_segment(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(identifier? arg, expr value) +ast.literal_eval(??) +ast.main(??) +ast.match_case(pattern pattern, expr? guard, stmt* body) +ast.mod(??) +ast.nullcontext(??) +ast.operator(??) +ast.parse(??) +ast.pattern(??) +ast.slice(??) +ast.stmt(??) +ast.sys(??) +ast.type_ignore(??) +ast.unaryop(??) +ast.unparse(??) +ast.walk(??) +ast.withitem(expr context_expr, expr? optional_vars) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asynchat.warn(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.BaseEventLoop(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.BufferedProtocol(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.LifoQueue(??) +asyncio.LimitOverrunError(??) +asyncio.Lock(??) +asyncio.MultiLoopChildWatcher(??) +asyncio.PidfdChildWatcher(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.SendfileNotAvailableError(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.ThreadedChildWatcher(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.all_tasks(??) +asyncio.as_completed(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.MAXIMUM_SELECT_TIMEOUT +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.constants(??) +asyncio.base_events.coroutines(??) +asyncio.base_events.events(??) +asyncio.base_events.exceptions(??) +asyncio.base_events.functools(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.itertools(??) +asyncio.base_events.logger(??) +asyncio.base_events.os(??) +asyncio.base_events.protocols(??) +asyncio.base_events.socket(??) +asyncio.base_events.ssl(??) +asyncio.base_events.sslproto(??) +asyncio.base_events.staggered(??) +asyncio.base_events.stat(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.threading(??) +asyncio.base_events.time(??) +asyncio.base_events.traceback(??) +asyncio.base_events.transports(??) +asyncio.base_events.trsock(??) +asyncio.base_events.warnings(??) +asyncio.base_events.weakref(??) +asyncio.base_futures(??) +asyncio.base_futures.format_helpers(??) +asyncio.base_futures.get_ident() -> integer +asyncio.base_futures.isfuture(??) +asyncio.base_futures.reprlib(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.logger(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.transports(??) +asyncio.base_subprocess.warnings(??) +asyncio.base_tasks(??) +asyncio.base_tasks.base_futures(??) +asyncio.base_tasks.coroutines(??) +asyncio.base_tasks.linecache(??) +asyncio.base_tasks.traceback(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.DEBUG_STACK_DEPTH +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.constants.SENDFILE_FALLBACK_READBUFFER_SIZE +asyncio.constants.SSL_HANDSHAKE_TIMEOUT +asyncio.constants.enum(??) +asyncio.coroutine(??) +asyncio.coroutines(??) +asyncio.coroutines.CoroWrapper(??) +asyncio.coroutines.base_futures(??) +asyncio.coroutines.collections(??) +asyncio.coroutines.constants(??) +asyncio.coroutines.coroutine(??) +asyncio.coroutines.format_helpers(??) +asyncio.coroutines.functools(??) +asyncio.coroutines.inspect(??) +asyncio.coroutines.iscoroutine(??) +asyncio.coroutines.iscoroutinefunction(??) +asyncio.coroutines.logger(??) +asyncio.coroutines.os(??) +asyncio.coroutines.sys(??) +asyncio.coroutines.traceback(??) +asyncio.coroutines.types(??) +asyncio.coroutines.warnings(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.create_task(??) +asyncio.current_task(??) +asyncio.ensure_future(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.TimerHandle(??) +asyncio.events.contextvars(??) +asyncio.events.format_helpers(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.get_running_loop(??) +asyncio.events.new_event_loop(??) +asyncio.events.os(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.sys(??) +asyncio.events.threading(??) +asyncio.exceptions(??) +asyncio.exceptions.CancelledError(??) +asyncio.exceptions.IncompleteReadError(??) +asyncio.exceptions.InvalidStateError(??) +asyncio.exceptions.LimitOverrunError(??) +asyncio.exceptions.SendfileNotAvailableError(??) +asyncio.exceptions.TimeoutError(??) +asyncio.format_helpers(??) +asyncio.format_helpers.constants(??) +asyncio.format_helpers.extract_stack(??) +asyncio.format_helpers.functools(??) +asyncio.format_helpers.inspect(??) +asyncio.format_helpers.reprlib(??) +asyncio.format_helpers.sys(??) +asyncio.format_helpers.traceback(??) +asyncio.futures(??) +asyncio.futures.Future(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.base_futures(??) +asyncio.futures.concurrent(??) +asyncio.futures.contextvars(??) +asyncio.futures.events(??) +asyncio.futures.exceptions(??) +asyncio.futures.format_helpers(??) +asyncio.futures.isfuture(??) +asyncio.futures.logging(??) +asyncio.futures.sys(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.get_running_loop(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.isfuture(??) +asyncio.locks(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.exceptions(??) +asyncio.locks.mixins(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.mixins(??) +asyncio.mixins.events(??) +asyncio.mixins.threading(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.collections(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.exceptions(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.io(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.os(??) +asyncio.proactor_events.protocols(??) +asyncio.proactor_events.signal(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.sslproto(??) +asyncio.proactor_events.threading(??) +asyncio.proactor_events.transports(??) +asyncio.proactor_events.trsock(??) +asyncio.proactor_events.warnings(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.BufferedProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.queues.mixins(??) +asyncio.run(??) +asyncio.run_coroutine_threadsafe(??) +asyncio.runners(??) +asyncio.runners.coroutines(??) +asyncio.runners.events(??) +asyncio.runners.run(??) +asyncio.runners.tasks(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.functools(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.protocols(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.sslproto(??) +asyncio.selector_events.transports(??) +asyncio.selector_events.trsock(??) +asyncio.selector_events.warnings(??) +asyncio.selector_events.weakref(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.sslproto(??) +asyncio.sslproto.SSLProtocol(??) +asyncio.sslproto.collections(??) +asyncio.sslproto.constants(??) +asyncio.sslproto.logger(??) +asyncio.sslproto.protocols(??) +asyncio.sslproto.ssl(??) +asyncio.sslproto.transports(??) +asyncio.sslproto.warnings(??) +asyncio.staggered(??) +asyncio.staggered.contextlib(??) +asyncio.staggered.events(??) +asyncio.staggered.exceptions_mod(??) +asyncio.staggered.locks(??) +asyncio.staggered.staggered_race(??) +asyncio.staggered.tasks(??) +asyncio.staggered.typing(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.coroutines(??) +asyncio.streams.events(??) +asyncio.streams.exceptions(??) +asyncio.streams.format_helpers(??) +asyncio.streams.logger(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.sleep(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.streams.sys(??) +asyncio.streams.warnings(??) +asyncio.streams.weakref(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.logger(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.sys(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.Task(??) +asyncio.tasks.all_tasks(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.base_tasks(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.contextvars(??) +asyncio.tasks.coroutines(??) +asyncio.tasks.create_task(??) +asyncio.tasks.current_task(??) +asyncio.tasks.ensure_future(??) +asyncio.tasks.events(??) +asyncio.tasks.exceptions(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.itertools(??) +asyncio.tasks.run_coroutine_threadsafe(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.types(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.warnings(??) +asyncio.tasks.weakref(??) +asyncio.threads(??) +asyncio.threads.contextvars(??) +asyncio.threads.events(??) +asyncio.threads.functools(??) +asyncio.threads.to_thread(??) +asyncio.to_thread(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.trsock(??) +asyncio.trsock.TransportSocket(??) +asyncio.trsock.socket(??) +asyncio.trsock.warnings(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.MultiLoopChildWatcher(??) +asyncio.unix_events.PidfdChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.ThreadedChildWatcher(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.coroutines(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.exceptions(??) +asyncio.unix_events.futures(??) +asyncio.unix_events.io(??) +asyncio.unix_events.itertools(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.selectors(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.tasks(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.unix_events.waitstatus_to_exitcode(??) +asyncio.unix_events.warnings(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b32hexdecode(??) +base64.b32hexencode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.encode(??) +base64.encodebytes(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_ASYNC_GENERATOR +bdb.CO_COROUTINE +bdb.CO_GENERATOR +bdb.GENERATOR_AND_COROUTINE_FLAGS +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.contextlib(??) +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +binhex.warnings(??) +bisect.bisect(??) +bisect.bisect_left(??) +bisect.bisect_right(??) +bisect.insort(??) +bisect.insort_left(??) +bisect.insort_right(??) +bool(x) -> bool +breakpoint(*args, **kws) +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EncodingWarning(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.ModuleNotFoundError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.RecursionError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopAsyncIteration(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(??) +builtins.aiter(??) +builtins.all(??) +builtins.anext(??) +builtins.any(??) +builtins.ascii(??) +builtins.bin(??) +builtins.bool(x) -> bool +builtins.breakpoint(*args, **kws) +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(??) +builtins.chr(??) +builtins.classmethod(function) -> method +builtins.compile(??) +builtins.complex(??) +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(??) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(??) +builtins.enumerate(??) +builtins.eval(??) +builtins.exec(??) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(??) +builtins.format(??) +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals(??) +builtins.hasattr(??) +builtins.hash(??) +builtins.help(??) +builtins.hex(??) +builtins.id(??) +builtins.input(??) +builtins.int([x]) -> integer +builtins.isinstance(??) +builtins.issubclass(??) +builtins.iter(iterable) -> iterator +builtins.len(??) +builtins.license(??) +builtins.list(??) +builtins.locals(??) +builtins.map(func, *iterables) --> map object +builtins.max(iterable, *[, default=obj, key=func]) -> value +builtins.memoryview(??) +builtins.min(iterable, *[, default=obj, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(??) +builtins.open(??) +builtins.ord(??) +builtins.pow(??) +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(??) +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(??) +builtins.reversed(??) +builtins.round(??) +builtins.set() -> new empty set object +builtins.setattr(??) +builtins.slice(stop) +builtins.sorted(??) +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(??) +builtins.super() -> same as super(__class__, ) +builtins.tuple(??) +builtins.type(object_or_name, bases, dict) +builtins.vars([object]) -> dictionary +builtins.zip(*iterables, strict=False) --> Yield tuples until an input is exhausted. +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.os(??) +cProfile.Profile(timer=None, timeunit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.repeat(object [,times]) -> create an iterator which returns the object +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(??) +cgi.BytesIO(??) +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warnings(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(??) +chunk.Chunk(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(??) +codecs.encode(??) +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(??) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.namereplace_errors(??) +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(??) +codecs.register_error(??) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unregister(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +codeop.warnings(??) +collections.ChainMap(??) +collections.Counter(??) +collections.OrderedDict(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.abc(??) +collections.abc.AsyncGenerator(??) +collections.abc.AsyncIterable(??) +collections.abc.AsyncIterator(??) +collections.abc.Awaitable(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Collection(??) +collections.abc.Container(??) +collections.abc.Coroutine(??) +collections.abc.Generator(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Reversible(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory=None, /, [...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(??) +compileall.Path(??) +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.filecmp(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.partial(func, *args, **keywords) - new function with partial application +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(??) +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.BrokenExecutor(??) +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.Queue(??) +concurrent.futures.process.itertools(??) +concurrent.futures.process.mp(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.partial(func, *args, **keywords) - new function with partial application +concurrent.futures.process.queue(??) +concurrent.futures.process.sys(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.traceback(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread.BrokenThreadPool(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.itertools(??) +concurrent.futures.thread.os(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.types(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.ConverterMapping(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.os(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.AbstractAsyncContextManager(??) +contextlib.AbstractContextManager(??) +contextlib.AsyncContextDecorator(??) +contextlib.AsyncExitStack(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.GenericAlias(??) +contextlib.MethodType(??) +contextlib.abc(??) +contextlib.aclosing(??) +contextlib.asynccontextmanager(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.nullcontext(??) +contextlib.redirect_stderr(??) +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +contextvars.Context(??) +contextvars.ContextVar(??) +contextvars.Token(??) +contextvars.copy_context(??) +copy.Error(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.pickle_union(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_BLOWFISH(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.errno(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib(??) +ctypes.macholib.dyld(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(??) +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(??) +ctypes.macholib.dyld.combinations_with_replacement(??) +ctypes.macholib.dyld.compress(??) +ctypes.macholib.dyld.count(??) +ctypes.macholib.dyld.cycle(??) +ctypes.macholib.dyld.dropwhile(??) +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(??) +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(??) +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.pairwise(??) +ctypes.macholib.dyld.permutations(??) +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(??) +ctypes.macholib.dyld.takewhile(??) +ctypes.macholib.dyld.tee(??) +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib(??) +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.shutil(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wintypes(??) +ctypes.wintypes.ATOM(??) +ctypes.wintypes.BOOL(??) +ctypes.wintypes.BOOLEAN(??) +ctypes.wintypes.BYTE(??) +ctypes.wintypes.CHAR(??) +ctypes.wintypes.COLORREF(??) +ctypes.wintypes.DOUBLE(??) +ctypes.wintypes.DWORD(??) +ctypes.wintypes.FILETIME(??) +ctypes.wintypes.FLOAT(??) +ctypes.wintypes.HACCEL(??) +ctypes.wintypes.HANDLE(??) +ctypes.wintypes.HBITMAP(??) +ctypes.wintypes.HBRUSH(??) +ctypes.wintypes.HCOLORSPACE(??) +ctypes.wintypes.HDC(??) +ctypes.wintypes.HDESK(??) +ctypes.wintypes.HDWP(??) +ctypes.wintypes.HENHMETAFILE(??) +ctypes.wintypes.HFONT(??) +ctypes.wintypes.HGDIOBJ(??) +ctypes.wintypes.HGLOBAL(??) +ctypes.wintypes.HHOOK(??) +ctypes.wintypes.HICON(??) +ctypes.wintypes.HINSTANCE(??) +ctypes.wintypes.HKEY(??) +ctypes.wintypes.HKL(??) +ctypes.wintypes.HLOCAL(??) +ctypes.wintypes.HMENU(??) +ctypes.wintypes.HMETAFILE(??) +ctypes.wintypes.HMODULE(??) +ctypes.wintypes.HMONITOR(??) +ctypes.wintypes.HPALETTE(??) +ctypes.wintypes.HPEN(??) +ctypes.wintypes.HRGN(??) +ctypes.wintypes.HRSRC(??) +ctypes.wintypes.HSTR(??) +ctypes.wintypes.HTASK(??) +ctypes.wintypes.HWINSTA(??) +ctypes.wintypes.HWND(??) +ctypes.wintypes.INT(??) +ctypes.wintypes.LANGID(??) +ctypes.wintypes.LARGE_INTEGER(??) +ctypes.wintypes.LCID(??) +ctypes.wintypes.LCTYPE(??) +ctypes.wintypes.LGRPID(??) +ctypes.wintypes.LONG(??) +ctypes.wintypes.LPARAM(??) +ctypes.wintypes.LPBOOL(??) +ctypes.wintypes.LPBYTE(??) +ctypes.wintypes.LPCOLESTR(??) +ctypes.wintypes.LPCOLORREF(??) +ctypes.wintypes.LPCSTR(??) +ctypes.wintypes.LPCVOID(??) +ctypes.wintypes.LPCWSTR(??) +ctypes.wintypes.LPDWORD(??) +ctypes.wintypes.LPFILETIME(??) +ctypes.wintypes.LPHANDLE(??) +ctypes.wintypes.LPHKL(??) +ctypes.wintypes.LPINT(??) +ctypes.wintypes.LPLONG(??) +ctypes.wintypes.LPMSG(??) +ctypes.wintypes.LPOLESTR(??) +ctypes.wintypes.LPPOINT(??) +ctypes.wintypes.LPRECT(??) +ctypes.wintypes.LPRECTL(??) +ctypes.wintypes.LPSC_HANDLE(??) +ctypes.wintypes.LPSIZE(??) +ctypes.wintypes.LPSIZEL(??) +ctypes.wintypes.LPSTR(??) +ctypes.wintypes.LPUINT(??) +ctypes.wintypes.LPVOID(??) +ctypes.wintypes.LPWIN32_FIND_DATAA(??) +ctypes.wintypes.LPWIN32_FIND_DATAW(??) +ctypes.wintypes.LPWORD(??) +ctypes.wintypes.LPWSTR(??) +ctypes.wintypes.MAX_PATH +ctypes.wintypes.MSG(??) +ctypes.wintypes.OLESTR(??) +ctypes.wintypes.PBOOL(??) +ctypes.wintypes.PBOOLEAN(??) +ctypes.wintypes.PBYTE(??) +ctypes.wintypes.PCHAR(??) +ctypes.wintypes.PDWORD(??) +ctypes.wintypes.PFILETIME(??) +ctypes.wintypes.PFLOAT(??) +ctypes.wintypes.PHANDLE(??) +ctypes.wintypes.PHKEY(??) +ctypes.wintypes.PINT(??) +ctypes.wintypes.PLARGE_INTEGER(??) +ctypes.wintypes.PLCID(??) +ctypes.wintypes.PLONG(??) +ctypes.wintypes.PMSG(??) +ctypes.wintypes.POINT(??) +ctypes.wintypes.POINTL(??) +ctypes.wintypes.PPOINT(??) +ctypes.wintypes.PPOINTL(??) +ctypes.wintypes.PRECT(??) +ctypes.wintypes.PRECTL(??) +ctypes.wintypes.PSHORT(??) +ctypes.wintypes.PSIZE(??) +ctypes.wintypes.PSIZEL(??) +ctypes.wintypes.PSMALL_RECT(??) +ctypes.wintypes.PUINT(??) +ctypes.wintypes.PULARGE_INTEGER(??) +ctypes.wintypes.PULONG(??) +ctypes.wintypes.PUSHORT(??) +ctypes.wintypes.PWCHAR(??) +ctypes.wintypes.PWIN32_FIND_DATAA(??) +ctypes.wintypes.PWIN32_FIND_DATAW(??) +ctypes.wintypes.PWORD(??) +ctypes.wintypes.RECT(??) +ctypes.wintypes.RECTL(??) +ctypes.wintypes.RGB(??) +ctypes.wintypes.SC_HANDLE(??) +ctypes.wintypes.SERVICE_STATUS_HANDLE(??) +ctypes.wintypes.SHORT(??) +ctypes.wintypes.SIZE(??) +ctypes.wintypes.SIZEL(??) +ctypes.wintypes.SMALL_RECT(??) +ctypes.wintypes.UINT(??) +ctypes.wintypes.ULARGE_INTEGER(??) +ctypes.wintypes.ULONG(??) +ctypes.wintypes.USHORT(??) +ctypes.wintypes.VARIANT_BOOL(??) +ctypes.wintypes.WCHAR(??) +ctypes.wintypes.WIN32_FIND_DATAA(??) +ctypes.wintypes.WIN32_FIND_DATAW(??) +ctypes.wintypes.WORD(??) +ctypes.wintypes.WPARAM(??) +ctypes.wintypes.ctypes(??) +ctypes.wintypes.tagMSG(??) +ctypes.wintypes.tagPOINT(??) +ctypes.wintypes.tagRECT(??) +ctypes.wintypes.tagSIZE(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii(??) +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.get_escdelay(??) +curses.get_tabsize(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_extended_color_support(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.ncurses_version(??) +curses.newpad(??) +curses.newwin(nlines, ncols, [begin_y=0, begin_x=0]) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.set_escdelay(??) +curses.set_tabsize(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.update_lines_cols(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.window(??) +curses.wrapper(??) +dataclasses.Field(??) +dataclasses.FrozenInstanceError(??) +dataclasses.FunctionType(??) +dataclasses.GenericAlias(??) +dataclasses.InitVar(??) +dataclasses.KW_ONLY(??) +dataclasses.MISSING(??) +dataclasses.abc(??) +dataclasses.asdict(??) +dataclasses.astuple(??) +dataclasses.builtins(??) +dataclasses.copy(??) +dataclasses.dataclass(??) +dataclasses.field(??) +dataclasses.fields(??) +dataclasses.functools(??) +dataclasses.inspect(??) +dataclasses.is_dataclass(??) +dataclasses.keyword(??) +dataclasses.make_dataclass(??) +dataclasses.re(??) +dataclasses.replace(??) +dataclasses.sys(??) +dataclasses.types(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.sys(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_CONTEXTVAR(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(??) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.GenericAlias(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.diff_bytes(??) +difflib.get_close_matches(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.Bytecode(??) +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.FORMAT_VALUE +dis.FORMAT_VALUE_CONVERTERS(??) +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.MAKE_FUNCTION +dis.MAKE_FUNCTION_FLAGS(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(??) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.IncrementalNewlineDecoder(??) +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager(??) +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.maintype +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.contentmanager.subtype +email.contentmanager.typ(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64LengthDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidDateDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.StringIO(??) +email.feedparser.compat32(??) +email.feedparser.deque([iterable[, maxlen]]) --> deque object +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.re(??) +email.generator(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.NL +email.generator.NLCRE(??) +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.MappingProxyType(??) +email.headerregistry.MessageIDHeader(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO(??) +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.Policy(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.quopri(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime(??) +email.mime.application(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio(??) +email.mime.audio.BytesIO(??) +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base(??) +email.mime.base.MIMEBase(??) +email.mime.base.email(??) +email.mime.base.message(??) +email.mime.image(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text(??) +email.mime.text.Charset(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.policy(??) +email.policy.Compat32(??) +email.policy.EmailMessage(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.SMTPUTF8(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.linesep_splitter(??) +email.policy.raw_data_manager(??) +email.policy.re(??) +email.policy.strict(??) +email.policy.sys(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +ensurepip.bootstrap(??) +ensurepip.collections(??) +ensurepip.os(??) +ensurepip.resources(??) +ensurepip.subprocess(??) +ensurepip.sys(??) +ensurepip.sysconfig(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.DynamicClassAttribute(??) +enum.Enum(??) +enum.EnumMeta(??) +enum.Flag(??) +enum.IntEnum(??) +enum.IntFlag(??) +enum.MappingProxyType(??) +enum.auto(??) +enum.sys(??) +enum.unique(??) +enumerate(??) +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTRECOVERABLE +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EOWNERDEAD +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(??) +exec(??) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register a handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.GenericAlias(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(??) +filecmp.os(??) +filecmp.stat(??) +fileinput.FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None) +fileinput.GenericAlias(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.io(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(??) +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.GenericAlias(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.cache(??) +functools.cached_property(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.recursive_repr(??) +functools.reduce(function, iterable[, initial]) -> value +functools.singledispatch(??) +functools.singledispatchmethod(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect(??) +gc.disable(??) +gc.enable(??) +gc.freeze(??) +gc.garbage(??) +gc.get_count(??) +gc.get_debug(??) +gc.get_freeze_count(??) +gc.get_objects(??) +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats(??) +gc.get_threshold(??) +gc.is_finalized(??) +gc.is_tracked(??) +gc.isenabled(??) +gc.set_debug(??) +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gc.unfreeze(??) +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.dnpgettext(??) +gettext.dpgettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.ngettext(??) +gettext.npgettext(??) +gettext.os(??) +gettext.pgettext(??) +gettext.re(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.contextlib(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.itertools(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +glob.stat(??) +glob.sys(??) +globals(??) +graphlib.CycleError(??) +graphlib.TopologicalSorter(??) +gzip.BadGzipFile(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.main(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(??) +hash(??) +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.blake2b(??) +hashlib.blake2s(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(??) +hashlib.scrypt(??) +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha3_224(??) +hashlib.sha3_256(??) +hashlib.sha3_384(??) +hashlib.sha3_512(??) +hashlib.sha512(??) +hashlib.shake_128(??) +hashlib.shake_256(??) +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(??) +heapq.heappushpop(??) +heapq.heapreplace(??) +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +help(??) +hex(??) +hmac.HMAC(??) +hmac.compare_digest(??) +hmac.digest(??) +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser(??) +html.parser.HTMLParser(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.unescape(??) +http.HTTPStatus(??) +http.IntEnum(??) +http.client(??) +http.client.ACCEPTED(??) +http.client.ALREADY_REPORTED(??) +http.client.BAD_GATEWAY(??) +http.client.BAD_REQUEST(??) +http.client.BadStatusLine(??) +http.client.CONFLICT(??) +http.client.CONTINUE(??) +http.client.CREATED(??) +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EARLY_HINTS(??) +http.client.EXPECTATION_FAILED(??) +http.client.FAILED_DEPENDENCY(??) +http.client.FORBIDDEN(??) +http.client.FOUND(??) +http.client.GATEWAY_TIMEOUT(??) +http.client.GONE(??) +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED(??) +http.client.IM_A_TEAPOT(??) +http.client.IM_USED(??) +http.client.INSUFFICIENT_STORAGE(??) +http.client.INTERNAL_SERVER_ERROR(??) +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED(??) +http.client.LOCKED(??) +http.client.LOOP_DETECTED(??) +http.client.LineTooLong(??) +http.client.METHOD_NOT_ALLOWED(??) +http.client.MISDIRECTED_REQUEST(??) +http.client.MOVED_PERMANENTLY(??) +http.client.MULTIPLE_CHOICES(??) +http.client.MULTI_STATUS(??) +http.client.NETWORK_AUTHENTICATION_REQUIRED(??) +http.client.NON_AUTHORITATIVE_INFORMATION(??) +http.client.NOT_ACCEPTABLE(??) +http.client.NOT_EXTENDED(??) +http.client.NOT_FOUND(??) +http.client.NOT_IMPLEMENTED(??) +http.client.NOT_MODIFIED(??) +http.client.NO_CONTENT(??) +http.client.NotConnected(??) +http.client.OK(??) +http.client.PARTIAL_CONTENT(??) +http.client.PAYMENT_REQUIRED(??) +http.client.PERMANENT_REDIRECT(??) +http.client.PRECONDITION_FAILED(??) +http.client.PRECONDITION_REQUIRED(??) +http.client.PROCESSING(??) +http.client.PROXY_AUTHENTICATION_REQUIRED(??) +http.client.REQUESTED_RANGE_NOT_SATISFIABLE(??) +http.client.REQUEST_ENTITY_TOO_LARGE(??) +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE(??) +http.client.REQUEST_TIMEOUT(??) +http.client.REQUEST_URI_TOO_LONG(??) +http.client.RESET_CONTENT(??) +http.client.RemoteDisconnected(??) +http.client.ResponseNotReady(??) +http.client.SEE_OTHER(??) +http.client.SERVICE_UNAVAILABLE(??) +http.client.SWITCHING_PROTOCOLS(??) +http.client.TEMPORARY_REDIRECT(??) +http.client.TOO_EARLY(??) +http.client.TOO_MANY_REQUESTS(??) +http.client.UNAUTHORIZED(??) +http.client.UNAVAILABLE_FOR_LEGAL_REASONS(??) +http.client.UNPROCESSABLE_ENTITY(??) +http.client.UNSUPPORTED_MEDIA_TYPE(??) +http.client.UPGRADE_REQUIRED(??) +http.client.USE_PROXY(??) +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.VARIANT_ALSO_NEGOTIATES(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.http(??) +http.client.io(??) +http.client.parse_headers(??) +http.client.re(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.sys(??) +http.client.urlsplit(??) +http.cookiejar(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTPONLY_ATTR +http.cookiejar.HTTPONLY_PREFIX +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.NETSCAPE_HEADER_TEXT +http.cookiejar.NETSCAPE_MAGIC_RGX(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.os(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.cookies.types(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.HTTPStatus(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.ThreadingHTTPServer(??) +http.server.contextlib(??) +http.server.copy(??) +http.server.datetime(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.partial(func, *args, **keywords) - new function with partial application +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(??) +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.PathLike(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exr(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_webp(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.create_dynamic(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc(??) +importlib.abc.BinaryIO(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Iterable(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.Protocol(??) +importlib.abc.ResourceLoader(??) +importlib.abc.ResourceReader(??) +importlib.abc.SourceLoader(??) +importlib.abc.Text(??) +importlib.abc.Traversable(??) +importlib.abc.TraversableResources(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.abc.runtime_checkable(??) +importlib.abc.warnings(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.metadata(??) +importlib.metadata.Deprecated(??) +importlib.metadata.DeprecatedList(??) +importlib.metadata.Distribution(??) +importlib.metadata.DistributionFinder(??) +importlib.metadata.EntryPoint(??) +importlib.metadata.EntryPoints(??) +importlib.metadata.FastPath(??) +importlib.metadata.FileHash(??) +importlib.metadata.FreezableDefaultDict(??) +importlib.metadata.List(??) +importlib.metadata.Lookup(??) +importlib.metadata.Mapping(??) +importlib.metadata.MetaPathFinder(??) +importlib.metadata.MetadataPathFinder(??) +importlib.metadata.Optional(??) +importlib.metadata.PackageMetadata(??) +importlib.metadata.PackageNotFoundError(??) +importlib.metadata.PackagePath(??) +importlib.metadata.Pair(??) +importlib.metadata.PathDistribution(??) +importlib.metadata.Prepared(??) +importlib.metadata.Sectioned(??) +importlib.metadata.SelectableGroups(??) +importlib.metadata.SimplePath(??) +importlib.metadata.Union(??) +importlib.metadata.abc(??) +importlib.metadata.collections(??) +importlib.metadata.csv(??) +importlib.metadata.distribution(??) +importlib.metadata.distributions(??) +importlib.metadata.email(??) +importlib.metadata.entry_points(??) +importlib.metadata.files(??) +importlib.metadata.functools(??) +importlib.metadata.import_module(??) +importlib.metadata.itertools(??) +importlib.metadata.metadata(??) +importlib.metadata.method_cache(??) +importlib.metadata.operator(??) +importlib.metadata.os(??) +importlib.metadata.packages_distributions(??) +importlib.metadata.pathlib(??) +importlib.metadata.posixpath(??) +importlib.metadata.re(??) +importlib.metadata.requires(??) +importlib.metadata.starmap(??) +importlib.metadata.suppress(??) +importlib.metadata.sys(??) +importlib.metadata.textwrap(??) +importlib.metadata.unique_everseen(??) +importlib.metadata.version(??) +importlib.metadata.warnings(??) +importlib.metadata.zipfile(??) +importlib.readers(??) +importlib.readers.FileReader(??) +importlib.readers.MultiplexedPath(??) +importlib.readers.NamespaceReader(??) +importlib.readers.ZipReader(??) +importlib.readers.abc(??) +importlib.readers.collections(??) +importlib.readers.pathlib(??) +importlib.readers.remove_duplicates(??) +importlib.readers.zipfile(??) +importlib.reload(??) +importlib.resources(??) +importlib.resources.BinaryIO(??) +importlib.resources.BytesIO(??) +importlib.resources.ContextManager(??) +importlib.resources.Iterable(??) +importlib.resources.ModuleSpec(??) +importlib.resources.ModuleType(??) +importlib.resources.Package(??) +importlib.resources.Path(??) +importlib.resources.Resource(??) +importlib.resources.ResourceLoader(??) +importlib.resources.ResourceReader(??) +importlib.resources.Sequence(??) +importlib.resources.TextIO(??) +importlib.resources.TextIOWrapper(??) +importlib.resources.Union(??) +importlib.resources.as_file(??) +importlib.resources.cast(??) +importlib.resources.contents(??) +importlib.resources.files(??) +importlib.resources.io(??) +importlib.resources.is_resource(??) +importlib.resources.open_binary(??) +importlib.resources.open_text(??) +importlib.resources.os(??) +importlib.resources.path(??) +importlib.resources.read_binary(??) +importlib.resources.read_text(??) +importlib.resources.singledispatch(??) +importlib.resources.suppress(??) +importlib.sys(??) +importlib.util(??) +importlib.util.LazyLoader(??) +importlib.util.Loader(??) +importlib.util.MAGIC_NUMBER +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.module_from_spec(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.source_hash(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.types(??) +importlib.util.warnings(??) +importlib.warnings(??) +input(??) +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CORO_CLOSED +inspect.CORO_CREATED +inspect.CORO_RUNNING +inspect.CORO_SUSPENDED +inspect.CO_ASYNC_GENERATOR +inspect.CO_COROUTINE +inspect.CO_GENERATOR +inspect.CO_ITERABLE_COROUTINE +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClassFoundException(??) +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FrameInfo(frame, filename, lineno, function, code_context, index) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.abc(??) +inspect.ast(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.collections(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.enum(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.get_annotations(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getcoroutinelocals(??) +inspect.getcoroutinestate(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isasyncgen(??) +inspect.isasyncgenfunction(??) +inspect.isawaitable(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.iscoroutine(??) +inspect.iscoroutinefunction(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int([x]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO(??) +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +io.open_code(??) +io.text_encoding(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(??) +issubclass(??) +iter(iterable) -> iterator +itertools.accumulate(??) +itertools.chain(*iterables) --> chain object +itertools.combinations(??) +itertools.combinations_with_replacement(??) +itertools.compress(??) +itertools.count(??) +itertools.cycle(??) +itertools.dropwhile(??) +itertools.filterfalse(??) +itertools.groupby(??) +itertools.islice(iterable, stop) --> islice object +itertools.pairwise(??) +itertools.permutations(??) +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(??) +itertools.takewhile(??) +itertools.tee(??) +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecodeError(??) +json.JSONDecoder(??) +json.JSONEncoder(??) +json.codecs(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS(??) +json.decoder.JSONArray(??) +json.decoder.JSONDecodeError(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.detect_encoding(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(string) -> string +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring(??) +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool(??) +json.tool.argparse(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.issoftkeyword(??) +keyword.kwlist(??) +keyword.softkwlist(??) +len(??) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.functools(??) +linecache.getline(??) +linecache.getlines(??) +linecache.lazycache(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list(??) +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.currency(??) +locale.delocalize(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.k +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.localize(??) +locale.nl_langinfo(??) +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(??) +locale.sys(??) +locale.v +locale.windows_locale(??) +locals(??) +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.collections(??) +logging.config(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingMixin(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.errno(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.copy(??) +logging.handlers.io(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.re(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +lzma.os(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.GenericAlias(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.lineno_sort_key(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +mailcap.warnings(??) +map(func, *iterables) --> map object +marshal.dump(??) +marshal.dumps(??) +marshal.load(??) +marshal.loads(??) +marshal.version +max(iterable, *[, default=obj, key=func]) -> value +memoryview(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable, *[, default=obj, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.EXTENDED_ARG +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.importlib(??) +modulefinder.io(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.sys(??) +modulefinder.test(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.reduction(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list(??) +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.SIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_signed(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.resource_tracker(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.warnings(??) +multiprocessing.forkserver.write_signed(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.defaultdict(default_factory=None, /, [...]) --> dict with default factory +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BasePoolProxy(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.HAS_SHMEM(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessError(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.SharedMemoryManager(??) +multiprocessing.managers.SharedMemoryServer(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.get_spawning_popen(??) +multiprocessing.managers.getpid(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.os(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.shared_memory(??) +multiprocessing.managers.signal(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.time(??) +multiprocessing.managers.types(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.parent_process(??) +multiprocessing.pool(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.INIT +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.types(??) +multiprocessing.pool.util(??) +multiprocessing.pool.wait(??) +multiprocessing.pool.warnings(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.set_spawning_popen(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.set_spawning_popen(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.parent_process(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.process.threading(??) +multiprocessing.queues(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.types(??) +multiprocessing.queues.weakref(??) +multiprocessing.reducer(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ABCMeta(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.AbstractReducer(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.resource_sharer(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.resource_tracker(??) +multiprocessing.resource_tracker.ResourceTracker(??) +multiprocessing.resource_tracker.ensure_running(??) +multiprocessing.resource_tracker.getfd(??) +multiprocessing.resource_tracker.main(??) +multiprocessing.resource_tracker.os(??) +multiprocessing.resource_tracker.register(??) +multiprocessing.resource_tracker.signal(??) +multiprocessing.resource_tracker.spawn(??) +multiprocessing.resource_tracker.sys(??) +multiprocessing.resource_tracker.threading(??) +multiprocessing.resource_tracker.unregister(??) +multiprocessing.resource_tracker.util(??) +multiprocessing.resource_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.shared_memory(??) +multiprocessing.shared_memory.ShareableList(??) +multiprocessing.shared_memory.SharedMemory(??) +multiprocessing.shared_memory.errno(??) +multiprocessing.shared_memory.mmap(??) +multiprocessing.shared_memory.os(??) +multiprocessing.shared_memory.partial(func, *args, **keywords) - new function with partial application +multiprocessing.shared_memory.secrets(??) +multiprocessing.shared_memory.struct(??) +multiprocessing.shared_memory.types(??) +multiprocessing.sharedctypes(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.reduction(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.reduction(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.time(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.abstract_sockets_supported(??) +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.close_fds(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_abstract_socket_namespace(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.sys(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(??) +open(??) +operator.abs(??) +operator.add(??) +operator.and_(??) +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(??) +operator.contains(??) +operator.countOf(??) +operator.delitem(??) +operator.eq(??) +operator.floordiv(??) +operator.ge(??) +operator.getitem(??) +operator.gt(??) +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imatmul(??) +operator.imod(??) +operator.imul(??) +operator.index(??) +operator.indexOf(??) +operator.inv(??) +operator.invert(??) +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(??) +operator.is_not(??) +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(??) +operator.length_hint(??) +operator.lshift(??) +operator.lt(??) +operator.matmul(??) +operator.methodcaller(name, ...) --> methodcaller object +operator.mod(??) +operator.mul(??) +operator.ne(??) +operator.neg(??) +operator.not_(??) +operator.or_(??) +operator.pos(??) +operator.pow(??) +operator.rshift(??) +operator.setitem(??) +operator.sub(??) +operator.truediv(??) +operator.truth(??) +operator.xor(??) +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(??) +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_KILLED +os.CLD_STOPPED +os.CLD_TRAPPED +os.DirEntry(??) +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.GenericAlias(??) +os.Mapping(??) +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CLOEXEC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EVTONLY +os.O_EXCL +os.O_EXLOCK +os.O_FSYNC +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NOFOLLOW_ANY +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYMLINK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.POSIX_SPAWN_CLOSE +os.POSIX_SPAWN_DUP2 +os.POSIX_SPAWN_OPEN +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.PathLike(??) +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_DATA +os.SEEK_END +os.SEEK_HOLE +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(??) +os.WEXITED +os.WEXITSTATUS(??) +os.WIFCONTINUED(??) +os.WIFEXITED(??) +os.WIFSIGNALED(??) +os.WIFSTOPPED(??) +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(??) +os.WTERMSIG(??) +os.WUNTRACED +os.W_OK +os.X_OK +os.abc(??) +os.abort(??) +os.access(??) +os.altsep(??) +os.chdir(??) +os.chflags(??) +os.chmod(??) +os.chown(??) +os.chroot(??) +os.close(??) +os.closerange(??) +os.confstr(??) +os.confstr_names(??) +os.cpu_count(??) +os.ctermid(??) +os.curdir +os.defpath +os.device_encoding(??) +os.devnull +os.dup(??) +os.dup2(??) +os.environ(??) +os.environb(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(??) +os.execve(??) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(??) +os.fchmod(??) +os.fchown(??) +os.fdopen(??) +os.fork(??) +os.forkpty(??) +os.fpathconf(??) +os.fsdecode(??) +os.fsencode(??) +os.fspath(??) +os.fstat(??) +os.fstatvfs(??) +os.fsync(??) +os.ftruncate(??) +os.fwalk(??) +os.get_blocking(??) +os.get_exec_path(??) +os.get_inheritable(??) +os.get_terminal_size(??) +os.getcwd(??) +os.getcwdb(??) +os.getegid(??) +os.getenv(??) +os.getenvb(??) +os.geteuid(??) +os.getgid(??) +os.getgrouplist(??) +os.getgroups(??) +os.getloadavg(??) +os.getlogin(??) +os.getpgid(??) +os.getpgrp(??) +os.getpid(??) +os.getppid(??) +os.getpriority(??) +os.getsid(??) +os.getuid(??) +os.initgroups(??) +os.isatty(??) +os.kill(??) +os.killpg(??) +os.lchflags(??) +os.lchmod(??) +os.lchown(??) +os.linesep +os.link(??) +os.listdir(??) +os.lockf(??) +os.lseek(??) +os.lstat(??) +os.major(??) +os.makedev(??) +os.makedirs(name [, mode=0o777][, exist_ok=False]) +os.minor(??) +os.mkdir(??) +os.mkfifo(??) +os.mknod(??) +os.name +os.nice(??) +os.open(??) +os.openpty(??) +os.pardir +os.path(??) +os.pathconf(??) +os.pathconf_names(??) +os.pathsep +os.pipe(??) +os.popen(??) +os.posix_spawn(??) +os.posix_spawnp(??) +os.pread(??) +os.preadv(??) +os.putenv(??) +os.pwrite(??) +os.pwritev(??) +os.read(??) +os.readlink(??) +os.readv(??) +os.register_at_fork(??) +os.remove(??) +os.removedirs(name) +os.rename(??) +os.renames(old, new) +os.replace(??) +os.rmdir(??) +os.scandir(??) +os.sched_get_priority_max(??) +os.sched_get_priority_min(??) +os.sched_yield(??) +os.sendfile(??) +os.sep +os.set_blocking(??) +os.set_inheritable(??) +os.setegid(??) +os.seteuid(??) +os.setgid(??) +os.setgroups(??) +os.setpgid(??) +os.setpgrp(??) +os.setpriority(??) +os.setregid(??) +os.setreuid(??) +os.setsid(??) +os.setuid(??) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_result(??) +os.statvfs(??) +os.statvfs_result(??) +os.strerror(??) +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(??) +os.sync(??) +os.sys(??) +os.sysconf(??) +os.sysconf_names(??) +os.system(??) +os.tcgetpgrp(??) +os.tcsetpgrp(??) +os.terminal_size(??) +os.times(??) +os.times_result(??) +os.truncate(??) +os.ttyname(??) +os.umask(??) +os.uname(??) +os.uname_result(??) +os.unlink(??) +os.unsetenv(??) +os.urandom(??) +os.utime(??) +os.wait(??) +os.wait3(??) +os.wait4(??) +os.waitpid(??) +os.waitstatus_to_exitcode(??) +os.walk(??) +os.write(??) +os.writev(??) +pathlib.EBADF +pathlib.EINVAL +pathlib.ELOOP +pathlib.ENOENT +pathlib.ENOTDIR +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pathlib.warnings(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.io(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.tokenize(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.BYTEARRAY8 +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NEXT_BUFFER +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleBuffer(??) +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.READONLY_BUFFER +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(format, v1, v2, ...) -> bytes +pickle.partial(func, *args, **keywords) - new function with partial application +pickle.re(??) +pickle.sys(??) +pickle.unpack(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytearray8(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybuffer(??) +pickletools.pybytearray(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytearray8(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleInfo(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.namedtuple(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.resolve_name(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.architecture(??) +platform.collections(??) +platform.freedesktop_os_release(??) +platform.functools(??) +platform.itertools(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.subprocess(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(??) +platform.version(??) +platform.win32_edition(??) +platform.win32_is_iot(??) +platform.win32_ver(??) +plistlib.BytesIO(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate(??) +plistlib.PlistFormat(??) +plistlib.UID(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.struct(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +poplib.sys(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_KILLED +posix.CLD_STOPPED +posix.CLD_TRAPPED +posix.DirEntry(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CLOEXEC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EVTONLY +posix.O_EXCL +posix.O_EXLOCK +posix.O_FSYNC +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NOFOLLOW_ANY +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYMLINK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.POSIX_SPAWN_CLOSE +posix.POSIX_SPAWN_DUP2 +posix.POSIX_SPAWN_OPEN +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.SEEK_DATA +posix.SEEK_HOLE +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(??) +posix.WEXITED +posix.WEXITSTATUS(??) +posix.WIFCONTINUED(??) +posix.WIFEXITED(??) +posix.WIFSIGNALED(??) +posix.WIFSTOPPED(??) +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(??) +posix.WTERMSIG(??) +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort(??) +posix.access(??) +posix.chdir(??) +posix.chflags(??) +posix.chmod(??) +posix.chown(??) +posix.chroot(??) +posix.close(??) +posix.closerange(??) +posix.confstr(??) +posix.confstr_names(??) +posix.cpu_count(??) +posix.ctermid(??) +posix.device_encoding(??) +posix.dup(??) +posix.dup2(??) +posix.environ(??) +posix.error(??) +posix.execv(??) +posix.execve(??) +posix.fchdir(??) +posix.fchmod(??) +posix.fchown(??) +posix.fork(??) +posix.forkpty(??) +posix.fpathconf(??) +posix.fspath(??) +posix.fstat(??) +posix.fstatvfs(??) +posix.fsync(??) +posix.ftruncate(??) +posix.get_blocking(??) +posix.get_inheritable(??) +posix.get_terminal_size(??) +posix.getcwd(??) +posix.getcwdb(??) +posix.getegid(??) +posix.geteuid(??) +posix.getgid(??) +posix.getgrouplist(??) +posix.getgroups(??) +posix.getloadavg(??) +posix.getlogin(??) +posix.getpgid(??) +posix.getpgrp(??) +posix.getpid(??) +posix.getppid(??) +posix.getpriority(??) +posix.getsid(??) +posix.getuid(??) +posix.initgroups(??) +posix.isatty(??) +posix.kill(??) +posix.killpg(??) +posix.lchflags(??) +posix.lchmod(??) +posix.lchown(??) +posix.link(??) +posix.listdir(??) +posix.lockf(??) +posix.lseek(??) +posix.lstat(??) +posix.major(??) +posix.makedev(??) +posix.minor(??) +posix.mkdir(??) +posix.mkfifo(??) +posix.mknod(??) +posix.nice(??) +posix.open(??) +posix.openpty(??) +posix.pathconf(??) +posix.pathconf_names(??) +posix.pipe(??) +posix.posix_spawn(??) +posix.posix_spawnp(??) +posix.pread(??) +posix.preadv(??) +posix.putenv(??) +posix.pwrite(??) +posix.pwritev(??) +posix.read(??) +posix.readlink(??) +posix.readv(??) +posix.register_at_fork(??) +posix.remove(??) +posix.rename(??) +posix.replace(??) +posix.rmdir(??) +posix.scandir(??) +posix.sched_get_priority_max(??) +posix.sched_get_priority_min(??) +posix.sched_yield(??) +posix.sendfile(??) +posix.set_blocking(??) +posix.set_inheritable(??) +posix.setegid(??) +posix.seteuid(??) +posix.setgid(??) +posix.setgroups(??) +posix.setpgid(??) +posix.setpgrp(??) +posix.setpriority(??) +posix.setregid(??) +posix.setreuid(??) +posix.setsid(??) +posix.setuid(??) +posix.stat(??) +posix.stat_result(??) +posix.statvfs(??) +posix.statvfs_result(??) +posix.strerror(??) +posix.symlink(??) +posix.sync(??) +posix.sysconf(??) +posix.sysconf_names(??) +posix.system(??) +posix.tcgetpgrp(??) +posix.tcsetpgrp(??) +posix.terminal_size(??) +posix.times(??) +posix.times_result(??) +posix.truncate(??) +posix.ttyname(??) +posix.umask(??) +posix.uname(??) +posix.uname_result(??) +posix.unlink(??) +posix.unsetenv(??) +posix.urandom(??) +posix.utime(??) +posix.wait(??) +posix.wait3(??) +posix.wait4(??) +posix.waitpid(??) +posix.waitstatus_to_exitcode(??) +posix.write(??) +posix.writev(??) +pow(??) +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pp(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(??) +pstats.Dict(??) +pstats.Enum(??) +pstats.FunctionProfile(ncalls: int, tottime: float, percall_tottime: float, cumtime: float, percall_cumtime: float, file_name: str, line_number: int) +pstats.SortKey(??) +pstats.Stats(??) +pstats.StatsProfile(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.dataclass(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.close(??) +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(??) +pty.setraw(??) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.sys(??) +pty.tcgetattr(??) +pty.tcsetattr(??) +pty.tty(??) +pty.waitpid(??) +pwd.getpwall(??) +pwd.getpwnam(??) +pwd.getpwuid(??) +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.PycInvalidationMode(??) +py_compile.compile(??) +py_compile.enum(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.Function(??) +pyclbr.ast(??) +pyclbr.importlib(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.sort_attributes(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.sysconfig(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.urllib(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.SimpleQueue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(??) +queue.threading(??) +queue.time(??) +queue.types(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.choices(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randbytes(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A(??) +re.ASCII(??) +re.DEBUG(??) +re.DOTALL(??) +re.I(??) +re.IGNORECASE(??) +re.L(??) +re.LOCALE(??) +re.M(??) +re.MULTILINE(??) +re.Match(??) +re.Pattern(??) +re.RegexFlag(??) +re.S(??) +re.Scanner(??) +re.T(??) +re.TEMPLATE(??) +re.U(??) +re.UNICODE(??) +re.VERBOSE(??) +re.X(??) +re.compile(??) +re.copyreg(??) +re.enum(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.template(??) +repr(??) +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(??) +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.inspect(??) +rlcompleter.readline(??) +round(??) +runpy.importlib(??) +runpy.io(??) +runpy.os(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +runpy.types(??) +sched.Event(time, priority, sequence, action, argument, kwargs) +sched.count(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +secrets.DEFAULT_ENTROPY +secrets.SystemRandom(??) +secrets.base64(??) +secrets.binascii(??) +secrets.choice(??) +secrets.compare_digest(??) +secrets.randbelow(??) +secrets.randbits(??) +secrets.token_bytes(??) +secrets.token_hex(??) +secrets.token_urlsafe(??) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(??) +shelve.BsdDbShelf(??) +shelve.BytesIO(??) +shelve.DEFAULT_PROTOCOL +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.join(??) +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.COPY_BUFSIZE +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.nt(??) +shutil.os(??) +shutil.posix(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.Handlers(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT(??) +signal.SIGALRM(??) +signal.SIGBUS(??) +signal.SIGCHLD(??) +signal.SIGCONT(??) +signal.SIGEMT(??) +signal.SIGFPE(??) +signal.SIGHUP(??) +signal.SIGILL(??) +signal.SIGINFO(??) +signal.SIGINT(??) +signal.SIGIO(??) +signal.SIGIOT(??) +signal.SIGKILL(??) +signal.SIGPIPE(??) +signal.SIGPROF(??) +signal.SIGQUIT(??) +signal.SIGSEGV(??) +signal.SIGSTOP(??) +signal.SIGSYS(??) +signal.SIGTERM(??) +signal.SIGTRAP(??) +signal.SIGTSTP(??) +signal.SIGTTIN(??) +signal.SIGTTOU(??) +signal.SIGURG(??) +signal.SIGUSR1(??) +signal.SIGUSR2(??) +signal.SIGVTALRM(??) +signal.SIGWINCH(??) +signal.SIGXCPU(??) +signal.SIGXFSZ(??) +signal.SIG_BLOCK(??) +signal.SIG_DFL(??) +signal.SIG_IGN(??) +signal.SIG_SETMASK(??) +signal.SIG_UNBLOCK(??) +signal.Sigmasks(??) +signal.Signals(??) +signal.alarm(??) +signal.default_int_handler(??) +signal.getitimer(??) +signal.getsignal(??) +signal.pause(??) +signal.pthread_kill(??) +signal.pthread_sigmask(??) +signal.raise_signal(??) +signal.set_wakeup_fd(fd, *, warn_on_full_buffer=True) -> fd +signal.setitimer(??) +signal.siginterrupt(??) +signal.signal(??) +signal.sigpending(??) +signal.sigwait(??) +signal.strsignal(??) +signal.valid_signals(??) +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.io(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPNotSupportedError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.datetime(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.sys(??) +sndhdr.SndHeaders(filetype, framerate, nchannels, nframes, sampwidth) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.namedtuple(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG(??) +socket.AI_ALL(??) +socket.AI_CANONNAME(??) +socket.AI_DEFAULT(??) +socket.AI_MASK(??) +socket.AI_NUMERICHOST(??) +socket.AI_NUMERICSERV(??) +socket.AI_PASSIVE(??) +socket.AI_V4MAPPED(??) +socket.AI_V4MAPPED_CFG(??) +socket.AddressFamily(??) +socket.AddressInfo(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_SCTP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_DONTFRAG +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PATHMTU +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPATHMTU +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_USE_MIN_MTU +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RECVTOS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.IntFlag(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC(??) +socket.MSG_DONTROUTE(??) +socket.MSG_DONTWAIT(??) +socket.MSG_EOF(??) +socket.MSG_EOR(??) +socket.MSG_NOSIGNAL(??) +socket.MSG_OOB(??) +socket.MSG_PEEK(??) +socket.MSG_TRUNC(??) +socket.MSG_WAITALL(??) +socket.MsgFlag(??) +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketKind(??) +socket.SocketType(??) +socket.TCP_FASTOPEN +socket.TCP_KEEPALIVE +socket.TCP_KEEPCNT +socket.TCP_KEEPINTVL +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_NOTSENT_LOWAT +socket.array(??) +socket.close(integer) -> None +socket.create_connection(??) +socket.create_server(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_dualstack_ipv6(??) +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.recv_fds(sock, bufsize, maxfds[, flags]) -> (data, list of file +socket.selectors(??) +socket.send_fds(sock, buffers, fds[, flags[, address]]) -> integer +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.BufferedIOBase(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.os(??) +socketserver.selectors(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +socketserver.time(??) +sorted(??) +sqlite3.Binary(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_CREATE_VTABLE +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DONE +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_DROP_VTABLE +sqlite3.SQLITE_FUNCTION +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_RECURSIVE +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SAVEPOINT +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(??) +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.collections(??) +sqlite3.complete_statement(??) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_CREATE_VTABLE +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DONE +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_DROP_VTABLE +sqlite3.dbapi2.SQLITE_FUNCTION +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_RECURSIVE +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SAVEPOINT +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(??) +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.collections(??) +sqlite3.dbapi2.complete_statement(??) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(??) +sqlite3.dbapi2.enable_shared_cache(??) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(??) +sqlite3.dbapi2.register_converter(??) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.dump(??) +sqlite3.enable_callback_tracebacks(??) +sqlite3.enable_shared_cache(??) +sqlite3.paramstyle +sqlite3.register_adapter(??) +sqlite3.register_converter(??) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE(??) +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE(??) +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY(??) +ssl.ALERT_DESCRIPTION_DECODE_ERROR(??) +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE(??) +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR(??) +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE(??) +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER(??) +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY(??) +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR(??) +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION(??) +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION(??) +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW(??) +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_CA(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY(??) +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION(??) +ssl.ALERT_DESCRIPTION_USER_CANCELLED(??) +ssl.AlertDescription(??) +ssl.CERT_NONE(??) +ssl.CERT_OPTIONAL(??) +ssl.CERT_REQUIRED(??) +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ALPN(??) +ssl.HAS_ECDH(??) +ssl.HAS_NEVER_CHECK_COMMON_NAME(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.HAS_SSLv2(??) +ssl.HAS_SSLv3(??) +ssl.HAS_TLSv1(??) +ssl.HAS_TLSv1_1(??) +ssl.HAS_TLSv1_2(??) +ssl.HAS_TLSv1_3(??) +ssl.MemoryBIO(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL(??) +ssl.OP_CIPHER_SERVER_PREFERENCE(??) +ssl.OP_ENABLE_MIDDLEBOX_COMPAT(??) +ssl.OP_NO_COMPRESSION(??) +ssl.OP_NO_RENEGOTIATION(??) +ssl.OP_NO_SSLv2(??) +ssl.OP_NO_SSLv3(??) +ssl.OP_NO_TICKET(??) +ssl.OP_NO_TLSv1(??) +ssl.OP_NO_TLSv1_1(??) +ssl.OP_NO_TLSv1_2(??) +ssl.OP_NO_TLSv1_3(??) +ssl.OP_SINGLE_DH_USE(??) +ssl.OP_SINGLE_ECDH_USE(??) +ssl.Options(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv23(??) +ssl.PROTOCOL_TLS(??) +ssl.PROTOCOL_TLS_CLIENT(??) +ssl.PROTOCOL_TLS_SERVER(??) +ssl.PROTOCOL_TLSv1(??) +ssl.PROTOCOL_TLSv1_1(??) +ssl.PROTOCOL_TLSv1_2(??) +ssl.Purpose(??) +ssl.RAND_add(??) +ssl.RAND_bytes(??) +ssl.RAND_pseudo_bytes(??) +ssl.RAND_status(??) +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLCertVerificationError(??) +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLErrorNumber(??) +ssl.SSLObject(??) +ssl.SSLSession(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF(??) +ssl.SSL_ERROR_INVALID_ERROR_CODE(??) +ssl.SSL_ERROR_SSL(??) +ssl.SSL_ERROR_SYSCALL(??) +ssl.SSL_ERROR_WANT_CONNECT(??) +ssl.SSL_ERROR_WANT_READ(??) +ssl.SSL_ERROR_WANT_WRITE(??) +ssl.SSL_ERROR_WANT_X509_LOOKUP(??) +ssl.SSL_ERROR_ZERO_RETURN(??) +ssl.TLSVersion(??) +ssl.VERIFY_ALLOW_PROXY_CERTS(??) +ssl.VERIFY_CRL_CHECK_CHAIN(??) +ssl.VERIFY_CRL_CHECK_LEAF(??) +ssl.VERIFY_DEFAULT(??) +ssl.VERIFY_X509_PARTIAL_CHAIN(??) +ssl.VERIFY_X509_STRICT(??) +ssl.VERIFY_X509_TRUSTED_FIRST(??) +ssl.VerifyFlags(??) +ssl.VerifyMode(??) +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.warnings(??) +ssl.wrap_socket(??) +stat.FILE_ATTRIBUTE_ARCHIVE +stat.FILE_ATTRIBUTE_COMPRESSED +stat.FILE_ATTRIBUTE_DEVICE +stat.FILE_ATTRIBUTE_DIRECTORY +stat.FILE_ATTRIBUTE_ENCRYPTED +stat.FILE_ATTRIBUTE_HIDDEN +stat.FILE_ATTRIBUTE_INTEGRITY_STREAM +stat.FILE_ATTRIBUTE_NORMAL +stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +stat.FILE_ATTRIBUTE_NO_SCRUB_DATA +stat.FILE_ATTRIBUTE_OFFLINE +stat.FILE_ATTRIBUTE_READONLY +stat.FILE_ATTRIBUTE_REPARSE_POINT +stat.FILE_ATTRIBUTE_SPARSE_FILE +stat.FILE_ATTRIBUTE_SYSTEM +stat.FILE_ATTRIBUTE_TEMPORARY +stat.FILE_ATTRIBUTE_VIRTUAL +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Counter(??) +statistics.Decimal(??) +statistics.Fraction(??) +statistics.LinearRegression(slope, intercept) +statistics.NormalDist(??) +statistics.StatisticsError(??) +statistics.bisect_left(??) +statistics.bisect_right(??) +statistics.correlation(??) +statistics.covariance(??) +statistics.erf(??) +statistics.exp(??) +statistics.fabs(??) +statistics.fmean(??) +statistics.fsum(??) +statistics.geometric_mean(??) +statistics.groupby(??) +statistics.harmonic_mean(??) +statistics.hypot(*coordinates) -> value +statistics.itemgetter(item, ...) --> itemgetter object +statistics.linear_regression(??) +statistics.log(x, [base=math.e]) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.multimode(??) +statistics.namedtuple(??) +statistics.numbers(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.quantiles(??) +statistics.random(??) +statistics.repeat(object [,times]) -> create an iterator which returns the object +statistics.sqrt(??) +statistics.stdev(??) +statistics.tau +statistics.variance(??) +str(object='') -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(??) +struct.error(??) +struct.iter_unpack(??) +struct.pack(format, v1, v2, ...) -> bytes +struct.pack_into(format, buffer, offset, v1, v2, ...) +struct.unpack(??) +struct.unpack_from(??) +subprocess.CalledProcessError(??) +subprocess.CompletedProcess(??) +subprocess.DEVNULL +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.contextlib(??) +subprocess.errno(??) +subprocess.fcntl(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.os(??) +subprocess.run(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.threading(??) +subprocess.time(??) +subprocess.types(??) +subprocess.warnings(??) +sum(??) +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +super() -> same as super(__class__, ) +symtable.CELL +symtable.Class(??) +symtable.DEF_ANNOT +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_NONLOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.addaudithook(??) +sys.api_version +sys.argv(??) +sys.audit(event, *args) +sys.base_exec_prefix +sys.base_prefix +sys.breakpointhook(*args, **kws) +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(??) +sys.copyright +sys.displayhook(??) +sys.dont_write_bytecode(??) +sys.exc_info(??) +sys.excepthook(??) +sys.exec_prefix +sys.executable +sys.exit(??) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.get_asyncgen_hooks(??) +sys.get_coroutine_origin_tracking_depth(??) +sys.getallocatedblocks(??) +sys.getdefaultencoding(??) +sys.getdlopenflags(??) +sys.getfilesystemencodeerrors(??) +sys.getfilesystemencoding(??) +sys.getprofile(??) +sys.getrecursionlimit(??) +sys.getrefcount(??) +sys.getsizeof(object [, default]) -> int +sys.getswitchinterval(??) +sys.gettrace(??) +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(??) +sys.is_finalizing(??) +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.orig_argv(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.platlibdir +sys.prefix +sys.pycache_prefix(??) +sys.set_asyncgen_hooks(* [, firstiter] [, finalizer]) +sys.set_coroutine_origin_tracking_depth(??) +sys.setdlopenflags(??) +sys.setprofile(function) +sys.setrecursionlimit(??) +sys.setswitchinterval(??) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdlib_module_names(??) +sys.stdout(??) +sys.thread_info(??) +sys.unraisablehook(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.expand_makefile_vars(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_default_scheme(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_preferred_scheme(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempdirb(??) +tempfile.gettempprefix(??) +tempfile.gettempprefixb(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.ExceptHookArgs(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.excepthook(exc_type, exc_value, exc_traceback, thread) +threading.functools(??) +threading.get_ident() -> integer +threading.get_native_id() -> integer +threading.getprofile(??) +threading.gettrace(??) +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.CLOCK_MONOTONIC +time.CLOCK_MONOTONIC_RAW +time.CLOCK_PROCESS_CPUTIME_ID +time.CLOCK_REALTIME +time.CLOCK_THREAD_CPUTIME_ID +time.CLOCK_UPTIME_RAW +time.altzone +time.asctime([tuple]) -> string +time.clock_getres(clk_id) -> floating point number +time.clock_gettime(clk_id) -> float +time.clock_gettime_ns(clk_id) -> int +time.clock_settime(clk_id, time) +time.clock_settime_ns(clk_id, time) +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.monotonic_ns() -> int +time.perf_counter() -> float +time.perf_counter_ns() -> int +time.process_time() -> float +time.process_time_ns(??) +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.thread_time() -> float +time.thread_time_ns(??) +time.time() -> floating point number +time.time_ns() -> int +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.EventType(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog(??) +tkinter.commondialog.Dialog(??) +tkinter.commondialog.Frame(??) +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog(??) +tkinter.dialog.Button(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.Dialog(??) +tkinter.dialog.Pack(??) +tkinter.dialog.TclError(??) +tkinter.dialog.Widget(??) +tkinter.dnd(??) +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.enum(??) +tkinter.filedialog(??) +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.Button(??) +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.END +tkinter.filedialog.Entry(??) +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.LEFT +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.Open(??) +tkinter.filedialog.RIGHT +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.TOP +tkinter.filedialog.Tk(??) +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.X +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.os(??) +tkinter.filedialog.test(??) +tkinter.font(??) +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.EventType(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.sys(??) +tkinter.tix(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.EventType(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.os(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.warnings(??) +tkinter.ttk(??) +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Spinbox(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.types(??) +tkinter.wantobjects +token.AMPER +token.AMPEREQUAL +token.ASYNC +token.AT +token.ATEQUAL +token.AWAIT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COLONEQUAL +token.COMMA +token.COMMENT +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENCODING +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.EXACT_TOKEN_TYPES(??) +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NL +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.SOFT_KEYWORD +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.TYPE_COMMENT +token.TYPE_IGNORE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.ASYNC +tokenize.AT +tokenize.ATEQUAL +tokenize.AWAIT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COLONEQUAL +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.SOFT_KEYWORD +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TYPE_COMMENT +tokenize.TYPE_IGNORE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.functools(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.u +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.os(??) +trace.pickle(??) +trace.sys(??) +trace.sysconfig(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +traceback.FrameSummary(??) +traceback.StackSummary(??) +traceback.TracebackException(??) +traceback.clear_frames(??) +traceback.collections(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.itertools(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +traceback.walk_stack(??) +traceback.walk_tb(??) +tracemalloc.BaseFilter(??) +tracemalloc.DomainFilter(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Iterable(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces(??) +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit(??) +tracemalloc.get_traced_memory(??) +tracemalloc.get_tracemalloc_memory(??) +tracemalloc.is_tracing(??) +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.reset_peak(??) +tracemalloc.start(??) +tracemalloc.stop(??) +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(??) +tty.tcflow(??) +tty.tcflush(??) +tty.tcgetattr(??) +tty.tcsendbreak(??) +tty.tcsetattr(??) +tuple(??) +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.sys(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object_or_name, bases, dict) +types.AsyncGeneratorType(??) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CellType(??) +types.ClassMethodDescriptorType(??) +types.CodeType(??) +types.CoroutineType(??) +types.DynamicClassAttribute(??) +types.EllipsisType(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GenericAlias(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodDescriptorType(??) +types.MethodType(??) +types.MethodWrapperType(??) +types.ModuleType(??) +types.NoneType(??) +types.NotImplementedType(??) +types.SimpleNamespace(??) +types.TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno) +types.UnionType(??) +types.WrapperDescriptorType(??) +types.coroutine(??) +types.new_class(??) +types.prepare_class(??) +types.resolve_bases(??) +typing.ABCMeta(??) +typing.AbstractSet(??) +typing.Annotated(??) +typing.Any(??) +typing.AnyStr(??) +typing.AsyncContextManager(??) +typing.AsyncGenerator(??) +typing.AsyncIterable(??) +typing.AsyncIterator(??) +typing.Awaitable(??) +typing.BinaryIO(??) +typing.ByteString(??) +typing.CT_co(??) +typing.Callable(??) +typing.ChainMap(??) +typing.ClassVar(??) +typing.Collection(??) +typing.Concatenate(??) +typing.Container(??) +typing.ContextManager(??) +typing.Coroutine(??) +typing.Counter(??) +typing.DefaultDict(??) +typing.Deque(??) +typing.Dict(??) +typing.EXCLUDED_ATTRIBUTES(??) +typing.Final(??) +typing.ForwardRef(??) +typing.FrozenSet(??) +typing.Generator(??) +typing.Generic(??) +typing.GenericAlias(??) +typing.Hashable(??) +typing.IO(??) +typing.ItemsView(??) +typing.Iterable(??) +typing.Iterator(??) +typing.KT(??) +typing.KeysView(??) +typing.List(??) +typing.Literal(??) +typing.Mapping(??) +typing.MappingView(??) +typing.Match(??) +typing.MethodDescriptorType(??) +typing.MethodWrapperType(??) +typing.MutableMapping(??) +typing.MutableSequence(??) +typing.MutableSet(??) +typing.NamedTuple(??) +typing.NamedTupleMeta(??) +typing.NewType(??) +typing.NoReturn(??) +typing.Optional(??) +typing.OrderedDict(??) +typing.ParamSpec(??) +typing.ParamSpecArgs(??) +typing.ParamSpecKwargs(??) +typing.Pattern(??) +typing.Protocol(??) +typing.Reversible(??) +typing.Sequence(??) +typing.Set(??) +typing.Sized(??) +typing.SupportsAbs(??) +typing.SupportsBytes(??) +typing.SupportsComplex(??) +typing.SupportsFloat(??) +typing.SupportsIndex(??) +typing.SupportsInt(??) +typing.SupportsRound(??) +typing.T(??) +typing.TYPE_CHECKING(??) +typing.T_co(??) +typing.T_contra(??) +typing.Text(??) +typing.TextIO(??) +typing.Tuple(??) +typing.Type(??) +typing.TypeAlias(??) +typing.TypeGuard(??) +typing.TypeVar(??) +typing.TypedDict(??) +typing.Union(??) +typing.VT(??) +typing.VT_co(??) +typing.V_co(??) +typing.ValuesView(??) +typing.WrapperDescriptorType(??) +typing.abstractmethod(??) +typing.cast(??) +typing.collections(??) +typing.contextlib(??) +typing.final(??) +typing.functools(??) +typing.get_args(??) +typing.get_origin(??) +typing.get_type_hints(??) +typing.io(??) +typing.is_typeddict(??) +typing.no_type_check(??) +typing.no_type_check_decorator(??) +typing.operator(??) +typing.overload(??) +typing.re(??) +typing.runtime_checkable(??) +typing.stdlib_re(??) +typing.sys(??) +typing.types(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr(??) +urllib.parse.splithost(??) +urllib.parse.splitnport(??) +urllib.parse.splitpasswd(??) +urllib.parse.splitport(??) +urllib.parse.splitquery(??) +urllib.parse.splittag(??) +urllib.parse.splittype(??) +urllib.parse.splituser(??) +urllib.parse.splitvalue(??) +urllib.parse.sys(??) +urllib.parse.to_bytes(??) +urllib.parse.types(??) +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap(??) +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.parse.warnings(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPPasswordMgrWithPriorAuth(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.ssl(??) +urllib.request.string(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap(??) +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.response.tempfile(??) +urllib.robotparser(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RequestRate(requests, seconds) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.collections(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.Enum(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.SafeUUID(??) +uuid.UUID(??) +uuid.bytes_(??) +uuid.getnode(??) +uuid.int_(??) +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.CORE_VENV_DEPS(??) +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.sysconfig(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.audioop(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.struct(??) +wave.sys(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.itertools(??) +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.register_standard_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.threading(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.raise_conversion_error(??) +xdrlib.struct(??) +xdrlib.wraps(??) +xml.dom(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.sys(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat(??) +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder(??) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.xml(??) +xml.etree(??) +xml.etree.ElementInclude(??) +xml.etree.ElementInclude.DEFAULT_MAX_INCLUSION_DEPTH +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.LimitedRecursiveIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementInclude.urljoin(??) +xml.etree.ElementPath(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree(??) +xml.etree.ElementTree.C14NWriterTarget(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.canonicalize(??) +xml.etree.ElementTree.collections(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.indent(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree(??) +xml.etree.cElementTree.C14NWriterTarget(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLPullParser(??) +xml.etree.cElementTree.canonicalize(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.indent(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(??) +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate(??) +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.LexicalHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Decimal(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.html(??) +xmlrpc.server.http(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.partial(func, *args, **keywords) - new function with partial application +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.signature(??) +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(*iterables, strict=False) --> Yield tuples until an input is exhausted. +zipapp.MAIN_TEMPLATE +zipapp.ZipAppError(??) +zipapp.contextlib(??) +zipapp.create_archive(??) +zipapp.get_interpreter(??) +zipapp.main(??) +zipapp.os(??) +zipapp.pathlib(??) +zipapp.shebang_encoding +zipapp.shutil(??) +zipapp.stat(??) +zipapp.sys(??) +zipapp.zipfile(??) +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.CompleteDirs(??) +zipfile.DEFAULT_VERSION +zipfile.FastLookup(??) +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.Path(??) +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.contextlib(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.itertools(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.pathlib(??) +zipfile.posixpath(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.threading(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.END_CENTRAL_DIR_SIZE +zipimport.MAX_COMMENT_LEN +zipimport.STRING_END_ARCHIVE +zipimport.ZipImportError(??) +zipimport.alt_path_sep +zipimport.cp437_table +zipimport.marshal(??) +zipimport.path_sep +zipimport.sys(??) +zipimport.time(??) +zipimport.zipimporter(archivepath) -> zipimporter object +zoneinfo.InvalidTZPathWarning(??) +zoneinfo.TZPATH(??) +zoneinfo.ZoneInfo(??) +zoneinfo.ZoneInfoNotFoundError(??) +zoneinfo.available_timezones(??) +zoneinfo.reset_tzpath(??) diff --git a/third_party/qscintilla/qsci/api/python/Python-3.11.api b/third_party/qscintilla/qsci/api/python/Python-3.11.api new file mode 100644 index 0000000..7290034 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.11.api @@ -0,0 +1,9696 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BaseExceptionGroup(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EncodingWarning(??) +EnvironmentError(??) +Exception(??) +ExceptionGroup(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +ModuleNotFoundError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +RecursionError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopAsyncIteration(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +__phello__.spam.initialized(??) +__phello__.spam.main(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abc.update_abstractmethods(??) +abs(??) +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.struct(??) +aifc.warnings(??) +aiter(??) +all(??) +anext(??) +any(??) +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.BooleanOptionalAction(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +argparse.warnings(??) +ascii(??) +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.AnnAssign(expr target, expr annotation, expr? value, int simple) +ast.Assert(expr test, expr? msg) +ast.Assign(expr* targets, expr value, string? type_comment) +ast.AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment) +ast.AsyncFunctionDef(identifier name, arguments args, stmt* body, expr* decorator_list, expr? returns, string? type_comment) +ast.AsyncWith(withitem* items, stmt* body, string? type_comment) +ast.Attribute(expr value, identifier attr, expr_context ctx) +ast.AugAssign(expr target, operator op, expr value) +ast.AugLoad(??) +ast.AugStore(??) +ast.Await(expr value) +ast.BinOp(expr left, operator op, expr right) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(boolop op, expr* values) +ast.Break(??) +ast.Bytes(??) +ast.Call(expr func, expr* args, keyword* keywords) +ast.ClassDef(identifier name, expr* bases, keyword* keywords, stmt* body, expr* decorator_list) +ast.Compare(expr left, cmpop* ops, expr* comparators) +ast.Constant(constant value, string? kind) +ast.Continue(??) +ast.Del(??) +ast.Delete(expr* targets) +ast.Dict(expr* keys, expr* values) +ast.DictComp(expr key, expr value, comprehension* generators) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(expr? type, identifier? name, stmt* body) +ast.Expr(expr value) +ast.Expression(expr body) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment) +ast.FormattedValue(expr value, int conversion, expr? format_spec) +ast.FunctionDef(identifier name, arguments args, stmt* body, expr* decorator_list, expr? returns, string? type_comment) +ast.FunctionType(expr* argtypes, expr returns) +ast.GeneratorExp(expr elt, comprehension* generators) +ast.Global(identifier* names) +ast.Gt(??) +ast.GtE(??) +ast.If(expr test, stmt* body, stmt* orelse) +ast.IfExp(expr test, expr body, expr orelse) +ast.Import(alias* names) +ast.ImportFrom(identifier? module, alias* names, int? level) +ast.In(??) +ast.Index(??) +ast.IntEnum(??) +ast.Interactive(stmt* body) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.JoinedStr(expr* values) +ast.LShift(??) +ast.Lambda(arguments args, expr body) +ast.List(expr* elts, expr_context ctx) +ast.ListComp(expr elt, comprehension* generators) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.MatMult(??) +ast.Match(expr subject, match_case* cases) +ast.MatchAs(pattern? pattern, identifier? name) +ast.MatchClass(expr cls, pattern* patterns, identifier* kwd_attrs, pattern* kwd_patterns) +ast.MatchMapping(expr* keys, pattern* patterns, identifier? rest) +ast.MatchOr(pattern* patterns) +ast.MatchSequence(pattern* patterns) +ast.MatchSingleton(constant value) +ast.MatchStar(identifier? name) +ast.MatchValue(expr value) +ast.Mod(??) +ast.Module(stmt* body, type_ignore* type_ignores) +ast.Mult(??) +ast.Name(identifier id, expr_context ctx) +ast.NameConstant(??) +ast.NamedExpr(expr target, expr value) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(identifier* names) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ALLOW_TOP_LEVEL_AWAIT +ast.PyCF_ONLY_AST +ast.PyCF_TYPE_COMMENTS +ast.RShift(??) +ast.Raise(expr? exc, expr? cause) +ast.Return(expr? value) +ast.Set(expr* elts) +ast.SetComp(expr elt, comprehension* generators) +ast.Slice(expr? lower, expr? upper, expr? step) +ast.Starred(expr value, expr_context ctx) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(expr value, expr slice, expr_context ctx) +ast.Suite(??) +ast.Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody) +ast.TryStar(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody) +ast.Tuple(expr* elts, expr_context ctx) +ast.TypeIgnore(int lineno, string tag) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(unaryop op, expr operand) +ast.While(expr test, stmt* body, stmt* orelse) +ast.With(withitem* items, stmt* body, string? type_comment) +ast.Yield(expr? value) +ast.YieldFrom(expr value) +ast.alias(identifier name, identifier? asname) +ast.arg(identifier arg, expr? annotation, string? type_comment) +ast.arguments(arg* posonlyargs, arg* args, arg? vararg, arg* kwonlyargs, expr* kw_defaults, arg? kwarg, expr* defaults) +ast.auto(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(expr target, expr iter, expr* ifs, int is_async) +ast.contextmanager(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.get_source_segment(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(identifier? arg, expr value) +ast.literal_eval(??) +ast.main(??) +ast.match_case(pattern pattern, expr? guard, stmt* body) +ast.mod(??) +ast.nullcontext(??) +ast.operator(??) +ast.parse(??) +ast.pattern(??) +ast.slice(??) +ast.stmt(??) +ast.sys(??) +ast.type_ignore(??) +ast.unaryop(??) +ast.unparse(??) +ast.walk(??) +ast.withitem(expr context_expr, expr? optional_vars) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.Barrier(??) +asyncio.BaseEventLoop(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.BrokenBarrierError(??) +asyncio.BufferedProtocol(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.LifoQueue(??) +asyncio.LimitOverrunError(??) +asyncio.Lock(??) +asyncio.MultiLoopChildWatcher(??) +asyncio.PidfdChildWatcher(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.Runner(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.SendfileNotAvailableError(??) +asyncio.Server(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.TaskGroup(??) +asyncio.ThreadedChildWatcher(??) +asyncio.Timeout(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.all_tasks(??) +asyncio.as_completed(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.MAXIMUM_SELECT_TIMEOUT +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.constants(??) +asyncio.base_events.coroutines(??) +asyncio.base_events.events(??) +asyncio.base_events.exceptions(??) +asyncio.base_events.functools(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.itertools(??) +asyncio.base_events.logger(??) +asyncio.base_events.os(??) +asyncio.base_events.protocols(??) +asyncio.base_events.socket(??) +asyncio.base_events.ssl(??) +asyncio.base_events.sslproto(??) +asyncio.base_events.staggered(??) +asyncio.base_events.stat(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.threading(??) +asyncio.base_events.time(??) +asyncio.base_events.traceback(??) +asyncio.base_events.transports(??) +asyncio.base_events.trsock(??) +asyncio.base_events.warnings(??) +asyncio.base_events.weakref(??) +asyncio.base_futures(??) +asyncio.base_futures.format_helpers(??) +asyncio.base_futures.get_ident() -> integer +asyncio.base_futures.isfuture(??) +asyncio.base_futures.reprlib(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.logger(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.transports(??) +asyncio.base_subprocess.warnings(??) +asyncio.base_tasks(??) +asyncio.base_tasks.base_futures(??) +asyncio.base_tasks.coroutines(??) +asyncio.base_tasks.linecache(??) +asyncio.base_tasks.reprlib(??) +asyncio.base_tasks.traceback(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.DEBUG_STACK_DEPTH +asyncio.constants.FLOW_CONTROL_HIGH_WATER_SSL_READ +asyncio.constants.FLOW_CONTROL_HIGH_WATER_SSL_WRITE +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.constants.SENDFILE_FALLBACK_READBUFFER_SIZE +asyncio.constants.SSL_HANDSHAKE_TIMEOUT +asyncio.constants.SSL_SHUTDOWN_TIMEOUT +asyncio.constants.enum(??) +asyncio.coroutines(??) +asyncio.coroutines.collections(??) +asyncio.coroutines.inspect(??) +asyncio.coroutines.iscoroutine(??) +asyncio.coroutines.iscoroutinefunction(??) +asyncio.coroutines.os(??) +asyncio.coroutines.sys(??) +asyncio.coroutines.traceback(??) +asyncio.coroutines.types(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.create_task(??) +asyncio.current_task(??) +asyncio.ensure_future(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.TimerHandle(??) +asyncio.events.contextvars(??) +asyncio.events.format_helpers(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.get_running_loop(??) +asyncio.events.new_event_loop(??) +asyncio.events.os(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.sys(??) +asyncio.events.threading(??) +asyncio.exceptions(??) +asyncio.exceptions.BrokenBarrierError(??) +asyncio.exceptions.CancelledError(??) +asyncio.exceptions.IncompleteReadError(??) +asyncio.exceptions.InvalidStateError(??) +asyncio.exceptions.LimitOverrunError(??) +asyncio.exceptions.SendfileNotAvailableError(??) +asyncio.exceptions.TimeoutError(??) +asyncio.format_helpers(??) +asyncio.format_helpers.constants(??) +asyncio.format_helpers.extract_stack(??) +asyncio.format_helpers.functools(??) +asyncio.format_helpers.inspect(??) +asyncio.format_helpers.reprlib(??) +asyncio.format_helpers.sys(??) +asyncio.format_helpers.traceback(??) +asyncio.futures(??) +asyncio.futures.Future(??) +asyncio.futures.GenericAlias(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.base_futures(??) +asyncio.futures.concurrent(??) +asyncio.futures.contextvars(??) +asyncio.futures.events(??) +asyncio.futures.exceptions(??) +asyncio.futures.format_helpers(??) +asyncio.futures.isfuture(??) +asyncio.futures.logging(??) +asyncio.futures.sys(??) +asyncio.futures.warnings(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.get_running_loop(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.isfuture(??) +asyncio.locks(??) +asyncio.locks.Barrier(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.enum(??) +asyncio.locks.exceptions(??) +asyncio.locks.mixins(??) +asyncio.locks.tasks(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.mixins(??) +asyncio.mixins.events(??) +asyncio.mixins.threading(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.collections(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.exceptions(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.io(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.os(??) +asyncio.proactor_events.protocols(??) +asyncio.proactor_events.signal(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.sslproto(??) +asyncio.proactor_events.threading(??) +asyncio.proactor_events.transports(??) +asyncio.proactor_events.trsock(??) +asyncio.proactor_events.warnings(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.BufferedProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.GenericAlias(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.queues.mixins(??) +asyncio.run(??) +asyncio.run_coroutine_threadsafe(??) +asyncio.runners(??) +asyncio.runners.Runner(??) +asyncio.runners.contextvars(??) +asyncio.runners.coroutines(??) +asyncio.runners.enum(??) +asyncio.runners.events(??) +asyncio.runners.exceptions(??) +asyncio.runners.functools(??) +asyncio.runners.run(??) +asyncio.runners.signal(??) +asyncio.runners.sys(??) +asyncio.runners.tasks(??) +asyncio.runners.threading(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.functools(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.protocols(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.sslproto(??) +asyncio.selector_events.transports(??) +asyncio.selector_events.trsock(??) +asyncio.selector_events.warnings(??) +asyncio.selector_events.weakref(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.sslproto(??) +asyncio.sslproto.AppProtocolState(??) +asyncio.sslproto.SSLAgainErrors(??) +asyncio.sslproto.SSLProtocol(??) +asyncio.sslproto.SSLProtocolState(??) +asyncio.sslproto.add_flowcontrol_defaults(??) +asyncio.sslproto.collections(??) +asyncio.sslproto.constants(??) +asyncio.sslproto.enum(??) +asyncio.sslproto.exceptions(??) +asyncio.sslproto.logger(??) +asyncio.sslproto.protocols(??) +asyncio.sslproto.ssl(??) +asyncio.sslproto.transports(??) +asyncio.sslproto.warnings(??) +asyncio.staggered(??) +asyncio.staggered.contextlib(??) +asyncio.staggered.events(??) +asyncio.staggered.exceptions_mod(??) +asyncio.staggered.locks(??) +asyncio.staggered.staggered_race(??) +asyncio.staggered.tasks(??) +asyncio.staggered.typing(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.coroutines(??) +asyncio.streams.events(??) +asyncio.streams.exceptions(??) +asyncio.streams.format_helpers(??) +asyncio.streams.logger(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.sleep(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.streams.sys(??) +asyncio.streams.warnings(??) +asyncio.streams.weakref(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.logger(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.sys(??) +asyncio.taskgroups(??) +asyncio.taskgroups.TaskGroup(??) +asyncio.taskgroups.events(??) +asyncio.taskgroups.exceptions(??) +asyncio.taskgroups.tasks(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.GenericAlias(??) +asyncio.tasks.Task(??) +asyncio.tasks.all_tasks(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.base_tasks(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.contextvars(??) +asyncio.tasks.coroutines(??) +asyncio.tasks.create_task(??) +asyncio.tasks.current_task(??) +asyncio.tasks.ensure_future(??) +asyncio.tasks.events(??) +asyncio.tasks.exceptions(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.itertools(??) +asyncio.tasks.run_coroutine_threadsafe(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.types(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.warnings(??) +asyncio.tasks.weakref(??) +asyncio.threads(??) +asyncio.threads.contextvars(??) +asyncio.threads.events(??) +asyncio.threads.functools(??) +asyncio.threads.to_thread(??) +asyncio.timeout(??) +asyncio.timeout_at(??) +asyncio.timeouts(??) +asyncio.timeouts.Optional(??) +asyncio.timeouts.Timeout(??) +asyncio.timeouts.TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno) +asyncio.timeouts.Type(??) +asyncio.timeouts.enum(??) +asyncio.timeouts.events(??) +asyncio.timeouts.exceptions(??) +asyncio.timeouts.final(??) +asyncio.timeouts.tasks(??) +asyncio.timeouts.timeout(??) +asyncio.timeouts.timeout_at(??) +asyncio.to_thread(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.trsock(??) +asyncio.trsock.TransportSocket(??) +asyncio.trsock.socket(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.MultiLoopChildWatcher(??) +asyncio.unix_events.PidfdChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.ThreadedChildWatcher(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.coroutines(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.exceptions(??) +asyncio.unix_events.futures(??) +asyncio.unix_events.io(??) +asyncio.unix_events.itertools(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.selectors(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.tasks(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.unix_events.waitstatus_to_exitcode(??) +asyncio.unix_events.warnings(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b32hexdecode(??) +base64.b32hexencode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.encode(??) +base64.encodebytes(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_ASYNC_GENERATOR +bdb.CO_COROUTINE +bdb.CO_GENERATOR +bdb.GENERATOR_AND_COROUTINE_FLAGS +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(??) +bisect.bisect(??) +bisect.bisect_left(??) +bisect.bisect_right(??) +bisect.insort(??) +bisect.insort_left(??) +bisect.insort_right(??) +bool(x) -> bool +breakpoint(*args, **kws) +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BaseExceptionGroup(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EncodingWarning(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.ExceptionGroup(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.ModuleNotFoundError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.RecursionError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopAsyncIteration(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(??) +builtins.aiter(??) +builtins.all(??) +builtins.anext(??) +builtins.any(??) +builtins.ascii(??) +builtins.bin(??) +builtins.bool(x) -> bool +builtins.breakpoint(*args, **kws) +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(??) +builtins.chr(??) +builtins.classmethod(function) -> method +builtins.compile(??) +builtins.complex(??) +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(??) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(??) +builtins.enumerate(??) +builtins.eval(??) +builtins.exec(??) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(??) +builtins.format(??) +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals(??) +builtins.hasattr(??) +builtins.hash(??) +builtins.help(??) +builtins.hex(??) +builtins.id(??) +builtins.input(??) +builtins.int([x]) -> integer +builtins.isinstance(??) +builtins.issubclass(??) +builtins.iter(iterable) -> iterator +builtins.len(??) +builtins.license(??) +builtins.list(??) +builtins.locals(??) +builtins.map(func, *iterables) --> map object +builtins.max(iterable, *[, default=obj, key=func]) -> value +builtins.memoryview(??) +builtins.min(iterable, *[, default=obj, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(??) +builtins.open(??) +builtins.ord(??) +builtins.pow(??) +builtins.print(??) +builtins.property(??) +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(??) +builtins.reversed(??) +builtins.round(??) +builtins.set() -> new empty set object +builtins.setattr(??) +builtins.slice(stop) +builtins.sorted(??) +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(??) +builtins.super() -> same as super(__class__, ) +builtins.tuple(??) +builtins.type(object) -> the object's type +builtins.vars([object]) -> dictionary +builtins.zip(*iterables, strict=False) --> Yield tuples until an input is exhausted. +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.os(??) +cProfile.Profile(timer=None, timeunit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.repeat(object [,times]) -> create an iterator which returns the object +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(??) +cgi.BytesIO(??) +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warnings(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.html_escape(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +cgitb.warnings(??) +chr(??) +chunk.Chunk(??) +chunk.warnings(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(??) +codecs.encode(??) +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(??) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.namereplace_errors(??) +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(??) +codecs.register_error(??) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unregister(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_ALLOW_INCOMPLETE_INPUT +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +codeop.warnings(??) +collections.ChainMap(??) +collections.Counter(??) +collections.OrderedDict(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.abc(??) +collections.abc.AsyncGenerator(??) +collections.abc.AsyncIterable(??) +collections.abc.AsyncIterator(??) +collections.abc.Awaitable(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Collection(??) +collections.abc.Container(??) +collections.abc.Coroutine(??) +collections.abc.Generator(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Reversible(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory=None, /, [...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(??) +compileall.Path(??) +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.filecmp(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.partial(func, *args, **keywords) - new function with partial application +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(??) +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.BrokenExecutor(??) +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.Queue(??) +concurrent.futures.process.format_exception(??) +concurrent.futures.process.itertools(??) +concurrent.futures.process.mp(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.partial(func, *args, **keywords) - new function with partial application +concurrent.futures.process.queue(??) +concurrent.futures.process.sys(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread.BrokenThreadPool(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.itertools(??) +concurrent.futures.thread.os(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.types(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.ConverterMapping(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.os(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.AbstractAsyncContextManager(??) +contextlib.AbstractContextManager(??) +contextlib.AsyncContextDecorator(??) +contextlib.AsyncExitStack(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.GenericAlias(??) +contextlib.MethodType(??) +contextlib.abc(??) +contextlib.aclosing(??) +contextlib.asynccontextmanager(??) +contextlib.chdir(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.nullcontext(??) +contextlib.os(??) +contextlib.redirect_stderr(??) +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +contextvars.Context(??) +contextvars.ContextVar(??) +contextvars.Token(??) +contextvars.copy_context(??) +copy.Error(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.pickle_union(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_BLOWFISH(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.errno(??) +crypt.methods(??) +crypt.mksalt(??) +crypt.warnings(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.BigEndianUnion(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.LittleEndianUnion(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib(??) +ctypes.macholib.dyld(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(??) +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(??) +ctypes.macholib.dyld.combinations_with_replacement(??) +ctypes.macholib.dyld.compress(??) +ctypes.macholib.dyld.count(??) +ctypes.macholib.dyld.cycle(??) +ctypes.macholib.dyld.dropwhile(??) +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(??) +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(??) +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.pairwise(??) +ctypes.macholib.dyld.permutations(??) +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(??) +ctypes.macholib.dyld.takewhile(??) +ctypes.macholib.dyld.tee(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib(??) +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.framework(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.shutil(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wintypes(??) +ctypes.wintypes.ATOM(??) +ctypes.wintypes.BOOL(??) +ctypes.wintypes.BOOLEAN(??) +ctypes.wintypes.BYTE(??) +ctypes.wintypes.CHAR(??) +ctypes.wintypes.COLORREF(??) +ctypes.wintypes.DOUBLE(??) +ctypes.wintypes.DWORD(??) +ctypes.wintypes.FILETIME(??) +ctypes.wintypes.FLOAT(??) +ctypes.wintypes.HACCEL(??) +ctypes.wintypes.HANDLE(??) +ctypes.wintypes.HBITMAP(??) +ctypes.wintypes.HBRUSH(??) +ctypes.wintypes.HCOLORSPACE(??) +ctypes.wintypes.HDC(??) +ctypes.wintypes.HDESK(??) +ctypes.wintypes.HDWP(??) +ctypes.wintypes.HENHMETAFILE(??) +ctypes.wintypes.HFONT(??) +ctypes.wintypes.HGDIOBJ(??) +ctypes.wintypes.HGLOBAL(??) +ctypes.wintypes.HHOOK(??) +ctypes.wintypes.HICON(??) +ctypes.wintypes.HINSTANCE(??) +ctypes.wintypes.HKEY(??) +ctypes.wintypes.HKL(??) +ctypes.wintypes.HLOCAL(??) +ctypes.wintypes.HMENU(??) +ctypes.wintypes.HMETAFILE(??) +ctypes.wintypes.HMODULE(??) +ctypes.wintypes.HMONITOR(??) +ctypes.wintypes.HPALETTE(??) +ctypes.wintypes.HPEN(??) +ctypes.wintypes.HRGN(??) +ctypes.wintypes.HRSRC(??) +ctypes.wintypes.HSTR(??) +ctypes.wintypes.HTASK(??) +ctypes.wintypes.HWINSTA(??) +ctypes.wintypes.HWND(??) +ctypes.wintypes.INT(??) +ctypes.wintypes.LANGID(??) +ctypes.wintypes.LARGE_INTEGER(??) +ctypes.wintypes.LCID(??) +ctypes.wintypes.LCTYPE(??) +ctypes.wintypes.LGRPID(??) +ctypes.wintypes.LONG(??) +ctypes.wintypes.LPARAM(??) +ctypes.wintypes.LPBOOL(??) +ctypes.wintypes.LPBYTE(??) +ctypes.wintypes.LPCOLESTR(??) +ctypes.wintypes.LPCOLORREF(??) +ctypes.wintypes.LPCSTR(??) +ctypes.wintypes.LPCVOID(??) +ctypes.wintypes.LPCWSTR(??) +ctypes.wintypes.LPDWORD(??) +ctypes.wintypes.LPFILETIME(??) +ctypes.wintypes.LPHANDLE(??) +ctypes.wintypes.LPHKL(??) +ctypes.wintypes.LPINT(??) +ctypes.wintypes.LPLONG(??) +ctypes.wintypes.LPMSG(??) +ctypes.wintypes.LPOLESTR(??) +ctypes.wintypes.LPPOINT(??) +ctypes.wintypes.LPRECT(??) +ctypes.wintypes.LPRECTL(??) +ctypes.wintypes.LPSC_HANDLE(??) +ctypes.wintypes.LPSIZE(??) +ctypes.wintypes.LPSIZEL(??) +ctypes.wintypes.LPSTR(??) +ctypes.wintypes.LPUINT(??) +ctypes.wintypes.LPVOID(??) +ctypes.wintypes.LPWIN32_FIND_DATAA(??) +ctypes.wintypes.LPWIN32_FIND_DATAW(??) +ctypes.wintypes.LPWORD(??) +ctypes.wintypes.LPWSTR(??) +ctypes.wintypes.MAX_PATH +ctypes.wintypes.MSG(??) +ctypes.wintypes.OLESTR(??) +ctypes.wintypes.PBOOL(??) +ctypes.wintypes.PBOOLEAN(??) +ctypes.wintypes.PBYTE(??) +ctypes.wintypes.PCHAR(??) +ctypes.wintypes.PDWORD(??) +ctypes.wintypes.PFILETIME(??) +ctypes.wintypes.PFLOAT(??) +ctypes.wintypes.PHANDLE(??) +ctypes.wintypes.PHKEY(??) +ctypes.wintypes.PINT(??) +ctypes.wintypes.PLARGE_INTEGER(??) +ctypes.wintypes.PLCID(??) +ctypes.wintypes.PLONG(??) +ctypes.wintypes.PMSG(??) +ctypes.wintypes.POINT(??) +ctypes.wintypes.POINTL(??) +ctypes.wintypes.PPOINT(??) +ctypes.wintypes.PPOINTL(??) +ctypes.wintypes.PRECT(??) +ctypes.wintypes.PRECTL(??) +ctypes.wintypes.PSHORT(??) +ctypes.wintypes.PSIZE(??) +ctypes.wintypes.PSIZEL(??) +ctypes.wintypes.PSMALL_RECT(??) +ctypes.wintypes.PUINT(??) +ctypes.wintypes.PULARGE_INTEGER(??) +ctypes.wintypes.PULONG(??) +ctypes.wintypes.PUSHORT(??) +ctypes.wintypes.PWCHAR(??) +ctypes.wintypes.PWIN32_FIND_DATAA(??) +ctypes.wintypes.PWIN32_FIND_DATAW(??) +ctypes.wintypes.PWORD(??) +ctypes.wintypes.RECT(??) +ctypes.wintypes.RECTL(??) +ctypes.wintypes.RGB(??) +ctypes.wintypes.SC_HANDLE(??) +ctypes.wintypes.SERVICE_STATUS_HANDLE(??) +ctypes.wintypes.SHORT(??) +ctypes.wintypes.SIZE(??) +ctypes.wintypes.SIZEL(??) +ctypes.wintypes.SMALL_RECT(??) +ctypes.wintypes.UINT(??) +ctypes.wintypes.ULARGE_INTEGER(??) +ctypes.wintypes.ULONG(??) +ctypes.wintypes.USHORT(??) +ctypes.wintypes.VARIANT_BOOL(??) +ctypes.wintypes.WCHAR(??) +ctypes.wintypes.WIN32_FIND_DATAA(??) +ctypes.wintypes.WIN32_FIND_DATAW(??) +ctypes.wintypes.WORD(??) +ctypes.wintypes.WPARAM(??) +ctypes.wintypes.ctypes(??) +ctypes.wintypes.tagMSG(??) +ctypes.wintypes.tagPOINT(??) +ctypes.wintypes.tagRECT(??) +ctypes.wintypes.tagSIZE(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii(??) +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.get_escdelay(??) +curses.get_tabsize(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_extended_color_support(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.ncurses_version(??) +curses.newpad(??) +curses.newwin(nlines, ncols, [begin_y=0, begin_x=0]) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.set_escdelay(??) +curses.set_tabsize(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.update_lines_cols(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.window(??) +curses.wrapper(??) +dataclasses.Field(??) +dataclasses.FrozenInstanceError(??) +dataclasses.FunctionType(??) +dataclasses.GenericAlias(??) +dataclasses.InitVar(??) +dataclasses.KW_ONLY(??) +dataclasses.MISSING(??) +dataclasses.abc(??) +dataclasses.asdict(??) +dataclasses.astuple(??) +dataclasses.builtins(??) +dataclasses.copy(??) +dataclasses.dataclass(??) +dataclasses.field(??) +dataclasses.fields(??) +dataclasses.functools(??) +dataclasses.inspect(??) +dataclasses.is_dataclass(??) +dataclasses.itertools(??) +dataclasses.keyword(??) +dataclasses.make_dataclass(??) +dataclasses.re(??) +dataclasses.replace(??) +dataclasses.sys(??) +dataclasses.types(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.UTC(??) +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.sys(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_CONTEXTVAR(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(??) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.GenericAlias(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.diff_bytes(??) +difflib.get_close_matches(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.BINARY_OP +dis.Bytecode(??) +dis.CACHE +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.FORMAT_VALUE +dis.FORMAT_VALUE_CONVERTERS(??) +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.JUMP_BACKWARD +dis.LOAD_CONST +dis.LOAD_GLOBAL +dis.MAKE_FUNCTION +dis.MAKE_FUNCTION_FLAGS(??) +dis.Positions(lineno, end_lineno, col_offset, end_col_offset) +dis.UNKNOWN(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.deoptmap(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.parse_exception_table(??) +dis.parse_varint(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.spec_op +dis.specialized +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(??) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.IncrementalNewlineDecoder(??) +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager(??) +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64LengthDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidDateDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.StringIO(??) +email.feedparser.compat32(??) +email.feedparser.deque([iterable[, maxlen]]) --> deque object +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.re(??) +email.generator(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.NL +email.generator.NLCRE(??) +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.MappingProxyType(??) +email.headerregistry.MessageIDHeader(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO(??) +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.Policy(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.binascii(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.quopri(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio.BytesIO(??) +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.rule(??) +email.mime.base(??) +email.mime.base.MIMEBase(??) +email.mime.base.email(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.rule(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text.Charset(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.policy(??) +email.policy.Compat32(??) +email.policy.EmailMessage(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.SMTPUTF8(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.linesep_splitter(??) +email.policy.raw_data_manager(??) +email.policy.re(??) +email.policy.strict(??) +email.policy.sys(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +ensurepip.bootstrap(??) +ensurepip.collections(??) +ensurepip.os(??) +ensurepip.resources(??) +ensurepip.subprocess(??) +ensurepip.sys(??) +ensurepip.sysconfig(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.CONFORM(??) +enum.CONTINUOUS(??) +enum.DynamicClassAttribute(??) +enum.EJECT(??) +enum.Enum(??) +enum.EnumCheck(??) +enum.EnumMeta(??) +enum.EnumType(??) +enum.Flag(??) +enum.FlagBoundary(??) +enum.IntEnum(??) +enum.IntFlag(??) +enum.KEEP(??) +enum.MappingProxyType(??) +enum.NAMED_FLAGS(??) +enum.ReprEnum(??) +enum.STRICT(??) +enum.StrEnum(??) +enum.UNIQUE(??) +enum.auto(??) +enum.bin(??) +enum.bltns(??) +enum.global_enum(??) +enum.global_enum_repr(??) +enum.global_flag_repr(??) +enum.global_str(??) +enum.member(??) +enum.nonmember(??) +enum.property(??) +enum.reduce(function, iterable[, initial]) -> value +enum.show_flag_values(??) +enum.sys(??) +enum.unique(??) +enum.verify(??) +enumerate(??) +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTRECOVERABLE +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EOWNERDEAD +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.EQFULL +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(??) +exec(??) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register a handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.GenericAlias(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(??) +filecmp.os(??) +filecmp.stat(??) +fileinput.FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None) +fileinput.GenericAlias(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.io(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(??) +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.GenericAlias(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.cache(??) +functools.cached_property(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.recursive_repr(??) +functools.reduce(function, iterable[, initial]) -> value +functools.singledispatch(??) +functools.singledispatchmethod(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect(??) +gc.disable(??) +gc.enable(??) +gc.freeze(??) +gc.garbage(??) +gc.get_count(??) +gc.get_debug(??) +gc.get_freeze_count(??) +gc.get_objects(??) +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats(??) +gc.get_threshold(??) +gc.is_finalized(??) +gc.is_tracked(??) +gc.isenabled(??) +gc.set_debug(??) +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gc.unfreeze(??) +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.dnpgettext(??) +gettext.dpgettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ngettext(??) +gettext.npgettext(??) +gettext.os(??) +gettext.pgettext(??) +gettext.re(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.contextlib(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.itertools(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +glob.stat(??) +glob.sys(??) +globals(??) +graphlib.CycleError(??) +graphlib.GenericAlias(??) +graphlib.TopologicalSorter(??) +gzip.BadGzipFile(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.main(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(??) +hash(??) +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.blake2b(??) +hashlib.blake2s(??) +hashlib.file_digest(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(??) +hashlib.scrypt(??) +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha3_224(??) +hashlib.sha3_256(??) +hashlib.sha3_384(??) +hashlib.sha3_512(??) +hashlib.sha512(??) +hashlib.shake_128(??) +hashlib.shake_256(??) +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(??) +heapq.heappushpop(??) +heapq.heapreplace(??) +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +help(??) +hex(??) +hmac.HMAC(??) +hmac.compare_digest(??) +hmac.digest(??) +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser.HTMLParser(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.unescape(??) +http.HTTPMethod(??) +http.HTTPStatus(??) +http.IntEnum(??) +http.StrEnum(??) +http.client(??) +http.client.ACCEPTED(??) +http.client.ALREADY_REPORTED(??) +http.client.BAD_GATEWAY(??) +http.client.BAD_REQUEST(??) +http.client.BadStatusLine(??) +http.client.CONFLICT(??) +http.client.CONTINUE(??) +http.client.CREATED(??) +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EARLY_HINTS(??) +http.client.EXPECTATION_FAILED(??) +http.client.FAILED_DEPENDENCY(??) +http.client.FORBIDDEN(??) +http.client.FOUND(??) +http.client.GATEWAY_TIMEOUT(??) +http.client.GONE(??) +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED(??) +http.client.IM_A_TEAPOT(??) +http.client.IM_USED(??) +http.client.INSUFFICIENT_STORAGE(??) +http.client.INTERNAL_SERVER_ERROR(??) +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED(??) +http.client.LOCKED(??) +http.client.LOOP_DETECTED(??) +http.client.LineTooLong(??) +http.client.METHOD_NOT_ALLOWED(??) +http.client.MISDIRECTED_REQUEST(??) +http.client.MOVED_PERMANENTLY(??) +http.client.MULTIPLE_CHOICES(??) +http.client.MULTI_STATUS(??) +http.client.NETWORK_AUTHENTICATION_REQUIRED(??) +http.client.NON_AUTHORITATIVE_INFORMATION(??) +http.client.NOT_ACCEPTABLE(??) +http.client.NOT_EXTENDED(??) +http.client.NOT_FOUND(??) +http.client.NOT_IMPLEMENTED(??) +http.client.NOT_MODIFIED(??) +http.client.NO_CONTENT(??) +http.client.NotConnected(??) +http.client.OK(??) +http.client.PARTIAL_CONTENT(??) +http.client.PAYMENT_REQUIRED(??) +http.client.PERMANENT_REDIRECT(??) +http.client.PRECONDITION_FAILED(??) +http.client.PRECONDITION_REQUIRED(??) +http.client.PROCESSING(??) +http.client.PROXY_AUTHENTICATION_REQUIRED(??) +http.client.REQUESTED_RANGE_NOT_SATISFIABLE(??) +http.client.REQUEST_ENTITY_TOO_LARGE(??) +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE(??) +http.client.REQUEST_TIMEOUT(??) +http.client.REQUEST_URI_TOO_LONG(??) +http.client.RESET_CONTENT(??) +http.client.RemoteDisconnected(??) +http.client.ResponseNotReady(??) +http.client.SEE_OTHER(??) +http.client.SERVICE_UNAVAILABLE(??) +http.client.SWITCHING_PROTOCOLS(??) +http.client.TEMPORARY_REDIRECT(??) +http.client.TOO_EARLY(??) +http.client.TOO_MANY_REQUESTS(??) +http.client.UNAUTHORIZED(??) +http.client.UNAVAILABLE_FOR_LEGAL_REASONS(??) +http.client.UNPROCESSABLE_ENTITY(??) +http.client.UNSUPPORTED_MEDIA_TYPE(??) +http.client.UPGRADE_REQUIRED(??) +http.client.USE_PROXY(??) +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.VARIANT_ALSO_NEGOTIATES(??) +http.client.collections(??) +http.client.email(??) +http.client.errno(??) +http.client.error(??) +http.client.http(??) +http.client.io(??) +http.client.parse_headers(??) +http.client.re(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.sys(??) +http.client.urlsplit(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTPONLY_ATTR +http.cookiejar.HTTPONLY_PREFIX +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.NETSCAPE_HEADER_TEXT +http.cookiejar.NETSCAPE_MAGIC_RGX(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.os(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookies(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.cookies.types(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.HTTPStatus(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.ThreadingHTTPServer(??) +http.server.copy(??) +http.server.datetime(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(??) +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.PathLike(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exr(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_webp(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.warnings(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.create_dynamic(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.ResourceLoader(??) +importlib.abc.ResourceReader(??) +importlib.abc.SourceLoader(??) +importlib.abc.Traversable(??) +importlib.abc.TraversableResources(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.abc.warnings(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.NamespaceLoader(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.metadata.Deprecated(??) +importlib.metadata.DeprecatedList(??) +importlib.metadata.DeprecatedTuple(??) +importlib.metadata.Distribution(??) +importlib.metadata.DistributionFinder(??) +importlib.metadata.EntryPoint(??) +importlib.metadata.EntryPoints(??) +importlib.metadata.FastPath(??) +importlib.metadata.FileHash(??) +importlib.metadata.FreezableDefaultDict(??) +importlib.metadata.List(??) +importlib.metadata.Lookup(??) +importlib.metadata.Mapping(??) +importlib.metadata.MetaPathFinder(??) +importlib.metadata.MetadataPathFinder(??) +importlib.metadata.Optional(??) +importlib.metadata.PackageMetadata(??) +importlib.metadata.PackageNotFoundError(??) +importlib.metadata.PackagePath(??) +importlib.metadata.Pair(??) +importlib.metadata.PathDistribution(??) +importlib.metadata.Prepared(??) +importlib.metadata.Sectioned(??) +importlib.metadata.SelectableGroups(??) +importlib.metadata.SimplePath(??) +importlib.metadata.Union(??) +importlib.metadata.abc(??) +importlib.metadata.always_iterable(??) +importlib.metadata.collections(??) +importlib.metadata.csv(??) +importlib.metadata.distribution(??) +importlib.metadata.distributions(??) +importlib.metadata.email(??) +importlib.metadata.entry_points(??) +importlib.metadata.files(??) +importlib.metadata.functools(??) +importlib.metadata.import_module(??) +importlib.metadata.itertools(??) +importlib.metadata.metadata(??) +importlib.metadata.method_cache(??) +importlib.metadata.operator(??) +importlib.metadata.os(??) +importlib.metadata.packages_distributions(??) +importlib.metadata.pass_none(??) +importlib.metadata.pathlib(??) +importlib.metadata.posixpath(??) +importlib.metadata.re(??) +importlib.metadata.requires(??) +importlib.metadata.starmap(??) +importlib.metadata.suppress(??) +importlib.metadata.sys(??) +importlib.metadata.textwrap(??) +importlib.metadata.unique_everseen(??) +importlib.metadata.version(??) +importlib.metadata.warnings(??) +importlib.metadata.zipfile(??) +importlib.readers(??) +importlib.readers.FileReader(??) +importlib.readers.MultiplexedPath(??) +importlib.readers.NamespaceReader(??) +importlib.readers.ZipReader(??) +importlib.reload(??) +importlib.resources(??) +importlib.resources.Package(??) +importlib.resources.Resource(??) +importlib.resources.ResourceReader(??) +importlib.resources.abc(??) +importlib.resources.abc.Any(??) +importlib.resources.abc.BinaryIO(??) +importlib.resources.abc.Iterable(??) +importlib.resources.abc.Iterator(??) +importlib.resources.abc.NoReturn(??) +importlib.resources.abc.Optional(??) +importlib.resources.abc.Protocol(??) +importlib.resources.abc.ResourceReader(??) +importlib.resources.abc.StrPath(??) +importlib.resources.abc.Text(??) +importlib.resources.abc.Traversable(??) +importlib.resources.abc.TraversableResources(??) +importlib.resources.abc.Union(??) +importlib.resources.abc.abc(??) +importlib.resources.abc.io(??) +importlib.resources.abc.os(??) +importlib.resources.abc.runtime_checkable(??) +importlib.resources.as_file(??) +importlib.resources.contents(??) +importlib.resources.files(??) +importlib.resources.is_resource(??) +importlib.resources.open_binary(??) +importlib.resources.open_text(??) +importlib.resources.path(??) +importlib.resources.read_binary(??) +importlib.resources.read_text(??) +importlib.resources.readers(??) +importlib.resources.readers.FileReader(??) +importlib.resources.readers.MultiplexedPath(??) +importlib.resources.readers.NamespaceReader(??) +importlib.resources.readers.ZipReader(??) +importlib.resources.readers.abc(??) +importlib.resources.readers.collections(??) +importlib.resources.readers.operator(??) +importlib.resources.readers.pathlib(??) +importlib.resources.readers.remove_duplicates(??) +importlib.resources.readers.unique_everseen(??) +importlib.resources.readers.zipfile(??) +importlib.resources.simple.BinaryIO(??) +importlib.resources.simple.List(??) +importlib.resources.simple.ResourceContainer(??) +importlib.resources.simple.ResourceHandle(??) +importlib.resources.simple.SimpleReader(??) +importlib.resources.simple.Traversable(??) +importlib.resources.simple.TraversableReader(??) +importlib.resources.simple.TraversableResources(??) +importlib.resources.simple.abc(??) +importlib.resources.simple.io(??) +importlib.resources.simple.itertools(??) +importlib.simple.ResourceContainer(??) +importlib.simple.ResourceHandle(??) +importlib.simple.SimpleReader(??) +importlib.simple.TraversableReader(??) +importlib.sys(??) +importlib.util(??) +importlib.util.LazyLoader(??) +importlib.util.Loader(??) +importlib.util.MAGIC_NUMBER +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.module_from_spec(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.source_hash(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.types(??) +importlib.util.warnings(??) +importlib.warnings(??) +input(??) +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CORO_CLOSED +inspect.CORO_CREATED +inspect.CORO_RUNNING +inspect.CORO_SUSPENDED +inspect.CO_ASYNC_GENERATOR +inspect.CO_COROUTINE +inspect.CO_GENERATOR +inspect.CO_ITERABLE_COROUTINE +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClassFoundException(??) +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FrameInfo(??) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(??) +inspect.abc(??) +inspect.ast(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.collections(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.enum(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.get_annotations(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getcoroutinelocals(??) +inspect.getcoroutinestate(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmembers_static(??) +inspect.getmodule(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isasyncgen(??) +inspect.isasyncgenfunction(??) +inspect.isawaitable(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.iscoroutine(??) +inspect.iscoroutinefunction(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.iskeyword(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismethodwrapper(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.linecache(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.walktree(??) +int([x]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO(??) +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +io.open_code(??) +io.text_encoding(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(??) +issubclass(??) +iter(iterable) -> iterator +itertools.accumulate(??) +itertools.chain(*iterables) --> chain object +itertools.combinations(??) +itertools.combinations_with_replacement(??) +itertools.compress(??) +itertools.count(??) +itertools.cycle(??) +itertools.dropwhile(??) +itertools.filterfalse(??) +itertools.groupby(??) +itertools.islice(iterable, stop) --> islice object +itertools.pairwise(??) +itertools.permutations(??) +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(??) +itertools.takewhile(??) +itertools.tee(??) +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecodeError(??) +json.JSONDecoder(??) +json.JSONEncoder(??) +json.codecs(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS(??) +json.decoder.JSONArray(??) +json.decoder.JSONDecodeError(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.detect_encoding(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(string) -> string +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.py_encode_basestring(??) +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool.Path(??) +json.tool.argparse(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.issoftkeyword(??) +keyword.kwlist(??) +keyword.softkwlist(??) +len(??) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.functools(??) +linecache.getline(??) +linecache.getlines(??) +linecache.lazycache(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list(??) +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.currency(??) +locale.delocalize(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getencoding(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.localize(??) +locale.nl_langinfo(??) +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(??) +locale.sys(??) +locale.windows_locale(??) +locals(??) +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.GenericAlias(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.collections(??) +logging.config(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingMixin(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.errno(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLevelNamesMapping(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.copy(??) +logging.handlers.io(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.re(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +lzma.os(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.GenericAlias(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.lineno_sort_key(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +mailcap.warnings(??) +map(func, *iterables) --> map object +marshal.dump(??) +marshal.dumps(??) +marshal.load(??) +marshal.loads(??) +marshal.version +max(iterable, *[, default=obj, key=func]) -> value +memoryview(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable, *[, default=obj, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.dis(??) +modulefinder.importlib(??) +modulefinder.io(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.sys(??) +modulefinder.test(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.reduction(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list(??) +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.SIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_signed(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.resource_tracker(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.warnings(??) +multiprocessing.forkserver.write_signed(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.defaultdict(default_factory=None, /, [...]) --> dict with default factory +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BasePoolProxy(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.HAS_SHMEM(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessError(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.SharedMemoryManager(??) +multiprocessing.managers.SharedMemoryServer(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.get_spawning_popen(??) +multiprocessing.managers.getpid(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.os(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.shared_memory(??) +multiprocessing.managers.signal(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.time(??) +multiprocessing.managers.types(??) +multiprocessing.managers.util(??) +multiprocessing.parent_process(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.INIT +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.types(??) +multiprocessing.pool.util(??) +multiprocessing.pool.wait(??) +multiprocessing.pool.warnings(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.set_spawning_popen(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.set_spawning_popen(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.os(??) +multiprocessing.process.parent_process(??) +multiprocessing.process.signal(??) +multiprocessing.process.sys(??) +multiprocessing.process.threading(??) +multiprocessing.queues(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.types(??) +multiprocessing.queues.weakref(??) +multiprocessing.reducer(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ABCMeta(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.AbstractReducer(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.resource_tracker(??) +multiprocessing.resource_tracker.ResourceTracker(??) +multiprocessing.resource_tracker.ensure_running(??) +multiprocessing.resource_tracker.getfd(??) +multiprocessing.resource_tracker.main(??) +multiprocessing.resource_tracker.os(??) +multiprocessing.resource_tracker.register(??) +multiprocessing.resource_tracker.signal(??) +multiprocessing.resource_tracker.spawn(??) +multiprocessing.resource_tracker.sys(??) +multiprocessing.resource_tracker.threading(??) +multiprocessing.resource_tracker.unregister(??) +multiprocessing.resource_tracker.util(??) +multiprocessing.resource_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.shared_memory(??) +multiprocessing.shared_memory.ShareableList(??) +multiprocessing.shared_memory.SharedMemory(??) +multiprocessing.shared_memory.errno(??) +multiprocessing.shared_memory.mmap(??) +multiprocessing.shared_memory.os(??) +multiprocessing.shared_memory.partial(func, *args, **keywords) - new function with partial application +multiprocessing.shared_memory.secrets(??) +multiprocessing.shared_memory.struct(??) +multiprocessing.shared_memory.types(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.reduction(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.reduction(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.time(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.abstract_sockets_supported(??) +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.close_fds(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_abstract_socket_namespace(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.sys(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(??) +open(??) +operator.abs(??) +operator.add(??) +operator.and_(??) +operator.attrgetter(attr, ...) --> attrgetter object +operator.call(??) +operator.concat(??) +operator.contains(??) +operator.countOf(??) +operator.delitem(??) +operator.eq(??) +operator.floordiv(??) +operator.ge(??) +operator.getitem(??) +operator.gt(??) +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imatmul(??) +operator.imod(??) +operator.imul(??) +operator.index(??) +operator.indexOf(??) +operator.inv(??) +operator.invert(??) +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(??) +operator.is_not(??) +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(??) +operator.length_hint(??) +operator.lshift(??) +operator.lt(??) +operator.matmul(??) +operator.methodcaller(name, ...) --> methodcaller object +operator.mod(??) +operator.mul(??) +operator.ne(??) +operator.neg(??) +operator.not_(??) +operator.or_(??) +operator.pos(??) +operator.pow(??) +operator.rshift(??) +operator.setitem(??) +operator.sub(??) +operator.truediv(??) +operator.truth(??) +operator.xor(??) +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(??) +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_KILLED +os.CLD_STOPPED +os.CLD_TRAPPED +os.DirEntry(??) +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.GenericAlias(??) +os.Mapping(??) +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CLOEXEC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EVTONLY +os.O_EXCL +os.O_EXLOCK +os.O_FSYNC +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NOFOLLOW_ANY +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYMLINK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.POSIX_SPAWN_CLOSE +os.POSIX_SPAWN_DUP2 +os.POSIX_SPAWN_OPEN +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.PathLike(??) +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_DATA +os.SEEK_END +os.SEEK_HOLE +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(??) +os.WEXITED +os.WEXITSTATUS(??) +os.WIFCONTINUED(??) +os.WIFEXITED(??) +os.WIFSIGNALED(??) +os.WIFSTOPPED(??) +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(??) +os.WTERMSIG(??) +os.WUNTRACED +os.W_OK +os.X_OK +os.abc(??) +os.abort(??) +os.access(??) +os.altsep(??) +os.chdir(??) +os.chflags(??) +os.chmod(??) +os.chown(??) +os.chroot(??) +os.close(??) +os.closerange(??) +os.confstr(??) +os.confstr_names(??) +os.cpu_count(??) +os.ctermid(??) +os.curdir +os.defpath +os.device_encoding(??) +os.devnull +os.dup(??) +os.dup2(??) +os.environ(??) +os.environb(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(??) +os.execve(??) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(??) +os.fchmod(??) +os.fchown(??) +os.fdopen(??) +os.fork(??) +os.forkpty(??) +os.fpathconf(??) +os.fsdecode(??) +os.fsencode(??) +os.fspath(??) +os.fstat(??) +os.fstatvfs(??) +os.fsync(??) +os.ftruncate(??) +os.fwalk(??) +os.get_blocking(??) +os.get_exec_path(??) +os.get_inheritable(??) +os.get_terminal_size(??) +os.getcwd(??) +os.getcwdb(??) +os.getegid(??) +os.getenv(??) +os.getenvb(??) +os.geteuid(??) +os.getgid(??) +os.getgrouplist(??) +os.getgroups(??) +os.getloadavg(??) +os.getlogin(??) +os.getpgid(??) +os.getpgrp(??) +os.getpid(??) +os.getppid(??) +os.getpriority(??) +os.getsid(??) +os.getuid(??) +os.initgroups(??) +os.isatty(??) +os.kill(??) +os.killpg(??) +os.lchflags(??) +os.lchmod(??) +os.lchown(??) +os.linesep +os.link(??) +os.listdir(??) +os.lockf(??) +os.login_tty(??) +os.lseek(??) +os.lstat(??) +os.major(??) +os.makedev(??) +os.makedirs(name [, mode=0o777][, exist_ok=False]) +os.minor(??) +os.mkdir(??) +os.mkfifo(??) +os.mknod(??) +os.name +os.nice(??) +os.open(??) +os.openpty(??) +os.pardir +os.path(??) +os.pathconf(??) +os.pathconf_names(??) +os.pathsep +os.pipe(??) +os.popen(??) +os.posix_spawn(??) +os.posix_spawnp(??) +os.pread(??) +os.preadv(??) +os.putenv(??) +os.pwrite(??) +os.pwritev(??) +os.read(??) +os.readlink(??) +os.readv(??) +os.register_at_fork(??) +os.remove(??) +os.removedirs(name) +os.rename(??) +os.renames(old, new) +os.replace(??) +os.rmdir(??) +os.scandir(??) +os.sched_get_priority_max(??) +os.sched_get_priority_min(??) +os.sched_yield(??) +os.sendfile(??) +os.sep +os.set_blocking(??) +os.set_inheritable(??) +os.setegid(??) +os.seteuid(??) +os.setgid(??) +os.setgroups(??) +os.setpgid(??) +os.setpgrp(??) +os.setpriority(??) +os.setregid(??) +os.setreuid(??) +os.setsid(??) +os.setuid(??) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_result(??) +os.statvfs(??) +os.statvfs_result(??) +os.strerror(??) +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(??) +os.sync(??) +os.sys(??) +os.sysconf(??) +os.sysconf_names(??) +os.system(??) +os.tcgetpgrp(??) +os.tcsetpgrp(??) +os.terminal_size(??) +os.times(??) +os.times_result(??) +os.truncate(??) +os.ttyname(??) +os.umask(??) +os.uname(??) +os.uname_result(??) +os.unlink(??) +os.unsetenv(??) +os.urandom(??) +os.utime(??) +os.wait(??) +os.wait3(??) +os.wait4(??) +os.waitpid(??) +os.waitstatus_to_exitcode(??) +os.walk(??) +os.write(??) +os.writev(??) +pathlib.EBADF +pathlib.ELOOP +pathlib.ENOENT +pathlib.ENOTDIR +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pathlib.warnings(??) +pdb.ModuleTarget(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.ScriptTarget(??) +pdb.TESTCMD +pdb.Union(??) +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.functools(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.io(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.tokenize(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.BYTEARRAY8 +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NEXT_BUFFER +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleBuffer(??) +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.READONLY_BUFFER +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(format, v1, v2, ...) -> bytes +pickle.partial(func, *args, **keywords) - new function with partial application +pickle.re(??) +pickle.sys(??) +pickle.unpack(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytearray8(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybuffer(??) +pickletools.pybytearray(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytearray8(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pipes.warnings(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleInfo(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.namedtuple(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.resolve_name(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.architecture(??) +platform.collections(??) +platform.freedesktop_os_release(??) +platform.functools(??) +platform.itertools(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(??) +platform.version(??) +platform.win32_edition(??) +platform.win32_is_iot(??) +platform.win32_ver(??) +plistlib.BytesIO(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate(??) +plistlib.PlistFormat(??) +plistlib.UID(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.struct(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +poplib.sys(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_KILLED +posix.CLD_STOPPED +posix.CLD_TRAPPED +posix.DirEntry(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CLOEXEC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EVTONLY +posix.O_EXCL +posix.O_EXLOCK +posix.O_FSYNC +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NOFOLLOW_ANY +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYMLINK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.POSIX_SPAWN_CLOSE +posix.POSIX_SPAWN_DUP2 +posix.POSIX_SPAWN_OPEN +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.SEEK_DATA +posix.SEEK_HOLE +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(??) +posix.WEXITED +posix.WEXITSTATUS(??) +posix.WIFCONTINUED(??) +posix.WIFEXITED(??) +posix.WIFSIGNALED(??) +posix.WIFSTOPPED(??) +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(??) +posix.WTERMSIG(??) +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort(??) +posix.access(??) +posix.chdir(??) +posix.chflags(??) +posix.chmod(??) +posix.chown(??) +posix.chroot(??) +posix.close(??) +posix.closerange(??) +posix.confstr(??) +posix.confstr_names(??) +posix.cpu_count(??) +posix.ctermid(??) +posix.device_encoding(??) +posix.dup(??) +posix.dup2(??) +posix.environ(??) +posix.error(??) +posix.execv(??) +posix.execve(??) +posix.fchdir(??) +posix.fchmod(??) +posix.fchown(??) +posix.fork(??) +posix.forkpty(??) +posix.fpathconf(??) +posix.fspath(??) +posix.fstat(??) +posix.fstatvfs(??) +posix.fsync(??) +posix.ftruncate(??) +posix.get_blocking(??) +posix.get_inheritable(??) +posix.get_terminal_size(??) +posix.getcwd(??) +posix.getcwdb(??) +posix.getegid(??) +posix.geteuid(??) +posix.getgid(??) +posix.getgrouplist(??) +posix.getgroups(??) +posix.getloadavg(??) +posix.getlogin(??) +posix.getpgid(??) +posix.getpgrp(??) +posix.getpid(??) +posix.getppid(??) +posix.getpriority(??) +posix.getsid(??) +posix.getuid(??) +posix.initgroups(??) +posix.isatty(??) +posix.kill(??) +posix.killpg(??) +posix.lchflags(??) +posix.lchmod(??) +posix.lchown(??) +posix.link(??) +posix.listdir(??) +posix.lockf(??) +posix.login_tty(??) +posix.lseek(??) +posix.lstat(??) +posix.major(??) +posix.makedev(??) +posix.minor(??) +posix.mkdir(??) +posix.mkfifo(??) +posix.mknod(??) +posix.nice(??) +posix.open(??) +posix.openpty(??) +posix.pathconf(??) +posix.pathconf_names(??) +posix.pipe(??) +posix.posix_spawn(??) +posix.posix_spawnp(??) +posix.pread(??) +posix.preadv(??) +posix.putenv(??) +posix.pwrite(??) +posix.pwritev(??) +posix.read(??) +posix.readlink(??) +posix.readv(??) +posix.register_at_fork(??) +posix.remove(??) +posix.rename(??) +posix.replace(??) +posix.rmdir(??) +posix.scandir(??) +posix.sched_get_priority_max(??) +posix.sched_get_priority_min(??) +posix.sched_yield(??) +posix.sendfile(??) +posix.set_blocking(??) +posix.set_inheritable(??) +posix.setegid(??) +posix.seteuid(??) +posix.setgid(??) +posix.setgroups(??) +posix.setpgid(??) +posix.setpgrp(??) +posix.setpriority(??) +posix.setregid(??) +posix.setreuid(??) +posix.setsid(??) +posix.setuid(??) +posix.stat(??) +posix.stat_result(??) +posix.statvfs(??) +posix.statvfs_result(??) +posix.strerror(??) +posix.symlink(??) +posix.sync(??) +posix.sysconf(??) +posix.sysconf_names(??) +posix.system(??) +posix.tcgetpgrp(??) +posix.tcsetpgrp(??) +posix.terminal_size(??) +posix.times(??) +posix.times_result(??) +posix.truncate(??) +posix.ttyname(??) +posix.umask(??) +posix.uname(??) +posix.uname_result(??) +posix.unlink(??) +posix.unsetenv(??) +posix.urandom(??) +posix.utime(??) +posix.wait(??) +posix.wait3(??) +posix.wait4(??) +posix.waitpid(??) +posix.waitstatus_to_exitcode(??) +posix.write(??) +posix.writev(??) +pow(??) +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pp(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(??) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(??) +pstats.Dict(??) +pstats.FunctionProfile(ncalls: int, tottime: float, percall_tottime: float, cumtime: float, percall_cumtime: float, file_name: str, line_number: int) +pstats.SortKey(??) +pstats.Stats(??) +pstats.StatsProfile(??) +pstats.StrEnum(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.dataclass(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.close(??) +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(??) +pty.setraw(??) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.sys(??) +pty.tcgetattr(??) +pty.tcsetattr(??) +pty.tty(??) +pty.waitpid(??) +pwd.getpwall(??) +pwd.getpwnam(??) +pwd.getpwuid(??) +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.PycInvalidationMode(??) +py_compile.compile(??) +py_compile.enum(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.Function(??) +pyclbr.ast(??) +pyclbr.importlib(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.sort_attributes(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.sysconfig(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.types(??) +pydoc.urllib(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.SimpleQueue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(??) +queue.threading(??) +queue.time(??) +queue.types(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.choices(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randbytes(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A(??) +re.ASCII(??) +re.DEBUG(??) +re.DOTALL(??) +re.I(??) +re.IGNORECASE(??) +re.L(??) +re.LOCALE(??) +re.M(??) +re.MULTILINE(??) +re.Match(??) +re.NOFLAG(??) +re.Pattern(??) +re.RegexFlag(??) +re.S(??) +re.Scanner(??) +re.T(??) +re.TEMPLATE(??) +re.U(??) +re.UNICODE(??) +re.VERBOSE(??) +re.X(??) +re.compile(??) +re.copyreg(??) +re.enum(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sub(??) +re.subn(??) +re.template(??) +repr(??) +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(??) +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.inspect(??) +rlcompleter.keyword(??) +rlcompleter.re(??) +rlcompleter.readline(??) +round(??) +runpy.ModuleType(??) +runpy.importlib(??) +runpy.io(??) +runpy.os(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +sched.Event(time, priority, sequence, action, argument, kwargs) +sched.count(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +secrets.DEFAULT_ENTROPY +secrets.SystemRandom(??) +secrets.base64(??) +secrets.binascii(??) +secrets.choice(??) +secrets.compare_digest(??) +secrets.randbelow(??) +secrets.randbits(??) +secrets.token_bytes(??) +secrets.token_hex(??) +secrets.token_urlsafe(??) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(??) +shelve.BsdDbShelf(??) +shelve.BytesIO(??) +shelve.DEFAULT_PROTOCOL +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.join(??) +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.COPY_BUFSIZE +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.nt(??) +shutil.os(??) +shutil.posix(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.Handlers(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT(??) +signal.SIGALRM(??) +signal.SIGBUS(??) +signal.SIGCHLD(??) +signal.SIGCONT(??) +signal.SIGEMT(??) +signal.SIGFPE(??) +signal.SIGHUP(??) +signal.SIGILL(??) +signal.SIGINFO(??) +signal.SIGINT(??) +signal.SIGIO(??) +signal.SIGIOT(??) +signal.SIGKILL(??) +signal.SIGPIPE(??) +signal.SIGPROF(??) +signal.SIGQUIT(??) +signal.SIGSEGV(??) +signal.SIGSTOP(??) +signal.SIGSYS(??) +signal.SIGTERM(??) +signal.SIGTRAP(??) +signal.SIGTSTP(??) +signal.SIGTTIN(??) +signal.SIGTTOU(??) +signal.SIGURG(??) +signal.SIGUSR1(??) +signal.SIGUSR2(??) +signal.SIGVTALRM(??) +signal.SIGWINCH(??) +signal.SIGXCPU(??) +signal.SIGXFSZ(??) +signal.SIG_BLOCK(??) +signal.SIG_DFL(??) +signal.SIG_IGN(??) +signal.SIG_SETMASK(??) +signal.SIG_UNBLOCK(??) +signal.Sigmasks(??) +signal.Signals(??) +signal.alarm(??) +signal.default_int_handler(??) +signal.getitimer(??) +signal.getsignal(??) +signal.pause(??) +signal.pthread_kill(??) +signal.pthread_sigmask(??) +signal.raise_signal(??) +signal.set_wakeup_fd(fd, *, warn_on_full_buffer=True) -> fd +signal.setitimer(??) +signal.siginterrupt(??) +signal.signal(??) +signal.sigpending(??) +signal.sigwait(??) +signal.strsignal(??) +signal.valid_signals(??) +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.io(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPNotSupportedError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.datetime(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.sys(??) +sndhdr.SndHeaders(filetype, framerate, nchannels, nframes, sampwidth) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.namedtuple(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.warnings(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG(??) +socket.AI_ALL(??) +socket.AI_CANONNAME(??) +socket.AI_DEFAULT(??) +socket.AI_MASK(??) +socket.AI_NUMERICHOST(??) +socket.AI_NUMERICSERV(??) +socket.AI_PASSIVE(??) +socket.AI_V4MAPPED(??) +socket.AI_V4MAPPED_CFG(??) +socket.AddressFamily(??) +socket.AddressInfo(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_SCTP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_DONTFRAG +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PATHMTU +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPATHMTU +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_USE_MIN_MTU +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RECVTOS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.IntFlag(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC(??) +socket.MSG_DONTROUTE(??) +socket.MSG_DONTWAIT(??) +socket.MSG_EOF(??) +socket.MSG_EOR(??) +socket.MSG_NOSIGNAL(??) +socket.MSG_OOB(??) +socket.MSG_PEEK(??) +socket.MSG_TRUNC(??) +socket.MSG_WAITALL(??) +socket.MsgFlag(??) +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketKind(??) +socket.SocketType(??) +socket.TCP_CONNECTION_INFO +socket.TCP_FASTOPEN +socket.TCP_KEEPALIVE +socket.TCP_KEEPCNT +socket.TCP_KEEPINTVL +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_NOTSENT_LOWAT +socket.array(??) +socket.close(integer) -> None +socket.create_connection(??) +socket.create_server(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_dualstack_ipv6(??) +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.recv_fds(sock, bufsize, maxfds[, flags]) -> (data, list of file +socket.selectors(??) +socket.send_fds(sock, buffers, fds[, flags[, address]]) -> integer +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.BufferedIOBase(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.os(??) +socketserver.selectors(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +socketserver.time(??) +sorted(??) +sqlite3.Binary(??) +sqlite3.Blob(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ABORT +sqlite3.SQLITE_ABORT_ROLLBACK +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_AUTH +sqlite3.SQLITE_AUTH_USER +sqlite3.SQLITE_BUSY +sqlite3.SQLITE_BUSY_RECOVERY +sqlite3.SQLITE_BUSY_SNAPSHOT +sqlite3.SQLITE_BUSY_TIMEOUT +sqlite3.SQLITE_CANTOPEN +sqlite3.SQLITE_CANTOPEN_CONVPATH +sqlite3.SQLITE_CANTOPEN_DIRTYWAL +sqlite3.SQLITE_CANTOPEN_FULLPATH +sqlite3.SQLITE_CANTOPEN_ISDIR +sqlite3.SQLITE_CANTOPEN_NOTEMPDIR +sqlite3.SQLITE_CANTOPEN_SYMLINK +sqlite3.SQLITE_CONSTRAINT +sqlite3.SQLITE_CONSTRAINT_CHECK +sqlite3.SQLITE_CONSTRAINT_COMMITHOOK +sqlite3.SQLITE_CONSTRAINT_FOREIGNKEY +sqlite3.SQLITE_CONSTRAINT_FUNCTION +sqlite3.SQLITE_CONSTRAINT_NOTNULL +sqlite3.SQLITE_CONSTRAINT_PINNED +sqlite3.SQLITE_CONSTRAINT_PRIMARYKEY +sqlite3.SQLITE_CONSTRAINT_ROWID +sqlite3.SQLITE_CONSTRAINT_TRIGGER +sqlite3.SQLITE_CONSTRAINT_UNIQUE +sqlite3.SQLITE_CONSTRAINT_VTAB +sqlite3.SQLITE_CORRUPT +sqlite3.SQLITE_CORRUPT_INDEX +sqlite3.SQLITE_CORRUPT_SEQUENCE +sqlite3.SQLITE_CORRUPT_VTAB +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_CREATE_VTABLE +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DONE +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_DROP_VTABLE +sqlite3.SQLITE_EMPTY +sqlite3.SQLITE_ERROR +sqlite3.SQLITE_ERROR_MISSING_COLLSEQ +sqlite3.SQLITE_ERROR_RETRY +sqlite3.SQLITE_ERROR_SNAPSHOT +sqlite3.SQLITE_FORMAT +sqlite3.SQLITE_FULL +sqlite3.SQLITE_FUNCTION +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_INTERNAL +sqlite3.SQLITE_INTERRUPT +sqlite3.SQLITE_IOERR +sqlite3.SQLITE_IOERR_ACCESS +sqlite3.SQLITE_IOERR_AUTH +sqlite3.SQLITE_IOERR_BEGIN_ATOMIC +sqlite3.SQLITE_IOERR_BLOCKED +sqlite3.SQLITE_IOERR_CHECKRESERVEDLOCK +sqlite3.SQLITE_IOERR_CLOSE +sqlite3.SQLITE_IOERR_COMMIT_ATOMIC +sqlite3.SQLITE_IOERR_CONVPATH +sqlite3.SQLITE_IOERR_CORRUPTFS +sqlite3.SQLITE_IOERR_DATA +sqlite3.SQLITE_IOERR_DELETE +sqlite3.SQLITE_IOERR_DELETE_NOENT +sqlite3.SQLITE_IOERR_DIR_CLOSE +sqlite3.SQLITE_IOERR_DIR_FSYNC +sqlite3.SQLITE_IOERR_FSTAT +sqlite3.SQLITE_IOERR_FSYNC +sqlite3.SQLITE_IOERR_GETTEMPPATH +sqlite3.SQLITE_IOERR_LOCK +sqlite3.SQLITE_IOERR_MMAP +sqlite3.SQLITE_IOERR_NOMEM +sqlite3.SQLITE_IOERR_RDLOCK +sqlite3.SQLITE_IOERR_READ +sqlite3.SQLITE_IOERR_ROLLBACK_ATOMIC +sqlite3.SQLITE_IOERR_SEEK +sqlite3.SQLITE_IOERR_SHMLOCK +sqlite3.SQLITE_IOERR_SHMMAP +sqlite3.SQLITE_IOERR_SHMOPEN +sqlite3.SQLITE_IOERR_SHMSIZE +sqlite3.SQLITE_IOERR_SHORT_READ +sqlite3.SQLITE_IOERR_TRUNCATE +sqlite3.SQLITE_IOERR_UNLOCK +sqlite3.SQLITE_IOERR_VNODE +sqlite3.SQLITE_IOERR_WRITE +sqlite3.SQLITE_LIMIT_ATTACHED +sqlite3.SQLITE_LIMIT_COLUMN +sqlite3.SQLITE_LIMIT_COMPOUND_SELECT +sqlite3.SQLITE_LIMIT_EXPR_DEPTH +sqlite3.SQLITE_LIMIT_FUNCTION_ARG +sqlite3.SQLITE_LIMIT_LENGTH +sqlite3.SQLITE_LIMIT_LIKE_PATTERN_LENGTH +sqlite3.SQLITE_LIMIT_SQL_LENGTH +sqlite3.SQLITE_LIMIT_TRIGGER_DEPTH +sqlite3.SQLITE_LIMIT_VARIABLE_NUMBER +sqlite3.SQLITE_LIMIT_VDBE_OP +sqlite3.SQLITE_LIMIT_WORKER_THREADS +sqlite3.SQLITE_LOCKED +sqlite3.SQLITE_LOCKED_SHAREDCACHE +sqlite3.SQLITE_LOCKED_VTAB +sqlite3.SQLITE_MISMATCH +sqlite3.SQLITE_MISUSE +sqlite3.SQLITE_NOLFS +sqlite3.SQLITE_NOMEM +sqlite3.SQLITE_NOTADB +sqlite3.SQLITE_NOTFOUND +sqlite3.SQLITE_NOTICE +sqlite3.SQLITE_NOTICE_RECOVER_ROLLBACK +sqlite3.SQLITE_NOTICE_RECOVER_WAL +sqlite3.SQLITE_OK +sqlite3.SQLITE_OK_LOAD_PERMANENTLY +sqlite3.SQLITE_OK_SYMLINK +sqlite3.SQLITE_PERM +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_PROTOCOL +sqlite3.SQLITE_RANGE +sqlite3.SQLITE_READ +sqlite3.SQLITE_READONLY +sqlite3.SQLITE_READONLY_CANTINIT +sqlite3.SQLITE_READONLY_CANTLOCK +sqlite3.SQLITE_READONLY_DBMOVED +sqlite3.SQLITE_READONLY_DIRECTORY +sqlite3.SQLITE_READONLY_RECOVERY +sqlite3.SQLITE_READONLY_ROLLBACK +sqlite3.SQLITE_RECURSIVE +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_ROW +sqlite3.SQLITE_SAVEPOINT +sqlite3.SQLITE_SCHEMA +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TOOBIG +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.SQLITE_WARNING +sqlite3.SQLITE_WARNING_AUTOINDEX +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(??) +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.collections(??) +sqlite3.complete_statement(??) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Blob(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ABORT +sqlite3.dbapi2.SQLITE_ABORT_ROLLBACK +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_AUTH +sqlite3.dbapi2.SQLITE_AUTH_USER +sqlite3.dbapi2.SQLITE_BUSY +sqlite3.dbapi2.SQLITE_BUSY_RECOVERY +sqlite3.dbapi2.SQLITE_BUSY_SNAPSHOT +sqlite3.dbapi2.SQLITE_BUSY_TIMEOUT +sqlite3.dbapi2.SQLITE_CANTOPEN +sqlite3.dbapi2.SQLITE_CANTOPEN_CONVPATH +sqlite3.dbapi2.SQLITE_CANTOPEN_DIRTYWAL +sqlite3.dbapi2.SQLITE_CANTOPEN_FULLPATH +sqlite3.dbapi2.SQLITE_CANTOPEN_ISDIR +sqlite3.dbapi2.SQLITE_CANTOPEN_NOTEMPDIR +sqlite3.dbapi2.SQLITE_CANTOPEN_SYMLINK +sqlite3.dbapi2.SQLITE_CONSTRAINT +sqlite3.dbapi2.SQLITE_CONSTRAINT_CHECK +sqlite3.dbapi2.SQLITE_CONSTRAINT_COMMITHOOK +sqlite3.dbapi2.SQLITE_CONSTRAINT_FOREIGNKEY +sqlite3.dbapi2.SQLITE_CONSTRAINT_FUNCTION +sqlite3.dbapi2.SQLITE_CONSTRAINT_NOTNULL +sqlite3.dbapi2.SQLITE_CONSTRAINT_PINNED +sqlite3.dbapi2.SQLITE_CONSTRAINT_PRIMARYKEY +sqlite3.dbapi2.SQLITE_CONSTRAINT_ROWID +sqlite3.dbapi2.SQLITE_CONSTRAINT_TRIGGER +sqlite3.dbapi2.SQLITE_CONSTRAINT_UNIQUE +sqlite3.dbapi2.SQLITE_CONSTRAINT_VTAB +sqlite3.dbapi2.SQLITE_CORRUPT +sqlite3.dbapi2.SQLITE_CORRUPT_INDEX +sqlite3.dbapi2.SQLITE_CORRUPT_SEQUENCE +sqlite3.dbapi2.SQLITE_CORRUPT_VTAB +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_CREATE_VTABLE +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DONE +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_DROP_VTABLE +sqlite3.dbapi2.SQLITE_EMPTY +sqlite3.dbapi2.SQLITE_ERROR +sqlite3.dbapi2.SQLITE_ERROR_MISSING_COLLSEQ +sqlite3.dbapi2.SQLITE_ERROR_RETRY +sqlite3.dbapi2.SQLITE_ERROR_SNAPSHOT +sqlite3.dbapi2.SQLITE_FORMAT +sqlite3.dbapi2.SQLITE_FULL +sqlite3.dbapi2.SQLITE_FUNCTION +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_INTERNAL +sqlite3.dbapi2.SQLITE_INTERRUPT +sqlite3.dbapi2.SQLITE_IOERR +sqlite3.dbapi2.SQLITE_IOERR_ACCESS +sqlite3.dbapi2.SQLITE_IOERR_AUTH +sqlite3.dbapi2.SQLITE_IOERR_BEGIN_ATOMIC +sqlite3.dbapi2.SQLITE_IOERR_BLOCKED +sqlite3.dbapi2.SQLITE_IOERR_CHECKRESERVEDLOCK +sqlite3.dbapi2.SQLITE_IOERR_CLOSE +sqlite3.dbapi2.SQLITE_IOERR_COMMIT_ATOMIC +sqlite3.dbapi2.SQLITE_IOERR_CONVPATH +sqlite3.dbapi2.SQLITE_IOERR_CORRUPTFS +sqlite3.dbapi2.SQLITE_IOERR_DATA +sqlite3.dbapi2.SQLITE_IOERR_DELETE +sqlite3.dbapi2.SQLITE_IOERR_DELETE_NOENT +sqlite3.dbapi2.SQLITE_IOERR_DIR_CLOSE +sqlite3.dbapi2.SQLITE_IOERR_DIR_FSYNC +sqlite3.dbapi2.SQLITE_IOERR_FSTAT +sqlite3.dbapi2.SQLITE_IOERR_FSYNC +sqlite3.dbapi2.SQLITE_IOERR_GETTEMPPATH +sqlite3.dbapi2.SQLITE_IOERR_LOCK +sqlite3.dbapi2.SQLITE_IOERR_MMAP +sqlite3.dbapi2.SQLITE_IOERR_NOMEM +sqlite3.dbapi2.SQLITE_IOERR_RDLOCK +sqlite3.dbapi2.SQLITE_IOERR_READ +sqlite3.dbapi2.SQLITE_IOERR_ROLLBACK_ATOMIC +sqlite3.dbapi2.SQLITE_IOERR_SEEK +sqlite3.dbapi2.SQLITE_IOERR_SHMLOCK +sqlite3.dbapi2.SQLITE_IOERR_SHMMAP +sqlite3.dbapi2.SQLITE_IOERR_SHMOPEN +sqlite3.dbapi2.SQLITE_IOERR_SHMSIZE +sqlite3.dbapi2.SQLITE_IOERR_SHORT_READ +sqlite3.dbapi2.SQLITE_IOERR_TRUNCATE +sqlite3.dbapi2.SQLITE_IOERR_UNLOCK +sqlite3.dbapi2.SQLITE_IOERR_VNODE +sqlite3.dbapi2.SQLITE_IOERR_WRITE +sqlite3.dbapi2.SQLITE_LIMIT_ATTACHED +sqlite3.dbapi2.SQLITE_LIMIT_COLUMN +sqlite3.dbapi2.SQLITE_LIMIT_COMPOUND_SELECT +sqlite3.dbapi2.SQLITE_LIMIT_EXPR_DEPTH +sqlite3.dbapi2.SQLITE_LIMIT_FUNCTION_ARG +sqlite3.dbapi2.SQLITE_LIMIT_LENGTH +sqlite3.dbapi2.SQLITE_LIMIT_LIKE_PATTERN_LENGTH +sqlite3.dbapi2.SQLITE_LIMIT_SQL_LENGTH +sqlite3.dbapi2.SQLITE_LIMIT_TRIGGER_DEPTH +sqlite3.dbapi2.SQLITE_LIMIT_VARIABLE_NUMBER +sqlite3.dbapi2.SQLITE_LIMIT_VDBE_OP +sqlite3.dbapi2.SQLITE_LIMIT_WORKER_THREADS +sqlite3.dbapi2.SQLITE_LOCKED +sqlite3.dbapi2.SQLITE_LOCKED_SHAREDCACHE +sqlite3.dbapi2.SQLITE_LOCKED_VTAB +sqlite3.dbapi2.SQLITE_MISMATCH +sqlite3.dbapi2.SQLITE_MISUSE +sqlite3.dbapi2.SQLITE_NOLFS +sqlite3.dbapi2.SQLITE_NOMEM +sqlite3.dbapi2.SQLITE_NOTADB +sqlite3.dbapi2.SQLITE_NOTFOUND +sqlite3.dbapi2.SQLITE_NOTICE +sqlite3.dbapi2.SQLITE_NOTICE_RECOVER_ROLLBACK +sqlite3.dbapi2.SQLITE_NOTICE_RECOVER_WAL +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_OK_LOAD_PERMANENTLY +sqlite3.dbapi2.SQLITE_OK_SYMLINK +sqlite3.dbapi2.SQLITE_PERM +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_PROTOCOL +sqlite3.dbapi2.SQLITE_RANGE +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_READONLY +sqlite3.dbapi2.SQLITE_READONLY_CANTINIT +sqlite3.dbapi2.SQLITE_READONLY_CANTLOCK +sqlite3.dbapi2.SQLITE_READONLY_DBMOVED +sqlite3.dbapi2.SQLITE_READONLY_DIRECTORY +sqlite3.dbapi2.SQLITE_READONLY_RECOVERY +sqlite3.dbapi2.SQLITE_READONLY_ROLLBACK +sqlite3.dbapi2.SQLITE_RECURSIVE +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_ROW +sqlite3.dbapi2.SQLITE_SAVEPOINT +sqlite3.dbapi2.SQLITE_SCHEMA +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TOOBIG +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.SQLITE_WARNING +sqlite3.dbapi2.SQLITE_WARNING_AUTOINDEX +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(??) +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.collections(??) +sqlite3.dbapi2.complete_statement(??) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(??) +sqlite3.dbapi2.enable_shared_cache(??) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(??) +sqlite3.dbapi2.register_converter(??) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.enable_callback_tracebacks(??) +sqlite3.enable_shared_cache(??) +sqlite3.paramstyle +sqlite3.register_adapter(??) +sqlite3.register_converter(??) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE(??) +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE(??) +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY(??) +ssl.ALERT_DESCRIPTION_DECODE_ERROR(??) +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE(??) +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR(??) +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE(??) +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER(??) +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY(??) +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR(??) +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION(??) +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION(??) +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW(??) +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_CA(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY(??) +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION(??) +ssl.ALERT_DESCRIPTION_USER_CANCELLED(??) +ssl.AlertDescription(??) +ssl.CERT_NONE(??) +ssl.CERT_OPTIONAL(??) +ssl.CERT_REQUIRED(??) +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ALPN(??) +ssl.HAS_ECDH(??) +ssl.HAS_NEVER_CHECK_COMMON_NAME(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.HAS_SSLv2(??) +ssl.HAS_SSLv3(??) +ssl.HAS_TLSv1(??) +ssl.HAS_TLSv1_1(??) +ssl.HAS_TLSv1_2(??) +ssl.HAS_TLSv1_3(??) +ssl.MemoryBIO(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL(??) +ssl.OP_CIPHER_SERVER_PREFERENCE(??) +ssl.OP_ENABLE_MIDDLEBOX_COMPAT(??) +ssl.OP_NO_COMPRESSION(??) +ssl.OP_NO_RENEGOTIATION(??) +ssl.OP_NO_SSLv2(??) +ssl.OP_NO_SSLv3(??) +ssl.OP_NO_TICKET(??) +ssl.OP_NO_TLSv1(??) +ssl.OP_NO_TLSv1_1(??) +ssl.OP_NO_TLSv1_2(??) +ssl.OP_NO_TLSv1_3(??) +ssl.OP_SINGLE_DH_USE(??) +ssl.OP_SINGLE_ECDH_USE(??) +ssl.Options(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv23(??) +ssl.PROTOCOL_TLS(??) +ssl.PROTOCOL_TLS_CLIENT(??) +ssl.PROTOCOL_TLS_SERVER(??) +ssl.PROTOCOL_TLSv1(??) +ssl.PROTOCOL_TLSv1_1(??) +ssl.PROTOCOL_TLSv1_2(??) +ssl.Purpose(??) +ssl.RAND_add(??) +ssl.RAND_bytes(??) +ssl.RAND_pseudo_bytes(??) +ssl.RAND_status(??) +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLCertVerificationError(??) +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLErrorNumber(??) +ssl.SSLObject(??) +ssl.SSLSession(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF(??) +ssl.SSL_ERROR_INVALID_ERROR_CODE(??) +ssl.SSL_ERROR_SSL(??) +ssl.SSL_ERROR_SYSCALL(??) +ssl.SSL_ERROR_WANT_CONNECT(??) +ssl.SSL_ERROR_WANT_READ(??) +ssl.SSL_ERROR_WANT_WRITE(??) +ssl.SSL_ERROR_WANT_X509_LOOKUP(??) +ssl.SSL_ERROR_ZERO_RETURN(??) +ssl.TLSVersion(??) +ssl.VERIFY_ALLOW_PROXY_CERTS(??) +ssl.VERIFY_CRL_CHECK_CHAIN(??) +ssl.VERIFY_CRL_CHECK_LEAF(??) +ssl.VERIFY_DEFAULT(??) +ssl.VERIFY_X509_PARTIAL_CHAIN(??) +ssl.VERIFY_X509_STRICT(??) +ssl.VERIFY_X509_TRUSTED_FIRST(??) +ssl.VerifyFlags(??) +ssl.VerifyMode(??) +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.warnings(??) +ssl.wrap_socket(??) +stat.FILE_ATTRIBUTE_ARCHIVE +stat.FILE_ATTRIBUTE_COMPRESSED +stat.FILE_ATTRIBUTE_DEVICE +stat.FILE_ATTRIBUTE_DIRECTORY +stat.FILE_ATTRIBUTE_ENCRYPTED +stat.FILE_ATTRIBUTE_HIDDEN +stat.FILE_ATTRIBUTE_INTEGRITY_STREAM +stat.FILE_ATTRIBUTE_NORMAL +stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +stat.FILE_ATTRIBUTE_NO_SCRUB_DATA +stat.FILE_ATTRIBUTE_OFFLINE +stat.FILE_ATTRIBUTE_READONLY +stat.FILE_ATTRIBUTE_REPARSE_POINT +stat.FILE_ATTRIBUTE_SPARSE_FILE +stat.FILE_ATTRIBUTE_SYSTEM +stat.FILE_ATTRIBUTE_TEMPORARY +stat.FILE_ATTRIBUTE_VIRTUAL +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Counter(??) +statistics.Decimal(??) +statistics.Fraction(??) +statistics.LinearRegression(slope, intercept) +statistics.NormalDist(??) +statistics.StatisticsError(??) +statistics.bisect_left(??) +statistics.bisect_right(??) +statistics.correlation(??) +statistics.covariance(??) +statistics.defaultdict(default_factory=None, /, [...]) --> dict with default factory +statistics.erf(??) +statistics.exp(??) +statistics.fabs(??) +statistics.fmean(??) +statistics.fsum(??) +statistics.geometric_mean(??) +statistics.groupby(??) +statistics.harmonic_mean(??) +statistics.hypot(*coordinates) -> value +statistics.linear_regression(??) +statistics.log(x, [base=math.e]) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.mul(??) +statistics.multimode(??) +statistics.namedtuple(??) +statistics.numbers(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.quantiles(??) +statistics.random(??) +statistics.reduce(function, iterable[, initial]) -> value +statistics.repeat(object [,times]) -> create an iterator which returns the object +statistics.sqrt(??) +statistics.stdev(??) +statistics.sys(??) +statistics.tau +statistics.variance(??) +str(object='') -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(??) +struct.error(??) +struct.iter_unpack(??) +struct.pack(format, v1, v2, ...) -> bytes +struct.pack_into(format, buffer, offset, v1, v2, ...) +struct.unpack(??) +struct.unpack_from(??) +subprocess.CalledProcessError(??) +subprocess.CompletedProcess(??) +subprocess.DEVNULL +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.contextlib(??) +subprocess.errno(??) +subprocess.fcntl(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.locale(??) +subprocess.os(??) +subprocess.run(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.threading(??) +subprocess.time(??) +subprocess.types(??) +subprocess.warnings(??) +sum(??) +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +sunau.warnings(??) +super() -> same as super(__class__, ) +symtable.CELL +symtable.Class(??) +symtable.DEF_ANNOT +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_NONLOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.addaudithook(??) +sys.api_version +sys.argv(??) +sys.audit(event, *args) +sys.base_exec_prefix +sys.base_prefix +sys.breakpointhook(*args, **kws) +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(??) +sys.copyright +sys.displayhook(??) +sys.dont_write_bytecode(??) +sys.exc_info(??) +sys.excepthook(??) +sys.exception(??) +sys.exec_prefix +sys.executable +sys.exit(??) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.get_asyncgen_hooks(??) +sys.get_coroutine_origin_tracking_depth(??) +sys.getallocatedblocks(??) +sys.getdefaultencoding(??) +sys.getdlopenflags(??) +sys.getfilesystemencodeerrors(??) +sys.getfilesystemencoding(??) +sys.getprofile(??) +sys.getrecursionlimit(??) +sys.getrefcount(??) +sys.getsizeof(object [, default]) -> int +sys.getswitchinterval(??) +sys.gettrace(??) +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(??) +sys.is_finalizing(??) +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.orig_argv(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.platlibdir +sys.prefix +sys.pycache_prefix(??) +sys.set_asyncgen_hooks(* [, firstiter] [, finalizer]) +sys.set_coroutine_origin_tracking_depth(??) +sys.setdlopenflags(??) +sys.setprofile(function) +sys.setrecursionlimit(??) +sys.setswitchinterval(??) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdlib_module_names(??) +sys.stdout(??) +sys.thread_info(??) +sys.unraisablehook(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.expand_makefile_vars(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_default_scheme(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_preferred_scheme(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +telnetlib.warnings(??) +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempdirb(??) +tempfile.gettempprefix(??) +tempfile.gettempprefixb(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.ExceptHookArgs(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.excepthook(exc_type, exc_value, exc_traceback, thread) +threading.functools(??) +threading.get_ident() -> integer +threading.get_native_id() -> integer +threading.getprofile(??) +threading.gettrace(??) +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.CLOCK_MONOTONIC +time.CLOCK_MONOTONIC_RAW +time.CLOCK_PROCESS_CPUTIME_ID +time.CLOCK_REALTIME +time.CLOCK_THREAD_CPUTIME_ID +time.CLOCK_UPTIME_RAW +time.altzone +time.asctime([tuple]) -> string +time.clock_getres(clk_id) -> floating point number +time.clock_gettime(clk_id) -> float +time.clock_gettime_ns(clk_id) -> int +time.clock_settime(clk_id, time) +time.clock_settime_ns(clk_id, time) +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.monotonic_ns() -> int +time.perf_counter() -> float +time.perf_counter_ns() -> int +time.process_time() -> float +time.process_time_ns(??) +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.thread_time() -> float +time.thread_time_ns(??) +time.time() -> floating point number +time.time_ns() -> int +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.EventType(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.collections(??) +tkinter.colorchooser(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog(??) +tkinter.commondialog.Dialog(??) +tkinter.commondialog.Frame(??) +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog(??) +tkinter.dialog.Button(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.Dialog(??) +tkinter.dialog.Pack(??) +tkinter.dialog.TclError(??) +tkinter.dialog.Widget(??) +tkinter.dnd(??) +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.enum(??) +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.Button(??) +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.END +tkinter.filedialog.Entry(??) +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.LEFT +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.Open(??) +tkinter.filedialog.RIGHT +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.TOP +tkinter.filedialog.Tk(??) +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.X +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.os(??) +tkinter.filedialog.test(??) +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.EventType(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.sys(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.EventType(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.os(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.warnings(??) +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Spinbox(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.types(??) +tkinter.wantobjects +token.AMPER +token.AMPEREQUAL +token.ASYNC +token.AT +token.ATEQUAL +token.AWAIT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COLONEQUAL +token.COMMA +token.COMMENT +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENCODING +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.EXACT_TOKEN_TYPES(??) +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NL +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.SOFT_KEYWORD +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.TYPE_COMMENT +token.TYPE_IGNORE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.ASYNC +tokenize.AT +tokenize.ATEQUAL +tokenize.AWAIT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COLONEQUAL +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.SOFT_KEYWORD +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TYPE_COMMENT +tokenize.TYPE_IGNORE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.functools(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.untokenize(??) +tomllib.TOMLDecodeError(??) +tomllib.load(??) +tomllib.loads(??) +trace.CoverageResults(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.os(??) +trace.pickle(??) +trace.sys(??) +trace.sysconfig(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +traceback.FrameSummary(??) +traceback.StackSummary(??) +traceback.TracebackException(??) +traceback.clear_frames(??) +traceback.collections(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.itertools(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.suppress(??) +traceback.sys(??) +traceback.textwrap(??) +traceback.walk_stack(??) +traceback.walk_tb(??) +tracemalloc.BaseFilter(??) +tracemalloc.DomainFilter(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Iterable(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces(??) +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit(??) +tracemalloc.get_traced_memory(??) +tracemalloc.get_tracemalloc_memory(??) +tracemalloc.is_tracing(??) +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.reset_peak(??) +tracemalloc.start(??) +tracemalloc.stop(??) +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGSIZE +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSSIZE +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(??) +tty.tcflow(??) +tty.tcflush(??) +tty.tcgetattr(??) +tty.tcgetwinsize(??) +tty.tcsendbreak(??) +tty.tcsetattr(??) +tty.tcsetwinsize(??) +tuple(??) +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.sys(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.warnings(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object) -> the object's type +types.AsyncGeneratorType(??) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CellType(??) +types.ClassMethodDescriptorType(??) +types.CodeType(??) +types.CoroutineType(??) +types.DynamicClassAttribute(??) +types.EllipsisType(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GenericAlias(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodDescriptorType(??) +types.MethodType(??) +types.MethodWrapperType(??) +types.ModuleType(??) +types.NoneType(??) +types.NotImplementedType(??) +types.SimpleNamespace(??) +types.TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno) +types.UnionType(??) +types.WrapperDescriptorType(??) +types.coroutine(??) +types.new_class(??) +types.prepare_class(??) +types.resolve_bases(??) +typing.ABCMeta(??) +typing.AbstractSet(??) +typing.Annotated(??) +typing.Any(??) +typing.AnyStr(??) +typing.AsyncContextManager(??) +typing.AsyncGenerator(??) +typing.AsyncIterable(??) +typing.AsyncIterator(??) +typing.Awaitable(??) +typing.BinaryIO(??) +typing.ByteString(??) +typing.CT_co(??) +typing.Callable(??) +typing.ChainMap(??) +typing.ClassVar(??) +typing.Collection(??) +typing.Concatenate(??) +typing.Container(??) +typing.ContextManager(??) +typing.Coroutine(??) +typing.Counter(??) +typing.DefaultDict(??) +typing.Deque(??) +typing.Dict(??) +typing.EXCLUDED_ATTRIBUTES(??) +typing.Final(??) +typing.ForwardRef(??) +typing.FrozenSet(??) +typing.Generator(??) +typing.Generic(??) +typing.GenericAlias(??) +typing.Hashable(??) +typing.IO(??) +typing.ItemsView(??) +typing.Iterable(??) +typing.Iterator(??) +typing.KT(??) +typing.KeysView(??) +typing.List(??) +typing.Literal(??) +typing.LiteralString(??) +typing.Mapping(??) +typing.MappingView(??) +typing.Match(??) +typing.MethodDescriptorType(??) +typing.MethodWrapperType(??) +typing.MutableMapping(??) +typing.MutableSequence(??) +typing.MutableSet(??) +typing.NamedTuple(??) +typing.NamedTupleMeta(??) +typing.Never(??) +typing.NewType(??) +typing.NoReturn(??) +typing.NotRequired(??) +typing.Optional(??) +typing.OrderedDict(??) +typing.ParamSpec(??) +typing.ParamSpecArgs(??) +typing.ParamSpecKwargs(??) +typing.Pattern(??) +typing.Protocol(??) +typing.Required(??) +typing.Reversible(??) +typing.Self(??) +typing.Sequence(??) +typing.Set(??) +typing.Sized(??) +typing.SupportsAbs(??) +typing.SupportsBytes(??) +typing.SupportsComplex(??) +typing.SupportsFloat(??) +typing.SupportsIndex(??) +typing.SupportsInt(??) +typing.SupportsRound(??) +typing.T(??) +typing.TYPE_CHECKING(??) +typing.T_co(??) +typing.T_contra(??) +typing.Text(??) +typing.TextIO(??) +typing.Tuple(??) +typing.Type(??) +typing.TypeAlias(??) +typing.TypeGuard(??) +typing.TypeVar(??) +typing.TypeVarTuple(??) +typing.TypedDict(??) +typing.Union(??) +typing.Unpack(??) +typing.VT(??) +typing.VT_co(??) +typing.V_co(??) +typing.ValuesView(??) +typing.WrapperDescriptorType(??) +typing.abstractmethod(??) +typing.assert_never(??) +typing.assert_type(??) +typing.cast(??) +typing.clear_overloads(??) +typing.collections(??) +typing.contextlib(??) +typing.dataclass_transform(??) +typing.defaultdict(default_factory=None, /, [...]) --> dict with default factory +typing.final(??) +typing.functools(??) +typing.get_args(??) +typing.get_origin(??) +typing.get_overloads(??) +typing.get_type_hints(??) +typing.io(??) +typing.is_typeddict(??) +typing.no_type_check(??) +typing.no_type_check_decorator(??) +typing.operator(??) +typing.overload(??) +typing.re(??) +typing.reveal_type(??) +typing.runtime_checkable(??) +typing.stdlib_re(??) +typing.sys(??) +typing.types(??) +typing.warnings(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.functools(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr(??) +urllib.parse.splithost(??) +urllib.parse.splitnport(??) +urllib.parse.splitpasswd(??) +urllib.parse.splitport(??) +urllib.parse.splitquery(??) +urllib.parse.splittag(??) +urllib.parse.splittype(??) +urllib.parse.splituser(??) +urllib.parse.splitvalue(??) +urllib.parse.sys(??) +urllib.parse.to_bytes(??) +urllib.parse.types(??) +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap(??) +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.parse.warnings(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPPasswordMgrWithPriorAuth(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.ssl(??) +urllib.request.string(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap(??) +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.response.tempfile(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RequestRate(requests, seconds) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.collections(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uu.warnings(??) +uuid.Enum(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.SafeUUID(??) +uuid.UUID(??) +uuid.bytes_(??) +uuid.getnode(??) +uuid.int_(??) +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.CORE_VENV_DEPS(??) +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.sysconfig(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.struct(??) +wave.sys(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(??) +weakref.itertools(??) +weakref.proxy(??) +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.register_standard_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.threading(??) +webbrowser.warnings(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.types.Any(??) +wsgiref.types.Callable(??) +wsgiref.types.ErrorStream(??) +wsgiref.types.FileWrapper(??) +wsgiref.types.InputStream(??) +wsgiref.types.Iterable(??) +wsgiref.types.Protocol(??) +wsgiref.types.StartResponse(??) +wsgiref.types.TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno) +wsgiref.types.TypeAlias(??) +wsgiref.types.WSGIApplication(??) +wsgiref.types.WSGIEnvironment(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.raise_conversion_error(??) +xdrlib.struct(??) +xdrlib.warnings(??) +xdrlib.wraps(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.sys(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat(??) +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder(??) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude.DEFAULT_MAX_INCLUSION_DEPTH +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.LimitedRecursiveIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementInclude.urljoin(??) +xml.etree.ElementPath(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree(??) +xml.etree.ElementTree.C14NWriterTarget(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.canonicalize(??) +xml.etree.ElementTree.collections(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.indent(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree(??) +xml.etree.cElementTree.C14NWriterTarget(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLPullParser(??) +xml.etree.cElementTree.canonicalize(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.indent(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(??) +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate(??) +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.LexicalHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Decimal(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.html(??) +xmlrpc.server.http(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.partial(func, *args, **keywords) - new function with partial application +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.signature(??) +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(*iterables, strict=False) --> Yield tuples until an input is exhausted. +zipapp.MAIN_TEMPLATE +zipapp.ZipAppError(??) +zipapp.contextlib(??) +zipapp.create_archive(??) +zipapp.get_interpreter(??) +zipapp.main(??) +zipapp.os(??) +zipapp.pathlib(??) +zipapp.shebang_encoding +zipapp.shutil(??) +zipapp.stat(??) +zipapp.sys(??) +zipapp.zipfile(??) +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.CompleteDirs(??) +zipfile.DEFAULT_VERSION +zipfile.FastLookup(??) +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.Path(??) +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.contextlib(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.itertools(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.pathlib(??) +zipfile.posixpath(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.threading(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.END_CENTRAL_DIR_SIZE +zipimport.MAX_COMMENT_LEN +zipimport.STRING_END_ARCHIVE +zipimport.ZipImportError(??) +zipimport.alt_path_sep +zipimport.cp437_table +zipimport.marshal(??) +zipimport.path_sep +zipimport.sys(??) +zipimport.time(??) +zipimport.zipimporter(archivepath) -> zipimporter object +zoneinfo.InvalidTZPathWarning(??) +zoneinfo.TZPATH(??) +zoneinfo.ZoneInfo(??) +zoneinfo.ZoneInfoNotFoundError(??) +zoneinfo.available_timezones(??) +zoneinfo.reset_tzpath(??) diff --git a/third_party/qscintilla/qsci/api/python/Python-3.2.api b/third_party/qscintilla/qsci/api/python/Python-3.2.api new file mode 100644 index 0000000..9118a60 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.2.api @@ -0,0 +1,6296 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BufferError(??) +BytesWarning(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +NameError(??) +None(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABCMeta(??) +abc.WeakSet(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +all(iterable) -> bool +any(iterable) -> bool +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +ascii(object) -> string +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.Assert(??) +ast.Assign(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FunctionDef(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ONLY_AST +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.TryExcept(??) +ast.TryFinally(??) +ast.Tuple(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.unaryop(??) +ast.walk(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.buffer(??) +asynchat.deque(iterable[, maxlen]) --> deque object +asynchat.fifo(??) +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asynchat.socket(??) +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINTR +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.fcntl(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(number) -> string +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +binhex.sys(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.NameError(??) +builtins.None +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(number) -> number +builtins.all(iterable) -> bool +builtins.any(iterable) -> bool +builtins.ascii(object) -> string +builtins.bin(number) -> string +builtins.bool(x) -> bool +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(object) -> bool +builtins.chr(i) -> Unicode character +builtins.classmethod(function) -> method +builtins.compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +builtins.complex(real[, imag]) -> complex number +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(object, name) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(x, y) -> (div, mod) +builtins.enumerate(iterable[, start]) -> iterator for index, value of iterable +builtins.eval(source[, globals[, locals]]) -> value +builtins.exec(object[, globals[, locals]]) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(x) -> floating point number +builtins.format(value[, format_spec]) -> string +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals() -> dictionary +builtins.hasattr(object, name) -> bool +builtins.hash(object) -> integer +builtins.help(??) +builtins.hex(number) -> string +builtins.id(object) -> integer +builtins.input([prompt]) -> string +builtins.int(x[, base]) -> integer +builtins.isinstance(object, class-or-type-or-tuple) -> bool +builtins.issubclass(C, B) -> bool +builtins.iter(iterable) -> iterator +builtins.len(object) -> integer +builtins.license(??) +builtins.list() -> new empty list +builtins.locals() -> dictionary +builtins.map(func, *iterables) --> map object +builtins.max(iterable[, key=func]) -> value +builtins.memoryview(object) +builtins.min(iterable[, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(number) -> string +builtins.open(??) +builtins.ord(c) -> integer +builtins.pow(x, y[, z]) -> number +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout) +builtins.property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +builtins.quit(??) +builtins.range([start,] stop[, step]) -> range object +builtins.repr(object) -> string +builtins.reversed(sequence) -> reverse iterator over values of the sequence +builtins.round(number[, ndigits]) -> number +builtins.set() -> new empty set object +builtins.setattr(object, name, value) +builtins.slice([start,] stop[, step]) +builtins.sorted(iterable, key=None, reverse=False) --> new sorted list +builtins.staticmethod(function) -> method +builtins.str(string[, encoding[, errors]]) -> str +builtins.sum(iterable[, start]) -> value +builtins.super() -> same as super(__class__, ) +builtins.tuple() -> empty tuple +builtins.type(object) -> the object's type +builtins.vars([object]) -> dictionary +builtins.zip(iter1 [,iter2 [...]]) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(object) -> bool +cgi.BytesIO([buffer]) -> object +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.dolog(??) +cgi.escape(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warn(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +cgitb.types(??) +chr(i) -> Unicode character +chunk.Chunk(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(encoding) -> CodecInfo +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unicode_internal_decode(??) +codecs.unicode_internal_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.ByteString(??) +collections.Callable(??) +collections.Container(??) +collections.Counter(??) +collections.Hashable(??) +collections.ItemsView(??) +collections.Iterable(??) +collections.Iterator(??) +collections.KeysView(??) +collections.Mapping(??) +collections.MappingView(??) +collections.MutableMapping(??) +collections.MutableSequence(??) +collections.MutableSet(??) +collections.OrderedDict(??) +collections.Sequence(??) +collections.Set(??) +collections.Sized(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.ValuesView(??) +collections.defaultdict(default_factory) --> dict with default factory +collections.deque(iterable[, maxlen]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.errno(??) +compileall.imp(??) +compileall.main(??) +compileall.os(??) +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(real[, imag]) -> complex number +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.atexit(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.queue(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.atexit(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.ContextDecorator(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.sys(??) +contextlib.warn(??) +contextlib.wraps(??) +copy.Error(??) +copy.PyStringMap(??) +copy.builtins(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copy.name +copy.t(??) +copy.weakref(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib(??) +ctypes.macholib.dyld(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(iterable) --> accumulate object +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable, r) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(function or None, sequence) --> filterfalse object +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.islice(iterable, [start,] stop [, step]) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib(??) +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util(??) +ctypes.util.contextlib(??) +ctypes.util.errno(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.re(??) +ctypes.util.sys(??) +ctypes.util.tempfile(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +difflib.warnings(??) +dir([object]) -> list of strings +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.cmp_op(??) +dis.code_info(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.sys(??) +dis.types(??) +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.tempfile(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +doctest.warnings(??) +dummy_threading.Barrier(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.local(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderParseError(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.message(??) +email.feedparser.re(??) +email.generator(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO([buffer]) -> object +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.Header(??) +email.generator.NL +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.generator.warnings(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO([buffer]) -> object +email.message.Charset(??) +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.base64(??) +email.message.binascii(??) +email.message.errors(??) +email.message.header(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message.warnings(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime(??) +email.mime.application(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio(??) +email.mime.audio.BytesIO([buffer]) -> object +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base(??) +email.mime.base.MIMEBase(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.mime.text.encode_7or8bit(??) +email.parser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Message(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.warnings(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.EMPTYSTRING +email.utils.StringIO(??) +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.base64(??) +email.utils.collapse_rfc2231_value(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +email.utils.warnings(??) +enumerate(iterable[, start]) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EADV +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EBADE +errno.EBADF +errno.EBADFD +errno.EBADMSG +errno.EBADR +errno.EBADRQC +errno.EBADSLT +errno.EBFONT +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECHRNG +errno.ECOMM +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDEADLOCK +errno.EDESTADDRREQ +errno.EDOM +errno.EDOTDOT +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.EISNAM +errno.EKEYEXPIRED +errno.EKEYREJECTED +errno.EKEYREVOKED +errno.EL2HLT +errno.EL2NSYNC +errno.EL3HLT +errno.EL3RST +errno.ELIBACC +errno.ELIBBAD +errno.ELIBEXEC +errno.ELIBMAX +errno.ELIBSCN +errno.ELNRNG +errno.ELOOP +errno.EMEDIUMTYPE +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENAVAIL +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOANO +errno.ENOBUFS +errno.ENOCSI +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOKEY +errno.ENOLCK +errno.ENOLINK +errno.ENOMEDIUM +errno.ENOMEM +errno.ENOMSG +errno.ENONET +errno.ENOPKG +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTNAM +errno.ENOTRECOVERABLE +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENOTUNIQ +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EOWNERDEAD +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.ERANGE +errno.EREMCHG +errno.EREMOTE +errno.EREMOTEIO +errno.ERESTART +errno.ERFKILL +errno.EROFS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESRMNT +errno.ESTALE +errno.ESTRPIPE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUCLEAN +errno.EUNATCH +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.EXFULL +errno.errorcode(??) +eval(source[, globals[, locals]]) -> value +exec(object[, globals[, locals]]) +exit(??) +filecmp.BUFSIZE +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(function or None, sequence) --> filterfalse object +filecmp.os(??) +filecmp.stat(??) +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(files=None, inplace=False, backup="", bufsize=0, mode="r", openhook=None) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(value[, format_spec]) -> string +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.os(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.Lock(??) +functools.OrderedDict(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.cmp_to_key(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.reduce(function, sequence[, initial]) -> value +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage(??) +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.is_tracked(obj) -> bool +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.io(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.os(??) +gettext.re(??) +gettext.struct(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +glob.sys(??) +globals() -> dictionary +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.LOWU32(??) +gzip.READ +gzip.U32(??) +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.open(??) +gzip.os(??) +gzip.read32(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(object, name) -> bool +hash(object) -> integer +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha512(??) +heapq.bisect(??) +heapq.chain(*iterables) --> chain object +heapq.count(start=0, step=1) --> count object +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(??) +heapq.heappushpop(??) +heapq.heapreplace(??) +heapq.islice(iterable, [start,] stop [, step]) --> islice object +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +heapq.repeat(object [,times]) -> create an iterator which returns the object +heapq.tee(iterable, n=2) --> tuple of n independent iterators. +help(??) +hex(number) -> string +hmac.HMAC(??) +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser(??) +html.parser.HTMLParseError(??) +html.parser.HTMLParser(??) +html.parser.attrfind(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_cdata(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind(??) +http.client(??) +http.client.ACCEPTED +http.client.BAD_GATEWAY +http.client.BAD_REQUEST +http.client.BadStatusLine(??) +http.client.CONFLICT +http.client.CONTINUE +http.client.CREATED +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED +http.client.FAILED_DEPENDENCY +http.client.FORBIDDEN +http.client.FOUND +http.client.GATEWAY_TIMEOUT +http.client.GONE +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED +http.client.IM_USED +http.client.INSUFFICIENT_STORAGE +http.client.INTERNAL_SERVER_ERROR +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED +http.client.LOCKED +http.client.LineTooLong(??) +http.client.MAXAMOUNT +http.client.METHOD_NOT_ALLOWED +http.client.MOVED_PERMANENTLY +http.client.MULTIPLE_CHOICES +http.client.MULTI_STATUS +http.client.NON_AUTHORITATIVE_INFORMATION +http.client.NOT_ACCEPTABLE +http.client.NOT_EXTENDED +http.client.NOT_FOUND +http.client.NOT_IMPLEMENTED +http.client.NOT_MODIFIED +http.client.NO_CONTENT +http.client.NotConnected(??) +http.client.OK +http.client.PARTIAL_CONTENT +http.client.PAYMENT_REQUIRED +http.client.PRECONDITION_FAILED +http.client.PROCESSING +http.client.PROXY_AUTHENTICATION_REQUIRED +http.client.REQUESTED_RANGE_NOT_SATISFIABLE +http.client.REQUEST_ENTITY_TOO_LARGE +http.client.REQUEST_TIMEOUT +http.client.REQUEST_URI_TOO_LONG +http.client.RESET_CONTENT +http.client.ResponseNotReady(??) +http.client.SEE_OTHER +http.client.SERVICE_UNAVAILABLE +http.client.SWITCHING_PROTOCOLS +http.client.TEMPORARY_REDIRECT +http.client.UNAUTHORIZED +http.client.UNPROCESSABLE_ENTITY +http.client.UNSUPPORTED_MEDIA_TYPE +http.client.UPGRADE_REQUIRED +http.client.USE_PROXY +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.io(??) +http.client.os(??) +http.client.parse_headers(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.client.warnings(??) +http.cookiejar(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.copy(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(object) -> integer +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.acquire_lock() -> None +imp.cache_from_source(??) +imp.find_module(name, [path]) -> (file, filename, (suffix, mode, type)) +imp.get_frozen_object(??) +imp.get_magic() -> string +imp.get_suffixes() -> [(suffix, mode, type), ...] +imp.get_tag() -> string +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(name, file, filename, (suffix, mode, type)) -> module +imp.load_package(??) +imp.load_source(??) +imp.lock_held() -> boolean +imp.new_module(name) -> module +imp.release_lock() -> None +imp.reload(module) -> module +imp.source_from_cache(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.PyLoader(??) +importlib.abc.PyPycLoader(??) +importlib.abc.ResourceLoader(??) +importlib.abc.SourceLoader(??) +importlib.abc.abc(??) +importlib.abc.imp(??) +importlib.abc.io(??) +importlib.abc.machinery(??) +importlib.abc.marshal(??) +importlib.abc.os(??) +importlib.abc.sys(??) +importlib.abc.tokenize(??) +importlib.abc.types(??) +importlib.abc.util(??) +importlib.abc.warnings(??) +importlib.errno(??) +importlib.imp(??) +importlib.import_module(??) +importlib.machinery(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.PathFinder(??) +importlib.marshal(??) +importlib.os(??) +importlib.re(??) +importlib.sep +importlib.sys(??) +importlib.tokenize(??) +importlib.util(??) +importlib.util.module_for_loader(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +input([prompt]) -> string +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.CO_GENERATOR +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.EndOfBlock(??) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.ModuleInfo(name, suffix, mode, module_type) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.currentframe(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.imp(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.stack(??) +inspect.string(??) +inspect.sys(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.v +inspect.walktree(??) +int(x[, base]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO([buffer]) -> object +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(iterable) -> iterator +itertools.accumulate(iterable) --> accumulate object +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable, r) --> combinations object +itertools.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.filterfalse(function or None, sequence) --> filterfalse object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.islice(iterable, [start,] stop [, step]) --> islice object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecoder(??) +json.JSONEncoder(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS +json.decoder.JSONArray(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.binascii(??) +json.decoder.c_scanstring(??) +json.decoder.errmsg(??) +json.decoder.linecol(??) +json.decoder.make_scanner(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.decoder.struct(??) +json.decoder.sys(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.FLOAT_REPR(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(??) +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +keyword.main(??) +len(object) -> integer +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list() -> new empty list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.bind_textdomain_codeset(domain, codeset) -> string +locale.bindtextdomain(domain, dir) -> string +locale.collections(??) +locale.currency(??) +locale.dcgettext(domain, msg, category) -> string +locale.dgettext(domain, msg) -> string +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.gettext(msg) -> string +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.textdomain(domain) -> string +locale.windows_locale(??) +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.codecs(??) +logging.config(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.os(??) +logging.config.re(??) +logging.config.socket(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.thread(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.types(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.codecs(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing +logging.logProcesses +logging.logThreads +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.thread(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(??) +macpath.S_ISCHR(??) +macpath.S_ISDIR(??) +macpath.S_ISFIFO(??) +macpath.S_ISGID +macpath.S_ISLNK(??) +macpath.S_ISREG(??) +macpath.S_ISSOCK(??) +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep(??) +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.genericpath(??) +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os(??) +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames(??) +macurl2path.os(??) +macurl2path.pathname2url(??) +macurl2path.test(??) +macurl2path.url2pathname(??) +macurl2path.urllib(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.sys(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(func, *iterables) --> map object +marshal.dump(value, file[, version]) +marshal.dumps(value[, version]) +marshal.load(file) +marshal.loads(string) +marshal.version +max(iterable[, key=func]) -> value +memoryview(object) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable[, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.HAVE_ARGUMENT +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.READ_MODE +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.generators(??) +modulefinder.imp(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.struct(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Finalize(??) +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.close(fd) +multiprocessing.connection.current_process(??) +multiprocessing.connection.debug(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.duplicate(??) +multiprocessing.connection.errno(??) +multiprocessing.connection.families(??) +multiprocessing.connection.get_temp_dir(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.sub_debug(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.TimeoutError(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.cpu_count(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.itertools(??) +multiprocessing.dummy.list() -> new empty list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forking(??) +multiprocessing.forking.ForkingPickler(??) +multiprocessing.forking.Pickler(??) +multiprocessing.forking.Popen(??) +multiprocessing.forking.assert_spawning(??) +multiprocessing.forking.close(fd) +multiprocessing.forking.duplicate(??) +multiprocessing.forking.exit(??) +multiprocessing.forking.old_main_modules(??) +multiprocessing.forking.os(??) +multiprocessing.forking.partial(func, *args, **keywords) - new function with partial application +multiprocessing.forking.prepare(??) +multiprocessing.forking.process(??) +multiprocessing.forking.signal(??) +multiprocessing.forking.sys(??) +multiprocessing.forking.time(??) +multiprocessing.forking.util(??) +multiprocessing.freeze_support(??) +multiprocessing.get_logger(??) +multiprocessing.heap(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Finalize(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.info(??) +multiprocessing.heap.itertools(??) +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AuthenticationString(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.Finalize(??) +multiprocessing.managers.ForkingPickler(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PicklingError(??) +multiprocessing.managers.Pool(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.Popen(??) +multiprocessing.managers.Process(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.active_children(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.assert_spawning(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.copyreg(??) +multiprocessing.managers.current_process(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.exit(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.info(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.os(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.managers.weakref(??) +multiprocessing.os(??) +multiprocessing.pool(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.Finalize(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.Process(??) +multiprocessing.pool.RUN +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.cpu_count(??) +multiprocessing.pool.debug(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.worker(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.Process(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.queues(??) +multiprocessing.queues.BoundedSemaphore(??) +multiprocessing.queues.Condition(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Lock(??) +multiprocessing.queues.Pipe(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.Semaphore(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.assert_spawning(??) +multiprocessing.queues.atexit(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.info(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reduction(??) +multiprocessing.reduction.Client(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.Listener(??) +multiprocessing.reduction.Popen(??) +multiprocessing.reduction.close(fd) +multiprocessing.reduction.current_process(??) +multiprocessing.reduction.debug(??) +multiprocessing.reduction.duplicate(??) +multiprocessing.reduction.fromfd(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.rebuild_connection(??) +multiprocessing.reduction.rebuild_handle(??) +multiprocessing.reduction.rebuild_socket(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.reduce_connection(??) +multiprocessing.reduction.reduce_handle(??) +multiprocessing.reduction.reduce_socket(??) +multiprocessing.reduction.register_after_fork(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sub_debug(??) +multiprocessing.reduction.sys(??) +multiprocessing.reduction.threading(??) +multiprocessing.sharedctypes(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.ForkingPickler(??) +multiprocessing.sharedctypes.RLock(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.sys(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.synchronize(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Finalize(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.Popen(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.assert_spawning(??) +multiprocessing.synchronize.current_process(??) +multiprocessing.synchronize.debug(??) +multiprocessing.synchronize.os(??) +multiprocessing.synchronize.register_after_fork(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.threading(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.active_children(??) +multiprocessing.util.atexit(??) +multiprocessing.util.current_process(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +numbers.abstractproperty(??) +object(??) +oct(number) -> string +open(??) +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imod(??) +operator.imul(??) +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(a, b) -- Same as a<=b. +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.rshift(a, b) -- Same as a >> b. +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(c) -> integer +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_OK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_LARGEFILE +os.O_NDELAY +os.O_NOATIME +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_RSYNC +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.P_NOWAIT +os.P_NOWAITO +os.P_WAIT +os.R_OK +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(path, mode) -> True if granted, False otherwise +os.altsep(??) +os.chdir(path) +os.chmod(path, mode) +os.chown(path, uid, gid) +os.chroot(path) +os.close(fd) +os.closerange(fd_low, fd_high) +os.confstr(name) -> string +os.confstr_names(??) +os.ctermid() -> string +os.curdir +os.defpath +os.device_encoding(fd) -> str +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ(??) +os.environb(??) +os.errno(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fildes) +os.fchmod(fd, mode) +os.fchown(fd, uid, gid) +os.fdatasync(fildes) +os.fdopen(??) +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fsdecode(??) +os.fsencode(??) +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.get_exec_path(??) +os.getcwd() -> path +os.getcwdb() -> path +os.getegid() -> egid +os.getenv(??) +os.getenvb(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getresgid() -> (rgid, egid, sgid) +os.getresuid() -> (ruid, euid, suid) +os.getsid(pid) -> sid +os.getuid() -> uid +os.initgroups(username, gid) -> None +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst) +os.listdir([path]) -> list_of_strings +os.lseek(fd, pos, how) -> newpos +os.lstat(path) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0o777][, exist_ok=False]) +os.minor(device) -> minor number +os.mkdir(path [, mode=0777]) +os.mkfifo(filename [, mode=0666]) +os.mknod(filename [, mode=0600, device]) +os.name +os.nice(inc) -> new_priority +os.open(filename, flag [, mode=0777]) -> fd +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path(??) +os.pathconf(path, name) -> integer +os.pathconf_names(??) +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(??) +os.putenv(key, value) +os.read(fd, buffersize) -> string +os.readlink(path) -> path +os.remove(path) +os.removedirs(path) +os.rename(old, new) +os.renames(old, new) +os.rmdir(path) +os.sep +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setregid(rgid, egid) +os.setresgid(rgid, egid, sgid) +os.setresuid(ruid, euid, suid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.stat(path) -> stat result +os.stat_float_times([newval]) -> oldval +os.stat_result(??) +os.statvfs(path) -> statvfs result +os.statvfs_result(??) +os.strerror(code) -> string +os.supports_bytes_environ(??) +os.symlink(src, dst) +os.sys(??) +os.sysconf(name) -> integer +os.sysconf_names(??) +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.times() -> (utime, stime, cutime, cstime, elapsed_time) +os.ttyname(fd) -> string +os.umask(new_mask) -> old_mask +os.uname() -> (sysname, nodename, release, version, machine) +os.unlink(path) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, (atime, mtime)) +os.wait() -> (pid, status) +os.wait3(options) -> (pid, status, rusage) +os.wait4(pid, options) -> (pid, status, rusage) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, string) -> byteswritten +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.help(??) +pdb.inspect(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BUILD +pickle.BuiltinFunctionType(??) +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWTRUE +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(file, protocol=None) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(file, *, encoding='ASCII', errors='strict') +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.classmap(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(obj, file, protocol=None, *, fix_imports=True) -> None +pickle.dumps(obj, protocol=None, *, fix_imports=True) -> bytes +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.load(file, *, fix_imports=True, encoding='ASCII', errors='strict') -> object +pickle.loads(input, *, fix_imports=True, encoding='ASCII', errors='strict') -> object +pickle.marshal(??) +pickle.mloads(??) +pickle.re(??) +pickle.struct(??) +pickle.sys(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybytes(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.unicodestring4(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.string(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.imp(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.DEV_NULL +platform.architecture(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.version(??) +platform.win32_ver(??) +plistlib.BytesIO([buffer]) -> object +plistlib.Data(??) +plistlib.Dict(??) +plistlib.DumbXMLWriter(??) +plistlib.PLISTHEADER +plistlib.Plist(??) +plistlib.PlistParser(??) +plistlib.PlistWriter(??) +plistlib.binascii(??) +plistlib.datetime(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_OK +posix.NGROUPS_MAX +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_LARGEFILE +posix.O_NDELAY +posix.O_NOATIME +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_RSYNC +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.R_OK +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(path, mode) -> True if granted, False otherwise +posix.chdir(path) +posix.chmod(path, mode) +posix.chown(path, uid, gid) +posix.chroot(path) +posix.close(fd) +posix.closerange(fd_low, fd_high) +posix.confstr(name) -> string +posix.confstr_names(??) +posix.ctermid() -> string +posix.device_encoding(fd) -> str +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ(??) +posix.error(??) +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fildes) +posix.fchmod(fd, mode) +posix.fchown(fd, uid, gid) +posix.fdatasync(fildes) +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.getcwd() -> path +posix.getcwdb() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getresgid() -> (rgid, egid, sgid) +posix.getresuid() -> (ruid, euid, suid) +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.initgroups(username, gid) -> None +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchown(path, uid, gid) +posix.link(src, dst) +posix.listdir([path]) -> list_of_strings +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path [, mode=0777]) +posix.mkfifo(filename [, mode=0666]) +posix.mknod(filename [, mode=0600, device]) +posix.nice(inc) -> new_priority +posix.open(filename, flag [, mode=0777]) -> fd +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names(??) +posix.pipe() -> (read_end, write_end) +posix.putenv(key, value) +posix.read(fd, buffersize) -> string +posix.readlink(path) -> path +posix.remove(path) +posix.rename(old, new) +posix.rmdir(path) +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setregid(rgid, egid) +posix.setresgid(rgid, egid, sgid) +posix.setresuid(ruid, euid, suid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(path) -> stat result +posix.stat_float_times([newval]) -> oldval +posix.stat_result(??) +posix.statvfs(path) -> statvfs result +posix.statvfs_result(??) +posix.strerror(code) -> string +posix.symlink(src, dst) +posix.sysconf(name) -> integer +posix.sysconf_names(??) +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.times() -> (utime, stime, cutime, cstime, elapsed_time) +posix.ttyname(fd) -> string +posix.umask(new_mask) -> old_mask +posix.uname() -> (sysname, nodename, release, version, machine) +posix.unlink(path) +posix.unsetenv(key) +posix.utime(path, (atime, mtime)) +posix.wait() -> (pid, status) +posix.wait3(options) -> (pid, status, rusage) +posix.wait4(pid, options) -> (pid, status, rusage) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, string) -> byteswritten +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout) +profile.OptionParser(??) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.os(??) +profile.resgetrusage(??) +profile.resource(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd(??) +py_compile.MAGIC +py_compile.PyCompileError(??) +py_compile.builtins(??) +py_compile.compile(??) +py_compile.errno(??) +py_compile.imp(??) +py_compile.main(??) +py_compile.marshal(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.tokenize(??) +py_compile.traceback(??) +py_compile.wr_long(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.imp(??) +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.Scanner(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque(iterable[, maxlen]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.extract_tb(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.gui(??) +pydoc.help(??) +pydoc.html(??) +pydoc.imp(??) +pydoc.importfile(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.serve(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.ttypager(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.deque(iterable[, maxlen]) --> deque object +queue.heapq(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.division(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates a long int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range([start,] stop[, step]) -> range object +re.A +re.ASCII +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copyreg(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.sys(??) +re.template(??) +repr(object) -> string +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, [start,] stop [, step]) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(sequence) -> reverse iterator over values of the sequence +rlcompleter.Completer(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +round(number[, ndigits]) -> number +runpy.get_loader(??) +runpy.imp(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +set() -> new empty set object +setattr(object, name, value) +shelve.BsdDbShelf(??) +shelve.BytesIO([buffer]) -> object +shelve.DbfilenameShelf(??) +shelve.Pickler(file, protocol=None) +shelve.Shelf(??) +shelve.Unpickler(file, *, encoding='ASCII', errors='strict') +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque(iterable[, maxlen]) --> deque object +shlex.os(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SpecialFileError(??) +shutil.WindowsError(??) +shutil.abspath(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(name) -> tuple +shutil.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.os(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.tarfile(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCLD +signal.SIGCONT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPOLL +signal.SIGPROF +signal.SIGPWR +signal.SIGQUIT +signal.SIGRTMAX +signal.SIGRTMIN +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_DFL +signal.SIG_IGN +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getitimer(which) +signal.getsignal(sig) -> action +signal.pause() +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(which, seconds[, interval]) +signal.siginterrupt(sig, flag) -> None +signal.signal(sig, action) -> action +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.aliasmbcs(??) +site.builtins(??) +site.check_enableusersite(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setBEGINLIBPATH(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.traceback(??) +slice([start,] stop[, step]) +smtpd.COMMASPACE +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.errno(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.SSLFakeFile(??) +smtplib.bCRLF +smtplib.base64(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.stderr(??) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK +socket.AF_ASH +socket.AF_ATMPVC +socket.AF_ATMSVC +socket.AF_AX25 +socket.AF_BLUETOOTH +socket.AF_BRIDGE +socket.AF_DECnet +socket.AF_ECONET +socket.AF_INET +socket.AF_INET6 +socket.AF_IPX +socket.AF_IRDA +socket.AF_KEY +socket.AF_LLC +socket.AF_NETBEUI +socket.AF_NETLINK +socket.AF_NETROM +socket.AF_PACKET +socket.AF_PPPOX +socket.AF_ROSE +socket.AF_ROUTE +socket.AF_SECURITY +socket.AF_SNA +socket.AF_TIPC +socket.AF_UNIX +socket.AF_UNSPEC +socket.AF_WANPIPE +socket.AF_X25 +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.BDADDR_ANY +socket.BDADDR_LOCAL +socket.BTPROTO_HCI +socket.BTPROTO_L2CAP +socket.BTPROTO_RFCOMM +socket.BTPROTO_SCO +socket.CAPI(??) +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EINTR +socket.EWOULDBLOCK +socket.HCI_DATA_DIR +socket.HCI_FILTER +socket.HCI_TIME_STAMP +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GRE +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV6 +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NETLINK_DNRTMSG +socket.NETLINK_FIREWALL +socket.NETLINK_IP6_FW +socket.NETLINK_NFLOG +socket.NETLINK_ROUTE +socket.NETLINK_USERSOCK +socket.NETLINK_XFRM +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PACKET_BROADCAST +socket.PACKET_FASTROUTE +socket.PACKET_HOST +socket.PACKET_LOOPBACK +socket.PACKET_MULTICAST +socket.PACKET_OTHERHOST +socket.PACKET_OUTGOING +socket.PF_PACKET +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_CLOEXEC +socket.SOCK_DGRAM +socket.SOCK_NONBLOCK +socket.SOCK_RAW +socket.SOCK_RDM +socket.SOCK_SEQPACKET +socket.SOCK_STREAM +socket.SOL_HCI +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_TIPC +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SocketIO(??) +socket.SocketType(??) +socket.TCP_CORK +socket.TCP_DEFER_ACCEPT +socket.TCP_INFO +socket.TCP_KEEPCNT +socket.TCP_KEEPIDLE +socket.TCP_KEEPINTVL +socket.TCP_LINGER2 +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.TCP_QUICKACK +socket.TCP_SYNCNT +socket.TCP_WINDOW_CLAMP +socket.TIPC_ADDR_ID +socket.TIPC_ADDR_NAME +socket.TIPC_ADDR_NAMESEQ +socket.TIPC_CFG_SRV +socket.TIPC_CLUSTER_SCOPE +socket.TIPC_CONN_TIMEOUT +socket.TIPC_CRITICAL_IMPORTANCE +socket.TIPC_DEST_DROPPABLE +socket.TIPC_HIGH_IMPORTANCE +socket.TIPC_IMPORTANCE +socket.TIPC_LOW_IMPORTANCE +socket.TIPC_MEDIUM_IMPORTANCE +socket.TIPC_NODE_SCOPE +socket.TIPC_PUBLISHED +socket.TIPC_SRC_DROPPABLE +socket.TIPC_SUBSCR_TIMEOUT +socket.TIPC_SUB_CANCEL +socket.TIPC_SUB_PORTS +socket.TIPC_SUB_SERVICE +socket.TIPC_TOP_SRV +socket.TIPC_WAIT_FOREVER +socket.TIPC_WITHDRAWN +socket.TIPC_ZONE_SCOPE +socket.create_connection(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(host, port [, family, socktype, proto, flags]) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.setdefaulttimeout(timeout) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.os(??) +socketserver.select(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +sorted(iterable, key=None, reverse=False) --> new sorted list +ssl.AF_INET +ssl.CERT_NONE +ssl.CERT_OPTIONAL +ssl.CERT_REQUIRED +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.HAS_SNI(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL +ssl.OP_NO_SSLv2 +ssl.OP_NO_SSLv3 +ssl.OP_NO_TLSv1 +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv2 +ssl.PROTOCOL_SSLv23 +ssl.PROTOCOL_SSLv3 +ssl.PROTOCOL_TLSv1 +ssl.RAND_add(string, entropy) +ssl.RAND_egd(path) -> bytes +ssl.RAND_status() -> 0 or 1 +ssl.SOCK_STREAM +ssl.SSLContext(??) +ssl.SSLError(??) +ssl.SSLSocket(??) +ssl.SSL_ERROR_EOF +ssl.SSL_ERROR_INVALID_ERROR_CODE +ssl.SSL_ERROR_SSL +ssl.SSL_ERROR_SYSCALL +ssl.SSL_ERROR_WANT_CONNECT +ssl.SSL_ERROR_WANT_READ +ssl.SSL_ERROR_WANT_WRITE +ssl.SSL_ERROR_WANT_X509_LOOKUP +ssl.SSL_ERROR_ZERO_RETURN +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.errno(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.match_hostname(??) +ssl.re(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.textwrap(??) +ssl.traceback(??) +ssl.wrap_socket(??) +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFREG +stat.S_IFSOCK +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(??) +stat.S_ISCHR(??) +stat.S_ISDIR(??) +stat.S_ISFIFO(??) +stat.S_ISGID +stat.S_ISLNK(??) +stat.S_ISREG(??) +stat.S_ISSOCK(??) +stat.S_ISUID +stat.S_ISVTX +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +staticmethod(function) -> method +str(string[, encoding[, errors]]) -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(fmt) -> integer +struct.error(??) +struct.pack(fmt, v1, v2, ...) -> bytes +struct.pack_into(fmt, buffer, offset, v1, v2, ...) +struct.unpack(fmt, buffer) -> (v1, v2, ...) +struct.unpack_from(fmt, buffer, offset=0) -> (v1, v2, ...) +subprocess.CalledProcessError(??) +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno(??) +subprocess.fcntl(??) +subprocess.gc(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.mswindows(??) +subprocess.os(??) +subprocess.pickle(??) +subprocess.select(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.traceback(??) +subprocess.warnings(??) +sum(iterable[, start]) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.open(??) +sunau.openfp(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.main(??) +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.OPT_IMPORT_STAR +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.api_version +sys.argv(??) +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode(??) +sys.exc_info() -> (type, value, traceback) +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.getswitchinterval() -> current thread switch interval; see setswitchinterval(). +sys.gettrace() +sys.hash_info(??) +sys.hexversion +sys.int_info(??) +sys.intern(string) -> string +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.setswitchinterval(n) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.subversion(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.S_IFBLK +tarfile.S_IFCHR +tarfile.S_IFDIR +tarfile.S_IFIFO +tarfile.S_IFLNK +tarfile.S_IFREG +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TGEXEC +tarfile.TGREAD +tarfile.TGWRITE +tarfile.TOEXEC +tarfile.TOREAD +tarfile.TOWRITE +tarfile.TSGID +tarfile.TSUID +tarfile.TSVTX +tarfile.TUEXEC +tarfile.TUREAD +tarfile.TUWRITE +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TarIter(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.errno(??) +tarfile.filemode(??) +tarfile.filemode_table(??) +tarfile.grp(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.select(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.re(??) +textwrap.string(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.deque(iterable[, maxlen]) --> deque object +threading.enumerate(??) +threading.local(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +token.AMPER +token.AMPEREQUAL +token.AT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.TILDE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.double3prog(??) +tokenize.endprogs(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(encoding) -> CodecInfo +tokenize.maybe(??) +tokenize.open(??) +tokenize.pseudoprog(??) +tokenize.re(??) +tokenize.single3prog(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.tokenprog(??) +tokenize.triple_quoted(??) +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc(??) +trace.inspect(??) +trace.io(??) +trace.linecache(??) +trace.main(??) +trace.modname(??) +trace.os(??) +trace.pickle(??) +trace.re(??) +trace.rx_blank(??) +trace.sys(??) +trace.threading(??) +trace.time(??) +trace.token(??) +trace.tokenize(??) +trace.usage(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +tty.B0 +tty.B1000000 +tty.B110 +tty.B115200 +tty.B1152000 +tty.B1200 +tty.B134 +tty.B150 +tty.B1500000 +tty.B1800 +tty.B19200 +tty.B200 +tty.B2000000 +tty.B230400 +tty.B2400 +tty.B2500000 +tty.B300 +tty.B3000000 +tty.B3500000 +tty.B38400 +tty.B4000000 +tty.B460800 +tty.B4800 +tty.B50 +tty.B500000 +tty.B57600 +tty.B576000 +tty.B600 +tty.B75 +tty.B921600 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CBAUD +tty.CBAUDEX +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CIBAUD +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.IOCSIZE_MASK +tty.IOCSIZE_SHIFT +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IUCLC +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCC +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.N_MOUSE +tty.N_PPP +tty.N_SLIP +tty.N_STRIP +tty.N_TTY +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.OLCUC +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCFLSH +tty.TCGETA +tty.TCGETS +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSBRK +tty.TCSBRKP +tty.TCSETA +tty.TCSETAF +tty.TCSETAW +tty.TCSETS +tty.TCSETSF +tty.TCSETSW +tty.TCXONC +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGICOUNT +tty.TIOCGLCKTRMIOS +tty.TIOCGPGRP +tty.TIOCGSERIAL +tty.TIOCGSOFTCAR +tty.TIOCGWINSZ +tty.TIOCINQ +tty.TIOCLINUX +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMIWAIT +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSERCONFIG +tty.TIOCSERGETLSR +tty.TIOCSERGETMULTI +tty.TIOCSERGSTRUCT +tty.TIOCSERGWILD +tty.TIOCSERSETMULTI +tty.TIOCSERSWILD +tty.TIOCSER_TEMT +tty.TIOCSETD +tty.TIOCSLCKTRMIOS +tty.TIOCSPGRP +tty.TIOCSSERIAL +tty.TIOCSSOFTCAR +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VSWTC +tty.VSWTCH +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.XCASE +tty.XTABS +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> empty tuple +type(object) -> the object's type +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CodeType(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MemberDescriptorType(??) +types.MethodType(??) +types.ModuleType(??) +types.TracebackType(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.scheme_chars +urllib.parse.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.parse.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.parse.splitnport(??) +urllib.parse.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.parse.splitport('host:port') --> 'host', 'port'. +urllib.parse.splitquery('/path?query') --> '/path', 'query'. +urllib.parse.splittag('/path#tag') --> '/path', 'tag'. +urllib.parse.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.parse.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.parse.splitvalue('attr=value') --> 'attr', 'value'. +urllib.parse.sys(??) +urllib.parse.to_bytes(u"URL") --> 'URL'. +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap('') --> 'type://host/path'. +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.collections(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.random(??) +urllib.request.randombytes(??) +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.request.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.request.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.request.splitport('host:port') --> 'host', 'port'. +urllib.request.splitquery('/path?query') --> '/path', 'query'. +urllib.request.splittag('/path#tag') --> '/path', 'tag'. +urllib.request.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.request.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.request.splitvalue('attr=value') --> 'attr', 'value'. +urllib.request.ssl(??) +urllib.request.sys(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.to_bytes(u"URL") --> 'URL'. +urllib.request.unquote(??) +urllib.request.unwrap('') --> 'type://host/path'. +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.robotparser(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID(??) +uuid.bytes_(??) +uuid.ctypes(??) +uuid.getnode(??) +uuid.int_(??) +uuid.lib(??) +uuid.libname +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.linecache(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.big_endian +wave.builtins(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.collections(??) +weakref.getweakrefcount(object) -- return the number of weak references +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.io(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex(??) +webbrowser.stat(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.time(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO([buffer]) -> object +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct(??) +xml.dom(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.EmptyNodeList(??) +xml.dom.domreg.NodeList(??) +xml.dom.domreg.StringTypes(??) +xml.dom.domreg.defproperty(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.EmptyNodeList(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.NodeList(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.StringTypes(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.defproperty(??) +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat(??) +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.codecs(??) +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.types(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder(??) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLTreeBuilder(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementPath(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLTreeBuilder(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO([buffer]) -> object +xmlrpc.client.DateTime(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(??) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.io(??) +xmlrpc.client.loads(??) +xmlrpc.client.operator(??) +xmlrpc.client.re(??) +xmlrpc.client.socket(??) +xmlrpc.client.time(??) +xmlrpc.server(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.http(??) +xmlrpc.server.inspect(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(iter1 [,iter2 [...]]) --> zip object +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.LargeZipFile(??) +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zipfile.error(??) +zipfile.imp(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.main(??) +zipfile.os(??) +zipfile.re(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.ZipImportError(??) +zipimport.zipimporter(archivepath) -> zipimporter object diff --git a/third_party/qscintilla/qsci/api/python/Python-3.3.api b/third_party/qscintilla/qsci/api/python/Python-3.3.api new file mode 100644 index 0000000..38a6125 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.3.api @@ -0,0 +1,10055 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IN.AF_APPLETALK +IN.AF_ATM +IN.AF_CCITT +IN.AF_CHAOS +IN.AF_CNT +IN.AF_COIP +IN.AF_DATAKIT +IN.AF_DECnet +IN.AF_DLI +IN.AF_E164 +IN.AF_ECMA +IN.AF_HYLINK +IN.AF_IMPLINK +IN.AF_INET +IN.AF_INET6 +IN.AF_IPX +IN.AF_ISDN +IN.AF_ISO +IN.AF_LAT +IN.AF_LINK +IN.AF_LOCAL +IN.AF_MAX +IN.AF_NATM +IN.AF_NDRV +IN.AF_NETBIOS +IN.AF_NETGRAPH +IN.AF_NS +IN.AF_OSI +IN.AF_PPP +IN.AF_PUP +IN.AF_RESERVED_36 +IN.AF_ROUTE +IN.AF_SIP +IN.AF_SNA +IN.AF_SYSTEM +IN.AF_UNIX +IN.AF_UNSPEC +IN.CMGROUP_MAX +IN.HTONL(??) +IN.HTONS(??) +IN.ICMP6_FILTER +IN.IN6_IS_ADDR_LINKLOCAL(??) +IN.IN6_IS_ADDR_LOOPBACK(??) +IN.IN6_IS_ADDR_MC_GLOBAL(??) +IN.IN6_IS_ADDR_MC_LINKLOCAL(??) +IN.IN6_IS_ADDR_MC_NODELOCAL(??) +IN.IN6_IS_ADDR_MC_ORGLOCAL(??) +IN.IN6_IS_ADDR_MC_SITELOCAL(??) +IN.IN6_IS_ADDR_SITELOCAL(??) +IN.IN6_IS_ADDR_UNSPECIFIED(??) +IN.IN6_IS_ADDR_V4COMPAT(??) +IN.IN6_IS_ADDR_V4MAPPED(??) +IN.INADDR_NONE +IN.INET6_ADDRSTRLEN +IN.INET_ADDRSTRLEN +IN.INT16_C(??) +IN.INT16_MAX +IN.INT16_MIN +IN.INT32_C(??) +IN.INT32_MAX +IN.INT32_MIN +IN.INT8_C(??) +IN.INT8_MAX +IN.INT8_MIN +IN.INTPTR_MAX +IN.INTPTR_MIN +IN.INT_FAST16_MAX +IN.INT_FAST16_MIN +IN.INT_FAST32_MAX +IN.INT_FAST32_MIN +IN.INT_FAST8_MAX +IN.INT_FAST8_MIN +IN.INT_LEAST16_MAX +IN.INT_LEAST16_MIN +IN.INT_LEAST32_MAX +IN.INT_LEAST32_MIN +IN.INT_LEAST8_MAX +IN.INT_LEAST8_MIN +IN.IN_BADCLASS(??) +IN.IN_CLASSA(??) +IN.IN_CLASSA_HOST +IN.IN_CLASSA_MAX +IN.IN_CLASSA_NET +IN.IN_CLASSA_NSHIFT +IN.IN_CLASSB(??) +IN.IN_CLASSB_HOST +IN.IN_CLASSB_MAX +IN.IN_CLASSB_NET +IN.IN_CLASSB_NSHIFT +IN.IN_CLASSC(??) +IN.IN_CLASSC_HOST +IN.IN_CLASSC_NET +IN.IN_CLASSC_NSHIFT +IN.IN_CLASSD(??) +IN.IN_CLASSD_HOST +IN.IN_CLASSD_NET +IN.IN_CLASSD_NSHIFT +IN.IN_EXPERIMENTAL(??) +IN.IN_LINKLOCAL(??) +IN.IN_LOOPBACKNET +IN.IN_MULTICAST(??) +IN.IPCTL_ACCEPTSOURCEROUTE +IN.IPCTL_DEFMTU +IN.IPCTL_DEFTTL +IN.IPCTL_DIRECTEDBROADCAST +IN.IPCTL_FASTFORWARDING +IN.IPCTL_FORWARDING +IN.IPCTL_GIF_TTL +IN.IPCTL_INTRQDROPS +IN.IPCTL_INTRQMAXLEN +IN.IPCTL_KEEPFAITH +IN.IPCTL_MAXID +IN.IPCTL_RTEXPIRE +IN.IPCTL_RTMAXCACHE +IN.IPCTL_RTMINEXPIRE +IN.IPCTL_SENDREDIRECTS +IN.IPCTL_SOURCEROUTE +IN.IPCTL_STATS +IN.IPPORT_HIFIRSTAUTO +IN.IPPORT_HILASTAUTO +IN.IPPORT_RESERVED +IN.IPPORT_RESERVEDSTART +IN.IPPORT_USERRESERVED +IN.IPPROTO_3PC +IN.IPPROTO_ADFS +IN.IPPROTO_AH +IN.IPPROTO_AHIP +IN.IPPROTO_APES +IN.IPPROTO_ARGUS +IN.IPPROTO_AX25 +IN.IPPROTO_BHA +IN.IPPROTO_BLT +IN.IPPROTO_BRSATMON +IN.IPPROTO_CFTP +IN.IPPROTO_CHAOS +IN.IPPROTO_CMTP +IN.IPPROTO_CPHB +IN.IPPROTO_CPNX +IN.IPPROTO_DDP +IN.IPPROTO_DGP +IN.IPPROTO_DIVERT +IN.IPPROTO_DONE +IN.IPPROTO_DSTOPTS +IN.IPPROTO_EGP +IN.IPPROTO_EMCON +IN.IPPROTO_ENCAP +IN.IPPROTO_EON +IN.IPPROTO_ESP +IN.IPPROTO_ETHERIP +IN.IPPROTO_FRAGMENT +IN.IPPROTO_GGP +IN.IPPROTO_GMTP +IN.IPPROTO_GRE +IN.IPPROTO_HELLO +IN.IPPROTO_HMP +IN.IPPROTO_HOPOPTS +IN.IPPROTO_ICMP +IN.IPPROTO_ICMPV6 +IN.IPPROTO_IDP +IN.IPPROTO_IDPR +IN.IPPROTO_IDRP +IN.IPPROTO_IGMP +IN.IPPROTO_IGP +IN.IPPROTO_IGRP +IN.IPPROTO_IL +IN.IPPROTO_INLSP +IN.IPPROTO_INP +IN.IPPROTO_IP +IN.IPPROTO_IPCOMP +IN.IPPROTO_IPCV +IN.IPPROTO_IPEIP +IN.IPPROTO_IPIP +IN.IPPROTO_IPPC +IN.IPPROTO_IPV4 +IN.IPPROTO_IPV6 +IN.IPPROTO_IRTP +IN.IPPROTO_KRYPTOLAN +IN.IPPROTO_LARP +IN.IPPROTO_LEAF1 +IN.IPPROTO_LEAF2 +IN.IPPROTO_MAX +IN.IPPROTO_MAXID +IN.IPPROTO_MEAS +IN.IPPROTO_MHRP +IN.IPPROTO_MICP +IN.IPPROTO_MTP +IN.IPPROTO_MUX +IN.IPPROTO_ND +IN.IPPROTO_NHRP +IN.IPPROTO_NONE +IN.IPPROTO_NSP +IN.IPPROTO_NVPII +IN.IPPROTO_OSPFIGP +IN.IPPROTO_PGM +IN.IPPROTO_PIGP +IN.IPPROTO_PIM +IN.IPPROTO_PRM +IN.IPPROTO_PUP +IN.IPPROTO_PVP +IN.IPPROTO_RAW +IN.IPPROTO_RCCMON +IN.IPPROTO_RDP +IN.IPPROTO_ROUTING +IN.IPPROTO_RSVP +IN.IPPROTO_RVD +IN.IPPROTO_SATEXPAK +IN.IPPROTO_SATMON +IN.IPPROTO_SCCSP +IN.IPPROTO_SDRP +IN.IPPROTO_SEP +IN.IPPROTO_SRPC +IN.IPPROTO_ST +IN.IPPROTO_SVMTP +IN.IPPROTO_SWIPE +IN.IPPROTO_TCF +IN.IPPROTO_TCP +IN.IPPROTO_TP +IN.IPPROTO_TPXX +IN.IPPROTO_TRUNK1 +IN.IPPROTO_TRUNK2 +IN.IPPROTO_TTP +IN.IPPROTO_UDP +IN.IPPROTO_VINES +IN.IPPROTO_VISA +IN.IPPROTO_VMTP +IN.IPPROTO_WBEXPAK +IN.IPPROTO_WBMON +IN.IPPROTO_WSN +IN.IPPROTO_XNET +IN.IPPROTO_XTP +IN.IPV6CTL_ACCEPT_RTADV +IN.IPV6CTL_AUTO_FLOWLABEL +IN.IPV6CTL_AUTO_LINKLOCAL +IN.IPV6CTL_DAD_COUNT +IN.IPV6CTL_DEFHLIM +IN.IPV6CTL_DEFMCASTHLIM +IN.IPV6CTL_DEFMTU +IN.IPV6CTL_FORWARDING +IN.IPV6CTL_FORWSRCRT +IN.IPV6CTL_GIF_HLIM +IN.IPV6CTL_HDRNESTLIMIT +IN.IPV6CTL_KAME_VERSION +IN.IPV6CTL_KEEPFAITH +IN.IPV6CTL_LOG_INTERVAL +IN.IPV6CTL_MAPPED_ADDR +IN.IPV6CTL_MAXFRAGPACKETS +IN.IPV6CTL_MAXFRAGS +IN.IPV6CTL_MAXID +IN.IPV6CTL_MRTPROTO +IN.IPV6CTL_MRTSTATS +IN.IPV6CTL_RIP6STATS +IN.IPV6CTL_RR_PRUNE +IN.IPV6CTL_RTEXPIRE +IN.IPV6CTL_RTMAXCACHE +IN.IPV6CTL_RTMINEXPIRE +IN.IPV6CTL_SENDREDIRECTS +IN.IPV6CTL_SOURCECHECK +IN.IPV6CTL_SOURCECHECK_LOGINT +IN.IPV6CTL_STATS +IN.IPV6CTL_TEMPPLTIME +IN.IPV6CTL_TEMPVLTIME +IN.IPV6CTL_USETEMPADDR +IN.IPV6CTL_USE_DEPRECATED +IN.IPV6CTL_V6ONLY +IN.IPV6PORT_ANONMAX +IN.IPV6PORT_ANONMIN +IN.IPV6PORT_RESERVED +IN.IPV6PORT_RESERVEDMAX +IN.IPV6PORT_RESERVEDMIN +IN.IPV6PROTO_MAXID +IN.IPV6_BINDV6ONLY +IN.IPV6_CHECKSUM +IN.IPV6_DEFAULT_MULTICAST_HOPS +IN.IPV6_DEFAULT_MULTICAST_LOOP +IN.IPV6_DSTOPTS +IN.IPV6_FAITH +IN.IPV6_FW_ADD +IN.IPV6_FW_DEL +IN.IPV6_FW_FLUSH +IN.IPV6_FW_GET +IN.IPV6_FW_ZERO +IN.IPV6_HOPLIMIT +IN.IPV6_HOPOPTS +IN.IPV6_IPSEC_POLICY +IN.IPV6_JOIN_GROUP +IN.IPV6_LEAVE_GROUP +IN.IPV6_MULTICAST_HOPS +IN.IPV6_MULTICAST_IF +IN.IPV6_MULTICAST_LOOP +IN.IPV6_NEXTHOP +IN.IPV6_OPTIONS +IN.IPV6_PKTINFO +IN.IPV6_PKTOPTIONS +IN.IPV6_PORTRANGE +IN.IPV6_PORTRANGE_DEFAULT +IN.IPV6_PORTRANGE_HIGH +IN.IPV6_PORTRANGE_LOW +IN.IPV6_RECVDSTADDR +IN.IPV6_RECVOPTS +IN.IPV6_RECVRETOPTS +IN.IPV6_RETOPTS +IN.IPV6_RTHDR +IN.IPV6_RTHDR_LOOSE +IN.IPV6_RTHDR_STRICT +IN.IPV6_RTHDR_TYPE_0 +IN.IPV6_SOCKOPT_RESERVED1 +IN.IPV6_UNICAST_HOPS +IN.IPV6_V6ONLY +IN.IP_ADD_MEMBERSHIP +IN.IP_DEFAULT_MULTICAST_LOOP +IN.IP_DEFAULT_MULTICAST_TTL +IN.IP_DROP_MEMBERSHIP +IN.IP_DUMMYNET_CONFIGURE +IN.IP_DUMMYNET_DEL +IN.IP_DUMMYNET_FLUSH +IN.IP_DUMMYNET_GET +IN.IP_FAITH +IN.IP_FORCE_OUT_IFP +IN.IP_FW_ADD +IN.IP_FW_DEL +IN.IP_FW_FLUSH +IN.IP_FW_GET +IN.IP_FW_RESETLOG +IN.IP_FW_ZERO +IN.IP_HDRINCL +IN.IP_IPSEC_POLICY +IN.IP_MAX_MEMBERSHIPS +IN.IP_MULTICAST_IF +IN.IP_MULTICAST_LOOP +IN.IP_MULTICAST_TTL +IN.IP_MULTICAST_VIF +IN.IP_NAT__XXX +IN.IP_OLD_FW_ADD +IN.IP_OLD_FW_DEL +IN.IP_OLD_FW_FLUSH +IN.IP_OLD_FW_GET +IN.IP_OLD_FW_RESETLOG +IN.IP_OLD_FW_ZERO +IN.IP_OPTIONS +IN.IP_PORTRANGE +IN.IP_PORTRANGE_DEFAULT +IN.IP_PORTRANGE_HIGH +IN.IP_PORTRANGE_LOW +IN.IP_RECVDSTADDR +IN.IP_RECVIF +IN.IP_RECVOPTS +IN.IP_RECVRETOPTS +IN.IP_RECVTTL +IN.IP_RETOPTS +IN.IP_RSVP_OFF +IN.IP_RSVP_ON +IN.IP_RSVP_VIF_OFF +IN.IP_RSVP_VIF_ON +IN.IP_STRIPHDR +IN.IP_TOS +IN.IP_TRAFFIC_MGT_BACKGROUND +IN.IP_TTL +IN.MSG_CTRUNC +IN.MSG_DONTROUTE +IN.MSG_DONTWAIT +IN.MSG_EOF +IN.MSG_EOR +IN.MSG_FLUSH +IN.MSG_HAVEMORE +IN.MSG_HOLD +IN.MSG_NEEDSA +IN.MSG_OOB +IN.MSG_PEEK +IN.MSG_RCVMORE +IN.MSG_SEND +IN.MSG_TRUNC +IN.MSG_WAITALL +IN.MSG_WAITSTREAM +IN.NET_MAXID +IN.NET_RT_DUMP +IN.NET_RT_DUMP2 +IN.NET_RT_FLAGS +IN.NET_RT_IFLIST +IN.NET_RT_IFLIST2 +IN.NET_RT_MAXID +IN.NET_RT_STAT +IN.NET_RT_TRASH +IN.NTOHL(??) +IN.NTOHS(??) +IN.PF_APPLETALK +IN.PF_ATM +IN.PF_CCITT +IN.PF_CHAOS +IN.PF_CNT +IN.PF_COIP +IN.PF_DATAKIT +IN.PF_DECnet +IN.PF_DLI +IN.PF_ECMA +IN.PF_HYLINK +IN.PF_IMPLINK +IN.PF_INET +IN.PF_INET6 +IN.PF_IPX +IN.PF_ISDN +IN.PF_ISO +IN.PF_KEY +IN.PF_LAT +IN.PF_LINK +IN.PF_LOCAL +IN.PF_MAX +IN.PF_NATM +IN.PF_NDRV +IN.PF_NETBIOS +IN.PF_NETGRAPH +IN.PF_NS +IN.PF_OSI +IN.PF_PIP +IN.PF_PPP +IN.PF_PUP +IN.PF_RESERVED_36 +IN.PF_ROUTE +IN.PF_RTIP +IN.PF_SIP +IN.PF_SNA +IN.PF_SYSTEM +IN.PF_UNIX +IN.PF_UNSPEC +IN.PF_XTP +IN.PTRDIFF_MAX +IN.PTRDIFF_MIN +IN.SCM_CREDS +IN.SCM_RIGHTS +IN.SCM_TIMESTAMP +IN.SHUT_RD +IN.SHUT_RDWR +IN.SHUT_WR +IN.SIG_ATOMIC_MAX +IN.SIG_ATOMIC_MIN +IN.SOCK_DGRAM +IN.SOCK_MAXADDRLEN +IN.SOCK_RAW +IN.SOCK_RDM +IN.SOCK_SEQPACKET +IN.SOCK_STREAM +IN.SOL_SOCKET +IN.SOMAXCONN +IN.SO_ACCEPTCONN +IN.SO_ACCEPTFILTER +IN.SO_BROADCAST +IN.SO_DEBUG +IN.SO_DONTROUTE +IN.SO_DONTTRUNC +IN.SO_ERROR +IN.SO_KEEPALIVE +IN.SO_LABEL +IN.SO_LINGER +IN.SO_LINGER_SEC +IN.SO_NKE +IN.SO_NOADDRERR +IN.SO_NOSIGPIPE +IN.SO_NOTIFYCONFLICT +IN.SO_NREAD +IN.SO_NWRITE +IN.SO_OOBINLINE +IN.SO_PEERLABEL +IN.SO_RCVBUF +IN.SO_RCVLOWAT +IN.SO_RCVTIMEO +IN.SO_RESTRICTIONS +IN.SO_RESTRICT_DENYIN +IN.SO_RESTRICT_DENYOUT +IN.SO_RESTRICT_DENYSET +IN.SO_REUSEADDR +IN.SO_REUSEPORT +IN.SO_REUSESHAREUID +IN.SO_SNDBUF +IN.SO_SNDLOWAT +IN.SO_SNDTIMEO +IN.SO_TIMESTAMP +IN.SO_TYPE +IN.SO_USELOOPBACK +IN.SO_WANTMORE +IN.SO_WANTOOBFLAG +IN.TRAFFIC_MGT_SO_BACKGROUND +IN.TRAFFIC_MGT_SO_BG_SUPPRESSED +IN.UINT16_MAX +IN.UINT8_MAX +IN.UINT_FAST16_MAX +IN.UINT_FAST8_MAX +IN.UINT_LEAST16_MAX +IN.UINT_LEAST8_MAX +IN.WCHAR_MAX +IN.WCHAR_MIN +IN.WINT_MAX +IN.WINT_MIN +IN.htonl(??) +IN.htons(??) +IN.ntohl(??) +IN.ntohs(??) +IN.pseudo_AF_HDRCMPLT +IN.pseudo_AF_KEY +IN.pseudo_AF_PIP +IN.pseudo_AF_RTIP +IN.pseudo_AF_XTP +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABCMeta(??) +abc.WeakSet(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +aifc.warnings(??) +all(iterable) -> bool +any(iterable) -> bool +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +array.ArrayType(??) +array.array(typecode [, initializer]) -> array +array.typecodes +ascii(object) -> string +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.Assert(??) +ast.Assign(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FunctionDef(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ONLY_AST +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.Try(??) +ast.Tuple(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.YieldFrom(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.unaryop(??) +ast.walk(??) +ast.withitem(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque(iterable[, maxlen]) --> deque object +asynchat.fifo(??) +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asynchat.socket(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.fcntl(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +audioop.add(??) +audioop.adpcm2lin(??) +audioop.alaw2lin(??) +audioop.avg(??) +audioop.avgpp(??) +audioop.bias(??) +audioop.cross(??) +audioop.error(??) +audioop.findfactor(??) +audioop.findfit(??) +audioop.findmax(??) +audioop.getsample(??) +audioop.lin2adpcm(??) +audioop.lin2alaw(??) +audioop.lin2lin(??) +audioop.lin2ulaw(??) +audioop.max(??) +audioop.maxpp(??) +audioop.minmax(??) +audioop.mul(??) +audioop.ratecv(??) +audioop.reverse(??) +audioop.rms(??) +audioop.tomono(??) +audioop.tostereo(??) +audioop.ulaw2lin(??) +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(number) -> string +binascii.Error(??) +binascii.Incomplete(??) +binascii.a2b_base64(??) +binascii.a2b_hex(hexstr) -> s; Binary data of hexadecimal representation. +binascii.a2b_hqx(??) +binascii.a2b_qp(??) +binascii.a2b_uu(??) +binascii.b2a_base64(??) +binascii.b2a_hex(data) -> s; Hexadecimal representation of binary data. +binascii.b2a_hqx(??) +binascii.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +binascii.b2a_uu(??) +binascii.crc32(??) +binascii.crc_hqx(??) +binascii.hexlify(??) +binascii.rlecode_hqx(??) +binascii.rledecode_hqx(??) +binascii.unhexlify(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(number) -> number +builtins.all(iterable) -> bool +builtins.any(iterable) -> bool +builtins.ascii(object) -> string +builtins.bin(number) -> string +builtins.bool(x) -> bool +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(object) -> bool +builtins.chr(i) -> Unicode character +builtins.classmethod(function) -> method +builtins.compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +builtins.complex(real[, imag]) -> complex number +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(object, name) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(x, y) -> (div, mod) +builtins.enumerate(iterable[, start]) -> iterator for index, value of iterable +builtins.eval(source[, globals[, locals]]) -> value +builtins.exec(object[, globals[, locals]]) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(x) -> floating point number +builtins.format(value[, format_spec]) -> string +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals() -> dictionary +builtins.hasattr(object, name) -> bool +builtins.hash(object) -> integer +builtins.help(??) +builtins.hex(number) -> string +builtins.id(object) -> integer +builtins.input([prompt]) -> string +builtins.int(x[, base]) -> integer +builtins.isinstance(object, class-or-type-or-tuple) -> bool +builtins.issubclass(C, B) -> bool +builtins.iter(iterable) -> iterator +builtins.len(object) -> integer +builtins.license(??) +builtins.list() -> new empty list +builtins.locals() -> dictionary +builtins.map(func, *iterables) --> map object +builtins.max(iterable[, key=func]) -> value +builtins.memoryview(object) +builtins.min(iterable[, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(number) -> string +builtins.open(??) +builtins.ord(c) -> integer +builtins.pow(x, y[, z]) -> number +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +builtins.quit(??) +builtins.range([start,] stop[, step]) -> range object +builtins.repr(object) -> string +builtins.reversed(sequence) -> reverse iterator over values of the sequence +builtins.round(number[, ndigits]) -> number +builtins.set() -> new empty set object +builtins.setattr(object, name, value) +builtins.slice([start,] stop[, step]) +builtins.sorted(iterable, key=None, reverse=False) --> new sorted list +builtins.staticmethod(function) -> method +builtins.str(object[, encoding[, errors]]) -> str +builtins.sum(iterable[, start]) -> value +builtins.super() -> same as super(__class__, ) +builtins.tuple() -> empty tuple +builtins.type(object) -> the object's type +builtins.vars([object]) -> dictionary +builtins.zip(iter1 [,iter2 [...]]) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(compresslevel=9) +bz2.BZ2Decompressor() +bz2.BZ2File(??) +bz2.RLock(??) +bz2.builtins(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.warnings(??) +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(object) -> bool +cgi.BytesIO([buffer]) -> object +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.escape(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warn(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(i) -> Unicode character +chunk.Chunk(??) +classmethod(function) -> method +cmath.acos(x) +cmath.acosh(x) +cmath.asin(x) +cmath.asinh(x) +cmath.atan(x) +cmath.atanh(x) +cmath.cos(x) +cmath.cosh(x) +cmath.e +cmath.exp(x) +cmath.isfinite(z) -> bool +cmath.isinf(z) -> bool +cmath.isnan(z) -> bool +cmath.log(x[, base]) -> the logarithm of x to the given base. +cmath.log10(x) +cmath.phase(z) -> float +cmath.pi +cmath.polar(z) -> r: float, phi: float +cmath.rect(r, phi) -> z: complex +cmath.sin(x) +cmath.sinh(x) +cmath.sqrt(x) +cmath.tan(x) +cmath.tanh(x) +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(encoding) -> CodecInfo +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unicode_internal_decode(??) +codecs.unicode_internal_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.ByteString(??) +collections.Callable(??) +collections.ChainMap(??) +collections.Container(??) +collections.Counter(??) +collections.Hashable(??) +collections.ItemsView(??) +collections.Iterable(??) +collections.Iterator(??) +collections.KeysView(??) +collections.Mapping(??) +collections.MappingView(??) +collections.MutableMapping(??) +collections.MutableSequence(??) +collections.MutableSet(??) +collections.OrderedDict(??) +collections.Sequence(??) +collections.Set(??) +collections.Sized(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.ValuesView(??) +collections.abc(??) +collections.abc.ABCMeta(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Container(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.abc.abstractmethod(??) +collections.abc.bytearray_iterator(??) +collections.abc.bytes_iterator(??) +collections.abc.dict_itemiterator(??) +collections.abc.dict_items(??) +collections.abc.dict_keyiterator(??) +collections.abc.dict_keys(??) +collections.abc.dict_valueiterator(??) +collections.abc.dict_values(??) +collections.abc.list_iterator(??) +collections.abc.list_reverseiterator(??) +collections.abc.mappingproxy(??) +collections.abc.range_iterator(??) +collections.abc.set_iterator(??) +collections.abc.str_iterator(??) +collections.abc.sys(??) +collections.abc.tuple_iterator(??) +collections.abc.zip_iterator(??) +collections.collections(??) +collections.defaultdict(default_factory) --> dict with default factory +collections.deque(iterable[, maxlen]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.errno(??) +compileall.imp(??) +compileall.main(??) +compileall.os(??) +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(real[, imag]) -> complex number +concurrent.futures.ALL_COMPLETED +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.Full(??) +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.SimpleQueue(??) +concurrent.futures.process.atexit(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.queue(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.wait(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.atexit(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque(iterable[, maxlen]) --> deque object +contextlib.sys(??) +contextlib.wraps(??) +copy.Error(??) +copy.PyStringMap(??) +copy.builtins(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copy.name +copy.t(??) +copy.weakref(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(iterable[, func]) --> accumulate object +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable, r) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(function or None, sequence) --> filterfalse object +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.islice(iterable, [start,] stop [, step]) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util.contextlib(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.newpad(??) +curses.newwin(??) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.wrapper(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(path[, flag[, mode]]) -> mapping +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +difflib.warnings(??) +dir([object]) -> list of strings +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.cmp_op(??) +dis.code_info(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.sys(??) +dis.types(??) +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +dummy_threading.Barrier(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread(??) +dummy_threading.ThreadError(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.local(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.compat32(??) +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.message(??) +email.feedparser.re(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO([buffer]) -> object +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.Header(??) +email.generator.NL +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.compat32(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.generator.warnings(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO([buffer]) -> object +email.message.Charset(??) +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.base64(??) +email.message.binascii(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio.BytesIO([buffer]) -> object +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base.MIMEBase(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.mime.text.encode_7or8bit(??) +email.parser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Message(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.parser.warnings(??) +email.policy.Compat32(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.strict(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.io(??) +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.StringIO(??) +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.base64(??) +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +email.utils.warnings(??) +enumerate(iterable[, start]) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(source[, globals[, locals]]) -> value +exec(object[, globals[, locals]]) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register an handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +fcntl.FASYNC +fcntl.FD_CLOEXEC +fcntl.F_DUPFD +fcntl.F_FULLFSYNC +fcntl.F_GETFD +fcntl.F_GETFL +fcntl.F_GETLK +fcntl.F_GETOWN +fcntl.F_NOCACHE +fcntl.F_RDLCK +fcntl.F_SETFD +fcntl.F_SETFL +fcntl.F_SETLK +fcntl.F_SETLKW +fcntl.F_SETOWN +fcntl.F_UNLCK +fcntl.F_WRLCK +fcntl.LOCK_EX +fcntl.LOCK_NB +fcntl.LOCK_SH +fcntl.LOCK_UN +fcntl.fcntl(fd, opt, [arg]) +fcntl.flock(fd, operation) +fcntl.ioctl(fd, opt[, arg[, mutate_flag]]) +fcntl.lockf (fd, operation, length=0, start=0, whence=0) +filecmp.BUFSIZE +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(function or None, sequence) --> filterfalse object +filecmp.os(??) +filecmp.stat(??) +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(files=None, inplace=False, backup="", bufsize=0, mode="r", openhook=None) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(value[, format_spec]) -> string +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.os(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.Lock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.cmp_to_key(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.reduce(function, sequence[, initial]) -> value +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage(??) +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.is_tracked(obj) -> bool +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.io(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.os(??) +gettext.re(??) +gettext.struct(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +globals() -> dictionary +grp.getgrall() -> list of tuples +grp.getgrgid(id) -> tuple +grp.getgrnam(name) -> tuple +grp.struct_group(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.open(??) +gzip.os(??) +gzip.read32(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(object, name) -> bool +hash(object) -> integer +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha512(??) +heapq.bisect(??) +heapq.chain(*iterables) --> chain object +heapq.count(start=0, step=1) --> count object +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(??) +heapq.heappushpop(??) +heapq.heapreplace(??) +heapq.islice(iterable, [start,] stop [, step]) --> islice object +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +heapq.repeat(object [,times]) -> create an iterator which returns the object +heapq.tee(iterable, n=2) --> tuple of n independent iterators. +help(??) +hex(number) -> string +hmac.HMAC(??) +hmac.compare_digest(a, b) -> bool +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser.HTMLParseError(??) +html.parser.HTMLParser(??) +html.parser.attrfind(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind(??) +html.parser.tagfind_tolerant(??) +html.parser.warnings(??) +http.client.ACCEPTED +http.client.BAD_GATEWAY +http.client.BAD_REQUEST +http.client.BadStatusLine(??) +http.client.CONFLICT +http.client.CONTINUE +http.client.CREATED +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED +http.client.FAILED_DEPENDENCY +http.client.FORBIDDEN +http.client.FOUND +http.client.GATEWAY_TIMEOUT +http.client.GONE +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED +http.client.IM_USED +http.client.INSUFFICIENT_STORAGE +http.client.INTERNAL_SERVER_ERROR +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED +http.client.LOCKED +http.client.LineTooLong(??) +http.client.MAXAMOUNT +http.client.METHOD_NOT_ALLOWED +http.client.MOVED_PERMANENTLY +http.client.MULTIPLE_CHOICES +http.client.MULTI_STATUS +http.client.NETWORK_AUTHENTICATION_REQUIRED +http.client.NON_AUTHORITATIVE_INFORMATION +http.client.NOT_ACCEPTABLE +http.client.NOT_EXTENDED +http.client.NOT_FOUND +http.client.NOT_IMPLEMENTED +http.client.NOT_MODIFIED +http.client.NO_CONTENT +http.client.NotConnected(??) +http.client.OK +http.client.PARTIAL_CONTENT +http.client.PAYMENT_REQUIRED +http.client.PRECONDITION_FAILED +http.client.PRECONDITION_REQUIRED +http.client.PROCESSING +http.client.PROXY_AUTHENTICATION_REQUIRED +http.client.REQUESTED_RANGE_NOT_SATISFIABLE +http.client.REQUEST_ENTITY_TOO_LARGE +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE +http.client.REQUEST_TIMEOUT +http.client.REQUEST_URI_TOO_LONG +http.client.RESET_CONTENT +http.client.ResponseNotReady(??) +http.client.SEE_OTHER +http.client.SERVICE_UNAVAILABLE +http.client.SWITCHING_PROTOCOLS +http.client.TEMPORARY_REDIRECT +http.client.TOO_MANY_REQUESTS +http.client.UNAUTHORIZED +http.client.UNPROCESSABLE_ENTITY +http.client.UNSUPPORTED_MEDIA_TYPE +http.client.UPGRADE_REQUIRED +http.client.USE_PROXY +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.io(??) +http.client.os(??) +http.client.parse_headers(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.client.warnings(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.argparse(??) +http.server.copy(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(object) -> integer +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.acquire_lock() -> None +imp.cache_from_source(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held() -> boolean +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock() -> None +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.warnings(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.PyLoader(??) +importlib.abc.PyPycLoader(??) +importlib.abc.ResourceLoader(??) +importlib.abc.SourceLoader(??) +importlib.abc.abc(??) +importlib.abc.imp(??) +importlib.abc.machinery(??) +importlib.abc.marshal(??) +importlib.abc.sys(??) +importlib.abc.tokenize(??) +importlib.abc.warnings(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.sys(??) +importlib.util.module_for_loader(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +input([prompt]) -> string +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CO_GENERATOR +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.ModuleInfo(name, suffix, mode, module_type) +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.currentframe(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.imp(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int(x[, base]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO([buffer]) -> object +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(iterable) -> iterator +itertools.accumulate(iterable[, func]) --> accumulate object +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable, r) --> combinations object +itertools.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.filterfalse(function or None, sequence) --> filterfalse object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.islice(iterable, [start,] stop [, step]) --> islice object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecoder(??) +json.JSONEncoder(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS +json.decoder.JSONArray(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.binascii(??) +json.decoder.c_scanstring(??) +json.decoder.errmsg(??) +json.decoder.linecol(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.decoder.struct(??) +json.decoder.sys(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.FLOAT_REPR(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(??) +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +keyword.main(??) +len(object) -> integer +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list() -> new empty list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.collections(??) +locale.currency(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.windows_locale(??) +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.socket(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.thread(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers.BOM_UTF8 +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.errno(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(format=FORMAT_AUTO, memlimit=None, filters=None) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(check_id) -> bool +lzma.open(??) +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(??) +macpath.S_ISCHR(??) +macpath.S_ISDIR(??) +macpath.S_ISFIFO(??) +macpath.S_ISGID +macpath.S_ISLNK(??) +macpath.S_ISREG(??) +macpath.S_ISSOCK(??) +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_COMPRESSED +macpath.UF_HIDDEN +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep(??) +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.filemode(??) +macpath.genericpath(??) +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os(??) +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames(??) +macurl2path.os(??) +macurl2path.pathname2url(??) +macurl2path.test(??) +macurl2path.url2pathname(??) +macurl2path.urllib(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.sys(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(func, *iterables) --> map object +marshal.dump(value, file[, version]) +marshal.dumps(value[, version]) +marshal.load(file) +marshal.loads(bytes) +marshal.version +math.acos(x) +math.acosh(x) +math.asin(x) +math.asinh(x) +math.atan(x) +math.atan2(y, x) +math.atanh(x) +math.ceil(x) +math.copysign(x, y) +math.cos(x) +math.cosh(x) +math.degrees(x) +math.e +math.erf(x) +math.erfc(x) +math.exp(x) +math.expm1(x) +math.fabs(x) +math.factorial(x) -> Integral +math.floor(x) +math.fmod(x, y) +math.frexp(x) +math.fsum(iterable) +math.gamma(x) +math.hypot(x, y) +math.isfinite(x) -> bool +math.isinf(x) -> bool +math.isnan(x) -> bool +math.ldexp(x, i) +math.lgamma(x) +math.log(x[, base]) +math.log10(x) +math.log1p(x) +math.log2(x) +math.modf(x) +math.pi +math.pow(x, y) +math.radians(x) +math.sin(x) +math.sinh(x) +math.sqrt(x) +math.tan(x) +math.tanh(x) +math.trunc(x:Real) -> Integral +max(iterable[, key=func]) -> value +memoryview(object) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable[, key=func]) -> value +mmap.ACCESS_COPY +mmap.ACCESS_READ +mmap.ACCESS_WRITE +mmap.ALLOCATIONGRANULARITY +mmap.MAP_ANON +mmap.MAP_ANONYMOUS +mmap.MAP_PRIVATE +mmap.MAP_SHARED +mmap.PAGESIZE +mmap.PROT_EXEC +mmap.PROT_READ +mmap.PROT_WRITE +mmap.error(??) +mmap.mmap(??) +modulefinder.AddPackagePath(??) +modulefinder.HAVE_ARGUMENT +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.imp(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.struct(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Finalize(??) +multiprocessing.connection.ForkingPickler(??) +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.current_process(??) +multiprocessing.connection.debug(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.errno(??) +multiprocessing.connection.families(??) +multiprocessing.connection.get_temp_dir(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.pickle(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.select(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sub_debug(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.wait(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list() -> new empty list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forking(??) +multiprocessing.forking.ForkingPickler(??) +multiprocessing.forking.Pickler(file, protocol=None) +multiprocessing.forking.Popen(??) +multiprocessing.forking.assert_spawning(??) +multiprocessing.forking.close(fd) +multiprocessing.forking.dispatch_table(??) +multiprocessing.forking.duplicate(??) +multiprocessing.forking.old_main_modules(??) +multiprocessing.forking.os(??) +multiprocessing.forking.partial(func, *args, **keywords) - new function with partial application +multiprocessing.forking.prepare(??) +multiprocessing.forking.process(??) +multiprocessing.forking.signal(??) +multiprocessing.forking.sys(??) +multiprocessing.forking.util(??) +multiprocessing.freeze_support(??) +multiprocessing.get_logger(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Finalize(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.info(??) +multiprocessing.heap.itertools(??) +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.threading(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AuthenticationString(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.ForkingPickler(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.Pool(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.Popen(??) +multiprocessing.managers.Process(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.active_children(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.copyreg(??) +multiprocessing.managers.current_process(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.os(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.Finalize(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.Process(??) +multiprocessing.pool.RUN +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.cpu_count(??) +multiprocessing.pool.debug(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.worker(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.Process(??) +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum +multiprocessing.process.sys(??) +multiprocessing.queues(??) +multiprocessing.queues.BoundedSemaphore(??) +multiprocessing.queues.Condition(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Lock(??) +multiprocessing.queues.Pipe(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.Semaphore(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.assert_spawning(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ResourceSharer(??) +multiprocessing.reduction.current_process(??) +multiprocessing.reduction.debug(??) +multiprocessing.reduction.is_exiting(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.rebuild_connection(??) +multiprocessing.reduction.rebuild_socket(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.reduce_connection(??) +multiprocessing.reduction.reduce_socket(??) +multiprocessing.reduction.register_after_fork(??) +multiprocessing.reduction.resource_sharer(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.signal(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.struct(??) +multiprocessing.reduction.sub_debug(??) +multiprocessing.reduction.sub_warning(??) +multiprocessing.reduction.sys(??) +multiprocessing.reduction.threading(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.ForkingPickler(??) +multiprocessing.sharedctypes.RLock(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.synchronize(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.Popen(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.assert_spawning(??) +multiprocessing.synchronize.current_process(??) +multiprocessing.synchronize.debug(??) +multiprocessing.synchronize.register_after_fork(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.threading(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.active_children(??) +multiprocessing.util.atexit(??) +multiprocessing.util.current_process(??) +multiprocessing.util.debug(??) +multiprocessing.util.functools(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.io(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +next(iterator[, default]) +nis.cat(map, domain = defaultdomain) +nis.error(??) +nis.get_default_domain() -> str +nis.maps(domain = defaultdomain) +nis.match(key, map, domain = defaultdomain) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(number) -> string +open(??) +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imod(??) +operator.imul(??) +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(a, b) -- Same as a<=b. +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.rshift(a, b) -- Same as a >> b. +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(c) -> integer +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_TRAPPED +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_EXLOCK +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITED +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(path, mode, *, dir_fd=None, effective_ids=False, follow_symlinks=True) +os.altsep(??) +os.chdir(path) +os.chflags(path, flags, *, follow_symlinks=True) +os.chmod(path, mode, *, dir_fd=None, follow_symlinks=True) +os.chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True) +os.chroot(path) +os.close(fd) +os.closerange(fd_low, fd_high) +os.confstr(name) -> string +os.confstr_names(??) +os.ctermid() -> string +os.curdir +os.defpath +os.device_encoding(fd) -> str +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ(??) +os.environb(??) +os.errno(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fd) +os.fchmod(fd, mode) +os.fchown(fd, uid, gid) +os.fdopen(??) +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fsdecode(??) +os.fsencode(??) +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.get_exec_path(??) +os.get_terminal_size(??) +os.getcwd() -> path +os.getcwdb() -> path +os.getegid() -> egid +os.getenv(??) +os.getenvb(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgrouplist(user, group) -> list of groups to which a user belongs +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getpriority(which, who) -> current_priority +os.getsid(pid) -> sid +os.getuid() -> uid +os.initgroups(username, gid) -> None +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchflags(path, flags) +os.lchmod(path, mode) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst, *, src_dir_fd=None, dst_dir_fd=None, follow_symlinks=True) +os.listdir(path='.') -> list_of_filenames +os.lockf(fd, cmd, len) +os.lseek(fd, pos, how) -> newpos +os.lstat(path, *, dir_fd=None) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0o777][, exist_ok=False]) +os.minor(device) -> minor number +os.mkdir(path, mode=0o777, *, dir_fd=None) +os.mkfifo(path, mode=0o666, *, dir_fd=None) +os.mknod(filename, mode=0o600, device=0, *, dir_fd=None) +os.name +os.nice(inc) -> new_priority +os.open(path, flags, mode=0o777, *, dir_fd=None) +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path(??) +os.pathconf(path, name) -> integer +os.pathconf_names(??) +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(??) +os.pread(fd, buffersize, offset) -> string +os.putenv(key, value) +os.pwrite(fd, string, offset) -> byteswritten +os.read(fd, buffersize) -> string +os.readlink(path, *, dir_fd=None) -> path +os.readv(fd, buffers) -> bytesread +os.remove(path, *, dir_fd=None) +os.removedirs(path) +os.rename(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +os.renames(old, new) +os.replace(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +os.rmdir(path, *, dir_fd=None) +os.sched_get_priority_max(policy) +os.sched_get_priority_min(policy) +os.sched_yield() +os.sendfile(out, in, offset, nbytes) -> byteswritten +os.sep +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setpriority(which, who, prio) -> None +os.setregid(rgid, egid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(path, *, dir_fd=None, follow_symlinks=True) -> stat result +os.stat_float_times([newval]) -> oldval +os.stat_result(??) +os.statvfs(path) +os.statvfs_result(??) +os.strerror(code) -> string +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(src, dst, target_is_directory=False, *, dir_fd=None) +os.sync() +os.sys(??) +os.sysconf(name) -> integer +os.sysconf_names(??) +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.terminal_size(??) +os.times() -> times_result +os.times_result(??) +os.truncate(path, length) +os.ttyname(fd) -> string +os.umask(new_mask) -> old_mask +os.uname() -> uname_result +os.uname_result(??) +os.unlink(path, *, dir_fd=None) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, times=None, *, ns=None, dir_fd=None, follow_symlinks=True) +os.wait() -> (pid, status) +os.wait3(options) -> (pid, status, rusage) +os.wait4(pid, options) -> (pid, status, rusage) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, string) -> byteswritten +os.writev(fd, buffers) -> byteswritten +packaging.command.PackagingModuleError(??) +packaging.command.STANDARD_COMMANDS(??) +packaging.command.bdist.Command(??) +packaging.command.bdist.PackagingOptionError(??) +packaging.command.bdist.PackagingPlatformError(??) +packaging.command.bdist.bdist(??) +packaging.command.bdist.os(??) +packaging.command.bdist.show_formats(??) +packaging.command.bdist.util(??) +packaging.command.bdist_dumb.Command(??) +packaging.command.bdist_dumb.PackagingPlatformError(??) +packaging.command.bdist_dumb.bdist_dumb(??) +packaging.command.bdist_dumb.get_platform(??) +packaging.command.bdist_dumb.get_python_version(??) +packaging.command.bdist_dumb.logger(??) +packaging.command.bdist_dumb.os(??) +packaging.command.bdist_dumb.rmtree(??) +packaging.command.bdist_wininst.Command(??) +packaging.command.bdist_wininst.PackagingOptionError(??) +packaging.command.bdist_wininst.PackagingPlatformError(??) +packaging.command.bdist_wininst.bdist_wininst(??) +packaging.command.bdist_wininst.get_platform(??) +packaging.command.bdist_wininst.get_python_version(??) +packaging.command.bdist_wininst.logger(??) +packaging.command.bdist_wininst.os(??) +packaging.command.bdist_wininst.rmtree(??) +packaging.command.bdist_wininst.sys(??) +packaging.command.build.Command(??) +packaging.command.build.PackagingOptionError(??) +packaging.command.build.build(??) +packaging.command.build.get_platform(??) +packaging.command.build.os(??) +packaging.command.build.show_compilers(??) +packaging.command.build.sys(??) +packaging.command.build_clib.Command(??) +packaging.command.build_clib.PackagingSetupError(??) +packaging.command.build_clib.build_clib(??) +packaging.command.build_clib.customize_compiler(??) +packaging.command.build_clib.logger(??) +packaging.command.build_clib.new_compiler(??) +packaging.command.build_clib.os(??) +packaging.command.build_clib.show_compilers(??) +packaging.command.build_ext.CCompilerError(??) +packaging.command.build_ext.Command(??) +packaging.command.build_ext.CompileError(??) +packaging.command.build_ext.Extension(??) +packaging.command.build_ext.PackagingError(??) +packaging.command.build_ext.PackagingPlatformError(??) +packaging.command.build_ext.PackagingSetupError(??) +packaging.command.build_ext.build_ext(??) +packaging.command.build_ext.customize_compiler(??) +packaging.command.build_ext.extension_name_re(??) +packaging.command.build_ext.get_platform(??) +packaging.command.build_ext.logger(??) +packaging.command.build_ext.newer_group(??) +packaging.command.build_ext.os(??) +packaging.command.build_ext.re(??) +packaging.command.build_ext.show_compilers(??) +packaging.command.build_ext.site(??) +packaging.command.build_ext.sys(??) +packaging.command.build_ext.sysconfig(??) +packaging.command.build_py.Command(??) +packaging.command.build_py.Mixin2to3(??) +packaging.command.build_py.PackagingFileError(??) +packaging.command.build_py.PackagingOptionError(??) +packaging.command.build_py.build_py(??) +packaging.command.build_py.convert_path(??) +packaging.command.build_py.glob(??) +packaging.command.build_py.imp(??) +packaging.command.build_py.logger(??) +packaging.command.build_py.os(??) +packaging.command.build_scripts.Command(??) +packaging.command.build_scripts.Mixin2to3(??) +packaging.command.build_scripts.build_scripts(??) +packaging.command.build_scripts.convert_path(??) +packaging.command.build_scripts.detect_encoding(??) +packaging.command.build_scripts.first_line_re(??) +packaging.command.build_scripts.logger(??) +packaging.command.build_scripts.newer(??) +packaging.command.build_scripts.os(??) +packaging.command.build_scripts.re(??) +packaging.command.build_scripts.sysconfig(??) +packaging.command.check.Command(??) +packaging.command.check.PackagingSetupError(??) +packaging.command.check.check(??) +packaging.command.check.logger(??) +packaging.command.check.resolve_name(??) +packaging.command.clean.Command(??) +packaging.command.clean.clean(??) +packaging.command.clean.logger(??) +packaging.command.clean.os(??) +packaging.command.clean.rmtree(??) +packaging.command.cmd.Command(??) +packaging.command.cmd.PackagingOptionError(??) +packaging.command.cmd.copyfile(??) +packaging.command.cmd.logger(??) +packaging.command.cmd.make_archive(??) +packaging.command.cmd.move(??) +packaging.command.cmd.os(??) +packaging.command.cmd.re(??) +packaging.command.cmd.util(??) +packaging.command.config.Command(??) +packaging.command.config.LANG_EXT(??) +packaging.command.config.PackagingExecError(??) +packaging.command.config.config(??) +packaging.command.config.customize_compiler(??) +packaging.command.config.dump_file(??) +packaging.command.config.logger(??) +packaging.command.config.os(??) +packaging.command.config.re(??) +packaging.command.get_command_class(??) +packaging.command.get_command_names(??) +packaging.command.install_dist.Command(??) +packaging.command.install_dist.PackagingOptionError(??) +packaging.command.install_dist.PackagingPlatformError(??) +packaging.command.install_dist.change_root(??) +packaging.command.install_dist.convert_path(??) +packaging.command.install_dist.get_config_var(??) +packaging.command.install_dist.get_config_vars(??) +packaging.command.install_dist.get_path(??) +packaging.command.install_dist.get_paths(??) +packaging.command.install_dist.get_platform(??) +packaging.command.install_dist.install_dist(??) +packaging.command.install_dist.logger(??) +packaging.command.install_dist.os(??) +packaging.command.install_dist.sys(??) +packaging.command.install_dist.sysconfig(??) +packaging.command.install_dist.write_file(??) +packaging.command.install_distinfo.Command(??) +packaging.command.install_distinfo.csv(??) +packaging.command.install_distinfo.hashlib(??) +packaging.command.install_distinfo.install_distinfo(??) +packaging.command.install_distinfo.logger(??) +packaging.command.install_distinfo.os(??) +packaging.command.install_distinfo.rmtree(??) +packaging.command.install_headers.Command(??) +packaging.command.install_headers.install_headers(??) +packaging.command.install_lib.Command(??) +packaging.command.install_lib.PYTHON_SOURCE_EXTENSION +packaging.command.install_lib.PackagingOptionError(??) +packaging.command.install_lib.imp(??) +packaging.command.install_lib.install_lib(??) +packaging.command.install_lib.logger(??) +packaging.command.install_lib.os(??) +packaging.command.install_scripts.Command(??) +packaging.command.install_scripts.install_scripts(??) +packaging.command.install_scripts.logger(??) +packaging.command.install_scripts.os(??) +packaging.command.os(??) +packaging.command.register.Command(??) +packaging.command.register.DEFAULT_REALM +packaging.command.register.DEFAULT_REPOSITORY +packaging.command.register.encode_multipart(??) +packaging.command.register.generate_pypirc(??) +packaging.command.register.get_pypirc_path(??) +packaging.command.register.getpass(??) +packaging.command.register.logger(??) +packaging.command.register.read_pypirc(??) +packaging.command.register.register(??) +packaging.command.register.urllib(??) +packaging.command.resolve_name(??) +packaging.command.sdist.Command(??) +packaging.command.sdist.Manifest(??) +packaging.command.sdist.PackagingFileError(??) +packaging.command.sdist.PackagingModuleError(??) +packaging.command.sdist.PackagingOptionError(??) +packaging.command.sdist.PackagingPlatformError(??) +packaging.command.sdist.StringIO(??) +packaging.command.sdist.get_archive_formats(??) +packaging.command.sdist.get_command_names(??) +packaging.command.sdist.logger(??) +packaging.command.sdist.os(??) +packaging.command.sdist.re(??) +packaging.command.sdist.resolve_name(??) +packaging.command.sdist.rmtree(??) +packaging.command.sdist.sdist(??) +packaging.command.sdist.show_formats(??) +packaging.command.sdist.sys(??) +packaging.command.set_command(??) +packaging.command.test.Command(??) +packaging.command.test.PackagingOptionError(??) +packaging.command.test.get_distribution(??) +packaging.command.test.logger(??) +packaging.command.test.logging(??) +packaging.command.test.os(??) +packaging.command.test.resolve_name(??) +packaging.command.test.sys(??) +packaging.command.test.test(??) +packaging.command.test.unittest(??) +packaging.command.upload.Command(??) +packaging.command.upload.DEFAULT_REALM +packaging.command.upload.DEFAULT_REPOSITORY +packaging.command.upload.HTTPError(??) +packaging.command.upload.PackagingOptionError(??) +packaging.command.upload.Request(??) +packaging.command.upload.encode_multipart(??) +packaging.command.upload.logger(??) +packaging.command.upload.logging(??) +packaging.command.upload.md5(??) +packaging.command.upload.os(??) +packaging.command.upload.platform(??) +packaging.command.upload.read_pypirc(??) +packaging.command.upload.socket(??) +packaging.command.upload.spawn(??) +packaging.command.upload.standard_b64encode(??) +packaging.command.upload.upload(??) +packaging.command.upload.urllib(??) +packaging.command.upload.urlopen(??) +packaging.command.upload_docs.BytesIO([buffer]) -> object +packaging.command.upload_docs.Command(??) +packaging.command.upload_docs.DEFAULT_REALM +packaging.command.upload_docs.DEFAULT_REPOSITORY +packaging.command.upload_docs.PackagingFileError(??) +packaging.command.upload_docs.base64(??) +packaging.command.upload_docs.encode_multipart(??) +packaging.command.upload_docs.http(??) +packaging.command.upload_docs.logger(??) +packaging.command.upload_docs.logging(??) +packaging.command.upload_docs.os(??) +packaging.command.upload_docs.read_pypirc(??) +packaging.command.upload_docs.socket(??) +packaging.command.upload_docs.upload_docs(??) +packaging.command.upload_docs.urllib(??) +packaging.command.upload_docs.zip_dir(??) +packaging.command.upload_docs.zipfile(??) +packaging.compat.Mixin2to3(??) +packaging.compat.logger(??) +packaging.compiler.PackagingPlatformError(??) +packaging.compiler.ccompiler.CCompiler(??) +packaging.compiler.ccompiler.CompileError(??) +packaging.compiler.ccompiler.LinkError(??) +packaging.compiler.ccompiler.UnknownFileError(??) +packaging.compiler.ccompiler.execute(??) +packaging.compiler.ccompiler.gen_preprocess_options(??) +packaging.compiler.ccompiler.logger(??) +packaging.compiler.ccompiler.move(??) +packaging.compiler.ccompiler.newer_group(??) +packaging.compiler.ccompiler.os(??) +packaging.compiler.ccompiler.spawn(??) +packaging.compiler.ccompiler.split_quoted(??) +packaging.compiler.customize_compiler(??) +packaging.compiler.cygwinccompiler.CONFIG_H_NOTOK +packaging.compiler.cygwinccompiler.CONFIG_H_OK +packaging.compiler.cygwinccompiler.CONFIG_H_UNCERTAIN +packaging.compiler.cygwinccompiler.CompileError(??) +packaging.compiler.cygwinccompiler.CygwinCCompiler(??) +packaging.compiler.cygwinccompiler.Mingw32CCompiler(??) +packaging.compiler.cygwinccompiler.PackagingExecError(??) +packaging.compiler.cygwinccompiler.UnixCCompiler(??) +packaging.compiler.cygwinccompiler.UnknownFileError(??) +packaging.compiler.cygwinccompiler.check_config_h(??) +packaging.compiler.cygwinccompiler.get_compiler_versions(??) +packaging.compiler.cygwinccompiler.get_msvcr(??) +packaging.compiler.cygwinccompiler.logger(??) +packaging.compiler.cygwinccompiler.os(??) +packaging.compiler.cygwinccompiler.sys(??) +packaging.compiler.cygwinccompiler.sysconfig(??) +packaging.compiler.cygwinccompiler.write_file(??) +packaging.compiler.extension(??) +packaging.compiler.extension.Extension(??) +packaging.compiler.extension.logger(??) +packaging.compiler.gen_lib_options(??) +packaging.compiler.gen_preprocess_options(??) +packaging.compiler.get_default_compiler(??) +packaging.compiler.logger(??) +packaging.compiler.msvccompiler.CCompiler(??) +packaging.compiler.msvccompiler.CompileError(??) +packaging.compiler.msvccompiler.LibError(??) +packaging.compiler.msvccompiler.LinkError(??) +packaging.compiler.msvccompiler.MSVCCompiler(??) +packaging.compiler.msvccompiler.MacroExpander(??) +packaging.compiler.msvccompiler.PackagingExecError(??) +packaging.compiler.msvccompiler.PackagingPlatformError(??) +packaging.compiler.msvccompiler.convert_mbcs(??) +packaging.compiler.msvccompiler.gen_lib_options(??) +packaging.compiler.msvccompiler.get_build_architecture(??) +packaging.compiler.msvccompiler.get_build_version(??) +packaging.compiler.msvccompiler.logger(??) +packaging.compiler.msvccompiler.normalize_and_reduce_paths(??) +packaging.compiler.msvccompiler.os(??) +packaging.compiler.msvccompiler.read_keys(??) +packaging.compiler.msvccompiler.read_values(??) +packaging.compiler.msvccompiler.sys(??) +packaging.compiler.new_compiler(??) +packaging.compiler.os(??) +packaging.compiler.re(??) +packaging.compiler.resolve_name(??) +packaging.compiler.set_compiler(??) +packaging.compiler.show_compilers(??) +packaging.compiler.sys(??) +packaging.compiler.sysconfig(??) +packaging.compiler.unixccompiler.CCompiler(??) +packaging.compiler.unixccompiler.CompileError(??) +packaging.compiler.unixccompiler.LibError(??) +packaging.compiler.unixccompiler.LinkError(??) +packaging.compiler.unixccompiler.PackagingExecError(??) +packaging.compiler.unixccompiler.UnixCCompiler(??) +packaging.compiler.unixccompiler.gen_lib_options(??) +packaging.compiler.unixccompiler.gen_preprocess_options(??) +packaging.compiler.unixccompiler.logger(??) +packaging.compiler.unixccompiler.newer(??) +packaging.compiler.unixccompiler.os(??) +packaging.compiler.unixccompiler.sys(??) +packaging.compiler.unixccompiler.sysconfig(??) +packaging.config.Config(??) +packaging.config.Extension(??) +packaging.config.PackagingOptionError(??) +packaging.config.RawConfigParser(??) +packaging.config.check_environ(??) +packaging.config.get_resources_dests(??) +packaging.config.iglob(??) +packaging.config.interpret(??) +packaging.config.logger(??) +packaging.config.logging(??) +packaging.config.os(??) +packaging.config.resolve_name(??) +packaging.config.set_command(??) +packaging.config.set_compiler(??) +packaging.config.split(??) +packaging.config.split_multiline(??) +packaging.config.strtobool(??) +packaging.config.sys(??) +packaging.create.CLASSIFIERS(??) +packaging.create.LICENCES(??) +packaging.create.MainProgram(??) +packaging.create.PROJECT_MATURITY(??) +packaging.create.RawConfigParser(??) +packaging.create.ask(??) +packaging.create.ask_yn(??) +packaging.create.convert_yn_to_bool(??) +packaging.create.dedent(??) +packaging.create.detect_encoding(??) +packaging.create.glob(??) +packaging.create.imp(??) +packaging.create.is_valid_version(??) +packaging.create.load_setup(??) +packaging.create.logger(??) +packaging.create.main(??) +packaging.create.md5(??) +packaging.create.os(??) +packaging.create.re(??) +packaging.create.shutil(??) +packaging.create.sys(??) +packaging.create.sysconfig(??) +packaging.database.DIST_FILES(??) +packaging.database.Distribution(??) +packaging.database.EggInfoDistribution(??) +packaging.database.Metadata(??) +packaging.database.PackagingError(??) +packaging.database.StringIO(??) +packaging.database.VersionPredicate(??) +packaging.database.clear_cache(??) +packaging.database.csv(??) +packaging.database.disable_cache(??) +packaging.database.distinfo_dirname(??) +packaging.database.enable_cache(??) +packaging.database.get_distribution(??) +packaging.database.get_distributions(??) +packaging.database.get_file(??) +packaging.database.get_file_path(??) +packaging.database.get_file_users(??) +packaging.database.logger(??) +packaging.database.md5(??) +packaging.database.obsoletes_distribution(??) +packaging.database.os(??) +packaging.database.provides_distribution(??) +packaging.database.re(??) +packaging.database.suggest_normalized_version(??) +packaging.database.sys(??) +packaging.database.zipimport(??) +packaging.depgraph.DependencyGraph(??) +packaging.depgraph.IrrationalVersionError(??) +packaging.depgraph.PackagingError(??) +packaging.depgraph.StringIO(??) +packaging.depgraph.VersionPredicate(??) +packaging.depgraph.dependent_dists(??) +packaging.depgraph.generate_graph(??) +packaging.depgraph.graph_to_dot(??) +packaging.depgraph.main(??) +packaging.depgraph.sys(??) +packaging.dist.Command(??) +packaging.dist.Config(??) +packaging.dist.Distribution(??) +packaging.dist.FancyGetopt(??) +packaging.dist.Metadata(??) +packaging.dist.PackagingArgError(??) +packaging.dist.PackagingClassError(??) +packaging.dist.PackagingModuleError(??) +packaging.dist.PackagingOptionError(??) +packaging.dist.STANDARD_COMMANDS(??) +packaging.dist.USAGE +packaging.dist.command_re(??) +packaging.dist.gen_usage(??) +packaging.dist.get_command_class(??) +packaging.dist.logger(??) +packaging.dist.os(??) +packaging.dist.re(??) +packaging.dist.resolve_name(??) +packaging.dist.strtobool(??) +packaging.errors.CCompilerError(??) +packaging.errors.CompileError(??) +packaging.errors.HugeMajorVersionNumError(??) +packaging.errors.InstallationConflict(??) +packaging.errors.InstallationException(??) +packaging.errors.IrrationalVersionError(??) +packaging.errors.LibError(??) +packaging.errors.LinkError(??) +packaging.errors.MetadataConflictError(??) +packaging.errors.MetadataMissingError(??) +packaging.errors.MetadataUnrecognizedVersionError(??) +packaging.errors.PackagingArgError(??) +packaging.errors.PackagingClassError(??) +packaging.errors.PackagingError(??) +packaging.errors.PackagingExecError(??) +packaging.errors.PackagingFileError(??) +packaging.errors.PackagingGetoptError(??) +packaging.errors.PackagingInternalError(??) +packaging.errors.PackagingModuleError(??) +packaging.errors.PackagingOptionError(??) +packaging.errors.PackagingPlatformError(??) +packaging.errors.PackagingPyPIError(??) +packaging.errors.PackagingSetupError(??) +packaging.errors.PackagingTemplateError(??) +packaging.errors.PreprocessError(??) +packaging.errors.UnknownFileError(??) +packaging.fancy_getopt.FancyGetopt(??) +packaging.fancy_getopt.OptionDummy(??) +packaging.fancy_getopt.PackagingArgError(??) +packaging.fancy_getopt.PackagingGetoptError(??) +packaging.fancy_getopt.fancy_getopt(??) +packaging.fancy_getopt.getopt(??) +packaging.fancy_getopt.longopt_pat +packaging.fancy_getopt.longopt_re(??) +packaging.fancy_getopt.neg_alias_re(??) +packaging.fancy_getopt.re(??) +packaging.fancy_getopt.sys(??) +packaging.fancy_getopt.textwrap(??) +packaging.getLogger(??) +packaging.install.CCompilerError(??) +packaging.install.Distribution(??) +packaging.install.InstallationConflict(??) +packaging.install.InstallationException(??) +packaging.install.PackagingError(??) +packaging.install.ProjectNotFound(??) +packaging.install.ReleaseNotFound(??) +packaging.install.ask(??) +packaging.install.database(??) +packaging.install.egginfo_to_distinfo(??) +packaging.install.errno(??) +packaging.install.generate_graph(??) +packaging.install.get_config_var(??) +packaging.install.get_distribution(??) +packaging.install.get_distributions(??) +packaging.install.get_infos(??) +packaging.install.get_install_method(??) +packaging.install.get_path(??) +packaging.install.get_version_predicate(??) +packaging.install.install(??) +packaging.install.install_dists(??) +packaging.install.install_from_infos(??) +packaging.install.install_local_project(??) +packaging.install.install_methods(??) +packaging.install.is_python_build(??) +packaging.install.logger(??) +packaging.install.logging(??) +packaging.install.os(??) +packaging.install.remove(??) +packaging.install.shutil(??) +packaging.install.stat(??) +packaging.install.sys(??) +packaging.install.tempfile(??) +packaging.install.wrapper(??) +packaging.logger(??) +packaging.manifest.Manifest(??) +packaging.manifest.PackagingInternalError(??) +packaging.manifest.PackagingTemplateError(??) +packaging.manifest.convert_path(??) +packaging.manifest.fnmatch(??) +packaging.manifest.logger(??) +packaging.manifest.os(??) +packaging.manifest.re(??) +packaging.manifest.write_file(??) +packaging.markers.BytesIO([buffer]) -> object +packaging.markers.ENCODING +packaging.markers.ENDMARKER +packaging.markers.NAME +packaging.markers.OP +packaging.markers.STRING +packaging.markers.interpret(??) +packaging.markers.os(??) +packaging.markers.platform(??) +packaging.markers.sys(??) +packaging.markers.tokenize(??) +packaging.metadata.Metadata(??) +packaging.metadata.MetadataConflictError(??) +packaging.metadata.MetadataMissingError(??) +packaging.metadata.MetadataUnrecognizedVersionError(??) +packaging.metadata.PKG_INFO_ENCODING +packaging.metadata.PKG_INFO_PREFERRED_VERSION +packaging.metadata.StringIO(??) +packaging.metadata.interpret(??) +packaging.metadata.is_valid_predicate(??) +packaging.metadata.is_valid_version(??) +packaging.metadata.is_valid_versions(??) +packaging.metadata.logger(??) +packaging.metadata.logging(??) +packaging.metadata.message_from_file(??) +packaging.metadata.re(??) +packaging.pypi.DistInfo(??) +packaging.pypi.ReleaseInfo(??) +packaging.pypi.ReleasesList(??) +packaging.pypi.base(??) +packaging.pypi.base.BaseClient(??) +packaging.pypi.base.ReleasesList(??) +packaging.pypi.dist(??) +packaging.pypi.dist.CantParseArchiveName(??) +packaging.pypi.dist.DIST_TYPES(??) +packaging.pypi.dist.DistInfo(??) +packaging.pypi.dist.EXTENSIONS(??) +packaging.pypi.dist.HashDoesNotMatch(??) +packaging.pypi.dist.IndexReference(??) +packaging.pypi.dist.IrrationalVersionError(??) +packaging.pypi.dist.MD5_HASH(??) +packaging.pypi.dist.Metadata(??) +packaging.pypi.dist.NormalizedVersion(??) +packaging.pypi.dist.ReleaseInfo(??) +packaging.pypi.dist.ReleasesList(??) +packaging.pypi.dist.UnsupportedHashName(??) +packaging.pypi.dist.get_infos_from_url(??) +packaging.pypi.dist.get_version_predicate(??) +packaging.pypi.dist.hashlib(??) +packaging.pypi.dist.re(??) +packaging.pypi.dist.split_archive_name(??) +packaging.pypi.dist.suggest_normalized_version(??) +packaging.pypi.dist.tempfile(??) +packaging.pypi.dist.unpack_archive(??) +packaging.pypi.dist.urllib(??) +packaging.pypi.errors(??) +packaging.pypi.errors.CantParseArchiveName(??) +packaging.pypi.errors.DistributionNotFound(??) +packaging.pypi.errors.DownloadError(??) +packaging.pypi.errors.HashDoesNotMatch(??) +packaging.pypi.errors.InvalidSearchField(??) +packaging.pypi.errors.PackagingPyPIError(??) +packaging.pypi.errors.ProjectNotFound(??) +packaging.pypi.errors.ReleaseNotFound(??) +packaging.pypi.errors.UnableToDownload(??) +packaging.pypi.errors.UnsupportedHashName(??) +packaging.pypi.mirrors(??) +packaging.pypi.mirrors.DEFAULT_MIRROR_URL +packaging.pypi.mirrors.ascii_lowercase +packaging.pypi.mirrors.get_mirrors(??) +packaging.pypi.mirrors.product(??) +packaging.pypi.mirrors.socket(??) +packaging.pypi.mirrors.string_range(??) +packaging.pypi.simple(??) +packaging.pypi.simple.BaseClient(??) +packaging.pypi.simple.CantParseArchiveName(??) +packaging.pypi.simple.Crawler(??) +packaging.pypi.simple.DEFAULT_HOSTS(??) +packaging.pypi.simple.DEFAULT_SIMPLE_INDEX_URL +packaging.pypi.simple.DownloadError(??) +packaging.pypi.simple.EGG_FRAGMENT(??) +packaging.pypi.simple.ENTITY_SUB(??) +packaging.pypi.simple.EXTENSIONS(??) +packaging.pypi.simple.HREF(??) +packaging.pypi.simple.MD5_HASH(??) +packaging.pypi.simple.Metadata(??) +packaging.pypi.simple.PackagingPyPIError(??) +packaging.pypi.simple.ProjectNotFound(??) +packaging.pypi.simple.REL(??) +packaging.pypi.simple.ReleaseNotFound(??) +packaging.pypi.simple.ReleasesList(??) +packaging.pypi.simple.SOCKET_TIMEOUT +packaging.pypi.simple.URL_SCHEME(??) +packaging.pypi.simple.USER_AGENT +packaging.pypi.simple.UnableToDownload(??) +packaging.pypi.simple.get_infos_from_url(??) +packaging.pypi.simple.get_mirrors(??) +packaging.pypi.simple.get_version_predicate(??) +packaging.pypi.simple.http(??) +packaging.pypi.simple.logger(??) +packaging.pypi.simple.os(??) +packaging.pypi.simple.packaging_version +packaging.pypi.simple.re(??) +packaging.pypi.simple.socket(??) +packaging.pypi.simple.socket_timeout(??) +packaging.pypi.simple.sys(??) +packaging.pypi.simple.translate(??) +packaging.pypi.simple.urllib(??) +packaging.pypi.simple.with_mirror_support(??) +packaging.pypi.simple.wraps(??) +packaging.pypi.wrapper(??) +packaging.pypi.wrapper.ClientWrapper(??) +packaging.pypi.wrapper.simple(??) +packaging.pypi.wrapper.switch_index_if_fails(??) +packaging.pypi.wrapper.xmlrpc(??) +packaging.pypi.xmlrpc(??) +packaging.pypi.xmlrpc.BaseClient(??) +packaging.pypi.xmlrpc.Client(??) +packaging.pypi.xmlrpc.DEFAULT_XMLRPC_INDEX_URL +packaging.pypi.xmlrpc.InvalidSearchField(??) +packaging.pypi.xmlrpc.IrrationalVersionError(??) +packaging.pypi.xmlrpc.ProjectNotFound(??) +packaging.pypi.xmlrpc.ReleaseInfo(??) +packaging.pypi.xmlrpc.ReleaseNotFound(??) +packaging.pypi.xmlrpc.get_version_predicate(??) +packaging.pypi.xmlrpc.logger(??) +packaging.pypi.xmlrpc.xmlrpc(??) +packaging.run.CCompilerError(??) +packaging.run.Dispatcher(??) +packaging.run.Distribution(??) +packaging.run.FancyGetopt(??) +packaging.run.PackagingArgError(??) +packaging.run.PackagingClassError(??) +packaging.run.PackagingError(??) +packaging.run.PackagingModuleError(??) +packaging.run.STANDARD_COMMANDS(??) +packaging.run.action_help(??) +packaging.run.actions(??) +packaging.run.command_re(??) +packaging.run.common_usage +packaging.run.display_option_names(??) +packaging.run.display_options(??) +packaging.run.generate_graph(??) +packaging.run.generate_setup_py(??) +packaging.run.get_command_class(??) +packaging.run.get_distribution(??) +packaging.run.get_distributions(??) +packaging.run.getopt(??) +packaging.run.global_options(??) +packaging.run.install(??) +packaging.run.install_local_project(??) +packaging.run.logger(??) +packaging.run.logging(??) +packaging.run.main(??) +packaging.run.negative_opt(??) +packaging.run.os(??) +packaging.run.re(??) +packaging.run.remove(??) +packaging.run.sys(??) +packaging.util.DEFAULT_PYPIRC +packaging.util.DEFAULT_REALM +packaging.util.DEFAULT_REPOSITORY +packaging.util.InstallationException(??) +packaging.util.Mixin2to3(??) +packaging.util.PackagingExecError(??) +packaging.util.PackagingFileError(??) +packaging.util.PackagingInternalError(??) +packaging.util.PackagingPlatformError(??) +packaging.util.RICH_GLOB(??) +packaging.util.RawConfigParser(??) +packaging.util.SETUP_TEMPLATE +packaging.util.ask(??) +packaging.util.byte_compile(??) +packaging.util.cfg_to_args(??) +packaging.util.change_root(??) +packaging.util.check_environ(??) +packaging.util.codecs(??) +packaging.util.convert_path(??) +packaging.util.copy_tree(??) +packaging.util.csv(??) +packaging.util.egginfo_to_distinfo(??) +packaging.util.encode_multipart(??) +packaging.util.errno(??) +packaging.util.execute(??) +packaging.util.find_executable(??) +packaging.util.find_packages(??) +packaging.util.fnmatchcase(??) +packaging.util.generate_pypirc(??) +packaging.util.generate_setup_py(??) +packaging.util.get_compiler_versions(??) +packaging.util.get_install_method(??) +packaging.util.get_platform(??) +packaging.util.get_pypirc_path(??) +packaging.util.getsource(??) +packaging.util.hashlib(??) +packaging.util.iglob(??) +packaging.util.imp(??) +packaging.util.is_distutils(??) +packaging.util.is_packaging(??) +packaging.util.is_setuptools(??) +packaging.util.logger(??) +packaging.util.newer(??) +packaging.util.newer_group(??) +packaging.util.os(??) +packaging.util.posixpath(??) +packaging.util.re(??) +packaging.util.read_pypirc(??) +packaging.util.resolve_name(??) +packaging.util.run_2to3(??) +packaging.util.set_platform(??) +packaging.util.shutil(??) +packaging.util.spawn(??) +packaging.util.split_multiline(??) +packaging.util.split_quoted(??) +packaging.util.splitext(??) +packaging.util.std_iglob(??) +packaging.util.string(??) +packaging.util.strtobool(??) +packaging.util.subprocess(??) +packaging.util.sys(??) +packaging.util.sysconfig(??) +packaging.util.write_file(??) +packaging.version.HugeMajorVersionNumError(??) +packaging.version.IrrationalVersionError(??) +packaging.version.NormalizedVersion(??) +packaging.version.VersionPredicate(??) +packaging.version.get_version_predicate(??) +packaging.version.is_valid_predicate(??) +packaging.version.is_valid_version(??) +packaging.version.is_valid_versions(??) +packaging.version.re(??) +packaging.version.suggest_normalized_version(??) +parser.ParserError(??) +parser.STType(??) +parser.compilest(??) +parser.expr(??) +parser.isexpr(??) +parser.issuite(??) +parser.sequence2st(??) +parser.st2list(??) +parser.st2tuple(??) +parser.suite(??) +parser.tuple2st(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BUILD +pickle.BuiltinFunctionType(??) +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWTRUE +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(file, protocol=None) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(file, *, encoding='ASCII', errors='strict') +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.classmap(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(obj, file, protocol=None, *, fix_imports=True) -> None +pickle.dumps(obj, protocol=None, *, fix_imports=True) -> bytes +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.load(file, *, fix_imports=True, encoding='ASCII', errors='strict') -> object +pickle.loads(input, *, fix_imports=True, encoding='ASCII', errors='strict') -> object +pickle.marshal(??) +pickle.mloads(??) +pickle.re(??) +pickle.struct(??) +pickle.sys(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybytes(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.unicodestring4(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.imp(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warn(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.DEV_NULL +platform.architecture(??) +platform.collections(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(system, node, release, version, machine, processor) +platform.version(??) +platform.win32_ver(??) +plistlib.BytesIO([buffer]) -> object +plistlib.Data(??) +plistlib.Dict(??) +plistlib.DumbXMLWriter(??) +plistlib.PLISTHEADER +plistlib.Plist(??) +plistlib.PlistParser(??) +plistlib.PlistWriter(??) +plistlib.binascii(??) +plistlib.datetime(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_TRAPPED +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_EXLOCK +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITED +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(path, mode, *, dir_fd=None, effective_ids=False, follow_symlinks=True) +posix.chdir(path) +posix.chflags(path, flags, *, follow_symlinks=True) +posix.chmod(path, mode, *, dir_fd=None, follow_symlinks=True) +posix.chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True) +posix.chroot(path) +posix.close(fd) +posix.closerange(fd_low, fd_high) +posix.confstr(name) -> string +posix.confstr_names(??) +posix.ctermid() -> string +posix.device_encoding(fd) -> str +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ(??) +posix.error(??) +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fd) +posix.fchmod(fd, mode) +posix.fchown(fd, uid, gid) +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.get_terminal_size(??) +posix.getcwd() -> path +posix.getcwdb() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgrouplist(user, group) -> list of groups to which a user belongs +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getpriority(which, who) -> current_priority +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.initgroups(username, gid) -> None +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchflags(path, flags) +posix.lchmod(path, mode) +posix.lchown(path, uid, gid) +posix.link(src, dst, *, src_dir_fd=None, dst_dir_fd=None, follow_symlinks=True) +posix.listdir(path='.') -> list_of_filenames +posix.lockf(fd, cmd, len) +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path, *, dir_fd=None) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path, mode=0o777, *, dir_fd=None) +posix.mkfifo(path, mode=0o666, *, dir_fd=None) +posix.mknod(filename, mode=0o600, device=0, *, dir_fd=None) +posix.nice(inc) -> new_priority +posix.open(path, flags, mode=0o777, *, dir_fd=None) +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names(??) +posix.pipe() -> (read_end, write_end) +posix.pread(fd, buffersize, offset) -> string +posix.putenv(key, value) +posix.pwrite(fd, string, offset) -> byteswritten +posix.read(fd, buffersize) -> string +posix.readlink(path, *, dir_fd=None) -> path +posix.readv(fd, buffers) -> bytesread +posix.remove(path, *, dir_fd=None) +posix.rename(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +posix.replace(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +posix.rmdir(path, *, dir_fd=None) +posix.sched_get_priority_max(policy) +posix.sched_get_priority_min(policy) +posix.sched_yield() +posix.sendfile(out, in, offset, nbytes) -> byteswritten +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setpriority(which, who, prio) -> None +posix.setregid(rgid, egid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(path, *, dir_fd=None, follow_symlinks=True) -> stat result +posix.stat_float_times([newval]) -> oldval +posix.stat_result(??) +posix.statvfs(path) +posix.statvfs_result(??) +posix.strerror(code) -> string +posix.symlink(src, dst, target_is_directory=False, *, dir_fd=None) +posix.sync() +posix.sysconf(name) -> integer +posix.sysconf_names(??) +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.terminal_size(??) +posix.times() -> times_result +posix.times_result(??) +posix.truncate(path, length) +posix.ttyname(fd) -> string +posix.umask(new_mask) -> old_mask +posix.uname() -> uname_result +posix.uname_result(??) +posix.unlink(path, *, dir_fd=None) +posix.unsetenv(key) +posix.urandom(n) -> str +posix.utime(path, times=None, *, ns=None, dir_fd=None, follow_symlinks=True) +posix.wait() -> (pid, status) +posix.wait3(options) -> (pid, status, rusage) +posix.wait4(pid, options) -> (pid, status, rusage) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, string) -> byteswritten +posix.writev(fd, buffers) -> byteswritten +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.OptionParser(??) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.os(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd(??) +py_compile.MAGIC +py_compile.PyCompileError(??) +py_compile.builtins(??) +py_compile.compile(??) +py_compile.errno(??) +py_compile.imp(??) +py_compile.main(??) +py_compile.marshal(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.tokenize(??) +py_compile.traceback(??) +py_compile.wr_long(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.importlib(??) +pyclbr.io(??) +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.os(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.Scanner(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque(iterable[, maxlen]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.extract_tb(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.imp(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.deque(iterable[, maxlen]) --> deque object +queue.heappop(??) +queue.heappush(??) +queue.threading(??) +queue.time(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(data, quotetabs=0, istext=1, header=0) -> s; +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates a long int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range([start,] stop[, step]) -> range object +re.A +re.ASCII +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copyreg(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.sys(??) +re.template(??) +readline.add_history(string) -> None +readline.clear_history() -> None +readline.get_begidx() -> int +readline.get_completer() -> function +readline.get_completer_delims() -> string +readline.get_completion_type() -> int +readline.get_current_history_length() -> integer +readline.get_endidx() -> int +readline.get_history_item() -> string +readline.get_history_length() -> int +readline.get_line_buffer() -> string +readline.insert_text(string) -> None +readline.parse_and_bind(string) -> None +readline.read_history_file([filename]) -> None +readline.read_init_file([filename]) -> None +readline.redisplay() -> None +readline.remove_history_item(pos) -> None +readline.replace_history_item(pos, line) -> None +readline.set_completer([function]) -> None +readline.set_completer_delims(string) -> None +readline.set_completion_display_matches_hook([function]) -> None +readline.set_history_length(length) -> None +readline.set_pre_input_hook([function]) -> None +readline.set_startup_hook([function]) -> None +readline.write_history_file([filename]) -> None +repr(object) -> string +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, [start,] stop [, step]) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +resource.RLIMIT_AS +resource.RLIMIT_CORE +resource.RLIMIT_CPU +resource.RLIMIT_DATA +resource.RLIMIT_FSIZE +resource.RLIMIT_MEMLOCK +resource.RLIMIT_NOFILE +resource.RLIMIT_NPROC +resource.RLIMIT_RSS +resource.RLIMIT_STACK +resource.RLIM_INFINITY +resource.RUSAGE_CHILDREN +resource.RUSAGE_SELF +resource.error(??) +resource.getpagesize(??) +resource.getrlimit(??) +resource.getrusage(??) +resource.setrlimit(??) +resource.struct_rusage(??) +reversed(sequence) -> reverse iterator over values of the sequence +rlcompleter.Completer(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(number[, ndigits]) -> number +runpy.get_importer(??) +runpy.get_loader(??) +runpy.imp(??) +runpy.importlib(??) +runpy.os(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +select.KQ_EV_ADD +select.KQ_EV_CLEAR +select.KQ_EV_DELETE +select.KQ_EV_DISABLE +select.KQ_EV_ENABLE +select.KQ_EV_EOF +select.KQ_EV_ERROR +select.KQ_EV_FLAG1 +select.KQ_EV_ONESHOT +select.KQ_EV_SYSFLAGS +select.KQ_FILTER_AIO +select.KQ_FILTER_PROC +select.KQ_FILTER_READ +select.KQ_FILTER_SIGNAL +select.KQ_FILTER_TIMER +select.KQ_FILTER_VNODE +select.KQ_FILTER_WRITE +select.KQ_NOTE_ATTRIB +select.KQ_NOTE_CHILD +select.KQ_NOTE_DELETE +select.KQ_NOTE_EXEC +select.KQ_NOTE_EXIT +select.KQ_NOTE_EXTEND +select.KQ_NOTE_FORK +select.KQ_NOTE_LINK +select.KQ_NOTE_LOWAT +select.KQ_NOTE_PCTRLMASK +select.KQ_NOTE_PDATAMASK +select.KQ_NOTE_RENAME +select.KQ_NOTE_REVOKE +select.KQ_NOTE_TRACK +select.KQ_NOTE_TRACKERR +select.KQ_NOTE_WRITE +select.PIPE_BUF +select.POLLERR +select.POLLHUP +select.POLLIN +select.POLLNVAL +select.POLLOUT +select.POLLPRI +select.POLLRDBAND +select.POLLRDNORM +select.POLLWRBAND +select.POLLWRNORM +select.error(??) +select.kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0) +select.kqueue(??) +select.poll(??) +select.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +set() -> new empty set object +setattr(object, name, value) +shelve.BsdDbShelf(??) +shelve.BytesIO([buffer]) -> object +shelve.DbfilenameShelf(??) +shelve.Pickler(file, protocol=None) +shelve.Shelf(??) +shelve.Unpickler(file, *, encoding='ASCII', errors='strict') +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque(iterable[, maxlen]) --> deque object +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SpecialFileError(??) +shutil.WindowsError(??) +shutil.abspath(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(name) -> tuple +shutil.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.os(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.tarfile(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCONT +signal.SIGEMT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINFO +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPROF +signal.SIGQUIT +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_BLOCK +signal.SIG_DFL +signal.SIG_IGN +signal.SIG_SETMASK +signal.SIG_UNBLOCK +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getitimer(which) +signal.getsignal(sig) -> action +signal.pause() +signal.pthread_kill(thread_id, signum) +signal.pthread_sigmask(how, mask) -> old mask +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(which, seconds[, interval]) +signal.siginterrupt(sig, flag) -> None +signal.signal(sig, action) -> action +signal.sigpending() -> list +signal.sigwait(sigset) -> signum +site.CONFIG_LINE(??) +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.aliasmbcs(??) +site.builtins(??) +site.check_enableusersite(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.main(??) +site.makepath(??) +site.os(??) +site.re(??) +site.removeduppaths(??) +site.setBEGINLIBPATH(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice([start,] stop[, step]) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.stderr(??) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK +socket.AF_DECnet +socket.AF_INET +socket.AF_INET6 +socket.AF_IPX +socket.AF_ROUTE +socket.AF_SNA +socket.AF_SYSTEM +socket.AF_UNIX +socket.AF_UNSPEC +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_DEFAULT +socket.AI_MASK +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.AI_V4MAPPED_CFG +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOF +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM +socket.SOCK_RAW +socket.SOCK_RDM +socket.SOCK_SEQPACKET +socket.SOCK_STREAM +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketType(??) +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.create_connection(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(host, port [, family, socktype, proto, flags]) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.errno(??) +socketserver.os(??) +socketserver.select(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +sorted(iterable, key=None, reverse=False) --> new sorted list +sqlite3.Binary(??) +sqlite3.Cache(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement(??) +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.complete_statement(sql) +sqlite3.connect(database[, timeout, isolation_level, detect_types, factory]) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Cache(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement(??) +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(database[, timeout, isolation_level, detect_types, factory]) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.AF_INET +ssl.CERT_NONE +ssl.CERT_OPTIONAL +ssl.CERT_REQUIRED +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.HAS_ECDH(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL +ssl.OP_CIPHER_SERVER_PREFERENCE +ssl.OP_NO_SSLv2 +ssl.OP_NO_SSLv3 +ssl.OP_NO_TLSv1 +ssl.OP_SINGLE_DH_USE +ssl.OP_SINGLE_ECDH_USE +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv2 +ssl.PROTOCOL_SSLv23 +ssl.PROTOCOL_SSLv3 +ssl.PROTOCOL_TLSv1 +ssl.RAND_add(string, entropy) +ssl.RAND_bytes(n) -> bytes +ssl.RAND_egd(path) -> bytes +ssl.RAND_pseudo_bytes(n) -> (bytes, is_cryptographic) +ssl.RAND_status() -> 0 or 1 +ssl.SOCK_STREAM +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF +ssl.SSL_ERROR_INVALID_ERROR_CODE +ssl.SSL_ERROR_SSL +ssl.SSL_ERROR_SYSCALL +ssl.SSL_ERROR_WANT_CONNECT +ssl.SSL_ERROR_WANT_READ +ssl.SSL_ERROR_WANT_WRITE +ssl.SSL_ERROR_WANT_X509_LOOKUP +ssl.SSL_ERROR_ZERO_RETURN +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.errno(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.match_hostname(??) +ssl.re(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.textwrap(??) +ssl.traceback(??) +ssl.wrap_socket(??) +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFREG +stat.S_IFSOCK +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(??) +stat.S_ISCHR(??) +stat.S_ISDIR(??) +stat.S_ISFIFO(??) +stat.S_ISGID +stat.S_ISLNK(??) +stat.S_ISREG(??) +stat.S_ISSOCK(??) +stat.S_ISUID +stat.S_ISVTX +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +str(object[, encoding[, errors]]) -> str +string.ChainMap(??) +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(fmt) -> integer +struct.error(??) +struct.pack(fmt, v1, v2, ...) -> bytes +struct.pack_into(fmt, buffer, offset, v1, v2, ...) +struct.unpack(fmt, buffer) -> (v1, v2, ...) +struct.unpack_from(fmt, buffer, offset=0) -> (v1, v2, ...) +subprocess.CalledProcessError(??) +subprocess.DEVNULL +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno(??) +subprocess.gc(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.mswindows(??) +subprocess.os(??) +subprocess.select(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.time(??) +subprocess.traceback(??) +subprocess.warnings(??) +sum(iterable[, start]) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.open(??) +sunau.openfp(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.main(??) +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.OPT_IMPORT_STAR +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.api_version +sys.argv(??) +sys.base_exec_prefix +sys.base_prefix +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode(??) +sys.exc_info() -> (type, value, traceback) +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.getswitchinterval() -> current thread switch interval; see setswitchinterval(). +sys.gettrace() +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(string) -> string +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.setswitchinterval(n) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.thread_info(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.re(??) +sysconfig.realpath(??) +sysconfig.sys(??) +syslog.LOG_ALERT +syslog.LOG_AUTH +syslog.LOG_AUTHPRIV +syslog.LOG_CONS +syslog.LOG_CRIT +syslog.LOG_CRON +syslog.LOG_DAEMON +syslog.LOG_DEBUG +syslog.LOG_EMERG +syslog.LOG_ERR +syslog.LOG_INFO +syslog.LOG_KERN +syslog.LOG_LOCAL0 +syslog.LOG_LOCAL1 +syslog.LOG_LOCAL2 +syslog.LOG_LOCAL3 +syslog.LOG_LOCAL4 +syslog.LOG_LOCAL5 +syslog.LOG_LOCAL6 +syslog.LOG_LOCAL7 +syslog.LOG_LPR +syslog.LOG_MAIL +syslog.LOG_MASK(??) +syslog.LOG_NDELAY +syslog.LOG_NEWS +syslog.LOG_NOTICE +syslog.LOG_NOWAIT +syslog.LOG_ODELAY +syslog.LOG_PERROR +syslog.LOG_PID +syslog.LOG_SYSLOG +syslog.LOG_UPTO(??) +syslog.LOG_USER +syslog.LOG_UUCP +syslog.LOG_WARNING +syslog.closelog(??) +syslog.openlog(??) +syslog.setlogmask(??) +syslog.syslog(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.S_IFBLK +tarfile.S_IFCHR +tarfile.S_IFDIR +tarfile.S_IFIFO +tarfile.S_IFLNK +tarfile.S_IFREG +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TGEXEC +tarfile.TGREAD +tarfile.TGWRITE +tarfile.TOEXEC +tarfile.TOREAD +tarfile.TOWRITE +tarfile.TSGID +tarfile.TSUID +tarfile.TSVTX +tarfile.TUEXEC +tarfile.TUREAD +tarfile.TUWRITE +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TarIter(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.filemode(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.errno(??) +telnetlib.select(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +termios.B0 +termios.B110 +termios.B115200 +termios.B1200 +termios.B134 +termios.B150 +termios.B1800 +termios.B19200 +termios.B200 +termios.B230400 +termios.B2400 +termios.B300 +termios.B38400 +termios.B4800 +termios.B50 +termios.B57600 +termios.B600 +termios.B75 +termios.B9600 +termios.BRKINT +termios.BS0 +termios.BS1 +termios.BSDLY +termios.CDSUSP +termios.CEOF +termios.CEOL +termios.CEOT +termios.CERASE +termios.CFLUSH +termios.CINTR +termios.CKILL +termios.CLNEXT +termios.CLOCAL +termios.CQUIT +termios.CR0 +termios.CR1 +termios.CR2 +termios.CR3 +termios.CRDLY +termios.CREAD +termios.CRPRNT +termios.CRTSCTS +termios.CS5 +termios.CS6 +termios.CS7 +termios.CS8 +termios.CSIZE +termios.CSTART +termios.CSTOP +termios.CSTOPB +termios.CSUSP +termios.CWERASE +termios.ECHO +termios.ECHOCTL +termios.ECHOE +termios.ECHOK +termios.ECHOKE +termios.ECHONL +termios.ECHOPRT +termios.EXTA +termios.EXTB +termios.FF0 +termios.FF1 +termios.FFDLY +termios.FIOASYNC +termios.FIOCLEX +termios.FIONBIO +termios.FIONCLEX +termios.FIONREAD +termios.FLUSHO +termios.HUPCL +termios.ICANON +termios.ICRNL +termios.IEXTEN +termios.IGNBRK +termios.IGNCR +termios.IGNPAR +termios.IMAXBEL +termios.INLCR +termios.INPCK +termios.ISIG +termios.ISTRIP +termios.IXANY +termios.IXOFF +termios.IXON +termios.NCCS +termios.NL0 +termios.NL1 +termios.NLDLY +termios.NOFLSH +termios.OCRNL +termios.OFDEL +termios.OFILL +termios.ONLCR +termios.ONLRET +termios.ONOCR +termios.OPOST +termios.PARENB +termios.PARMRK +termios.PARODD +termios.PENDIN +termios.TAB0 +termios.TAB1 +termios.TAB2 +termios.TAB3 +termios.TABDLY +termios.TCIFLUSH +termios.TCIOFF +termios.TCIOFLUSH +termios.TCION +termios.TCOFLUSH +termios.TCOOFF +termios.TCOON +termios.TCSADRAIN +termios.TCSAFLUSH +termios.TCSANOW +termios.TCSASOFT +termios.TIOCCONS +termios.TIOCEXCL +termios.TIOCGETD +termios.TIOCGPGRP +termios.TIOCGWINSZ +termios.TIOCMBIC +termios.TIOCMBIS +termios.TIOCMGET +termios.TIOCMSET +termios.TIOCM_CAR +termios.TIOCM_CD +termios.TIOCM_CTS +termios.TIOCM_DSR +termios.TIOCM_DTR +termios.TIOCM_LE +termios.TIOCM_RI +termios.TIOCM_RNG +termios.TIOCM_RTS +termios.TIOCM_SR +termios.TIOCM_ST +termios.TIOCNOTTY +termios.TIOCNXCL +termios.TIOCOUTQ +termios.TIOCPKT +termios.TIOCPKT_DATA +termios.TIOCPKT_DOSTOP +termios.TIOCPKT_FLUSHREAD +termios.TIOCPKT_FLUSHWRITE +termios.TIOCPKT_NOSTOP +termios.TIOCPKT_START +termios.TIOCPKT_STOP +termios.TIOCSCTTY +termios.TIOCSETD +termios.TIOCSPGRP +termios.TIOCSTI +termios.TIOCSWINSZ +termios.TOSTOP +termios.VDISCARD +termios.VEOF +termios.VEOL +termios.VEOL2 +termios.VERASE +termios.VINTR +termios.VKILL +termios.VLNEXT +termios.VMIN +termios.VQUIT +termios.VREPRINT +termios.VSTART +termios.VSTOP +termios.VSUSP +termios.VT0 +termios.VT1 +termios.VTDLY +termios.VTIME +termios.VWERASE +termios.error(??) +termios.tcdrain(fd) -> None +termios.tcflow(fd, action) -> None +termios.tcflush(fd, queue) -> None +termios.tcgetattr(fd) -> list_of_attrs +termios.tcsendbreak(fd, duration) -> None +termios.tcsetattr(fd, when, attributes) -> None +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.get_ident() -> integer +threading.local(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.perf_counter() -> float +time.process_time() -> float +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.At(??) +tkinter.AtEnd(??) +tkinter.AtInsert(??) +tkinter.AtSelFirst(??) +tkinter.AtSelLast(??) +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.Studbutton(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.Tributton(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog.ACTIVE +tkinter.commondialog.ALL +tkinter.commondialog.ANCHOR +tkinter.commondialog.ARC +tkinter.commondialog.At(??) +tkinter.commondialog.AtEnd(??) +tkinter.commondialog.AtInsert(??) +tkinter.commondialog.AtSelFirst(??) +tkinter.commondialog.AtSelLast(??) +tkinter.commondialog.BASELINE +tkinter.commondialog.BEVEL +tkinter.commondialog.BOTH +tkinter.commondialog.BOTTOM +tkinter.commondialog.BROWSE +tkinter.commondialog.BUTT +tkinter.commondialog.BaseWidget(??) +tkinter.commondialog.BitmapImage(??) +tkinter.commondialog.BooleanVar(??) +tkinter.commondialog.Button(??) +tkinter.commondialog.CASCADE +tkinter.commondialog.CENTER +tkinter.commondialog.CHAR +tkinter.commondialog.CHECKBUTTON +tkinter.commondialog.CHORD +tkinter.commondialog.COMMAND +tkinter.commondialog.CURRENT +tkinter.commondialog.CallWrapper(??) +tkinter.commondialog.Canvas(??) +tkinter.commondialog.Checkbutton(??) +tkinter.commondialog.DISABLED +tkinter.commondialog.DOTBOX +tkinter.commondialog.Dialog(??) +tkinter.commondialog.DoubleVar(??) +tkinter.commondialog.E +tkinter.commondialog.END +tkinter.commondialog.EW +tkinter.commondialog.EXCEPTION +tkinter.commondialog.EXTENDED +tkinter.commondialog.Entry(??) +tkinter.commondialog.Event(??) +tkinter.commondialog.FALSE +tkinter.commondialog.FIRST +tkinter.commondialog.FLAT +tkinter.commondialog.Frame(??) +tkinter.commondialog.GROOVE +tkinter.commondialog.Grid(??) +tkinter.commondialog.HIDDEN +tkinter.commondialog.HORIZONTAL +tkinter.commondialog.INSERT +tkinter.commondialog.INSIDE +tkinter.commondialog.Image(??) +tkinter.commondialog.IntVar(??) +tkinter.commondialog.LAST +tkinter.commondialog.LEFT +tkinter.commondialog.Label(??) +tkinter.commondialog.LabelFrame(??) +tkinter.commondialog.Listbox(??) +tkinter.commondialog.MITER +tkinter.commondialog.MOVETO +tkinter.commondialog.MULTIPLE +tkinter.commondialog.Menu(??) +tkinter.commondialog.Menubutton(??) +tkinter.commondialog.Message(??) +tkinter.commondialog.Misc(??) +tkinter.commondialog.N +tkinter.commondialog.NE +tkinter.commondialog.NO +tkinter.commondialog.NONE +tkinter.commondialog.NORMAL +tkinter.commondialog.NS +tkinter.commondialog.NSEW +tkinter.commondialog.NUMERIC +tkinter.commondialog.NW +tkinter.commondialog.NoDefaultRoot(??) +tkinter.commondialog.OFF +tkinter.commondialog.ON +tkinter.commondialog.OUTSIDE +tkinter.commondialog.OptionMenu(??) +tkinter.commondialog.PAGES +tkinter.commondialog.PIESLICE +tkinter.commondialog.PROJECTING +tkinter.commondialog.Pack(??) +tkinter.commondialog.PanedWindow(??) +tkinter.commondialog.PhotoImage(??) +tkinter.commondialog.Place(??) +tkinter.commondialog.RADIOBUTTON +tkinter.commondialog.RAISED +tkinter.commondialog.READABLE +tkinter.commondialog.RIDGE +tkinter.commondialog.RIGHT +tkinter.commondialog.ROUND +tkinter.commondialog.Radiobutton(??) +tkinter.commondialog.S +tkinter.commondialog.SCROLL +tkinter.commondialog.SE +tkinter.commondialog.SEL +tkinter.commondialog.SEL_FIRST +tkinter.commondialog.SEL_LAST +tkinter.commondialog.SEPARATOR +tkinter.commondialog.SINGLE +tkinter.commondialog.SOLID +tkinter.commondialog.SUNKEN +tkinter.commondialog.SW +tkinter.commondialog.Scale(??) +tkinter.commondialog.Scrollbar(??) +tkinter.commondialog.Spinbox(??) +tkinter.commondialog.StringVar(??) +tkinter.commondialog.Studbutton(??) +tkinter.commondialog.TOP +tkinter.commondialog.TRUE +tkinter.commondialog.Tcl(??) +tkinter.commondialog.TclError(??) +tkinter.commondialog.TclVersion +tkinter.commondialog.Text(??) +tkinter.commondialog.Tk(??) +tkinter.commondialog.TkVersion +tkinter.commondialog.Toplevel(??) +tkinter.commondialog.Tributton(??) +tkinter.commondialog.UNDERLINE +tkinter.commondialog.UNITS +tkinter.commondialog.VERTICAL +tkinter.commondialog.Variable(??) +tkinter.commondialog.W +tkinter.commondialog.WORD +tkinter.commondialog.WRITABLE +tkinter.commondialog.Widget(??) +tkinter.commondialog.Wm(??) +tkinter.commondialog.X +tkinter.commondialog.XView(??) +tkinter.commondialog.Y +tkinter.commondialog.YES +tkinter.commondialog.YView(??) +tkinter.commondialog.constants(??) +tkinter.commondialog.getboolean(??) +tkinter.commondialog.getdouble(??) +tkinter.commondialog.getint(??) +tkinter.commondialog.image_names(??) +tkinter.commondialog.image_types(??) +tkinter.commondialog.mainloop(??) +tkinter.commondialog.sys(??) +tkinter.commondialog.wantobjects +tkinter.commondialog.warnings(??) +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog.ACTIVE +tkinter.dialog.ALL +tkinter.dialog.ANCHOR +tkinter.dialog.ARC +tkinter.dialog.At(??) +tkinter.dialog.AtEnd(??) +tkinter.dialog.AtInsert(??) +tkinter.dialog.AtSelFirst(??) +tkinter.dialog.AtSelLast(??) +tkinter.dialog.BASELINE +tkinter.dialog.BEVEL +tkinter.dialog.BOTH +tkinter.dialog.BOTTOM +tkinter.dialog.BROWSE +tkinter.dialog.BUTT +tkinter.dialog.BaseWidget(??) +tkinter.dialog.BitmapImage(??) +tkinter.dialog.BooleanVar(??) +tkinter.dialog.Button(??) +tkinter.dialog.CASCADE +tkinter.dialog.CENTER +tkinter.dialog.CHAR +tkinter.dialog.CHECKBUTTON +tkinter.dialog.CHORD +tkinter.dialog.COMMAND +tkinter.dialog.CURRENT +tkinter.dialog.CallWrapper(??) +tkinter.dialog.Canvas(??) +tkinter.dialog.Checkbutton(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.DISABLED +tkinter.dialog.DOTBOX +tkinter.dialog.Dialog(??) +tkinter.dialog.DoubleVar(??) +tkinter.dialog.E +tkinter.dialog.END +tkinter.dialog.EW +tkinter.dialog.EXCEPTION +tkinter.dialog.EXTENDED +tkinter.dialog.Entry(??) +tkinter.dialog.Event(??) +tkinter.dialog.FALSE +tkinter.dialog.FIRST +tkinter.dialog.FLAT +tkinter.dialog.Frame(??) +tkinter.dialog.GROOVE +tkinter.dialog.Grid(??) +tkinter.dialog.HIDDEN +tkinter.dialog.HORIZONTAL +tkinter.dialog.INSERT +tkinter.dialog.INSIDE +tkinter.dialog.Image(??) +tkinter.dialog.IntVar(??) +tkinter.dialog.LAST +tkinter.dialog.LEFT +tkinter.dialog.Label(??) +tkinter.dialog.LabelFrame(??) +tkinter.dialog.Listbox(??) +tkinter.dialog.MITER +tkinter.dialog.MOVETO +tkinter.dialog.MULTIPLE +tkinter.dialog.Menu(??) +tkinter.dialog.Menubutton(??) +tkinter.dialog.Message(??) +tkinter.dialog.Misc(??) +tkinter.dialog.N +tkinter.dialog.NE +tkinter.dialog.NO +tkinter.dialog.NONE +tkinter.dialog.NORMAL +tkinter.dialog.NS +tkinter.dialog.NSEW +tkinter.dialog.NUMERIC +tkinter.dialog.NW +tkinter.dialog.NoDefaultRoot(??) +tkinter.dialog.OFF +tkinter.dialog.ON +tkinter.dialog.OUTSIDE +tkinter.dialog.OptionMenu(??) +tkinter.dialog.PAGES +tkinter.dialog.PIESLICE +tkinter.dialog.PROJECTING +tkinter.dialog.Pack(??) +tkinter.dialog.PanedWindow(??) +tkinter.dialog.PhotoImage(??) +tkinter.dialog.Place(??) +tkinter.dialog.RADIOBUTTON +tkinter.dialog.RAISED +tkinter.dialog.READABLE +tkinter.dialog.RIDGE +tkinter.dialog.RIGHT +tkinter.dialog.ROUND +tkinter.dialog.Radiobutton(??) +tkinter.dialog.S +tkinter.dialog.SCROLL +tkinter.dialog.SE +tkinter.dialog.SEL +tkinter.dialog.SEL_FIRST +tkinter.dialog.SEL_LAST +tkinter.dialog.SEPARATOR +tkinter.dialog.SINGLE +tkinter.dialog.SOLID +tkinter.dialog.SUNKEN +tkinter.dialog.SW +tkinter.dialog.Scale(??) +tkinter.dialog.Scrollbar(??) +tkinter.dialog.Spinbox(??) +tkinter.dialog.StringVar(??) +tkinter.dialog.Studbutton(??) +tkinter.dialog.TOP +tkinter.dialog.TRUE +tkinter.dialog.Tcl(??) +tkinter.dialog.TclError(??) +tkinter.dialog.TclVersion +tkinter.dialog.Text(??) +tkinter.dialog.Tk(??) +tkinter.dialog.TkVersion +tkinter.dialog.Toplevel(??) +tkinter.dialog.Tributton(??) +tkinter.dialog.UNDERLINE +tkinter.dialog.UNITS +tkinter.dialog.VERTICAL +tkinter.dialog.Variable(??) +tkinter.dialog.W +tkinter.dialog.WORD +tkinter.dialog.WRITABLE +tkinter.dialog.Widget(??) +tkinter.dialog.Wm(??) +tkinter.dialog.X +tkinter.dialog.XView(??) +tkinter.dialog.Y +tkinter.dialog.YES +tkinter.dialog.YView(??) +tkinter.dialog.colorchooser(??) +tkinter.dialog.commondialog(??) +tkinter.dialog.constants(??) +tkinter.dialog.getboolean(??) +tkinter.dialog.getdouble(??) +tkinter.dialog.getint(??) +tkinter.dialog.image_names(??) +tkinter.dialog.image_types(??) +tkinter.dialog.mainloop(??) +tkinter.dialog.sys(??) +tkinter.dialog.wantobjects +tkinter.dialog.warnings(??) +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.filedialog.ACTIVE +tkinter.filedialog.ALL +tkinter.filedialog.ANCHOR +tkinter.filedialog.ARC +tkinter.filedialog.At(??) +tkinter.filedialog.AtEnd(??) +tkinter.filedialog.AtInsert(??) +tkinter.filedialog.AtSelFirst(??) +tkinter.filedialog.AtSelLast(??) +tkinter.filedialog.BASELINE +tkinter.filedialog.BEVEL +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.BROWSE +tkinter.filedialog.BUTT +tkinter.filedialog.BaseWidget(??) +tkinter.filedialog.BitmapImage(??) +tkinter.filedialog.BooleanVar(??) +tkinter.filedialog.Button(??) +tkinter.filedialog.CASCADE +tkinter.filedialog.CENTER +tkinter.filedialog.CHAR +tkinter.filedialog.CHECKBUTTON +tkinter.filedialog.CHORD +tkinter.filedialog.COMMAND +tkinter.filedialog.CURRENT +tkinter.filedialog.CallWrapper(??) +tkinter.filedialog.Canvas(??) +tkinter.filedialog.Checkbutton(??) +tkinter.filedialog.DISABLED +tkinter.filedialog.DOTBOX +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.DoubleVar(??) +tkinter.filedialog.E +tkinter.filedialog.END +tkinter.filedialog.EW +tkinter.filedialog.EXCEPTION +tkinter.filedialog.EXTENDED +tkinter.filedialog.Entry(??) +tkinter.filedialog.Event(??) +tkinter.filedialog.FALSE +tkinter.filedialog.FIRST +tkinter.filedialog.FLAT +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.GROOVE +tkinter.filedialog.Grid(??) +tkinter.filedialog.HIDDEN +tkinter.filedialog.HORIZONTAL +tkinter.filedialog.INSERT +tkinter.filedialog.INSIDE +tkinter.filedialog.Image(??) +tkinter.filedialog.IntVar(??) +tkinter.filedialog.LAST +tkinter.filedialog.LEFT +tkinter.filedialog.Label(??) +tkinter.filedialog.LabelFrame(??) +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.MITER +tkinter.filedialog.MOVETO +tkinter.filedialog.MULTIPLE +tkinter.filedialog.Menu(??) +tkinter.filedialog.Menubutton(??) +tkinter.filedialog.Message(??) +tkinter.filedialog.Misc(??) +tkinter.filedialog.N +tkinter.filedialog.NE +tkinter.filedialog.NO +tkinter.filedialog.NONE +tkinter.filedialog.NORMAL +tkinter.filedialog.NS +tkinter.filedialog.NSEW +tkinter.filedialog.NUMERIC +tkinter.filedialog.NW +tkinter.filedialog.NoDefaultRoot(??) +tkinter.filedialog.OFF +tkinter.filedialog.ON +tkinter.filedialog.OUTSIDE +tkinter.filedialog.Open(??) +tkinter.filedialog.OptionMenu(??) +tkinter.filedialog.PAGES +tkinter.filedialog.PIESLICE +tkinter.filedialog.PROJECTING +tkinter.filedialog.Pack(??) +tkinter.filedialog.PanedWindow(??) +tkinter.filedialog.PhotoImage(??) +tkinter.filedialog.Place(??) +tkinter.filedialog.RADIOBUTTON +tkinter.filedialog.RAISED +tkinter.filedialog.READABLE +tkinter.filedialog.RIDGE +tkinter.filedialog.RIGHT +tkinter.filedialog.ROUND +tkinter.filedialog.Radiobutton(??) +tkinter.filedialog.S +tkinter.filedialog.SCROLL +tkinter.filedialog.SE +tkinter.filedialog.SEL +tkinter.filedialog.SEL_FIRST +tkinter.filedialog.SEL_LAST +tkinter.filedialog.SEPARATOR +tkinter.filedialog.SINGLE +tkinter.filedialog.SOLID +tkinter.filedialog.SUNKEN +tkinter.filedialog.SW +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scale(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.Spinbox(??) +tkinter.filedialog.StringVar(??) +tkinter.filedialog.Studbutton(??) +tkinter.filedialog.TOP +tkinter.filedialog.TRUE +tkinter.filedialog.Tcl(??) +tkinter.filedialog.TclError(??) +tkinter.filedialog.TclVersion +tkinter.filedialog.Text(??) +tkinter.filedialog.Tk(??) +tkinter.filedialog.TkVersion +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.Tributton(??) +tkinter.filedialog.UNDERLINE +tkinter.filedialog.UNITS +tkinter.filedialog.VERTICAL +tkinter.filedialog.Variable(??) +tkinter.filedialog.W +tkinter.filedialog.WORD +tkinter.filedialog.WRITABLE +tkinter.filedialog.Widget(??) +tkinter.filedialog.Wm(??) +tkinter.filedialog.X +tkinter.filedialog.XView(??) +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.YView(??) +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.colorchooser(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.constants(??) +tkinter.filedialog.dialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.dnd(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.getboolean(??) +tkinter.filedialog.getdouble(??) +tkinter.filedialog.getint(??) +tkinter.filedialog.image_names(??) +tkinter.filedialog.image_types(??) +tkinter.filedialog.mainloop(??) +tkinter.filedialog.os(??) +tkinter.filedialog.sys(??) +tkinter.filedialog.test(??) +tkinter.filedialog.wantobjects +tkinter.filedialog.warnings(??) +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.At(??) +tkinter.simpledialog.AtEnd(??) +tkinter.simpledialog.AtInsert(??) +tkinter.simpledialog.AtSelFirst(??) +tkinter.simpledialog.AtSelLast(??) +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.Studbutton(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.Tributton(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.colorchooser(??) +tkinter.simpledialog.commondialog(??) +tkinter.simpledialog.constants(??) +tkinter.simpledialog.dialog(??) +tkinter.simpledialog.dnd(??) +tkinter.simpledialog.filedialog(??) +tkinter.simpledialog.font(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.simpledialog.scrolledtext(??) +tkinter.simpledialog.sys(??) +tkinter.simpledialog.tkinter(??) +tkinter.simpledialog.wantobjects +tkinter.simpledialog.warnings(??) +tkinter.sys(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.At(??) +tkinter.tix.AtEnd(??) +tkinter.tix.AtInsert(??) +tkinter.tix.AtSelFirst(??) +tkinter.tix.AtSelLast(??) +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.Studbutton(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.Tributton(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.colorchooser(??) +tkinter.tix.commondialog(??) +tkinter.tix.constants(??) +tkinter.tix.dialog(??) +tkinter.tix.dnd(??) +tkinter.tix.filedialog(??) +tkinter.tix.font(??) +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.messagebox(??) +tkinter.tix.os(??) +tkinter.tix.scrolledtext(??) +tkinter.tix.simpledialog(??) +tkinter.tix.sys(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.wantobjects +tkinter.tix.warnings(??) +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.wantobjects +tkinter.warnings(??) +token.AMPER +token.AMPEREQUAL +token.AT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.builtins(??) +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(encoding) -> CodecInfo +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.modname(??) +trace.os(??) +trace.pickle(??) +trace.re(??) +trace.rx_blank(??) +trace.sys(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +trace.usage(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> empty tuple +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.defstr +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.methodname +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pl1 +turtle.pl2 +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object) -> the object's type +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CodeType(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodType(??) +types.ModuleType(??) +types.SimpleNamespace(??) +types.TracebackType(??) +types.new_class(??) +types.prepare_class(??) +unicodedata.UCD(??) +unicodedata.bidirectional(unichr) +unicodedata.category(unichr) +unicodedata.combining(unichr) +unicodedata.decimal(unichr[, default]) +unicodedata.decomposition(unichr) +unicodedata.digit(unichr[, default]) +unicodedata.east_asian_width(unichr) +unicodedata.lookup(name) +unicodedata.mirrored(unichr) +unicodedata.name(unichr[, default]) +unicodedata.normalize(form, unistr) +unicodedata.numeric(unichr[, default]) +unicodedata.ucd_3_2_0(??) +unicodedata.ucnhash_CAPI(??) +unicodedata.unidata_version +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.scheme_chars +urllib.parse.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.parse.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.parse.splitnport(??) +urllib.parse.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.parse.splitport('host:port') --> 'host', 'port'. +urllib.parse.splitquery('/path?query') --> '/path', 'query'. +urllib.parse.splittag('/path#tag') --> '/path', 'tag'. +urllib.parse.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.parse.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.parse.splitvalue('attr=value') --> 'attr', 'value'. +urllib.parse.sys(??) +urllib.parse.to_bytes(u"URL") --> 'URL'. +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap('') --> 'type://host/path'. +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.collections(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.request.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.request.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.request.splitport('host:port') --> 'host', 'port'. +urllib.request.splitquery('/path?query') --> '/path', 'query'. +urllib.request.splittag('/path#tag') --> '/path', 'tag'. +urllib.request.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.request.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.request.splitvalue('attr=value') --> 'attr', 'value'. +urllib.request.ssl(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.to_bytes(u"URL") --> 'URL'. +urllib.request.unquote(??) +urllib.request.unwrap('') --> 'type://host/path'. +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID(??) +uuid.bytes_(??) +uuid.ctypes(??) +uuid.getnode(??) +uuid.int_(??) +uuid.lib(??) +uuid.libname +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.Context(??) +venv.EnvBuilder(??) +venv.base64(??) +venv.create(??) +venv.io(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.sys(??) +venv.sysconfig(??) +venv.threading(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.linecache(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.big_endian +wave.builtins(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.collections(??) +weakref.getweakrefcount(object) -- return the number of weak references +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.io(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex(??) +webbrowser.stat(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.time(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO([buffer]) -> object +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLTreeBuilder(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLTreeBuilder(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO([buffer]) -> object +xmlrpc.client.DateTime(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.socket(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.http(??) +xmlrpc.server.inspect(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(iter1 [,iter2 [...]]) --> zip object +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.DEFAULT_VERSION +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zipfile.error(??) +zipfile.imp(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.re(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.ZipImportError(??) +zipimport.zipimporter(archivepath) -> zipimporter object +zlib.DEFLATED +zlib.DEF_MEM_LEVEL +zlib.MAX_WBITS +zlib.ZLIB_RUNTIME_VERSION +zlib.ZLIB_VERSION +zlib.Z_BEST_COMPRESSION +zlib.Z_BEST_SPEED +zlib.Z_DEFAULT_COMPRESSION +zlib.Z_DEFAULT_STRATEGY +zlib.Z_FILTERED +zlib.Z_FINISH +zlib.Z_FULL_FLUSH +zlib.Z_HUFFMAN_ONLY +zlib.Z_NO_FLUSH +zlib.Z_SYNC_FLUSH +zlib.adler32(string[, start]) -- Compute an Adler-32 checksum of string. +zlib.compress(string[, level]) -- Returned compressed string. +zlib.compressobj(??) +zlib.crc32(string[, start]) -- Compute a CRC-32 checksum of string. +zlib.decompress(string[, wbits[, bufsize]]) -- Return decompressed string. +zlib.decompressobj([wbits[, zdict]]) -- Return a decompressor object. +zlib.error(??) diff --git a/third_party/qscintilla/qsci/api/python/Python-3.4.api b/third_party/qscintilla/qsci/api/python/Python-3.4.api new file mode 100644 index 0000000..97f92ad --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.4.api @@ -0,0 +1,9992 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IN.AF_APPLETALK +IN.AF_ATM +IN.AF_CCITT +IN.AF_CHAOS +IN.AF_CNT +IN.AF_COIP +IN.AF_DATAKIT +IN.AF_DECnet +IN.AF_DLI +IN.AF_E164 +IN.AF_ECMA +IN.AF_HYLINK +IN.AF_IMPLINK +IN.AF_INET +IN.AF_INET6 +IN.AF_IPX +IN.AF_ISDN +IN.AF_ISO +IN.AF_LAT +IN.AF_LINK +IN.AF_LOCAL +IN.AF_MAX +IN.AF_NATM +IN.AF_NDRV +IN.AF_NETBIOS +IN.AF_NETGRAPH +IN.AF_NS +IN.AF_OSI +IN.AF_PPP +IN.AF_PUP +IN.AF_RESERVED_36 +IN.AF_ROUTE +IN.AF_SIP +IN.AF_SNA +IN.AF_SYSTEM +IN.AF_UNIX +IN.AF_UNSPEC +IN.CMGROUP_MAX +IN.HTONL(??) +IN.HTONS(??) +IN.ICMP6_FILTER +IN.IN6_IS_ADDR_LINKLOCAL(??) +IN.IN6_IS_ADDR_LOOPBACK(??) +IN.IN6_IS_ADDR_MC_GLOBAL(??) +IN.IN6_IS_ADDR_MC_LINKLOCAL(??) +IN.IN6_IS_ADDR_MC_NODELOCAL(??) +IN.IN6_IS_ADDR_MC_ORGLOCAL(??) +IN.IN6_IS_ADDR_MC_SITELOCAL(??) +IN.IN6_IS_ADDR_SITELOCAL(??) +IN.IN6_IS_ADDR_UNSPECIFIED(??) +IN.IN6_IS_ADDR_V4COMPAT(??) +IN.IN6_IS_ADDR_V4MAPPED(??) +IN.INADDR_NONE +IN.INET6_ADDRSTRLEN +IN.INET_ADDRSTRLEN +IN.INT16_C(??) +IN.INT16_MAX +IN.INT16_MIN +IN.INT32_C(??) +IN.INT32_MAX +IN.INT32_MIN +IN.INT8_C(??) +IN.INT8_MAX +IN.INT8_MIN +IN.INTPTR_MAX +IN.INTPTR_MIN +IN.INT_FAST16_MAX +IN.INT_FAST16_MIN +IN.INT_FAST32_MAX +IN.INT_FAST32_MIN +IN.INT_FAST8_MAX +IN.INT_FAST8_MIN +IN.INT_LEAST16_MAX +IN.INT_LEAST16_MIN +IN.INT_LEAST32_MAX +IN.INT_LEAST32_MIN +IN.INT_LEAST8_MAX +IN.INT_LEAST8_MIN +IN.IN_BADCLASS(??) +IN.IN_CLASSA(??) +IN.IN_CLASSA_HOST +IN.IN_CLASSA_MAX +IN.IN_CLASSA_NET +IN.IN_CLASSA_NSHIFT +IN.IN_CLASSB(??) +IN.IN_CLASSB_HOST +IN.IN_CLASSB_MAX +IN.IN_CLASSB_NET +IN.IN_CLASSB_NSHIFT +IN.IN_CLASSC(??) +IN.IN_CLASSC_HOST +IN.IN_CLASSC_NET +IN.IN_CLASSC_NSHIFT +IN.IN_CLASSD(??) +IN.IN_CLASSD_HOST +IN.IN_CLASSD_NET +IN.IN_CLASSD_NSHIFT +IN.IN_EXPERIMENTAL(??) +IN.IN_LINKLOCAL(??) +IN.IN_LOOPBACKNET +IN.IN_MULTICAST(??) +IN.IPCTL_ACCEPTSOURCEROUTE +IN.IPCTL_DEFMTU +IN.IPCTL_DEFTTL +IN.IPCTL_DIRECTEDBROADCAST +IN.IPCTL_FASTFORWARDING +IN.IPCTL_FORWARDING +IN.IPCTL_GIF_TTL +IN.IPCTL_INTRQDROPS +IN.IPCTL_INTRQMAXLEN +IN.IPCTL_KEEPFAITH +IN.IPCTL_MAXID +IN.IPCTL_RTEXPIRE +IN.IPCTL_RTMAXCACHE +IN.IPCTL_RTMINEXPIRE +IN.IPCTL_SENDREDIRECTS +IN.IPCTL_SOURCEROUTE +IN.IPCTL_STATS +IN.IPPORT_HIFIRSTAUTO +IN.IPPORT_HILASTAUTO +IN.IPPORT_RESERVED +IN.IPPORT_RESERVEDSTART +IN.IPPORT_USERRESERVED +IN.IPPROTO_3PC +IN.IPPROTO_ADFS +IN.IPPROTO_AH +IN.IPPROTO_AHIP +IN.IPPROTO_APES +IN.IPPROTO_ARGUS +IN.IPPROTO_AX25 +IN.IPPROTO_BHA +IN.IPPROTO_BLT +IN.IPPROTO_BRSATMON +IN.IPPROTO_CFTP +IN.IPPROTO_CHAOS +IN.IPPROTO_CMTP +IN.IPPROTO_CPHB +IN.IPPROTO_CPNX +IN.IPPROTO_DDP +IN.IPPROTO_DGP +IN.IPPROTO_DIVERT +IN.IPPROTO_DONE +IN.IPPROTO_DSTOPTS +IN.IPPROTO_EGP +IN.IPPROTO_EMCON +IN.IPPROTO_ENCAP +IN.IPPROTO_EON +IN.IPPROTO_ESP +IN.IPPROTO_ETHERIP +IN.IPPROTO_FRAGMENT +IN.IPPROTO_GGP +IN.IPPROTO_GMTP +IN.IPPROTO_GRE +IN.IPPROTO_HELLO +IN.IPPROTO_HMP +IN.IPPROTO_HOPOPTS +IN.IPPROTO_ICMP +IN.IPPROTO_ICMPV6 +IN.IPPROTO_IDP +IN.IPPROTO_IDPR +IN.IPPROTO_IDRP +IN.IPPROTO_IGMP +IN.IPPROTO_IGP +IN.IPPROTO_IGRP +IN.IPPROTO_IL +IN.IPPROTO_INLSP +IN.IPPROTO_INP +IN.IPPROTO_IP +IN.IPPROTO_IPCOMP +IN.IPPROTO_IPCV +IN.IPPROTO_IPEIP +IN.IPPROTO_IPIP +IN.IPPROTO_IPPC +IN.IPPROTO_IPV4 +IN.IPPROTO_IPV6 +IN.IPPROTO_IRTP +IN.IPPROTO_KRYPTOLAN +IN.IPPROTO_LARP +IN.IPPROTO_LEAF1 +IN.IPPROTO_LEAF2 +IN.IPPROTO_MAX +IN.IPPROTO_MAXID +IN.IPPROTO_MEAS +IN.IPPROTO_MHRP +IN.IPPROTO_MICP +IN.IPPROTO_MTP +IN.IPPROTO_MUX +IN.IPPROTO_ND +IN.IPPROTO_NHRP +IN.IPPROTO_NONE +IN.IPPROTO_NSP +IN.IPPROTO_NVPII +IN.IPPROTO_OSPFIGP +IN.IPPROTO_PGM +IN.IPPROTO_PIGP +IN.IPPROTO_PIM +IN.IPPROTO_PRM +IN.IPPROTO_PUP +IN.IPPROTO_PVP +IN.IPPROTO_RAW +IN.IPPROTO_RCCMON +IN.IPPROTO_RDP +IN.IPPROTO_ROUTING +IN.IPPROTO_RSVP +IN.IPPROTO_RVD +IN.IPPROTO_SATEXPAK +IN.IPPROTO_SATMON +IN.IPPROTO_SCCSP +IN.IPPROTO_SDRP +IN.IPPROTO_SEP +IN.IPPROTO_SRPC +IN.IPPROTO_ST +IN.IPPROTO_SVMTP +IN.IPPROTO_SWIPE +IN.IPPROTO_TCF +IN.IPPROTO_TCP +IN.IPPROTO_TP +IN.IPPROTO_TPXX +IN.IPPROTO_TRUNK1 +IN.IPPROTO_TRUNK2 +IN.IPPROTO_TTP +IN.IPPROTO_UDP +IN.IPPROTO_VINES +IN.IPPROTO_VISA +IN.IPPROTO_VMTP +IN.IPPROTO_WBEXPAK +IN.IPPROTO_WBMON +IN.IPPROTO_WSN +IN.IPPROTO_XNET +IN.IPPROTO_XTP +IN.IPV6CTL_ACCEPT_RTADV +IN.IPV6CTL_AUTO_FLOWLABEL +IN.IPV6CTL_AUTO_LINKLOCAL +IN.IPV6CTL_DAD_COUNT +IN.IPV6CTL_DEFHLIM +IN.IPV6CTL_DEFMCASTHLIM +IN.IPV6CTL_DEFMTU +IN.IPV6CTL_FORWARDING +IN.IPV6CTL_FORWSRCRT +IN.IPV6CTL_GIF_HLIM +IN.IPV6CTL_HDRNESTLIMIT +IN.IPV6CTL_KAME_VERSION +IN.IPV6CTL_KEEPFAITH +IN.IPV6CTL_LOG_INTERVAL +IN.IPV6CTL_MAPPED_ADDR +IN.IPV6CTL_MAXFRAGPACKETS +IN.IPV6CTL_MAXFRAGS +IN.IPV6CTL_MAXID +IN.IPV6CTL_MRTPROTO +IN.IPV6CTL_MRTSTATS +IN.IPV6CTL_RIP6STATS +IN.IPV6CTL_RR_PRUNE +IN.IPV6CTL_RTEXPIRE +IN.IPV6CTL_RTMAXCACHE +IN.IPV6CTL_RTMINEXPIRE +IN.IPV6CTL_SENDREDIRECTS +IN.IPV6CTL_SOURCECHECK +IN.IPV6CTL_SOURCECHECK_LOGINT +IN.IPV6CTL_STATS +IN.IPV6CTL_TEMPPLTIME +IN.IPV6CTL_TEMPVLTIME +IN.IPV6CTL_USETEMPADDR +IN.IPV6CTL_USE_DEPRECATED +IN.IPV6CTL_V6ONLY +IN.IPV6PORT_ANONMAX +IN.IPV6PORT_ANONMIN +IN.IPV6PORT_RESERVED +IN.IPV6PORT_RESERVEDMAX +IN.IPV6PORT_RESERVEDMIN +IN.IPV6PROTO_MAXID +IN.IPV6_BINDV6ONLY +IN.IPV6_CHECKSUM +IN.IPV6_DEFAULT_MULTICAST_HOPS +IN.IPV6_DEFAULT_MULTICAST_LOOP +IN.IPV6_DSTOPTS +IN.IPV6_FAITH +IN.IPV6_FW_ADD +IN.IPV6_FW_DEL +IN.IPV6_FW_FLUSH +IN.IPV6_FW_GET +IN.IPV6_FW_ZERO +IN.IPV6_HOPLIMIT +IN.IPV6_HOPOPTS +IN.IPV6_IPSEC_POLICY +IN.IPV6_JOIN_GROUP +IN.IPV6_LEAVE_GROUP +IN.IPV6_MULTICAST_HOPS +IN.IPV6_MULTICAST_IF +IN.IPV6_MULTICAST_LOOP +IN.IPV6_NEXTHOP +IN.IPV6_OPTIONS +IN.IPV6_PKTINFO +IN.IPV6_PKTOPTIONS +IN.IPV6_PORTRANGE +IN.IPV6_PORTRANGE_DEFAULT +IN.IPV6_PORTRANGE_HIGH +IN.IPV6_PORTRANGE_LOW +IN.IPV6_RECVDSTADDR +IN.IPV6_RECVOPTS +IN.IPV6_RECVRETOPTS +IN.IPV6_RETOPTS +IN.IPV6_RTHDR +IN.IPV6_RTHDR_LOOSE +IN.IPV6_RTHDR_STRICT +IN.IPV6_RTHDR_TYPE_0 +IN.IPV6_SOCKOPT_RESERVED1 +IN.IPV6_UNICAST_HOPS +IN.IPV6_V6ONLY +IN.IP_ADD_MEMBERSHIP +IN.IP_DEFAULT_MULTICAST_LOOP +IN.IP_DEFAULT_MULTICAST_TTL +IN.IP_DROP_MEMBERSHIP +IN.IP_DUMMYNET_CONFIGURE +IN.IP_DUMMYNET_DEL +IN.IP_DUMMYNET_FLUSH +IN.IP_DUMMYNET_GET +IN.IP_FAITH +IN.IP_FORCE_OUT_IFP +IN.IP_FW_ADD +IN.IP_FW_DEL +IN.IP_FW_FLUSH +IN.IP_FW_GET +IN.IP_FW_RESETLOG +IN.IP_FW_ZERO +IN.IP_HDRINCL +IN.IP_IPSEC_POLICY +IN.IP_MAX_MEMBERSHIPS +IN.IP_MULTICAST_IF +IN.IP_MULTICAST_LOOP +IN.IP_MULTICAST_TTL +IN.IP_MULTICAST_VIF +IN.IP_NAT__XXX +IN.IP_OLD_FW_ADD +IN.IP_OLD_FW_DEL +IN.IP_OLD_FW_FLUSH +IN.IP_OLD_FW_GET +IN.IP_OLD_FW_RESETLOG +IN.IP_OLD_FW_ZERO +IN.IP_OPTIONS +IN.IP_PORTRANGE +IN.IP_PORTRANGE_DEFAULT +IN.IP_PORTRANGE_HIGH +IN.IP_PORTRANGE_LOW +IN.IP_RECVDSTADDR +IN.IP_RECVIF +IN.IP_RECVOPTS +IN.IP_RECVRETOPTS +IN.IP_RECVTTL +IN.IP_RETOPTS +IN.IP_RSVP_OFF +IN.IP_RSVP_ON +IN.IP_RSVP_VIF_OFF +IN.IP_RSVP_VIF_ON +IN.IP_STRIPHDR +IN.IP_TOS +IN.IP_TRAFFIC_MGT_BACKGROUND +IN.IP_TTL +IN.MSG_CTRUNC +IN.MSG_DONTROUTE +IN.MSG_DONTWAIT +IN.MSG_EOF +IN.MSG_EOR +IN.MSG_FLUSH +IN.MSG_HAVEMORE +IN.MSG_HOLD +IN.MSG_NEEDSA +IN.MSG_OOB +IN.MSG_PEEK +IN.MSG_RCVMORE +IN.MSG_SEND +IN.MSG_TRUNC +IN.MSG_WAITALL +IN.MSG_WAITSTREAM +IN.NET_MAXID +IN.NET_RT_DUMP +IN.NET_RT_DUMP2 +IN.NET_RT_FLAGS +IN.NET_RT_IFLIST +IN.NET_RT_IFLIST2 +IN.NET_RT_MAXID +IN.NET_RT_STAT +IN.NET_RT_TRASH +IN.NTOHL(??) +IN.NTOHS(??) +IN.PF_APPLETALK +IN.PF_ATM +IN.PF_CCITT +IN.PF_CHAOS +IN.PF_CNT +IN.PF_COIP +IN.PF_DATAKIT +IN.PF_DECnet +IN.PF_DLI +IN.PF_ECMA +IN.PF_HYLINK +IN.PF_IMPLINK +IN.PF_INET +IN.PF_INET6 +IN.PF_IPX +IN.PF_ISDN +IN.PF_ISO +IN.PF_KEY +IN.PF_LAT +IN.PF_LINK +IN.PF_LOCAL +IN.PF_MAX +IN.PF_NATM +IN.PF_NDRV +IN.PF_NETBIOS +IN.PF_NETGRAPH +IN.PF_NS +IN.PF_OSI +IN.PF_PIP +IN.PF_PPP +IN.PF_PUP +IN.PF_RESERVED_36 +IN.PF_ROUTE +IN.PF_RTIP +IN.PF_SIP +IN.PF_SNA +IN.PF_SYSTEM +IN.PF_UNIX +IN.PF_UNSPEC +IN.PF_XTP +IN.PTRDIFF_MAX +IN.PTRDIFF_MIN +IN.SCM_CREDS +IN.SCM_RIGHTS +IN.SCM_TIMESTAMP +IN.SHUT_RD +IN.SHUT_RDWR +IN.SHUT_WR +IN.SIG_ATOMIC_MAX +IN.SIG_ATOMIC_MIN +IN.SOCK_DGRAM +IN.SOCK_MAXADDRLEN +IN.SOCK_RAW +IN.SOCK_RDM +IN.SOCK_SEQPACKET +IN.SOCK_STREAM +IN.SOL_SOCKET +IN.SOMAXCONN +IN.SO_ACCEPTCONN +IN.SO_ACCEPTFILTER +IN.SO_BROADCAST +IN.SO_DEBUG +IN.SO_DONTROUTE +IN.SO_DONTTRUNC +IN.SO_ERROR +IN.SO_KEEPALIVE +IN.SO_LABEL +IN.SO_LINGER +IN.SO_LINGER_SEC +IN.SO_NKE +IN.SO_NOADDRERR +IN.SO_NOSIGPIPE +IN.SO_NOTIFYCONFLICT +IN.SO_NREAD +IN.SO_NWRITE +IN.SO_OOBINLINE +IN.SO_PEERLABEL +IN.SO_RCVBUF +IN.SO_RCVLOWAT +IN.SO_RCVTIMEO +IN.SO_RESTRICTIONS +IN.SO_RESTRICT_DENYIN +IN.SO_RESTRICT_DENYOUT +IN.SO_RESTRICT_DENYSET +IN.SO_REUSEADDR +IN.SO_REUSEPORT +IN.SO_REUSESHAREUID +IN.SO_SNDBUF +IN.SO_SNDLOWAT +IN.SO_SNDTIMEO +IN.SO_TIMESTAMP +IN.SO_TYPE +IN.SO_USELOOPBACK +IN.SO_WANTMORE +IN.SO_WANTOOBFLAG +IN.TRAFFIC_MGT_SO_BACKGROUND +IN.TRAFFIC_MGT_SO_BG_SUPPRESSED +IN.UINT16_MAX +IN.UINT8_MAX +IN.UINT_FAST16_MAX +IN.UINT_FAST8_MAX +IN.UINT_LEAST16_MAX +IN.UINT_LEAST8_MAX +IN.WCHAR_MAX +IN.WCHAR_MIN +IN.WINT_MAX +IN.WINT_MIN +IN.htonl(??) +IN.htons(??) +IN.ntohl(??) +IN.ntohs(??) +IN.pseudo_AF_HDRCMPLT +IN.pseudo_AF_KEY +IN.pseudo_AF_PIP +IN.pseudo_AF_RTIP +IN.pseudo_AF_XTP +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.WeakSet(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abs(number) -> number +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +aifc.warnings(??) +all(iterable) -> bool +any(iterable) -> bool +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +array.ArrayType(??) +array.array(typecode [, initializer]) -> array +array.typecodes +ascii(object) -> string +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.Assert(??) +ast.Assign(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FunctionDef(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NameConstant(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ONLY_AST +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.Try(??) +ast.Tuple(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.YieldFrom(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.unaryop(??) +ast.walk(??) +ast.withitem(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.fifo(??) +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asynchat.socket(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.JoinableQueue(??) +asyncio.LifoQueue(??) +asyncio.Lock(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.as_completed(??) +asyncio.async(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.events(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.logger(??) +asyncio.base_events.logging(??) +asyncio.base_events.os(??) +asyncio.base_events.socket(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.time(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.tasks(??) +asyncio.base_subprocess.transports(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.coroutine(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.TimerHandle(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.new_event_loop(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.threading(??) +asyncio.futures(??) +asyncio.futures.CancelledError(??) +asyncio.futures.Error(??) +asyncio.futures.Future(??) +asyncio.futures.InvalidStateError(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.TimeoutError(??) +asyncio.futures.concurrent(??) +asyncio.futures.events(??) +asyncio.futures.logging(??) +asyncio.futures.sys(??) +asyncio.futures.traceback(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.locks(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.events(??) +asyncio.locks.futures(??) +asyncio.locks.tasks(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.transports(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.JoinableQueue(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.coroutine(??) +asyncio.queues.events(??) +asyncio.queues.futures(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.transports(??) +asyncio.selectors(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.IncompleteReadError(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.events(??) +asyncio.streams.futures(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.streams.tasks(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.collections(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.futures(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.sys(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.CoroWrapper(??) +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.Task(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.async(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.coroutine(??) +asyncio.tasks.events(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.iscoroutine(??) +asyncio.tasks.iscoroutinefunction(??) +asyncio.tasks.linecache(??) +asyncio.tasks.logger(??) +asyncio.tasks.os(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.sys(??) +asyncio.tasks.traceback(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.weakref(??) +asyncio.test_utils.HTTPServer(??) +asyncio.test_utils.MockCallback(??) +asyncio.test_utils.MockPattern(??) +asyncio.test_utils.SSLWSGIServer(??) +asyncio.test_utils.SSLWSGIServerMixin(??) +asyncio.test_utils.SilentUnixWSGIServer(??) +asyncio.test_utils.SilentWSGIRequestHandler(??) +asyncio.test_utils.SilentWSGIServer(??) +asyncio.test_utils.TestLoop(??) +asyncio.test_utils.TestSelector(??) +asyncio.test_utils.UnixHTTPServer(??) +asyncio.test_utils.UnixSSLWSGIServer(??) +asyncio.test_utils.UnixWSGIServer(??) +asyncio.test_utils.WSGIRequestHandler(??) +asyncio.test_utils.WSGIServer(??) +asyncio.test_utils.base_events(??) +asyncio.test_utils.collections(??) +asyncio.test_utils.contextlib(??) +asyncio.test_utils.dummy_ssl_context(??) +asyncio.test_utils.events(??) +asyncio.test_utils.gen_unix_socket_path(??) +asyncio.test_utils.io(??) +asyncio.test_utils.make_test_protocol(??) +asyncio.test_utils.os(??) +asyncio.test_utils.re(??) +asyncio.test_utils.run_briefly(??) +asyncio.test_utils.run_once(??) +asyncio.test_utils.run_test_server(??) +asyncio.test_utils.run_test_unix_server(??) +asyncio.test_utils.run_until(??) +asyncio.test_utils.selectors(??) +asyncio.test_utils.socket(??) +asyncio.test_utils.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +asyncio.test_utils.socketserver(??) +asyncio.test_utils.ssl(??) +asyncio.test_utils.sys(??) +asyncio.test_utils.tasks(??) +asyncio.test_utils.tempfile(??) +asyncio.test_utils.threading(??) +asyncio.test_utils.time(??) +asyncio.test_utils.unittest(??) +asyncio.test_utils.unix_socket_path(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.transports.sys(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.fcntl(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.tasks(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.fcntl(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +audioop.add(??) +audioop.adpcm2lin(??) +audioop.alaw2lin(??) +audioop.avg(??) +audioop.avgpp(??) +audioop.bias(??) +audioop.byteswap(??) +audioop.cross(??) +audioop.error(??) +audioop.findfactor(??) +audioop.findfit(??) +audioop.findmax(??) +audioop.getsample(??) +audioop.lin2adpcm(??) +audioop.lin2alaw(??) +audioop.lin2lin(??) +audioop.lin2ulaw(??) +audioop.max(??) +audioop.maxpp(??) +audioop.minmax(??) +audioop.mul(??) +audioop.ratecv(??) +audioop.reverse(??) +audioop.rms(??) +audioop.tomono(??) +audioop.tostereo(??) +audioop.ulaw2lin(??) +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.itertools(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_GENERATOR +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(number) -> string +binascii.Error(??) +binascii.Incomplete(??) +binascii.a2b_base64(??) +binascii.a2b_hex(??) +binascii.a2b_hqx(??) +binascii.a2b_qp(??) +binascii.a2b_uu(??) +binascii.b2a_base64(??) +binascii.b2a_hex(??) +binascii.b2a_hqx(??) +binascii.b2a_qp(??) +binascii.b2a_uu(??) +binascii.crc32(??) +binascii.crc_hqx(??) +binascii.hexlify(??) +binascii.rlecode_hqx(??) +binascii.rledecode_hqx(??) +binascii.unhexlify(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(number) -> number +builtins.all(iterable) -> bool +builtins.any(iterable) -> bool +builtins.ascii(object) -> string +builtins.bin(number) -> string +builtins.bool(x) -> bool +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(object) -> bool +builtins.chr(i) -> Unicode character +builtins.classmethod(function) -> method +builtins.compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +builtins.complex(real[, imag]) -> complex number +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(object, name) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(x, y) -> (div, mod) +builtins.enumerate(iterable[, start]) -> iterator for index, value of iterable +builtins.eval(source[, globals[, locals]]) -> value +builtins.exec(object[, globals[, locals]]) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(x) -> floating point number +builtins.format(value[, format_spec]) -> string +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals() -> dictionary +builtins.hasattr(object, name) -> bool +builtins.hash(object) -> integer +builtins.help(??) +builtins.hex(number) -> string +builtins.id(object) -> integer +builtins.input([prompt]) -> string +builtins.int(x=0) -> integer +builtins.isinstance(object, class-or-type-or-tuple) -> bool +builtins.issubclass(C, B) -> bool +builtins.iter(iterable) -> iterator +builtins.len(module, object) +builtins.license(??) +builtins.list() -> new empty list +builtins.locals() -> dictionary +builtins.map(func, *iterables) --> map object +builtins.max(iterable[, key=func]) -> value +builtins.memoryview(object) +builtins.min(iterable[, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(number) -> string +builtins.open(??) +builtins.ord(c) -> integer +builtins.pow(x, y[, z]) -> number +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(object) -> string +builtins.reversed(sequence) -> reverse iterator over values of the sequence +builtins.round(number[, ndigits]) -> number +builtins.set() -> new empty set object +builtins.setattr(object, name, value) +builtins.slice(stop) +builtins.sorted(iterable, key=None, reverse=False) --> new sorted list +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(iterable[, start]) -> value +builtins.super() -> same as super(__class__, ) +builtins.tuple() -> empty tuple +builtins.type(object_or_name, bases, dict) +builtins.vars([object]) -> dictionary +builtins.zip(iter1 [,iter2 [...]]) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.RLock(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.warnings(??) +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(object) -> bool +cgi.BytesIO([buffer]) -> object +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.escape(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warn(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(i) -> Unicode character +chunk.Chunk(??) +classmethod(function) -> method +cmath.acos(x) +cmath.acosh(x) +cmath.asin(x) +cmath.asinh(x) +cmath.atan(x) +cmath.atanh(x) +cmath.cos(x) +cmath.cosh(x) +cmath.e +cmath.exp(x) +cmath.isfinite(z) -> bool +cmath.isinf(z) -> bool +cmath.isnan(z) -> bool +cmath.log(x[, base]) -> the logarithm of x to the given base. +cmath.log10(x) +cmath.phase(z) -> float +cmath.pi +cmath.polar(z) -> r: float, phi: float +cmath.rect(r, phi) -> z: complex +cmath.sin(x) +cmath.sinh(x) +cmath.sqrt(x) +cmath.tan(x) +cmath.tanh(x) +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(obj, [encoding[,errors]]) -> object +codecs.encode(obj, [encoding[,errors]]) -> object +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(encoding) -> CodecInfo +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(search_function) +codecs.register_error(errors, handler) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unicode_internal_decode(??) +codecs.unicode_internal_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.ByteString(??) +collections.Callable(??) +collections.ChainMap(??) +collections.Container(??) +collections.Counter(??) +collections.Hashable(??) +collections.ItemsView(??) +collections.Iterable(??) +collections.Iterator(??) +collections.KeysView(??) +collections.Mapping(??) +collections.MappingView(??) +collections.MutableMapping(??) +collections.MutableSequence(??) +collections.MutableSet(??) +collections.OrderedDict(??) +collections.Sequence(??) +collections.Set(??) +collections.Sized(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.ValuesView(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Container(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory[, ...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(source, filename, mode[, flags[, dont_inherit]]) -> code object +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.errno(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(real[, imag]) -> complex number +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.Full(??) +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.SimpleQueue(??) +concurrent.futures.process.atexit(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.queue(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.wait(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.atexit(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +copy.Error(??) +copy.PyStringMap(??) +copy.builtins(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copy.name +copy.t(??) +copy.weakref(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(iterable[, func]) --> accumulate object +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable, r) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(function or None, sequence) --> filterfalse object +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util.contextlib(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.newpad(??) +curses.newwin(??) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.wrapper(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(object, name) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.get_close_matches(??) +difflib.heapq(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +difflib.warnings(??) +dir([object]) -> list of strings +dis.Bytecode(??) +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(x, y) -> (div, mod) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.argparse(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +dummy_threading.Barrier(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread(??) +dummy_threading.ThreadError(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.local(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.maintype +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.contentmanager.subtype +email.contentmanager.typ(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.compat32(??) +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.message(??) +email.feedparser.re(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO([buffer]) -> object +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.Header(??) +email.generator.NL +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.compat32(??) +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.generator.warnings(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO([buffer]) -> object +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio.BytesIO([buffer]) -> object +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base.MIMEBase(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.mime.text.encode_7or8bit(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Message(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.parser.warnings(??) +email.policy.Compat32(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.raw_data_manager(??) +email.policy.strict(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.io(??) +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.StringIO(??) +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.base64(??) +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +email.utils.warnings(??) +ensurepip.bootstrap(??) +ensurepip.os(??) +ensurepip.pkgutil(??) +ensurepip.ssl(??) +ensurepip.sys(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.DynamicClassAttribute(??) +enum.Enum(??) +enum.EnumMeta(??) +enum.IntEnum(??) +enum.MappingProxyType(??) +enum.OrderedDict(??) +enum.sys(??) +enum.unique(??) +enumerate(iterable[, start]) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(source[, globals[, locals]]) -> value +exec(object[, globals[, locals]]) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register an handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +fcntl.FASYNC +fcntl.FD_CLOEXEC +fcntl.F_DUPFD +fcntl.F_FULLFSYNC +fcntl.F_GETFD +fcntl.F_GETFL +fcntl.F_GETLK +fcntl.F_GETOWN +fcntl.F_NOCACHE +fcntl.F_RDLCK +fcntl.F_SETFD +fcntl.F_SETFL +fcntl.F_SETLK +fcntl.F_SETLKW +fcntl.F_SETOWN +fcntl.F_UNLCK +fcntl.F_WRLCK +fcntl.LOCK_EX +fcntl.LOCK_NB +fcntl.LOCK_SH +fcntl.LOCK_UN +fcntl.fcntl(fd, op, [arg]) +fcntl.flock(fd, operation) +fcntl.ioctl(fd, op[, arg[, mutate_flag]]) +fcntl.lockf (fd, operation, length=0, start=0, whence=0) +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(function or None, sequence) --> filterfalse object +filecmp.os(??) +filecmp.stat(??) +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]]) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(value[, format_spec]) -> string +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +formatter.warnings(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.Netrc(??) +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.os(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +ftplib.warnings(??) +functools.MappingProxyType(??) +functools.MethodType(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.WeakKeyDictionary(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.reduce(function, sequence[, initial]) -> value +functools.singledispatch(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage(??) +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats() -> [...] +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.is_tracked(obj) -> bool +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.io(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.os(??) +gettext.re(??) +gettext.struct(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +globals() -> dictionary +grp.getgrall() -> list of tuples +grp.getgrgid(id) -> tuple +grp.getgrnam(name) -> tuple +grp.struct_group(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(object, name) -> bool +hash(object) -> integer +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(??) +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha512(??) +heapq.chain(*iterables) --> chain object +heapq.count(start=0, step=1) --> count object +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +heapq.heappushpop(heap, item) -> value. Push item on the heap, then pop and return the smallest item +heapq.heapreplace(heap, item) -> value. Pop and return the current smallest value, and add the new item. +heapq.islice(iterable, stop) --> islice object +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +heapq.tee(iterable, n=2) --> tuple of n independent iterators. +help(??) +hex(number) -> string +hmac.HMAC(??) +hmac.compare_digest(a, b) -> bool +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser.HTMLParseError(??) +html.parser.HTMLParser(??) +html.parser.attrfind(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.parser.warnings(??) +html.unescape(??) +http.client(??) +http.client.ACCEPTED +http.client.BAD_GATEWAY +http.client.BAD_REQUEST +http.client.BadStatusLine(??) +http.client.CONFLICT +http.client.CONTINUE +http.client.CREATED +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED +http.client.FAILED_DEPENDENCY +http.client.FORBIDDEN +http.client.FOUND +http.client.GATEWAY_TIMEOUT +http.client.GONE +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED +http.client.IM_USED +http.client.INSUFFICIENT_STORAGE +http.client.INTERNAL_SERVER_ERROR +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED +http.client.LOCKED +http.client.LineTooLong(??) +http.client.MAXAMOUNT +http.client.METHOD_NOT_ALLOWED +http.client.MOVED_PERMANENTLY +http.client.MULTIPLE_CHOICES +http.client.MULTI_STATUS +http.client.NETWORK_AUTHENTICATION_REQUIRED +http.client.NON_AUTHORITATIVE_INFORMATION +http.client.NOT_ACCEPTABLE +http.client.NOT_EXTENDED +http.client.NOT_FOUND +http.client.NOT_IMPLEMENTED +http.client.NOT_MODIFIED +http.client.NO_CONTENT +http.client.NotConnected(??) +http.client.OK +http.client.PARTIAL_CONTENT +http.client.PAYMENT_REQUIRED +http.client.PRECONDITION_FAILED +http.client.PRECONDITION_REQUIRED +http.client.PROCESSING +http.client.PROXY_AUTHENTICATION_REQUIRED +http.client.REQUESTED_RANGE_NOT_SATISFIABLE +http.client.REQUEST_ENTITY_TOO_LARGE +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE +http.client.REQUEST_TIMEOUT +http.client.REQUEST_URI_TOO_LONG +http.client.RESET_CONTENT +http.client.ResponseNotReady(??) +http.client.SEE_OTHER +http.client.SERVICE_UNAVAILABLE +http.client.SWITCHING_PROTOCOLS +http.client.TEMPORARY_REDIRECT +http.client.TOO_MANY_REQUESTS +http.client.UNAUTHORIZED +http.client.UNPROCESSABLE_ENTITY +http.client.UNSUPPORTED_MEDIA_TYPE +http.client.UPGRADE_REQUIRED +http.client.USE_PROXY +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.io(??) +http.client.os(??) +http.client.parse_headers(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.client.warnings(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.argparse(??) +http.server.copy(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(object) -> integer +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.ResourceLoader(??) +importlib.abc.SourceLoader(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.reload(??) +importlib.sys(??) +importlib.types(??) +importlib.util(??) +importlib.util.MAGIC_NUMBER +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.warnings(??) +importlib.warnings(??) +input([prompt]) -> string +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CO_GENERATOR +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.ModuleInfo(name, suffix, mode, module_type) +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.ast(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.currentframe(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int(x=0) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO([buffer]) -> object +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(object, class-or-type-or-tuple) -> bool +issubclass(C, B) -> bool +iter(iterable) -> iterator +itertools.accumulate(iterable[, func]) --> accumulate object +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable, r) --> combinations object +itertools.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.filterfalse(function or None, sequence) --> filterfalse object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.islice(iterable, stop) --> islice object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecoder(??) +json.JSONEncoder(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS +json.decoder.JSONArray(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.errmsg(??) +json.decoder.linecol(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.FLOAT_REPR(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(??) +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +keyword.main(??) +len(module, object) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.getline(??) +linecache.getlines(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list() -> new empty list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.collections(??) +locale.currency(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.k +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.v +locale.windows_locale(??) +locals() -> dictionary +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.socket(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.thread(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers.BOM_UTF8 +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.errno(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFDOOR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFPORT +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IFWHT +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(mode) -> bool +macpath.S_ISCHR(mode) -> bool +macpath.S_ISDIR(mode) -> bool +macpath.S_ISDOOR(mode) -> bool +macpath.S_ISFIFO(mode) -> bool +macpath.S_ISGID +macpath.S_ISLNK(mode) -> bool +macpath.S_ISPORT(mode) -> bool +macpath.S_ISREG(mode) -> bool +macpath.S_ISSOCK(mode) -> bool +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_ISWHT(mode) -> bool +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_COMPRESSED +macpath.UF_HIDDEN +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep(??) +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.filemode(??) +macpath.genericpath(??) +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os(??) +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.samefile(??) +macpath.sameopenfile(??) +macpath.samestat(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames(??) +macurl2path.os(??) +macurl2path.pathname2url(??) +macurl2path.url2pathname(??) +macurl2path.urllib(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.sys(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(func, *iterables) --> map object +marshal.dump(value, file[, version]) +marshal.dumps(value[, version]) +marshal.load(file) +marshal.loads(bytes) +marshal.version +math.acos(x) +math.acosh(x) +math.asin(x) +math.asinh(x) +math.atan(x) +math.atan2(y, x) +math.atanh(x) +math.ceil(x) +math.copysign(x, y) +math.cos(x) +math.cosh(x) +math.degrees(x) +math.e +math.erf(x) +math.erfc(x) +math.exp(x) +math.expm1(x) +math.fabs(x) +math.factorial(x) -> Integral +math.floor(x) +math.fmod(x, y) +math.frexp(x) +math.fsum(iterable) +math.gamma(x) +math.hypot(x, y) +math.isfinite(x) -> bool +math.isinf(x) -> bool +math.isnan(x) -> bool +math.ldexp(x, i) +math.lgamma(x) +math.log(x[, base]) +math.log10(x) +math.log1p(x) +math.log2(x) +math.modf(x) +math.pi +math.pow(x, y) +math.radians(x) +math.sin(x) +math.sinh(x) +math.sqrt(x) +math.tan(x) +math.tanh(x) +math.trunc(x:Real) -> Integral +max(iterable[, key=func]) -> value +memoryview(object) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable[, key=func]) -> value +mmap.ACCESS_COPY +mmap.ACCESS_READ +mmap.ACCESS_WRITE +mmap.ALLOCATIONGRANULARITY +mmap.MAP_ANON +mmap.MAP_ANONYMOUS +mmap.MAP_PRIVATE +mmap.MAP_SHARED +mmap.PAGESIZE +mmap.PROT_EXEC +mmap.PROT_READ +mmap.PROT_WRITE +mmap.error(??) +mmap.mmap(??) +modulefinder.AddPackagePath(??) +modulefinder.HAVE_ARGUMENT +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.imp(??) +modulefinder.importlib(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.struct(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +modulefinder.warnings(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.ForkingPickler(??) +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.errno(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list() -> new empty list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.UNSIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_unsigned(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.semaphore_tracker(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.write_unsigned(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.context(??) +multiprocessing.heap.itertools(??) +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.context(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.cpu_count(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.util(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.errno(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.sys(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.context(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.context(??) +multiprocessing.popen_spawn_posix.current_process(??) +multiprocessing.popen_spawn_posix.fcntl(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.ForkingPickler(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.reduction.util(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.semaphore_tracker.SemaphoreTracker(??) +multiprocessing.semaphore_tracker.current_process(??) +multiprocessing.semaphore_tracker.ensure_running(??) +multiprocessing.semaphore_tracker.errno(??) +multiprocessing.semaphore_tracker.getfd(??) +multiprocessing.semaphore_tracker.main(??) +multiprocessing.semaphore_tracker.os(??) +multiprocessing.semaphore_tracker.register(??) +multiprocessing.semaphore_tracker.signal(??) +multiprocessing.semaphore_tracker.spawn(??) +multiprocessing.semaphore_tracker.sys(??) +multiprocessing.semaphore_tracker.threading(??) +multiprocessing.semaphore_tracker.unregister(??) +multiprocessing.semaphore_tracker.util(??) +multiprocessing.semaphore_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.ForkingPickler(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.pickle(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.itertools(??) +multiprocessing.synchronize.os(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.debug(??) +multiprocessing.util.functools(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nis.cat(map, domain = defaultdomain) +nis.error(??) +nis.get_default_domain() -> str +nis.maps(domain = defaultdomain) +nis.match(key, map, domain = defaultdomain) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(number) -> string +open(??) +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imod(??) +operator.imul(??) +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(a, b) -- Same as a<=b. +operator.length_hint(obj, default=0) -> int +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.rshift(a, b) -- Same as a >> b. +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(c) -> integer +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_TRAPPED +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_EXLOCK +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(status) -> bool +os.WEXITED +os.WEXITSTATUS(status) -> integer +os.WIFCONTINUED(status) -> bool +os.WIFEXITED(status) -> bool +os.WIFSIGNALED(status) -> bool +os.WIFSTOPPED(status) -> bool +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(status) -> integer +os.WTERMSIG(status) -> integer +os.WUNTRACED +os.W_OK +os.X_OK +os.abort() -> does not return! +os.access(??) +os.altsep(??) +os.chdir(path) +os.chflags(path, flags, *, follow_symlinks=True) +os.chmod(path, mode, *, dir_fd=None, follow_symlinks=True) +os.chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True) +os.chroot(path) +os.close(fd) +os.closerange(fd_low, fd_high) +os.confstr(name) -> string +os.confstr_names(??) +os.cpu_count() -> integer +os.ctermid() -> string +os.curdir +os.defpath +os.device_encoding(fd) -> str +os.devnull +os.dup(fd) -> fd2 +os.dup2(old_fd, new_fd) +os.environ(??) +os.environb(??) +os.errno(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(path, args) +os.execve(path, args, env) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(fd) +os.fchmod(fd, mode) +os.fchown(fd, uid, gid) +os.fdopen(??) +os.fork() -> pid +os.forkpty() -> (pid, master_fd) +os.fpathconf(fd, name) -> integer +os.fsdecode(??) +os.fsencode(??) +os.fstat(fd) -> stat result +os.fstatvfs(fd) -> statvfs result +os.fsync(fildes) +os.ftruncate(fd, length) +os.get_exec_path(??) +os.get_inheritable(fd) -> bool +os.get_terminal_size(??) +os.getcwd() -> path +os.getcwdb() -> path +os.getegid() -> egid +os.getenv(??) +os.getenvb(??) +os.geteuid() -> euid +os.getgid() -> gid +os.getgrouplist(user, group) -> list of groups to which a user belongs +os.getgroups() -> list of group IDs +os.getloadavg() -> (float, float, float) +os.getlogin() -> string +os.getpgid(pid) -> pgid +os.getpgrp() -> pgrp +os.getpid() -> pid +os.getppid() -> ppid +os.getpriority(which, who) -> current_priority +os.getsid(pid) -> sid +os.getuid() -> uid +os.initgroups(username, gid) -> None +os.isatty(fd) -> bool +os.kill(pid, sig) +os.killpg(pgid, sig) +os.lchflags(path, flags) +os.lchmod(path, mode) +os.lchown(path, uid, gid) +os.linesep +os.link(src, dst, *, src_dir_fd=None, dst_dir_fd=None, follow_symlinks=True) +os.listdir(path='.') -> list_of_filenames +os.lockf(fd, cmd, len) +os.lseek(fd, pos, how) -> newpos +os.lstat(path, *, dir_fd=None) -> stat result +os.major(device) -> major number +os.makedev(major, minor) -> device number +os.makedirs(path [, mode=0o777][, exist_ok=False]) +os.minor(device) -> minor number +os.mkdir(path, mode=0o777, *, dir_fd=None) +os.mkfifo(path, mode=0o666, *, dir_fd=None) +os.mknod(filename, mode=0o600, device=0, *, dir_fd=None) +os.name +os.nice(inc) -> new_priority +os.open(path, flags, mode=0o777, *, dir_fd=None) +os.openpty() -> (master_fd, slave_fd) +os.pardir +os.path(??) +os.pathconf(path, name) -> integer +os.pathconf_names(??) +os.pathsep +os.pipe() -> (read_end, write_end) +os.popen(??) +os.pread(fd, buffersize, offset) -> string +os.putenv(key, value) +os.pwrite(fd, string, offset) -> byteswritten +os.read(fd, buffersize) -> bytes +os.readlink(path, *, dir_fd=None) -> path +os.readv(fd, buffers) -> bytesread +os.remove(path, *, dir_fd=None) +os.removedirs(path) +os.rename(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +os.renames(old, new) +os.replace(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +os.rmdir(path, *, dir_fd=None) +os.sched_get_priority_max(policy) +os.sched_get_priority_min(policy) +os.sched_yield() +os.sendfile(out, in, offset, nbytes) -> byteswritten +os.sep +os.set_inheritable(fd, inheritable) +os.setegid(gid) +os.seteuid(uid) +os.setgid(gid) +os.setgroups(list) +os.setpgid(pid, pgrp) +os.setpgrp() +os.setpriority(which, who, prio) -> None +os.setregid(rgid, egid) +os.setreuid(ruid, euid) +os.setsid() +os.setuid(uid) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_float_times([newval]) -> oldval +os.stat_result(??) +os.statvfs(path) +os.statvfs_result(??) +os.strerror(code) -> string +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(src, dst, target_is_directory=False, *, dir_fd=None) +os.sync() +os.sys(??) +os.sysconf(name) -> integer +os.sysconf_names(??) +os.system(command) -> exit_status +os.tcgetpgrp(fd) -> pgid +os.tcsetpgrp(fd, pgid) +os.terminal_size(??) +os.times() -> times_result +os.times_result(??) +os.truncate(path, length) +os.ttyname(??) +os.umask(new_mask) -> old_mask +os.uname() -> uname_result +os.uname_result(??) +os.unlink(path, *, dir_fd=None) +os.unsetenv(key) +os.urandom(n) -> str +os.utime(path, times=None, *, ns=None, dir_fd=None, follow_symlinks=True) +os.wait() -> (pid, status) +os.wait3(options) -> (pid, status, rusage) +os.wait4(pid, options) -> (pid, status, rusage) +os.waitpid(pid, options) -> (pid, status) +os.walk(??) +os.write(fd, data) -> byteswritten +os.writev(fd, buffers) -> byteswritten +parser.ParserError(??) +parser.STType(??) +parser.compilest(??) +parser.expr(??) +parser.isexpr(??) +parser.issuite(??) +parser.sequence2st(??) +parser.st2list(??) +parser.st2tuple(??) +parser.suite(??) +parser.tuple2st(??) +pathlib.EINVAL +pathlib.ENOENT +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.contextmanager(??) +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.nt(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.supports_symlinks(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.ModuleType(??) +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(fmt, v1, v2, ...) -> bytes +pickle.re(??) +pickle.sys(??) +pickle.unpack(fmt, buffer) -> (v1, v2, ...) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.DEV_NULL +platform.architecture(??) +platform.collections(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.subprocess(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(system, node, release, version, machine, processor) +platform.version(??) +platform.win32_ver(??) +plistlib.BytesIO([buffer]) -> object +plistlib.Data(??) +plistlib.Dict(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate([encoding[, namespace_separator]]) -> parser +plistlib.Plist(??) +plistlib.PlistFormat(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.contextlib(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.struct(??) +plistlib.warn(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_TRAPPED +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_EXLOCK +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(status) -> bool +posix.WEXITED +posix.WEXITSTATUS(status) -> integer +posix.WIFCONTINUED(status) -> bool +posix.WIFEXITED(status) -> bool +posix.WIFSIGNALED(status) -> bool +posix.WIFSTOPPED(status) -> bool +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(status) -> integer +posix.WTERMSIG(status) -> integer +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort() -> does not return! +posix.access(??) +posix.chdir(path) +posix.chflags(path, flags, *, follow_symlinks=True) +posix.chmod(path, mode, *, dir_fd=None, follow_symlinks=True) +posix.chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True) +posix.chroot(path) +posix.close(fd) +posix.closerange(fd_low, fd_high) +posix.confstr(name) -> string +posix.confstr_names(??) +posix.cpu_count() -> integer +posix.ctermid() -> string +posix.device_encoding(fd) -> str +posix.dup(fd) -> fd2 +posix.dup2(old_fd, new_fd) +posix.environ(??) +posix.error(??) +posix.execv(path, args) +posix.execve(path, args, env) +posix.fchdir(fd) +posix.fchmod(fd, mode) +posix.fchown(fd, uid, gid) +posix.fork() -> pid +posix.forkpty() -> (pid, master_fd) +posix.fpathconf(fd, name) -> integer +posix.fstat(fd) -> stat result +posix.fstatvfs(fd) -> statvfs result +posix.fsync(fildes) +posix.ftruncate(fd, length) +posix.get_inheritable(fd) -> bool +posix.get_terminal_size(??) +posix.getcwd() -> path +posix.getcwdb() -> path +posix.getegid() -> egid +posix.geteuid() -> euid +posix.getgid() -> gid +posix.getgrouplist(user, group) -> list of groups to which a user belongs +posix.getgroups() -> list of group IDs +posix.getloadavg() -> (float, float, float) +posix.getlogin() -> string +posix.getpgid(pid) -> pgid +posix.getpgrp() -> pgrp +posix.getpid() -> pid +posix.getppid() -> ppid +posix.getpriority(which, who) -> current_priority +posix.getsid(pid) -> sid +posix.getuid() -> uid +posix.initgroups(username, gid) -> None +posix.isatty(fd) -> bool +posix.kill(pid, sig) +posix.killpg(pgid, sig) +posix.lchflags(path, flags) +posix.lchmod(path, mode) +posix.lchown(path, uid, gid) +posix.link(src, dst, *, src_dir_fd=None, dst_dir_fd=None, follow_symlinks=True) +posix.listdir(path='.') -> list_of_filenames +posix.lockf(fd, cmd, len) +posix.lseek(fd, pos, how) -> newpos +posix.lstat(path, *, dir_fd=None) -> stat result +posix.major(device) -> major number +posix.makedev(major, minor) -> device number +posix.minor(device) -> minor number +posix.mkdir(path, mode=0o777, *, dir_fd=None) +posix.mkfifo(path, mode=0o666, *, dir_fd=None) +posix.mknod(filename, mode=0o600, device=0, *, dir_fd=None) +posix.nice(inc) -> new_priority +posix.open(path, flags, mode=0o777, *, dir_fd=None) +posix.openpty() -> (master_fd, slave_fd) +posix.pathconf(path, name) -> integer +posix.pathconf_names(??) +posix.pipe() -> (read_end, write_end) +posix.pread(fd, buffersize, offset) -> string +posix.putenv(key, value) +posix.pwrite(fd, string, offset) -> byteswritten +posix.read(fd, buffersize) -> bytes +posix.readlink(path, *, dir_fd=None) -> path +posix.readv(fd, buffers) -> bytesread +posix.remove(path, *, dir_fd=None) +posix.rename(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +posix.replace(src, dst, *, src_dir_fd=None, dst_dir_fd=None) +posix.rmdir(path, *, dir_fd=None) +posix.sched_get_priority_max(policy) +posix.sched_get_priority_min(policy) +posix.sched_yield() +posix.sendfile(out, in, offset, nbytes) -> byteswritten +posix.set_inheritable(fd, inheritable) +posix.setegid(gid) +posix.seteuid(uid) +posix.setgid(gid) +posix.setgroups(list) +posix.setpgid(pid, pgrp) +posix.setpgrp() +posix.setpriority(which, who, prio) -> None +posix.setregid(rgid, egid) +posix.setreuid(ruid, euid) +posix.setsid() +posix.setuid(uid) +posix.stat(??) +posix.stat_float_times([newval]) -> oldval +posix.stat_result(??) +posix.statvfs(path) +posix.statvfs_result(??) +posix.strerror(code) -> string +posix.symlink(src, dst, target_is_directory=False, *, dir_fd=None) +posix.sync() +posix.sysconf(name) -> integer +posix.sysconf_names(??) +posix.system(command) -> exit_status +posix.tcgetpgrp(fd) -> pgid +posix.tcsetpgrp(fd, pgid) +posix.terminal_size(??) +posix.times() -> times_result +posix.times_result(??) +posix.truncate(path, length) +posix.ttyname(??) +posix.umask(new_mask) -> old_mask +posix.uname() -> uname_result +posix.uname_result(??) +posix.unlink(path, *, dir_fd=None) +posix.unsetenv(key) +posix.urandom(n) -> str +posix.utime(path, times=None, *, ns=None, dir_fd=None, follow_symlinks=True) +posix.wait() -> (pid, status) +posix.wait3(options) -> (pid, status, rusage) +posix.wait4(pid, options) -> (pid, status, rusage) +posix.waitpid(pid, options) -> (pid, status) +posix.write(fd, data) -> byteswritten +posix.writev(fd, buffers) -> byteswritten +pow(x, y[, z]) -> number +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.OptionParser(??) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.os(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall() -> list_of_entries +pwd.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +pwd.getpwuid(uid) -> (pw_name,pw_passwd,pw_uid, +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.compile(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.importlib(??) +pyclbr.io(??) +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.os(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.extract_tb(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +queue.threading(??) +queue.time(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A +re.ASCII +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copyreg(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.sys(??) +re.template(??) +readline.add_history(string) -> None +readline.clear_history() -> None +readline.get_begidx() -> int +readline.get_completer() -> function +readline.get_completer_delims() -> string +readline.get_completion_type() -> int +readline.get_current_history_length() -> integer +readline.get_endidx() -> int +readline.get_history_item() -> string +readline.get_history_length() -> int +readline.get_line_buffer() -> string +readline.insert_text(string) -> None +readline.parse_and_bind(string) -> None +readline.read_history_file([filename]) -> None +readline.read_init_file([filename]) -> None +readline.redisplay() -> None +readline.remove_history_item(pos) -> None +readline.replace_history_item(pos, line) -> None +readline.set_completer([function]) -> None +readline.set_completer_delims(string) -> None +readline.set_completion_display_matches_hook([function]) -> None +readline.set_history_length(length) -> None +readline.set_pre_input_hook([function]) -> None +readline.set_startup_hook([function]) -> None +readline.write_history_file([filename]) -> None +repr(object) -> string +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +resource.RLIMIT_AS +resource.RLIMIT_CORE +resource.RLIMIT_CPU +resource.RLIMIT_DATA +resource.RLIMIT_FSIZE +resource.RLIMIT_MEMLOCK +resource.RLIMIT_NOFILE +resource.RLIMIT_NPROC +resource.RLIMIT_RSS +resource.RLIMIT_STACK +resource.RLIM_INFINITY +resource.RUSAGE_CHILDREN +resource.RUSAGE_SELF +resource.error(??) +resource.getpagesize(??) +resource.getrlimit(??) +resource.getrusage(??) +resource.setrlimit(??) +resource.struct_rusage(??) +reversed(sequence) -> reverse iterator over values of the sequence +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(number[, ndigits]) -> number +runpy.get_importer(??) +runpy.importlib(??) +runpy.os(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +runpy.types(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +select.KQ_EV_ADD +select.KQ_EV_CLEAR +select.KQ_EV_DELETE +select.KQ_EV_DISABLE +select.KQ_EV_ENABLE +select.KQ_EV_EOF +select.KQ_EV_ERROR +select.KQ_EV_FLAG1 +select.KQ_EV_ONESHOT +select.KQ_EV_SYSFLAGS +select.KQ_FILTER_AIO +select.KQ_FILTER_PROC +select.KQ_FILTER_READ +select.KQ_FILTER_SIGNAL +select.KQ_FILTER_TIMER +select.KQ_FILTER_VNODE +select.KQ_FILTER_WRITE +select.KQ_NOTE_ATTRIB +select.KQ_NOTE_CHILD +select.KQ_NOTE_DELETE +select.KQ_NOTE_EXEC +select.KQ_NOTE_EXIT +select.KQ_NOTE_EXTEND +select.KQ_NOTE_FORK +select.KQ_NOTE_LINK +select.KQ_NOTE_LOWAT +select.KQ_NOTE_PCTRLMASK +select.KQ_NOTE_PDATAMASK +select.KQ_NOTE_RENAME +select.KQ_NOTE_REVOKE +select.KQ_NOTE_TRACK +select.KQ_NOTE_TRACKERR +select.KQ_NOTE_WRITE +select.PIPE_BUF +select.POLLERR +select.POLLHUP +select.POLLIN +select.POLLNVAL +select.POLLOUT +select.POLLPRI +select.POLLRDBAND +select.POLLRDNORM +select.POLLWRBAND +select.POLLWRNORM +select.error(??) +select.kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0) +select.kqueue(??) +select.poll(??) +select.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(object, name, value) +shelve.BsdDbShelf(??) +shelve.BytesIO([buffer]) -> object +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.abspath(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(name) -> tuple +shutil.getpwnam(name) -> (pw_name,pw_passwd,pw_uid, +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.os(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.tarfile(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT +signal.SIGALRM +signal.SIGBUS +signal.SIGCHLD +signal.SIGCONT +signal.SIGEMT +signal.SIGFPE +signal.SIGHUP +signal.SIGILL +signal.SIGINFO +signal.SIGINT +signal.SIGIO +signal.SIGIOT +signal.SIGKILL +signal.SIGPIPE +signal.SIGPROF +signal.SIGQUIT +signal.SIGSEGV +signal.SIGSTOP +signal.SIGSYS +signal.SIGTERM +signal.SIGTRAP +signal.SIGTSTP +signal.SIGTTIN +signal.SIGTTOU +signal.SIGURG +signal.SIGUSR1 +signal.SIGUSR2 +signal.SIGVTALRM +signal.SIGWINCH +signal.SIGXCPU +signal.SIGXFSZ +signal.SIG_BLOCK +signal.SIG_DFL +signal.SIG_IGN +signal.SIG_SETMASK +signal.SIG_UNBLOCK +signal.alarm(seconds) +signal.default_int_handler(...) +signal.getitimer(which) +signal.getsignal(sig) -> action +signal.pause() +signal.pthread_kill(thread_id, signum) +signal.pthread_sigmask(how, mask) -> old mask +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(which, seconds[, interval]) +signal.siginterrupt(sig, flag) -> None +signal.signal(sig, action) -> action +signal.sigpending() -> list +signal.sigwait(sigset) -> signum +site.CONFIG_LINE +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.aliasmbcs(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.EMPTYSTRING +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.stderr(??) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_DEFAULT +socket.AI_MASK +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.AI_V4MAPPED_CFG +socket.AddressFamily(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOF +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketType(??) +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.create_connection(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.errno(??) +socketserver.os(??) +socketserver.select(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +sorted(iterable, key=None, reverse=False) --> new sorted list +sqlite3.Binary(??) +sqlite3.Cache(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement(??) +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.complete_statement(sql) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Cache(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement(??) +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.AF_INET(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY +ssl.ALERT_DESCRIPTION_DECODE_ERROR +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE +ssl.ALERT_DESCRIPTION_UNKNOWN_CA +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION +ssl.ALERT_DESCRIPTION_USER_CANCELLED +ssl.CERT_NONE +ssl.CERT_OPTIONAL +ssl.CERT_REQUIRED +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ECDH(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL +ssl.OP_CIPHER_SERVER_PREFERENCE +ssl.OP_NO_SSLv2 +ssl.OP_NO_SSLv3 +ssl.OP_NO_TLSv1 +ssl.OP_SINGLE_DH_USE +ssl.OP_SINGLE_ECDH_USE +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv2 +ssl.PROTOCOL_SSLv23 +ssl.PROTOCOL_SSLv3 +ssl.PROTOCOL_TLSv1 +ssl.Purpose(??) +ssl.RAND_add(string, entropy) +ssl.RAND_bytes(n) -> bytes +ssl.RAND_egd(path) -> bytes +ssl.RAND_pseudo_bytes(n) -> (bytes, is_cryptographic) +ssl.RAND_status() -> 0 or 1 +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF +ssl.SSL_ERROR_INVALID_ERROR_CODE +ssl.SSL_ERROR_SSL +ssl.SSL_ERROR_SYSCALL +ssl.SSL_ERROR_WANT_CONNECT +ssl.SSL_ERROR_WANT_READ +ssl.SSL_ERROR_WANT_WRITE +ssl.SSL_ERROR_WANT_X509_LOOKUP +ssl.SSL_ERROR_ZERO_RETURN +ssl.VERIFY_CRL_CHECK_CHAIN +ssl.VERIFY_CRL_CHECK_LEAF +ssl.VERIFY_DEFAULT +ssl.VERIFY_X509_STRICT +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.re(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.textwrap(??) +ssl.traceback(??) +ssl.wrap_socket(??) +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Decimal(??) +statistics.Fraction(??) +statistics.StatisticsError(??) +statistics.collections(??) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.stdev(??) +statistics.variance(??) +str(object='') -> str +string.ChainMap(??) +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(fmt) -> integer +struct.error(??) +struct.iter_unpack(fmt, buffer) -> iterator(v1, v2, ...) +struct.pack(fmt, v1, v2, ...) -> bytes +struct.pack_into(fmt, buffer, offset, v1, v2, ...) +struct.unpack(fmt, buffer) -> (v1, v2, ...) +struct.unpack_from(fmt, buffer, offset=0) -> (v1, v2, ...) +subprocess.CalledProcessError(??) +subprocess.DEVNULL +subprocess.MAXFD +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno(??) +subprocess.gc(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.mswindows(??) +subprocess.os(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.time(??) +subprocess.traceback(??) +subprocess.warnings(??) +sum(iterable[, start]) -> value +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +sunau.openfp(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.atom +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_arg +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.OPT_IMPORT_STAR +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.api_version +sys.argv(??) +sys.base_exec_prefix +sys.base_prefix +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode(??) +sys.exc_info() -> (type, value, traceback) +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.getallocatedblocks() -> integer +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.getswitchinterval() -> current thread switch interval; see setswitchinterval(). +sys.gettrace() +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(string) -> string +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.setswitchinterval(n) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.thread_info(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +syslog.LOG_ALERT +syslog.LOG_AUTH +syslog.LOG_AUTHPRIV +syslog.LOG_CONS +syslog.LOG_CRIT +syslog.LOG_CRON +syslog.LOG_DAEMON +syslog.LOG_DEBUG +syslog.LOG_EMERG +syslog.LOG_ERR +syslog.LOG_INFO +syslog.LOG_KERN +syslog.LOG_LOCAL0 +syslog.LOG_LOCAL1 +syslog.LOG_LOCAL2 +syslog.LOG_LOCAL3 +syslog.LOG_LOCAL4 +syslog.LOG_LOCAL5 +syslog.LOG_LOCAL6 +syslog.LOG_LOCAL7 +syslog.LOG_LPR +syslog.LOG_MAIL +syslog.LOG_MASK(??) +syslog.LOG_NDELAY +syslog.LOG_NEWS +syslog.LOG_NOTICE +syslog.LOG_NOWAIT +syslog.LOG_ODELAY +syslog.LOG_PERROR +syslog.LOG_PID +syslog.LOG_SYSLOG +syslog.LOG_UPTO(??) +syslog.LOG_USER +syslog.LOG_UUCP +syslog.LOG_WARNING +syslog.closelog(??) +syslog.openlog(??) +syslog.setlogmask(??) +syslog.syslog(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TarIter(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.filemode(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempprefix(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +termios.B0 +termios.B110 +termios.B115200 +termios.B1200 +termios.B134 +termios.B150 +termios.B1800 +termios.B19200 +termios.B200 +termios.B230400 +termios.B2400 +termios.B300 +termios.B38400 +termios.B4800 +termios.B50 +termios.B57600 +termios.B600 +termios.B75 +termios.B9600 +termios.BRKINT +termios.BS0 +termios.BS1 +termios.BSDLY +termios.CDSUSP +termios.CEOF +termios.CEOL +termios.CEOT +termios.CERASE +termios.CFLUSH +termios.CINTR +termios.CKILL +termios.CLNEXT +termios.CLOCAL +termios.CQUIT +termios.CR0 +termios.CR1 +termios.CR2 +termios.CR3 +termios.CRDLY +termios.CREAD +termios.CRPRNT +termios.CRTSCTS +termios.CS5 +termios.CS6 +termios.CS7 +termios.CS8 +termios.CSIZE +termios.CSTART +termios.CSTOP +termios.CSTOPB +termios.CSUSP +termios.CWERASE +termios.ECHO +termios.ECHOCTL +termios.ECHOE +termios.ECHOK +termios.ECHOKE +termios.ECHONL +termios.ECHOPRT +termios.EXTA +termios.EXTB +termios.FF0 +termios.FF1 +termios.FFDLY +termios.FIOASYNC +termios.FIOCLEX +termios.FIONBIO +termios.FIONCLEX +termios.FIONREAD +termios.FLUSHO +termios.HUPCL +termios.ICANON +termios.ICRNL +termios.IEXTEN +termios.IGNBRK +termios.IGNCR +termios.IGNPAR +termios.IMAXBEL +termios.INLCR +termios.INPCK +termios.ISIG +termios.ISTRIP +termios.IXANY +termios.IXOFF +termios.IXON +termios.NCCS +termios.NL0 +termios.NL1 +termios.NLDLY +termios.NOFLSH +termios.OCRNL +termios.OFDEL +termios.OFILL +termios.ONLCR +termios.ONLRET +termios.ONOCR +termios.OPOST +termios.PARENB +termios.PARMRK +termios.PARODD +termios.PENDIN +termios.TAB0 +termios.TAB1 +termios.TAB2 +termios.TAB3 +termios.TABDLY +termios.TCIFLUSH +termios.TCIOFF +termios.TCIOFLUSH +termios.TCION +termios.TCOFLUSH +termios.TCOOFF +termios.TCOON +termios.TCSADRAIN +termios.TCSAFLUSH +termios.TCSANOW +termios.TCSASOFT +termios.TIOCCONS +termios.TIOCEXCL +termios.TIOCGETD +termios.TIOCGPGRP +termios.TIOCGWINSZ +termios.TIOCMBIC +termios.TIOCMBIS +termios.TIOCMGET +termios.TIOCMSET +termios.TIOCM_CAR +termios.TIOCM_CD +termios.TIOCM_CTS +termios.TIOCM_DSR +termios.TIOCM_DTR +termios.TIOCM_LE +termios.TIOCM_RI +termios.TIOCM_RNG +termios.TIOCM_RTS +termios.TIOCM_SR +termios.TIOCM_ST +termios.TIOCNOTTY +termios.TIOCNXCL +termios.TIOCOUTQ +termios.TIOCPKT +termios.TIOCPKT_DATA +termios.TIOCPKT_DOSTOP +termios.TIOCPKT_FLUSHREAD +termios.TIOCPKT_FLUSHWRITE +termios.TIOCPKT_NOSTOP +termios.TIOCPKT_START +termios.TIOCPKT_STOP +termios.TIOCSCTTY +termios.TIOCSETD +termios.TIOCSPGRP +termios.TIOCSTI +termios.TIOCSWINSZ +termios.TOSTOP +termios.VDISCARD +termios.VEOF +termios.VEOL +termios.VEOL2 +termios.VERASE +termios.VINTR +termios.VKILL +termios.VLNEXT +termios.VMIN +termios.VQUIT +termios.VREPRINT +termios.VSTART +termios.VSTOP +termios.VSUSP +termios.VT0 +termios.VT1 +termios.VTDLY +termios.VTIME +termios.VWERASE +termios.error(??) +termios.tcdrain(fd) -> None +termios.tcflow(fd, action) -> None +termios.tcflush(fd, queue) -> None +termios.tcgetattr(fd) -> list_of_attrs +termios.tcsendbreak(fd, duration) -> None +termios.tcsetattr(fd, when, attributes) -> None +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.get_ident() -> integer +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.perf_counter() -> float +time.process_time() -> float +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.Studbutton(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.Tributton(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog.ACTIVE +tkinter.commondialog.ALL +tkinter.commondialog.ANCHOR +tkinter.commondialog.ARC +tkinter.commondialog.BASELINE +tkinter.commondialog.BEVEL +tkinter.commondialog.BOTH +tkinter.commondialog.BOTTOM +tkinter.commondialog.BROWSE +tkinter.commondialog.BUTT +tkinter.commondialog.BaseWidget(??) +tkinter.commondialog.BitmapImage(??) +tkinter.commondialog.BooleanVar(??) +tkinter.commondialog.Button(??) +tkinter.commondialog.CASCADE +tkinter.commondialog.CENTER +tkinter.commondialog.CHAR +tkinter.commondialog.CHECKBUTTON +tkinter.commondialog.CHORD +tkinter.commondialog.COMMAND +tkinter.commondialog.CURRENT +tkinter.commondialog.CallWrapper(??) +tkinter.commondialog.Canvas(??) +tkinter.commondialog.Checkbutton(??) +tkinter.commondialog.DISABLED +tkinter.commondialog.DOTBOX +tkinter.commondialog.Dialog(??) +tkinter.commondialog.DoubleVar(??) +tkinter.commondialog.E +tkinter.commondialog.END +tkinter.commondialog.EW +tkinter.commondialog.EXCEPTION +tkinter.commondialog.EXTENDED +tkinter.commondialog.Entry(??) +tkinter.commondialog.Event(??) +tkinter.commondialog.FALSE +tkinter.commondialog.FIRST +tkinter.commondialog.FLAT +tkinter.commondialog.Frame(??) +tkinter.commondialog.GROOVE +tkinter.commondialog.Grid(??) +tkinter.commondialog.HIDDEN +tkinter.commondialog.HORIZONTAL +tkinter.commondialog.INSERT +tkinter.commondialog.INSIDE +tkinter.commondialog.Image(??) +tkinter.commondialog.IntVar(??) +tkinter.commondialog.LAST +tkinter.commondialog.LEFT +tkinter.commondialog.Label(??) +tkinter.commondialog.LabelFrame(??) +tkinter.commondialog.Listbox(??) +tkinter.commondialog.MITER +tkinter.commondialog.MOVETO +tkinter.commondialog.MULTIPLE +tkinter.commondialog.Menu(??) +tkinter.commondialog.Menubutton(??) +tkinter.commondialog.Message(??) +tkinter.commondialog.Misc(??) +tkinter.commondialog.N +tkinter.commondialog.NE +tkinter.commondialog.NO +tkinter.commondialog.NONE +tkinter.commondialog.NORMAL +tkinter.commondialog.NS +tkinter.commondialog.NSEW +tkinter.commondialog.NUMERIC +tkinter.commondialog.NW +tkinter.commondialog.NoDefaultRoot(??) +tkinter.commondialog.OFF +tkinter.commondialog.ON +tkinter.commondialog.OUTSIDE +tkinter.commondialog.OptionMenu(??) +tkinter.commondialog.PAGES +tkinter.commondialog.PIESLICE +tkinter.commondialog.PROJECTING +tkinter.commondialog.Pack(??) +tkinter.commondialog.PanedWindow(??) +tkinter.commondialog.PhotoImage(??) +tkinter.commondialog.Place(??) +tkinter.commondialog.RADIOBUTTON +tkinter.commondialog.RAISED +tkinter.commondialog.READABLE +tkinter.commondialog.RIDGE +tkinter.commondialog.RIGHT +tkinter.commondialog.ROUND +tkinter.commondialog.Radiobutton(??) +tkinter.commondialog.S +tkinter.commondialog.SCROLL +tkinter.commondialog.SE +tkinter.commondialog.SEL +tkinter.commondialog.SEL_FIRST +tkinter.commondialog.SEL_LAST +tkinter.commondialog.SEPARATOR +tkinter.commondialog.SINGLE +tkinter.commondialog.SOLID +tkinter.commondialog.SUNKEN +tkinter.commondialog.SW +tkinter.commondialog.Scale(??) +tkinter.commondialog.Scrollbar(??) +tkinter.commondialog.Spinbox(??) +tkinter.commondialog.StringVar(??) +tkinter.commondialog.Studbutton(??) +tkinter.commondialog.TOP +tkinter.commondialog.TRUE +tkinter.commondialog.Tcl(??) +tkinter.commondialog.TclError(??) +tkinter.commondialog.TclVersion +tkinter.commondialog.Text(??) +tkinter.commondialog.Tk(??) +tkinter.commondialog.TkVersion +tkinter.commondialog.Toplevel(??) +tkinter.commondialog.Tributton(??) +tkinter.commondialog.UNDERLINE +tkinter.commondialog.UNITS +tkinter.commondialog.VERTICAL +tkinter.commondialog.Variable(??) +tkinter.commondialog.W +tkinter.commondialog.WORD +tkinter.commondialog.WRITABLE +tkinter.commondialog.Widget(??) +tkinter.commondialog.Wm(??) +tkinter.commondialog.X +tkinter.commondialog.XView(??) +tkinter.commondialog.Y +tkinter.commondialog.YES +tkinter.commondialog.YView(??) +tkinter.commondialog.constants(??) +tkinter.commondialog.getboolean(??) +tkinter.commondialog.getdouble(??) +tkinter.commondialog.getint(??) +tkinter.commondialog.image_names(??) +tkinter.commondialog.image_types(??) +tkinter.commondialog.mainloop(??) +tkinter.commondialog.re(??) +tkinter.commondialog.sys(??) +tkinter.commondialog.wantobjects +tkinter.commondialog.warnings(??) +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog.ACTIVE +tkinter.dialog.ALL +tkinter.dialog.ANCHOR +tkinter.dialog.ARC +tkinter.dialog.BASELINE +tkinter.dialog.BEVEL +tkinter.dialog.BOTH +tkinter.dialog.BOTTOM +tkinter.dialog.BROWSE +tkinter.dialog.BUTT +tkinter.dialog.BaseWidget(??) +tkinter.dialog.BitmapImage(??) +tkinter.dialog.BooleanVar(??) +tkinter.dialog.Button(??) +tkinter.dialog.CASCADE +tkinter.dialog.CENTER +tkinter.dialog.CHAR +tkinter.dialog.CHECKBUTTON +tkinter.dialog.CHORD +tkinter.dialog.COMMAND +tkinter.dialog.CURRENT +tkinter.dialog.CallWrapper(??) +tkinter.dialog.Canvas(??) +tkinter.dialog.Checkbutton(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.DISABLED +tkinter.dialog.DOTBOX +tkinter.dialog.Dialog(??) +tkinter.dialog.DoubleVar(??) +tkinter.dialog.E +tkinter.dialog.END +tkinter.dialog.EW +tkinter.dialog.EXCEPTION +tkinter.dialog.EXTENDED +tkinter.dialog.Entry(??) +tkinter.dialog.Event(??) +tkinter.dialog.FALSE +tkinter.dialog.FIRST +tkinter.dialog.FLAT +tkinter.dialog.Frame(??) +tkinter.dialog.GROOVE +tkinter.dialog.Grid(??) +tkinter.dialog.HIDDEN +tkinter.dialog.HORIZONTAL +tkinter.dialog.INSERT +tkinter.dialog.INSIDE +tkinter.dialog.Image(??) +tkinter.dialog.IntVar(??) +tkinter.dialog.LAST +tkinter.dialog.LEFT +tkinter.dialog.Label(??) +tkinter.dialog.LabelFrame(??) +tkinter.dialog.Listbox(??) +tkinter.dialog.MITER +tkinter.dialog.MOVETO +tkinter.dialog.MULTIPLE +tkinter.dialog.Menu(??) +tkinter.dialog.Menubutton(??) +tkinter.dialog.Message(??) +tkinter.dialog.Misc(??) +tkinter.dialog.N +tkinter.dialog.NE +tkinter.dialog.NO +tkinter.dialog.NONE +tkinter.dialog.NORMAL +tkinter.dialog.NS +tkinter.dialog.NSEW +tkinter.dialog.NUMERIC +tkinter.dialog.NW +tkinter.dialog.NoDefaultRoot(??) +tkinter.dialog.OFF +tkinter.dialog.ON +tkinter.dialog.OUTSIDE +tkinter.dialog.OptionMenu(??) +tkinter.dialog.PAGES +tkinter.dialog.PIESLICE +tkinter.dialog.PROJECTING +tkinter.dialog.Pack(??) +tkinter.dialog.PanedWindow(??) +tkinter.dialog.PhotoImage(??) +tkinter.dialog.Place(??) +tkinter.dialog.RADIOBUTTON +tkinter.dialog.RAISED +tkinter.dialog.READABLE +tkinter.dialog.RIDGE +tkinter.dialog.RIGHT +tkinter.dialog.ROUND +tkinter.dialog.Radiobutton(??) +tkinter.dialog.S +tkinter.dialog.SCROLL +tkinter.dialog.SE +tkinter.dialog.SEL +tkinter.dialog.SEL_FIRST +tkinter.dialog.SEL_LAST +tkinter.dialog.SEPARATOR +tkinter.dialog.SINGLE +tkinter.dialog.SOLID +tkinter.dialog.SUNKEN +tkinter.dialog.SW +tkinter.dialog.Scale(??) +tkinter.dialog.Scrollbar(??) +tkinter.dialog.Spinbox(??) +tkinter.dialog.StringVar(??) +tkinter.dialog.Studbutton(??) +tkinter.dialog.TOP +tkinter.dialog.TRUE +tkinter.dialog.Tcl(??) +tkinter.dialog.TclError(??) +tkinter.dialog.TclVersion +tkinter.dialog.Text(??) +tkinter.dialog.Tk(??) +tkinter.dialog.TkVersion +tkinter.dialog.Toplevel(??) +tkinter.dialog.Tributton(??) +tkinter.dialog.UNDERLINE +tkinter.dialog.UNITS +tkinter.dialog.VERTICAL +tkinter.dialog.Variable(??) +tkinter.dialog.W +tkinter.dialog.WORD +tkinter.dialog.WRITABLE +tkinter.dialog.Widget(??) +tkinter.dialog.Wm(??) +tkinter.dialog.X +tkinter.dialog.XView(??) +tkinter.dialog.Y +tkinter.dialog.YES +tkinter.dialog.YView(??) +tkinter.dialog.colorchooser(??) +tkinter.dialog.commondialog(??) +tkinter.dialog.constants(??) +tkinter.dialog.getboolean(??) +tkinter.dialog.getdouble(??) +tkinter.dialog.getint(??) +tkinter.dialog.image_names(??) +tkinter.dialog.image_types(??) +tkinter.dialog.mainloop(??) +tkinter.dialog.re(??) +tkinter.dialog.sys(??) +tkinter.dialog.wantobjects +tkinter.dialog.warnings(??) +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.filedialog.ACTIVE +tkinter.filedialog.ALL +tkinter.filedialog.ANCHOR +tkinter.filedialog.ARC +tkinter.filedialog.BASELINE +tkinter.filedialog.BEVEL +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.BROWSE +tkinter.filedialog.BUTT +tkinter.filedialog.BaseWidget(??) +tkinter.filedialog.BitmapImage(??) +tkinter.filedialog.BooleanVar(??) +tkinter.filedialog.Button(??) +tkinter.filedialog.CASCADE +tkinter.filedialog.CENTER +tkinter.filedialog.CHAR +tkinter.filedialog.CHECKBUTTON +tkinter.filedialog.CHORD +tkinter.filedialog.COMMAND +tkinter.filedialog.CURRENT +tkinter.filedialog.CallWrapper(??) +tkinter.filedialog.Canvas(??) +tkinter.filedialog.Checkbutton(??) +tkinter.filedialog.DISABLED +tkinter.filedialog.DOTBOX +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.DoubleVar(??) +tkinter.filedialog.E +tkinter.filedialog.END +tkinter.filedialog.EW +tkinter.filedialog.EXCEPTION +tkinter.filedialog.EXTENDED +tkinter.filedialog.Entry(??) +tkinter.filedialog.Event(??) +tkinter.filedialog.FALSE +tkinter.filedialog.FIRST +tkinter.filedialog.FLAT +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.GROOVE +tkinter.filedialog.Grid(??) +tkinter.filedialog.HIDDEN +tkinter.filedialog.HORIZONTAL +tkinter.filedialog.INSERT +tkinter.filedialog.INSIDE +tkinter.filedialog.Image(??) +tkinter.filedialog.IntVar(??) +tkinter.filedialog.LAST +tkinter.filedialog.LEFT +tkinter.filedialog.Label(??) +tkinter.filedialog.LabelFrame(??) +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.MITER +tkinter.filedialog.MOVETO +tkinter.filedialog.MULTIPLE +tkinter.filedialog.Menu(??) +tkinter.filedialog.Menubutton(??) +tkinter.filedialog.Message(??) +tkinter.filedialog.Misc(??) +tkinter.filedialog.N +tkinter.filedialog.NE +tkinter.filedialog.NO +tkinter.filedialog.NONE +tkinter.filedialog.NORMAL +tkinter.filedialog.NS +tkinter.filedialog.NSEW +tkinter.filedialog.NUMERIC +tkinter.filedialog.NW +tkinter.filedialog.NoDefaultRoot(??) +tkinter.filedialog.OFF +tkinter.filedialog.ON +tkinter.filedialog.OUTSIDE +tkinter.filedialog.Open(??) +tkinter.filedialog.OptionMenu(??) +tkinter.filedialog.PAGES +tkinter.filedialog.PIESLICE +tkinter.filedialog.PROJECTING +tkinter.filedialog.Pack(??) +tkinter.filedialog.PanedWindow(??) +tkinter.filedialog.PhotoImage(??) +tkinter.filedialog.Place(??) +tkinter.filedialog.RADIOBUTTON +tkinter.filedialog.RAISED +tkinter.filedialog.READABLE +tkinter.filedialog.RIDGE +tkinter.filedialog.RIGHT +tkinter.filedialog.ROUND +tkinter.filedialog.Radiobutton(??) +tkinter.filedialog.S +tkinter.filedialog.SCROLL +tkinter.filedialog.SE +tkinter.filedialog.SEL +tkinter.filedialog.SEL_FIRST +tkinter.filedialog.SEL_LAST +tkinter.filedialog.SEPARATOR +tkinter.filedialog.SINGLE +tkinter.filedialog.SOLID +tkinter.filedialog.SUNKEN +tkinter.filedialog.SW +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scale(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.Spinbox(??) +tkinter.filedialog.StringVar(??) +tkinter.filedialog.Studbutton(??) +tkinter.filedialog.TOP +tkinter.filedialog.TRUE +tkinter.filedialog.Tcl(??) +tkinter.filedialog.TclError(??) +tkinter.filedialog.TclVersion +tkinter.filedialog.Text(??) +tkinter.filedialog.Tk(??) +tkinter.filedialog.TkVersion +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.Tributton(??) +tkinter.filedialog.UNDERLINE +tkinter.filedialog.UNITS +tkinter.filedialog.VERTICAL +tkinter.filedialog.Variable(??) +tkinter.filedialog.W +tkinter.filedialog.WORD +tkinter.filedialog.WRITABLE +tkinter.filedialog.Widget(??) +tkinter.filedialog.Wm(??) +tkinter.filedialog.X +tkinter.filedialog.XView(??) +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.YView(??) +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.colorchooser(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.constants(??) +tkinter.filedialog.dialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.dnd(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.getboolean(??) +tkinter.filedialog.getdouble(??) +tkinter.filedialog.getint(??) +tkinter.filedialog.image_names(??) +tkinter.filedialog.image_types(??) +tkinter.filedialog.mainloop(??) +tkinter.filedialog.os(??) +tkinter.filedialog.re(??) +tkinter.filedialog.sys(??) +tkinter.filedialog.test(??) +tkinter.filedialog.wantobjects +tkinter.filedialog.warnings(??) +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.Studbutton(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.Tributton(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.colorchooser(??) +tkinter.simpledialog.commondialog(??) +tkinter.simpledialog.constants(??) +tkinter.simpledialog.dialog(??) +tkinter.simpledialog.dnd(??) +tkinter.simpledialog.filedialog(??) +tkinter.simpledialog.font(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.simpledialog.re(??) +tkinter.simpledialog.scrolledtext(??) +tkinter.simpledialog.sys(??) +tkinter.simpledialog.tkinter(??) +tkinter.simpledialog.wantobjects +tkinter.simpledialog.warnings(??) +tkinter.sys(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.Studbutton(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.Tributton(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.colorchooser(??) +tkinter.tix.commondialog(??) +tkinter.tix.constants(??) +tkinter.tix.dialog(??) +tkinter.tix.dnd(??) +tkinter.tix.filedialog(??) +tkinter.tix.font(??) +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.messagebox(??) +tkinter.tix.os(??) +tkinter.tix.re(??) +tkinter.tix.scrolledtext(??) +tkinter.tix.simpledialog(??) +tkinter.tix.sys(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.wantobjects +tkinter.tix.warnings(??) +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.wantobjects +tkinter.warnings(??) +token.AMPER +token.AMPEREQUAL +token.AT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.AT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.builtins(??) +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(encoding) -> CodecInfo +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.modname(??) +trace.os(??) +trace.pickle(??) +trace.re(??) +trace.rx_blank(??) +trace.sys(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +trace.usage(??) +traceback.clear_frames(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.linecache(??) +traceback.operator(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces() +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit() -> int +tracemalloc.get_traced_memory() -> (int, int) +tracemalloc.get_tracemalloc_memory() -> int +tracemalloc.is_tracing()->bool +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.start(nframe: int=1) +tracemalloc.stop() +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> empty tuple +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.defstr +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.methodname +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pl1 +turtle.pl2 +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object_or_name, bases, dict) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CodeType(??) +types.DynamicClassAttribute(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodType(??) +types.ModuleType(??) +types.SimpleNamespace(??) +types.TracebackType(??) +types.new_class(??) +types.prepare_class(??) +unicodedata.UCD(??) +unicodedata.bidirectional(unichr) +unicodedata.category(unichr) +unicodedata.combining(unichr) +unicodedata.decimal(??) +unicodedata.decomposition(unichr) +unicodedata.digit(unichr[, default]) +unicodedata.east_asian_width(unichr) +unicodedata.lookup(name) +unicodedata.mirrored(unichr) +unicodedata.name(unichr[, default]) +unicodedata.normalize(form, unistr) +unicodedata.numeric(unichr[, default]) +unicodedata.ucd_3_2_0(??) +unicodedata.ucnhash_CAPI(??) +unicodedata.unidata_version +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.parse.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.parse.splitnport(??) +urllib.parse.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.parse.splitport('host:port') --> 'host', 'port'. +urllib.parse.splitquery('/path?query') --> '/path', 'query'. +urllib.parse.splittag('/path#tag') --> '/path', 'tag'. +urllib.parse.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.parse.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.parse.splitvalue('attr=value') --> 'attr', 'value'. +urllib.parse.sys(??) +urllib.parse.to_bytes(u"URL") --> 'URL'. +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap('') --> 'type://host/path'. +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.collections(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.request.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.request.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.request.splitport('host:port') --> 'host', 'port'. +urllib.request.splitquery('/path?query') --> '/path', 'query'. +urllib.request.splittag('/path#tag') --> '/path', 'tag'. +urllib.request.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.request.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.request.splitvalue('attr=value') --> 'attr', 'value'. +urllib.request.ssl(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.to_bytes(u"URL") --> 'URL'. +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap('') --> 'type://host/path'. +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID(??) +uuid.bytes_(??) +uuid.ctypes(??) +uuid.getnode(??) +uuid.int_(??) +uuid.lib(??) +uuid.libname +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.sysconfig(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.audioop(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +wave.sys(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.collections(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.itertools(??) +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO([buffer]) -> object +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.struct(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(errno) -> string +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate([encoding[, namespace_separator]]) -> parser +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO([buffer]) -> object +xmlrpc.client.DateTime(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.socket(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.http(??) +xmlrpc.server.inspect(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +xxlimited.Null(??) +xxlimited.Str(??) +xxlimited.error(??) +xxlimited.foo(i,j) +xxlimited.new() -> new Xx object +xxlimited.roj(a,b) -> None +zip(iter1 [,iter2 [...]]) --> zip object +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.DEFAULT_VERSION +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.re(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.ZipImportError(??) +zipimport.zipimporter(archivepath) -> zipimporter object +zlib.DEFLATED +zlib.DEF_BUF_SIZE +zlib.DEF_MEM_LEVEL +zlib.MAX_WBITS +zlib.ZLIB_RUNTIME_VERSION +zlib.ZLIB_VERSION +zlib.Z_BEST_COMPRESSION +zlib.Z_BEST_SPEED +zlib.Z_DEFAULT_COMPRESSION +zlib.Z_DEFAULT_STRATEGY +zlib.Z_FILTERED +zlib.Z_FINISH +zlib.Z_FULL_FLUSH +zlib.Z_HUFFMAN_ONLY +zlib.Z_NO_FLUSH +zlib.Z_SYNC_FLUSH +zlib.adler32(??) +zlib.compress(??) +zlib.compressobj(??) +zlib.crc32(??) +zlib.decompress(??) +zlib.decompressobj(??) +zlib.error(??) diff --git a/third_party/qscintilla/qsci/api/python/Python-3.5.api b/third_party/qscintilla/qsci/api/python/Python-3.5.api new file mode 100644 index 0000000..e3b9305 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.5.api @@ -0,0 +1,9717 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IN.AF_APPLETALK +IN.AF_ATM +IN.AF_CCITT +IN.AF_CHAOS +IN.AF_CNT +IN.AF_COIP +IN.AF_DATAKIT +IN.AF_DECnet +IN.AF_DLI +IN.AF_E164 +IN.AF_ECMA +IN.AF_HYLINK +IN.AF_IMPLINK +IN.AF_INET +IN.AF_INET6 +IN.AF_IPX +IN.AF_ISDN +IN.AF_ISO +IN.AF_LAT +IN.AF_LINK +IN.AF_LOCAL +IN.AF_MAX +IN.AF_NATM +IN.AF_NDRV +IN.AF_NETBIOS +IN.AF_NETGRAPH +IN.AF_NS +IN.AF_OSI +IN.AF_PPP +IN.AF_PUP +IN.AF_RESERVED_36 +IN.AF_ROUTE +IN.AF_SIP +IN.AF_SNA +IN.AF_SYSTEM +IN.AF_UNIX +IN.AF_UNSPEC +IN.CMGROUP_MAX +IN.HTONL(??) +IN.HTONS(??) +IN.ICMP6_FILTER +IN.IN6_IS_ADDR_LINKLOCAL(??) +IN.IN6_IS_ADDR_LOOPBACK(??) +IN.IN6_IS_ADDR_MC_GLOBAL(??) +IN.IN6_IS_ADDR_MC_LINKLOCAL(??) +IN.IN6_IS_ADDR_MC_NODELOCAL(??) +IN.IN6_IS_ADDR_MC_ORGLOCAL(??) +IN.IN6_IS_ADDR_MC_SITELOCAL(??) +IN.IN6_IS_ADDR_SITELOCAL(??) +IN.IN6_IS_ADDR_UNSPECIFIED(??) +IN.IN6_IS_ADDR_V4COMPAT(??) +IN.IN6_IS_ADDR_V4MAPPED(??) +IN.INADDR_NONE +IN.INET6_ADDRSTRLEN +IN.INET_ADDRSTRLEN +IN.INT16_C(??) +IN.INT16_MAX +IN.INT16_MIN +IN.INT32_C(??) +IN.INT32_MAX +IN.INT32_MIN +IN.INT8_C(??) +IN.INT8_MAX +IN.INT8_MIN +IN.INTPTR_MAX +IN.INTPTR_MIN +IN.INT_FAST16_MAX +IN.INT_FAST16_MIN +IN.INT_FAST32_MAX +IN.INT_FAST32_MIN +IN.INT_FAST8_MAX +IN.INT_FAST8_MIN +IN.INT_LEAST16_MAX +IN.INT_LEAST16_MIN +IN.INT_LEAST32_MAX +IN.INT_LEAST32_MIN +IN.INT_LEAST8_MAX +IN.INT_LEAST8_MIN +IN.IN_BADCLASS(??) +IN.IN_CLASSA(??) +IN.IN_CLASSA_HOST +IN.IN_CLASSA_MAX +IN.IN_CLASSA_NET +IN.IN_CLASSA_NSHIFT +IN.IN_CLASSB(??) +IN.IN_CLASSB_HOST +IN.IN_CLASSB_MAX +IN.IN_CLASSB_NET +IN.IN_CLASSB_NSHIFT +IN.IN_CLASSC(??) +IN.IN_CLASSC_HOST +IN.IN_CLASSC_NET +IN.IN_CLASSC_NSHIFT +IN.IN_CLASSD(??) +IN.IN_CLASSD_HOST +IN.IN_CLASSD_NET +IN.IN_CLASSD_NSHIFT +IN.IN_EXPERIMENTAL(??) +IN.IN_LINKLOCAL(??) +IN.IN_LOOPBACKNET +IN.IN_MULTICAST(??) +IN.IPCTL_ACCEPTSOURCEROUTE +IN.IPCTL_DEFMTU +IN.IPCTL_DEFTTL +IN.IPCTL_DIRECTEDBROADCAST +IN.IPCTL_FASTFORWARDING +IN.IPCTL_FORWARDING +IN.IPCTL_GIF_TTL +IN.IPCTL_INTRQDROPS +IN.IPCTL_INTRQMAXLEN +IN.IPCTL_KEEPFAITH +IN.IPCTL_MAXID +IN.IPCTL_RTEXPIRE +IN.IPCTL_RTMAXCACHE +IN.IPCTL_RTMINEXPIRE +IN.IPCTL_SENDREDIRECTS +IN.IPCTL_SOURCEROUTE +IN.IPCTL_STATS +IN.IPPORT_HIFIRSTAUTO +IN.IPPORT_HILASTAUTO +IN.IPPORT_RESERVED +IN.IPPORT_RESERVEDSTART +IN.IPPORT_USERRESERVED +IN.IPPROTO_3PC +IN.IPPROTO_ADFS +IN.IPPROTO_AH +IN.IPPROTO_AHIP +IN.IPPROTO_APES +IN.IPPROTO_ARGUS +IN.IPPROTO_AX25 +IN.IPPROTO_BHA +IN.IPPROTO_BLT +IN.IPPROTO_BRSATMON +IN.IPPROTO_CFTP +IN.IPPROTO_CHAOS +IN.IPPROTO_CMTP +IN.IPPROTO_CPHB +IN.IPPROTO_CPNX +IN.IPPROTO_DDP +IN.IPPROTO_DGP +IN.IPPROTO_DIVERT +IN.IPPROTO_DONE +IN.IPPROTO_DSTOPTS +IN.IPPROTO_EGP +IN.IPPROTO_EMCON +IN.IPPROTO_ENCAP +IN.IPPROTO_EON +IN.IPPROTO_ESP +IN.IPPROTO_ETHERIP +IN.IPPROTO_FRAGMENT +IN.IPPROTO_GGP +IN.IPPROTO_GMTP +IN.IPPROTO_GRE +IN.IPPROTO_HELLO +IN.IPPROTO_HMP +IN.IPPROTO_HOPOPTS +IN.IPPROTO_ICMP +IN.IPPROTO_ICMPV6 +IN.IPPROTO_IDP +IN.IPPROTO_IDPR +IN.IPPROTO_IDRP +IN.IPPROTO_IGMP +IN.IPPROTO_IGP +IN.IPPROTO_IGRP +IN.IPPROTO_IL +IN.IPPROTO_INLSP +IN.IPPROTO_INP +IN.IPPROTO_IP +IN.IPPROTO_IPCOMP +IN.IPPROTO_IPCV +IN.IPPROTO_IPEIP +IN.IPPROTO_IPIP +IN.IPPROTO_IPPC +IN.IPPROTO_IPV4 +IN.IPPROTO_IPV6 +IN.IPPROTO_IRTP +IN.IPPROTO_KRYPTOLAN +IN.IPPROTO_LARP +IN.IPPROTO_LEAF1 +IN.IPPROTO_LEAF2 +IN.IPPROTO_MAX +IN.IPPROTO_MAXID +IN.IPPROTO_MEAS +IN.IPPROTO_MHRP +IN.IPPROTO_MICP +IN.IPPROTO_MTP +IN.IPPROTO_MUX +IN.IPPROTO_ND +IN.IPPROTO_NHRP +IN.IPPROTO_NONE +IN.IPPROTO_NSP +IN.IPPROTO_NVPII +IN.IPPROTO_OSPFIGP +IN.IPPROTO_PGM +IN.IPPROTO_PIGP +IN.IPPROTO_PIM +IN.IPPROTO_PRM +IN.IPPROTO_PUP +IN.IPPROTO_PVP +IN.IPPROTO_RAW +IN.IPPROTO_RCCMON +IN.IPPROTO_RDP +IN.IPPROTO_ROUTING +IN.IPPROTO_RSVP +IN.IPPROTO_RVD +IN.IPPROTO_SATEXPAK +IN.IPPROTO_SATMON +IN.IPPROTO_SCCSP +IN.IPPROTO_SDRP +IN.IPPROTO_SEP +IN.IPPROTO_SRPC +IN.IPPROTO_ST +IN.IPPROTO_SVMTP +IN.IPPROTO_SWIPE +IN.IPPROTO_TCF +IN.IPPROTO_TCP +IN.IPPROTO_TP +IN.IPPROTO_TPXX +IN.IPPROTO_TRUNK1 +IN.IPPROTO_TRUNK2 +IN.IPPROTO_TTP +IN.IPPROTO_UDP +IN.IPPROTO_VINES +IN.IPPROTO_VISA +IN.IPPROTO_VMTP +IN.IPPROTO_WBEXPAK +IN.IPPROTO_WBMON +IN.IPPROTO_WSN +IN.IPPROTO_XNET +IN.IPPROTO_XTP +IN.IPV6CTL_ACCEPT_RTADV +IN.IPV6CTL_AUTO_FLOWLABEL +IN.IPV6CTL_AUTO_LINKLOCAL +IN.IPV6CTL_DAD_COUNT +IN.IPV6CTL_DEFHLIM +IN.IPV6CTL_DEFMCASTHLIM +IN.IPV6CTL_DEFMTU +IN.IPV6CTL_FORWARDING +IN.IPV6CTL_FORWSRCRT +IN.IPV6CTL_GIF_HLIM +IN.IPV6CTL_HDRNESTLIMIT +IN.IPV6CTL_KAME_VERSION +IN.IPV6CTL_KEEPFAITH +IN.IPV6CTL_LOG_INTERVAL +IN.IPV6CTL_MAPPED_ADDR +IN.IPV6CTL_MAXFRAGPACKETS +IN.IPV6CTL_MAXFRAGS +IN.IPV6CTL_MAXID +IN.IPV6CTL_MRTPROTO +IN.IPV6CTL_MRTSTATS +IN.IPV6CTL_RIP6STATS +IN.IPV6CTL_RR_PRUNE +IN.IPV6CTL_RTEXPIRE +IN.IPV6CTL_RTMAXCACHE +IN.IPV6CTL_RTMINEXPIRE +IN.IPV6CTL_SENDREDIRECTS +IN.IPV6CTL_SOURCECHECK +IN.IPV6CTL_SOURCECHECK_LOGINT +IN.IPV6CTL_STATS +IN.IPV6CTL_TEMPPLTIME +IN.IPV6CTL_TEMPVLTIME +IN.IPV6CTL_USETEMPADDR +IN.IPV6CTL_USE_DEPRECATED +IN.IPV6CTL_V6ONLY +IN.IPV6PORT_ANONMAX +IN.IPV6PORT_ANONMIN +IN.IPV6PORT_RESERVED +IN.IPV6PORT_RESERVEDMAX +IN.IPV6PORT_RESERVEDMIN +IN.IPV6PROTO_MAXID +IN.IPV6_BINDV6ONLY +IN.IPV6_CHECKSUM +IN.IPV6_DEFAULT_MULTICAST_HOPS +IN.IPV6_DEFAULT_MULTICAST_LOOP +IN.IPV6_DSTOPTS +IN.IPV6_FAITH +IN.IPV6_FW_ADD +IN.IPV6_FW_DEL +IN.IPV6_FW_FLUSH +IN.IPV6_FW_GET +IN.IPV6_FW_ZERO +IN.IPV6_HOPLIMIT +IN.IPV6_HOPOPTS +IN.IPV6_IPSEC_POLICY +IN.IPV6_JOIN_GROUP +IN.IPV6_LEAVE_GROUP +IN.IPV6_MULTICAST_HOPS +IN.IPV6_MULTICAST_IF +IN.IPV6_MULTICAST_LOOP +IN.IPV6_NEXTHOP +IN.IPV6_OPTIONS +IN.IPV6_PKTINFO +IN.IPV6_PKTOPTIONS +IN.IPV6_PORTRANGE +IN.IPV6_PORTRANGE_DEFAULT +IN.IPV6_PORTRANGE_HIGH +IN.IPV6_PORTRANGE_LOW +IN.IPV6_RECVDSTADDR +IN.IPV6_RECVOPTS +IN.IPV6_RECVRETOPTS +IN.IPV6_RETOPTS +IN.IPV6_RTHDR +IN.IPV6_RTHDR_LOOSE +IN.IPV6_RTHDR_STRICT +IN.IPV6_RTHDR_TYPE_0 +IN.IPV6_SOCKOPT_RESERVED1 +IN.IPV6_UNICAST_HOPS +IN.IPV6_V6ONLY +IN.IP_ADD_MEMBERSHIP +IN.IP_DEFAULT_MULTICAST_LOOP +IN.IP_DEFAULT_MULTICAST_TTL +IN.IP_DROP_MEMBERSHIP +IN.IP_DUMMYNET_CONFIGURE +IN.IP_DUMMYNET_DEL +IN.IP_DUMMYNET_FLUSH +IN.IP_DUMMYNET_GET +IN.IP_FAITH +IN.IP_FORCE_OUT_IFP +IN.IP_FW_ADD +IN.IP_FW_DEL +IN.IP_FW_FLUSH +IN.IP_FW_GET +IN.IP_FW_RESETLOG +IN.IP_FW_ZERO +IN.IP_HDRINCL +IN.IP_IPSEC_POLICY +IN.IP_MAX_MEMBERSHIPS +IN.IP_MULTICAST_IF +IN.IP_MULTICAST_LOOP +IN.IP_MULTICAST_TTL +IN.IP_MULTICAST_VIF +IN.IP_NAT__XXX +IN.IP_OLD_FW_ADD +IN.IP_OLD_FW_DEL +IN.IP_OLD_FW_FLUSH +IN.IP_OLD_FW_GET +IN.IP_OLD_FW_RESETLOG +IN.IP_OLD_FW_ZERO +IN.IP_OPTIONS +IN.IP_PORTRANGE +IN.IP_PORTRANGE_DEFAULT +IN.IP_PORTRANGE_HIGH +IN.IP_PORTRANGE_LOW +IN.IP_RECVDSTADDR +IN.IP_RECVIF +IN.IP_RECVOPTS +IN.IP_RECVRETOPTS +IN.IP_RECVTTL +IN.IP_RETOPTS +IN.IP_RSVP_OFF +IN.IP_RSVP_ON +IN.IP_RSVP_VIF_OFF +IN.IP_RSVP_VIF_ON +IN.IP_STRIPHDR +IN.IP_TOS +IN.IP_TRAFFIC_MGT_BACKGROUND +IN.IP_TTL +IN.MSG_CTRUNC +IN.MSG_DONTROUTE +IN.MSG_DONTWAIT +IN.MSG_EOF +IN.MSG_EOR +IN.MSG_FLUSH +IN.MSG_HAVEMORE +IN.MSG_HOLD +IN.MSG_NEEDSA +IN.MSG_OOB +IN.MSG_PEEK +IN.MSG_RCVMORE +IN.MSG_SEND +IN.MSG_TRUNC +IN.MSG_WAITALL +IN.MSG_WAITSTREAM +IN.NET_MAXID +IN.NET_RT_DUMP +IN.NET_RT_DUMP2 +IN.NET_RT_FLAGS +IN.NET_RT_IFLIST +IN.NET_RT_IFLIST2 +IN.NET_RT_MAXID +IN.NET_RT_STAT +IN.NET_RT_TRASH +IN.NTOHL(??) +IN.NTOHS(??) +IN.PF_APPLETALK +IN.PF_ATM +IN.PF_CCITT +IN.PF_CHAOS +IN.PF_CNT +IN.PF_COIP +IN.PF_DATAKIT +IN.PF_DECnet +IN.PF_DLI +IN.PF_ECMA +IN.PF_HYLINK +IN.PF_IMPLINK +IN.PF_INET +IN.PF_INET6 +IN.PF_IPX +IN.PF_ISDN +IN.PF_ISO +IN.PF_KEY +IN.PF_LAT +IN.PF_LINK +IN.PF_LOCAL +IN.PF_MAX +IN.PF_NATM +IN.PF_NDRV +IN.PF_NETBIOS +IN.PF_NETGRAPH +IN.PF_NS +IN.PF_OSI +IN.PF_PIP +IN.PF_PPP +IN.PF_PUP +IN.PF_RESERVED_36 +IN.PF_ROUTE +IN.PF_RTIP +IN.PF_SIP +IN.PF_SNA +IN.PF_SYSTEM +IN.PF_UNIX +IN.PF_UNSPEC +IN.PF_XTP +IN.PTRDIFF_MAX +IN.PTRDIFF_MIN +IN.SCM_CREDS +IN.SCM_RIGHTS +IN.SCM_TIMESTAMP +IN.SHUT_RD +IN.SHUT_RDWR +IN.SHUT_WR +IN.SIG_ATOMIC_MAX +IN.SIG_ATOMIC_MIN +IN.SOCK_DGRAM +IN.SOCK_MAXADDRLEN +IN.SOCK_RAW +IN.SOCK_RDM +IN.SOCK_SEQPACKET +IN.SOCK_STREAM +IN.SOL_SOCKET +IN.SOMAXCONN +IN.SO_ACCEPTCONN +IN.SO_ACCEPTFILTER +IN.SO_BROADCAST +IN.SO_DEBUG +IN.SO_DONTROUTE +IN.SO_DONTTRUNC +IN.SO_ERROR +IN.SO_KEEPALIVE +IN.SO_LABEL +IN.SO_LINGER +IN.SO_LINGER_SEC +IN.SO_NKE +IN.SO_NOADDRERR +IN.SO_NOSIGPIPE +IN.SO_NOTIFYCONFLICT +IN.SO_NREAD +IN.SO_NWRITE +IN.SO_OOBINLINE +IN.SO_PEERLABEL +IN.SO_RCVBUF +IN.SO_RCVLOWAT +IN.SO_RCVTIMEO +IN.SO_RESTRICTIONS +IN.SO_RESTRICT_DENYIN +IN.SO_RESTRICT_DENYOUT +IN.SO_RESTRICT_DENYSET +IN.SO_REUSEADDR +IN.SO_REUSEPORT +IN.SO_REUSESHAREUID +IN.SO_SNDBUF +IN.SO_SNDLOWAT +IN.SO_SNDTIMEO +IN.SO_TIMESTAMP +IN.SO_TYPE +IN.SO_USELOOPBACK +IN.SO_WANTMORE +IN.SO_WANTOOBFLAG +IN.TRAFFIC_MGT_SO_BACKGROUND +IN.TRAFFIC_MGT_SO_BG_SUPPRESSED +IN.UINT16_MAX +IN.UINT8_MAX +IN.UINT_FAST16_MAX +IN.UINT_FAST8_MAX +IN.UINT_LEAST16_MAX +IN.UINT_LEAST8_MAX +IN.WCHAR_MAX +IN.WCHAR_MIN +IN.WINT_MAX +IN.WINT_MIN +IN.htonl(??) +IN.htons(??) +IN.ntohl(??) +IN.ntohs(??) +IN.pseudo_AF_HDRCMPLT +IN.pseudo_AF_KEY +IN.pseudo_AF_PIP +IN.pseudo_AF_RTIP +IN.pseudo_AF_XTP +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +RecursionError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopAsyncIteration(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.WeakSet(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abs(??) +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +aifc.warnings(??) +all(??) +any(??) +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +ascii(??) +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.Assert(??) +ast.Assign(??) +ast.AsyncFor(??) +ast.AsyncFunctionDef(??) +ast.AsyncWith(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.Await(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FunctionDef(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.MatMult(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NameConstant(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ONLY_AST +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.Try(??) +ast.Tuple(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.YieldFrom(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.unaryop(??) +ast.walk(??) +ast.withitem(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.fifo(??) +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.BaseEventLoop(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.LifoQueue(??) +asyncio.Lock(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.as_completed(??) +asyncio.async(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.compat(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.coroutine(??) +asyncio.base_events.coroutines(??) +asyncio.base_events.events(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.inspect(??) +asyncio.base_events.logger(??) +asyncio.base_events.logging(??) +asyncio.base_events.os(??) +asyncio.base_events.socket(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.threading(??) +asyncio.base_events.time(??) +asyncio.base_events.traceback(??) +asyncio.base_events.warnings(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.compat(??) +asyncio.base_subprocess.coroutine(??) +asyncio.base_subprocess.futures(??) +asyncio.base_subprocess.logger(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.transports(??) +asyncio.base_subprocess.warnings(??) +asyncio.compat(??) +asyncio.compat.PY34(??) +asyncio.compat.PY35(??) +asyncio.compat.flatten_list_bytes(??) +asyncio.compat.sys(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.coroutine(??) +asyncio.coroutines(??) +asyncio.coroutines.CoroWrapper(??) +asyncio.coroutines.compat(??) +asyncio.coroutines.coroutine(??) +asyncio.coroutines.debug_wrapper(??) +asyncio.coroutines.events(??) +asyncio.coroutines.functools(??) +asyncio.coroutines.futures(??) +asyncio.coroutines.inspect(??) +asyncio.coroutines.iscoroutine(??) +asyncio.coroutines.iscoroutinefunction(??) +asyncio.coroutines.logger(??) +asyncio.coroutines.opcode(??) +asyncio.coroutines.os(??) +asyncio.coroutines.sys(??) +asyncio.coroutines.traceback(??) +asyncio.coroutines.types(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.ensure_future(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.TimerHandle(??) +asyncio.events.compat(??) +asyncio.events.functools(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.inspect(??) +asyncio.events.new_event_loop(??) +asyncio.events.reprlib(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.sys(??) +asyncio.events.threading(??) +asyncio.events.traceback(??) +asyncio.futures(??) +asyncio.futures.CancelledError(??) +asyncio.futures.Error(??) +asyncio.futures.Future(??) +asyncio.futures.InvalidStateError(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.TimeoutError(??) +asyncio.futures.compat(??) +asyncio.futures.concurrent(??) +asyncio.futures.events(??) +asyncio.futures.logging(??) +asyncio.futures.reprlib(??) +asyncio.futures.sys(??) +asyncio.futures.traceback(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.locks(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.compat(??) +asyncio.locks.coroutine(??) +asyncio.locks.events(??) +asyncio.locks.futures(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.compat(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.sslproto(??) +asyncio.proactor_events.transports(??) +asyncio.proactor_events.warnings(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.compat(??) +asyncio.queues.coroutine(??) +asyncio.queues.events(??) +asyncio.queues.futures(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.compat(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.coroutine(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.functools(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.sslproto(??) +asyncio.selector_events.transports(??) +asyncio.selector_events.warnings(??) +asyncio.selectors(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.sslproto(??) +asyncio.sslproto.SSLProtocol(??) +asyncio.sslproto.collections(??) +asyncio.sslproto.compat(??) +asyncio.sslproto.logger(??) +asyncio.sslproto.protocols(??) +asyncio.sslproto.ssl(??) +asyncio.sslproto.transports(??) +asyncio.sslproto.warnings(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.IncompleteReadError(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.compat(??) +asyncio.streams.coroutine(??) +asyncio.streams.coroutines(??) +asyncio.streams.events(??) +asyncio.streams.futures(??) +asyncio.streams.logger(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.coroutine(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.logger(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.sys(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.Task(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.async(??) +asyncio.tasks.compat(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.coroutine(??) +asyncio.tasks.coroutines(??) +asyncio.tasks.ensure_future(??) +asyncio.tasks.events(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.linecache(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.traceback(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.warnings(??) +asyncio.tasks.weakref(??) +asyncio.test_utils.HTTPServer(??) +asyncio.test_utils.MockCallback(??) +asyncio.test_utils.MockPattern(??) +asyncio.test_utils.SSLWSGIServer(??) +asyncio.test_utils.SSLWSGIServerMixin(??) +asyncio.test_utils.SilentUnixWSGIServer(??) +asyncio.test_utils.SilentWSGIRequestHandler(??) +asyncio.test_utils.SilentWSGIServer(??) +asyncio.test_utils.TestCase(??) +asyncio.test_utils.TestLoop(??) +asyncio.test_utils.TestSelector(??) +asyncio.test_utils.UnixHTTPServer(??) +asyncio.test_utils.UnixSSLWSGIServer(??) +asyncio.test_utils.UnixWSGIServer(??) +asyncio.test_utils.WSGIRequestHandler(??) +asyncio.test_utils.WSGIServer(??) +asyncio.test_utils.base_events(??) +asyncio.test_utils.collections(??) +asyncio.test_utils.contextlib(??) +asyncio.test_utils.coroutine(??) +asyncio.test_utils.disable_logger(??) +asyncio.test_utils.dummy_ssl_context(??) +asyncio.test_utils.events(??) +asyncio.test_utils.force_legacy_ssl_support(??) +asyncio.test_utils.futures(??) +asyncio.test_utils.gen_unix_socket_path(??) +asyncio.test_utils.get_function_source(??) +asyncio.test_utils.io(??) +asyncio.test_utils.logger(??) +asyncio.test_utils.logging(??) +asyncio.test_utils.make_test_protocol(??) +asyncio.test_utils.mock(??) +asyncio.test_utils.mock_nonblocking_socket(??) +asyncio.test_utils.os(??) +asyncio.test_utils.re(??) +asyncio.test_utils.run_briefly(??) +asyncio.test_utils.run_once(??) +asyncio.test_utils.run_test_server(??) +asyncio.test_utils.run_test_unix_server(??) +asyncio.test_utils.run_until(??) +asyncio.test_utils.selectors(??) +asyncio.test_utils.socket(??) +asyncio.test_utils.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +asyncio.test_utils.socketserver(??) +asyncio.test_utils.ssl(??) +asyncio.test_utils.sys(??) +asyncio.test_utils.tasks(??) +asyncio.test_utils.tempfile(??) +asyncio.test_utils.threading(??) +asyncio.test_utils.time(??) +asyncio.test_utils.unittest(??) +asyncio.test_utils.unix_socket_path(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.transports.compat(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.compat(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.coroutine(??) +asyncio.unix_events.coroutines(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.futures(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.selectors(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.unix_events.warnings(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_GENERATOR +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.RecursionError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopAsyncIteration(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(??) +builtins.all(??) +builtins.any(??) +builtins.ascii(??) +builtins.bin(??) +builtins.bool(x) -> bool +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(??) +builtins.chr(??) +builtins.classmethod(function) -> method +builtins.compile(??) +builtins.complex(real[, imag]) -> complex number +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(??) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(??) +builtins.enumerate(iterable[, start]) -> iterator for index, value of iterable +builtins.eval(??) +builtins.exec(??) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(x) -> floating point number +builtins.format(??) +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals(??) +builtins.hasattr(??) +builtins.hash(??) +builtins.help(??) +builtins.hex(??) +builtins.id(??) +builtins.input(??) +builtins.int(x=0) -> integer +builtins.isinstance(??) +builtins.issubclass(??) +builtins.iter(iterable) -> iterator +builtins.len(??) +builtins.license(??) +builtins.list() -> new empty list +builtins.locals(??) +builtins.map(func, *iterables) --> map object +builtins.max(iterable, *[, default=obj, key=func]) -> value +builtins.memoryview(??) +builtins.min(iterable, *[, default=obj, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(??) +builtins.open(??) +builtins.ord(??) +builtins.pow(??) +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(??) +builtins.reversed(sequence) -> reverse iterator over values of the sequence +builtins.round(number[, ndigits]) -> number +builtins.set() -> new empty set object +builtins.setattr(??) +builtins.slice(stop) +builtins.sorted(??) +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(??) +builtins.super() -> same as super(__class__, ) +builtins.tuple() -> empty tuple +builtins.type(object_or_name, bases, dict) +builtins.vars([object]) -> dictionary +builtins.zip(iter1 [,iter2 [...]]) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.RLock(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.warnings(??) +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(??) +cgi.BytesIO(??) +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.escape(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warn(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(??) +chunk.Chunk(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.argparse(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(??) +codecs.encode(??) +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(??) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.namereplace_errors(??) +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(??) +codecs.register_error(??) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unicode_internal_decode(??) +codecs.unicode_internal_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.AsyncIterable(??) +collections.AsyncIterator(??) +collections.Awaitable(??) +collections.ByteString(??) +collections.Callable(??) +collections.ChainMap(??) +collections.Container(??) +collections.Coroutine(??) +collections.Counter(??) +collections.Generator(??) +collections.Hashable(??) +collections.ItemsView(??) +collections.Iterable(??) +collections.Iterator(??) +collections.KeysView(??) +collections.Mapping(??) +collections.MappingView(??) +collections.MutableMapping(??) +collections.MutableSequence(??) +collections.MutableSet(??) +collections.OrderedDict(??) +collections.Sequence(??) +collections.Set(??) +collections.Sized(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.ValuesView(??) +collections.abc(??) +collections.abc.AsyncIterable(??) +collections.abc.AsyncIterator(??) +collections.abc.Awaitable(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Container(??) +collections.abc.Coroutine(??) +collections.abc.Generator(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory[, ...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(??) +compileall.ProcessPoolExecutor(??) +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.partial(func, *args, **keywords) - new function with partial application +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(real[, imag]) -> complex number +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.Full(??) +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.SimpleQueue(??) +concurrent.futures.process.atexit(??) +concurrent.futures.process.itertools(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.partial(func, *args, **keywords) - new function with partial application +concurrent.futures.process.queue(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.traceback(??) +concurrent.futures.process.wait(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.atexit(??) +concurrent.futures.thread.os(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.ConverterMapping(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.redirect_stderr(??) +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +copy.Error(??) +copy.PyStringMap(??) +copy.builtins(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copy.name +copy.t(??) +copy.weakref(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(iterable[, func]) --> accumulate object +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable, r) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(function or None, sequence) --> filterfalse object +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util.contextlib(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.newpad(??) +curses.newwin(??) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.update_lines_cols(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.wrapper(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(??) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.diff_bytes(??) +difflib.get_close_matches(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.Bytecode(??) +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(??) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.argparse(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +dummy_threading.Barrier(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.Thread(??) +dummy_threading.ThreadError(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.local(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.maintype +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.contentmanager.subtype +email.contentmanager.typ(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.compat32(??) +email.feedparser.deque([iterable[, maxlen]]) --> deque object +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.message(??) +email.feedparser.re(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.NL +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.MappingProxyType(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO(??) +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.quopri(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message.warnings(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio.BytesIO(??) +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base.MIMEBase(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text.Charset(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.policy.Compat32(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.SMTPUTF8(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.raw_data_manager(??) +email.policy.strict(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +ensurepip.bootstrap(??) +ensurepip.os(??) +ensurepip.pkgutil(??) +ensurepip.ssl(??) +ensurepip.sys(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.DynamicClassAttribute(??) +enum.Enum(??) +enum.EnumMeta(??) +enum.IntEnum(??) +enum.MappingProxyType(??) +enum.OrderedDict(??) +enum.sys(??) +enum.unique(??) +enumerate(iterable[, start]) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(??) +exec(??) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register an handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(function or None, sequence) --> filterfalse object +filecmp.os(??) +filecmp.stat(??) +fileinput.DEFAULT_BUFSIZE +fileinput.FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]]) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(??) +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +formatter.warnings(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.os(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +ftplib.warnings(??) +functools.MappingProxyType(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.WeakKeyDictionary(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.reduce(function, sequence[, initial]) -> value +functools.singledispatch(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage(??) +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats() -> [...] +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.is_tracked(obj) -> bool +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.io(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.os(??) +gettext.re(??) +gettext.struct(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.glob2(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +globals(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(??) +hash(??) +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(??) +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha512(??) +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +heapq.heappushpop(heap, item) -> value. Push item on the heap, then pop and return the smallest item +heapq.heapreplace(heap, item) -> value. Pop and return the current smallest value, and add the new item. +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +help(??) +hex(??) +hmac.HMAC(??) +hmac.compare_digest(a, b) -> bool +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser.HTMLParser(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.parser.warnings(??) +html.unescape(??) +http.HTTPStatus(??) +http.IntEnum(??) +http.client(??) +http.client.ACCEPTED(??) +http.client.ALREADY_REPORTED(??) +http.client.BAD_GATEWAY(??) +http.client.BAD_REQUEST(??) +http.client.BadStatusLine(??) +http.client.CONFLICT(??) +http.client.CONTINUE(??) +http.client.CREATED(??) +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED(??) +http.client.FAILED_DEPENDENCY(??) +http.client.FORBIDDEN(??) +http.client.FOUND(??) +http.client.GATEWAY_TIMEOUT(??) +http.client.GONE(??) +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED(??) +http.client.IM_USED(??) +http.client.INSUFFICIENT_STORAGE(??) +http.client.INTERNAL_SERVER_ERROR(??) +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED(??) +http.client.LOCKED(??) +http.client.LOOP_DETECTED(??) +http.client.LineTooLong(??) +http.client.MAXAMOUNT +http.client.METHOD_NOT_ALLOWED(??) +http.client.MOVED_PERMANENTLY(??) +http.client.MULTIPLE_CHOICES(??) +http.client.MULTI_STATUS(??) +http.client.NETWORK_AUTHENTICATION_REQUIRED(??) +http.client.NON_AUTHORITATIVE_INFORMATION(??) +http.client.NOT_ACCEPTABLE(??) +http.client.NOT_EXTENDED(??) +http.client.NOT_FOUND(??) +http.client.NOT_IMPLEMENTED(??) +http.client.NOT_MODIFIED(??) +http.client.NO_CONTENT(??) +http.client.NotConnected(??) +http.client.OK(??) +http.client.PARTIAL_CONTENT(??) +http.client.PAYMENT_REQUIRED(??) +http.client.PERMANENT_REDIRECT(??) +http.client.PRECONDITION_FAILED(??) +http.client.PRECONDITION_REQUIRED(??) +http.client.PROCESSING(??) +http.client.PROXY_AUTHENTICATION_REQUIRED(??) +http.client.REQUESTED_RANGE_NOT_SATISFIABLE(??) +http.client.REQUEST_ENTITY_TOO_LARGE(??) +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE(??) +http.client.REQUEST_TIMEOUT(??) +http.client.REQUEST_URI_TOO_LONG(??) +http.client.RESET_CONTENT(??) +http.client.RemoteDisconnected(??) +http.client.ResponseNotReady(??) +http.client.SEE_OTHER(??) +http.client.SERVICE_UNAVAILABLE(??) +http.client.SWITCHING_PROTOCOLS(??) +http.client.TEMPORARY_REDIRECT(??) +http.client.TOO_MANY_REQUESTS(??) +http.client.UNAUTHORIZED(??) +http.client.UNPROCESSABLE_ENTITY(??) +http.client.UNSUPPORTED_MEDIA_TYPE(??) +http.client.UPGRADE_REQUIRED(??) +http.client.USE_PROXY(??) +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.VARIANT_ALSO_NEGOTIATES(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.http(??) +http.client.io(??) +http.client.os(??) +http.client.parse_headers(??) +http.client.re(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.HTTPStatus(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.argparse(??) +http.server.copy(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(??) +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exr(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_webp(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.create_dynamic(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.ResourceLoader(??) +importlib.abc.SourceLoader(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.reload(??) +importlib.sys(??) +importlib.types(??) +importlib.util(??) +importlib.util.LazyLoader(??) +importlib.util.MAGIC_NUMBER +importlib.util.abc(??) +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.module_from_spec(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.types(??) +importlib.util.warnings(??) +importlib.warnings(??) +input(??) +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CORO_CLOSED +inspect.CORO_CREATED +inspect.CORO_RUNNING +inspect.CORO_SUSPENDED +inspect.CO_COROUTINE +inspect.CO_GENERATOR +inspect.CO_ITERABLE_COROUTINE +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FrameInfo(frame, filename, lineno, function, code_context, index) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.ModuleInfo(name, suffix, mode, module_type) +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.ast(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.collections(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.enum(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getcoroutinelocals(??) +inspect.getcoroutinestate(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmoduleinfo(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isawaitable(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.iscoroutine(??) +inspect.iscoroutinefunction(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int(x=0) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO(??) +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(??) +issubclass(??) +iter(iterable) -> iterator +itertools.accumulate(iterable[, func]) --> accumulate object +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable, r) --> combinations object +itertools.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.filterfalse(function or None, sequence) --> filterfalse object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.islice(iterable, stop) --> islice object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecodeError(??) +json.JSONDecoder(??) +json.JSONEncoder(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS +json.decoder.JSONArray(??) +json.decoder.JSONDecodeError(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.FLOAT_REPR(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(string) -> string +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring(??) +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool.argparse(??) +json.tool.collections(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +keyword.main(??) +len(??) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.functools(??) +linecache.getline(??) +linecache.getlines(??) +linecache.lazycache(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list() -> new empty list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.collections(??) +locale.currency(??) +locale.delocalize(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.k +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.v +locale.windows_locale(??) +locals(??) +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.collections(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingMixin(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.errno(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.thread(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +macpath.FILE_ATTRIBUTE_ARCHIVE +macpath.FILE_ATTRIBUTE_COMPRESSED +macpath.FILE_ATTRIBUTE_DEVICE +macpath.FILE_ATTRIBUTE_DIRECTORY +macpath.FILE_ATTRIBUTE_ENCRYPTED +macpath.FILE_ATTRIBUTE_HIDDEN +macpath.FILE_ATTRIBUTE_INTEGRITY_STREAM +macpath.FILE_ATTRIBUTE_NORMAL +macpath.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +macpath.FILE_ATTRIBUTE_NO_SCRUB_DATA +macpath.FILE_ATTRIBUTE_OFFLINE +macpath.FILE_ATTRIBUTE_READONLY +macpath.FILE_ATTRIBUTE_REPARSE_POINT +macpath.FILE_ATTRIBUTE_SPARSE_FILE +macpath.FILE_ATTRIBUTE_SYSTEM +macpath.FILE_ATTRIBUTE_TEMPORARY +macpath.FILE_ATTRIBUTE_VIRTUAL +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFDOOR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFPORT +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IFWHT +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(mode) -> bool +macpath.S_ISCHR(mode) -> bool +macpath.S_ISDIR(mode) -> bool +macpath.S_ISDOOR(mode) -> bool +macpath.S_ISFIFO(mode) -> bool +macpath.S_ISGID +macpath.S_ISLNK(mode) -> bool +macpath.S_ISPORT(mode) -> bool +macpath.S_ISREG(mode) -> bool +macpath.S_ISSOCK(mode) -> bool +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_ISWHT(mode) -> bool +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_COMPRESSED +macpath.UF_HIDDEN +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep(??) +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.filemode(??) +macpath.genericpath(??) +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os(??) +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.samefile(??) +macpath.sameopenfile(??) +macpath.samestat(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames(??) +macurl2path.os(??) +macurl2path.pathname2url(??) +macurl2path.url2pathname(??) +macurl2path.urllib(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +map(func, *iterables) --> map object +marshal.dump(value, file[, version]) +marshal.dumps(value[, version]) +marshal.load(file) +marshal.loads(bytes) +marshal.version +max(iterable, *[, default=obj, key=func]) -> value +memoryview(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable, *[, default=obj, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.HAVE_ARGUMENT +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.imp(??) +modulefinder.importlib(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.struct(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +modulefinder.warnings(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.ForkingPickler(??) +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list() -> new empty list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.UNSIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_unsigned(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.semaphore_tracker(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.write_unsigned(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.context(??) +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BasePoolProxy(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.context(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.util(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.sys(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.context(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.context(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.ForkingPickler(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.semaphore_tracker.SemaphoreTracker(??) +multiprocessing.semaphore_tracker.ensure_running(??) +multiprocessing.semaphore_tracker.getfd(??) +multiprocessing.semaphore_tracker.main(??) +multiprocessing.semaphore_tracker.os(??) +multiprocessing.semaphore_tracker.register(??) +multiprocessing.semaphore_tracker.signal(??) +multiprocessing.semaphore_tracker.spawn(??) +multiprocessing.semaphore_tracker.sys(??) +multiprocessing.semaphore_tracker.threading(??) +multiprocessing.semaphore_tracker.unregister(??) +multiprocessing.semaphore_tracker.util(??) +multiprocessing.semaphore_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.ForkingPickler(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.pickle(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(??) +open(??) +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imatmul(??) +operator.imod(??) +operator.imul(??) +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(a, b) -- Same as a<=b. +operator.length_hint(obj, default=0) -> int +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.rshift(a, b) -- Same as a >> b. +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(??) +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_TRAPPED +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_EXLOCK +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(??) +os.WEXITED +os.WEXITSTATUS(??) +os.WIFCONTINUED(??) +os.WIFEXITED(??) +os.WIFSIGNALED(??) +os.WIFSTOPPED(??) +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(??) +os.WTERMSIG(??) +os.WUNTRACED +os.W_OK +os.X_OK +os.abort(??) +os.access(??) +os.altsep(??) +os.chdir(??) +os.chflags(??) +os.chmod(??) +os.chown(??) +os.chroot(??) +os.close(??) +os.closerange(??) +os.confstr(??) +os.confstr_names(??) +os.cpu_count(??) +os.ctermid(??) +os.curdir +os.defpath +os.device_encoding(??) +os.devnull +os.dup(??) +os.dup2(??) +os.environ(??) +os.environb(??) +os.errno(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(??) +os.execve(??) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(??) +os.fchmod(??) +os.fchown(??) +os.fdopen(??) +os.fork(??) +os.forkpty(??) +os.fpathconf(??) +os.fsdecode(??) +os.fsencode(??) +os.fstat(??) +os.fstatvfs(??) +os.fsync(??) +os.ftruncate(??) +os.get_blocking(fd) -> bool +os.get_exec_path(??) +os.get_inheritable(??) +os.get_terminal_size(??) +os.getcwd(??) +os.getcwdb(??) +os.getegid(??) +os.getenv(??) +os.getenvb(??) +os.geteuid(??) +os.getgid(??) +os.getgrouplist(user, group) -> list of groups to which a user belongs +os.getgroups(??) +os.getloadavg(??) +os.getlogin(??) +os.getpgid(??) +os.getpgrp(??) +os.getpid(??) +os.getppid(??) +os.getpriority(??) +os.getsid(??) +os.getuid(??) +os.initgroups(username, gid) -> None +os.isatty(??) +os.kill(??) +os.killpg(??) +os.lchflags(??) +os.lchmod(??) +os.lchown(??) +os.linesep +os.link(??) +os.listdir(??) +os.lockf(??) +os.lseek(??) +os.lstat(??) +os.major(??) +os.makedev(??) +os.makedirs(name [, mode=0o777][, exist_ok=False]) +os.minor(??) +os.mkdir(??) +os.mkfifo(??) +os.mknod(??) +os.name +os.nice(??) +os.open(??) +os.openpty(??) +os.pardir +os.path(??) +os.pathconf(??) +os.pathconf_names(??) +os.pathsep +os.pipe(??) +os.popen(??) +os.pread(??) +os.putenv(??) +os.pwrite(??) +os.read(??) +os.readlink(path, *, dir_fd=None) -> path +os.readv(??) +os.remove(??) +os.removedirs(name) +os.rename(??) +os.renames(old, new) +os.replace(??) +os.rmdir(??) +os.scandir(path='.') -> iterator of DirEntry objects for given path +os.sched_get_priority_max(??) +os.sched_get_priority_min(??) +os.sched_yield(??) +os.sendfile(out, in, offset, nbytes) -> byteswritten +os.sep +os.set_blocking(fd, blocking) +os.set_inheritable(??) +os.setegid(??) +os.seteuid(??) +os.setgid(??) +os.setgroups(??) +os.setpgid(??) +os.setpgrp(??) +os.setpriority(??) +os.setregid(??) +os.setreuid(??) +os.setsid(??) +os.setuid(??) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_float_times([newval]) -> oldval +os.stat_result(??) +os.statvfs(??) +os.statvfs_result(??) +os.strerror(??) +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(??) +os.sync(??) +os.sys(??) +os.sysconf(??) +os.sysconf_names(??) +os.system(??) +os.tcgetpgrp(??) +os.tcsetpgrp(??) +os.terminal_size(??) +os.times(??) +os.times_result(??) +os.truncate(??) +os.ttyname(??) +os.umask(??) +os.uname(??) +os.uname_result(??) +os.unlink(??) +os.unsetenv(??) +os.urandom(??) +os.utime(??) +os.wait(??) +os.wait3(??) +os.wait4(??) +os.waitpid(??) +os.walk(??) +os.write(??) +os.writev(??) +pathlib.EINVAL +pathlib.ENOENT +pathlib.ENOTDIR +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.contextmanager(??) +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.nt(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.supports_symlinks(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(fmt, v1, v2, ...) -> bytes +pickle.re(??) +pickle.sys(??) +pickle.unpack(fmt, buffer) -> (v1, v2, ...) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.DEV_NULL +platform.architecture(??) +platform.collections(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.subprocess(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(system, node, release, version, machine, processor) +platform.version(??) +platform.warnings(??) +platform.win32_ver(??) +plistlib.BytesIO(??) +plistlib.Data(??) +plistlib.Dict(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate(??) +plistlib.Plist(??) +plistlib.PlistFormat(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.contextlib(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.struct(??) +plistlib.warn(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_TRAPPED +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_EXLOCK +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(??) +posix.WEXITED +posix.WEXITSTATUS(??) +posix.WIFCONTINUED(??) +posix.WIFEXITED(??) +posix.WIFSIGNALED(??) +posix.WIFSTOPPED(??) +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(??) +posix.WTERMSIG(??) +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort(??) +posix.access(??) +posix.chdir(??) +posix.chflags(??) +posix.chmod(??) +posix.chown(??) +posix.chroot(??) +posix.close(??) +posix.closerange(??) +posix.confstr(??) +posix.confstr_names(??) +posix.cpu_count(??) +posix.ctermid(??) +posix.device_encoding(??) +posix.dup(??) +posix.dup2(??) +posix.environ(??) +posix.error(??) +posix.execv(??) +posix.execve(??) +posix.fchdir(??) +posix.fchmod(??) +posix.fchown(??) +posix.fork(??) +posix.forkpty(??) +posix.fpathconf(??) +posix.fstat(??) +posix.fstatvfs(??) +posix.fsync(??) +posix.ftruncate(??) +posix.get_blocking(fd) -> bool +posix.get_inheritable(??) +posix.get_terminal_size(??) +posix.getcwd(??) +posix.getcwdb(??) +posix.getegid(??) +posix.geteuid(??) +posix.getgid(??) +posix.getgrouplist(user, group) -> list of groups to which a user belongs +posix.getgroups(??) +posix.getloadavg(??) +posix.getlogin(??) +posix.getpgid(??) +posix.getpgrp(??) +posix.getpid(??) +posix.getppid(??) +posix.getpriority(??) +posix.getsid(??) +posix.getuid(??) +posix.initgroups(username, gid) -> None +posix.isatty(??) +posix.kill(??) +posix.killpg(??) +posix.lchflags(??) +posix.lchmod(??) +posix.lchown(??) +posix.link(??) +posix.listdir(??) +posix.lockf(??) +posix.lseek(??) +posix.lstat(??) +posix.major(??) +posix.makedev(??) +posix.minor(??) +posix.mkdir(??) +posix.mkfifo(??) +posix.mknod(??) +posix.nice(??) +posix.open(??) +posix.openpty(??) +posix.pathconf(??) +posix.pathconf_names(??) +posix.pipe(??) +posix.pread(??) +posix.putenv(??) +posix.pwrite(??) +posix.read(??) +posix.readlink(path, *, dir_fd=None) -> path +posix.readv(??) +posix.remove(??) +posix.rename(??) +posix.replace(??) +posix.rmdir(??) +posix.scandir(path='.') -> iterator of DirEntry objects for given path +posix.sched_get_priority_max(??) +posix.sched_get_priority_min(??) +posix.sched_yield(??) +posix.sendfile(out, in, offset, nbytes) -> byteswritten +posix.set_blocking(fd, blocking) +posix.set_inheritable(??) +posix.setegid(??) +posix.seteuid(??) +posix.setgid(??) +posix.setgroups(??) +posix.setpgid(??) +posix.setpgrp(??) +posix.setpriority(??) +posix.setregid(??) +posix.setreuid(??) +posix.setsid(??) +posix.setuid(??) +posix.stat(??) +posix.stat_float_times([newval]) -> oldval +posix.stat_result(??) +posix.statvfs(??) +posix.statvfs_result(??) +posix.strerror(??) +posix.symlink(??) +posix.sync(??) +posix.sysconf(??) +posix.sysconf_names(??) +posix.system(??) +posix.tcgetpgrp(??) +posix.tcsetpgrp(??) +posix.terminal_size(??) +posix.times(??) +posix.times_result(??) +posix.truncate(??) +posix.ttyname(??) +posix.umask(??) +posix.uname(??) +posix.uname_result(??) +posix.unlink(??) +posix.unsetenv(??) +posix.urandom(??) +posix.utime(??) +posix.wait(??) +posix.wait3(??) +posix.wait4(??) +posix.waitpid(??) +posix.write(??) +posix.writev(??) +pow(??) +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.OptionParser(??) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.os(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall(??) +pwd.getpwnam(??) +pwd.getpwuid(??) +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.compile(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.importlib(??) +pyclbr.io(??) +pyclbr.itemgetter(item, ...) --> itemgetter object +pyclbr.os(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.urllib(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +queue.threading(??) +queue.time(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A +re.ASCII +re.DEBUG +re.DOTALL +re.I +re.IGNORECASE +re.L +re.LOCALE +re.M +re.MULTILINE +re.S +re.Scanner(??) +re.T +re.TEMPLATE +re.U +re.UNICODE +re.VERBOSE +re.X +re.compile(??) +re.copyreg(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.sys(??) +re.template(??) +repr(??) +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(sequence) -> reverse iterator over values of the sequence +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(number[, ndigits]) -> number +runpy.get_importer(??) +runpy.importlib(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +runpy.types(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(??) +shelve.BsdDbShelf(??) +shelve.BytesIO(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(??) +shutil.getpwnam(??) +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.os(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.tarfile(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.Handlers(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT(??) +signal.SIGALRM(??) +signal.SIGBUS(??) +signal.SIGCHLD(??) +signal.SIGCONT(??) +signal.SIGEMT(??) +signal.SIGFPE(??) +signal.SIGHUP(??) +signal.SIGILL(??) +signal.SIGINFO(??) +signal.SIGINT(??) +signal.SIGIO(??) +signal.SIGIOT(??) +signal.SIGKILL(??) +signal.SIGPIPE(??) +signal.SIGPROF(??) +signal.SIGQUIT(??) +signal.SIGSEGV(??) +signal.SIGSTOP(??) +signal.SIGSYS(??) +signal.SIGTERM(??) +signal.SIGTRAP(??) +signal.SIGTSTP(??) +signal.SIGTTIN(??) +signal.SIGTTOU(??) +signal.SIGURG(??) +signal.SIGUSR1(??) +signal.SIGUSR2(??) +signal.SIGVTALRM(??) +signal.SIGWINCH(??) +signal.SIGXCPU(??) +signal.SIGXFSZ(??) +signal.SIG_BLOCK(??) +signal.SIG_DFL(??) +signal.SIG_IGN(??) +signal.SIG_SETMASK(??) +signal.SIG_UNBLOCK(??) +signal.Sigmasks(??) +signal.Signals(??) +signal.alarm(??) +signal.default_int_handler(...) +signal.getitimer(??) +signal.getsignal(??) +signal.pause(??) +signal.pthread_kill(??) +signal.pthread_sigmask(??) +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(??) +signal.siginterrupt(??) +signal.signal(??) +signal.sigpending(??) +signal.sigwait(??) +site.CONFIG_LINE +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.aliasmbcs(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPNotSupportedError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.datetime(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.sys(??) +sndhdr.SndHeaders(filetype, framerate, nchannels, nframes, sampwidth) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.namedtuple(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG +socket.AI_ALL +socket.AI_CANONNAME +socket.AI_DEFAULT +socket.AI_MASK +socket.AI_NUMERICHOST +socket.AI_NUMERICSERV +socket.AI_PASSIVE +socket.AI_V4MAPPED +socket.AI_V4MAPPED_CFG +socket.AddressFamily(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC +socket.MSG_DONTROUTE +socket.MSG_DONTWAIT +socket.MSG_EOF +socket.MSG_EOR +socket.MSG_OOB +socket.MSG_PEEK +socket.MSG_TRUNC +socket.MSG_WAITALL +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketKind(??) +socket.SocketType(??) +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.create_connection(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.selectors(??) +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.errno(??) +socketserver.os(??) +socketserver.selectors(??) +socketserver.socket(??) +socketserver.threading(??) +socketserver.time(??) +sorted(??) +sqlite3.Binary(??) +sqlite3.Cache(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement(??) +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.collections(??) +sqlite3.complete_statement(sql) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Cache(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement(??) +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.collections(??) +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.AF_INET(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY +ssl.ALERT_DESCRIPTION_DECODE_ERROR +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE +ssl.ALERT_DESCRIPTION_UNKNOWN_CA +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION +ssl.ALERT_DESCRIPTION_USER_CANCELLED +ssl.CERT_NONE +ssl.CERT_OPTIONAL +ssl.CERT_REQUIRED +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ALPN(??) +ssl.HAS_ECDH(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.MemoryBIO(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL +ssl.OP_CIPHER_SERVER_PREFERENCE +ssl.OP_NO_SSLv2 +ssl.OP_NO_SSLv3 +ssl.OP_NO_TLSv1 +ssl.OP_SINGLE_DH_USE +ssl.OP_SINGLE_ECDH_USE +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv2(??) +ssl.PROTOCOL_SSLv23(??) +ssl.PROTOCOL_SSLv3(??) +ssl.PROTOCOL_TLSv1(??) +ssl.Purpose(??) +ssl.RAND_add(??) +ssl.RAND_bytes(??) +ssl.RAND_egd(??) +ssl.RAND_pseudo_bytes(??) +ssl.RAND_status(??) +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLObject(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF +ssl.SSL_ERROR_INVALID_ERROR_CODE +ssl.SSL_ERROR_SSL +ssl.SSL_ERROR_SYSCALL +ssl.SSL_ERROR_WANT_CONNECT +ssl.SSL_ERROR_WANT_READ +ssl.SSL_ERROR_WANT_WRITE +ssl.SSL_ERROR_WANT_X509_LOOKUP +ssl.SSL_ERROR_ZERO_RETURN +ssl.VERIFY_CRL_CHECK_CHAIN +ssl.VERIFY_CRL_CHECK_LEAF +ssl.VERIFY_DEFAULT +ssl.VERIFY_X509_STRICT +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.ipaddress(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.re(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.textwrap(??) +ssl.wrap_socket(??) +stat.FILE_ATTRIBUTE_ARCHIVE +stat.FILE_ATTRIBUTE_COMPRESSED +stat.FILE_ATTRIBUTE_DEVICE +stat.FILE_ATTRIBUTE_DIRECTORY +stat.FILE_ATTRIBUTE_ENCRYPTED +stat.FILE_ATTRIBUTE_HIDDEN +stat.FILE_ATTRIBUTE_INTEGRITY_STREAM +stat.FILE_ATTRIBUTE_NORMAL +stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +stat.FILE_ATTRIBUTE_NO_SCRUB_DATA +stat.FILE_ATTRIBUTE_OFFLINE +stat.FILE_ATTRIBUTE_READONLY +stat.FILE_ATTRIBUTE_REPARSE_POINT +stat.FILE_ATTRIBUTE_SPARSE_FILE +stat.FILE_ATTRIBUTE_SYSTEM +stat.FILE_ATTRIBUTE_TEMPORARY +stat.FILE_ATTRIBUTE_VIRTUAL +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Decimal(??) +statistics.Fraction(??) +statistics.StatisticsError(??) +statistics.collections(??) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.stdev(??) +statistics.variance(??) +str(object='') -> str +string.ChainMap(??) +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(fmt) -> integer +struct.error(??) +struct.iter_unpack(fmt, buffer) -> iterator(v1, v2, ...) +struct.pack(fmt, v1, v2, ...) -> bytes +struct.pack_into(fmt, buffer, offset, v1, v2, ...) +struct.unpack(fmt, buffer) -> (v1, v2, ...) +struct.unpack_from(fmt, buffer, offset=0) -> (v1, v2, ...) +subprocess.CalledProcessError(??) +subprocess.CompletedProcess(??) +subprocess.DEVNULL +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.os(??) +subprocess.run(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.threading(??) +subprocess.time(??) +subprocess.warnings(??) +sum(??) +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +sunau.openfp(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.async_funcdef +symbol.async_stmt +symbol.atom +symbol.atom_expr +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_arg +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.api_version +sys.argv(??) +sys.base_exec_prefix +sys.base_prefix +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode(??) +sys.exc_info() -> (type, value, traceback) +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.get_coroutine_wrapper() +sys.getallocatedblocks() -> integer +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.getswitchinterval() -> current thread switch interval; see setswitchinterval(). +sys.gettrace() +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(string) -> string +sys.is_finalizing() +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.set_coroutine_wrapper(wrapper) +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.setswitchinterval(n) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.thread_info(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TarIter(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.filemode(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempdirb(??) +tempfile.gettempprefix(??) +tempfile.gettempprefixb(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.get_ident() -> integer +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.perf_counter() -> float +time.process_time() -> float +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog.ACTIVE +tkinter.commondialog.ALL +tkinter.commondialog.ANCHOR +tkinter.commondialog.ARC +tkinter.commondialog.BASELINE +tkinter.commondialog.BEVEL +tkinter.commondialog.BOTH +tkinter.commondialog.BOTTOM +tkinter.commondialog.BROWSE +tkinter.commondialog.BUTT +tkinter.commondialog.BaseWidget(??) +tkinter.commondialog.BitmapImage(??) +tkinter.commondialog.BooleanVar(??) +tkinter.commondialog.Button(??) +tkinter.commondialog.CASCADE +tkinter.commondialog.CENTER +tkinter.commondialog.CHAR +tkinter.commondialog.CHECKBUTTON +tkinter.commondialog.CHORD +tkinter.commondialog.COMMAND +tkinter.commondialog.CURRENT +tkinter.commondialog.CallWrapper(??) +tkinter.commondialog.Canvas(??) +tkinter.commondialog.Checkbutton(??) +tkinter.commondialog.DISABLED +tkinter.commondialog.DOTBOX +tkinter.commondialog.Dialog(??) +tkinter.commondialog.DoubleVar(??) +tkinter.commondialog.E +tkinter.commondialog.END +tkinter.commondialog.EW +tkinter.commondialog.EXCEPTION +tkinter.commondialog.EXTENDED +tkinter.commondialog.Entry(??) +tkinter.commondialog.Event(??) +tkinter.commondialog.FALSE +tkinter.commondialog.FIRST +tkinter.commondialog.FLAT +tkinter.commondialog.Frame(??) +tkinter.commondialog.GROOVE +tkinter.commondialog.Grid(??) +tkinter.commondialog.HIDDEN +tkinter.commondialog.HORIZONTAL +tkinter.commondialog.INSERT +tkinter.commondialog.INSIDE +tkinter.commondialog.Image(??) +tkinter.commondialog.IntVar(??) +tkinter.commondialog.LAST +tkinter.commondialog.LEFT +tkinter.commondialog.Label(??) +tkinter.commondialog.LabelFrame(??) +tkinter.commondialog.Listbox(??) +tkinter.commondialog.MITER +tkinter.commondialog.MOVETO +tkinter.commondialog.MULTIPLE +tkinter.commondialog.Menu(??) +tkinter.commondialog.Menubutton(??) +tkinter.commondialog.Message(??) +tkinter.commondialog.Misc(??) +tkinter.commondialog.N +tkinter.commondialog.NE +tkinter.commondialog.NO +tkinter.commondialog.NONE +tkinter.commondialog.NORMAL +tkinter.commondialog.NS +tkinter.commondialog.NSEW +tkinter.commondialog.NUMERIC +tkinter.commondialog.NW +tkinter.commondialog.NoDefaultRoot(??) +tkinter.commondialog.OFF +tkinter.commondialog.ON +tkinter.commondialog.OUTSIDE +tkinter.commondialog.OptionMenu(??) +tkinter.commondialog.PAGES +tkinter.commondialog.PIESLICE +tkinter.commondialog.PROJECTING +tkinter.commondialog.Pack(??) +tkinter.commondialog.PanedWindow(??) +tkinter.commondialog.PhotoImage(??) +tkinter.commondialog.Place(??) +tkinter.commondialog.RADIOBUTTON +tkinter.commondialog.RAISED +tkinter.commondialog.READABLE +tkinter.commondialog.RIDGE +tkinter.commondialog.RIGHT +tkinter.commondialog.ROUND +tkinter.commondialog.Radiobutton(??) +tkinter.commondialog.S +tkinter.commondialog.SCROLL +tkinter.commondialog.SE +tkinter.commondialog.SEL +tkinter.commondialog.SEL_FIRST +tkinter.commondialog.SEL_LAST +tkinter.commondialog.SEPARATOR +tkinter.commondialog.SINGLE +tkinter.commondialog.SOLID +tkinter.commondialog.SUNKEN +tkinter.commondialog.SW +tkinter.commondialog.Scale(??) +tkinter.commondialog.Scrollbar(??) +tkinter.commondialog.Spinbox(??) +tkinter.commondialog.StringVar(??) +tkinter.commondialog.TOP +tkinter.commondialog.TRUE +tkinter.commondialog.Tcl(??) +tkinter.commondialog.TclError(??) +tkinter.commondialog.TclVersion +tkinter.commondialog.Text(??) +tkinter.commondialog.Tk(??) +tkinter.commondialog.TkVersion +tkinter.commondialog.Toplevel(??) +tkinter.commondialog.UNDERLINE +tkinter.commondialog.UNITS +tkinter.commondialog.VERTICAL +tkinter.commondialog.Variable(??) +tkinter.commondialog.W +tkinter.commondialog.WORD +tkinter.commondialog.WRITABLE +tkinter.commondialog.Widget(??) +tkinter.commondialog.Wm(??) +tkinter.commondialog.X +tkinter.commondialog.XView(??) +tkinter.commondialog.Y +tkinter.commondialog.YES +tkinter.commondialog.YView(??) +tkinter.commondialog.constants(??) +tkinter.commondialog.getboolean(??) +tkinter.commondialog.getdouble(??) +tkinter.commondialog.getint(??) +tkinter.commondialog.image_names(??) +tkinter.commondialog.image_types(??) +tkinter.commondialog.mainloop(??) +tkinter.commondialog.re(??) +tkinter.commondialog.sys(??) +tkinter.commondialog.wantobjects +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog.ACTIVE +tkinter.dialog.ALL +tkinter.dialog.ANCHOR +tkinter.dialog.ARC +tkinter.dialog.BASELINE +tkinter.dialog.BEVEL +tkinter.dialog.BOTH +tkinter.dialog.BOTTOM +tkinter.dialog.BROWSE +tkinter.dialog.BUTT +tkinter.dialog.BaseWidget(??) +tkinter.dialog.BitmapImage(??) +tkinter.dialog.BooleanVar(??) +tkinter.dialog.Button(??) +tkinter.dialog.CASCADE +tkinter.dialog.CENTER +tkinter.dialog.CHAR +tkinter.dialog.CHECKBUTTON +tkinter.dialog.CHORD +tkinter.dialog.COMMAND +tkinter.dialog.CURRENT +tkinter.dialog.CallWrapper(??) +tkinter.dialog.Canvas(??) +tkinter.dialog.Checkbutton(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.DISABLED +tkinter.dialog.DOTBOX +tkinter.dialog.Dialog(??) +tkinter.dialog.DoubleVar(??) +tkinter.dialog.E +tkinter.dialog.END +tkinter.dialog.EW +tkinter.dialog.EXCEPTION +tkinter.dialog.EXTENDED +tkinter.dialog.Entry(??) +tkinter.dialog.Event(??) +tkinter.dialog.FALSE +tkinter.dialog.FIRST +tkinter.dialog.FLAT +tkinter.dialog.Frame(??) +tkinter.dialog.GROOVE +tkinter.dialog.Grid(??) +tkinter.dialog.HIDDEN +tkinter.dialog.HORIZONTAL +tkinter.dialog.INSERT +tkinter.dialog.INSIDE +tkinter.dialog.Image(??) +tkinter.dialog.IntVar(??) +tkinter.dialog.LAST +tkinter.dialog.LEFT +tkinter.dialog.Label(??) +tkinter.dialog.LabelFrame(??) +tkinter.dialog.Listbox(??) +tkinter.dialog.MITER +tkinter.dialog.MOVETO +tkinter.dialog.MULTIPLE +tkinter.dialog.Menu(??) +tkinter.dialog.Menubutton(??) +tkinter.dialog.Message(??) +tkinter.dialog.Misc(??) +tkinter.dialog.N +tkinter.dialog.NE +tkinter.dialog.NO +tkinter.dialog.NONE +tkinter.dialog.NORMAL +tkinter.dialog.NS +tkinter.dialog.NSEW +tkinter.dialog.NUMERIC +tkinter.dialog.NW +tkinter.dialog.NoDefaultRoot(??) +tkinter.dialog.OFF +tkinter.dialog.ON +tkinter.dialog.OUTSIDE +tkinter.dialog.OptionMenu(??) +tkinter.dialog.PAGES +tkinter.dialog.PIESLICE +tkinter.dialog.PROJECTING +tkinter.dialog.Pack(??) +tkinter.dialog.PanedWindow(??) +tkinter.dialog.PhotoImage(??) +tkinter.dialog.Place(??) +tkinter.dialog.RADIOBUTTON +tkinter.dialog.RAISED +tkinter.dialog.READABLE +tkinter.dialog.RIDGE +tkinter.dialog.RIGHT +tkinter.dialog.ROUND +tkinter.dialog.Radiobutton(??) +tkinter.dialog.S +tkinter.dialog.SCROLL +tkinter.dialog.SE +tkinter.dialog.SEL +tkinter.dialog.SEL_FIRST +tkinter.dialog.SEL_LAST +tkinter.dialog.SEPARATOR +tkinter.dialog.SINGLE +tkinter.dialog.SOLID +tkinter.dialog.SUNKEN +tkinter.dialog.SW +tkinter.dialog.Scale(??) +tkinter.dialog.Scrollbar(??) +tkinter.dialog.Spinbox(??) +tkinter.dialog.StringVar(??) +tkinter.dialog.TOP +tkinter.dialog.TRUE +tkinter.dialog.Tcl(??) +tkinter.dialog.TclError(??) +tkinter.dialog.TclVersion +tkinter.dialog.Text(??) +tkinter.dialog.Tk(??) +tkinter.dialog.TkVersion +tkinter.dialog.Toplevel(??) +tkinter.dialog.UNDERLINE +tkinter.dialog.UNITS +tkinter.dialog.VERTICAL +tkinter.dialog.Variable(??) +tkinter.dialog.W +tkinter.dialog.WORD +tkinter.dialog.WRITABLE +tkinter.dialog.Widget(??) +tkinter.dialog.Wm(??) +tkinter.dialog.X +tkinter.dialog.XView(??) +tkinter.dialog.Y +tkinter.dialog.YES +tkinter.dialog.YView(??) +tkinter.dialog.colorchooser(??) +tkinter.dialog.commondialog(??) +tkinter.dialog.constants(??) +tkinter.dialog.getboolean(??) +tkinter.dialog.getdouble(??) +tkinter.dialog.getint(??) +tkinter.dialog.image_names(??) +tkinter.dialog.image_types(??) +tkinter.dialog.mainloop(??) +tkinter.dialog.re(??) +tkinter.dialog.sys(??) +tkinter.dialog.wantobjects +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.filedialog.ACTIVE +tkinter.filedialog.ALL +tkinter.filedialog.ANCHOR +tkinter.filedialog.ARC +tkinter.filedialog.BASELINE +tkinter.filedialog.BEVEL +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.BROWSE +tkinter.filedialog.BUTT +tkinter.filedialog.BaseWidget(??) +tkinter.filedialog.BitmapImage(??) +tkinter.filedialog.BooleanVar(??) +tkinter.filedialog.Button(??) +tkinter.filedialog.CASCADE +tkinter.filedialog.CENTER +tkinter.filedialog.CHAR +tkinter.filedialog.CHECKBUTTON +tkinter.filedialog.CHORD +tkinter.filedialog.COMMAND +tkinter.filedialog.CURRENT +tkinter.filedialog.CallWrapper(??) +tkinter.filedialog.Canvas(??) +tkinter.filedialog.Checkbutton(??) +tkinter.filedialog.DISABLED +tkinter.filedialog.DOTBOX +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.DoubleVar(??) +tkinter.filedialog.E +tkinter.filedialog.END +tkinter.filedialog.EW +tkinter.filedialog.EXCEPTION +tkinter.filedialog.EXTENDED +tkinter.filedialog.Entry(??) +tkinter.filedialog.Event(??) +tkinter.filedialog.FALSE +tkinter.filedialog.FIRST +tkinter.filedialog.FLAT +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.GROOVE +tkinter.filedialog.Grid(??) +tkinter.filedialog.HIDDEN +tkinter.filedialog.HORIZONTAL +tkinter.filedialog.INSERT +tkinter.filedialog.INSIDE +tkinter.filedialog.Image(??) +tkinter.filedialog.IntVar(??) +tkinter.filedialog.LAST +tkinter.filedialog.LEFT +tkinter.filedialog.Label(??) +tkinter.filedialog.LabelFrame(??) +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.MITER +tkinter.filedialog.MOVETO +tkinter.filedialog.MULTIPLE +tkinter.filedialog.Menu(??) +tkinter.filedialog.Menubutton(??) +tkinter.filedialog.Message(??) +tkinter.filedialog.Misc(??) +tkinter.filedialog.N +tkinter.filedialog.NE +tkinter.filedialog.NO +tkinter.filedialog.NONE +tkinter.filedialog.NORMAL +tkinter.filedialog.NS +tkinter.filedialog.NSEW +tkinter.filedialog.NUMERIC +tkinter.filedialog.NW +tkinter.filedialog.NoDefaultRoot(??) +tkinter.filedialog.OFF +tkinter.filedialog.ON +tkinter.filedialog.OUTSIDE +tkinter.filedialog.Open(??) +tkinter.filedialog.OptionMenu(??) +tkinter.filedialog.PAGES +tkinter.filedialog.PIESLICE +tkinter.filedialog.PROJECTING +tkinter.filedialog.Pack(??) +tkinter.filedialog.PanedWindow(??) +tkinter.filedialog.PhotoImage(??) +tkinter.filedialog.Place(??) +tkinter.filedialog.RADIOBUTTON +tkinter.filedialog.RAISED +tkinter.filedialog.READABLE +tkinter.filedialog.RIDGE +tkinter.filedialog.RIGHT +tkinter.filedialog.ROUND +tkinter.filedialog.Radiobutton(??) +tkinter.filedialog.S +tkinter.filedialog.SCROLL +tkinter.filedialog.SE +tkinter.filedialog.SEL +tkinter.filedialog.SEL_FIRST +tkinter.filedialog.SEL_LAST +tkinter.filedialog.SEPARATOR +tkinter.filedialog.SINGLE +tkinter.filedialog.SOLID +tkinter.filedialog.SUNKEN +tkinter.filedialog.SW +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scale(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.Spinbox(??) +tkinter.filedialog.StringVar(??) +tkinter.filedialog.TOP +tkinter.filedialog.TRUE +tkinter.filedialog.Tcl(??) +tkinter.filedialog.TclError(??) +tkinter.filedialog.TclVersion +tkinter.filedialog.Text(??) +tkinter.filedialog.Tk(??) +tkinter.filedialog.TkVersion +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.UNDERLINE +tkinter.filedialog.UNITS +tkinter.filedialog.VERTICAL +tkinter.filedialog.Variable(??) +tkinter.filedialog.W +tkinter.filedialog.WORD +tkinter.filedialog.WRITABLE +tkinter.filedialog.Widget(??) +tkinter.filedialog.Wm(??) +tkinter.filedialog.X +tkinter.filedialog.XView(??) +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.YView(??) +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.colorchooser(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.constants(??) +tkinter.filedialog.dialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.dnd(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.getboolean(??) +tkinter.filedialog.getdouble(??) +tkinter.filedialog.getint(??) +tkinter.filedialog.image_names(??) +tkinter.filedialog.image_types(??) +tkinter.filedialog.mainloop(??) +tkinter.filedialog.os(??) +tkinter.filedialog.re(??) +tkinter.filedialog.sys(??) +tkinter.filedialog.test(??) +tkinter.filedialog.wantobjects +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.colorchooser(??) +tkinter.simpledialog.commondialog(??) +tkinter.simpledialog.constants(??) +tkinter.simpledialog.dialog(??) +tkinter.simpledialog.dnd(??) +tkinter.simpledialog.filedialog(??) +tkinter.simpledialog.font(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.simpledialog.re(??) +tkinter.simpledialog.scrolledtext(??) +tkinter.simpledialog.sys(??) +tkinter.simpledialog.tkinter(??) +tkinter.simpledialog.wantobjects +tkinter.sys(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.colorchooser(??) +tkinter.tix.commondialog(??) +tkinter.tix.constants(??) +tkinter.tix.dialog(??) +tkinter.tix.dnd(??) +tkinter.tix.filedialog(??) +tkinter.tix.font(??) +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.messagebox(??) +tkinter.tix.os(??) +tkinter.tix.re(??) +tkinter.tix.scrolledtext(??) +tkinter.tix.simpledialog(??) +tkinter.tix.sys(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.wantobjects +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.wantobjects +token.AMPER +token.AMPEREQUAL +token.ASYNC +token.AT +token.ATEQUAL +token.AWAIT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.ASYNC +tokenize.AT +tokenize.ATEQUAL +tokenize.AWAIT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.chain(*iterables) --> chain object +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.Ignore(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.find_executable_linenos(??) +trace.find_lines(??) +trace.find_lines_from_code(??) +trace.find_strings(??) +trace.fullmodname(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.modname(??) +trace.os(??) +trace.pickle(??) +trace.re(??) +trace.rx_blank(??) +trace.sys(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +trace.usage(??) +traceback.FrameSummary(??) +traceback.StackSummary(??) +traceback.TracebackException(??) +traceback.clear_frames(??) +traceback.collections(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.itertools(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +traceback.walk_stack(??) +traceback.walk_tb(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Iterable(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces() +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit() -> int +tracemalloc.get_traced_memory() -> (int, int) +tracemalloc.get_tracemalloc_memory() -> int +tracemalloc.is_tracing()->bool +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.start(nframe: int=1) +tracemalloc.stop() +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> empty tuple +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.sys(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object_or_name, bases, dict) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CodeType(??) +types.CoroutineType(??) +types.DynamicClassAttribute(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodType(??) +types.ModuleType(??) +types.SimpleNamespace(??) +types.TracebackType(??) +types.coroutine(??) +types.new_class(??) +types.prepare_class(??) +typing.AbstractSet(??) +typing.Any(??) +typing.AnyMeta(??) +typing.AnyStr(??) +typing.BinaryIO(??) +typing.ByteString(??) +typing.Callable(??) +typing.CallableMeta(??) +typing.Container(??) +typing.Dict(??) +typing.Final(??) +typing.FrozenSet(??) +typing.Generator(??) +typing.Generic(??) +typing.GenericMeta(??) +typing.Hashable(??) +typing.IO(??) +typing.ItemsView(??) +typing.Iterable(??) +typing.Iterator(??) +typing.KT(??) +typing.KeysView(??) +typing.List(??) +typing.Mapping(??) +typing.MappingView(??) +typing.Match(??) +typing.MutableMapping(??) +typing.MutableSequence(??) +typing.MutableSet(??) +typing.NamedTuple(??) +typing.Optional(??) +typing.OptionalMeta(??) +typing.Pattern(??) +typing.Reversible(??) +typing.Sequence(??) +typing.Set(??) +typing.Sized(??) +typing.SupportsAbs(??) +typing.SupportsBytes(??) +typing.SupportsComplex(??) +typing.SupportsFloat(??) +typing.SupportsInt(??) +typing.SupportsRound(??) +typing.T(??) +typing.T_co(??) +typing.T_contra(??) +typing.TextIO(??) +typing.Tuple(??) +typing.TupleMeta(??) +typing.TypeVar(??) +typing.TypingMeta(??) +typing.Union(??) +typing.UnionMeta(??) +typing.VT(??) +typing.VT_co(??) +typing.V_co(??) +typing.ValuesView(??) +typing.abc(??) +typing.abstractmethod(??) +typing.abstractproperty(??) +typing.cast(??) +typing.collections(??) +typing.collections_abc(??) +typing.functools(??) +typing.get_type_hints(??) +typing.io(??) +typing.no_type_check(??) +typing.no_type_check_decorator(??) +typing.overload(??) +typing.re(??) +typing.stdlib_re(??) +typing.sys(??) +typing.types(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.parse.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.parse.splitnport(??) +urllib.parse.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.parse.splitport('host:port') --> 'host', 'port'. +urllib.parse.splitquery('/path?query') --> '/path', 'query'. +urllib.parse.splittag('/path#tag') --> '/path', 'tag'. +urllib.parse.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.parse.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.parse.splitvalue('attr=value') --> 'attr', 'value'. +urllib.parse.sys(??) +urllib.parse.to_bytes(u"URL") --> 'URL'. +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap('') --> 'type://host/path'. +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPPasswordMgrWithPriorAuth(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.collections(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.request.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.request.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.request.splitport('host:port') --> 'host', 'port'. +urllib.request.splitquery('/path?query') --> '/path', 'query'. +urllib.request.splittag('/path#tag') --> '/path', 'tag'. +urllib.request.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.request.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.request.splitvalue('attr=value') --> 'attr', 'value'. +urllib.request.ssl(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.to_bytes(u"URL") --> 'URL'. +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap('') --> 'type://host/path'. +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.response.tempfile(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID(??) +uuid.bytes_(??) +uuid.ctypes(??) +uuid.getnode(??) +uuid.int_(??) +uuid.lib(??) +uuid.libname +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.audioop(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +wave.sys(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.collections(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.itertools(??) +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.raise_conversion_error(??) +xdrlib.struct(??) +xdrlib.wraps(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.warnings(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(??) +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate(??) +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.http(??) +xmlrpc.server.inspect(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(iter1 [,iter2 [...]]) --> zip object +zipapp.MAIN_TEMPLATE +zipapp.ZipAppError(??) +zipapp.contextlib(??) +zipapp.create_archive(??) +zipapp.get_interpreter(??) +zipapp.main(??) +zipapp.os(??) +zipapp.pathlib(??) +zipapp.shebang_encoding +zipapp.shutil(??) +zipapp.stat(??) +zipapp.sys(??) +zipapp.zipfile(??) +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.DEFAULT_VERSION +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.re(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.threading(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.ZipImportError(??) +zipimport.zipimporter(archivepath) -> zipimporter object diff --git a/third_party/qscintilla/qsci/api/python/Python-3.6.api b/third_party/qscintilla/qsci/api/python/Python-3.6.api new file mode 100644 index 0000000..b330c85 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.6.api @@ -0,0 +1,9359 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +ModuleNotFoundError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +RecursionError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopAsyncIteration(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.WeakSet(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abs(??) +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +aifc.warnings(??) +all(??) +any(??) +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +ascii(??) +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.AnnAssign(??) +ast.Assert(??) +ast.Assign(??) +ast.AsyncFor(??) +ast.AsyncFunctionDef(??) +ast.AsyncWith(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.Await(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Constant(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FormattedValue(??) +ast.FunctionDef(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.JoinedStr(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.MatMult(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NameConstant(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ONLY_AST +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.Try(??) +ast.Tuple(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.YieldFrom(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.unaryop(??) +ast.walk(??) +ast.withitem(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.BaseEventLoop(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.LifoQueue(??) +asyncio.LimitOverrunError(??) +asyncio.Lock(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.as_completed(??) +asyncio.async(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.compat(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.coroutine(??) +asyncio.base_events.coroutines(??) +asyncio.base_events.events(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.inspect(??) +asyncio.base_events.itertools(??) +asyncio.base_events.logger(??) +asyncio.base_events.logging(??) +asyncio.base_events.os(??) +asyncio.base_events.socket(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.threading(??) +asyncio.base_events.time(??) +asyncio.base_events.traceback(??) +asyncio.base_events.warnings(??) +asyncio.base_events.weakref(??) +asyncio.base_futures(??) +asyncio.base_futures.CancelledError(??) +asyncio.base_futures.Error(??) +asyncio.base_futures.InvalidStateError(??) +asyncio.base_futures.TimeoutError(??) +asyncio.base_futures.concurrent(??) +asyncio.base_futures.events(??) +asyncio.base_futures.isfuture(??) +asyncio.base_futures.reprlib(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.compat(??) +asyncio.base_subprocess.coroutine(??) +asyncio.base_subprocess.logger(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.transports(??) +asyncio.base_subprocess.warnings(??) +asyncio.base_tasks(??) +asyncio.base_tasks.base_futures(??) +asyncio.base_tasks.coroutines(??) +asyncio.base_tasks.linecache(??) +asyncio.base_tasks.traceback(??) +asyncio.compat(??) +asyncio.compat.PY34(??) +asyncio.compat.PY35(??) +asyncio.compat.PY352(??) +asyncio.compat.flatten_list_bytes(??) +asyncio.compat.sys(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.coroutine(??) +asyncio.coroutines(??) +asyncio.coroutines.CoroWrapper(??) +asyncio.coroutines.base_futures(??) +asyncio.coroutines.compat(??) +asyncio.coroutines.coroutine(??) +asyncio.coroutines.debug_wrapper(??) +asyncio.coroutines.events(??) +asyncio.coroutines.functools(??) +asyncio.coroutines.inspect(??) +asyncio.coroutines.iscoroutine(??) +asyncio.coroutines.iscoroutinefunction(??) +asyncio.coroutines.logger(??) +asyncio.coroutines.opcode(??) +asyncio.coroutines.os(??) +asyncio.coroutines.sys(??) +asyncio.coroutines.traceback(??) +asyncio.coroutines.types(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.ensure_future(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.TimerHandle(??) +asyncio.events.compat(??) +asyncio.events.functools(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.inspect(??) +asyncio.events.new_event_loop(??) +asyncio.events.reprlib(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.sys(??) +asyncio.events.threading(??) +asyncio.events.traceback(??) +asyncio.futures(??) +asyncio.futures.CancelledError(??) +asyncio.futures.Future(??) +asyncio.futures.InvalidStateError(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.TimeoutError(??) +asyncio.futures.base_futures(??) +asyncio.futures.compat(??) +asyncio.futures.concurrent(??) +asyncio.futures.events(??) +asyncio.futures.isfuture(??) +asyncio.futures.logging(??) +asyncio.futures.sys(??) +asyncio.futures.traceback(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.isfuture(??) +asyncio.locks(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.compat(??) +asyncio.locks.coroutine(??) +asyncio.locks.events(??) +asyncio.locks.futures(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.compat(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.sslproto(??) +asyncio.proactor_events.transports(??) +asyncio.proactor_events.warnings(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.compat(??) +asyncio.queues.coroutine(??) +asyncio.queues.events(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.run_coroutine_threadsafe(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.compat(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.coroutine(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.functools(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.sslproto(??) +asyncio.selector_events.transports(??) +asyncio.selector_events.warnings(??) +asyncio.selector_events.weakref(??) +asyncio.selectors(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.sslproto(??) +asyncio.sslproto.SSLProtocol(??) +asyncio.sslproto.base_events(??) +asyncio.sslproto.collections(??) +asyncio.sslproto.compat(??) +asyncio.sslproto.logger(??) +asyncio.sslproto.protocols(??) +asyncio.sslproto.ssl(??) +asyncio.sslproto.transports(??) +asyncio.sslproto.warnings(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.IncompleteReadError(??) +asyncio.streams.LimitOverrunError(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.compat(??) +asyncio.streams.coroutine(??) +asyncio.streams.coroutines(??) +asyncio.streams.events(??) +asyncio.streams.logger(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.coroutine(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.logger(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.sys(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.Task(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.async(??) +asyncio.tasks.base_tasks(??) +asyncio.tasks.compat(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.coroutine(??) +asyncio.tasks.coroutines(??) +asyncio.tasks.ensure_future(??) +asyncio.tasks.events(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.run_coroutine_threadsafe(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.warnings(??) +asyncio.tasks.weakref(??) +asyncio.test_utils.HTTPServer(??) +asyncio.test_utils.MockCallback(??) +asyncio.test_utils.MockPattern(??) +asyncio.test_utils.SSLWSGIServer(??) +asyncio.test_utils.SSLWSGIServerMixin(??) +asyncio.test_utils.SilentUnixWSGIServer(??) +asyncio.test_utils.SilentWSGIRequestHandler(??) +asyncio.test_utils.SilentWSGIServer(??) +asyncio.test_utils.TestCase(??) +asyncio.test_utils.TestLoop(??) +asyncio.test_utils.TestSelector(??) +asyncio.test_utils.UnixHTTPServer(??) +asyncio.test_utils.UnixSSLWSGIServer(??) +asyncio.test_utils.UnixWSGIServer(??) +asyncio.test_utils.WSGIRequestHandler(??) +asyncio.test_utils.WSGIServer(??) +asyncio.test_utils.base_events(??) +asyncio.test_utils.collections(??) +asyncio.test_utils.compat(??) +asyncio.test_utils.contextlib(??) +asyncio.test_utils.coroutine(??) +asyncio.test_utils.disable_logger(??) +asyncio.test_utils.dummy_ssl_context(??) +asyncio.test_utils.events(??) +asyncio.test_utils.force_legacy_ssl_support(??) +asyncio.test_utils.futures(??) +asyncio.test_utils.gen_unix_socket_path(??) +asyncio.test_utils.get_function_source(??) +asyncio.test_utils.io(??) +asyncio.test_utils.logger(??) +asyncio.test_utils.logging(??) +asyncio.test_utils.make_test_protocol(??) +asyncio.test_utils.mock(??) +asyncio.test_utils.mock_nonblocking_socket(??) +asyncio.test_utils.os(??) +asyncio.test_utils.re(??) +asyncio.test_utils.run_briefly(??) +asyncio.test_utils.run_once(??) +asyncio.test_utils.run_test_server(??) +asyncio.test_utils.run_test_unix_server(??) +asyncio.test_utils.run_until(??) +asyncio.test_utils.selectors(??) +asyncio.test_utils.socket(??) +asyncio.test_utils.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +asyncio.test_utils.socketserver(??) +asyncio.test_utils.ssl(??) +asyncio.test_utils.sys(??) +asyncio.test_utils.tasks(??) +asyncio.test_utils.tempfile(??) +asyncio.test_utils.threading(??) +asyncio.test_utils.time(??) +asyncio.test_utils.unittest(??) +asyncio.test_utils.unix_socket_path(??) +asyncio.test_utils.weakref(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.transports.compat(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.compat(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.coroutine(??) +asyncio.unix_events.coroutines(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.futures(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.selectors(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.unix_events.warnings(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_GENERATOR +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.ModuleNotFoundError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.RecursionError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopAsyncIteration(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(??) +builtins.all(??) +builtins.any(??) +builtins.ascii(??) +builtins.bin(??) +builtins.bool(x) -> bool +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(??) +builtins.chr(??) +builtins.classmethod(function) -> method +builtins.compile(??) +builtins.complex(real[, imag]) -> complex number +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(??) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(??) +builtins.enumerate(iterable[, start]) -> iterator for index, value of iterable +builtins.eval(??) +builtins.exec(??) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(x) -> floating point number +builtins.format(??) +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals(??) +builtins.hasattr(??) +builtins.hash(??) +builtins.help(??) +builtins.hex(??) +builtins.id(??) +builtins.input(??) +builtins.int(x=0) -> integer +builtins.isinstance(??) +builtins.issubclass(??) +builtins.iter(iterable) -> iterator +builtins.len(??) +builtins.license(??) +builtins.list() -> new empty list +builtins.locals(??) +builtins.map(func, *iterables) --> map object +builtins.max(iterable, *[, default=obj, key=func]) -> value +builtins.memoryview(??) +builtins.min(iterable, *[, default=obj, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(??) +builtins.open(??) +builtins.ord(??) +builtins.pow(??) +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(??) +builtins.reversed(sequence) -> reverse iterator over values of the sequence +builtins.round(number[, ndigits]) -> number +builtins.set() -> new empty set object +builtins.setattr(??) +builtins.slice(stop) +builtins.sorted(??) +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(??) +builtins.super() -> same as super(__class__, ) +builtins.tuple() -> empty tuple +builtins.type(object_or_name, bases, dict) +builtins.vars([object]) -> dictionary +builtins.zip(iter1 [,iter2 [...]]) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.RLock(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.os(??) +bz2.warnings(??) +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.repeat(object [,times]) -> create an iterator which returns the object +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(??) +cgi.BytesIO(??) +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.escape(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warn(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(??) +chunk.Chunk(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.argparse(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(??) +codecs.encode(??) +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(??) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.namereplace_errors(??) +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(??) +codecs.register_error(??) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unicode_internal_decode(??) +codecs.unicode_internal_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.AsyncGenerator(??) +collections.AsyncIterable(??) +collections.AsyncIterator(??) +collections.Awaitable(??) +collections.ByteString(??) +collections.Callable(??) +collections.ChainMap(??) +collections.Collection(??) +collections.Container(??) +collections.Coroutine(??) +collections.Counter(??) +collections.Generator(??) +collections.Hashable(??) +collections.ItemsView(??) +collections.Iterable(??) +collections.Iterator(??) +collections.KeysView(??) +collections.Mapping(??) +collections.MappingView(??) +collections.MutableMapping(??) +collections.MutableSequence(??) +collections.MutableSet(??) +collections.OrderedDict(??) +collections.Reversible(??) +collections.Sequence(??) +collections.Set(??) +collections.Sized(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.ValuesView(??) +collections.abc(??) +collections.abc.AsyncGenerator(??) +collections.abc.AsyncIterable(??) +collections.abc.AsyncIterator(??) +collections.abc.Awaitable(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Collection(??) +collections.abc.Container(??) +collections.abc.Coroutine(??) +collections.abc.Generator(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Reversible(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory[, ...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(??) +compileall.ProcessPoolExecutor(??) +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.partial(func, *args, **keywords) - new function with partial application +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(real[, imag]) -> complex number +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.Full(??) +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.SimpleQueue(??) +concurrent.futures.process.atexit(??) +concurrent.futures.process.itertools(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.partial(func, *args, **keywords) - new function with partial application +concurrent.futures.process.queue(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.traceback(??) +concurrent.futures.process.wait(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.atexit(??) +concurrent.futures.thread.os(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.ConverterMapping(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.AbstractContextManager(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.abc(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.redirect_stderr(??) +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +copy.Error(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.OrderedDict(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(iterable[, func]) --> accumulate object +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable, r) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(function or None, sequence) --> filterfalse object +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable[, keyfunc]) -> create an iterator which returns +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.shutil(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.newpad(??) +curses.newwin(??) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.update_lines_cols(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.wrapper(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(??) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.diff_bytes(??) +difflib.get_close_matches(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.Bytecode(??) +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.FORMAT_VALUE +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(??) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.argparse(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +dummy_threading.Barrier(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.BrokenBarrierError(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.TIMEOUT_MAX +dummy_threading.Thread(??) +dummy_threading.ThreadError(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.get_ident(??) +dummy_threading.local(??) +dummy_threading.main_thread(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.maintype +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.contentmanager.subtype +email.contentmanager.typ(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.StringIO(??) +email.feedparser.compat32(??) +email.feedparser.deque([iterable[, maxlen]]) --> deque object +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.re(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.NL +email.generator.NLCRE(??) +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.MappingProxyType(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO(??) +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.Policy(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.quopri(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio.BytesIO(??) +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base.MIMEBase(??) +email.mime.base.email(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text.Charset(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.policy.Compat32(??) +email.policy.EmailMessage(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.SMTPUTF8(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.linesep_splitter(??) +email.policy.raw_data_manager(??) +email.policy.re(??) +email.policy.strict(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.ecre(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +ensurepip.bootstrap(??) +ensurepip.os(??) +ensurepip.pkgutil(??) +ensurepip.sys(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.DynamicClassAttribute(??) +enum.Enum(??) +enum.EnumMeta(??) +enum.Flag(??) +enum.IntEnum(??) +enum.IntFlag(??) +enum.MappingProxyType(??) +enum.OrderedDict(??) +enum.auto(??) +enum.neg(a) -- Same as -a. +enum.reduce(function, sequence[, initial]) -> value +enum.sys(??) +enum.unique(??) +enum.xor(a, b) -- Same as a ^ b. +enumerate(iterable[, start]) -> iterator for index, value of iterable +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(??) +exec(??) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register a handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(function or None, sequence) --> filterfalse object +filecmp.os(??) +filecmp.stat(??) +fileinput.FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]]) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(x) -> floating point number +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(??) +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +formatter.warnings(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.MappingProxyType(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.WeakKeyDictionary(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.recursive_repr(??) +functools.reduce(function, sequence[, initial]) -> value +functools.singledispatch(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect([generation]) -> n +gc.disable() -> None +gc.enable() -> None +gc.garbage(??) +gc.get_count() -> (count0, count1, count2) +gc.get_debug() -> flags +gc.get_objects() -> [...] +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats() -> [...] +gc.get_threshold() -> (threshold0, threshold1, threshold2) +gc.is_tracked(obj) -> bool +gc.isenabled() -> status +gc.set_debug(flags) -> None +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.ENOENT +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.copy(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.io(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.os(??) +gettext.re(??) +gettext.struct(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +globals(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(??) +hash(??) +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.blake2b(??) +hashlib.blake2s(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None) -> key +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha3_224(??) +hashlib.sha3_256([string]) -> SHA3 object +hashlib.sha3_384([string]) -> SHA3 object +hashlib.sha3_512([string]) -> SHA3 object +hashlib.sha512(??) +hashlib.shake_128([string]) -> SHAKE object +hashlib.shake_256([string]) -> SHAKE object +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +heapq.heappushpop(heap, item) -> value. Push item on the heap, then pop and return the smallest item +heapq.heapreplace(heap, item) -> value. Pop and return the current smallest value, and add the new item. +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +help(??) +hex(??) +hmac.HMAC(??) +hmac.compare_digest(a, b) -> bool +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser.HTMLParser(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.parser.warnings(??) +html.unescape(??) +http.HTTPStatus(??) +http.IntEnum(??) +http.client(??) +http.client.ACCEPTED(??) +http.client.ALREADY_REPORTED(??) +http.client.BAD_GATEWAY(??) +http.client.BAD_REQUEST(??) +http.client.BadStatusLine(??) +http.client.CONFLICT(??) +http.client.CONTINUE(??) +http.client.CREATED(??) +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED(??) +http.client.FAILED_DEPENDENCY(??) +http.client.FORBIDDEN(??) +http.client.FOUND(??) +http.client.GATEWAY_TIMEOUT(??) +http.client.GONE(??) +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED(??) +http.client.IM_USED(??) +http.client.INSUFFICIENT_STORAGE(??) +http.client.INTERNAL_SERVER_ERROR(??) +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED(??) +http.client.LOCKED(??) +http.client.LOOP_DETECTED(??) +http.client.LineTooLong(??) +http.client.MAXAMOUNT +http.client.METHOD_NOT_ALLOWED(??) +http.client.MOVED_PERMANENTLY(??) +http.client.MULTIPLE_CHOICES(??) +http.client.MULTI_STATUS(??) +http.client.NETWORK_AUTHENTICATION_REQUIRED(??) +http.client.NON_AUTHORITATIVE_INFORMATION(??) +http.client.NOT_ACCEPTABLE(??) +http.client.NOT_EXTENDED(??) +http.client.NOT_FOUND(??) +http.client.NOT_IMPLEMENTED(??) +http.client.NOT_MODIFIED(??) +http.client.NO_CONTENT(??) +http.client.NotConnected(??) +http.client.OK(??) +http.client.PARTIAL_CONTENT(??) +http.client.PAYMENT_REQUIRED(??) +http.client.PERMANENT_REDIRECT(??) +http.client.PRECONDITION_FAILED(??) +http.client.PRECONDITION_REQUIRED(??) +http.client.PROCESSING(??) +http.client.PROXY_AUTHENTICATION_REQUIRED(??) +http.client.REQUESTED_RANGE_NOT_SATISFIABLE(??) +http.client.REQUEST_ENTITY_TOO_LARGE(??) +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE(??) +http.client.REQUEST_TIMEOUT(??) +http.client.REQUEST_URI_TOO_LONG(??) +http.client.RESET_CONTENT(??) +http.client.RemoteDisconnected(??) +http.client.ResponseNotReady(??) +http.client.SEE_OTHER(??) +http.client.SERVICE_UNAVAILABLE(??) +http.client.SWITCHING_PROTOCOLS(??) +http.client.TEMPORARY_REDIRECT(??) +http.client.TOO_MANY_REQUESTS(??) +http.client.UNAUTHORIZED(??) +http.client.UNPROCESSABLE_ENTITY(??) +http.client.UNSUPPORTED_MEDIA_TYPE(??) +http.client.UPGRADE_REQUIRED(??) +http.client.USE_PROXY(??) +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.VARIANT_ALSO_NEGOTIATES(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.http(??) +http.client.io(??) +http.client.os(??) +http.client.parse_headers(??) +http.client.re(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.HTTPStatus(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.argparse(??) +http.server.copy(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(??) +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.PathLike(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exr(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_webp(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.create_dynamic(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.ResourceLoader(??) +importlib.abc.SourceLoader(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.reload(??) +importlib.sys(??) +importlib.types(??) +importlib.util(??) +importlib.util.LazyLoader(??) +importlib.util.MAGIC_NUMBER +importlib.util.abc(??) +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.module_from_spec(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.types(??) +importlib.util.warnings(??) +importlib.warnings(??) +input(??) +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CORO_CLOSED +inspect.CORO_CREATED +inspect.CORO_RUNNING +inspect.CORO_SUSPENDED +inspect.CO_ASYNC_GENERATOR +inspect.CO_COROUTINE +inspect.CO_GENERATOR +inspect.CO_ITERABLE_COROUTINE +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FrameInfo(frame, filename, lineno, function, code_context, index) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.ast(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.collections(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.enum(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getcoroutinelocals(??) +inspect.getcoroutinestate(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isasyncgen(??) +inspect.isasyncgenfunction(??) +inspect.isawaitable(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.iscoroutine(??) +inspect.iscoroutinefunction(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int(x=0) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO(??) +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(??) +issubclass(??) +iter(iterable) -> iterator +itertools.accumulate(iterable[, func]) --> accumulate object +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable, r) --> combinations object +itertools.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.filterfalse(function or None, sequence) --> filterfalse object +itertools.groupby(iterable[, keyfunc]) -> create an iterator which returns +itertools.islice(iterable, stop) --> islice object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecodeError(??) +json.JSONDecoder(??) +json.JSONEncoder(??) +json.codecs(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS(??) +json.decoder.JSONArray(??) +json.decoder.JSONDecodeError(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.detect_encoding(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(string) -> string +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring(??) +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool.argparse(??) +json.tool.collections(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +keyword.main(??) +len(??) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.functools(??) +linecache.getline(??) +linecache.getlines(??) +linecache.lazycache(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list() -> new empty list +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.collections(??) +locale.currency(??) +locale.delocalize(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.k +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.v +locale.windows_locale(??) +locals(??) +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.collections(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingMixin(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.errno(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.thread(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +lzma.os(??) +macpath.FILE_ATTRIBUTE_ARCHIVE +macpath.FILE_ATTRIBUTE_COMPRESSED +macpath.FILE_ATTRIBUTE_DEVICE +macpath.FILE_ATTRIBUTE_DIRECTORY +macpath.FILE_ATTRIBUTE_ENCRYPTED +macpath.FILE_ATTRIBUTE_HIDDEN +macpath.FILE_ATTRIBUTE_INTEGRITY_STREAM +macpath.FILE_ATTRIBUTE_NORMAL +macpath.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +macpath.FILE_ATTRIBUTE_NO_SCRUB_DATA +macpath.FILE_ATTRIBUTE_OFFLINE +macpath.FILE_ATTRIBUTE_READONLY +macpath.FILE_ATTRIBUTE_REPARSE_POINT +macpath.FILE_ATTRIBUTE_SPARSE_FILE +macpath.FILE_ATTRIBUTE_SYSTEM +macpath.FILE_ATTRIBUTE_TEMPORARY +macpath.FILE_ATTRIBUTE_VIRTUAL +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFDOOR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFPORT +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IFWHT +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(mode) -> bool +macpath.S_ISCHR(mode) -> bool +macpath.S_ISDIR(mode) -> bool +macpath.S_ISDOOR(mode) -> bool +macpath.S_ISFIFO(mode) -> bool +macpath.S_ISGID +macpath.S_ISLNK(mode) -> bool +macpath.S_ISPORT(mode) -> bool +macpath.S_ISREG(mode) -> bool +macpath.S_ISSOCK(mode) -> bool +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_ISWHT(mode) -> bool +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_COMPRESSED +macpath.UF_HIDDEN +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep(??) +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.filemode(??) +macpath.genericpath(??) +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os(??) +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.samefile(??) +macpath.sameopenfile(??) +macpath.samestat(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames(??) +macurl2path.os(??) +macurl2path.pathname2url(??) +macurl2path.url2pathname(??) +macurl2path.urllib(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.lineno_sort_key(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +mailcap.warnings(??) +map(func, *iterables) --> map object +marshal.dump(value, file[, version]) +marshal.dumps(value[, version]) +marshal.load(file) +marshal.loads(bytes) +marshal.version +max(iterable, *[, default=obj, key=func]) -> value +memoryview(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable, *[, default=obj, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.EXTENDED_ARG +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.imp(??) +modulefinder.importlib(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.struct(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +modulefinder.warnings(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.reduction(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list() -> new empty list +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.UNSIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_unsigned(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.semaphore_tracker(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.write_unsigned(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BasePoolProxy(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.get_spawning_popen(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.util(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.sys(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.set_spawning_popen(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.set_spawning_popen(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reducer(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ABCMeta(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.AbstractReducer(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.abstractmethod(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.semaphore_tracker.SemaphoreTracker(??) +multiprocessing.semaphore_tracker.ensure_running(??) +multiprocessing.semaphore_tracker.getfd(??) +multiprocessing.semaphore_tracker.main(??) +multiprocessing.semaphore_tracker.os(??) +multiprocessing.semaphore_tracker.register(??) +multiprocessing.semaphore_tracker.signal(??) +multiprocessing.semaphore_tracker.spawn(??) +multiprocessing.semaphore_tracker.sys(??) +multiprocessing.semaphore_tracker.threading(??) +multiprocessing.semaphore_tracker.unregister(??) +multiprocessing.semaphore_tracker.util(??) +multiprocessing.semaphore_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.reduction(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.reduction(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(??) +open(??) +operator.abs(a) -- Same as abs(a). +operator.add(a, b) -- Same as a + b. +operator.and_(a, b) -- Same as a & b. +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(a, b) -- Same as a + b, for a and b sequences. +operator.contains(a, b) -- Same as b in a (note reversed operands). +operator.countOf(a, b) -- Return the number of times b occurs in a. +operator.delitem(a, b) -- Same as del a[b]. +operator.eq(a, b) -- Same as a==b. +operator.floordiv(a, b) -- Same as a // b. +operator.ge(a, b) -- Same as a>=b. +operator.getitem(a, b) -- Same as a[b]. +operator.gt(a, b) -- Same as a>b. +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imatmul(??) +operator.imod(??) +operator.imul(??) +operator.index(a) -- Same as a.__index__() +operator.indexOf(a, b) -- Return the first index of b in a. +operator.inv(a) -- Same as ~a. +operator.invert(a) -- Same as ~a. +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(a, b) -- Same as a is b. +operator.is_not(a, b) -- Same as a is not b. +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(a, b) -- Same as a<=b. +operator.length_hint(obj, default=0) -> int +operator.lshift(a, b) -- Same as a << b. +operator.lt(a, b) -- Same as a methodcaller object +operator.mod(a, b) -- Same as a % b. +operator.mul(a, b) -- Same as a * b. +operator.ne(a, b) -- Same as a!=b. +operator.neg(a) -- Same as -a. +operator.not_(a) -- Same as not a. +operator.or_(a, b) -- Same as a | b. +operator.pos(a) -- Same as +a. +operator.pow(a, b) -- Same as a ** b. +operator.rshift(a, b) -- Same as a >> b. +operator.setitem(a, b, c) -- Same as a[b] = c. +operator.sub(a, b) -- Same as a - b. +operator.truediv(a, b) -- Same as a / b. +operator.truth(a) -- Return True if a is true, False otherwise. +operator.xor(a, b) -- Same as a ^ b. +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(??) +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_TRAPPED +os.DirEntry(??) +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_EXLOCK +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.PathLike(??) +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(??) +os.WEXITED +os.WEXITSTATUS(??) +os.WIFCONTINUED(??) +os.WIFEXITED(??) +os.WIFSIGNALED(??) +os.WIFSTOPPED(??) +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(??) +os.WTERMSIG(??) +os.WUNTRACED +os.W_OK +os.X_OK +os.abc(??) +os.abort(??) +os.access(??) +os.altsep(??) +os.chdir(??) +os.chflags(??) +os.chmod(??) +os.chown(??) +os.chroot(??) +os.close(??) +os.closerange(??) +os.confstr(??) +os.confstr_names(??) +os.cpu_count(??) +os.ctermid(??) +os.curdir +os.defpath +os.device_encoding(??) +os.devnull +os.dup(??) +os.dup2(??) +os.environ(??) +os.environb(??) +os.errno(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(??) +os.execve(??) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(??) +os.fchmod(??) +os.fchown(??) +os.fdopen(??) +os.fork(??) +os.forkpty(??) +os.fpathconf(??) +os.fsdecode(??) +os.fsencode(??) +os.fspath(??) +os.fstat(??) +os.fstatvfs(??) +os.fsync(??) +os.ftruncate(??) +os.get_blocking(fd) -> bool +os.get_exec_path(??) +os.get_inheritable(??) +os.get_terminal_size(??) +os.getcwd(??) +os.getcwdb(??) +os.getegid(??) +os.getenv(??) +os.getenvb(??) +os.geteuid(??) +os.getgid(??) +os.getgrouplist(user, group) -> list of groups to which a user belongs +os.getgroups(??) +os.getloadavg(??) +os.getlogin(??) +os.getpgid(??) +os.getpgrp(??) +os.getpid(??) +os.getppid(??) +os.getpriority(??) +os.getsid(??) +os.getuid(??) +os.initgroups(username, gid) -> None +os.isatty(??) +os.kill(??) +os.killpg(??) +os.lchflags(??) +os.lchmod(??) +os.lchown(??) +os.linesep +os.link(??) +os.listdir(??) +os.lockf(??) +os.lseek(??) +os.lstat(??) +os.major(??) +os.makedev(??) +os.makedirs(name [, mode=0o777][, exist_ok=False]) +os.minor(??) +os.mkdir(??) +os.mkfifo(??) +os.mknod(??) +os.name +os.nice(??) +os.open(??) +os.openpty(??) +os.pardir +os.path(??) +os.pathconf(??) +os.pathconf_names(??) +os.pathsep +os.pipe(??) +os.popen(??) +os.pread(??) +os.putenv(??) +os.pwrite(??) +os.read(??) +os.readlink(path, *, dir_fd=None) -> path +os.readv(??) +os.remove(??) +os.removedirs(name) +os.rename(??) +os.renames(old, new) +os.replace(??) +os.rmdir(??) +os.scandir(path='.') -> iterator of DirEntry objects for given path +os.sched_get_priority_max(??) +os.sched_get_priority_min(??) +os.sched_yield(??) +os.sendfile(out, in, offset, count) -> byteswritten +os.sep +os.set_blocking(fd, blocking) +os.set_inheritable(??) +os.setegid(??) +os.seteuid(??) +os.setgid(??) +os.setgroups(??) +os.setpgid(??) +os.setpgrp(??) +os.setpriority(??) +os.setregid(??) +os.setreuid(??) +os.setsid(??) +os.setuid(??) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_float_times([newval]) -> oldval +os.stat_result(??) +os.statvfs(??) +os.statvfs_result(??) +os.strerror(??) +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(??) +os.sync(??) +os.sys(??) +os.sysconf(??) +os.sysconf_names(??) +os.system(??) +os.tcgetpgrp(??) +os.tcsetpgrp(??) +os.terminal_size(??) +os.times(??) +os.times_result(??) +os.truncate(??) +os.ttyname(??) +os.umask(??) +os.uname(??) +os.uname_result(??) +os.unlink(??) +os.unsetenv(??) +os.urandom(??) +os.utime(??) +os.wait(??) +os.wait3(??) +os.wait4(??) +os.waitpid(??) +os.walk(??) +os.write(??) +os.writev(??) +pathlib.EINVAL +pathlib.ENOENT +pathlib.ENOTDIR +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.contextmanager(??) +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.nt(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.supports_symlinks(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(fmt, v1, v2, ...) -> bytes +pickle.partial(func, *args, **keywords) - new function with partial application +pickle.re(??) +pickle.sys(??) +pickle.unpack(fmt, buffer) -> (v1, v2, ...) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleInfo(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.namedtuple(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.DEV_NULL +platform.architecture(??) +platform.collections(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.subprocess(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(system, node, release, version, machine, processor) +platform.version(??) +platform.warnings(??) +platform.win32_ver(??) +plistlib.BytesIO(??) +plistlib.Data(??) +plistlib.Dict(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate(??) +plistlib.Plist(??) +plistlib.PlistFormat(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.contextlib(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.struct(??) +plistlib.warn(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_TRAPPED +posix.DirEntry(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_EXLOCK +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(??) +posix.WEXITED +posix.WEXITSTATUS(??) +posix.WIFCONTINUED(??) +posix.WIFEXITED(??) +posix.WIFSIGNALED(??) +posix.WIFSTOPPED(??) +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(??) +posix.WTERMSIG(??) +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort(??) +posix.access(??) +posix.chdir(??) +posix.chflags(??) +posix.chmod(??) +posix.chown(??) +posix.chroot(??) +posix.close(??) +posix.closerange(??) +posix.confstr(??) +posix.confstr_names(??) +posix.cpu_count(??) +posix.ctermid(??) +posix.device_encoding(??) +posix.dup(??) +posix.dup2(??) +posix.environ(??) +posix.error(??) +posix.execv(??) +posix.execve(??) +posix.fchdir(??) +posix.fchmod(??) +posix.fchown(??) +posix.fork(??) +posix.forkpty(??) +posix.fpathconf(??) +posix.fspath(??) +posix.fstat(??) +posix.fstatvfs(??) +posix.fsync(??) +posix.ftruncate(??) +posix.get_blocking(fd) -> bool +posix.get_inheritable(??) +posix.get_terminal_size(??) +posix.getcwd(??) +posix.getcwdb(??) +posix.getegid(??) +posix.geteuid(??) +posix.getgid(??) +posix.getgrouplist(user, group) -> list of groups to which a user belongs +posix.getgroups(??) +posix.getloadavg(??) +posix.getlogin(??) +posix.getpgid(??) +posix.getpgrp(??) +posix.getpid(??) +posix.getppid(??) +posix.getpriority(??) +posix.getsid(??) +posix.getuid(??) +posix.initgroups(username, gid) -> None +posix.isatty(??) +posix.kill(??) +posix.killpg(??) +posix.lchflags(??) +posix.lchmod(??) +posix.lchown(??) +posix.link(??) +posix.listdir(??) +posix.lockf(??) +posix.lseek(??) +posix.lstat(??) +posix.major(??) +posix.makedev(??) +posix.minor(??) +posix.mkdir(??) +posix.mkfifo(??) +posix.mknod(??) +posix.nice(??) +posix.open(??) +posix.openpty(??) +posix.pathconf(??) +posix.pathconf_names(??) +posix.pipe(??) +posix.pread(??) +posix.putenv(??) +posix.pwrite(??) +posix.read(??) +posix.readlink(path, *, dir_fd=None) -> path +posix.readv(??) +posix.remove(??) +posix.rename(??) +posix.replace(??) +posix.rmdir(??) +posix.scandir(path='.') -> iterator of DirEntry objects for given path +posix.sched_get_priority_max(??) +posix.sched_get_priority_min(??) +posix.sched_yield(??) +posix.sendfile(out, in, offset, count) -> byteswritten +posix.set_blocking(fd, blocking) +posix.set_inheritable(??) +posix.setegid(??) +posix.seteuid(??) +posix.setgid(??) +posix.setgroups(??) +posix.setpgid(??) +posix.setpgrp(??) +posix.setpriority(??) +posix.setregid(??) +posix.setreuid(??) +posix.setsid(??) +posix.setuid(??) +posix.stat(??) +posix.stat_float_times([newval]) -> oldval +posix.stat_result(??) +posix.statvfs(??) +posix.statvfs_result(??) +posix.strerror(??) +posix.symlink(??) +posix.sync(??) +posix.sysconf(??) +posix.sysconf_names(??) +posix.system(??) +posix.tcgetpgrp(??) +posix.tcsetpgrp(??) +posix.terminal_size(??) +posix.times(??) +posix.times_result(??) +posix.truncate(??) +posix.ttyname(??) +posix.umask(??) +posix.uname(??) +posix.uname_result(??) +posix.unlink(??) +posix.unsetenv(??) +posix.urandom(??) +posix.utime(??) +posix.wait(??) +posix.wait3(??) +posix.wait4(??) +posix.waitpid(??) +posix.write(??) +posix.writev(??) +pow(??) +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.OptionParser(??) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.os(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(fget=None, fset=None, fdel=None, doc=None) -> property attribute +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall(??) +pwd.getpwnam(??) +pwd.getpwuid(??) +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.compile(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.importlib(??) +pyclbr.io(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.sort_attributes(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.urllib(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +queue.threading(??) +queue.time(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.choices(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A(??) +re.ASCII(??) +re.DEBUG(??) +re.DOTALL(??) +re.I(??) +re.IGNORECASE(??) +re.L(??) +re.LOCALE(??) +re.M(??) +re.MULTILINE(??) +re.RegexFlag(??) +re.S(??) +re.Scanner(??) +re.T(??) +re.TEMPLATE(??) +re.U(??) +re.UNICODE(??) +re.VERBOSE(??) +re.X(??) +re.compile(??) +re.copyreg(??) +re.enum(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.template(??) +repr(??) +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(sequence) -> reverse iterator over values of the sequence +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(number[, ndigits]) -> number +runpy.get_importer(??) +runpy.importlib(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +runpy.types(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +secrets.DEFAULT_ENTROPY +secrets.SystemRandom(??) +secrets.base64(??) +secrets.binascii(??) +secrets.choice(??) +secrets.compare_digest(a, b) -> bool +secrets.os(??) +secrets.randbelow(??) +secrets.randbits(??) +secrets.token_bytes(??) +secrets.token_hex(??) +secrets.token_urlsafe(??) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(??) +shelve.BsdDbShelf(??) +shelve.BytesIO(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(??) +shutil.getpwnam(??) +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.os(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.tarfile(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.Handlers(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT(??) +signal.SIGALRM(??) +signal.SIGBUS(??) +signal.SIGCHLD(??) +signal.SIGCONT(??) +signal.SIGEMT(??) +signal.SIGFPE(??) +signal.SIGHUP(??) +signal.SIGILL(??) +signal.SIGINFO(??) +signal.SIGINT(??) +signal.SIGIO(??) +signal.SIGIOT(??) +signal.SIGKILL(??) +signal.SIGPIPE(??) +signal.SIGPROF(??) +signal.SIGQUIT(??) +signal.SIGSEGV(??) +signal.SIGSTOP(??) +signal.SIGSYS(??) +signal.SIGTERM(??) +signal.SIGTRAP(??) +signal.SIGTSTP(??) +signal.SIGTTIN(??) +signal.SIGTTOU(??) +signal.SIGURG(??) +signal.SIGUSR1(??) +signal.SIGUSR2(??) +signal.SIGVTALRM(??) +signal.SIGWINCH(??) +signal.SIGXCPU(??) +signal.SIGXFSZ(??) +signal.SIG_BLOCK(??) +signal.SIG_DFL(??) +signal.SIG_IGN(??) +signal.SIG_SETMASK(??) +signal.SIG_UNBLOCK(??) +signal.Sigmasks(??) +signal.Signals(??) +signal.alarm(??) +signal.default_int_handler(...) +signal.getitimer(??) +signal.getsignal(??) +signal.pause(??) +signal.pthread_kill(??) +signal.pthread_sigmask(??) +signal.set_wakeup_fd(fd) -> fd +signal.setitimer(??) +signal.siginterrupt(??) +signal.signal(??) +signal.sigpending(??) +signal.sigwait(??) +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPNotSupportedError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.datetime(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.sys(??) +sndhdr.SndHeaders(filetype, framerate, nchannels, nframes, sampwidth) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.namedtuple(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG(??) +socket.AI_ALL(??) +socket.AI_CANONNAME(??) +socket.AI_DEFAULT(??) +socket.AI_MASK(??) +socket.AI_NUMERICHOST(??) +socket.AI_NUMERICSERV(??) +socket.AI_PASSIVE(??) +socket.AI_V4MAPPED(??) +socket.AI_V4MAPPED_CFG(??) +socket.AddressFamily(??) +socket.AddressInfo(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PKTINFO +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.IntFlag(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC(??) +socket.MSG_DONTROUTE(??) +socket.MSG_DONTWAIT(??) +socket.MSG_EOF(??) +socket.MSG_EOR(??) +socket.MSG_OOB(??) +socket.MSG_PEEK(??) +socket.MSG_TRUNC(??) +socket.MSG_WAITALL(??) +socket.MsgFlag(??) +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketKind(??) +socket.SocketType(??) +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.create_connection(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.selectors(??) +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.BufferedIOBase(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.errno(??) +socketserver.os(??) +socketserver.selectors(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +socketserver.time(??) +sorted(??) +sqlite3.Binary(??) +sqlite3.Cache(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement(??) +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.collections(??) +sqlite3.complete_statement(sql) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Cache(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement(??) +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.collections(??) +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.AF_INET(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE(??) +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE(??) +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY(??) +ssl.ALERT_DESCRIPTION_DECODE_ERROR(??) +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE(??) +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR(??) +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE(??) +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER(??) +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY(??) +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR(??) +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION(??) +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION(??) +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW(??) +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_CA(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY(??) +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION(??) +ssl.ALERT_DESCRIPTION_USER_CANCELLED(??) +ssl.AlertDescription(??) +ssl.CERT_NONE(??) +ssl.CERT_OPTIONAL(??) +ssl.CERT_REQUIRED(??) +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ALPN(??) +ssl.HAS_ECDH(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.MemoryBIO(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL(??) +ssl.OP_CIPHER_SERVER_PREFERENCE(??) +ssl.OP_NO_COMPRESSION(??) +ssl.OP_NO_SSLv2(??) +ssl.OP_NO_SSLv3(??) +ssl.OP_NO_TICKET(??) +ssl.OP_NO_TLSv1(??) +ssl.OP_NO_TLSv1_1(??) +ssl.OP_NO_TLSv1_2(??) +ssl.OP_SINGLE_DH_USE(??) +ssl.OP_SINGLE_ECDH_USE(??) +ssl.Options(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv23(??) +ssl.PROTOCOL_TLS(??) +ssl.PROTOCOL_TLS_CLIENT(??) +ssl.PROTOCOL_TLS_SERVER(??) +ssl.PROTOCOL_TLSv1(??) +ssl.PROTOCOL_TLSv1_1(??) +ssl.PROTOCOL_TLSv1_2(??) +ssl.Purpose(??) +ssl.RAND_add(??) +ssl.RAND_bytes(??) +ssl.RAND_egd(??) +ssl.RAND_pseudo_bytes(??) +ssl.RAND_status(??) +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLErrorNumber(??) +ssl.SSLObject(??) +ssl.SSLSession(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF(??) +ssl.SSL_ERROR_INVALID_ERROR_CODE(??) +ssl.SSL_ERROR_SSL(??) +ssl.SSL_ERROR_SYSCALL(??) +ssl.SSL_ERROR_WANT_CONNECT(??) +ssl.SSL_ERROR_WANT_READ(??) +ssl.SSL_ERROR_WANT_WRITE(??) +ssl.SSL_ERROR_WANT_X509_LOOKUP(??) +ssl.SSL_ERROR_ZERO_RETURN(??) +ssl.VERIFY_CRL_CHECK_CHAIN(??) +ssl.VERIFY_CRL_CHECK_LEAF(??) +ssl.VERIFY_DEFAULT(??) +ssl.VERIFY_X509_STRICT(??) +ssl.VERIFY_X509_TRUSTED_FIRST(??) +ssl.VerifyFlags(??) +ssl.VerifyMode(??) +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.ipaddress(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.re(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.textwrap(??) +ssl.warnings(??) +ssl.wrap_socket(??) +stat.FILE_ATTRIBUTE_ARCHIVE +stat.FILE_ATTRIBUTE_COMPRESSED +stat.FILE_ATTRIBUTE_DEVICE +stat.FILE_ATTRIBUTE_DIRECTORY +stat.FILE_ATTRIBUTE_ENCRYPTED +stat.FILE_ATTRIBUTE_HIDDEN +stat.FILE_ATTRIBUTE_INTEGRITY_STREAM +stat.FILE_ATTRIBUTE_NORMAL +stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +stat.FILE_ATTRIBUTE_NO_SCRUB_DATA +stat.FILE_ATTRIBUTE_OFFLINE +stat.FILE_ATTRIBUTE_READONLY +stat.FILE_ATTRIBUTE_REPARSE_POINT +stat.FILE_ATTRIBUTE_SPARSE_FILE +stat.FILE_ATTRIBUTE_SYSTEM +stat.FILE_ATTRIBUTE_TEMPORARY +stat.FILE_ATTRIBUTE_VIRTUAL +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Decimal(??) +statistics.Fraction(??) +statistics.StatisticsError(??) +statistics.bisect_left(a, x[, lo[, hi]]) -> index +statistics.bisect_right(a, x[, lo[, hi]]) -> index +statistics.chain(*iterables) --> chain object +statistics.collections(??) +statistics.decimal(??) +statistics.groupby(iterable[, keyfunc]) -> create an iterator which returns +statistics.harmonic_mean(??) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.numbers(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.stdev(??) +statistics.variance(??) +str(object='') -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(fmt) -> integer +struct.error(??) +struct.iter_unpack(fmt, buffer) -> iterator(v1, v2, ...) +struct.pack(fmt, v1, v2, ...) -> bytes +struct.pack_into(fmt, buffer, offset, v1, v2, ...) +struct.unpack(fmt, buffer) -> (v1, v2, ...) +struct.unpack_from(fmt, buffer, offset=0) -> (v1, v2, ...) +subprocess.CalledProcessError(??) +subprocess.CompletedProcess(??) +subprocess.DEVNULL +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.os(??) +subprocess.run(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.threading(??) +subprocess.time(??) +subprocess.warnings(??) +sum(??) +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +sunau.openfp(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.annassign +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.async_funcdef +symbol.async_stmt +symbol.atom +symbol.atom_expr +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_arg +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_ANNOT +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.api_version +sys.argv(??) +sys.base_exec_prefix +sys.base_prefix +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode(??) +sys.exc_info() -> (type, value, traceback) +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.get_asyncgen_hooks() +sys.get_coroutine_wrapper() +sys.getallocatedblocks() -> integer +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencodeerrors() -> string +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.getswitchinterval() -> current thread switch interval; see setswitchinterval(). +sys.gettrace() +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(string) -> string +sys.is_finalizing() +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.set_asyncgen_hooks(*, firstiter=None, finalizer=None) +sys.set_coroutine_wrapper(wrapper) +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.setswitchinterval(n) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.thread_info(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.getopt(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.filemode(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempdirb(??) +tempfile.gettempprefix(??) +tempfile.gettempprefixb(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.get_ident() -> integer +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.perf_counter() -> float +time.process_time() -> float +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.EventType(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog.ACTIVE +tkinter.commondialog.ALL +tkinter.commondialog.ANCHOR +tkinter.commondialog.ARC +tkinter.commondialog.BASELINE +tkinter.commondialog.BEVEL +tkinter.commondialog.BOTH +tkinter.commondialog.BOTTOM +tkinter.commondialog.BROWSE +tkinter.commondialog.BUTT +tkinter.commondialog.BaseWidget(??) +tkinter.commondialog.BitmapImage(??) +tkinter.commondialog.BooleanVar(??) +tkinter.commondialog.Button(??) +tkinter.commondialog.CASCADE +tkinter.commondialog.CENTER +tkinter.commondialog.CHAR +tkinter.commondialog.CHECKBUTTON +tkinter.commondialog.CHORD +tkinter.commondialog.COMMAND +tkinter.commondialog.CURRENT +tkinter.commondialog.CallWrapper(??) +tkinter.commondialog.Canvas(??) +tkinter.commondialog.Checkbutton(??) +tkinter.commondialog.DISABLED +tkinter.commondialog.DOTBOX +tkinter.commondialog.Dialog(??) +tkinter.commondialog.DoubleVar(??) +tkinter.commondialog.E +tkinter.commondialog.END +tkinter.commondialog.EW +tkinter.commondialog.EXCEPTION +tkinter.commondialog.EXTENDED +tkinter.commondialog.Entry(??) +tkinter.commondialog.Event(??) +tkinter.commondialog.EventType(??) +tkinter.commondialog.FALSE +tkinter.commondialog.FIRST +tkinter.commondialog.FLAT +tkinter.commondialog.Frame(??) +tkinter.commondialog.GROOVE +tkinter.commondialog.Grid(??) +tkinter.commondialog.HIDDEN +tkinter.commondialog.HORIZONTAL +tkinter.commondialog.INSERT +tkinter.commondialog.INSIDE +tkinter.commondialog.Image(??) +tkinter.commondialog.IntVar(??) +tkinter.commondialog.LAST +tkinter.commondialog.LEFT +tkinter.commondialog.Label(??) +tkinter.commondialog.LabelFrame(??) +tkinter.commondialog.Listbox(??) +tkinter.commondialog.MITER +tkinter.commondialog.MOVETO +tkinter.commondialog.MULTIPLE +tkinter.commondialog.Menu(??) +tkinter.commondialog.Menubutton(??) +tkinter.commondialog.Message(??) +tkinter.commondialog.Misc(??) +tkinter.commondialog.N +tkinter.commondialog.NE +tkinter.commondialog.NO +tkinter.commondialog.NONE +tkinter.commondialog.NORMAL +tkinter.commondialog.NS +tkinter.commondialog.NSEW +tkinter.commondialog.NUMERIC +tkinter.commondialog.NW +tkinter.commondialog.NoDefaultRoot(??) +tkinter.commondialog.OFF +tkinter.commondialog.ON +tkinter.commondialog.OUTSIDE +tkinter.commondialog.OptionMenu(??) +tkinter.commondialog.PAGES +tkinter.commondialog.PIESLICE +tkinter.commondialog.PROJECTING +tkinter.commondialog.Pack(??) +tkinter.commondialog.PanedWindow(??) +tkinter.commondialog.PhotoImage(??) +tkinter.commondialog.Place(??) +tkinter.commondialog.RADIOBUTTON +tkinter.commondialog.RAISED +tkinter.commondialog.READABLE +tkinter.commondialog.RIDGE +tkinter.commondialog.RIGHT +tkinter.commondialog.ROUND +tkinter.commondialog.Radiobutton(??) +tkinter.commondialog.S +tkinter.commondialog.SCROLL +tkinter.commondialog.SE +tkinter.commondialog.SEL +tkinter.commondialog.SEL_FIRST +tkinter.commondialog.SEL_LAST +tkinter.commondialog.SEPARATOR +tkinter.commondialog.SINGLE +tkinter.commondialog.SOLID +tkinter.commondialog.SUNKEN +tkinter.commondialog.SW +tkinter.commondialog.Scale(??) +tkinter.commondialog.Scrollbar(??) +tkinter.commondialog.Spinbox(??) +tkinter.commondialog.StringVar(??) +tkinter.commondialog.TOP +tkinter.commondialog.TRUE +tkinter.commondialog.Tcl(??) +tkinter.commondialog.TclError(??) +tkinter.commondialog.TclVersion +tkinter.commondialog.Text(??) +tkinter.commondialog.Tk(??) +tkinter.commondialog.TkVersion +tkinter.commondialog.Toplevel(??) +tkinter.commondialog.UNDERLINE +tkinter.commondialog.UNITS +tkinter.commondialog.VERTICAL +tkinter.commondialog.Variable(??) +tkinter.commondialog.W +tkinter.commondialog.WORD +tkinter.commondialog.WRITABLE +tkinter.commondialog.Widget(??) +tkinter.commondialog.Wm(??) +tkinter.commondialog.X +tkinter.commondialog.XView(??) +tkinter.commondialog.Y +tkinter.commondialog.YES +tkinter.commondialog.YView(??) +tkinter.commondialog.constants(??) +tkinter.commondialog.enum(??) +tkinter.commondialog.getboolean(??) +tkinter.commondialog.getdouble(??) +tkinter.commondialog.getint(??) +tkinter.commondialog.image_names(??) +tkinter.commondialog.image_types(??) +tkinter.commondialog.mainloop(??) +tkinter.commondialog.re(??) +tkinter.commondialog.sys(??) +tkinter.commondialog.wantobjects +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog.ACTIVE +tkinter.dialog.ALL +tkinter.dialog.ANCHOR +tkinter.dialog.ARC +tkinter.dialog.BASELINE +tkinter.dialog.BEVEL +tkinter.dialog.BOTH +tkinter.dialog.BOTTOM +tkinter.dialog.BROWSE +tkinter.dialog.BUTT +tkinter.dialog.BaseWidget(??) +tkinter.dialog.BitmapImage(??) +tkinter.dialog.BooleanVar(??) +tkinter.dialog.Button(??) +tkinter.dialog.CASCADE +tkinter.dialog.CENTER +tkinter.dialog.CHAR +tkinter.dialog.CHECKBUTTON +tkinter.dialog.CHORD +tkinter.dialog.COMMAND +tkinter.dialog.CURRENT +tkinter.dialog.CallWrapper(??) +tkinter.dialog.Canvas(??) +tkinter.dialog.Checkbutton(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.DISABLED +tkinter.dialog.DOTBOX +tkinter.dialog.Dialog(??) +tkinter.dialog.DoubleVar(??) +tkinter.dialog.E +tkinter.dialog.END +tkinter.dialog.EW +tkinter.dialog.EXCEPTION +tkinter.dialog.EXTENDED +tkinter.dialog.Entry(??) +tkinter.dialog.Event(??) +tkinter.dialog.EventType(??) +tkinter.dialog.FALSE +tkinter.dialog.FIRST +tkinter.dialog.FLAT +tkinter.dialog.Frame(??) +tkinter.dialog.GROOVE +tkinter.dialog.Grid(??) +tkinter.dialog.HIDDEN +tkinter.dialog.HORIZONTAL +tkinter.dialog.INSERT +tkinter.dialog.INSIDE +tkinter.dialog.Image(??) +tkinter.dialog.IntVar(??) +tkinter.dialog.LAST +tkinter.dialog.LEFT +tkinter.dialog.Label(??) +tkinter.dialog.LabelFrame(??) +tkinter.dialog.Listbox(??) +tkinter.dialog.MITER +tkinter.dialog.MOVETO +tkinter.dialog.MULTIPLE +tkinter.dialog.Menu(??) +tkinter.dialog.Menubutton(??) +tkinter.dialog.Message(??) +tkinter.dialog.Misc(??) +tkinter.dialog.N +tkinter.dialog.NE +tkinter.dialog.NO +tkinter.dialog.NONE +tkinter.dialog.NORMAL +tkinter.dialog.NS +tkinter.dialog.NSEW +tkinter.dialog.NUMERIC +tkinter.dialog.NW +tkinter.dialog.NoDefaultRoot(??) +tkinter.dialog.OFF +tkinter.dialog.ON +tkinter.dialog.OUTSIDE +tkinter.dialog.OptionMenu(??) +tkinter.dialog.PAGES +tkinter.dialog.PIESLICE +tkinter.dialog.PROJECTING +tkinter.dialog.Pack(??) +tkinter.dialog.PanedWindow(??) +tkinter.dialog.PhotoImage(??) +tkinter.dialog.Place(??) +tkinter.dialog.RADIOBUTTON +tkinter.dialog.RAISED +tkinter.dialog.READABLE +tkinter.dialog.RIDGE +tkinter.dialog.RIGHT +tkinter.dialog.ROUND +tkinter.dialog.Radiobutton(??) +tkinter.dialog.S +tkinter.dialog.SCROLL +tkinter.dialog.SE +tkinter.dialog.SEL +tkinter.dialog.SEL_FIRST +tkinter.dialog.SEL_LAST +tkinter.dialog.SEPARATOR +tkinter.dialog.SINGLE +tkinter.dialog.SOLID +tkinter.dialog.SUNKEN +tkinter.dialog.SW +tkinter.dialog.Scale(??) +tkinter.dialog.Scrollbar(??) +tkinter.dialog.Spinbox(??) +tkinter.dialog.StringVar(??) +tkinter.dialog.TOP +tkinter.dialog.TRUE +tkinter.dialog.Tcl(??) +tkinter.dialog.TclError(??) +tkinter.dialog.TclVersion +tkinter.dialog.Text(??) +tkinter.dialog.Tk(??) +tkinter.dialog.TkVersion +tkinter.dialog.Toplevel(??) +tkinter.dialog.UNDERLINE +tkinter.dialog.UNITS +tkinter.dialog.VERTICAL +tkinter.dialog.Variable(??) +tkinter.dialog.W +tkinter.dialog.WORD +tkinter.dialog.WRITABLE +tkinter.dialog.Widget(??) +tkinter.dialog.Wm(??) +tkinter.dialog.X +tkinter.dialog.XView(??) +tkinter.dialog.Y +tkinter.dialog.YES +tkinter.dialog.YView(??) +tkinter.dialog.colorchooser(??) +tkinter.dialog.commondialog(??) +tkinter.dialog.constants(??) +tkinter.dialog.enum(??) +tkinter.dialog.getboolean(??) +tkinter.dialog.getdouble(??) +tkinter.dialog.getint(??) +tkinter.dialog.image_names(??) +tkinter.dialog.image_types(??) +tkinter.dialog.mainloop(??) +tkinter.dialog.re(??) +tkinter.dialog.sys(??) +tkinter.dialog.wantobjects +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.enum(??) +tkinter.filedialog.ACTIVE +tkinter.filedialog.ALL +tkinter.filedialog.ANCHOR +tkinter.filedialog.ARC +tkinter.filedialog.BASELINE +tkinter.filedialog.BEVEL +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.BROWSE +tkinter.filedialog.BUTT +tkinter.filedialog.BaseWidget(??) +tkinter.filedialog.BitmapImage(??) +tkinter.filedialog.BooleanVar(??) +tkinter.filedialog.Button(??) +tkinter.filedialog.CASCADE +tkinter.filedialog.CENTER +tkinter.filedialog.CHAR +tkinter.filedialog.CHECKBUTTON +tkinter.filedialog.CHORD +tkinter.filedialog.COMMAND +tkinter.filedialog.CURRENT +tkinter.filedialog.CallWrapper(??) +tkinter.filedialog.Canvas(??) +tkinter.filedialog.Checkbutton(??) +tkinter.filedialog.DISABLED +tkinter.filedialog.DOTBOX +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.DoubleVar(??) +tkinter.filedialog.E +tkinter.filedialog.END +tkinter.filedialog.EW +tkinter.filedialog.EXCEPTION +tkinter.filedialog.EXTENDED +tkinter.filedialog.Entry(??) +tkinter.filedialog.Event(??) +tkinter.filedialog.EventType(??) +tkinter.filedialog.FALSE +tkinter.filedialog.FIRST +tkinter.filedialog.FLAT +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.GROOVE +tkinter.filedialog.Grid(??) +tkinter.filedialog.HIDDEN +tkinter.filedialog.HORIZONTAL +tkinter.filedialog.INSERT +tkinter.filedialog.INSIDE +tkinter.filedialog.Image(??) +tkinter.filedialog.IntVar(??) +tkinter.filedialog.LAST +tkinter.filedialog.LEFT +tkinter.filedialog.Label(??) +tkinter.filedialog.LabelFrame(??) +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.MITER +tkinter.filedialog.MOVETO +tkinter.filedialog.MULTIPLE +tkinter.filedialog.Menu(??) +tkinter.filedialog.Menubutton(??) +tkinter.filedialog.Message(??) +tkinter.filedialog.Misc(??) +tkinter.filedialog.N +tkinter.filedialog.NE +tkinter.filedialog.NO +tkinter.filedialog.NONE +tkinter.filedialog.NORMAL +tkinter.filedialog.NS +tkinter.filedialog.NSEW +tkinter.filedialog.NUMERIC +tkinter.filedialog.NW +tkinter.filedialog.NoDefaultRoot(??) +tkinter.filedialog.OFF +tkinter.filedialog.ON +tkinter.filedialog.OUTSIDE +tkinter.filedialog.Open(??) +tkinter.filedialog.OptionMenu(??) +tkinter.filedialog.PAGES +tkinter.filedialog.PIESLICE +tkinter.filedialog.PROJECTING +tkinter.filedialog.Pack(??) +tkinter.filedialog.PanedWindow(??) +tkinter.filedialog.PhotoImage(??) +tkinter.filedialog.Place(??) +tkinter.filedialog.RADIOBUTTON +tkinter.filedialog.RAISED +tkinter.filedialog.READABLE +tkinter.filedialog.RIDGE +tkinter.filedialog.RIGHT +tkinter.filedialog.ROUND +tkinter.filedialog.Radiobutton(??) +tkinter.filedialog.S +tkinter.filedialog.SCROLL +tkinter.filedialog.SE +tkinter.filedialog.SEL +tkinter.filedialog.SEL_FIRST +tkinter.filedialog.SEL_LAST +tkinter.filedialog.SEPARATOR +tkinter.filedialog.SINGLE +tkinter.filedialog.SOLID +tkinter.filedialog.SUNKEN +tkinter.filedialog.SW +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scale(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.Spinbox(??) +tkinter.filedialog.StringVar(??) +tkinter.filedialog.TOP +tkinter.filedialog.TRUE +tkinter.filedialog.Tcl(??) +tkinter.filedialog.TclError(??) +tkinter.filedialog.TclVersion +tkinter.filedialog.Text(??) +tkinter.filedialog.Tk(??) +tkinter.filedialog.TkVersion +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.UNDERLINE +tkinter.filedialog.UNITS +tkinter.filedialog.VERTICAL +tkinter.filedialog.Variable(??) +tkinter.filedialog.W +tkinter.filedialog.WORD +tkinter.filedialog.WRITABLE +tkinter.filedialog.Widget(??) +tkinter.filedialog.Wm(??) +tkinter.filedialog.X +tkinter.filedialog.XView(??) +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.YView(??) +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.colorchooser(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.constants(??) +tkinter.filedialog.dialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.dnd(??) +tkinter.filedialog.enum(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.getboolean(??) +tkinter.filedialog.getdouble(??) +tkinter.filedialog.getint(??) +tkinter.filedialog.image_names(??) +tkinter.filedialog.image_types(??) +tkinter.filedialog.mainloop(??) +tkinter.filedialog.os(??) +tkinter.filedialog.re(??) +tkinter.filedialog.sys(??) +tkinter.filedialog.test(??) +tkinter.filedialog.wantobjects +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.EventType(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.colorchooser(??) +tkinter.simpledialog.commondialog(??) +tkinter.simpledialog.constants(??) +tkinter.simpledialog.dialog(??) +tkinter.simpledialog.dnd(??) +tkinter.simpledialog.enum(??) +tkinter.simpledialog.filedialog(??) +tkinter.simpledialog.font(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.simpledialog.re(??) +tkinter.simpledialog.scrolledtext(??) +tkinter.simpledialog.sys(??) +tkinter.simpledialog.tkinter(??) +tkinter.simpledialog.wantobjects +tkinter.sys(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.EventType(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.colorchooser(??) +tkinter.tix.commondialog(??) +tkinter.tix.constants(??) +tkinter.tix.dialog(??) +tkinter.tix.dnd(??) +tkinter.tix.enum(??) +tkinter.tix.filedialog(??) +tkinter.tix.font(??) +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.messagebox(??) +tkinter.tix.os(??) +tkinter.tix.re(??) +tkinter.tix.scrolledtext(??) +tkinter.tix.simpledialog(??) +tkinter.tix.sys(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.wantobjects +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.wantobjects +token.AMPER +token.AMPEREQUAL +token.ASYNC +token.AT +token.ATEQUAL +token.AWAIT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.ASYNC +tokenize.AT +tokenize.ATEQUAL +tokenize.AWAIT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.chain(*iterables) --> chain object +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.u +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.argparse(??) +trace.dis(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.os(??) +trace.pickle(??) +trace.re(??) +trace.rx_blank(??) +trace.sys(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +traceback.FrameSummary(??) +traceback.StackSummary(??) +traceback.TracebackException(??) +traceback.clear_frames(??) +traceback.collections(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.itertools(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +traceback.walk_stack(??) +traceback.walk_tb(??) +tracemalloc.BaseFilter(??) +tracemalloc.DomainFilter(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Iterable(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces() +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit() -> int +tracemalloc.get_traced_memory() -> (int, int) +tracemalloc.get_tracemalloc_memory() -> int +tracemalloc.is_tracing()->bool +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.start(nframe: int=1) +tracemalloc.stop() +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple() -> empty tuple +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.sys(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object_or_name, bases, dict) +types.AsyncGeneratorType(??) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CodeType(??) +types.CoroutineType(??) +types.DynamicClassAttribute(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodType(??) +types.ModuleType(??) +types.SimpleNamespace(??) +types.TracebackType(??) +types.coroutine(??) +types.new_class(??) +types.prepare_class(??) +typing.AbstractSet(??) +typing.Any(??) +typing.AnyStr(??) +typing.AsyncIterable(??) +typing.AsyncIterator(??) +typing.Awaitable(??) +typing.BinaryIO(??) +typing.ByteString(??) +typing.CT_co(??) +typing.Callable(??) +typing.CallableMeta(??) +typing.ClassVar(??) +typing.Collection(??) +typing.Container(??) +typing.ContextManager(??) +typing.Coroutine(??) +typing.DefaultDict(??) +typing.Dict(??) +typing.FrozenSet(??) +typing.Generator(??) +typing.Generic(??) +typing.GenericMeta(??) +typing.Hashable(??) +typing.IO(??) +typing.ItemsView(??) +typing.Iterable(??) +typing.Iterator(??) +typing.KT(??) +typing.KeysView(??) +typing.List(??) +typing.Mapping(??) +typing.MappingView(??) +typing.Match(??) +typing.MutableMapping(??) +typing.MutableSequence(??) +typing.MutableSet(??) +typing.NamedTuple(??) +typing.NamedTupleMeta(??) +typing.NewType(??) +typing.Optional(??) +typing.Pattern(??) +typing.Reversible(??) +typing.Sequence(??) +typing.Set(??) +typing.Sized(??) +typing.SupportsAbs(??) +typing.SupportsBytes(??) +typing.SupportsComplex(??) +typing.SupportsFloat(??) +typing.SupportsInt(??) +typing.SupportsRound(??) +typing.T(??) +typing.TYPE_CHECKING(??) +typing.T_co(??) +typing.T_contra(??) +typing.Text(??) +typing.TextIO(??) +typing.Tuple(??) +typing.TupleMeta(??) +typing.Type(??) +typing.TypeVar(??) +typing.TypingMeta(??) +typing.Union(??) +typing.VT(??) +typing.VT_co(??) +typing.V_co(??) +typing.ValuesView(??) +typing.abc(??) +typing.abstractmethod(??) +typing.abstractproperty(??) +typing.cast(??) +typing.collections(??) +typing.collections_abc(??) +typing.contextlib(??) +typing.functools(??) +typing.get_type_hints(??) +typing.io(??) +typing.no_type_check(??) +typing.no_type_check_decorator(??) +typing.overload(??) +typing.re(??) +typing.stdlib_re(??) +typing.sys(??) +typing.types(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.parse.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.parse.splitnport(??) +urllib.parse.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.parse.splitport('host:port') --> 'host', 'port'. +urllib.parse.splitquery('/path?query') --> '/path', 'query'. +urllib.parse.splittag('/path#tag') --> '/path', 'tag'. +urllib.parse.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.parse.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.parse.splitvalue('attr=value') --> 'attr', 'value'. +urllib.parse.sys(??) +urllib.parse.to_bytes(u"URL") --> 'URL'. +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap('') --> 'type://host/path'. +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPPasswordMgrWithPriorAuth(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.collections(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.request.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.request.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.request.splitport('host:port') --> 'host', 'port'. +urllib.request.splitquery('/path?query') --> '/path', 'query'. +urllib.request.splittag('/path#tag') --> '/path', 'tag'. +urllib.request.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.request.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.request.splitvalue('attr=value') --> 'attr', 'value'. +urllib.request.ssl(??) +urllib.request.string(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.to_bytes(u"URL") --> 'URL'. +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap('') --> 'type://host/path'. +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.response.tempfile(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.collections(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.UUID(??) +uuid.bytes_(??) +uuid.ctypes(??) +uuid.getnode(??) +uuid.int_(??) +uuid.lib(??) +uuid.libname +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.audioop(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +wave.sys(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.collections(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.itertools(??) +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.raise_conversion_error(??) +xdrlib.struct(??) +xdrlib.wraps(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.warnings(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.collections(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLPullParser(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(??) +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate(??) +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Decimal(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.http(??) +xmlrpc.server.inspect(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(iter1 [,iter2 [...]]) --> zip object +zipapp.MAIN_TEMPLATE +zipapp.ZipAppError(??) +zipapp.contextlib(??) +zipapp.create_archive(??) +zipapp.get_interpreter(??) +zipapp.main(??) +zipapp.os(??) +zipapp.pathlib(??) +zipapp.shebang_encoding +zipapp.shutil(??) +zipapp.stat(??) +zipapp.sys(??) +zipapp.zipfile(??) +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.DEFAULT_VERSION +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.re(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.threading(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.ZipImportError(??) +zipimport.zipimporter(archivepath) -> zipimporter object diff --git a/third_party/qscintilla/qsci/api/python/Python-3.7.api b/third_party/qscintilla/qsci/api/python/Python-3.7.api new file mode 100644 index 0000000..990b6a9 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.7.api @@ -0,0 +1,9410 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +ModuleNotFoundError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +RecursionError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopAsyncIteration(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.WeakSet(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abs(??) +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +aifc.warnings(??) +all(??) +any(??) +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +ascii(??) +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.AnnAssign(??) +ast.Assert(??) +ast.Assign(??) +ast.AsyncFor(??) +ast.AsyncFunctionDef(??) +ast.AsyncWith(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.Await(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Constant(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FormattedValue(??) +ast.FunctionDef(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.JoinedStr(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.MatMult(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NameConstant(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ONLY_AST +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.Try(??) +ast.Tuple(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.YieldFrom(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.unaryop(??) +ast.walk(??) +ast.withitem(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.BaseEventLoop(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.BufferedProtocol(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.LifoQueue(??) +asyncio.LimitOverrunError(??) +asyncio.Lock(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.SendfileNotAvailableError(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.all_tasks(??) +asyncio.as_completed(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.constants(??) +asyncio.base_events.coroutines(??) +asyncio.base_events.events(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.itertools(??) +asyncio.base_events.logger(??) +asyncio.base_events.logging(??) +asyncio.base_events.os(??) +asyncio.base_events.protocols(??) +asyncio.base_events.socket(??) +asyncio.base_events.ssl(??) +asyncio.base_events.sslproto(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.threading(??) +asyncio.base_events.time(??) +asyncio.base_events.traceback(??) +asyncio.base_events.transports(??) +asyncio.base_events.warnings(??) +asyncio.base_events.weakref(??) +asyncio.base_futures(??) +asyncio.base_futures.CancelledError(??) +asyncio.base_futures.Error(??) +asyncio.base_futures.InvalidStateError(??) +asyncio.base_futures.TimeoutError(??) +asyncio.base_futures.concurrent(??) +asyncio.base_futures.format_helpers(??) +asyncio.base_futures.isfuture(??) +asyncio.base_futures.reprlib(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.logger(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.transports(??) +asyncio.base_subprocess.warnings(??) +asyncio.base_tasks(??) +asyncio.base_tasks.base_futures(??) +asyncio.base_tasks.coroutines(??) +asyncio.base_tasks.linecache(??) +asyncio.base_tasks.traceback(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.DEBUG_STACK_DEPTH +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.constants.SSL_HANDSHAKE_TIMEOUT +asyncio.constants.enum(??) +asyncio.coroutine(??) +asyncio.coroutines(??) +asyncio.coroutines.CoroWrapper(??) +asyncio.coroutines.base_futures(??) +asyncio.coroutines.collections(??) +asyncio.coroutines.constants(??) +asyncio.coroutines.coroutine(??) +asyncio.coroutines.format_helpers(??) +asyncio.coroutines.functools(??) +asyncio.coroutines.inspect(??) +asyncio.coroutines.iscoroutine(??) +asyncio.coroutines.iscoroutinefunction(??) +asyncio.coroutines.logger(??) +asyncio.coroutines.os(??) +asyncio.coroutines.sys(??) +asyncio.coroutines.traceback(??) +asyncio.coroutines.types(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.create_task(??) +asyncio.current_task(??) +asyncio.ensure_future(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.SendfileNotAvailableError(??) +asyncio.events.TimerHandle(??) +asyncio.events.contextvars(??) +asyncio.events.format_helpers(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.get_running_loop(??) +asyncio.events.new_event_loop(??) +asyncio.events.os(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.sys(??) +asyncio.events.threading(??) +asyncio.format_helpers(??) +asyncio.format_helpers.constants(??) +asyncio.format_helpers.extract_stack(??) +asyncio.format_helpers.functools(??) +asyncio.format_helpers.inspect(??) +asyncio.format_helpers.reprlib(??) +asyncio.format_helpers.traceback(??) +asyncio.futures(??) +asyncio.futures.CancelledError(??) +asyncio.futures.Future(??) +asyncio.futures.InvalidStateError(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.TimeoutError(??) +asyncio.futures.base_futures(??) +asyncio.futures.concurrent(??) +asyncio.futures.contextvars(??) +asyncio.futures.events(??) +asyncio.futures.format_helpers(??) +asyncio.futures.isfuture(??) +asyncio.futures.logging(??) +asyncio.futures.sys(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.get_running_loop(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.isfuture(??) +asyncio.locks(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.coroutine(??) +asyncio.locks.events(??) +asyncio.locks.futures(??) +asyncio.locks.warnings(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.protocols(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.sslproto(??) +asyncio.proactor_events.transports(??) +asyncio.proactor_events.warnings(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.BufferedProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.events(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.run(??) +asyncio.run_coroutine_threadsafe(??) +asyncio.runners(??) +asyncio.runners.coroutines(??) +asyncio.runners.events(??) +asyncio.runners.run(??) +asyncio.runners.tasks(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.functools(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.protocols(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.sslproto(??) +asyncio.selector_events.transports(??) +asyncio.selector_events.warnings(??) +asyncio.selector_events.weakref(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.sslproto(??) +asyncio.sslproto.SSLProtocol(??) +asyncio.sslproto.base_events(??) +asyncio.sslproto.collections(??) +asyncio.sslproto.constants(??) +asyncio.sslproto.logger(??) +asyncio.sslproto.protocols(??) +asyncio.sslproto.ssl(??) +asyncio.sslproto.transports(??) +asyncio.sslproto.warnings(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.IncompleteReadError(??) +asyncio.streams.LimitOverrunError(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.coroutines(??) +asyncio.streams.events(??) +asyncio.streams.logger(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.sleep(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.logger(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.sys(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.Task(??) +asyncio.tasks.all_tasks(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.base_tasks(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.contextvars(??) +asyncio.tasks.coroutine(??) +asyncio.tasks.coroutines(??) +asyncio.tasks.create_task(??) +asyncio.tasks.current_task(??) +asyncio.tasks.ensure_future(??) +asyncio.tasks.events(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.run_coroutine_threadsafe(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.types(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.warnings(??) +asyncio.tasks.weakref(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.coroutines(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.futures(??) +asyncio.unix_events.io(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.selectors(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.unix_events.warnings(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_ASYNC_GENERATOR +bdb.CO_COROUTINE +bdb.CO_GENERATOR +bdb.GENERATOR_AND_COROUTINE_FLAGS +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +breakpoint(*args, **kws) +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.ModuleNotFoundError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.RecursionError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopAsyncIteration(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(??) +builtins.all(??) +builtins.any(??) +builtins.ascii(??) +builtins.bin(??) +builtins.bool(x) -> bool +builtins.breakpoint(*args, **kws) +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(??) +builtins.chr(??) +builtins.classmethod(function) -> method +builtins.compile(??) +builtins.complex(??) +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(??) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(??) +builtins.enumerate(??) +builtins.eval(??) +builtins.exec(??) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(??) +builtins.format(??) +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals(??) +builtins.hasattr(??) +builtins.hash(??) +builtins.help(??) +builtins.hex(??) +builtins.id(??) +builtins.input(??) +builtins.int([x]) -> integer +builtins.isinstance(??) +builtins.issubclass(??) +builtins.iter(iterable) -> iterator +builtins.len(??) +builtins.license(??) +builtins.list(??) +builtins.locals(??) +builtins.map(func, *iterables) --> map object +builtins.max(iterable, *[, default=obj, key=func]) -> value +builtins.memoryview(??) +builtins.min(iterable, *[, default=obj, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(??) +builtins.open(??) +builtins.ord(??) +builtins.pow(??) +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(??) +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(??) +builtins.reversed(??) +builtins.round(??) +builtins.set() -> new empty set object +builtins.setattr(??) +builtins.slice(stop) +builtins.sorted(??) +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(??) +builtins.super() -> same as super(__class__, ) +builtins.tuple(??) +builtins.type(object_or_name, bases, dict) +builtins.vars([object]) -> dictionary +builtins.zip(iter1 [,iter2 [...]]) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.RLock(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.os(??) +bz2.warnings(??) +cProfile.Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthlen(??) +calendar.monthrange(??) +calendar.nextmonth(??) +calendar.prcal(??) +calendar.prevmonth(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.repeat(object [,times]) -> create an iterator which returns the object +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(??) +cgi.BytesIO(??) +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.escape(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.parse_qs(??) +cgi.parse_qsl(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgi.warn(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(??) +chunk.Chunk(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(??) +codecs.encode(??) +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(??) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.namereplace_errors(??) +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(??) +codecs.register_error(??) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.unicode_internal_decode(??) +codecs.unicode_internal_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.AsyncGenerator(??) +collections.AsyncIterable(??) +collections.AsyncIterator(??) +collections.Awaitable(??) +collections.ByteString(??) +collections.Callable(??) +collections.ChainMap(??) +collections.Collection(??) +collections.Container(??) +collections.Coroutine(??) +collections.Counter(??) +collections.Generator(??) +collections.Hashable(??) +collections.ItemsView(??) +collections.Iterable(??) +collections.Iterator(??) +collections.KeysView(??) +collections.Mapping(??) +collections.MappingView(??) +collections.MutableMapping(??) +collections.MutableSequence(??) +collections.MutableSet(??) +collections.OrderedDict(??) +collections.Reversible(??) +collections.Sequence(??) +collections.Set(??) +collections.Sized(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.ValuesView(??) +collections.abc(??) +collections.abc.AsyncGenerator(??) +collections.abc.AsyncIterable(??) +collections.abc.AsyncIterator(??) +collections.abc.Awaitable(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Collection(??) +collections.abc.Container(??) +collections.abc.Coroutine(??) +collections.abc.Generator(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Reversible(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory[, ...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(??) +compileall.ProcessPoolExecutor(??) +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.partial(func, *args, **keywords) - new function with partial application +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(??) +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.BrokenExecutor(??) +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.Full(??) +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.Queue(??) +concurrent.futures.process.atexit(??) +concurrent.futures.process.itertools(??) +concurrent.futures.process.mp(??) +concurrent.futures.process.os(??) +concurrent.futures.process.partial(func, *args, **keywords) - new function with partial application +concurrent.futures.process.queue(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.traceback(??) +concurrent.futures.process.wait(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread.BrokenThreadPool(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.atexit(??) +concurrent.futures.thread.itertools(??) +concurrent.futures.thread.os(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.ConverterMapping(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.os(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.AbstractAsyncContextManager(??) +contextlib.AbstractContextManager(??) +contextlib.AsyncExitStack(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.abc(??) +contextlib.asynccontextmanager(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.nullcontext(??) +contextlib.redirect_stderr(??) +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +contextvars.Context(??) +contextvars.ContextVar(??) +contextvars.Token(??) +contextvars.copy_context(??) +copy.Error(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_BLOWFISH(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.OrderedDict(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(iterable[, func]) --> accumulate object +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(iterable, r) --> combinations object +ctypes.macholib.dyld.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +ctypes.macholib.dyld.compress(data, selectors) --> iterator over selected data +ctypes.macholib.dyld.count(start=0, step=1) --> count object +ctypes.macholib.dyld.cycle(iterable) --> cycle object +ctypes.macholib.dyld.dropwhile(predicate, iterable) --> dropwhile object +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(function or None, sequence) --> filterfalse object +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(iterable, key=None) -> make an iterator that returns consecutive +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(iterable[, r]) --> permutations object +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(function, sequence) --> starmap object +ctypes.macholib.dyld.takewhile(predicate, iterable) --> takewhile object +ctypes.macholib.dyld.tee(iterable, n=2) --> tuple of n independent iterators. +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.re(??) +ctypes.util.shutil(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.tempfile(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.newpad(??) +curses.newwin(??) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.update_lines_cols(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.wrapper(??) +dataclasses.Field(??) +dataclasses.FrozenInstanceError(??) +dataclasses.InitVar(??) +dataclasses.MISSING(??) +dataclasses.asdict(??) +dataclasses.astuple(??) +dataclasses.dataclass(??) +dataclasses.deepcopy(??) +dataclasses.field(??) +dataclasses.fields(??) +dataclasses.inspect(??) +dataclasses.is_dataclass(??) +dataclasses.make_dataclass(??) +dataclasses.replace(??) +dataclasses.sys(??) +dataclasses.types(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(??) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.diff_bytes(??) +difflib.get_close_matches(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.Bytecode(??) +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.FORMAT_VALUE +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(??) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +dummy_threading.Barrier(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.BrokenBarrierError(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.TIMEOUT_MAX +dummy_threading.Thread(??) +dummy_threading.ThreadError(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.get_ident(??) +dummy_threading.local(??) +dummy_threading.main_thread(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.maintype +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.contentmanager.subtype +email.contentmanager.typ(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.StringIO(??) +email.feedparser.compat32(??) +email.feedparser.deque([iterable[, maxlen]]) --> deque object +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.re(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.NL +email.generator.NLCRE(??) +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.MappingProxyType(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO(??) +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.Policy(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.quopri(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio.BytesIO(??) +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base.MIMEBase(??) +email.mime.base.email(??) +email.mime.base.message(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text.Charset(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.policy.Compat32(??) +email.policy.EmailMessage(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.SMTPUTF8(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.linesep_splitter(??) +email.policy.raw_data_manager(??) +email.policy.re(??) +email.policy.strict(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +ensurepip.bootstrap(??) +ensurepip.os(??) +ensurepip.pkgutil(??) +ensurepip.sys(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.DynamicClassAttribute(??) +enum.Enum(??) +enum.EnumMeta(??) +enum.Flag(??) +enum.IntEnum(??) +enum.IntFlag(??) +enum.MappingProxyType(??) +enum.OrderedDict(??) +enum.auto(??) +enum.sys(??) +enum.unique(??) +enumerate(??) +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTRECOVERABLE +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EOWNERDEAD +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(??) +exec(??) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register a handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(function or None, sequence) --> filterfalse object +filecmp.os(??) +filecmp.stat(??) +fileinput.FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]]) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(??) +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(??) +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +formatter.warnings(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.recursive_repr(??) +functools.reduce(function, sequence[, initial]) -> value +functools.singledispatch(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect(??) +gc.disable(??) +gc.enable(??) +gc.ensure_disabled(??) +gc.freeze(??) +gc.garbage(??) +gc.get_count(??) +gc.get_debug(??) +gc.get_freeze_count(??) +gc.get_objects(??) +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats(??) +gc.get_threshold(??) +gc.is_tracked(??) +gc.isenabled(??) +gc.set_debug(??) +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gc.unfreeze(??) +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.os(??) +gettext.re(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +globals(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(??) +hash(??) +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.blake2b(??) +hashlib.blake2s(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None) -> key +hashlib.scrypt(??) +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha3_224(??) +hashlib.sha3_256([string]) -> SHA3 object +hashlib.sha3_384([string]) -> SHA3 object +hashlib.sha3_512([string]) -> SHA3 object +hashlib.sha512(??) +hashlib.shake_128([string]) -> SHAKE object +hashlib.shake_256([string]) -> SHAKE object +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +heapq.heappushpop(heap, item) -> value. Push item on the heap, then pop and return the smallest item +heapq.heapreplace(heap, item) -> value. Pop and return the current smallest value, and add the new item. +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +help(??) +hex(??) +hmac.HMAC(??) +hmac.compare_digest(??) +hmac.digest(??) +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser.HTMLParser(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.parser.warnings(??) +html.unescape(??) +http.HTTPStatus(??) +http.IntEnum(??) +http.client.ACCEPTED(??) +http.client.ALREADY_REPORTED(??) +http.client.BAD_GATEWAY(??) +http.client.BAD_REQUEST(??) +http.client.BadStatusLine(??) +http.client.CONFLICT(??) +http.client.CONTINUE(??) +http.client.CREATED(??) +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED(??) +http.client.FAILED_DEPENDENCY(??) +http.client.FORBIDDEN(??) +http.client.FOUND(??) +http.client.GATEWAY_TIMEOUT(??) +http.client.GONE(??) +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED(??) +http.client.IM_USED(??) +http.client.INSUFFICIENT_STORAGE(??) +http.client.INTERNAL_SERVER_ERROR(??) +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED(??) +http.client.LOCKED(??) +http.client.LOOP_DETECTED(??) +http.client.LineTooLong(??) +http.client.MAXAMOUNT +http.client.METHOD_NOT_ALLOWED(??) +http.client.MISDIRECTED_REQUEST(??) +http.client.MOVED_PERMANENTLY(??) +http.client.MULTIPLE_CHOICES(??) +http.client.MULTI_STATUS(??) +http.client.NETWORK_AUTHENTICATION_REQUIRED(??) +http.client.NON_AUTHORITATIVE_INFORMATION(??) +http.client.NOT_ACCEPTABLE(??) +http.client.NOT_EXTENDED(??) +http.client.NOT_FOUND(??) +http.client.NOT_IMPLEMENTED(??) +http.client.NOT_MODIFIED(??) +http.client.NO_CONTENT(??) +http.client.NotConnected(??) +http.client.OK(??) +http.client.PARTIAL_CONTENT(??) +http.client.PAYMENT_REQUIRED(??) +http.client.PERMANENT_REDIRECT(??) +http.client.PRECONDITION_FAILED(??) +http.client.PRECONDITION_REQUIRED(??) +http.client.PROCESSING(??) +http.client.PROXY_AUTHENTICATION_REQUIRED(??) +http.client.REQUESTED_RANGE_NOT_SATISFIABLE(??) +http.client.REQUEST_ENTITY_TOO_LARGE(??) +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE(??) +http.client.REQUEST_TIMEOUT(??) +http.client.REQUEST_URI_TOO_LONG(??) +http.client.RESET_CONTENT(??) +http.client.RemoteDisconnected(??) +http.client.ResponseNotReady(??) +http.client.SEE_OTHER(??) +http.client.SERVICE_UNAVAILABLE(??) +http.client.SWITCHING_PROTOCOLS(??) +http.client.TEMPORARY_REDIRECT(??) +http.client.TOO_MANY_REQUESTS(??) +http.client.UNAUTHORIZED(??) +http.client.UNPROCESSABLE_ENTITY(??) +http.client.UNSUPPORTED_MEDIA_TYPE(??) +http.client.UPGRADE_REQUIRED(??) +http.client.USE_PROXY(??) +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.VARIANT_ALSO_NEGOTIATES(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.http(??) +http.client.io(??) +http.client.parse_headers(??) +http.client.re(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.HTTPStatus(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.copy(??) +http.server.datetime(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.partial(func, *args, **keywords) - new function with partial application +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(??) +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.PathLike(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exr(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_webp(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.create_dynamic(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.ResourceLoader(??) +importlib.abc.ResourceReader(??) +importlib.abc.SourceLoader(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.abc.warnings(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.reload(??) +importlib.resources.BinaryIO(??) +importlib.resources.BytesIO(??) +importlib.resources.Iterator(??) +importlib.resources.ModuleType(??) +importlib.resources.Optional(??) +importlib.resources.Package(??) +importlib.resources.Path(??) +importlib.resources.Resource(??) +importlib.resources.ResourceLoader(??) +importlib.resources.Set(??) +importlib.resources.TextIO(??) +importlib.resources.TextIOWrapper(??) +importlib.resources.Union(??) +importlib.resources.ZipImportError(??) +importlib.resources.builtins_open(??) +importlib.resources.cast(??) +importlib.resources.contents(??) +importlib.resources.contextmanager(??) +importlib.resources.import_module(??) +importlib.resources.is_resource(??) +importlib.resources.open_binary(??) +importlib.resources.open_text(??) +importlib.resources.os(??) +importlib.resources.path(??) +importlib.resources.read_binary(??) +importlib.resources.read_text(??) +importlib.resources.resources_abc(??) +importlib.resources.suppress(??) +importlib.resources.tempfile(??) +importlib.sys(??) +importlib.types(??) +importlib.util(??) +importlib.util.LazyLoader(??) +importlib.util.MAGIC_NUMBER +importlib.util.abc(??) +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.module_from_spec(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.source_hash(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.types(??) +importlib.util.warnings(??) +importlib.warnings(??) +input(??) +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CORO_CLOSED +inspect.CORO_CREATED +inspect.CORO_RUNNING +inspect.CORO_SUSPENDED +inspect.CO_ASYNC_GENERATOR +inspect.CO_COROUTINE +inspect.CO_GENERATOR +inspect.CO_ITERABLE_COROUTINE +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FrameInfo(frame, filename, lineno, function, code_context, index) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.abc(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.collections(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.enum(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getcoroutinelocals(??) +inspect.getcoroutinestate(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isasyncgen(??) +inspect.isasyncgenfunction(??) +inspect.isawaitable(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.iscoroutine(??) +inspect.iscoroutinefunction(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int([x]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO(??) +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(??) +issubclass(??) +iter(iterable) -> iterator +itertools.accumulate(iterable[, func]) --> accumulate object +itertools.chain(*iterables) --> chain object +itertools.combinations(iterable, r) --> combinations object +itertools.combinations_with_replacement(iterable, r) --> combinations_with_replacement object +itertools.compress(data, selectors) --> iterator over selected data +itertools.count(start=0, step=1) --> count object +itertools.cycle(iterable) --> cycle object +itertools.dropwhile(predicate, iterable) --> dropwhile object +itertools.filterfalse(function or None, sequence) --> filterfalse object +itertools.groupby(iterable, key=None) -> make an iterator that returns consecutive +itertools.islice(iterable, stop) --> islice object +itertools.permutations(iterable[, r]) --> permutations object +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(function, sequence) --> starmap object +itertools.takewhile(predicate, iterable) --> takewhile object +itertools.tee(iterable, n=2) --> tuple of n independent iterators. +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecodeError(??) +json.JSONDecoder(??) +json.JSONEncoder(??) +json.codecs(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS(??) +json.decoder.JSONArray(??) +json.decoder.JSONDecodeError(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.detect_encoding(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(string) -> string +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring(??) +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool.argparse(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +keyword.main(??) +len(??) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.functools(??) +linecache.getline(??) +linecache.getlines(??) +linecache.lazycache(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list(??) +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.currency(??) +locale.delocalize(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.k +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.v +locale.windows_locale(??) +locals(??) +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.collections(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingMixin(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.errno(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +lzma.os(??) +macpath.FILE_ATTRIBUTE_ARCHIVE +macpath.FILE_ATTRIBUTE_COMPRESSED +macpath.FILE_ATTRIBUTE_DEVICE +macpath.FILE_ATTRIBUTE_DIRECTORY +macpath.FILE_ATTRIBUTE_ENCRYPTED +macpath.FILE_ATTRIBUTE_HIDDEN +macpath.FILE_ATTRIBUTE_INTEGRITY_STREAM +macpath.FILE_ATTRIBUTE_NORMAL +macpath.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +macpath.FILE_ATTRIBUTE_NO_SCRUB_DATA +macpath.FILE_ATTRIBUTE_OFFLINE +macpath.FILE_ATTRIBUTE_READONLY +macpath.FILE_ATTRIBUTE_REPARSE_POINT +macpath.FILE_ATTRIBUTE_SPARSE_FILE +macpath.FILE_ATTRIBUTE_SYSTEM +macpath.FILE_ATTRIBUTE_TEMPORARY +macpath.FILE_ATTRIBUTE_VIRTUAL +macpath.SF_APPEND +macpath.SF_ARCHIVED +macpath.SF_IMMUTABLE +macpath.SF_NOUNLINK +macpath.SF_SNAPSHOT +macpath.ST_ATIME +macpath.ST_CTIME +macpath.ST_DEV +macpath.ST_GID +macpath.ST_INO +macpath.ST_MODE +macpath.ST_MTIME +macpath.ST_NLINK +macpath.ST_SIZE +macpath.ST_UID +macpath.S_ENFMT +macpath.S_IEXEC +macpath.S_IFBLK +macpath.S_IFCHR +macpath.S_IFDIR +macpath.S_IFDOOR +macpath.S_IFIFO +macpath.S_IFLNK +macpath.S_IFMT(??) +macpath.S_IFPORT +macpath.S_IFREG +macpath.S_IFSOCK +macpath.S_IFWHT +macpath.S_IMODE(??) +macpath.S_IREAD +macpath.S_IRGRP +macpath.S_IROTH +macpath.S_IRUSR +macpath.S_IRWXG +macpath.S_IRWXO +macpath.S_IRWXU +macpath.S_ISBLK(mode) -> bool +macpath.S_ISCHR(mode) -> bool +macpath.S_ISDIR(mode) -> bool +macpath.S_ISDOOR(mode) -> bool +macpath.S_ISFIFO(mode) -> bool +macpath.S_ISGID +macpath.S_ISLNK(mode) -> bool +macpath.S_ISPORT(mode) -> bool +macpath.S_ISREG(mode) -> bool +macpath.S_ISSOCK(mode) -> bool +macpath.S_ISUID +macpath.S_ISVTX +macpath.S_ISWHT(mode) -> bool +macpath.S_IWGRP +macpath.S_IWOTH +macpath.S_IWRITE +macpath.S_IWUSR +macpath.S_IXGRP +macpath.S_IXOTH +macpath.S_IXUSR +macpath.UF_APPEND +macpath.UF_COMPRESSED +macpath.UF_HIDDEN +macpath.UF_IMMUTABLE +macpath.UF_NODUMP +macpath.UF_NOUNLINK +macpath.UF_OPAQUE +macpath.abspath(??) +macpath.altsep(??) +macpath.basename(??) +macpath.commonprefix(??) +macpath.curdir +macpath.defpath +macpath.devnull +macpath.dirname(??) +macpath.exists(??) +macpath.expanduser(??) +macpath.expandvars(??) +macpath.extsep +macpath.filemode(??) +macpath.genericpath(??) +macpath.getatime(??) +macpath.getctime(??) +macpath.getmtime(??) +macpath.getsize(??) +macpath.isabs(??) +macpath.isdir(??) +macpath.isfile(??) +macpath.islink(??) +macpath.ismount(??) +macpath.join(??) +macpath.lexists(??) +macpath.norm_error(??) +macpath.normcase(??) +macpath.normpath(??) +macpath.os(??) +macpath.pardir +macpath.pathsep +macpath.realpath(??) +macpath.samefile(??) +macpath.sameopenfile(??) +macpath.samestat(??) +macpath.sep +macpath.split(??) +macpath.splitdrive(??) +macpath.splitext(??) +macpath.supports_unicode_filenames(??) +macpath.warnings(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.lineno_sort_key(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +mailcap.warnings(??) +map(func, *iterables) --> map object +marshal.dump(??) +marshal.dumps(??) +marshal.load(??) +marshal.loads(??) +marshal.version +max(iterable, *[, default=obj, key=func]) -> value +memoryview(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable, *[, default=obj, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.EXTENDED_ARG +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.imp(??) +modulefinder.importlib(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +modulefinder.warnings(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.reduction(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list(??) +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.SIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_signed(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.semaphore_tracker(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.warnings(??) +multiprocessing.forkserver.write_signed(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BasePoolProxy(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessError(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.get_spawning_popen(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.util(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.sys(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.set_spawning_popen(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.set_spawning_popen(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.process.threading(??) +multiprocessing.queues(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reducer(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ABCMeta(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.AbstractReducer(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.semaphore_tracker.SemaphoreTracker(??) +multiprocessing.semaphore_tracker.ensure_running(??) +multiprocessing.semaphore_tracker.getfd(??) +multiprocessing.semaphore_tracker.main(??) +multiprocessing.semaphore_tracker.os(??) +multiprocessing.semaphore_tracker.register(??) +multiprocessing.semaphore_tracker.signal(??) +multiprocessing.semaphore_tracker.spawn(??) +multiprocessing.semaphore_tracker.sys(??) +multiprocessing.semaphore_tracker.threading(??) +multiprocessing.semaphore_tracker.unregister(??) +multiprocessing.semaphore_tracker.util(??) +multiprocessing.semaphore_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.reduction(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.reduction(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(??) +open(??) +operator.abs(??) +operator.add(??) +operator.and_(??) +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(??) +operator.contains(??) +operator.countOf(??) +operator.delitem(??) +operator.eq(??) +operator.floordiv(??) +operator.ge(??) +operator.getitem(??) +operator.gt(??) +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imatmul(??) +operator.imod(??) +operator.imul(??) +operator.index(??) +operator.indexOf(??) +operator.inv(??) +operator.invert(??) +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(??) +operator.is_not(??) +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(??) +operator.length_hint(??) +operator.lshift(??) +operator.lt(??) +operator.matmul(??) +operator.methodcaller(name, ...) --> methodcaller object +operator.mod(??) +operator.mul(??) +operator.ne(??) +operator.neg(??) +operator.not_(??) +operator.or_(??) +operator.pos(??) +operator.pow(??) +operator.rshift(??) +operator.setitem(??) +operator.sub(??) +operator.truediv(??) +operator.truth(??) +operator.xor(??) +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(??) +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_TRAPPED +os.DirEntry(??) +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CLOEXEC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_EXLOCK +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.POSIX_SPAWN_CLOSE +os.POSIX_SPAWN_DUP2 +os.POSIX_SPAWN_OPEN +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.PathLike(??) +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(??) +os.WEXITED +os.WEXITSTATUS(??) +os.WIFCONTINUED(??) +os.WIFEXITED(??) +os.WIFSIGNALED(??) +os.WIFSTOPPED(??) +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(??) +os.WTERMSIG(??) +os.WUNTRACED +os.W_OK +os.X_OK +os.abc(??) +os.abort(??) +os.access(??) +os.altsep(??) +os.chdir(??) +os.chflags(??) +os.chmod(??) +os.chown(??) +os.chroot(??) +os.close(??) +os.closerange(??) +os.confstr(??) +os.confstr_names(??) +os.cpu_count(??) +os.ctermid(??) +os.curdir +os.defpath +os.device_encoding(??) +os.devnull +os.dup(??) +os.dup2(??) +os.environ(??) +os.environb(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(??) +os.execve(??) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(??) +os.fchmod(??) +os.fchown(??) +os.fdopen(??) +os.fork(??) +os.forkpty(??) +os.fpathconf(??) +os.fsdecode(??) +os.fsencode(??) +os.fspath(??) +os.fstat(??) +os.fstatvfs(??) +os.fsync(??) +os.ftruncate(??) +os.get_blocking(fd) -> bool +os.get_exec_path(??) +os.get_inheritable(??) +os.get_terminal_size(??) +os.getcwd(??) +os.getcwdb(??) +os.getegid(??) +os.getenv(??) +os.getenvb(??) +os.geteuid(??) +os.getgid(??) +os.getgrouplist(user, group) -> list of groups to which a user belongs +os.getgroups(??) +os.getloadavg(??) +os.getlogin(??) +os.getpgid(??) +os.getpgrp(??) +os.getpid(??) +os.getppid(??) +os.getpriority(??) +os.getsid(??) +os.getuid(??) +os.initgroups(username, gid) -> None +os.isatty(??) +os.kill(??) +os.killpg(??) +os.lchflags(??) +os.lchmod(??) +os.lchown(??) +os.linesep +os.link(??) +os.listdir(??) +os.lockf(??) +os.lseek(??) +os.lstat(??) +os.major(??) +os.makedev(??) +os.makedirs(name [, mode=0o777][, exist_ok=False]) +os.minor(??) +os.mkdir(??) +os.mkfifo(??) +os.mknod(??) +os.name +os.nice(??) +os.open(??) +os.openpty(??) +os.pardir +os.path(??) +os.pathconf(??) +os.pathconf_names(??) +os.pathsep +os.pipe(??) +os.popen(??) +os.posix_spawn(??) +os.pread(??) +os.putenv(??) +os.pwrite(??) +os.read(??) +os.readlink(path, *, dir_fd=None) -> path +os.readv(??) +os.register_at_fork(??) +os.remove(??) +os.removedirs(name) +os.rename(??) +os.renames(old, new) +os.replace(??) +os.rmdir(??) +os.scandir(??) +os.sched_get_priority_max(??) +os.sched_get_priority_min(??) +os.sched_yield(??) +os.sendfile(out, in, offset, count) -> byteswritten +os.sep +os.set_blocking(fd, blocking) +os.set_inheritable(??) +os.setegid(??) +os.seteuid(??) +os.setgid(??) +os.setgroups(??) +os.setpgid(??) +os.setpgrp(??) +os.setpriority(??) +os.setregid(??) +os.setreuid(??) +os.setsid(??) +os.setuid(??) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_result(??) +os.statvfs(??) +os.statvfs_result(??) +os.strerror(??) +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(??) +os.sync(??) +os.sys(??) +os.sysconf(??) +os.sysconf_names(??) +os.system(??) +os.tcgetpgrp(??) +os.tcsetpgrp(??) +os.terminal_size(??) +os.times(??) +os.times_result(??) +os.truncate(??) +os.ttyname(??) +os.umask(??) +os.uname(??) +os.uname_result(??) +os.unlink(??) +os.unsetenv(??) +os.urandom(??) +os.utime(??) +os.wait(??) +os.wait3(??) +os.wait4(??) +os.waitpid(??) +os.walk(??) +os.write(??) +os.writev(??) +pathlib.EINVAL +pathlib.ENOENT +pathlib.ENOTDIR +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.nt(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.supports_symlinks(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(format, v1, v2, ...) -> bytes +pickle.partial(func, *args, **keywords) - new function with partial application +pickle.re(??) +pickle.sys(??) +pickle.unpack(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleInfo(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.namedtuple(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(??) +platform.DEV_NULL +platform.architecture(??) +platform.collections(??) +platform.dist(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.linux_distribution(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.popen(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.subprocess(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(system, node, release, version, machine, processor) +platform.version(??) +platform.warnings(??) +platform.win32_ver(??) +plistlib.BytesIO(??) +plistlib.Data(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate(??) +plistlib.PlistFormat(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.contextlib(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.struct(??) +plistlib.warn(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_TRAPPED +posix.DirEntry(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CLOEXEC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_EXLOCK +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.POSIX_SPAWN_CLOSE +posix.POSIX_SPAWN_DUP2 +posix.POSIX_SPAWN_OPEN +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(??) +posix.WEXITED +posix.WEXITSTATUS(??) +posix.WIFCONTINUED(??) +posix.WIFEXITED(??) +posix.WIFSIGNALED(??) +posix.WIFSTOPPED(??) +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(??) +posix.WTERMSIG(??) +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort(??) +posix.access(??) +posix.chdir(??) +posix.chflags(??) +posix.chmod(??) +posix.chown(??) +posix.chroot(??) +posix.close(??) +posix.closerange(??) +posix.confstr(??) +posix.confstr_names(??) +posix.cpu_count(??) +posix.ctermid(??) +posix.device_encoding(??) +posix.dup(??) +posix.dup2(??) +posix.environ(??) +posix.error(??) +posix.execv(??) +posix.execve(??) +posix.fchdir(??) +posix.fchmod(??) +posix.fchown(??) +posix.fork(??) +posix.forkpty(??) +posix.fpathconf(??) +posix.fspath(??) +posix.fstat(??) +posix.fstatvfs(??) +posix.fsync(??) +posix.ftruncate(??) +posix.get_blocking(fd) -> bool +posix.get_inheritable(??) +posix.get_terminal_size(??) +posix.getcwd(??) +posix.getcwdb(??) +posix.getegid(??) +posix.geteuid(??) +posix.getgid(??) +posix.getgrouplist(user, group) -> list of groups to which a user belongs +posix.getgroups(??) +posix.getloadavg(??) +posix.getlogin(??) +posix.getpgid(??) +posix.getpgrp(??) +posix.getpid(??) +posix.getppid(??) +posix.getpriority(??) +posix.getsid(??) +posix.getuid(??) +posix.initgroups(username, gid) -> None +posix.isatty(??) +posix.kill(??) +posix.killpg(??) +posix.lchflags(??) +posix.lchmod(??) +posix.lchown(??) +posix.link(??) +posix.listdir(??) +posix.lockf(??) +posix.lseek(??) +posix.lstat(??) +posix.major(??) +posix.makedev(??) +posix.minor(??) +posix.mkdir(??) +posix.mkfifo(??) +posix.mknod(??) +posix.nice(??) +posix.open(??) +posix.openpty(??) +posix.pathconf(??) +posix.pathconf_names(??) +posix.pipe(??) +posix.posix_spawn(??) +posix.pread(??) +posix.putenv(??) +posix.pwrite(??) +posix.read(??) +posix.readlink(path, *, dir_fd=None) -> path +posix.readv(??) +posix.register_at_fork(??) +posix.remove(??) +posix.rename(??) +posix.replace(??) +posix.rmdir(??) +posix.scandir(??) +posix.sched_get_priority_max(??) +posix.sched_get_priority_min(??) +posix.sched_yield(??) +posix.sendfile(out, in, offset, count) -> byteswritten +posix.set_blocking(fd, blocking) +posix.set_inheritable(??) +posix.setegid(??) +posix.seteuid(??) +posix.setgid(??) +posix.setgroups(??) +posix.setpgid(??) +posix.setpgrp(??) +posix.setpriority(??) +posix.setregid(??) +posix.setreuid(??) +posix.setsid(??) +posix.setuid(??) +posix.stat(??) +posix.stat_result(??) +posix.statvfs(??) +posix.statvfs_result(??) +posix.strerror(??) +posix.symlink(??) +posix.sync(??) +posix.sysconf(??) +posix.sysconf_names(??) +posix.system(??) +posix.tcgetpgrp(??) +posix.tcsetpgrp(??) +posix.terminal_size(??) +posix.times(??) +posix.times_result(??) +posix.truncate(??) +posix.ttyname(??) +posix.umask(??) +posix.uname(??) +posix.uname_result(??) +posix.unlink(??) +posix.unsetenv(??) +posix.urandom(??) +posix.utime(??) +posix.wait(??) +posix.wait3(??) +posix.wait4(??) +posix.waitpid(??) +posix.write(??) +posix.writev(??) +pow(??) +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(??) +pstats.Enum(??) +pstats.SortKey(??) +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall(??) +pwd.getpwnam(??) +pwd.getpwuid(??) +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.PycInvalidationMode(??) +py_compile.compile(??) +py_compile.enum(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.importlib(??) +pyclbr.io(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.sort_attributes(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.urllib(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.SimpleQueue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant. +queue.threading(??) +queue.time(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.choices(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A(??) +re.ASCII(??) +re.DEBUG(??) +re.DOTALL(??) +re.I(??) +re.IGNORECASE(??) +re.L(??) +re.LOCALE(??) +re.M(??) +re.MULTILINE(??) +re.Match(??) +re.OrderedDict(??) +re.Pattern(??) +re.RegexFlag(??) +re.S(??) +re.Scanner(??) +re.T(??) +re.TEMPLATE(??) +re.U(??) +re.UNICODE(??) +re.VERBOSE(??) +re.X(??) +re.compile(??) +re.copyreg(??) +re.enum(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.template(??) +repr(??) +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(??) +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(??) +runpy.get_importer(??) +runpy.importlib(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +runpy.types(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +secrets.DEFAULT_ENTROPY +secrets.SystemRandom(??) +secrets.base64(??) +secrets.binascii(??) +secrets.choice(??) +secrets.compare_digest(??) +secrets.os(??) +secrets.randbelow(??) +secrets.randbits(??) +secrets.token_bytes(??) +secrets.token_hex(??) +secrets.token_urlsafe(??) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(??) +shelve.BsdDbShelf(??) +shelve.BytesIO(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(??) +shutil.getpwnam(??) +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.os(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.Handlers(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT(??) +signal.SIGALRM(??) +signal.SIGBUS(??) +signal.SIGCHLD(??) +signal.SIGCONT(??) +signal.SIGEMT(??) +signal.SIGFPE(??) +signal.SIGHUP(??) +signal.SIGILL(??) +signal.SIGINFO(??) +signal.SIGINT(??) +signal.SIGIO(??) +signal.SIGIOT(??) +signal.SIGKILL(??) +signal.SIGPIPE(??) +signal.SIGPROF(??) +signal.SIGQUIT(??) +signal.SIGSEGV(??) +signal.SIGSTOP(??) +signal.SIGSYS(??) +signal.SIGTERM(??) +signal.SIGTRAP(??) +signal.SIGTSTP(??) +signal.SIGTTIN(??) +signal.SIGTTOU(??) +signal.SIGURG(??) +signal.SIGUSR1(??) +signal.SIGUSR2(??) +signal.SIGVTALRM(??) +signal.SIGWINCH(??) +signal.SIGXCPU(??) +signal.SIGXFSZ(??) +signal.SIG_BLOCK(??) +signal.SIG_DFL(??) +signal.SIG_IGN(??) +signal.SIG_SETMASK(??) +signal.SIG_UNBLOCK(??) +signal.Sigmasks(??) +signal.Signals(??) +signal.alarm(??) +signal.default_int_handler(...) +signal.getitimer(??) +signal.getsignal(??) +signal.pause(??) +signal.pthread_kill(??) +signal.pthread_sigmask(??) +signal.set_wakeup_fd(fd, *, warn_on_full_buffer=True) -> fd +signal.setitimer(??) +signal.siginterrupt(??) +signal.signal(??) +signal.sigpending(??) +signal.sigwait(??) +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPNotSupportedError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.datetime(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.sys(??) +sndhdr.SndHeaders(filetype, framerate, nchannels, nframes, sampwidth) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.namedtuple(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG(??) +socket.AI_ALL(??) +socket.AI_CANONNAME(??) +socket.AI_DEFAULT(??) +socket.AI_MASK(??) +socket.AI_NUMERICHOST(??) +socket.AI_NUMERICSERV(??) +socket.AI_PASSIVE(??) +socket.AI_V4MAPPED(??) +socket.AI_V4MAPPED_CFG(??) +socket.AddressFamily(??) +socket.AddressInfo(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_SCTP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.IntFlag(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC(??) +socket.MSG_DONTROUTE(??) +socket.MSG_DONTWAIT(??) +socket.MSG_EOF(??) +socket.MSG_EOR(??) +socket.MSG_OOB(??) +socket.MSG_PEEK(??) +socket.MSG_TRUNC(??) +socket.MSG_WAITALL(??) +socket.MsgFlag(??) +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketKind(??) +socket.SocketType(??) +socket.TCP_KEEPCNT +socket.TCP_KEEPINTVL +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.close(integer) -> None +socket.create_connection(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.selectors(??) +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.BufferedIOBase(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.os(??) +socketserver.selectors(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +socketserver.time(??) +sorted(??) +sqlite3.Binary(??) +sqlite3.Cache(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_CREATE_VTABLE +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_DROP_VTABLE +sqlite3.SQLITE_FUNCTION +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_RECURSIVE +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SAVEPOINT +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Statement(??) +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.collections(??) +sqlite3.complete_statement(sql) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Cache(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_CREATE_VTABLE +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_DROP_VTABLE +sqlite3.dbapi2.SQLITE_FUNCTION +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_RECURSIVE +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SAVEPOINT +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Statement(??) +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.collections(??) +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.AF_INET(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE(??) +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE(??) +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY(??) +ssl.ALERT_DESCRIPTION_DECODE_ERROR(??) +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE(??) +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR(??) +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE(??) +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER(??) +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY(??) +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR(??) +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION(??) +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION(??) +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW(??) +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_CA(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY(??) +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION(??) +ssl.ALERT_DESCRIPTION_USER_CANCELLED(??) +ssl.AlertDescription(??) +ssl.CERT_NONE(??) +ssl.CERT_OPTIONAL(??) +ssl.CERT_REQUIRED(??) +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ALPN(??) +ssl.HAS_ECDH(??) +ssl.HAS_NEVER_CHECK_COMMON_NAME(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.HAS_TLSv1_3(??) +ssl.MemoryBIO(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL(??) +ssl.OP_CIPHER_SERVER_PREFERENCE(??) +ssl.OP_NO_COMPRESSION(??) +ssl.OP_NO_SSLv2(??) +ssl.OP_NO_SSLv3(??) +ssl.OP_NO_TICKET(??) +ssl.OP_NO_TLSv1(??) +ssl.OP_NO_TLSv1_1(??) +ssl.OP_NO_TLSv1_2(??) +ssl.OP_NO_TLSv1_3(??) +ssl.OP_SINGLE_DH_USE(??) +ssl.OP_SINGLE_ECDH_USE(??) +ssl.Options(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv23(??) +ssl.PROTOCOL_TLS(??) +ssl.PROTOCOL_TLS_CLIENT(??) +ssl.PROTOCOL_TLS_SERVER(??) +ssl.PROTOCOL_TLSv1(??) +ssl.PROTOCOL_TLSv1_1(??) +ssl.PROTOCOL_TLSv1_2(??) +ssl.Purpose(??) +ssl.RAND_add(??) +ssl.RAND_bytes(??) +ssl.RAND_pseudo_bytes(??) +ssl.RAND_status(??) +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLCertVerificationError(??) +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLErrorNumber(??) +ssl.SSLObject(??) +ssl.SSLSession(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF(??) +ssl.SSL_ERROR_INVALID_ERROR_CODE(??) +ssl.SSL_ERROR_SSL(??) +ssl.SSL_ERROR_SYSCALL(??) +ssl.SSL_ERROR_WANT_CONNECT(??) +ssl.SSL_ERROR_WANT_READ(??) +ssl.SSL_ERROR_WANT_WRITE(??) +ssl.SSL_ERROR_WANT_X509_LOOKUP(??) +ssl.SSL_ERROR_ZERO_RETURN(??) +ssl.VERIFY_CRL_CHECK_CHAIN(??) +ssl.VERIFY_CRL_CHECK_LEAF(??) +ssl.VERIFY_DEFAULT(??) +ssl.VERIFY_X509_STRICT(??) +ssl.VERIFY_X509_TRUSTED_FIRST(??) +ssl.VerifyFlags(??) +ssl.VerifyMode(??) +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.ipaddress(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.re(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.warnings(??) +ssl.wrap_socket(??) +stat.FILE_ATTRIBUTE_ARCHIVE +stat.FILE_ATTRIBUTE_COMPRESSED +stat.FILE_ATTRIBUTE_DEVICE +stat.FILE_ATTRIBUTE_DIRECTORY +stat.FILE_ATTRIBUTE_ENCRYPTED +stat.FILE_ATTRIBUTE_HIDDEN +stat.FILE_ATTRIBUTE_INTEGRITY_STREAM +stat.FILE_ATTRIBUTE_NORMAL +stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +stat.FILE_ATTRIBUTE_NO_SCRUB_DATA +stat.FILE_ATTRIBUTE_OFFLINE +stat.FILE_ATTRIBUTE_READONLY +stat.FILE_ATTRIBUTE_REPARSE_POINT +stat.FILE_ATTRIBUTE_SPARSE_FILE +stat.FILE_ATTRIBUTE_SYSTEM +stat.FILE_ATTRIBUTE_TEMPORARY +stat.FILE_ATTRIBUTE_VIRTUAL +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Decimal(??) +statistics.Fraction(??) +statistics.StatisticsError(??) +statistics.bisect_left(a, x[, lo[, hi]]) -> index +statistics.bisect_right(a, x[, lo[, hi]]) -> index +statistics.collections(??) +statistics.groupby(iterable, key=None) -> make an iterator that returns consecutive +statistics.harmonic_mean(??) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.numbers(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.stdev(??) +statistics.variance(??) +str(object='') -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(??) +struct.calcsize(??) +struct.error(??) +struct.iter_unpack(??) +struct.pack(format, v1, v2, ...) -> bytes +struct.pack_into(format, buffer, offset, v1, v2, ...) +struct.unpack(??) +struct.unpack_from(??) +subprocess.CalledProcessError(??) +subprocess.CompletedProcess(??) +subprocess.DEVNULL +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.errno(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.os(??) +subprocess.run(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.threading(??) +subprocess.time(??) +subprocess.warnings(??) +sum(??) +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +sunau.openfp(??) +sunau.warnings(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.annassign +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.async_funcdef +symbol.async_stmt +symbol.atom +symbol.atom_expr +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.sync_comp_for +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_arg +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_ANNOT +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.api_version +sys.argv(??) +sys.base_exec_prefix +sys.base_prefix +sys.breakpointhook(*args, **kws) +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(func, args) -> object +sys.callstats() -> tuple of integers +sys.copyright +sys.displayhook(object) -> None +sys.dont_write_bytecode(??) +sys.exc_info() -> (type, value, traceback) +sys.excepthook(exctype, value, traceback) -> None +sys.exec_prefix +sys.executable +sys.exit([status]) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.get_asyncgen_hooks() +sys.get_coroutine_origin_tracking_depth(??) +sys.get_coroutine_wrapper() +sys.getallocatedblocks() -> integer +sys.getcheckinterval() -> current check interval; see setcheckinterval(). +sys.getdefaultencoding() -> string +sys.getdlopenflags() -> int +sys.getfilesystemencodeerrors() -> string +sys.getfilesystemencoding() -> string +sys.getprofile() +sys.getrecursionlimit() +sys.getrefcount(object) -> integer +sys.getsizeof(object, default) -> int +sys.getswitchinterval() -> current thread switch interval; see setswitchinterval(). +sys.gettrace() +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(string) -> string +sys.is_finalizing() +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.set_asyncgen_hooks(*, firstiter=None, finalizer=None) +sys.set_coroutine_origin_tracking_depth(??) +sys.set_coroutine_wrapper(wrapper) +sys.setcheckinterval(n) +sys.setdlopenflags(n) -> None +sys.setprofile(function) +sys.setrecursionlimit(n) +sys.setswitchinterval(n) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.thread_info(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.filemode(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempdirb(??) +tempfile.gettempprefix(??) +tempfile.gettempprefixb(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.get_ident() -> integer +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.altzone +time.asctime([tuple]) -> string +time.clock() -> floating point number +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.monotonic_ns() -> int +time.perf_counter() -> float +time.perf_counter_ns() -> int +time.process_time() -> float +time.process_time_ns(??) +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.time_ns() -> int +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.EventType(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog.ACTIVE +tkinter.commondialog.ALL +tkinter.commondialog.ANCHOR +tkinter.commondialog.ARC +tkinter.commondialog.BASELINE +tkinter.commondialog.BEVEL +tkinter.commondialog.BOTH +tkinter.commondialog.BOTTOM +tkinter.commondialog.BROWSE +tkinter.commondialog.BUTT +tkinter.commondialog.BaseWidget(??) +tkinter.commondialog.BitmapImage(??) +tkinter.commondialog.BooleanVar(??) +tkinter.commondialog.Button(??) +tkinter.commondialog.CASCADE +tkinter.commondialog.CENTER +tkinter.commondialog.CHAR +tkinter.commondialog.CHECKBUTTON +tkinter.commondialog.CHORD +tkinter.commondialog.COMMAND +tkinter.commondialog.CURRENT +tkinter.commondialog.CallWrapper(??) +tkinter.commondialog.Canvas(??) +tkinter.commondialog.Checkbutton(??) +tkinter.commondialog.DISABLED +tkinter.commondialog.DOTBOX +tkinter.commondialog.Dialog(??) +tkinter.commondialog.DoubleVar(??) +tkinter.commondialog.E +tkinter.commondialog.END +tkinter.commondialog.EW +tkinter.commondialog.EXCEPTION +tkinter.commondialog.EXTENDED +tkinter.commondialog.Entry(??) +tkinter.commondialog.Event(??) +tkinter.commondialog.EventType(??) +tkinter.commondialog.FALSE +tkinter.commondialog.FIRST +tkinter.commondialog.FLAT +tkinter.commondialog.Frame(??) +tkinter.commondialog.GROOVE +tkinter.commondialog.Grid(??) +tkinter.commondialog.HIDDEN +tkinter.commondialog.HORIZONTAL +tkinter.commondialog.INSERT +tkinter.commondialog.INSIDE +tkinter.commondialog.Image(??) +tkinter.commondialog.IntVar(??) +tkinter.commondialog.LAST +tkinter.commondialog.LEFT +tkinter.commondialog.Label(??) +tkinter.commondialog.LabelFrame(??) +tkinter.commondialog.Listbox(??) +tkinter.commondialog.MITER +tkinter.commondialog.MOVETO +tkinter.commondialog.MULTIPLE +tkinter.commondialog.Menu(??) +tkinter.commondialog.Menubutton(??) +tkinter.commondialog.Message(??) +tkinter.commondialog.Misc(??) +tkinter.commondialog.N +tkinter.commondialog.NE +tkinter.commondialog.NO +tkinter.commondialog.NONE +tkinter.commondialog.NORMAL +tkinter.commondialog.NS +tkinter.commondialog.NSEW +tkinter.commondialog.NUMERIC +tkinter.commondialog.NW +tkinter.commondialog.NoDefaultRoot(??) +tkinter.commondialog.OFF +tkinter.commondialog.ON +tkinter.commondialog.OUTSIDE +tkinter.commondialog.OptionMenu(??) +tkinter.commondialog.PAGES +tkinter.commondialog.PIESLICE +tkinter.commondialog.PROJECTING +tkinter.commondialog.Pack(??) +tkinter.commondialog.PanedWindow(??) +tkinter.commondialog.PhotoImage(??) +tkinter.commondialog.Place(??) +tkinter.commondialog.RADIOBUTTON +tkinter.commondialog.RAISED +tkinter.commondialog.READABLE +tkinter.commondialog.RIDGE +tkinter.commondialog.RIGHT +tkinter.commondialog.ROUND +tkinter.commondialog.Radiobutton(??) +tkinter.commondialog.S +tkinter.commondialog.SCROLL +tkinter.commondialog.SE +tkinter.commondialog.SEL +tkinter.commondialog.SEL_FIRST +tkinter.commondialog.SEL_LAST +tkinter.commondialog.SEPARATOR +tkinter.commondialog.SINGLE +tkinter.commondialog.SOLID +tkinter.commondialog.SUNKEN +tkinter.commondialog.SW +tkinter.commondialog.Scale(??) +tkinter.commondialog.Scrollbar(??) +tkinter.commondialog.Spinbox(??) +tkinter.commondialog.StringVar(??) +tkinter.commondialog.TOP +tkinter.commondialog.TRUE +tkinter.commondialog.Tcl(??) +tkinter.commondialog.TclError(??) +tkinter.commondialog.TclVersion +tkinter.commondialog.Text(??) +tkinter.commondialog.Tk(??) +tkinter.commondialog.TkVersion +tkinter.commondialog.Toplevel(??) +tkinter.commondialog.UNDERLINE +tkinter.commondialog.UNITS +tkinter.commondialog.VERTICAL +tkinter.commondialog.Variable(??) +tkinter.commondialog.W +tkinter.commondialog.WORD +tkinter.commondialog.WRITABLE +tkinter.commondialog.Widget(??) +tkinter.commondialog.Wm(??) +tkinter.commondialog.X +tkinter.commondialog.XView(??) +tkinter.commondialog.Y +tkinter.commondialog.YES +tkinter.commondialog.YView(??) +tkinter.commondialog.constants(??) +tkinter.commondialog.enum(??) +tkinter.commondialog.getboolean(??) +tkinter.commondialog.getdouble(??) +tkinter.commondialog.getint(??) +tkinter.commondialog.image_names(??) +tkinter.commondialog.image_types(??) +tkinter.commondialog.mainloop(??) +tkinter.commondialog.re(??) +tkinter.commondialog.sys(??) +tkinter.commondialog.wantobjects +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog.ACTIVE +tkinter.dialog.ALL +tkinter.dialog.ANCHOR +tkinter.dialog.ARC +tkinter.dialog.BASELINE +tkinter.dialog.BEVEL +tkinter.dialog.BOTH +tkinter.dialog.BOTTOM +tkinter.dialog.BROWSE +tkinter.dialog.BUTT +tkinter.dialog.BaseWidget(??) +tkinter.dialog.BitmapImage(??) +tkinter.dialog.BooleanVar(??) +tkinter.dialog.Button(??) +tkinter.dialog.CASCADE +tkinter.dialog.CENTER +tkinter.dialog.CHAR +tkinter.dialog.CHECKBUTTON +tkinter.dialog.CHORD +tkinter.dialog.COMMAND +tkinter.dialog.CURRENT +tkinter.dialog.CallWrapper(??) +tkinter.dialog.Canvas(??) +tkinter.dialog.Checkbutton(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.DISABLED +tkinter.dialog.DOTBOX +tkinter.dialog.Dialog(??) +tkinter.dialog.DoubleVar(??) +tkinter.dialog.E +tkinter.dialog.END +tkinter.dialog.EW +tkinter.dialog.EXCEPTION +tkinter.dialog.EXTENDED +tkinter.dialog.Entry(??) +tkinter.dialog.Event(??) +tkinter.dialog.EventType(??) +tkinter.dialog.FALSE +tkinter.dialog.FIRST +tkinter.dialog.FLAT +tkinter.dialog.Frame(??) +tkinter.dialog.GROOVE +tkinter.dialog.Grid(??) +tkinter.dialog.HIDDEN +tkinter.dialog.HORIZONTAL +tkinter.dialog.INSERT +tkinter.dialog.INSIDE +tkinter.dialog.Image(??) +tkinter.dialog.IntVar(??) +tkinter.dialog.LAST +tkinter.dialog.LEFT +tkinter.dialog.Label(??) +tkinter.dialog.LabelFrame(??) +tkinter.dialog.Listbox(??) +tkinter.dialog.MITER +tkinter.dialog.MOVETO +tkinter.dialog.MULTIPLE +tkinter.dialog.Menu(??) +tkinter.dialog.Menubutton(??) +tkinter.dialog.Message(??) +tkinter.dialog.Misc(??) +tkinter.dialog.N +tkinter.dialog.NE +tkinter.dialog.NO +tkinter.dialog.NONE +tkinter.dialog.NORMAL +tkinter.dialog.NS +tkinter.dialog.NSEW +tkinter.dialog.NUMERIC +tkinter.dialog.NW +tkinter.dialog.NoDefaultRoot(??) +tkinter.dialog.OFF +tkinter.dialog.ON +tkinter.dialog.OUTSIDE +tkinter.dialog.OptionMenu(??) +tkinter.dialog.PAGES +tkinter.dialog.PIESLICE +tkinter.dialog.PROJECTING +tkinter.dialog.Pack(??) +tkinter.dialog.PanedWindow(??) +tkinter.dialog.PhotoImage(??) +tkinter.dialog.Place(??) +tkinter.dialog.RADIOBUTTON +tkinter.dialog.RAISED +tkinter.dialog.READABLE +tkinter.dialog.RIDGE +tkinter.dialog.RIGHT +tkinter.dialog.ROUND +tkinter.dialog.Radiobutton(??) +tkinter.dialog.S +tkinter.dialog.SCROLL +tkinter.dialog.SE +tkinter.dialog.SEL +tkinter.dialog.SEL_FIRST +tkinter.dialog.SEL_LAST +tkinter.dialog.SEPARATOR +tkinter.dialog.SINGLE +tkinter.dialog.SOLID +tkinter.dialog.SUNKEN +tkinter.dialog.SW +tkinter.dialog.Scale(??) +tkinter.dialog.Scrollbar(??) +tkinter.dialog.Spinbox(??) +tkinter.dialog.StringVar(??) +tkinter.dialog.TOP +tkinter.dialog.TRUE +tkinter.dialog.Tcl(??) +tkinter.dialog.TclError(??) +tkinter.dialog.TclVersion +tkinter.dialog.Text(??) +tkinter.dialog.Tk(??) +tkinter.dialog.TkVersion +tkinter.dialog.Toplevel(??) +tkinter.dialog.UNDERLINE +tkinter.dialog.UNITS +tkinter.dialog.VERTICAL +tkinter.dialog.Variable(??) +tkinter.dialog.W +tkinter.dialog.WORD +tkinter.dialog.WRITABLE +tkinter.dialog.Widget(??) +tkinter.dialog.Wm(??) +tkinter.dialog.X +tkinter.dialog.XView(??) +tkinter.dialog.Y +tkinter.dialog.YES +tkinter.dialog.YView(??) +tkinter.dialog.colorchooser(??) +tkinter.dialog.commondialog(??) +tkinter.dialog.constants(??) +tkinter.dialog.enum(??) +tkinter.dialog.getboolean(??) +tkinter.dialog.getdouble(??) +tkinter.dialog.getint(??) +tkinter.dialog.image_names(??) +tkinter.dialog.image_types(??) +tkinter.dialog.mainloop(??) +tkinter.dialog.re(??) +tkinter.dialog.sys(??) +tkinter.dialog.wantobjects +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.enum(??) +tkinter.filedialog.ACTIVE +tkinter.filedialog.ALL +tkinter.filedialog.ANCHOR +tkinter.filedialog.ARC +tkinter.filedialog.BASELINE +tkinter.filedialog.BEVEL +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.BROWSE +tkinter.filedialog.BUTT +tkinter.filedialog.BaseWidget(??) +tkinter.filedialog.BitmapImage(??) +tkinter.filedialog.BooleanVar(??) +tkinter.filedialog.Button(??) +tkinter.filedialog.CASCADE +tkinter.filedialog.CENTER +tkinter.filedialog.CHAR +tkinter.filedialog.CHECKBUTTON +tkinter.filedialog.CHORD +tkinter.filedialog.COMMAND +tkinter.filedialog.CURRENT +tkinter.filedialog.CallWrapper(??) +tkinter.filedialog.Canvas(??) +tkinter.filedialog.Checkbutton(??) +tkinter.filedialog.DISABLED +tkinter.filedialog.DOTBOX +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.DoubleVar(??) +tkinter.filedialog.E +tkinter.filedialog.END +tkinter.filedialog.EW +tkinter.filedialog.EXCEPTION +tkinter.filedialog.EXTENDED +tkinter.filedialog.Entry(??) +tkinter.filedialog.Event(??) +tkinter.filedialog.EventType(??) +tkinter.filedialog.FALSE +tkinter.filedialog.FIRST +tkinter.filedialog.FLAT +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.GROOVE +tkinter.filedialog.Grid(??) +tkinter.filedialog.HIDDEN +tkinter.filedialog.HORIZONTAL +tkinter.filedialog.INSERT +tkinter.filedialog.INSIDE +tkinter.filedialog.Image(??) +tkinter.filedialog.IntVar(??) +tkinter.filedialog.LAST +tkinter.filedialog.LEFT +tkinter.filedialog.Label(??) +tkinter.filedialog.LabelFrame(??) +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.MITER +tkinter.filedialog.MOVETO +tkinter.filedialog.MULTIPLE +tkinter.filedialog.Menu(??) +tkinter.filedialog.Menubutton(??) +tkinter.filedialog.Message(??) +tkinter.filedialog.Misc(??) +tkinter.filedialog.N +tkinter.filedialog.NE +tkinter.filedialog.NO +tkinter.filedialog.NONE +tkinter.filedialog.NORMAL +tkinter.filedialog.NS +tkinter.filedialog.NSEW +tkinter.filedialog.NUMERIC +tkinter.filedialog.NW +tkinter.filedialog.NoDefaultRoot(??) +tkinter.filedialog.OFF +tkinter.filedialog.ON +tkinter.filedialog.OUTSIDE +tkinter.filedialog.Open(??) +tkinter.filedialog.OptionMenu(??) +tkinter.filedialog.PAGES +tkinter.filedialog.PIESLICE +tkinter.filedialog.PROJECTING +tkinter.filedialog.Pack(??) +tkinter.filedialog.PanedWindow(??) +tkinter.filedialog.PhotoImage(??) +tkinter.filedialog.Place(??) +tkinter.filedialog.RADIOBUTTON +tkinter.filedialog.RAISED +tkinter.filedialog.READABLE +tkinter.filedialog.RIDGE +tkinter.filedialog.RIGHT +tkinter.filedialog.ROUND +tkinter.filedialog.Radiobutton(??) +tkinter.filedialog.S +tkinter.filedialog.SCROLL +tkinter.filedialog.SE +tkinter.filedialog.SEL +tkinter.filedialog.SEL_FIRST +tkinter.filedialog.SEL_LAST +tkinter.filedialog.SEPARATOR +tkinter.filedialog.SINGLE +tkinter.filedialog.SOLID +tkinter.filedialog.SUNKEN +tkinter.filedialog.SW +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scale(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.Spinbox(??) +tkinter.filedialog.StringVar(??) +tkinter.filedialog.TOP +tkinter.filedialog.TRUE +tkinter.filedialog.Tcl(??) +tkinter.filedialog.TclError(??) +tkinter.filedialog.TclVersion +tkinter.filedialog.Text(??) +tkinter.filedialog.Tk(??) +tkinter.filedialog.TkVersion +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.UNDERLINE +tkinter.filedialog.UNITS +tkinter.filedialog.VERTICAL +tkinter.filedialog.Variable(??) +tkinter.filedialog.W +tkinter.filedialog.WORD +tkinter.filedialog.WRITABLE +tkinter.filedialog.Widget(??) +tkinter.filedialog.Wm(??) +tkinter.filedialog.X +tkinter.filedialog.XView(??) +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.YView(??) +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.colorchooser(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.constants(??) +tkinter.filedialog.dialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.dnd(??) +tkinter.filedialog.enum(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.getboolean(??) +tkinter.filedialog.getdouble(??) +tkinter.filedialog.getint(??) +tkinter.filedialog.image_names(??) +tkinter.filedialog.image_types(??) +tkinter.filedialog.mainloop(??) +tkinter.filedialog.os(??) +tkinter.filedialog.re(??) +tkinter.filedialog.sys(??) +tkinter.filedialog.test(??) +tkinter.filedialog.wantobjects +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.EventType(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.colorchooser(??) +tkinter.simpledialog.commondialog(??) +tkinter.simpledialog.constants(??) +tkinter.simpledialog.dialog(??) +tkinter.simpledialog.dnd(??) +tkinter.simpledialog.enum(??) +tkinter.simpledialog.filedialog(??) +tkinter.simpledialog.font(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.simpledialog.re(??) +tkinter.simpledialog.scrolledtext(??) +tkinter.simpledialog.sys(??) +tkinter.simpledialog.tkinter(??) +tkinter.simpledialog.wantobjects +tkinter.sys(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.EventType(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.colorchooser(??) +tkinter.tix.commondialog(??) +tkinter.tix.constants(??) +tkinter.tix.dialog(??) +tkinter.tix.dnd(??) +tkinter.tix.enum(??) +tkinter.tix.filedialog(??) +tkinter.tix.font(??) +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.messagebox(??) +tkinter.tix.os(??) +tkinter.tix.re(??) +tkinter.tix.scrolledtext(??) +tkinter.tix.simpledialog(??) +tkinter.tix.sys(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.wantobjects +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.wantobjects +token.AMPER +token.AMPEREQUAL +token.ASYNC +token.AT +token.ATEQUAL +token.AWAIT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COMMA +token.COMMENT +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENCODING +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NL +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.ASYNC +tokenize.AT +tokenize.ATEQUAL +tokenize.AWAIT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.Bracket +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.Operator +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.chain(*iterables) --> chain object +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.u +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.os(??) +trace.pickle(??) +trace.re(??) +trace.rx_blank(??) +trace.sys(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +traceback.FrameSummary(??) +traceback.StackSummary(??) +traceback.TracebackException(??) +traceback.clear_frames(??) +traceback.collections(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.itertools(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +traceback.walk_stack(??) +traceback.walk_tb(??) +tracemalloc.BaseFilter(??) +tracemalloc.DomainFilter(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Iterable(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces(??) +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit(??) +tracemalloc.get_traced_memory(??) +tracemalloc.get_tracemalloc_memory(??) +tracemalloc.is_tracing(??) +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.start(??) +tracemalloc.stop(??) +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple(??) +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.sys(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object_or_name, bases, dict) +types.AsyncGeneratorType(??) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.ClassMethodDescriptorType(??) +types.CodeType(??) +types.CoroutineType(??) +types.DynamicClassAttribute(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodDescriptorType(??) +types.MethodType(??) +types.MethodWrapperType(??) +types.ModuleType(??) +types.SimpleNamespace(??) +types.TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno) +types.WrapperDescriptorType(??) +types.coroutine(??) +types.new_class(??) +types.prepare_class(??) +types.resolve_bases(??) +typing.AbstractSet(??) +typing.Any(??) +typing.AnyStr(??) +typing.AsyncContextManager(??) +typing.AsyncGenerator(??) +typing.AsyncIterable(??) +typing.AsyncIterator(??) +typing.Awaitable(??) +typing.BinaryIO(??) +typing.ByteString(??) +typing.CT_co(??) +typing.Callable(??) +typing.ChainMap(??) +typing.ClassVar(??) +typing.Collection(??) +typing.Container(??) +typing.ContextManager(??) +typing.Coroutine(??) +typing.Counter(??) +typing.DefaultDict(??) +typing.Deque(??) +typing.Dict(??) +typing.ForwardRef(??) +typing.FrozenSet(??) +typing.Generator(??) +typing.Generic(??) +typing.Hashable(??) +typing.IO(??) +typing.ItemsView(??) +typing.Iterable(??) +typing.Iterator(??) +typing.KT(??) +typing.KeysView(??) +typing.List(??) +typing.Mapping(??) +typing.MappingView(??) +typing.Match(??) +typing.MethodDescriptorType(??) +typing.MethodWrapperType(??) +typing.MutableMapping(??) +typing.MutableSequence(??) +typing.MutableSet(??) +typing.NamedTuple(??) +typing.NamedTupleMeta(??) +typing.NewType(??) +typing.NoReturn(??) +typing.Optional(??) +typing.Pattern(??) +typing.Reversible(??) +typing.Sequence(??) +typing.Set(??) +typing.Sized(??) +typing.SupportsAbs(??) +typing.SupportsBytes(??) +typing.SupportsComplex(??) +typing.SupportsFloat(??) +typing.SupportsInt(??) +typing.SupportsRound(??) +typing.T(??) +typing.TYPE_CHECKING(??) +typing.T_co(??) +typing.T_contra(??) +typing.Text(??) +typing.TextIO(??) +typing.Tuple(??) +typing.Type(??) +typing.TypeVar(??) +typing.Union(??) +typing.VT(??) +typing.VT_co(??) +typing.V_co(??) +typing.ValuesView(??) +typing.WrapperDescriptorType(??) +typing.abc(??) +typing.abstractmethod(??) +typing.abstractproperty(??) +typing.cast(??) +typing.collections(??) +typing.contextlib(??) +typing.functools(??) +typing.get_type_hints(??) +typing.io(??) +typing.no_type_check(??) +typing.no_type_check_decorator(??) +typing.overload(??) +typing.re(??) +typing.stdlib_re(??) +typing.sys(??) +typing.types(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.parse.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.parse.splitnport(??) +urllib.parse.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.parse.splitport('host:port') --> 'host', 'port'. +urllib.parse.splitquery('/path?query') --> '/path', 'query'. +urllib.parse.splittag('/path#tag') --> '/path', 'tag'. +urllib.parse.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.parse.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.parse.splitvalue('attr=value') --> 'attr', 'value'. +urllib.parse.sys(??) +urllib.parse.to_bytes(u"URL") --> 'URL'. +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap('') --> 'type://host/path'. +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPPasswordMgrWithPriorAuth(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.splitattr('/path;attr1=value1;attr2=value2;...') -> +urllib.request.splithost('//host[:port]/path') --> 'host[:port]', '/path'. +urllib.request.splitpasswd('user:passwd') -> 'user', 'passwd'. +urllib.request.splitport('host:port') --> 'host', 'port'. +urllib.request.splitquery('/path?query') --> '/path', 'query'. +urllib.request.splittag('/path#tag') --> '/path', 'tag'. +urllib.request.splittype('type:opaquestring') --> 'type', 'opaquestring'. +urllib.request.splituser('user[:passwd]@host[:port]') --> 'user[:passwd]', 'host[:port]'. +urllib.request.splitvalue('attr=value') --> 'attr', 'value'. +urllib.request.ssl(??) +urllib.request.string(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.to_bytes(u"URL") --> 'URL'. +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap('') --> 'type://host/path'. +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.response.tempfile(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RequestRate(requests, seconds) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.collections(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.Enum(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.SafeUUID(??) +uuid.UUID(??) +uuid.bytes_(??) +uuid.getnode(??) +uuid.int_(??) +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.audioop(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +wave.sys(??) +wave.warnings(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.itertools(??) +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.register_standard_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.threading(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.raise_conversion_error(??) +xdrlib.struct(??) +xdrlib.wraps(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.warnings(??) +xml.dom.xmlbuilder.xml(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.collections(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLPullParser(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(??) +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate(??) +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Decimal(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.http(??) +xmlrpc.server.inspect(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.partial(func, *args, **keywords) - new function with partial application +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(iter1 [,iter2 [...]]) --> zip object +zipapp.MAIN_TEMPLATE +zipapp.ZipAppError(??) +zipapp.contextlib(??) +zipapp.create_archive(??) +zipapp.get_interpreter(??) +zipapp.main(??) +zipapp.os(??) +zipapp.pathlib(??) +zipapp.shebang_encoding +zipapp.shutil(??) +zipapp.stat(??) +zipapp.sys(??) +zipapp.zipfile(??) +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.DEFAULT_VERSION +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.threading(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.ZipImportError(??) +zipimport.zipimporter(??) diff --git a/third_party/qscintilla/qsci/api/python/Python-3.8.api b/third_party/qscintilla/qsci/api/python/Python-3.8.api new file mode 100644 index 0000000..09c1ac3 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.8.api @@ -0,0 +1,9553 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +ModuleNotFoundError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +RecursionError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopAsyncIteration(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abs(??) +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.openfp(??) +aifc.struct(??) +aifc.warnings(??) +all(??) +any(??) +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +ascii(??) +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.AnnAssign(??) +ast.Assert(??) +ast.Assign(??) +ast.AsyncFor(??) +ast.AsyncFunctionDef(??) +ast.AsyncWith(??) +ast.Attribute(??) +ast.AugAssign(??) +ast.AugLoad(??) +ast.AugStore(??) +ast.Await(??) +ast.BinOp(??) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(??) +ast.Break(??) +ast.Bytes(??) +ast.Call(??) +ast.ClassDef(??) +ast.Compare(??) +ast.Constant(??) +ast.Continue(??) +ast.Del(??) +ast.Delete(??) +ast.Dict(??) +ast.DictComp(??) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(??) +ast.Expr(??) +ast.Expression(??) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(??) +ast.FormattedValue(??) +ast.FunctionDef(??) +ast.FunctionType(??) +ast.GeneratorExp(??) +ast.Global(??) +ast.Gt(??) +ast.GtE(??) +ast.If(??) +ast.IfExp(??) +ast.Import(??) +ast.ImportFrom(??) +ast.In(??) +ast.Index(??) +ast.Interactive(??) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.JoinedStr(??) +ast.LShift(??) +ast.Lambda(??) +ast.List(??) +ast.ListComp(??) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.MatMult(??) +ast.Mod(??) +ast.Module(??) +ast.Mult(??) +ast.Name(??) +ast.NameConstant(??) +ast.NamedExpr(??) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(??) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ALLOW_TOP_LEVEL_AWAIT +ast.PyCF_ONLY_AST +ast.PyCF_TYPE_COMMENTS +ast.RShift(??) +ast.Raise(??) +ast.Return(??) +ast.Set(??) +ast.SetComp(??) +ast.Slice(??) +ast.Starred(??) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(??) +ast.Suite(??) +ast.Try(??) +ast.Tuple(??) +ast.TypeIgnore(??) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(??) +ast.While(??) +ast.With(??) +ast.Yield(??) +ast.YieldFrom(??) +ast.alias(??) +ast.arg(??) +ast.arguments(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.get_source_segment(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(??) +ast.literal_eval(??) +ast.mod(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.type_ignore(??) +ast.unaryop(??) +ast.walk(??) +ast.withitem(??) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.BaseEventLoop(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.BufferedProtocol(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.LifoQueue(??) +asyncio.LimitOverrunError(??) +asyncio.Lock(??) +asyncio.MultiLoopChildWatcher(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.SendfileNotAvailableError(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.ThreadedChildWatcher(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.all_tasks(??) +asyncio.as_completed(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.MAXIMUM_SELECT_TIMEOUT +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.constants(??) +asyncio.base_events.coroutines(??) +asyncio.base_events.events(??) +asyncio.base_events.exceptions(??) +asyncio.base_events.functools(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.itertools(??) +asyncio.base_events.logger(??) +asyncio.base_events.os(??) +asyncio.base_events.protocols(??) +asyncio.base_events.socket(??) +asyncio.base_events.ssl(??) +asyncio.base_events.sslproto(??) +asyncio.base_events.staggered(??) +asyncio.base_events.stat(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.threading(??) +asyncio.base_events.time(??) +asyncio.base_events.traceback(??) +asyncio.base_events.transports(??) +asyncio.base_events.trsock(??) +asyncio.base_events.warnings(??) +asyncio.base_events.weakref(??) +asyncio.base_futures(??) +asyncio.base_futures.format_helpers(??) +asyncio.base_futures.isfuture(??) +asyncio.base_futures.reprlib(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.logger(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.transports(??) +asyncio.base_subprocess.warnings(??) +asyncio.base_tasks(??) +asyncio.base_tasks.base_futures(??) +asyncio.base_tasks.coroutines(??) +asyncio.base_tasks.linecache(??) +asyncio.base_tasks.traceback(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.DEBUG_STACK_DEPTH +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.constants.SENDFILE_FALLBACK_READBUFFER_SIZE +asyncio.constants.SSL_HANDSHAKE_TIMEOUT +asyncio.constants.enum(??) +asyncio.coroutine(??) +asyncio.coroutines(??) +asyncio.coroutines.CoroWrapper(??) +asyncio.coroutines.base_futures(??) +asyncio.coroutines.collections(??) +asyncio.coroutines.constants(??) +asyncio.coroutines.coroutine(??) +asyncio.coroutines.format_helpers(??) +asyncio.coroutines.functools(??) +asyncio.coroutines.inspect(??) +asyncio.coroutines.iscoroutine(??) +asyncio.coroutines.iscoroutinefunction(??) +asyncio.coroutines.logger(??) +asyncio.coroutines.os(??) +asyncio.coroutines.sys(??) +asyncio.coroutines.traceback(??) +asyncio.coroutines.types(??) +asyncio.coroutines.warnings(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.create_task(??) +asyncio.current_task(??) +asyncio.ensure_future(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.TimerHandle(??) +asyncio.events.contextvars(??) +asyncio.events.exceptions(??) +asyncio.events.format_helpers(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.get_running_loop(??) +asyncio.events.new_event_loop(??) +asyncio.events.os(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.sys(??) +asyncio.events.threading(??) +asyncio.exceptions(??) +asyncio.exceptions.CancelledError(??) +asyncio.exceptions.IncompleteReadError(??) +asyncio.exceptions.InvalidStateError(??) +asyncio.exceptions.LimitOverrunError(??) +asyncio.exceptions.SendfileNotAvailableError(??) +asyncio.exceptions.TimeoutError(??) +asyncio.format_helpers(??) +asyncio.format_helpers.constants(??) +asyncio.format_helpers.extract_stack(??) +asyncio.format_helpers.functools(??) +asyncio.format_helpers.inspect(??) +asyncio.format_helpers.reprlib(??) +asyncio.format_helpers.sys(??) +asyncio.format_helpers.traceback(??) +asyncio.futures(??) +asyncio.futures.Future(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.base_futures(??) +asyncio.futures.concurrent(??) +asyncio.futures.contextvars(??) +asyncio.futures.events(??) +asyncio.futures.exceptions(??) +asyncio.futures.format_helpers(??) +asyncio.futures.isfuture(??) +asyncio.futures.logging(??) +asyncio.futures.sys(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.get_running_loop(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.isfuture(??) +asyncio.locks(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.coroutines(??) +asyncio.locks.events(??) +asyncio.locks.exceptions(??) +asyncio.locks.futures(??) +asyncio.locks.types(??) +asyncio.locks.warnings(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.collections(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.exceptions(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.io(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.os(??) +asyncio.proactor_events.protocols(??) +asyncio.proactor_events.signal(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.sslproto(??) +asyncio.proactor_events.threading(??) +asyncio.proactor_events.transports(??) +asyncio.proactor_events.trsock(??) +asyncio.proactor_events.warnings(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.BufferedProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.events(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.queues.warnings(??) +asyncio.run(??) +asyncio.run_coroutine_threadsafe(??) +asyncio.runners(??) +asyncio.runners.coroutines(??) +asyncio.runners.events(??) +asyncio.runners.run(??) +asyncio.runners.tasks(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.functools(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.protocols(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.sslproto(??) +asyncio.selector_events.transports(??) +asyncio.selector_events.trsock(??) +asyncio.selector_events.warnings(??) +asyncio.selector_events.weakref(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.sslproto(??) +asyncio.sslproto.SSLProtocol(??) +asyncio.sslproto.base_events(??) +asyncio.sslproto.collections(??) +asyncio.sslproto.constants(??) +asyncio.sslproto.logger(??) +asyncio.sslproto.protocols(??) +asyncio.sslproto.ssl(??) +asyncio.sslproto.transports(??) +asyncio.sslproto.warnings(??) +asyncio.staggered(??) +asyncio.staggered.contextlib(??) +asyncio.staggered.events(??) +asyncio.staggered.futures(??) +asyncio.staggered.locks(??) +asyncio.staggered.staggered_race(??) +asyncio.staggered.tasks(??) +asyncio.staggered.typing(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.coroutines(??) +asyncio.streams.events(??) +asyncio.streams.exceptions(??) +asyncio.streams.format_helpers(??) +asyncio.streams.logger(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.sleep(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.streams.sys(??) +asyncio.streams.warnings(??) +asyncio.streams.weakref(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.logger(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.subprocess.warnings(??) +asyncio.sys(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.Task(??) +asyncio.tasks.all_tasks(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.base_tasks(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.contextvars(??) +asyncio.tasks.coroutines(??) +asyncio.tasks.create_task(??) +asyncio.tasks.current_task(??) +asyncio.tasks.ensure_future(??) +asyncio.tasks.events(??) +asyncio.tasks.exceptions(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.itertools(??) +asyncio.tasks.run_coroutine_threadsafe(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.types(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.warnings(??) +asyncio.tasks.weakref(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.trsock(??) +asyncio.trsock.TransportSocket(??) +asyncio.trsock.socket(??) +asyncio.trsock.warnings(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.MultiLoopChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.ThreadedChildWatcher(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.coroutines(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.exceptions(??) +asyncio.unix_events.futures(??) +asyncio.unix_events.io(??) +asyncio.unix_events.itertools(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.selectors(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.tasks(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.unix_events.warnings(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.decodestring(??) +base64.encode(??) +base64.encodebytes(??) +base64.encodestring(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_ASYNC_GENERATOR +bdb.CO_COROUTINE +bdb.CO_GENERATOR +bdb.GENERATOR_AND_COROUTINE_FLAGS +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +bisect.bisect(??) +bisect.bisect_left(a, x[, lo[, hi]]) -> index +bisect.bisect_right(a, x[, lo[, hi]]) -> index +bisect.insort(??) +bisect.insort_left(a, x[, lo[, hi]]) +bisect.insort_right(a, x[, lo[, hi]]) +bool(x) -> bool +breakpoint(*args, **kws) +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.ModuleNotFoundError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.RecursionError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopAsyncIteration(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(??) +builtins.all(??) +builtins.any(??) +builtins.ascii(??) +builtins.bin(??) +builtins.bool(x) -> bool +builtins.breakpoint(*args, **kws) +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(??) +builtins.chr(??) +builtins.classmethod(function) -> method +builtins.compile(??) +builtins.complex(??) +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(??) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(??) +builtins.enumerate(??) +builtins.eval(??) +builtins.exec(??) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(??) +builtins.format(??) +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals(??) +builtins.hasattr(??) +builtins.hash(??) +builtins.help(??) +builtins.hex(??) +builtins.id(??) +builtins.input(??) +builtins.int([x]) -> integer +builtins.isinstance(??) +builtins.issubclass(??) +builtins.iter(iterable) -> iterator +builtins.len(??) +builtins.license(??) +builtins.list(??) +builtins.locals(??) +builtins.map(func, *iterables) --> map object +builtins.max(iterable, *[, default=obj, key=func]) -> value +builtins.memoryview(??) +builtins.min(iterable, *[, default=obj, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(??) +builtins.open(??) +builtins.ord(??) +builtins.pow(??) +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(??) +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(??) +builtins.reversed(??) +builtins.round(??) +builtins.set() -> new empty set object +builtins.setattr(??) +builtins.slice(stop) +builtins.sorted(??) +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(??) +builtins.super() -> same as super(__class__, ) +builtins.tuple(??) +builtins.type(object_or_name, bases, dict) +builtins.vars([object]) -> dictionary +builtins.zip(*iterables) --> zip object +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.RLock(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.os(??) +bz2.warnings(??) +cProfile.Profile(timer=None, timeunit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.repeat(object [,times]) -> create an iterator which returns the object +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(??) +cgi.BytesIO(??) +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(??) +chunk.Chunk(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(??) +codecs.encode(??) +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(??) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.namereplace_errors(??) +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(??) +codecs.register_error(??) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +collections.ChainMap(??) +collections.Counter(??) +collections.OrderedDict(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.abc(??) +collections.abc.AsyncGenerator(??) +collections.abc.AsyncIterable(??) +collections.abc.AsyncIterator(??) +collections.abc.Awaitable(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Collection(??) +collections.abc.Container(??) +collections.abc.Coroutine(??) +collections.abc.Generator(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Reversible(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory[, ...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(??) +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.partial(func, *args, **keywords) - new function with partial application +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(??) +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.BrokenExecutor(??) +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.Full(??) +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.Queue(??) +concurrent.futures.process.atexit(??) +concurrent.futures.process.itertools(??) +concurrent.futures.process.mp(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.partial(func, *args, **keywords) - new function with partial application +concurrent.futures.process.queue(??) +concurrent.futures.process.sys(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.traceback(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread.BrokenThreadPool(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.atexit(??) +concurrent.futures.thread.itertools(??) +concurrent.futures.thread.os(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.ConverterMapping(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.os(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.AbstractAsyncContextManager(??) +contextlib.AbstractContextManager(??) +contextlib.AsyncExitStack(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.MethodType(??) +contextlib.abc(??) +contextlib.asynccontextmanager(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.nullcontext(??) +contextlib.redirect_stderr(??) +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +contextvars.Context(??) +contextvars.ContextVar(??) +contextvars.Token(??) +contextvars.copy_context(??) +copy.Error(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_BLOWFISH(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib(??) +ctypes.macholib.dyld(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(??) +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(??) +ctypes.macholib.dyld.combinations_with_replacement(??) +ctypes.macholib.dyld.compress(??) +ctypes.macholib.dyld.count(??) +ctypes.macholib.dyld.cycle(??) +ctypes.macholib.dyld.dropwhile(??) +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(??) +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(??) +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(??) +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(??) +ctypes.macholib.dyld.takewhile(??) +ctypes.macholib.dyld.tee(??) +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib(??) +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.shutil(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii(??) +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.ncurses_version(??) +curses.newpad(??) +curses.newwin(nlines, ncols, [begin_y=0, begin_x=0]) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.update_lines_cols(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.window(??) +curses.wrapper(??) +dataclasses.Field(??) +dataclasses.FrozenInstanceError(??) +dataclasses.InitVar(??) +dataclasses.MISSING(??) +dataclasses.asdict(??) +dataclasses.astuple(??) +dataclasses.builtins(??) +dataclasses.copy(??) +dataclasses.dataclass(??) +dataclasses.field(??) +dataclasses.fields(??) +dataclasses.functools(??) +dataclasses.inspect(??) +dataclasses.is_dataclass(??) +dataclasses.keyword(??) +dataclasses.make_dataclass(??) +dataclasses.re(??) +dataclasses.replace(??) +dataclasses.sys(??) +dataclasses.types(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.sys(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(??) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.diff_bytes(??) +difflib.get_close_matches(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.Bytecode(??) +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.FORMAT_VALUE +dis.FORMAT_VALUE_CONVERTERS(??) +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.MAKE_FUNCTION +dis.MAKE_FUNCTION_FLAGS(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(??) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +dummy_threading.Barrier(??) +dummy_threading.BoundedSemaphore(??) +dummy_threading.BrokenBarrierError(??) +dummy_threading.Condition(??) +dummy_threading.Event(??) +dummy_threading.ExceptHookArgs(??) +dummy_threading.Lock(??) +dummy_threading.RLock(??) +dummy_threading.Semaphore(??) +dummy_threading.TIMEOUT_MAX +dummy_threading.Thread(??) +dummy_threading.ThreadError(??) +dummy_threading.Timer(??) +dummy_threading.active_count(??) +dummy_threading.current_thread(??) +dummy_threading.enumerate(??) +dummy_threading.excepthook(??) +dummy_threading.get_ident(??) +dummy_threading.local(??) +dummy_threading.main_thread(??) +dummy_threading.setprofile(??) +dummy_threading.settrace(??) +dummy_threading.stack_size(??) +dummy_threading.threading(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager(??) +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.maintype +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.contentmanager.subtype +email.contentmanager.typ(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64LengthDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.StringIO(??) +email.feedparser.compat32(??) +email.feedparser.deque([iterable[, maxlen]]) --> deque object +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.re(??) +email.generator(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.NL +email.generator.NLCRE(??) +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.MappingProxyType(??) +email.headerregistry.MessageIDHeader(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO(??) +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.Policy(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.quopri(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime(??) +email.mime.application(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio(??) +email.mime.audio.BytesIO(??) +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base(??) +email.mime.base.MIMEBase(??) +email.mime.base.email(??) +email.mime.base.message(??) +email.mime.image(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text(??) +email.mime.text.Charset(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.policy(??) +email.policy.Compat32(??) +email.policy.EmailMessage(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.SMTPUTF8(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.linesep_splitter(??) +email.policy.raw_data_manager(??) +email.policy.re(??) +email.policy.strict(??) +email.policy.sys(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +ensurepip.bootstrap(??) +ensurepip.os(??) +ensurepip.pkgutil(??) +ensurepip.sys(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.DynamicClassAttribute(??) +enum.Enum(??) +enum.EnumMeta(??) +enum.Flag(??) +enum.IntEnum(??) +enum.IntFlag(??) +enum.MappingProxyType(??) +enum.auto(??) +enum.sys(??) +enum.unique(??) +enumerate(??) +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTRECOVERABLE +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EOWNERDEAD +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(??) +exec(??) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register a handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(??) +filecmp.os(??) +filecmp.stat(??) +fileinput.FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(??) +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(??) +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +formatter.warnings(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.gcd(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.cached_property(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.recursive_repr(??) +functools.reduce(function, sequence[, initial]) -> value +functools.singledispatch(??) +functools.singledispatchmethod(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect(??) +gc.disable(??) +gc.enable(??) +gc.freeze(??) +gc.garbage(??) +gc.get_count(??) +gc.get_debug(??) +gc.get_freeze_count(??) +gc.get_objects(??) +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats(??) +gc.get_threshold(??) +gc.is_tracked(??) +gc.isenabled(??) +gc.set_debug(??) +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gc.unfreeze(??) +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.dnpgettext(??) +gettext.dpgettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.locale(??) +gettext.ngettext(??) +gettext.npgettext(??) +gettext.os(??) +gettext.pgettext(??) +gettext.re(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +glob.sys(??) +globals(??) +gzip.BadGzipFile(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.main(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(??) +hash(??) +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.blake2b(??) +hashlib.blake2s(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(??) +hashlib.scrypt(??) +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha3_224([data]) -> SHA3 object +hashlib.sha3_256([data]) -> SHA3 object +hashlib.sha3_384([data]) -> SHA3 object +hashlib.sha3_512([data]) -> SHA3 object +hashlib.sha512(??) +hashlib.shake_128([data]) -> SHAKE object +hashlib.shake_256([data]) -> SHAKE object +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(??) +heapq.heappushpop(??) +heapq.heapreplace(??) +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +help(??) +hex(??) +hmac.HMAC(??) +hmac.compare_digest(??) +hmac.digest(??) +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser(??) +html.parser.HTMLParser(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.parser.warnings(??) +html.unescape(??) +http.HTTPStatus(??) +http.IntEnum(??) +http.client(??) +http.client.ACCEPTED(??) +http.client.ALREADY_REPORTED(??) +http.client.BAD_GATEWAY(??) +http.client.BAD_REQUEST(??) +http.client.BadStatusLine(??) +http.client.CONFLICT(??) +http.client.CONTINUE(??) +http.client.CREATED(??) +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EXPECTATION_FAILED(??) +http.client.FAILED_DEPENDENCY(??) +http.client.FORBIDDEN(??) +http.client.FOUND(??) +http.client.GATEWAY_TIMEOUT(??) +http.client.GONE(??) +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED(??) +http.client.IM_USED(??) +http.client.INSUFFICIENT_STORAGE(??) +http.client.INTERNAL_SERVER_ERROR(??) +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED(??) +http.client.LOCKED(??) +http.client.LOOP_DETECTED(??) +http.client.LineTooLong(??) +http.client.METHOD_NOT_ALLOWED(??) +http.client.MISDIRECTED_REQUEST(??) +http.client.MOVED_PERMANENTLY(??) +http.client.MULTIPLE_CHOICES(??) +http.client.MULTI_STATUS(??) +http.client.NETWORK_AUTHENTICATION_REQUIRED(??) +http.client.NON_AUTHORITATIVE_INFORMATION(??) +http.client.NOT_ACCEPTABLE(??) +http.client.NOT_EXTENDED(??) +http.client.NOT_FOUND(??) +http.client.NOT_IMPLEMENTED(??) +http.client.NOT_MODIFIED(??) +http.client.NO_CONTENT(??) +http.client.NotConnected(??) +http.client.OK(??) +http.client.PARTIAL_CONTENT(??) +http.client.PAYMENT_REQUIRED(??) +http.client.PERMANENT_REDIRECT(??) +http.client.PRECONDITION_FAILED(??) +http.client.PRECONDITION_REQUIRED(??) +http.client.PROCESSING(??) +http.client.PROXY_AUTHENTICATION_REQUIRED(??) +http.client.REQUESTED_RANGE_NOT_SATISFIABLE(??) +http.client.REQUEST_ENTITY_TOO_LARGE(??) +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE(??) +http.client.REQUEST_TIMEOUT(??) +http.client.REQUEST_URI_TOO_LONG(??) +http.client.RESET_CONTENT(??) +http.client.RemoteDisconnected(??) +http.client.ResponseNotReady(??) +http.client.SEE_OTHER(??) +http.client.SERVICE_UNAVAILABLE(??) +http.client.SWITCHING_PROTOCOLS(??) +http.client.TEMPORARY_REDIRECT(??) +http.client.TOO_MANY_REQUESTS(??) +http.client.UNAUTHORIZED(??) +http.client.UNAVAILABLE_FOR_LEGAL_REASONS(??) +http.client.UNPROCESSABLE_ENTITY(??) +http.client.UNSUPPORTED_MEDIA_TYPE(??) +http.client.UPGRADE_REQUIRED(??) +http.client.USE_PROXY(??) +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.VARIANT_ALSO_NEGOTIATES(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.http(??) +http.client.io(??) +http.client.parse_headers(??) +http.client.re(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.cookiejar(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.os(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.HTTPStatus(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.ThreadingHTTPServer(??) +http.server.copy(??) +http.server.datetime(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.partial(func, *args, **keywords) - new function with partial application +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(??) +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.PathLike(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exr(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_webp(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.create_dynamic(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.ResourceLoader(??) +importlib.abc.ResourceReader(??) +importlib.abc.SourceLoader(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.abc.warnings(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.metadata(??) +importlib.metadata.ConfigParser(??) +importlib.metadata.Distribution(??) +importlib.metadata.DistributionFinder(??) +importlib.metadata.EntryPoint(??) +importlib.metadata.FileHash(??) +importlib.metadata.MetaPathFinder(??) +importlib.metadata.MetadataPathFinder(??) +importlib.metadata.PackageNotFoundError(??) +importlib.metadata.PackagePath(??) +importlib.metadata.PathDistribution(??) +importlib.metadata.abc(??) +importlib.metadata.collections(??) +importlib.metadata.csv(??) +importlib.metadata.distribution(??) +importlib.metadata.distributions(??) +importlib.metadata.email(??) +importlib.metadata.entry_points(??) +importlib.metadata.files(??) +importlib.metadata.functools(??) +importlib.metadata.import_module(??) +importlib.metadata.io(??) +importlib.metadata.itertools(??) +importlib.metadata.metadata(??) +importlib.metadata.operator(??) +importlib.metadata.os(??) +importlib.metadata.pathlib(??) +importlib.metadata.re(??) +importlib.metadata.requires(??) +importlib.metadata.starmap(??) +importlib.metadata.suppress(??) +importlib.metadata.sys(??) +importlib.metadata.version(??) +importlib.metadata.zipfile(??) +importlib.reload(??) +importlib.resources(??) +importlib.resources.BinaryIO(??) +importlib.resources.BytesIO(??) +importlib.resources.Iterable(??) +importlib.resources.Iterator(??) +importlib.resources.ModuleType(??) +importlib.resources.Optional(??) +importlib.resources.Package(??) +importlib.resources.Path(??) +importlib.resources.Resource(??) +importlib.resources.ResourceLoader(??) +importlib.resources.Set(??) +importlib.resources.TextIO(??) +importlib.resources.TextIOWrapper(??) +importlib.resources.Union(??) +importlib.resources.ZipImportError(??) +importlib.resources.cast(??) +importlib.resources.contents(??) +importlib.resources.contextmanager(??) +importlib.resources.import_module(??) +importlib.resources.is_resource(??) +importlib.resources.open_binary(??) +importlib.resources.open_text(??) +importlib.resources.os(??) +importlib.resources.path(??) +importlib.resources.read_binary(??) +importlib.resources.read_text(??) +importlib.resources.resources_abc(??) +importlib.resources.suppress(??) +importlib.resources.tempfile(??) +importlib.sys(??) +importlib.types(??) +importlib.util(??) +importlib.util.LazyLoader(??) +importlib.util.MAGIC_NUMBER +importlib.util.abc(??) +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.module_from_spec(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.source_hash(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.types(??) +importlib.util.warnings(??) +importlib.warnings(??) +input(??) +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CORO_CLOSED +inspect.CORO_CREATED +inspect.CORO_RUNNING +inspect.CORO_SUSPENDED +inspect.CO_ASYNC_GENERATOR +inspect.CO_COROUTINE +inspect.CO_GENERATOR +inspect.CO_ITERABLE_COROUTINE +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FrameInfo(frame, filename, lineno, function, code_context, index) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.abc(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.collections(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.enum(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getcoroutinelocals(??) +inspect.getcoroutinestate(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isasyncgen(??) +inspect.isasyncgenfunction(??) +inspect.isawaitable(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.iscoroutine(??) +inspect.iscoroutinefunction(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int([x]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO(??) +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +io.open_code(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(??) +issubclass(??) +iter(iterable) -> iterator +itertools.accumulate(??) +itertools.chain(*iterables) --> chain object +itertools.combinations(??) +itertools.combinations_with_replacement(??) +itertools.compress(??) +itertools.count(??) +itertools.cycle(??) +itertools.dropwhile(??) +itertools.filterfalse(??) +itertools.groupby(??) +itertools.islice(iterable, stop) --> islice object +itertools.permutations(??) +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(??) +itertools.takewhile(??) +itertools.tee(??) +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecodeError(??) +json.JSONDecoder(??) +json.JSONEncoder(??) +json.codecs(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS(??) +json.decoder.JSONArray(??) +json.decoder.JSONDecodeError(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.detect_encoding(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(string) -> string +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring(??) +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool(??) +json.tool.argparse(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.kwlist(??) +len(??) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.functools(??) +linecache.getline(??) +linecache.getlines(??) +linecache.lazycache(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list(??) +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.currency(??) +locale.delocalize(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.k +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.v +locale.windows_locale(??) +locals(??) +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.collections(??) +logging.config(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingMixin(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.errno(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.copy(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.re(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +lzma.os(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.lineno_sort_key(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +mailcap.warnings(??) +map(func, *iterables) --> map object +marshal.dump(??) +marshal.dumps(??) +marshal.load(??) +marshal.loads(??) +marshal.version +max(iterable, *[, default=obj, key=func]) -> value +memoryview(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable, *[, default=obj, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.EXTENDED_ARG +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.importlib(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.sys(??) +modulefinder.test(??) +modulefinder.types(??) +modulefinder.warnings(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.reduction(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list(??) +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.SIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_signed(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.resource_tracker(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.warnings(??) +multiprocessing.forkserver.write_signed(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.defaultdict(default_factory[, ...]) --> dict with default factory +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BasePoolProxy(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.HAS_SHMEM(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessError(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.SharedMemoryManager(??) +multiprocessing.managers.SharedMemoryServer(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.get_spawning_popen(??) +multiprocessing.managers.getpid(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.os(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.shared_memory(??) +multiprocessing.managers.signal(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.time(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.parent_process(??) +multiprocessing.pool(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.Empty(??) +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.INIT +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.util(??) +multiprocessing.pool.wait(??) +multiprocessing.pool.warnings(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.set_spawning_popen(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.set_spawning_popen(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.parent_process(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.process.threading(??) +multiprocessing.queues(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.weakref(??) +multiprocessing.reducer(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ABCMeta(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.AbstractReducer(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.resource_sharer(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.resource_tracker(??) +multiprocessing.resource_tracker.ResourceTracker(??) +multiprocessing.resource_tracker.ensure_running(??) +multiprocessing.resource_tracker.getfd(??) +multiprocessing.resource_tracker.main(??) +multiprocessing.resource_tracker.os(??) +multiprocessing.resource_tracker.register(??) +multiprocessing.resource_tracker.signal(??) +multiprocessing.resource_tracker.spawn(??) +multiprocessing.resource_tracker.sys(??) +multiprocessing.resource_tracker.threading(??) +multiprocessing.resource_tracker.unregister(??) +multiprocessing.resource_tracker.util(??) +multiprocessing.resource_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.shared_memory(??) +multiprocessing.shared_memory.ShareableList(??) +multiprocessing.shared_memory.SharedMemory(??) +multiprocessing.shared_memory.errno(??) +multiprocessing.shared_memory.mmap(??) +multiprocessing.shared_memory.os(??) +multiprocessing.shared_memory.partial(func, *args, **keywords) - new function with partial application +multiprocessing.shared_memory.secrets(??) +multiprocessing.shared_memory.struct(??) +multiprocessing.sharedctypes(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.reduction(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.reduction(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.time(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.close_fds(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.sys(??) +nntplib.warnings(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(??) +open(??) +operator.abs(??) +operator.add(??) +operator.and_(??) +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(??) +operator.contains(??) +operator.countOf(??) +operator.delitem(??) +operator.eq(??) +operator.floordiv(??) +operator.ge(??) +operator.getitem(??) +operator.gt(??) +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imatmul(??) +operator.imod(??) +operator.imul(??) +operator.index(??) +operator.indexOf(??) +operator.inv(??) +operator.invert(??) +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(??) +operator.is_not(??) +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(??) +operator.length_hint(??) +operator.lshift(??) +operator.lt(??) +operator.matmul(??) +operator.methodcaller(name, ...) --> methodcaller object +operator.mod(??) +operator.mul(??) +operator.ne(??) +operator.neg(??) +operator.not_(??) +operator.or_(??) +operator.pos(??) +operator.pow(??) +operator.rshift(??) +operator.setitem(??) +operator.sub(??) +operator.truediv(??) +operator.truth(??) +operator.xor(??) +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(??) +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_TRAPPED +os.DirEntry(??) +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CLOEXEC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_EXLOCK +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.POSIX_SPAWN_CLOSE +os.POSIX_SPAWN_DUP2 +os.POSIX_SPAWN_OPEN +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.PathLike(??) +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(??) +os.WEXITED +os.WEXITSTATUS(??) +os.WIFCONTINUED(??) +os.WIFEXITED(??) +os.WIFSIGNALED(??) +os.WIFSTOPPED(??) +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(??) +os.WTERMSIG(??) +os.WUNTRACED +os.W_OK +os.X_OK +os.abc(??) +os.abort(??) +os.access(??) +os.altsep(??) +os.chdir(??) +os.chflags(??) +os.chmod(??) +os.chown(??) +os.chroot(??) +os.close(??) +os.closerange(??) +os.confstr(??) +os.confstr_names(??) +os.cpu_count(??) +os.ctermid(??) +os.curdir +os.defpath +os.device_encoding(??) +os.devnull +os.dup(??) +os.dup2(??) +os.environ(??) +os.environb(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(??) +os.execve(??) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(??) +os.fchmod(??) +os.fchown(??) +os.fdopen(??) +os.fork(??) +os.forkpty(??) +os.fpathconf(??) +os.fsdecode(??) +os.fsencode(??) +os.fspath(??) +os.fstat(??) +os.fstatvfs(??) +os.fsync(??) +os.ftruncate(??) +os.get_blocking(??) +os.get_exec_path(??) +os.get_inheritable(??) +os.get_terminal_size(??) +os.getcwd(??) +os.getcwdb(??) +os.getegid(??) +os.getenv(??) +os.getenvb(??) +os.geteuid(??) +os.getgid(??) +os.getgrouplist(user, group) -> list of groups to which a user belongs +os.getgroups(??) +os.getloadavg(??) +os.getlogin(??) +os.getpgid(??) +os.getpgrp(??) +os.getpid(??) +os.getppid(??) +os.getpriority(??) +os.getsid(??) +os.getuid(??) +os.initgroups(username, gid) -> None +os.isatty(??) +os.kill(??) +os.killpg(??) +os.lchflags(??) +os.lchmod(??) +os.lchown(??) +os.linesep +os.link(??) +os.listdir(??) +os.lockf(??) +os.lseek(??) +os.lstat(??) +os.major(??) +os.makedev(??) +os.makedirs(name [, mode=0o777][, exist_ok=False]) +os.minor(??) +os.mkdir(??) +os.mkfifo(??) +os.mknod(??) +os.name +os.nice(??) +os.open(??) +os.openpty(??) +os.pardir +os.path(??) +os.pathconf(??) +os.pathconf_names(??) +os.pathsep +os.pipe(??) +os.popen(??) +os.posix_spawn(??) +os.posix_spawnp(??) +os.pread(??) +os.putenv(??) +os.pwrite(??) +os.read(??) +os.readlink(??) +os.readv(??) +os.register_at_fork(??) +os.remove(??) +os.removedirs(name) +os.rename(??) +os.renames(old, new) +os.replace(??) +os.rmdir(??) +os.scandir(??) +os.sched_get_priority_max(??) +os.sched_get_priority_min(??) +os.sched_yield(??) +os.sendfile(out, in, offset, count) -> byteswritten +os.sep +os.set_blocking(??) +os.set_inheritable(??) +os.setegid(??) +os.seteuid(??) +os.setgid(??) +os.setgroups(??) +os.setpgid(??) +os.setpgrp(??) +os.setpriority(??) +os.setregid(??) +os.setreuid(??) +os.setsid(??) +os.setuid(??) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_result(??) +os.statvfs(??) +os.statvfs_result(??) +os.strerror(??) +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(??) +os.sync(??) +os.sys(??) +os.sysconf(??) +os.sysconf_names(??) +os.system(??) +os.tcgetpgrp(??) +os.tcsetpgrp(??) +os.terminal_size(??) +os.times(??) +os.times_result(??) +os.truncate(??) +os.ttyname(??) +os.umask(??) +os.uname(??) +os.uname_result(??) +os.unlink(??) +os.unsetenv(??) +os.urandom(??) +os.utime(??) +os.wait(??) +os.wait3(??) +os.wait4(??) +os.waitpid(??) +os.walk(??) +os.write(??) +os.writev(??) +pathlib.EBADF +pathlib.EINVAL +pathlib.ELOOP +pathlib.ENOENT +pathlib.ENOTDIR +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.nt(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.supports_symlinks(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.BYTEARRAY8 +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NEXT_BUFFER +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleBuffer(??) +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.READONLY_BUFFER +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(format, v1, v2, ...) -> bytes +pickle.partial(func, *args, **keywords) - new function with partial application +pickle.re(??) +pickle.sys(??) +pickle.unpack(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytearray8(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybuffer(??) +pickletools.pybytearray(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytearray8(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleInfo(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.namedtuple(??) +pkgutil.os(??) +pkgutil.read_code(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.architecture(??) +platform.collections(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(system, node, release, version, machine, processor) +platform.version(??) +platform.win32_edition(??) +platform.win32_is_iot(??) +platform.win32_ver(??) +plistlib.BytesIO(??) +plistlib.Data(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate(??) +plistlib.PlistFormat(??) +plistlib.UID(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.contextlib(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.readPlist(??) +plistlib.readPlistFromBytes(??) +plistlib.struct(??) +plistlib.warn(??) +plistlib.writePlist(??) +plistlib.writePlistToBytes(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +poplib.sys(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_TRAPPED +posix.DirEntry(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CLOEXEC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_EXLOCK +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.POSIX_SPAWN_CLOSE +posix.POSIX_SPAWN_DUP2 +posix.POSIX_SPAWN_OPEN +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(??) +posix.WEXITED +posix.WEXITSTATUS(??) +posix.WIFCONTINUED(??) +posix.WIFEXITED(??) +posix.WIFSIGNALED(??) +posix.WIFSTOPPED(??) +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(??) +posix.WTERMSIG(??) +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort(??) +posix.access(??) +posix.chdir(??) +posix.chflags(??) +posix.chmod(??) +posix.chown(??) +posix.chroot(??) +posix.close(??) +posix.closerange(??) +posix.confstr(??) +posix.confstr_names(??) +posix.cpu_count(??) +posix.ctermid(??) +posix.device_encoding(??) +posix.dup(??) +posix.dup2(??) +posix.environ(??) +posix.error(??) +posix.execv(??) +posix.execve(??) +posix.fchdir(??) +posix.fchmod(??) +posix.fchown(??) +posix.fork(??) +posix.forkpty(??) +posix.fpathconf(??) +posix.fspath(??) +posix.fstat(??) +posix.fstatvfs(??) +posix.fsync(??) +posix.ftruncate(??) +posix.get_blocking(??) +posix.get_inheritable(??) +posix.get_terminal_size(??) +posix.getcwd(??) +posix.getcwdb(??) +posix.getegid(??) +posix.geteuid(??) +posix.getgid(??) +posix.getgrouplist(user, group) -> list of groups to which a user belongs +posix.getgroups(??) +posix.getloadavg(??) +posix.getlogin(??) +posix.getpgid(??) +posix.getpgrp(??) +posix.getpid(??) +posix.getppid(??) +posix.getpriority(??) +posix.getsid(??) +posix.getuid(??) +posix.initgroups(username, gid) -> None +posix.isatty(??) +posix.kill(??) +posix.killpg(??) +posix.lchflags(??) +posix.lchmod(??) +posix.lchown(??) +posix.link(??) +posix.listdir(??) +posix.lockf(??) +posix.lseek(??) +posix.lstat(??) +posix.major(??) +posix.makedev(??) +posix.minor(??) +posix.mkdir(??) +posix.mkfifo(??) +posix.mknod(??) +posix.nice(??) +posix.open(??) +posix.openpty(??) +posix.pathconf(??) +posix.pathconf_names(??) +posix.pipe(??) +posix.posix_spawn(??) +posix.posix_spawnp(??) +posix.pread(??) +posix.putenv(??) +posix.pwrite(??) +posix.read(??) +posix.readlink(??) +posix.readv(??) +posix.register_at_fork(??) +posix.remove(??) +posix.rename(??) +posix.replace(??) +posix.rmdir(??) +posix.scandir(??) +posix.sched_get_priority_max(??) +posix.sched_get_priority_min(??) +posix.sched_yield(??) +posix.sendfile(out, in, offset, count) -> byteswritten +posix.set_blocking(??) +posix.set_inheritable(??) +posix.setegid(??) +posix.seteuid(??) +posix.setgid(??) +posix.setgroups(??) +posix.setpgid(??) +posix.setpgrp(??) +posix.setpriority(??) +posix.setregid(??) +posix.setreuid(??) +posix.setsid(??) +posix.setuid(??) +posix.stat(??) +posix.stat_result(??) +posix.statvfs(??) +posix.statvfs_result(??) +posix.strerror(??) +posix.symlink(??) +posix.sync(??) +posix.sysconf(??) +posix.sysconf_names(??) +posix.system(??) +posix.tcgetpgrp(??) +posix.tcsetpgrp(??) +posix.terminal_size(??) +posix.times(??) +posix.times_result(??) +posix.truncate(??) +posix.ttyname(??) +posix.umask(??) +posix.uname(??) +posix.uname_result(??) +posix.unlink(??) +posix.unsetenv(??) +posix.urandom(??) +posix.utime(??) +posix.wait(??) +posix.wait3(??) +posix.wait4(??) +posix.waitpid(??) +posix.write(??) +posix.writev(??) +pow(??) +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pp(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(??) +pstats.Enum(??) +pstats.SortKey(??) +pstats.Stats(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(??) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.tty(??) +pwd.getpwall(??) +pwd.getpwnam(??) +pwd.getpwuid(??) +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.PycInvalidationMode(??) +py_compile.compile(??) +py_compile.enum(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.importlib(??) +pyclbr.io(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.sort_attributes(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.urllib(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.SimpleQueue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(??) +queue.threading(??) +queue.time(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.choices(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A(??) +re.ASCII(??) +re.DEBUG(??) +re.DOTALL(??) +re.I(??) +re.IGNORECASE(??) +re.L(??) +re.LOCALE(??) +re.M(??) +re.MULTILINE(??) +re.Match(??) +re.Pattern(??) +re.RegexFlag(??) +re.S(??) +re.Scanner(??) +re.T(??) +re.TEMPLATE(??) +re.U(??) +re.UNICODE(??) +re.VERBOSE(??) +re.X(??) +re.compile(??) +re.copyreg(??) +re.enum(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.template(??) +repr(??) +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(??) +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(??) +runpy.get_importer(??) +runpy.importlib(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +runpy.types(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +secrets.DEFAULT_ENTROPY +secrets.SystemRandom(??) +secrets.base64(??) +secrets.binascii(??) +secrets.choice(??) +secrets.compare_digest(??) +secrets.os(??) +secrets.randbelow(??) +secrets.randbits(??) +secrets.token_bytes(??) +secrets.token_hex(??) +secrets.token_urlsafe(??) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(??) +shelve.BsdDbShelf(??) +shelve.BytesIO(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.join(??) +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.COPY_BUFSIZE +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(??) +shutil.getpwnam(??) +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.nt(??) +shutil.os(??) +shutil.posix(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.Handlers(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT(??) +signal.SIGALRM(??) +signal.SIGBUS(??) +signal.SIGCHLD(??) +signal.SIGCONT(??) +signal.SIGEMT(??) +signal.SIGFPE(??) +signal.SIGHUP(??) +signal.SIGILL(??) +signal.SIGINFO(??) +signal.SIGINT(??) +signal.SIGIO(??) +signal.SIGIOT(??) +signal.SIGKILL(??) +signal.SIGPIPE(??) +signal.SIGPROF(??) +signal.SIGQUIT(??) +signal.SIGSEGV(??) +signal.SIGSTOP(??) +signal.SIGSYS(??) +signal.SIGTERM(??) +signal.SIGTRAP(??) +signal.SIGTSTP(??) +signal.SIGTTIN(??) +signal.SIGTTOU(??) +signal.SIGURG(??) +signal.SIGUSR1(??) +signal.SIGUSR2(??) +signal.SIGVTALRM(??) +signal.SIGWINCH(??) +signal.SIGXCPU(??) +signal.SIGXFSZ(??) +signal.SIG_BLOCK(??) +signal.SIG_DFL(??) +signal.SIG_IGN(??) +signal.SIG_SETMASK(??) +signal.SIG_UNBLOCK(??) +signal.Sigmasks(??) +signal.Signals(??) +signal.alarm(??) +signal.default_int_handler(...) +signal.getitimer(??) +signal.getsignal(??) +signal.pause(??) +signal.pthread_kill(??) +signal.pthread_sigmask(??) +signal.raise_signal(??) +signal.set_wakeup_fd(fd, *, warn_on_full_buffer=True) -> fd +signal.setitimer(??) +signal.siginterrupt(??) +signal.signal(??) +signal.sigpending(??) +signal.sigwait(??) +signal.strsignal(??) +signal.valid_signals(??) +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.io(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPNotSupportedError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.datetime(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.sys(??) +sndhdr.SndHeaders(filetype, framerate, nchannels, nframes, sampwidth) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.namedtuple(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG(??) +socket.AI_ALL(??) +socket.AI_CANONNAME(??) +socket.AI_DEFAULT(??) +socket.AI_MASK(??) +socket.AI_NUMERICHOST(??) +socket.AI_NUMERICSERV(??) +socket.AI_PASSIVE(??) +socket.AI_V4MAPPED(??) +socket.AI_V4MAPPED_CFG(??) +socket.AddressFamily(??) +socket.AddressInfo(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_SCTP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.IntFlag(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC(??) +socket.MSG_DONTROUTE(??) +socket.MSG_DONTWAIT(??) +socket.MSG_EOF(??) +socket.MSG_EOR(??) +socket.MSG_OOB(??) +socket.MSG_PEEK(??) +socket.MSG_TRUNC(??) +socket.MSG_WAITALL(??) +socket.MsgFlag(??) +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketKind(??) +socket.SocketType(??) +socket.TCP_KEEPCNT +socket.TCP_KEEPINTVL +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.close(integer) -> None +socket.create_connection(??) +socket.create_server(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_dualstack_ipv6(??) +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.selectors(??) +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.BufferedIOBase(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.os(??) +socketserver.selectors(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +socketserver.time(??) +sorted(??) +sqlite3.Binary(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_CREATE_VTABLE +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DONE +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_DROP_VTABLE +sqlite3.SQLITE_FUNCTION +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_RECURSIVE +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SAVEPOINT +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.collections(??) +sqlite3.complete_statement(sql) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_CREATE_VTABLE +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DONE +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_DROP_VTABLE +sqlite3.dbapi2.SQLITE_FUNCTION +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_RECURSIVE +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SAVEPOINT +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.collections(??) +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.dump(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.AF_INET(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE(??) +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE(??) +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY(??) +ssl.ALERT_DESCRIPTION_DECODE_ERROR(??) +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE(??) +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR(??) +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE(??) +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER(??) +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY(??) +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR(??) +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION(??) +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION(??) +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW(??) +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_CA(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY(??) +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION(??) +ssl.ALERT_DESCRIPTION_USER_CANCELLED(??) +ssl.AlertDescription(??) +ssl.CERT_NONE(??) +ssl.CERT_OPTIONAL(??) +ssl.CERT_REQUIRED(??) +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ALPN(??) +ssl.HAS_ECDH(??) +ssl.HAS_NEVER_CHECK_COMMON_NAME(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.HAS_SSLv2(??) +ssl.HAS_SSLv3(??) +ssl.HAS_TLSv1(??) +ssl.HAS_TLSv1_1(??) +ssl.HAS_TLSv1_2(??) +ssl.HAS_TLSv1_3(??) +ssl.MemoryBIO(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL(??) +ssl.OP_CIPHER_SERVER_PREFERENCE(??) +ssl.OP_ENABLE_MIDDLEBOX_COMPAT(??) +ssl.OP_NO_COMPRESSION(??) +ssl.OP_NO_RENEGOTIATION(??) +ssl.OP_NO_SSLv2(??) +ssl.OP_NO_SSLv3(??) +ssl.OP_NO_TICKET(??) +ssl.OP_NO_TLSv1(??) +ssl.OP_NO_TLSv1_1(??) +ssl.OP_NO_TLSv1_2(??) +ssl.OP_NO_TLSv1_3(??) +ssl.OP_SINGLE_DH_USE(??) +ssl.OP_SINGLE_ECDH_USE(??) +ssl.Options(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv23(??) +ssl.PROTOCOL_TLS(??) +ssl.PROTOCOL_TLS_CLIENT(??) +ssl.PROTOCOL_TLS_SERVER(??) +ssl.PROTOCOL_TLSv1(??) +ssl.PROTOCOL_TLSv1_1(??) +ssl.PROTOCOL_TLSv1_2(??) +ssl.Purpose(??) +ssl.RAND_add(??) +ssl.RAND_bytes(??) +ssl.RAND_pseudo_bytes(??) +ssl.RAND_status(??) +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLCertVerificationError(??) +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLErrorNumber(??) +ssl.SSLObject(??) +ssl.SSLSession(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF(??) +ssl.SSL_ERROR_INVALID_ERROR_CODE(??) +ssl.SSL_ERROR_SSL(??) +ssl.SSL_ERROR_SYSCALL(??) +ssl.SSL_ERROR_WANT_CONNECT(??) +ssl.SSL_ERROR_WANT_READ(??) +ssl.SSL_ERROR_WANT_WRITE(??) +ssl.SSL_ERROR_WANT_X509_LOOKUP(??) +ssl.SSL_ERROR_ZERO_RETURN(??) +ssl.TLSVersion(??) +ssl.VERIFY_CRL_CHECK_CHAIN(??) +ssl.VERIFY_CRL_CHECK_LEAF(??) +ssl.VERIFY_DEFAULT(??) +ssl.VERIFY_X509_STRICT(??) +ssl.VERIFY_X509_TRUSTED_FIRST(??) +ssl.VerifyFlags(??) +ssl.VerifyMode(??) +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.warnings(??) +ssl.wrap_socket(??) +stat.FILE_ATTRIBUTE_ARCHIVE +stat.FILE_ATTRIBUTE_COMPRESSED +stat.FILE_ATTRIBUTE_DEVICE +stat.FILE_ATTRIBUTE_DIRECTORY +stat.FILE_ATTRIBUTE_ENCRYPTED +stat.FILE_ATTRIBUTE_HIDDEN +stat.FILE_ATTRIBUTE_INTEGRITY_STREAM +stat.FILE_ATTRIBUTE_NORMAL +stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +stat.FILE_ATTRIBUTE_NO_SCRUB_DATA +stat.FILE_ATTRIBUTE_OFFLINE +stat.FILE_ATTRIBUTE_READONLY +stat.FILE_ATTRIBUTE_REPARSE_POINT +stat.FILE_ATTRIBUTE_SPARSE_FILE +stat.FILE_ATTRIBUTE_SYSTEM +stat.FILE_ATTRIBUTE_TEMPORARY +stat.FILE_ATTRIBUTE_VIRTUAL +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Counter(??) +statistics.Decimal(??) +statistics.Fraction(??) +statistics.NormalDist(??) +statistics.StatisticsError(??) +statistics.bisect_left(a, x[, lo[, hi]]) -> index +statistics.bisect_right(a, x[, lo[, hi]]) -> index +statistics.erf(??) +statistics.exp(??) +statistics.fabs(??) +statistics.fmean(??) +statistics.fsum(??) +statistics.geometric_mean(??) +statistics.groupby(??) +statistics.harmonic_mean(??) +statistics.hypot(*coordinates) -> value +statistics.itemgetter(item, ...) --> itemgetter object +statistics.log(x, [base=math.e]) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.multimode(??) +statistics.numbers(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.quantiles(??) +statistics.random(??) +statistics.sqrt(??) +statistics.stdev(??) +statistics.tau +statistics.variance(??) +str(object='') -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(??) +struct.calcsize(??) +struct.error(??) +struct.iter_unpack(??) +struct.pack(format, v1, v2, ...) -> bytes +struct.pack_into(format, buffer, offset, v1, v2, ...) +struct.unpack(??) +struct.unpack_from(??) +subprocess.CalledProcessError(??) +subprocess.CompletedProcess(??) +subprocess.DEVNULL +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.contextlib(??) +subprocess.errno(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.os(??) +subprocess.run(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.threading(??) +subprocess.time(??) +subprocess.warnings(??) +sum(??) +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +sunau.openfp(??) +sunau.warnings(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.annassign +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.async_funcdef +symbol.async_stmt +symbol.atom +symbol.atom_expr +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.func_body_suite +symbol.func_type +symbol.func_type_input +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.namedexpr_test +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.sync_comp_for +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.typelist +symbol.varargslist +symbol.vfpdef +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_arg +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_ANNOT +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_NONLOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.addaudithook(??) +sys.api_version +sys.argv(??) +sys.audit(event, *args) +sys.base_exec_prefix +sys.base_prefix +sys.breakpointhook(*args, **kws) +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(??) +sys.callstats(??) +sys.copyright +sys.displayhook(??) +sys.dont_write_bytecode(??) +sys.exc_info(??) +sys.excepthook(??) +sys.exec_prefix +sys.executable +sys.exit(??) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.get_asyncgen_hooks(??) +sys.get_coroutine_origin_tracking_depth(??) +sys.getallocatedblocks(??) +sys.getcheckinterval(??) +sys.getdefaultencoding(??) +sys.getdlopenflags(??) +sys.getfilesystemencodeerrors(??) +sys.getfilesystemencoding(??) +sys.getprofile(??) +sys.getrecursionlimit(??) +sys.getrefcount(??) +sys.getsizeof(object [, default]) -> int +sys.getswitchinterval(??) +sys.gettrace(??) +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(??) +sys.is_finalizing(??) +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.prefix +sys.pycache_prefix(??) +sys.set_asyncgen_hooks(* [, firstiter] [, finalizer]) +sys.set_coroutine_origin_tracking_depth(??) +sys.setcheckinterval(??) +sys.setdlopenflags(??) +sys.setprofile(function) +sys.setrecursionlimit(??) +sys.setswitchinterval(??) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.thread_info(??) +sys.unraisablehook(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempdirb(??) +tempfile.gettempprefix(??) +tempfile.gettempprefixb(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.ExceptHookArgs(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.excepthook(exc_type, exc_value, exc_traceback, thread) +threading.get_ident() -> integer +threading.get_native_id() -> integer +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.altzone +time.asctime([tuple]) -> string +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.monotonic_ns() -> int +time.perf_counter() -> float +time.perf_counter_ns() -> int +time.process_time() -> float +time.process_time_ns(??) +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.time_ns() -> int +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.EventType(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog(??) +tkinter.commondialog.ACTIVE +tkinter.commondialog.ALL +tkinter.commondialog.ANCHOR +tkinter.commondialog.ARC +tkinter.commondialog.BASELINE +tkinter.commondialog.BEVEL +tkinter.commondialog.BOTH +tkinter.commondialog.BOTTOM +tkinter.commondialog.BROWSE +tkinter.commondialog.BUTT +tkinter.commondialog.BaseWidget(??) +tkinter.commondialog.BitmapImage(??) +tkinter.commondialog.BooleanVar(??) +tkinter.commondialog.Button(??) +tkinter.commondialog.CASCADE +tkinter.commondialog.CENTER +tkinter.commondialog.CHAR +tkinter.commondialog.CHECKBUTTON +tkinter.commondialog.CHORD +tkinter.commondialog.COMMAND +tkinter.commondialog.CURRENT +tkinter.commondialog.CallWrapper(??) +tkinter.commondialog.Canvas(??) +tkinter.commondialog.Checkbutton(??) +tkinter.commondialog.DISABLED +tkinter.commondialog.DOTBOX +tkinter.commondialog.Dialog(??) +tkinter.commondialog.DoubleVar(??) +tkinter.commondialog.E +tkinter.commondialog.END +tkinter.commondialog.EW +tkinter.commondialog.EXCEPTION +tkinter.commondialog.EXTENDED +tkinter.commondialog.Entry(??) +tkinter.commondialog.Event(??) +tkinter.commondialog.EventType(??) +tkinter.commondialog.FALSE +tkinter.commondialog.FIRST +tkinter.commondialog.FLAT +tkinter.commondialog.Frame(??) +tkinter.commondialog.GROOVE +tkinter.commondialog.Grid(??) +tkinter.commondialog.HIDDEN +tkinter.commondialog.HORIZONTAL +tkinter.commondialog.INSERT +tkinter.commondialog.INSIDE +tkinter.commondialog.Image(??) +tkinter.commondialog.IntVar(??) +tkinter.commondialog.LAST +tkinter.commondialog.LEFT +tkinter.commondialog.Label(??) +tkinter.commondialog.LabelFrame(??) +tkinter.commondialog.Listbox(??) +tkinter.commondialog.MITER +tkinter.commondialog.MOVETO +tkinter.commondialog.MULTIPLE +tkinter.commondialog.Menu(??) +tkinter.commondialog.Menubutton(??) +tkinter.commondialog.Message(??) +tkinter.commondialog.Misc(??) +tkinter.commondialog.N +tkinter.commondialog.NE +tkinter.commondialog.NO +tkinter.commondialog.NONE +tkinter.commondialog.NORMAL +tkinter.commondialog.NS +tkinter.commondialog.NSEW +tkinter.commondialog.NUMERIC +tkinter.commondialog.NW +tkinter.commondialog.NoDefaultRoot(??) +tkinter.commondialog.OFF +tkinter.commondialog.ON +tkinter.commondialog.OUTSIDE +tkinter.commondialog.OptionMenu(??) +tkinter.commondialog.PAGES +tkinter.commondialog.PIESLICE +tkinter.commondialog.PROJECTING +tkinter.commondialog.Pack(??) +tkinter.commondialog.PanedWindow(??) +tkinter.commondialog.PhotoImage(??) +tkinter.commondialog.Place(??) +tkinter.commondialog.RADIOBUTTON +tkinter.commondialog.RAISED +tkinter.commondialog.READABLE +tkinter.commondialog.RIDGE +tkinter.commondialog.RIGHT +tkinter.commondialog.ROUND +tkinter.commondialog.Radiobutton(??) +tkinter.commondialog.S +tkinter.commondialog.SCROLL +tkinter.commondialog.SE +tkinter.commondialog.SEL +tkinter.commondialog.SEL_FIRST +tkinter.commondialog.SEL_LAST +tkinter.commondialog.SEPARATOR +tkinter.commondialog.SINGLE +tkinter.commondialog.SOLID +tkinter.commondialog.SUNKEN +tkinter.commondialog.SW +tkinter.commondialog.Scale(??) +tkinter.commondialog.Scrollbar(??) +tkinter.commondialog.Spinbox(??) +tkinter.commondialog.StringVar(??) +tkinter.commondialog.TOP +tkinter.commondialog.TRUE +tkinter.commondialog.Tcl(??) +tkinter.commondialog.TclError(??) +tkinter.commondialog.TclVersion +tkinter.commondialog.Text(??) +tkinter.commondialog.Tk(??) +tkinter.commondialog.TkVersion +tkinter.commondialog.Toplevel(??) +tkinter.commondialog.UNDERLINE +tkinter.commondialog.UNITS +tkinter.commondialog.VERTICAL +tkinter.commondialog.Variable(??) +tkinter.commondialog.W +tkinter.commondialog.WORD +tkinter.commondialog.WRITABLE +tkinter.commondialog.Widget(??) +tkinter.commondialog.Wm(??) +tkinter.commondialog.X +tkinter.commondialog.XView(??) +tkinter.commondialog.Y +tkinter.commondialog.YES +tkinter.commondialog.YView(??) +tkinter.commondialog.constants(??) +tkinter.commondialog.enum(??) +tkinter.commondialog.getboolean(??) +tkinter.commondialog.getdouble(??) +tkinter.commondialog.getint(??) +tkinter.commondialog.image_names(??) +tkinter.commondialog.image_types(??) +tkinter.commondialog.mainloop(??) +tkinter.commondialog.re(??) +tkinter.commondialog.scrolledtext(??) +tkinter.commondialog.sys(??) +tkinter.commondialog.wantobjects +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog(??) +tkinter.dialog.ACTIVE +tkinter.dialog.ALL +tkinter.dialog.ANCHOR +tkinter.dialog.ARC +tkinter.dialog.BASELINE +tkinter.dialog.BEVEL +tkinter.dialog.BOTH +tkinter.dialog.BOTTOM +tkinter.dialog.BROWSE +tkinter.dialog.BUTT +tkinter.dialog.BaseWidget(??) +tkinter.dialog.BitmapImage(??) +tkinter.dialog.BooleanVar(??) +tkinter.dialog.Button(??) +tkinter.dialog.CASCADE +tkinter.dialog.CENTER +tkinter.dialog.CHAR +tkinter.dialog.CHECKBUTTON +tkinter.dialog.CHORD +tkinter.dialog.COMMAND +tkinter.dialog.CURRENT +tkinter.dialog.CallWrapper(??) +tkinter.dialog.Canvas(??) +tkinter.dialog.Checkbutton(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.DISABLED +tkinter.dialog.DOTBOX +tkinter.dialog.Dialog(??) +tkinter.dialog.DoubleVar(??) +tkinter.dialog.E +tkinter.dialog.END +tkinter.dialog.EW +tkinter.dialog.EXCEPTION +tkinter.dialog.EXTENDED +tkinter.dialog.Entry(??) +tkinter.dialog.Event(??) +tkinter.dialog.EventType(??) +tkinter.dialog.FALSE +tkinter.dialog.FIRST +tkinter.dialog.FLAT +tkinter.dialog.Frame(??) +tkinter.dialog.GROOVE +tkinter.dialog.Grid(??) +tkinter.dialog.HIDDEN +tkinter.dialog.HORIZONTAL +tkinter.dialog.INSERT +tkinter.dialog.INSIDE +tkinter.dialog.Image(??) +tkinter.dialog.IntVar(??) +tkinter.dialog.LAST +tkinter.dialog.LEFT +tkinter.dialog.Label(??) +tkinter.dialog.LabelFrame(??) +tkinter.dialog.Listbox(??) +tkinter.dialog.MITER +tkinter.dialog.MOVETO +tkinter.dialog.MULTIPLE +tkinter.dialog.Menu(??) +tkinter.dialog.Menubutton(??) +tkinter.dialog.Message(??) +tkinter.dialog.Misc(??) +tkinter.dialog.N +tkinter.dialog.NE +tkinter.dialog.NO +tkinter.dialog.NONE +tkinter.dialog.NORMAL +tkinter.dialog.NS +tkinter.dialog.NSEW +tkinter.dialog.NUMERIC +tkinter.dialog.NW +tkinter.dialog.NoDefaultRoot(??) +tkinter.dialog.OFF +tkinter.dialog.ON +tkinter.dialog.OUTSIDE +tkinter.dialog.OptionMenu(??) +tkinter.dialog.PAGES +tkinter.dialog.PIESLICE +tkinter.dialog.PROJECTING +tkinter.dialog.Pack(??) +tkinter.dialog.PanedWindow(??) +tkinter.dialog.PhotoImage(??) +tkinter.dialog.Place(??) +tkinter.dialog.RADIOBUTTON +tkinter.dialog.RAISED +tkinter.dialog.READABLE +tkinter.dialog.RIDGE +tkinter.dialog.RIGHT +tkinter.dialog.ROUND +tkinter.dialog.Radiobutton(??) +tkinter.dialog.S +tkinter.dialog.SCROLL +tkinter.dialog.SE +tkinter.dialog.SEL +tkinter.dialog.SEL_FIRST +tkinter.dialog.SEL_LAST +tkinter.dialog.SEPARATOR +tkinter.dialog.SINGLE +tkinter.dialog.SOLID +tkinter.dialog.SUNKEN +tkinter.dialog.SW +tkinter.dialog.Scale(??) +tkinter.dialog.Scrollbar(??) +tkinter.dialog.Spinbox(??) +tkinter.dialog.StringVar(??) +tkinter.dialog.TOP +tkinter.dialog.TRUE +tkinter.dialog.Tcl(??) +tkinter.dialog.TclError(??) +tkinter.dialog.TclVersion +tkinter.dialog.Text(??) +tkinter.dialog.Tk(??) +tkinter.dialog.TkVersion +tkinter.dialog.Toplevel(??) +tkinter.dialog.UNDERLINE +tkinter.dialog.UNITS +tkinter.dialog.VERTICAL +tkinter.dialog.Variable(??) +tkinter.dialog.W +tkinter.dialog.WORD +tkinter.dialog.WRITABLE +tkinter.dialog.Widget(??) +tkinter.dialog.Wm(??) +tkinter.dialog.X +tkinter.dialog.XView(??) +tkinter.dialog.Y +tkinter.dialog.YES +tkinter.dialog.YView(??) +tkinter.dialog.colorchooser(??) +tkinter.dialog.commondialog(??) +tkinter.dialog.constants(??) +tkinter.dialog.enum(??) +tkinter.dialog.getboolean(??) +tkinter.dialog.getdouble(??) +tkinter.dialog.getint(??) +tkinter.dialog.image_names(??) +tkinter.dialog.image_types(??) +tkinter.dialog.mainloop(??) +tkinter.dialog.messagebox(??) +tkinter.dialog.re(??) +tkinter.dialog.scrolledtext(??) +tkinter.dialog.sys(??) +tkinter.dialog.wantobjects +tkinter.dnd(??) +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.enum(??) +tkinter.filedialog(??) +tkinter.filedialog.ACTIVE +tkinter.filedialog.ALL +tkinter.filedialog.ANCHOR +tkinter.filedialog.ARC +tkinter.filedialog.BASELINE +tkinter.filedialog.BEVEL +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.BROWSE +tkinter.filedialog.BUTT +tkinter.filedialog.BaseWidget(??) +tkinter.filedialog.BitmapImage(??) +tkinter.filedialog.BooleanVar(??) +tkinter.filedialog.Button(??) +tkinter.filedialog.CASCADE +tkinter.filedialog.CENTER +tkinter.filedialog.CHAR +tkinter.filedialog.CHECKBUTTON +tkinter.filedialog.CHORD +tkinter.filedialog.COMMAND +tkinter.filedialog.CURRENT +tkinter.filedialog.CallWrapper(??) +tkinter.filedialog.Canvas(??) +tkinter.filedialog.Checkbutton(??) +tkinter.filedialog.DISABLED +tkinter.filedialog.DOTBOX +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.DoubleVar(??) +tkinter.filedialog.E +tkinter.filedialog.END +tkinter.filedialog.EW +tkinter.filedialog.EXCEPTION +tkinter.filedialog.EXTENDED +tkinter.filedialog.Entry(??) +tkinter.filedialog.Event(??) +tkinter.filedialog.EventType(??) +tkinter.filedialog.FALSE +tkinter.filedialog.FIRST +tkinter.filedialog.FLAT +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.GROOVE +tkinter.filedialog.Grid(??) +tkinter.filedialog.HIDDEN +tkinter.filedialog.HORIZONTAL +tkinter.filedialog.INSERT +tkinter.filedialog.INSIDE +tkinter.filedialog.Image(??) +tkinter.filedialog.IntVar(??) +tkinter.filedialog.LAST +tkinter.filedialog.LEFT +tkinter.filedialog.Label(??) +tkinter.filedialog.LabelFrame(??) +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.MITER +tkinter.filedialog.MOVETO +tkinter.filedialog.MULTIPLE +tkinter.filedialog.Menu(??) +tkinter.filedialog.Menubutton(??) +tkinter.filedialog.Message(??) +tkinter.filedialog.Misc(??) +tkinter.filedialog.N +tkinter.filedialog.NE +tkinter.filedialog.NO +tkinter.filedialog.NONE +tkinter.filedialog.NORMAL +tkinter.filedialog.NS +tkinter.filedialog.NSEW +tkinter.filedialog.NUMERIC +tkinter.filedialog.NW +tkinter.filedialog.NoDefaultRoot(??) +tkinter.filedialog.OFF +tkinter.filedialog.ON +tkinter.filedialog.OUTSIDE +tkinter.filedialog.Open(??) +tkinter.filedialog.OptionMenu(??) +tkinter.filedialog.PAGES +tkinter.filedialog.PIESLICE +tkinter.filedialog.PROJECTING +tkinter.filedialog.Pack(??) +tkinter.filedialog.PanedWindow(??) +tkinter.filedialog.PhotoImage(??) +tkinter.filedialog.Place(??) +tkinter.filedialog.RADIOBUTTON +tkinter.filedialog.RAISED +tkinter.filedialog.READABLE +tkinter.filedialog.RIDGE +tkinter.filedialog.RIGHT +tkinter.filedialog.ROUND +tkinter.filedialog.Radiobutton(??) +tkinter.filedialog.S +tkinter.filedialog.SCROLL +tkinter.filedialog.SE +tkinter.filedialog.SEL +tkinter.filedialog.SEL_FIRST +tkinter.filedialog.SEL_LAST +tkinter.filedialog.SEPARATOR +tkinter.filedialog.SINGLE +tkinter.filedialog.SOLID +tkinter.filedialog.SUNKEN +tkinter.filedialog.SW +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scale(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.Spinbox(??) +tkinter.filedialog.StringVar(??) +tkinter.filedialog.TOP +tkinter.filedialog.TRUE +tkinter.filedialog.Tcl(??) +tkinter.filedialog.TclError(??) +tkinter.filedialog.TclVersion +tkinter.filedialog.Text(??) +tkinter.filedialog.Tk(??) +tkinter.filedialog.TkVersion +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.UNDERLINE +tkinter.filedialog.UNITS +tkinter.filedialog.VERTICAL +tkinter.filedialog.Variable(??) +tkinter.filedialog.W +tkinter.filedialog.WORD +tkinter.filedialog.WRITABLE +tkinter.filedialog.Widget(??) +tkinter.filedialog.Wm(??) +tkinter.filedialog.X +tkinter.filedialog.XView(??) +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.YView(??) +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.colorchooser(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.constants(??) +tkinter.filedialog.dialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.dnd(??) +tkinter.filedialog.enum(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.getboolean(??) +tkinter.filedialog.getdouble(??) +tkinter.filedialog.getint(??) +tkinter.filedialog.image_names(??) +tkinter.filedialog.image_types(??) +tkinter.filedialog.mainloop(??) +tkinter.filedialog.messagebox(??) +tkinter.filedialog.os(??) +tkinter.filedialog.re(??) +tkinter.filedialog.scrolledtext(??) +tkinter.filedialog.sys(??) +tkinter.filedialog.test(??) +tkinter.filedialog.ttk(??) +tkinter.filedialog.wantobjects +tkinter.font(??) +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.EventType(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.colorchooser(??) +tkinter.simpledialog.commondialog(??) +tkinter.simpledialog.constants(??) +tkinter.simpledialog.dialog(??) +tkinter.simpledialog.dnd(??) +tkinter.simpledialog.enum(??) +tkinter.simpledialog.filedialog(??) +tkinter.simpledialog.font(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.simpledialog.re(??) +tkinter.simpledialog.scrolledtext(??) +tkinter.simpledialog.sys(??) +tkinter.simpledialog.tix(??) +tkinter.simpledialog.tkinter(??) +tkinter.simpledialog.ttk(??) +tkinter.simpledialog.wantobjects +tkinter.sys(??) +tkinter.tix(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.EventType(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.colorchooser(??) +tkinter.tix.commondialog(??) +tkinter.tix.constants(??) +tkinter.tix.dialog(??) +tkinter.tix.dnd(??) +tkinter.tix.enum(??) +tkinter.tix.filedialog(??) +tkinter.tix.font(??) +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.messagebox(??) +tkinter.tix.os(??) +tkinter.tix.re(??) +tkinter.tix.scrolledtext(??) +tkinter.tix.sys(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.tix.ttk(??) +tkinter.tix.wantobjects +tkinter.ttk(??) +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Spinbox(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.wantobjects +token.AMPER +token.AMPEREQUAL +token.ASYNC +token.AT +token.ATEQUAL +token.AWAIT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COLONEQUAL +token.COMMA +token.COMMENT +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENCODING +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.EXACT_TOKEN_TYPES(??) +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NL +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.TYPE_COMMENT +token.TYPE_IGNORE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.ASYNC +tokenize.AT +tokenize.ATEQUAL +tokenize.AWAIT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COLONEQUAL +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TYPE_COMMENT +tokenize.TYPE_IGNORE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.u +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.os(??) +trace.pickle(??) +trace.sys(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +traceback.FrameSummary(??) +traceback.StackSummary(??) +traceback.TracebackException(??) +traceback.clear_frames(??) +traceback.collections(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.itertools(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +traceback.walk_stack(??) +traceback.walk_tb(??) +tracemalloc.BaseFilter(??) +tracemalloc.DomainFilter(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Iterable(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces(??) +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit(??) +tracemalloc.get_traced_memory(??) +tracemalloc.get_tracemalloc_memory(??) +tracemalloc.is_tracing(??) +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.start(??) +tracemalloc.stop(??) +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple(??) +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.sys(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object_or_name, bases, dict) +types.AsyncGeneratorType(??) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CellType(??) +types.ClassMethodDescriptorType(??) +types.CodeType(??) +types.CoroutineType(??) +types.DynamicClassAttribute(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodDescriptorType(??) +types.MethodType(??) +types.MethodWrapperType(??) +types.ModuleType(??) +types.SimpleNamespace(??) +types.TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno) +types.WrapperDescriptorType(??) +types.coroutine(??) +types.new_class(??) +types.prepare_class(??) +types.resolve_bases(??) +typing.ABCMeta(??) +typing.AbstractSet(??) +typing.Any(??) +typing.AnyStr(??) +typing.AsyncContextManager(??) +typing.AsyncGenerator(??) +typing.AsyncIterable(??) +typing.AsyncIterator(??) +typing.Awaitable(??) +typing.BinaryIO(??) +typing.ByteString(??) +typing.CT_co(??) +typing.Callable(??) +typing.ChainMap(??) +typing.ClassVar(??) +typing.Collection(??) +typing.Container(??) +typing.ContextManager(??) +typing.Coroutine(??) +typing.Counter(??) +typing.DefaultDict(??) +typing.Deque(??) +typing.Dict(??) +typing.EXCLUDED_ATTRIBUTES(??) +typing.Final(??) +typing.ForwardRef(??) +typing.FrozenSet(??) +typing.Generator(??) +typing.Generic(??) +typing.Hashable(??) +typing.IO(??) +typing.ItemsView(??) +typing.Iterable(??) +typing.Iterator(??) +typing.KT(??) +typing.KeysView(??) +typing.List(??) +typing.Literal(??) +typing.Mapping(??) +typing.MappingView(??) +typing.Match(??) +typing.MethodDescriptorType(??) +typing.MethodWrapperType(??) +typing.MutableMapping(??) +typing.MutableSequence(??) +typing.MutableSet(??) +typing.NamedTuple(??) +typing.NamedTupleMeta(??) +typing.NewType(??) +typing.NoReturn(??) +typing.Optional(??) +typing.OrderedDict(??) +typing.Pattern(??) +typing.Protocol(??) +typing.Reversible(??) +typing.Sequence(??) +typing.Set(??) +typing.Sized(??) +typing.SupportsAbs(??) +typing.SupportsBytes(??) +typing.SupportsComplex(??) +typing.SupportsFloat(??) +typing.SupportsIndex(??) +typing.SupportsInt(??) +typing.SupportsRound(??) +typing.T(??) +typing.TYPE_CHECKING(??) +typing.T_co(??) +typing.T_contra(??) +typing.Text(??) +typing.TextIO(??) +typing.Tuple(??) +typing.Type(??) +typing.TypeVar(??) +typing.TypedDict(??) +typing.Union(??) +typing.VT(??) +typing.VT_co(??) +typing.V_co(??) +typing.ValuesView(??) +typing.WrapperDescriptorType(??) +typing.abstractmethod(??) +typing.cast(??) +typing.collections(??) +typing.contextlib(??) +typing.final(??) +typing.functools(??) +typing.get_args(??) +typing.get_origin(??) +typing.get_type_hints(??) +typing.io(??) +typing.no_type_check(??) +typing.no_type_check_decorator(??) +typing.operator(??) +typing.overload(??) +typing.re(??) +typing.runtime_checkable(??) +typing.stdlib_re(??) +typing.sys(??) +typing.types(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr(??) +urllib.parse.splithost(??) +urllib.parse.splitnport(??) +urllib.parse.splitpasswd(??) +urllib.parse.splitport(??) +urllib.parse.splitquery(??) +urllib.parse.splittag(??) +urllib.parse.splittype(??) +urllib.parse.splituser(??) +urllib.parse.splitvalue(??) +urllib.parse.sys(??) +urllib.parse.to_bytes(??) +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap(??) +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.parse.warnings(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPPasswordMgrWithPriorAuth(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.ssl(??) +urllib.request.string(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap(??) +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.response.tempfile(??) +urllib.robotparser(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RequestRate(requests, seconds) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.collections(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.Enum(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.SafeUUID(??) +uuid.UUID(??) +uuid.bytes_(??) +uuid.getnode(??) +uuid.int_(??) +uuid.os(??) +uuid.platform(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.sysconfig(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.audioop(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.openfp(??) +wave.struct(??) +wave.sys(??) +wave.warnings(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.itertools(??) +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.register_standard_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.threading(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.raise_conversion_error(??) +xdrlib.struct(??) +xdrlib.wraps(??) +xml.dom(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.sys(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat(??) +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder(??) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.warnings(??) +xml.dom.xmlbuilder.xml(??) +xml.etree(??) +xml.etree.ElementInclude(??) +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementPath(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree(??) +xml.etree.ElementTree.C14NWriterTarget(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.canonicalize(??) +xml.etree.ElementTree.collections(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree(??) +xml.etree.cElementTree.C14NWriterTarget(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLPullParser(??) +xml.etree.cElementTree.canonicalize(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(??) +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate(??) +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Decimal(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.html(??) +xmlrpc.server.http(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.partial(func, *args, **keywords) - new function with partial application +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.signature(??) +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(*iterables) --> zip object +zipapp.MAIN_TEMPLATE +zipapp.ZipAppError(??) +zipapp.contextlib(??) +zipapp.create_archive(??) +zipapp.get_interpreter(??) +zipapp.main(??) +zipapp.os(??) +zipapp.pathlib(??) +zipapp.shebang_encoding +zipapp.shutil(??) +zipapp.stat(??) +zipapp.sys(??) +zipapp.zipfile(??) +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.DEFAULT_VERSION +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.Path(??) +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.functools(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.itertools(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.posixpath(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.threading(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.END_CENTRAL_DIR_SIZE +zipimport.MAX_COMMENT_LEN +zipimport.STRING_END_ARCHIVE +zipimport.ZipImportError(??) +zipimport.alt_path_sep +zipimport.cp437_table +zipimport.marshal(??) +zipimport.path_sep +zipimport.sys(??) +zipimport.time(??) +zipimport.zipimporter(archivepath) -> zipimporter object diff --git a/third_party/qscintilla/qsci/api/python/Python-3.9.api b/third_party/qscintilla/qsci/api/python/Python-3.9.api new file mode 100644 index 0000000..1342503 --- /dev/null +++ b/third_party/qscintilla/qsci/api/python/Python-3.9.api @@ -0,0 +1,9200 @@ +ArithmeticError(??) +AssertionError(??) +AttributeError(??) +BaseException(??) +BlockingIOError(??) +BrokenPipeError(??) +BufferError(??) +BytesWarning(??) +ChildProcessError(??) +ConnectionAbortedError(??) +ConnectionError(??) +ConnectionRefusedError(??) +ConnectionResetError(??) +DeprecationWarning(??) +EOFError(??) +Ellipsis(??) +EnvironmentError(??) +Exception(??) +False(??) +FileExistsError(??) +FileNotFoundError(??) +FloatingPointError(??) +FutureWarning(??) +GeneratorExit(??) +IOError(??) +ImportError(??) +ImportWarning(??) +IndentationError(??) +IndexError(??) +InterruptedError(??) +IsADirectoryError(??) +KeyError(??) +KeyboardInterrupt(??) +LookupError(??) +MemoryError(??) +ModuleNotFoundError(??) +NameError(??) +None(??) +NotADirectoryError(??) +NotImplemented(??) +NotImplementedError(??) +OSError(??) +OverflowError(??) +PendingDeprecationWarning(??) +PermissionError(??) +ProcessLookupError(??) +RecursionError(??) +ReferenceError(??) +ResourceWarning(??) +RuntimeError(??) +RuntimeWarning(??) +StopAsyncIteration(??) +StopIteration(??) +SyntaxError(??) +SyntaxWarning(??) +SystemError(??) +SystemExit(??) +TabError(??) +TimeoutError(??) +True(??) +TypeError(??) +UnboundLocalError(??) +UnicodeDecodeError(??) +UnicodeEncodeError(??) +UnicodeError(??) +UnicodeTranslateError(??) +UnicodeWarning(??) +UserWarning(??) +ValueError(??) +Warning(??) +ZeroDivisionError(??) +abc.ABC(??) +abc.ABCMeta(??) +abc.abstractclassmethod(??) +abc.abstractmethod(??) +abc.abstractproperty(??) +abc.abstractstaticmethod(??) +abc.get_cache_token(??) +abs(??) +aifc.Aifc_read(??) +aifc.Aifc_write(??) +aifc.Chunk(??) +aifc.Error(??) +aifc.builtins(??) +aifc.namedtuple(??) +aifc.open(??) +aifc.struct(??) +aifc.warnings(??) +all(??) +any(??) +argparse.Action(??) +argparse.ArgumentDefaultsHelpFormatter(??) +argparse.ArgumentError(??) +argparse.ArgumentParser(??) +argparse.ArgumentTypeError(??) +argparse.BooleanOptionalAction(??) +argparse.FileType(??) +argparse.HelpFormatter(??) +argparse.MetavarTypeHelpFormatter(??) +argparse.Namespace(??) +argparse.ONE_OR_MORE +argparse.OPTIONAL +argparse.PARSER +argparse.REMAINDER +argparse.RawDescriptionHelpFormatter(??) +argparse.RawTextHelpFormatter(??) +argparse.SUPPRESS +argparse.ZERO_OR_MORE +argparse.ngettext(??) +ascii(??) +ast.AST(??) +ast.Add(??) +ast.And(??) +ast.AnnAssign(expr target, expr annotation, expr? value, int simple) +ast.Assert(expr test, expr? msg) +ast.Assign(expr* targets, expr value, string? type_comment) +ast.AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment) +ast.AsyncFunctionDef(identifier name, arguments args, stmt* body, expr* decorator_list, expr? returns, string? type_comment) +ast.AsyncWith(withitem* items, stmt* body, string? type_comment) +ast.Attribute(expr value, identifier attr, expr_context ctx) +ast.AugAssign(expr target, operator op, expr value) +ast.AugLoad(??) +ast.AugStore(??) +ast.Await(expr value) +ast.BinOp(expr left, operator op, expr right) +ast.BitAnd(??) +ast.BitOr(??) +ast.BitXor(??) +ast.BoolOp(boolop op, expr* values) +ast.Break(??) +ast.Bytes(??) +ast.Call(expr func, expr* args, keyword* keywords) +ast.ClassDef(identifier name, expr* bases, keyword* keywords, stmt* body, expr* decorator_list) +ast.Compare(expr left, cmpop* ops, expr* comparators) +ast.Constant(constant value, string? kind) +ast.Continue(??) +ast.Del(??) +ast.Delete(expr* targets) +ast.Dict(expr* keys, expr* values) +ast.DictComp(expr key, expr value, comprehension* generators) +ast.Div(??) +ast.Ellipsis(??) +ast.Eq(??) +ast.ExceptHandler(expr? type, identifier? name, stmt* body) +ast.Expr(expr value) +ast.Expression(expr body) +ast.ExtSlice(??) +ast.FloorDiv(??) +ast.For(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment) +ast.FormattedValue(expr value, int? conversion, expr? format_spec) +ast.FunctionDef(identifier name, arguments args, stmt* body, expr* decorator_list, expr? returns, string? type_comment) +ast.FunctionType(expr* argtypes, expr returns) +ast.GeneratorExp(expr elt, comprehension* generators) +ast.Global(identifier* names) +ast.Gt(??) +ast.GtE(??) +ast.If(expr test, stmt* body, stmt* orelse) +ast.IfExp(expr test, expr body, expr orelse) +ast.Import(alias* names) +ast.ImportFrom(identifier? module, alias* names, int? level) +ast.In(??) +ast.Index(??) +ast.IntEnum(??) +ast.Interactive(stmt* body) +ast.Invert(??) +ast.Is(??) +ast.IsNot(??) +ast.JoinedStr(expr* values) +ast.LShift(??) +ast.Lambda(arguments args, expr body) +ast.List(expr* elts, expr_context ctx) +ast.ListComp(expr elt, comprehension* generators) +ast.Load(??) +ast.Lt(??) +ast.LtE(??) +ast.MatMult(??) +ast.Mod(??) +ast.Module(stmt* body, type_ignore* type_ignores) +ast.Mult(??) +ast.Name(identifier id, expr_context ctx) +ast.NameConstant(??) +ast.NamedExpr(expr target, expr value) +ast.NodeTransformer(??) +ast.NodeVisitor(??) +ast.Nonlocal(identifier* names) +ast.Not(??) +ast.NotEq(??) +ast.NotIn(??) +ast.Num(??) +ast.Or(??) +ast.Param(??) +ast.Pass(??) +ast.Pow(??) +ast.PyCF_ALLOW_TOP_LEVEL_AWAIT +ast.PyCF_ONLY_AST +ast.PyCF_TYPE_COMMENTS +ast.RShift(??) +ast.Raise(expr? exc, expr? cause) +ast.Return(expr? value) +ast.Set(expr* elts) +ast.SetComp(expr elt, comprehension* generators) +ast.Slice(expr? lower, expr? upper, expr? step) +ast.Starred(expr value, expr_context ctx) +ast.Store(??) +ast.Str(??) +ast.Sub(??) +ast.Subscript(expr value, expr slice, expr_context ctx) +ast.Suite(??) +ast.Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody) +ast.Tuple(expr* elts, expr_context ctx) +ast.TypeIgnore(int lineno, string tag) +ast.UAdd(??) +ast.USub(??) +ast.UnaryOp(unaryop op, expr operand) +ast.While(expr test, stmt* body, stmt* orelse) +ast.With(withitem* items, stmt* body, string? type_comment) +ast.Yield(expr? value) +ast.YieldFrom(expr value) +ast.alias(identifier name, identifier? asname) +ast.arg(identifier arg, expr? annotation, string? type_comment) +ast.arguments(arg* posonlyargs, arg* args, arg? vararg, arg* kwonlyargs, expr* kw_defaults, arg? kwarg, expr* defaults) +ast.auto(??) +ast.boolop(??) +ast.cmpop(??) +ast.comprehension(expr target, expr iter, expr* ifs, int is_async) +ast.contextmanager(??) +ast.copy_location(??) +ast.dump(??) +ast.excepthandler(??) +ast.expr(??) +ast.expr_context(??) +ast.fix_missing_locations(??) +ast.get_docstring(??) +ast.get_source_segment(??) +ast.increment_lineno(??) +ast.iter_child_nodes(??) +ast.iter_fields(??) +ast.keyword(identifier? arg, expr value) +ast.literal_eval(??) +ast.main(??) +ast.mod(??) +ast.nullcontext(??) +ast.operator(??) +ast.parse(??) +ast.slice(??) +ast.stmt(??) +ast.sys(??) +ast.type_ignore(??) +ast.unaryop(??) +ast.unparse(??) +ast.walk(??) +ast.withitem(expr context_expr, expr? optional_vars) +asynchat.async_chat(??) +asynchat.asyncore(??) +asynchat.deque([iterable[, maxlen]]) --> deque object +asynchat.find_prefix_at_end(??) +asynchat.simple_producer(??) +asyncio.ALL_COMPLETED +asyncio.AbstractChildWatcher(??) +asyncio.AbstractEventLoop(??) +asyncio.AbstractEventLoopPolicy(??) +asyncio.AbstractServer(??) +asyncio.BaseEventLoop(??) +asyncio.BaseProtocol(??) +asyncio.BaseTransport(??) +asyncio.BoundedSemaphore(??) +asyncio.BufferedProtocol(??) +asyncio.CancelledError(??) +asyncio.Condition(??) +asyncio.DatagramProtocol(??) +asyncio.DatagramTransport(??) +asyncio.DefaultEventLoopPolicy(??) +asyncio.Event(??) +asyncio.FIRST_COMPLETED +asyncio.FIRST_EXCEPTION +asyncio.FastChildWatcher(??) +asyncio.Future(??) +asyncio.Handle(??) +asyncio.IncompleteReadError(??) +asyncio.InvalidStateError(??) +asyncio.LifoQueue(??) +asyncio.LimitOverrunError(??) +asyncio.Lock(??) +asyncio.MultiLoopChildWatcher(??) +asyncio.PidfdChildWatcher(??) +asyncio.PriorityQueue(??) +asyncio.Protocol(??) +asyncio.Queue(??) +asyncio.QueueEmpty(??) +asyncio.QueueFull(??) +asyncio.ReadTransport(??) +asyncio.SafeChildWatcher(??) +asyncio.SelectorEventLoop(??) +asyncio.Semaphore(??) +asyncio.SendfileNotAvailableError(??) +asyncio.StreamReader(??) +asyncio.StreamReaderProtocol(??) +asyncio.StreamWriter(??) +asyncio.SubprocessProtocol(??) +asyncio.SubprocessTransport(??) +asyncio.Task(??) +asyncio.ThreadedChildWatcher(??) +asyncio.TimeoutError(??) +asyncio.TimerHandle(??) +asyncio.Transport(??) +asyncio.WriteTransport(??) +asyncio.all_tasks(??) +asyncio.as_completed(??) +asyncio.base_events(??) +asyncio.base_events.BaseEventLoop(??) +asyncio.base_events.MAXIMUM_SELECT_TIMEOUT +asyncio.base_events.Server(??) +asyncio.base_events.collections(??) +asyncio.base_events.concurrent(??) +asyncio.base_events.constants(??) +asyncio.base_events.coroutines(??) +asyncio.base_events.events(??) +asyncio.base_events.exceptions(??) +asyncio.base_events.functools(??) +asyncio.base_events.futures(??) +asyncio.base_events.heapq(??) +asyncio.base_events.itertools(??) +asyncio.base_events.logger(??) +asyncio.base_events.os(??) +asyncio.base_events.protocols(??) +asyncio.base_events.socket(??) +asyncio.base_events.ssl(??) +asyncio.base_events.sslproto(??) +asyncio.base_events.staggered(??) +asyncio.base_events.stat(??) +asyncio.base_events.subprocess(??) +asyncio.base_events.sys(??) +asyncio.base_events.tasks(??) +asyncio.base_events.threading(??) +asyncio.base_events.time(??) +asyncio.base_events.traceback(??) +asyncio.base_events.transports(??) +asyncio.base_events.trsock(??) +asyncio.base_events.warnings(??) +asyncio.base_events.weakref(??) +asyncio.base_futures(??) +asyncio.base_futures.format_helpers(??) +asyncio.base_futures.isfuture(??) +asyncio.base_futures.reprlib(??) +asyncio.base_subprocess(??) +asyncio.base_subprocess.BaseSubprocessTransport(??) +asyncio.base_subprocess.ReadSubprocessPipeProto(??) +asyncio.base_subprocess.WriteSubprocessPipeProto(??) +asyncio.base_subprocess.collections(??) +asyncio.base_subprocess.logger(??) +asyncio.base_subprocess.protocols(??) +asyncio.base_subprocess.subprocess(??) +asyncio.base_subprocess.transports(??) +asyncio.base_subprocess.warnings(??) +asyncio.base_tasks(??) +asyncio.base_tasks.base_futures(??) +asyncio.base_tasks.coroutines(??) +asyncio.base_tasks.linecache(??) +asyncio.base_tasks.traceback(??) +asyncio.constants(??) +asyncio.constants.ACCEPT_RETRY_DELAY +asyncio.constants.DEBUG_STACK_DEPTH +asyncio.constants.LOG_THRESHOLD_FOR_CONNLOST_WRITES +asyncio.constants.SENDFILE_FALLBACK_READBUFFER_SIZE +asyncio.constants.SSL_HANDSHAKE_TIMEOUT +asyncio.constants.enum(??) +asyncio.coroutine(??) +asyncio.coroutines(??) +asyncio.coroutines.CoroWrapper(??) +asyncio.coroutines.base_futures(??) +asyncio.coroutines.collections(??) +asyncio.coroutines.constants(??) +asyncio.coroutines.coroutine(??) +asyncio.coroutines.format_helpers(??) +asyncio.coroutines.functools(??) +asyncio.coroutines.inspect(??) +asyncio.coroutines.iscoroutine(??) +asyncio.coroutines.iscoroutinefunction(??) +asyncio.coroutines.logger(??) +asyncio.coroutines.os(??) +asyncio.coroutines.sys(??) +asyncio.coroutines.traceback(??) +asyncio.coroutines.types(??) +asyncio.coroutines.warnings(??) +asyncio.create_subprocess_exec(??) +asyncio.create_subprocess_shell(??) +asyncio.create_task(??) +asyncio.current_task(??) +asyncio.ensure_future(??) +asyncio.events(??) +asyncio.events.AbstractEventLoop(??) +asyncio.events.AbstractEventLoopPolicy(??) +asyncio.events.AbstractServer(??) +asyncio.events.BaseDefaultEventLoopPolicy(??) +asyncio.events.Handle(??) +asyncio.events.TimerHandle(??) +asyncio.events.contextvars(??) +asyncio.events.format_helpers(??) +asyncio.events.get_child_watcher(??) +asyncio.events.get_event_loop(??) +asyncio.events.get_event_loop_policy(??) +asyncio.events.get_running_loop(??) +asyncio.events.new_event_loop(??) +asyncio.events.os(??) +asyncio.events.set_child_watcher(??) +asyncio.events.set_event_loop(??) +asyncio.events.set_event_loop_policy(??) +asyncio.events.socket(??) +asyncio.events.subprocess(??) +asyncio.events.sys(??) +asyncio.events.threading(??) +asyncio.exceptions(??) +asyncio.exceptions.CancelledError(??) +asyncio.exceptions.IncompleteReadError(??) +asyncio.exceptions.InvalidStateError(??) +asyncio.exceptions.LimitOverrunError(??) +asyncio.exceptions.SendfileNotAvailableError(??) +asyncio.exceptions.TimeoutError(??) +asyncio.format_helpers(??) +asyncio.format_helpers.constants(??) +asyncio.format_helpers.extract_stack(??) +asyncio.format_helpers.functools(??) +asyncio.format_helpers.inspect(??) +asyncio.format_helpers.reprlib(??) +asyncio.format_helpers.sys(??) +asyncio.format_helpers.traceback(??) +asyncio.futures(??) +asyncio.futures.Future(??) +asyncio.futures.STACK_DEBUG +asyncio.futures.base_futures(??) +asyncio.futures.concurrent(??) +asyncio.futures.contextvars(??) +asyncio.futures.events(??) +asyncio.futures.exceptions(??) +asyncio.futures.format_helpers(??) +asyncio.futures.isfuture(??) +asyncio.futures.logging(??) +asyncio.futures.sys(??) +asyncio.futures.wrap_future(??) +asyncio.gather(??) +asyncio.get_child_watcher(??) +asyncio.get_event_loop(??) +asyncio.get_event_loop_policy(??) +asyncio.get_running_loop(??) +asyncio.iscoroutine(??) +asyncio.iscoroutinefunction(??) +asyncio.isfuture(??) +asyncio.locks(??) +asyncio.locks.BoundedSemaphore(??) +asyncio.locks.Condition(??) +asyncio.locks.Event(??) +asyncio.locks.Lock(??) +asyncio.locks.Semaphore(??) +asyncio.locks.collections(??) +asyncio.locks.events(??) +asyncio.locks.exceptions(??) +asyncio.locks.warnings(??) +asyncio.log(??) +asyncio.log.logger(??) +asyncio.log.logging(??) +asyncio.new_event_loop(??) +asyncio.open_connection(??) +asyncio.open_unix_connection(??) +asyncio.proactor_events(??) +asyncio.proactor_events.BaseProactorEventLoop(??) +asyncio.proactor_events.base_events(??) +asyncio.proactor_events.collections(??) +asyncio.proactor_events.constants(??) +asyncio.proactor_events.exceptions(??) +asyncio.proactor_events.futures(??) +asyncio.proactor_events.io(??) +asyncio.proactor_events.logger(??) +asyncio.proactor_events.os(??) +asyncio.proactor_events.protocols(??) +asyncio.proactor_events.signal(??) +asyncio.proactor_events.socket(??) +asyncio.proactor_events.sslproto(??) +asyncio.proactor_events.threading(??) +asyncio.proactor_events.transports(??) +asyncio.proactor_events.trsock(??) +asyncio.proactor_events.warnings(??) +asyncio.protocols(??) +asyncio.protocols.BaseProtocol(??) +asyncio.protocols.BufferedProtocol(??) +asyncio.protocols.DatagramProtocol(??) +asyncio.protocols.Protocol(??) +asyncio.protocols.SubprocessProtocol(??) +asyncio.queues(??) +asyncio.queues.LifoQueue(??) +asyncio.queues.PriorityQueue(??) +asyncio.queues.Queue(??) +asyncio.queues.QueueEmpty(??) +asyncio.queues.QueueFull(??) +asyncio.queues.collections(??) +asyncio.queues.events(??) +asyncio.queues.heapq(??) +asyncio.queues.locks(??) +asyncio.queues.warnings(??) +asyncio.run(??) +asyncio.run_coroutine_threadsafe(??) +asyncio.runners(??) +asyncio.runners.coroutines(??) +asyncio.runners.events(??) +asyncio.runners.run(??) +asyncio.runners.tasks(??) +asyncio.selector_events(??) +asyncio.selector_events.BaseSelectorEventLoop(??) +asyncio.selector_events.base_events(??) +asyncio.selector_events.collections(??) +asyncio.selector_events.constants(??) +asyncio.selector_events.errno(??) +asyncio.selector_events.events(??) +asyncio.selector_events.functools(??) +asyncio.selector_events.futures(??) +asyncio.selector_events.logger(??) +asyncio.selector_events.protocols(??) +asyncio.selector_events.selectors(??) +asyncio.selector_events.socket(??) +asyncio.selector_events.ssl(??) +asyncio.selector_events.sslproto(??) +asyncio.selector_events.transports(??) +asyncio.selector_events.trsock(??) +asyncio.selector_events.warnings(??) +asyncio.selector_events.weakref(??) +asyncio.set_child_watcher(??) +asyncio.set_event_loop(??) +asyncio.set_event_loop_policy(??) +asyncio.shield(??) +asyncio.sleep(??) +asyncio.sslproto(??) +asyncio.sslproto.SSLProtocol(??) +asyncio.sslproto.collections(??) +asyncio.sslproto.constants(??) +asyncio.sslproto.logger(??) +asyncio.sslproto.protocols(??) +asyncio.sslproto.ssl(??) +asyncio.sslproto.transports(??) +asyncio.sslproto.warnings(??) +asyncio.staggered(??) +asyncio.staggered.contextlib(??) +asyncio.staggered.events(??) +asyncio.staggered.exceptions_mod(??) +asyncio.staggered.locks(??) +asyncio.staggered.staggered_race(??) +asyncio.staggered.tasks(??) +asyncio.staggered.typing(??) +asyncio.start_server(??) +asyncio.start_unix_server(??) +asyncio.streams(??) +asyncio.streams.FlowControlMixin(??) +asyncio.streams.StreamReader(??) +asyncio.streams.StreamReaderProtocol(??) +asyncio.streams.StreamWriter(??) +asyncio.streams.coroutines(??) +asyncio.streams.events(??) +asyncio.streams.exceptions(??) +asyncio.streams.format_helpers(??) +asyncio.streams.logger(??) +asyncio.streams.open_connection(??) +asyncio.streams.open_unix_connection(??) +asyncio.streams.protocols(??) +asyncio.streams.sleep(??) +asyncio.streams.socket(??) +asyncio.streams.start_server(??) +asyncio.streams.start_unix_server(??) +asyncio.streams.sys(??) +asyncio.streams.warnings(??) +asyncio.streams.weakref(??) +asyncio.subprocess(??) +asyncio.subprocess.DEVNULL +asyncio.subprocess.PIPE +asyncio.subprocess.Process(??) +asyncio.subprocess.STDOUT +asyncio.subprocess.SubprocessStreamProtocol(??) +asyncio.subprocess.create_subprocess_exec(??) +asyncio.subprocess.create_subprocess_shell(??) +asyncio.subprocess.events(??) +asyncio.subprocess.logger(??) +asyncio.subprocess.protocols(??) +asyncio.subprocess.streams(??) +asyncio.subprocess.subprocess(??) +asyncio.subprocess.tasks(??) +asyncio.subprocess.warnings(??) +asyncio.sys(??) +asyncio.tasks(??) +asyncio.tasks.ALL_COMPLETED +asyncio.tasks.FIRST_COMPLETED +asyncio.tasks.FIRST_EXCEPTION +asyncio.tasks.Task(??) +asyncio.tasks.all_tasks(??) +asyncio.tasks.as_completed(??) +asyncio.tasks.base_tasks(??) +asyncio.tasks.concurrent(??) +asyncio.tasks.contextvars(??) +asyncio.tasks.coroutines(??) +asyncio.tasks.create_task(??) +asyncio.tasks.current_task(??) +asyncio.tasks.ensure_future(??) +asyncio.tasks.events(??) +asyncio.tasks.exceptions(??) +asyncio.tasks.functools(??) +asyncio.tasks.futures(??) +asyncio.tasks.gather(??) +asyncio.tasks.inspect(??) +asyncio.tasks.itertools(??) +asyncio.tasks.run_coroutine_threadsafe(??) +asyncio.tasks.shield(??) +asyncio.tasks.sleep(??) +asyncio.tasks.types(??) +asyncio.tasks.wait(??) +asyncio.tasks.wait_for(??) +asyncio.tasks.warnings(??) +asyncio.tasks.weakref(??) +asyncio.threads(??) +asyncio.threads.contextvars(??) +asyncio.threads.events(??) +asyncio.threads.functools(??) +asyncio.threads.to_thread(??) +asyncio.to_thread(??) +asyncio.transports(??) +asyncio.transports.BaseTransport(??) +asyncio.transports.DatagramTransport(??) +asyncio.transports.ReadTransport(??) +asyncio.transports.SubprocessTransport(??) +asyncio.transports.Transport(??) +asyncio.transports.WriteTransport(??) +asyncio.trsock(??) +asyncio.trsock.TransportSocket(??) +asyncio.trsock.socket(??) +asyncio.trsock.warnings(??) +asyncio.unix_events(??) +asyncio.unix_events.AbstractChildWatcher(??) +asyncio.unix_events.BaseChildWatcher(??) +asyncio.unix_events.DefaultEventLoopPolicy(??) +asyncio.unix_events.FastChildWatcher(??) +asyncio.unix_events.MultiLoopChildWatcher(??) +asyncio.unix_events.PidfdChildWatcher(??) +asyncio.unix_events.SafeChildWatcher(??) +asyncio.unix_events.SelectorEventLoop(??) +asyncio.unix_events.ThreadedChildWatcher(??) +asyncio.unix_events.base_events(??) +asyncio.unix_events.base_subprocess(??) +asyncio.unix_events.constants(??) +asyncio.unix_events.coroutines(??) +asyncio.unix_events.errno(??) +asyncio.unix_events.events(??) +asyncio.unix_events.exceptions(??) +asyncio.unix_events.futures(??) +asyncio.unix_events.io(??) +asyncio.unix_events.itertools(??) +asyncio.unix_events.logger(??) +asyncio.unix_events.os(??) +asyncio.unix_events.selector_events(??) +asyncio.unix_events.selectors(??) +asyncio.unix_events.signal(??) +asyncio.unix_events.socket(??) +asyncio.unix_events.stat(??) +asyncio.unix_events.subprocess(??) +asyncio.unix_events.sys(??) +asyncio.unix_events.tasks(??) +asyncio.unix_events.threading(??) +asyncio.unix_events.transports(??) +asyncio.unix_events.warnings(??) +asyncio.wait(??) +asyncio.wait_for(??) +asyncio.wrap_future(??) +asyncore.EAGAIN +asyncore.EALREADY +asyncore.EBADF +asyncore.ECONNABORTED +asyncore.ECONNRESET +asyncore.EINPROGRESS +asyncore.EINVAL +asyncore.EISCONN +asyncore.ENOTCONN +asyncore.EPIPE +asyncore.ESHUTDOWN +asyncore.EWOULDBLOCK +asyncore.ExitNow(??) +asyncore.close_all(??) +asyncore.compact_traceback(??) +asyncore.dispatcher(??) +asyncore.dispatcher_with_send(??) +asyncore.errorcode(??) +asyncore.file_dispatcher(??) +asyncore.file_wrapper(??) +asyncore.loop(??) +asyncore.os(??) +asyncore.poll(??) +asyncore.poll2(??) +asyncore.poll3(??) +asyncore.read(??) +asyncore.readwrite(??) +asyncore.select(??) +asyncore.socket(??) +asyncore.socket_map(??) +asyncore.sys(??) +asyncore.time(??) +asyncore.warnings(??) +asyncore.write(??) +atexit.register(func, *args, **kwargs) -> func +atexit.unregister(func) -> None +base64.MAXBINSIZE +base64.MAXLINESIZE +base64.a85decode(??) +base64.a85encode(??) +base64.b16decode(??) +base64.b16encode(??) +base64.b32decode(??) +base64.b32encode(??) +base64.b64decode(??) +base64.b64encode(??) +base64.b85decode(??) +base64.b85encode(??) +base64.binascii(??) +base64.bytes_types(??) +base64.decode(??) +base64.decodebytes(??) +base64.encode(??) +base64.encodebytes(??) +base64.main(??) +base64.re(??) +base64.standard_b64decode(??) +base64.standard_b64encode(??) +base64.struct(??) +base64.test(??) +base64.urlsafe_b64decode(??) +base64.urlsafe_b64encode(??) +bdb.Bdb(??) +bdb.BdbQuit(??) +bdb.Breakpoint(??) +bdb.CO_ASYNC_GENERATOR +bdb.CO_COROUTINE +bdb.CO_GENERATOR +bdb.GENERATOR_AND_COROUTINE_FLAGS +bdb.Tdb(??) +bdb.bar(??) +bdb.checkfuncname(??) +bdb.effective(??) +bdb.fnmatch(??) +bdb.foo(??) +bdb.os(??) +bdb.set_trace(??) +bdb.sys(??) +bdb.test(??) +bin(??) +binhex.BinHex(??) +binhex.Error(??) +binhex.FInfo(??) +binhex.HexBin(??) +binhex.LINELEN +binhex.REASONABLY_LARGE +binhex.RUNCHAR +binhex.binascii(??) +binhex.binhex(infilename, outfilename): create binhex-encoded copy of a file +binhex.contextlib(??) +binhex.getfileinfo(??) +binhex.hexbin(infilename, outfilename) - Decode binhexed file +binhex.io(??) +binhex.openrsrc(??) +binhex.os(??) +binhex.struct(??) +binhex.warnings(??) +bisect.bisect(??) +bisect.bisect_left(??) +bisect.bisect_right(??) +bisect.insort(??) +bisect.insort_left(??) +bisect.insort_right(??) +bool(x) -> bool +breakpoint(*args, **kws) +builtins.ArithmeticError(??) +builtins.AssertionError(??) +builtins.AttributeError(??) +builtins.BaseException(??) +builtins.BlockingIOError(??) +builtins.BrokenPipeError(??) +builtins.BufferError(??) +builtins.BytesWarning(??) +builtins.ChildProcessError(??) +builtins.ConnectionAbortedError(??) +builtins.ConnectionError(??) +builtins.ConnectionRefusedError(??) +builtins.ConnectionResetError(??) +builtins.DeprecationWarning(??) +builtins.EOFError(??) +builtins.Ellipsis(??) +builtins.EnvironmentError(??) +builtins.Exception(??) +builtins.False +builtins.FileExistsError(??) +builtins.FileNotFoundError(??) +builtins.FloatingPointError(??) +builtins.FutureWarning(??) +builtins.GeneratorExit(??) +builtins.IOError(??) +builtins.ImportError(??) +builtins.ImportWarning(??) +builtins.IndentationError(??) +builtins.IndexError(??) +builtins.InterruptedError(??) +builtins.IsADirectoryError(??) +builtins.KeyError(??) +builtins.KeyboardInterrupt(??) +builtins.LookupError(??) +builtins.MemoryError(??) +builtins.ModuleNotFoundError(??) +builtins.NameError(??) +builtins.None +builtins.NotADirectoryError(??) +builtins.NotImplemented(??) +builtins.NotImplementedError(??) +builtins.OSError(??) +builtins.OverflowError(??) +builtins.PendingDeprecationWarning(??) +builtins.PermissionError(??) +builtins.ProcessLookupError(??) +builtins.RecursionError(??) +builtins.ReferenceError(??) +builtins.ResourceWarning(??) +builtins.RuntimeError(??) +builtins.RuntimeWarning(??) +builtins.StopAsyncIteration(??) +builtins.StopIteration(??) +builtins.SyntaxError(??) +builtins.SyntaxWarning(??) +builtins.SystemError(??) +builtins.SystemExit(??) +builtins.TabError(??) +builtins.TimeoutError(??) +builtins.True +builtins.TypeError(??) +builtins.UnboundLocalError(??) +builtins.UnicodeDecodeError(??) +builtins.UnicodeEncodeError(??) +builtins.UnicodeError(??) +builtins.UnicodeTranslateError(??) +builtins.UnicodeWarning(??) +builtins.UserWarning(??) +builtins.ValueError(??) +builtins.Warning(??) +builtins.ZeroDivisionError(??) +builtins.abs(??) +builtins.all(??) +builtins.any(??) +builtins.ascii(??) +builtins.bin(??) +builtins.bool(x) -> bool +builtins.breakpoint(*args, **kws) +builtins.bytearray(iterable_of_ints) -> bytearray +builtins.bytes(iterable_of_ints) -> bytes +builtins.callable(??) +builtins.chr(??) +builtins.classmethod(function) -> method +builtins.compile(??) +builtins.complex(??) +builtins.copyright(??) +builtins.credits(??) +builtins.delattr(??) +builtins.dict() -> new empty dictionary +builtins.dir([object]) -> list of strings +builtins.divmod(??) +builtins.enumerate(??) +builtins.eval(??) +builtins.exec(??) +builtins.exit(??) +builtins.filter(function or None, iterable) --> filter object +builtins.float(??) +builtins.format(??) +builtins.frozenset() -> empty frozenset object +builtins.getattr(object, name[, default]) -> value +builtins.globals(??) +builtins.hasattr(??) +builtins.hash(??) +builtins.help(??) +builtins.hex(??) +builtins.id(??) +builtins.input(??) +builtins.int([x]) -> integer +builtins.isinstance(??) +builtins.issubclass(??) +builtins.iter(iterable) -> iterator +builtins.len(??) +builtins.license(??) +builtins.list(??) +builtins.locals(??) +builtins.map(func, *iterables) --> map object +builtins.max(iterable, *[, default=obj, key=func]) -> value +builtins.memoryview(??) +builtins.min(iterable, *[, default=obj, key=func]) -> value +builtins.next(iterator[, default]) +builtins.object(??) +builtins.oct(??) +builtins.open(??) +builtins.ord(??) +builtins.pow(??) +builtins.print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +builtins.property(??) +builtins.quit(??) +builtins.range(stop) -> range object +builtins.repr(??) +builtins.reversed(??) +builtins.round(??) +builtins.set() -> new empty set object +builtins.setattr(??) +builtins.slice(stop) +builtins.sorted(??) +builtins.staticmethod(function) -> method +builtins.str(object='') -> str +builtins.sum(??) +builtins.super() -> same as super(__class__, ) +builtins.tuple(??) +builtins.type(object_or_name, bases, dict) +builtins.vars([object]) -> dictionary +builtins.zip(*iterables) --> A zip object yielding tuples until an input is exhausted. +bytearray(iterable_of_ints) -> bytearray +bytes(iterable_of_ints) -> bytes +bz2.BZ2Compressor(??) +bz2.BZ2Decompressor(??) +bz2.BZ2File(??) +bz2.RLock(??) +bz2.compress(??) +bz2.decompress(??) +bz2.io(??) +bz2.open(??) +bz2.os(??) +cProfile.Profile(timer=None, timeunit=None, subcalls=True, builtins=True) +cProfile.label(??) +cProfile.main(??) +cProfile.run(??) +cProfile.runctx(??) +calendar.Calendar(??) +calendar.EPOCH +calendar.FRIDAY +calendar.February +calendar.HTMLCalendar(??) +calendar.IllegalMonthError(??) +calendar.IllegalWeekdayError(??) +calendar.January +calendar.LocaleHTMLCalendar(??) +calendar.LocaleTextCalendar(??) +calendar.MONDAY +calendar.SATURDAY +calendar.SUNDAY +calendar.THURSDAY +calendar.TUESDAY +calendar.TextCalendar(??) +calendar.WEDNESDAY +calendar.c(??) +calendar.calendar(??) +calendar.datetime(??) +calendar.day_abbr(??) +calendar.day_name(??) +calendar.different_locale(??) +calendar.error(??) +calendar.firstweekday(??) +calendar.format(??) +calendar.formatstring(??) +calendar.isleap(??) +calendar.leapdays(??) +calendar.main(??) +calendar.mdays(??) +calendar.month(??) +calendar.month_abbr(??) +calendar.month_name(??) +calendar.monthcalendar(??) +calendar.monthrange(??) +calendar.prcal(??) +calendar.prmonth(??) +calendar.prweek(??) +calendar.repeat(object [,times]) -> create an iterator which returns the object +calendar.setfirstweekday(??) +calendar.sys(??) +calendar.timegm(??) +calendar.week(??) +calendar.weekday(??) +calendar.weekheader(??) +callable(??) +cgi.BytesIO(??) +cgi.FeedParser(??) +cgi.FieldStorage(??) +cgi.Mapping(??) +cgi.Message(??) +cgi.MiniFieldStorage(??) +cgi.StringIO(??) +cgi.TextIOWrapper(??) +cgi.closelog(??) +cgi.dolog(??) +cgi.html(??) +cgi.initlog(??) +cgi.locale(??) +cgi.log(??) +cgi.logfile +cgi.logfp(??) +cgi.maxlen +cgi.nolog(??) +cgi.os(??) +cgi.parse(??) +cgi.parse_header(??) +cgi.parse_multipart(??) +cgi.print_arguments(??) +cgi.print_directory(??) +cgi.print_environ(??) +cgi.print_environ_usage(??) +cgi.print_exception(??) +cgi.print_form(??) +cgi.sys(??) +cgi.tempfile(??) +cgi.test(??) +cgi.urllib(??) +cgi.valid_boundary(??) +cgitb.Hook(??) +cgitb.enable(??) +cgitb.grey(??) +cgitb.handler(??) +cgitb.html(??) +cgitb.inspect(??) +cgitb.keyword(??) +cgitb.linecache(??) +cgitb.lookup(??) +cgitb.os(??) +cgitb.pydoc(??) +cgitb.reset(??) +cgitb.scanvars(??) +cgitb.small(??) +cgitb.strong(??) +cgitb.sys(??) +cgitb.tempfile(??) +cgitb.text(??) +cgitb.time(??) +cgitb.tokenize(??) +cgitb.traceback(??) +chr(??) +chunk.Chunk(??) +classmethod(function) -> method +cmd.Cmd(??) +cmd.IDENTCHARS +cmd.PROMPT +cmd.string(??) +cmd.sys(??) +code.CommandCompiler(??) +code.InteractiveConsole(??) +code.InteractiveInterpreter(??) +code.compile_command(??) +code.interact(??) +code.sys(??) +code.traceback(??) +codecs.BOM +codecs.BOM32_BE +codecs.BOM32_LE +codecs.BOM64_BE +codecs.BOM64_LE +codecs.BOM_BE +codecs.BOM_LE +codecs.BOM_UTF16 +codecs.BOM_UTF16_BE +codecs.BOM_UTF16_LE +codecs.BOM_UTF32 +codecs.BOM_UTF32_BE +codecs.BOM_UTF32_LE +codecs.BOM_UTF8 +codecs.BufferedIncrementalDecoder(??) +codecs.BufferedIncrementalEncoder(??) +codecs.Codec(??) +codecs.CodecInfo(??) +codecs.EncodedFile(??) +codecs.IncrementalDecoder(??) +codecs.IncrementalEncoder(??) +codecs.StreamReader(??) +codecs.StreamReaderWriter(??) +codecs.StreamRecoder(??) +codecs.StreamWriter(??) +codecs.ascii_decode(??) +codecs.ascii_encode(??) +codecs.backslashreplace_errors(??) +codecs.builtins(??) +codecs.charmap_build(??) +codecs.charmap_decode(??) +codecs.charmap_encode(??) +codecs.decode(??) +codecs.encode(??) +codecs.escape_decode(??) +codecs.escape_encode(??) +codecs.getdecoder(??) +codecs.getencoder(??) +codecs.getincrementaldecoder(??) +codecs.getincrementalencoder(??) +codecs.getreader(??) +codecs.getwriter(??) +codecs.ignore_errors(??) +codecs.iterdecode(??) +codecs.iterencode(??) +codecs.latin_1_decode(??) +codecs.latin_1_encode(??) +codecs.lookup(??) +codecs.lookup_error(errors) -> handler +codecs.make_encoding_map(??) +codecs.make_identity_dict(rng) -> dict +codecs.namereplace_errors(??) +codecs.open(??) +codecs.raw_unicode_escape_decode(??) +codecs.raw_unicode_escape_encode(??) +codecs.readbuffer_encode(??) +codecs.register(??) +codecs.register_error(??) +codecs.replace_errors(??) +codecs.strict_errors(??) +codecs.sys(??) +codecs.unicode_escape_decode(??) +codecs.unicode_escape_encode(??) +codecs.utf_16_be_decode(??) +codecs.utf_16_be_encode(??) +codecs.utf_16_decode(??) +codecs.utf_16_encode(??) +codecs.utf_16_ex_decode(??) +codecs.utf_16_le_decode(??) +codecs.utf_16_le_encode(??) +codecs.utf_32_be_decode(??) +codecs.utf_32_be_encode(??) +codecs.utf_32_decode(??) +codecs.utf_32_encode(??) +codecs.utf_32_ex_decode(??) +codecs.utf_32_le_decode(??) +codecs.utf_32_le_encode(??) +codecs.utf_7_decode(??) +codecs.utf_7_encode(??) +codecs.utf_8_decode(??) +codecs.utf_8_encode(??) +codecs.xmlcharrefreplace_errors(??) +codeop.CommandCompiler(??) +codeop.Compile(??) +codeop.PyCF_DONT_IMPLY_DEDENT +codeop.compile_command(??) +codeop.warnings(??) +collections.ChainMap(??) +collections.Counter(??) +collections.OrderedDict(??) +collections.UserDict(??) +collections.UserList(??) +collections.UserString(??) +collections.abc(??) +collections.abc.AsyncGenerator(??) +collections.abc.AsyncIterable(??) +collections.abc.AsyncIterator(??) +collections.abc.Awaitable(??) +collections.abc.ByteString(??) +collections.abc.Callable(??) +collections.abc.Collection(??) +collections.abc.Container(??) +collections.abc.Coroutine(??) +collections.abc.Generator(??) +collections.abc.Hashable(??) +collections.abc.ItemsView(??) +collections.abc.Iterable(??) +collections.abc.Iterator(??) +collections.abc.KeysView(??) +collections.abc.Mapping(??) +collections.abc.MappingView(??) +collections.abc.MutableMapping(??) +collections.abc.MutableSequence(??) +collections.abc.MutableSet(??) +collections.abc.Reversible(??) +collections.abc.Sequence(??) +collections.abc.Set(??) +collections.abc.Sized(??) +collections.abc.ValuesView(??) +collections.defaultdict(default_factory[, ...]) --> dict with default factory +collections.deque([iterable[, maxlen]]) --> deque object +collections.namedtuple(??) +colorsys.ONE_SIXTH +colorsys.ONE_THIRD +colorsys.TWO_THIRD +colorsys.hls_to_rgb(??) +colorsys.hsv_to_rgb(??) +colorsys.rgb_to_hls(??) +colorsys.rgb_to_hsv(??) +colorsys.rgb_to_yiq(??) +colorsys.yiq_to_rgb(??) +compile(??) +compileall.Path(??) +compileall.compile_dir(??) +compileall.compile_file(??) +compileall.compile_path(??) +compileall.filecmp(??) +compileall.importlib(??) +compileall.main(??) +compileall.os(??) +compileall.partial(func, *args, **keywords) - new function with partial application +compileall.py_compile(??) +compileall.struct(??) +compileall.sys(??) +complex(??) +concurrent.futures(??) +concurrent.futures.ALL_COMPLETED +concurrent.futures.BrokenExecutor(??) +concurrent.futures.CancelledError(??) +concurrent.futures.Executor(??) +concurrent.futures.FIRST_COMPLETED +concurrent.futures.FIRST_EXCEPTION +concurrent.futures.Future(??) +concurrent.futures.ProcessPoolExecutor(??) +concurrent.futures.ThreadPoolExecutor(??) +concurrent.futures.TimeoutError(??) +concurrent.futures.as_completed(??) +concurrent.futures.process.BrokenProcessPool(??) +concurrent.futures.process.EXTRA_QUEUED_CALLS +concurrent.futures.process.ProcessPoolExecutor(??) +concurrent.futures.process.Queue(??) +concurrent.futures.process.itertools(??) +concurrent.futures.process.mp(??) +concurrent.futures.process.multiprocessing(??) +concurrent.futures.process.os(??) +concurrent.futures.process.partial(func, *args, **keywords) - new function with partial application +concurrent.futures.process.queue(??) +concurrent.futures.process.sys(??) +concurrent.futures.process.threading(??) +concurrent.futures.process.traceback(??) +concurrent.futures.process.weakref(??) +concurrent.futures.thread.BrokenThreadPool(??) +concurrent.futures.thread.ThreadPoolExecutor(??) +concurrent.futures.thread.itertools(??) +concurrent.futures.thread.os(??) +concurrent.futures.thread.queue(??) +concurrent.futures.thread.threading(??) +concurrent.futures.thread.types(??) +concurrent.futures.thread.weakref(??) +concurrent.futures.wait(??) +configparser.BasicInterpolation(??) +configparser.ConfigParser(??) +configparser.ConverterMapping(??) +configparser.DEFAULTSECT +configparser.DuplicateOptionError(??) +configparser.DuplicateSectionError(??) +configparser.Error(??) +configparser.ExtendedInterpolation(??) +configparser.Interpolation(??) +configparser.InterpolationDepthError(??) +configparser.InterpolationError(??) +configparser.InterpolationMissingOptionError(??) +configparser.InterpolationSyntaxError(??) +configparser.LegacyInterpolation(??) +configparser.MAX_INTERPOLATION_DEPTH +configparser.MissingSectionHeaderError(??) +configparser.MutableMapping(??) +configparser.NoOptionError(??) +configparser.NoSectionError(??) +configparser.ParsingError(??) +configparser.RawConfigParser(??) +configparser.SafeConfigParser(??) +configparser.SectionProxy(??) +configparser.functools(??) +configparser.io(??) +configparser.itertools(??) +configparser.os(??) +configparser.re(??) +configparser.sys(??) +configparser.warnings(??) +contextlib.AbstractAsyncContextManager(??) +contextlib.AbstractContextManager(??) +contextlib.AsyncExitStack(??) +contextlib.ContextDecorator(??) +contextlib.ExitStack(??) +contextlib.GenericAlias(??) +contextlib.MethodType(??) +contextlib.abc(??) +contextlib.asynccontextmanager(??) +contextlib.closing(??) +contextlib.contextmanager(??) +contextlib.deque([iterable[, maxlen]]) --> deque object +contextlib.nullcontext(??) +contextlib.redirect_stderr(??) +contextlib.redirect_stdout(??) +contextlib.suppress(??) +contextlib.sys(??) +contextlib.wraps(??) +contextvars.Context(??) +contextvars.ContextVar(??) +contextvars.Token(??) +contextvars.copy_context(??) +copy.Error(??) +copy.copy(??) +copy.deepcopy(??) +copy.dispatch_table(??) +copy.error(??) +copyreg.add_extension(??) +copyreg.clear_extension_cache(??) +copyreg.constructor(??) +copyreg.dispatch_table(??) +copyreg.pickle(??) +copyreg.pickle_complex(??) +copyreg.remove_extension(??) +copyright(??) +credits(??) +crypt.METHOD_BLOWFISH(??) +crypt.METHOD_CRYPT(??) +crypt.METHOD_MD5(??) +crypt.METHOD_SHA256(??) +crypt.METHOD_SHA512(??) +crypt.crypt(??) +crypt.errno(??) +crypt.methods(??) +crypt.mksalt(??) +csv.Dialect(??) +csv.DictReader(??) +csv.DictWriter(??) +csv.Error(??) +csv.QUOTE_ALL +csv.QUOTE_MINIMAL +csv.QUOTE_NONE +csv.QUOTE_NONNUMERIC +csv.Sniffer(??) +csv.StringIO(??) +csv.excel(??) +csv.excel_tab(??) +csv.field_size_limit(??) +csv.get_dialect(??) +csv.list_dialects(??) +csv.re(??) +csv.reader(??) +csv.register_dialect(??) +csv.unix_dialect(??) +csv.unregister_dialect(??) +csv.writer(??) +ctypes.ARRAY(??) +ctypes.ArgumentError(??) +ctypes.Array(??) +ctypes.BigEndianStructure(??) +ctypes.CDLL(??) +ctypes.CFUNCTYPE(??) +ctypes.DEFAULT_MODE +ctypes.LibraryLoader(??) +ctypes.LittleEndianStructure(??) +ctypes.POINTER(??) +ctypes.PYFUNCTYPE(??) +ctypes.PyDLL(??) +ctypes.RTLD_GLOBAL +ctypes.RTLD_LOCAL +ctypes.SetPointerType(??) +ctypes.Structure(??) +ctypes.Union(??) +ctypes.addressof(C instance) -> integer +ctypes.alignment(C type) -> integer +ctypes.byref(C instance[, offset=0]) -> byref-object +ctypes.c_bool(??) +ctypes.c_buffer(??) +ctypes.c_byte(??) +ctypes.c_char(??) +ctypes.c_char_p(??) +ctypes.c_double(??) +ctypes.c_float(??) +ctypes.c_int(??) +ctypes.c_int16(??) +ctypes.c_int32(??) +ctypes.c_int64(??) +ctypes.c_int8(??) +ctypes.c_long(??) +ctypes.c_longdouble(??) +ctypes.c_longlong(??) +ctypes.c_short(??) +ctypes.c_size_t(??) +ctypes.c_ssize_t(??) +ctypes.c_ubyte(??) +ctypes.c_uint(??) +ctypes.c_uint16(??) +ctypes.c_uint32(??) +ctypes.c_uint64(??) +ctypes.c_uint8(??) +ctypes.c_ulong(??) +ctypes.c_ulonglong(??) +ctypes.c_ushort(??) +ctypes.c_void_p(??) +ctypes.c_voidp(??) +ctypes.c_wchar(??) +ctypes.c_wchar_p(??) +ctypes.cast(??) +ctypes.cdll(??) +ctypes.create_string_buffer(aBytes) -> character array +ctypes.create_unicode_buffer(aString) -> character array +ctypes.get_errno(??) +ctypes.macholib(??) +ctypes.macholib.dyld(??) +ctypes.macholib.dyld.DEFAULT_FRAMEWORK_FALLBACK(??) +ctypes.macholib.dyld.DEFAULT_LIBRARY_FALLBACK(??) +ctypes.macholib.dyld.accumulate(??) +ctypes.macholib.dyld.chain(*iterables) --> chain object +ctypes.macholib.dyld.combinations(??) +ctypes.macholib.dyld.combinations_with_replacement(??) +ctypes.macholib.dyld.compress(??) +ctypes.macholib.dyld.count(??) +ctypes.macholib.dyld.cycle(??) +ctypes.macholib.dyld.dropwhile(??) +ctypes.macholib.dyld.dyld_default_search(??) +ctypes.macholib.dyld.dyld_env(??) +ctypes.macholib.dyld.dyld_executable_path_search(??) +ctypes.macholib.dyld.dyld_fallback_framework_path(??) +ctypes.macholib.dyld.dyld_fallback_library_path(??) +ctypes.macholib.dyld.dyld_find(??) +ctypes.macholib.dyld.dyld_framework_path(??) +ctypes.macholib.dyld.dyld_image_suffix(??) +ctypes.macholib.dyld.dyld_image_suffix_search(??) +ctypes.macholib.dyld.dyld_library_path(??) +ctypes.macholib.dyld.dyld_override_search(??) +ctypes.macholib.dyld.dylib_info(??) +ctypes.macholib.dyld.filterfalse(??) +ctypes.macholib.dyld.framework_find(??) +ctypes.macholib.dyld.framework_info(??) +ctypes.macholib.dyld.groupby(??) +ctypes.macholib.dyld.islice(iterable, stop) --> islice object +ctypes.macholib.dyld.os(??) +ctypes.macholib.dyld.permutations(??) +ctypes.macholib.dyld.product(*iterables, repeat=1) --> product object +ctypes.macholib.dyld.repeat(object [,times]) -> create an iterator which returns the object +ctypes.macholib.dyld.starmap(??) +ctypes.macholib.dyld.takewhile(??) +ctypes.macholib.dyld.tee(??) +ctypes.macholib.dyld.test_dyld_find(??) +ctypes.macholib.dyld.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +ctypes.macholib.dylib(??) +ctypes.macholib.dylib.DYLIB_RE(??) +ctypes.macholib.dylib.dylib_info(??) +ctypes.macholib.dylib.re(??) +ctypes.macholib.dylib.test_dylib_info(??) +ctypes.macholib.framework(??) +ctypes.macholib.framework.STRICT_FRAMEWORK_RE(??) +ctypes.macholib.framework.framework_info(??) +ctypes.macholib.framework.re(??) +ctypes.macholib.framework.test_framework_info(??) +ctypes.memmove(??) +ctypes.memset(??) +ctypes.pointer(??) +ctypes.py_object(??) +ctypes.pydll(??) +ctypes.pythonapi(??) +ctypes.resize(??) +ctypes.set_errno(??) +ctypes.sizeof(C type) -> integer +ctypes.string_at(addr[, size]) -> string +ctypes.util(??) +ctypes.util.find_library(??) +ctypes.util.os(??) +ctypes.util.shutil(??) +ctypes.util.subprocess(??) +ctypes.util.sys(??) +ctypes.util.test(??) +ctypes.wstring_at(addr[, size]) -> string +curses.ALL_MOUSE_EVENTS +curses.A_ALTCHARSET +curses.A_ATTRIBUTES +curses.A_BLINK +curses.A_BOLD +curses.A_CHARTEXT +curses.A_COLOR +curses.A_DIM +curses.A_HORIZONTAL +curses.A_INVIS +curses.A_LEFT +curses.A_LOW +curses.A_NORMAL +curses.A_PROTECT +curses.A_REVERSE +curses.A_RIGHT +curses.A_STANDOUT +curses.A_TOP +curses.A_UNDERLINE +curses.A_VERTICAL +curses.BUTTON1_CLICKED +curses.BUTTON1_DOUBLE_CLICKED +curses.BUTTON1_PRESSED +curses.BUTTON1_RELEASED +curses.BUTTON1_TRIPLE_CLICKED +curses.BUTTON2_CLICKED +curses.BUTTON2_DOUBLE_CLICKED +curses.BUTTON2_PRESSED +curses.BUTTON2_RELEASED +curses.BUTTON2_TRIPLE_CLICKED +curses.BUTTON3_CLICKED +curses.BUTTON3_DOUBLE_CLICKED +curses.BUTTON3_PRESSED +curses.BUTTON3_RELEASED +curses.BUTTON3_TRIPLE_CLICKED +curses.BUTTON4_CLICKED +curses.BUTTON4_DOUBLE_CLICKED +curses.BUTTON4_PRESSED +curses.BUTTON4_RELEASED +curses.BUTTON4_TRIPLE_CLICKED +curses.BUTTON_ALT +curses.BUTTON_CTRL +curses.BUTTON_SHIFT +curses.COLOR_BLACK +curses.COLOR_BLUE +curses.COLOR_CYAN +curses.COLOR_GREEN +curses.COLOR_MAGENTA +curses.COLOR_RED +curses.COLOR_WHITE +curses.COLOR_YELLOW +curses.ERR +curses.KEY_A1 +curses.KEY_A3 +curses.KEY_B2 +curses.KEY_BACKSPACE +curses.KEY_BEG +curses.KEY_BREAK +curses.KEY_BTAB +curses.KEY_C1 +curses.KEY_C3 +curses.KEY_CANCEL +curses.KEY_CATAB +curses.KEY_CLEAR +curses.KEY_CLOSE +curses.KEY_COMMAND +curses.KEY_COPY +curses.KEY_CREATE +curses.KEY_CTAB +curses.KEY_DC +curses.KEY_DL +curses.KEY_DOWN +curses.KEY_EIC +curses.KEY_END +curses.KEY_ENTER +curses.KEY_EOL +curses.KEY_EOS +curses.KEY_EXIT +curses.KEY_F0 +curses.KEY_F1 +curses.KEY_F10 +curses.KEY_F11 +curses.KEY_F12 +curses.KEY_F13 +curses.KEY_F14 +curses.KEY_F15 +curses.KEY_F16 +curses.KEY_F17 +curses.KEY_F18 +curses.KEY_F19 +curses.KEY_F2 +curses.KEY_F20 +curses.KEY_F21 +curses.KEY_F22 +curses.KEY_F23 +curses.KEY_F24 +curses.KEY_F25 +curses.KEY_F26 +curses.KEY_F27 +curses.KEY_F28 +curses.KEY_F29 +curses.KEY_F3 +curses.KEY_F30 +curses.KEY_F31 +curses.KEY_F32 +curses.KEY_F33 +curses.KEY_F34 +curses.KEY_F35 +curses.KEY_F36 +curses.KEY_F37 +curses.KEY_F38 +curses.KEY_F39 +curses.KEY_F4 +curses.KEY_F40 +curses.KEY_F41 +curses.KEY_F42 +curses.KEY_F43 +curses.KEY_F44 +curses.KEY_F45 +curses.KEY_F46 +curses.KEY_F47 +curses.KEY_F48 +curses.KEY_F49 +curses.KEY_F5 +curses.KEY_F50 +curses.KEY_F51 +curses.KEY_F52 +curses.KEY_F53 +curses.KEY_F54 +curses.KEY_F55 +curses.KEY_F56 +curses.KEY_F57 +curses.KEY_F58 +curses.KEY_F59 +curses.KEY_F6 +curses.KEY_F60 +curses.KEY_F61 +curses.KEY_F62 +curses.KEY_F63 +curses.KEY_F7 +curses.KEY_F8 +curses.KEY_F9 +curses.KEY_FIND +curses.KEY_HELP +curses.KEY_HOME +curses.KEY_IC +curses.KEY_IL +curses.KEY_LEFT +curses.KEY_LL +curses.KEY_MARK +curses.KEY_MAX +curses.KEY_MESSAGE +curses.KEY_MIN +curses.KEY_MOUSE +curses.KEY_MOVE +curses.KEY_NEXT +curses.KEY_NPAGE +curses.KEY_OPEN +curses.KEY_OPTIONS +curses.KEY_PPAGE +curses.KEY_PREVIOUS +curses.KEY_PRINT +curses.KEY_REDO +curses.KEY_REFERENCE +curses.KEY_REFRESH +curses.KEY_REPLACE +curses.KEY_RESET +curses.KEY_RESIZE +curses.KEY_RESTART +curses.KEY_RESUME +curses.KEY_RIGHT +curses.KEY_SAVE +curses.KEY_SBEG +curses.KEY_SCANCEL +curses.KEY_SCOMMAND +curses.KEY_SCOPY +curses.KEY_SCREATE +curses.KEY_SDC +curses.KEY_SDL +curses.KEY_SELECT +curses.KEY_SEND +curses.KEY_SEOL +curses.KEY_SEXIT +curses.KEY_SF +curses.KEY_SFIND +curses.KEY_SHELP +curses.KEY_SHOME +curses.KEY_SIC +curses.KEY_SLEFT +curses.KEY_SMESSAGE +curses.KEY_SMOVE +curses.KEY_SNEXT +curses.KEY_SOPTIONS +curses.KEY_SPREVIOUS +curses.KEY_SPRINT +curses.KEY_SR +curses.KEY_SREDO +curses.KEY_SREPLACE +curses.KEY_SRESET +curses.KEY_SRIGHT +curses.KEY_SRSUME +curses.KEY_SSAVE +curses.KEY_SSUSPEND +curses.KEY_STAB +curses.KEY_SUNDO +curses.KEY_SUSPEND +curses.KEY_UNDO +curses.KEY_UP +curses.OK +curses.REPORT_MOUSE_POSITION +curses.ascii(??) +curses.ascii.ACK +curses.ascii.BEL +curses.ascii.BS +curses.ascii.CAN +curses.ascii.CR +curses.ascii.DC1 +curses.ascii.DC2 +curses.ascii.DC3 +curses.ascii.DC4 +curses.ascii.DEL +curses.ascii.DLE +curses.ascii.EM +curses.ascii.ENQ +curses.ascii.EOT +curses.ascii.ESC +curses.ascii.ETB +curses.ascii.ETX +curses.ascii.FF +curses.ascii.FS +curses.ascii.GS +curses.ascii.HT +curses.ascii.LF +curses.ascii.NAK +curses.ascii.NL +curses.ascii.NUL +curses.ascii.RS +curses.ascii.SI +curses.ascii.SO +curses.ascii.SOH +curses.ascii.SP +curses.ascii.STX +curses.ascii.SUB +curses.ascii.SYN +curses.ascii.TAB +curses.ascii.US +curses.ascii.VT +curses.ascii.alt(??) +curses.ascii.ascii(??) +curses.ascii.controlnames(??) +curses.ascii.ctrl(??) +curses.ascii.isalnum(??) +curses.ascii.isalpha(??) +curses.ascii.isascii(??) +curses.ascii.isblank(??) +curses.ascii.iscntrl(??) +curses.ascii.isctrl(??) +curses.ascii.isdigit(??) +curses.ascii.isgraph(??) +curses.ascii.islower(??) +curses.ascii.ismeta(??) +curses.ascii.isprint(??) +curses.ascii.ispunct(??) +curses.ascii.isspace(??) +curses.ascii.isupper(??) +curses.ascii.isxdigit(??) +curses.ascii.unctrl(??) +curses.baudrate(??) +curses.beep(??) +curses.can_change_color(??) +curses.cbreak(??) +curses.color_content(??) +curses.color_pair(??) +curses.curs_set(??) +curses.def_prog_mode(??) +curses.def_shell_mode(??) +curses.delay_output(??) +curses.doupdate(??) +curses.echo(??) +curses.endwin(??) +curses.erasechar(??) +curses.error(??) +curses.filter(??) +curses.flash(??) +curses.flushinp(??) +curses.get_escdelay(??) +curses.get_tabsize(??) +curses.getmouse(??) +curses.getsyx(??) +curses.getwin(??) +curses.halfdelay(??) +curses.has_colors(??) +curses.has_ic(??) +curses.has_il(??) +curses.has_key(??) +curses.has_key.has_key(??) +curses.init_color(??) +curses.init_pair(??) +curses.initscr(??) +curses.intrflush(??) +curses.is_term_resized(??) +curses.isendwin(??) +curses.keyname(??) +curses.killchar(??) +curses.longname(??) +curses.meta(??) +curses.mouseinterval(??) +curses.mousemask(??) +curses.napms(??) +curses.ncurses_version(??) +curses.newpad(??) +curses.newwin(nlines, ncols, [begin_y=0, begin_x=0]) +curses.nl(??) +curses.nocbreak(??) +curses.noecho(??) +curses.nonl(??) +curses.noqiflush(??) +curses.noraw(??) +curses.pair_content(??) +curses.pair_number(??) +curses.panel(??) +curses.panel.bottom_panel(??) +curses.panel.error(??) +curses.panel.new_panel(??) +curses.panel.panel(??) +curses.panel.top_panel(??) +curses.panel.update_panels(??) +curses.panel.version +curses.putp(??) +curses.qiflush(??) +curses.raw(??) +curses.reset_prog_mode(??) +curses.reset_shell_mode(??) +curses.resetty(??) +curses.resize_term(??) +curses.resizeterm(??) +curses.savetty(??) +curses.set_escdelay(??) +curses.set_tabsize(??) +curses.setsyx(??) +curses.setupterm(??) +curses.start_color(??) +curses.termattrs(??) +curses.termname(??) +curses.textpad(??) +curses.textpad.Textbox(??) +curses.textpad.curses(??) +curses.textpad.rectangle(??) +curses.tigetflag(??) +curses.tigetnum(??) +curses.tigetstr(??) +curses.tparm(??) +curses.typeahead(??) +curses.unctrl(??) +curses.unget_wch(??) +curses.ungetch(??) +curses.ungetmouse(??) +curses.update_lines_cols(??) +curses.use_default_colors(??) +curses.use_env(??) +curses.version +curses.window(??) +curses.wrapper(??) +dataclasses.Field(??) +dataclasses.FrozenInstanceError(??) +dataclasses.GenericAlias(??) +dataclasses.InitVar(??) +dataclasses.MISSING(??) +dataclasses.asdict(??) +dataclasses.astuple(??) +dataclasses.builtins(??) +dataclasses.copy(??) +dataclasses.dataclass(??) +dataclasses.field(??) +dataclasses.fields(??) +dataclasses.functools(??) +dataclasses.inspect(??) +dataclasses.is_dataclass(??) +dataclasses.keyword(??) +dataclasses.make_dataclass(??) +dataclasses.re(??) +dataclasses.replace(??) +dataclasses.sys(??) +dataclasses.types(??) +datetime.MAXYEAR +datetime.MINYEAR +datetime.date(year, month, day) --> date object +datetime.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +datetime.datetime_CAPI(??) +datetime.sys(??) +datetime.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object +datetime.timedelta(??) +datetime.timezone(??) +datetime.tzinfo(??) +dbm.dumb(??) +dbm.dumb.collections(??) +dbm.dumb.error(??) +dbm.dumb.open(??) +dbm.error(??) +dbm.io(??) +dbm.ndbm(??) +dbm.ndbm.error(??) +dbm.ndbm.library +dbm.ndbm.open(??) +dbm.open(??) +dbm.os(??) +dbm.struct(??) +dbm.sys(??) +dbm.whichdb(??) +decimal.BasicContext(??) +decimal.Clamped(??) +decimal.Context(??) +decimal.ConversionSyntax(??) +decimal.Decimal(??) +decimal.DecimalException(??) +decimal.DecimalTuple(sign, digits, exponent) +decimal.DefaultContext(??) +decimal.DivisionByZero(??) +decimal.DivisionImpossible(??) +decimal.DivisionUndefined(??) +decimal.ExtendedContext(??) +decimal.FloatOperation(??) +decimal.HAVE_CONTEXTVAR(??) +decimal.HAVE_THREADS(??) +decimal.Inexact(??) +decimal.InvalidContext(??) +decimal.InvalidOperation(??) +decimal.MAX_EMAX +decimal.MAX_PREC +decimal.MIN_EMIN +decimal.MIN_ETINY +decimal.Overflow(??) +decimal.ROUND_05UP +decimal.ROUND_CEILING +decimal.ROUND_DOWN +decimal.ROUND_FLOOR +decimal.ROUND_HALF_DOWN +decimal.ROUND_HALF_EVEN +decimal.ROUND_HALF_UP +decimal.ROUND_UP +decimal.Rounded(??) +decimal.Subnormal(??) +decimal.Underflow(??) +decimal.getcontext(??) +decimal.localcontext(??) +decimal.setcontext(??) +delattr(??) +dict() -> new empty dictionary +difflib.Differ(??) +difflib.GenericAlias(??) +difflib.HtmlDiff(??) +difflib.IS_CHARACTER_JUNK(??) +difflib.IS_LINE_JUNK(??) +difflib.Match(a, b, size) +difflib.SequenceMatcher(??) +difflib.context_diff(??) +difflib.diff_bytes(??) +difflib.get_close_matches(??) +difflib.ndiff(??) +difflib.restore(??) +difflib.unified_diff(??) +dir([object]) -> list of strings +dis.Bytecode(??) +dis.COMPILER_FLAG_NAMES(??) +dis.EXTENDED_ARG +dis.FORMAT_VALUE +dis.FORMAT_VALUE_CONVERTERS(??) +dis.HAVE_ARGUMENT +dis.Instruction(??) +dis.MAKE_FUNCTION +dis.MAKE_FUNCTION_FLAGS(??) +dis.cmp_op(??) +dis.code_info(??) +dis.collections(??) +dis.dis(??) +dis.disassemble(??) +dis.disco(??) +dis.distb(??) +dis.findlabels(??) +dis.findlinestarts(??) +dis.get_instructions(??) +dis.hascompare(??) +dis.hasconst(??) +dis.hasfree(??) +dis.hasjabs(??) +dis.hasjrel(??) +dis.haslocal(??) +dis.hasname(??) +dis.hasnargs(??) +dis.io(??) +dis.opmap(??) +dis.opname(??) +dis.pretty_flags(??) +dis.show_code(??) +dis.stack_effect(??) +dis.sys(??) +dis.types(??) +divmod(??) +doctest.BLANKLINE_MARKER +doctest.COMPARISON_FLAGS +doctest.DONT_ACCEPT_BLANKLINE +doctest.DONT_ACCEPT_TRUE_FOR_1 +doctest.DebugRunner(??) +doctest.DocFileCase(??) +doctest.DocFileSuite(??) +doctest.DocFileTest(??) +doctest.DocTest(??) +doctest.DocTestCase(??) +doctest.DocTestFailure(??) +doctest.DocTestFinder(??) +doctest.DocTestParser(??) +doctest.DocTestRunner(??) +doctest.DocTestSuite(??) +doctest.ELLIPSIS +doctest.ELLIPSIS_MARKER +doctest.Example(??) +doctest.FAIL_FAST +doctest.IGNORE_EXCEPTION_DETAIL +doctest.NORMALIZE_WHITESPACE +doctest.OPTIONFLAGS_BY_NAME(??) +doctest.OutputChecker(??) +doctest.REPORTING_FLAGS +doctest.REPORT_CDIFF +doctest.REPORT_NDIFF +doctest.REPORT_ONLY_FIRST_FAILURE +doctest.REPORT_UDIFF +doctest.SKIP +doctest.SkipDocTestCase(??) +doctest.StringIO(??) +doctest.TestResults(failed, attempted) +doctest.UnexpectedException(??) +doctest.debug(??) +doctest.debug_script(??) +doctest.debug_src(??) +doctest.difflib(??) +doctest.inspect(??) +doctest.linecache(??) +doctest.master(??) +doctest.namedtuple(??) +doctest.os(??) +doctest.pdb(??) +doctest.re(??) +doctest.register_optionflag(??) +doctest.run_docstring_examples(??) +doctest.script_from_examples(??) +doctest.set_unittest_reportflags(??) +doctest.sys(??) +doctest.testfile(??) +doctest.testmod(??) +doctest.testsource(??) +doctest.traceback(??) +doctest.unittest(??) +email.base64mime(??) +email.base64mime.CRLF +email.base64mime.EMPTYSTRING +email.base64mime.MISC_LEN +email.base64mime.NL +email.base64mime.a2b_base64(??) +email.base64mime.b2a_base64(??) +email.base64mime.b64encode(??) +email.base64mime.body_decode(??) +email.base64mime.body_encode(??) +email.base64mime.decode(??) +email.base64mime.decodestring(??) +email.base64mime.header_encode(??) +email.base64mime.header_length(??) +email.charset(??) +email.charset.ALIASES(??) +email.charset.BASE64 +email.charset.CHARSETS(??) +email.charset.CODEC_MAP(??) +email.charset.Charset(??) +email.charset.DEFAULT_CHARSET +email.charset.EMPTYSTRING +email.charset.QP +email.charset.RFC2047_CHROME_LEN +email.charset.SHORTEST +email.charset.UNKNOWN8BIT +email.charset.add_alias(??) +email.charset.add_charset(??) +email.charset.add_codec(??) +email.charset.email(??) +email.charset.encode_7or8bit(??) +email.charset.errors(??) +email.charset.partial(func, *args, **keywords) - new function with partial application +email.contentmanager(??) +email.contentmanager.ContentManager(??) +email.contentmanager.binascii(??) +email.contentmanager.email(??) +email.contentmanager.get_and_fixup_unknown_message_content(??) +email.contentmanager.get_message_content(??) +email.contentmanager.get_non_text_content(??) +email.contentmanager.get_text_content(??) +email.contentmanager.maintype +email.contentmanager.quoprimime(??) +email.contentmanager.raw_data_manager(??) +email.contentmanager.set_bytes_content(??) +email.contentmanager.set_message_content(??) +email.contentmanager.set_text_content(??) +email.contentmanager.subtype +email.contentmanager.typ(??) +email.encoders(??) +email.encoders.encode_7or8bit(??) +email.encoders.encode_base64(??) +email.encoders.encode_noop(??) +email.encoders.encode_quopri(??) +email.errors(??) +email.errors.BoundaryError(??) +email.errors.CharsetError(??) +email.errors.CloseBoundaryNotFoundDefect(??) +email.errors.FirstHeaderLineIsContinuationDefect(??) +email.errors.HeaderDefect(??) +email.errors.HeaderMissingRequiredValue(??) +email.errors.HeaderParseError(??) +email.errors.InvalidBase64CharactersDefect(??) +email.errors.InvalidBase64LengthDefect(??) +email.errors.InvalidBase64PaddingDefect(??) +email.errors.InvalidHeaderDefect(??) +email.errors.InvalidMultipartContentTransferEncodingDefect(??) +email.errors.MalformedHeaderDefect(??) +email.errors.MessageDefect(??) +email.errors.MessageError(??) +email.errors.MessageParseError(??) +email.errors.MisplacedEnvelopeHeaderDefect(??) +email.errors.MissingHeaderBodySeparatorDefect(??) +email.errors.MultipartConversionError(??) +email.errors.MultipartInvariantViolationDefect(??) +email.errors.NoBoundaryInMultipartDefect(??) +email.errors.NonASCIILocalPartDefect(??) +email.errors.NonPrintableDefect(??) +email.errors.ObsoleteHeaderDefect(??) +email.errors.StartBoundaryNotFoundDefect(??) +email.errors.UndecodableBytesDefect(??) +email.feedparser(??) +email.feedparser.BufferedSubFile(??) +email.feedparser.BytesFeedParser(??) +email.feedparser.EMPTYSTRING +email.feedparser.FeedParser(??) +email.feedparser.NL +email.feedparser.NLCRE(??) +email.feedparser.NLCRE_bol(??) +email.feedparser.NLCRE_crack(??) +email.feedparser.NLCRE_eol(??) +email.feedparser.NeedMoreData(??) +email.feedparser.StringIO(??) +email.feedparser.compat32(??) +email.feedparser.deque([iterable[, maxlen]]) --> deque object +email.feedparser.errors(??) +email.feedparser.headerRE(??) +email.feedparser.re(??) +email.generator(??) +email.generator.BytesGenerator(??) +email.generator.BytesIO(??) +email.generator.DecodedGenerator(??) +email.generator.Generator(??) +email.generator.NL +email.generator.NLCRE(??) +email.generator.StringIO(??) +email.generator.UNDERSCORE +email.generator.deepcopy(??) +email.generator.fcre(??) +email.generator.random(??) +email.generator.re(??) +email.generator.sys(??) +email.generator.time(??) +email.header(??) +email.header.BSPACE +email.header.Charset(??) +email.header.EMPTYSTRING +email.header.FWS +email.header.Header(??) +email.header.HeaderParseError(??) +email.header.MAXLINELEN +email.header.NL +email.header.SPACE +email.header.SPACE8 +email.header.USASCII(??) +email.header.UTF8(??) +email.header.binascii(??) +email.header.decode_header(??) +email.header.ecre(??) +email.header.email(??) +email.header.fcre(??) +email.header.make_header(??) +email.header.re(??) +email.headerregistry(??) +email.headerregistry.Address(??) +email.headerregistry.AddressHeader(??) +email.headerregistry.BaseHeader(??) +email.headerregistry.ContentDispositionHeader(??) +email.headerregistry.ContentTransferEncodingHeader(??) +email.headerregistry.ContentTypeHeader(??) +email.headerregistry.DateHeader(??) +email.headerregistry.Group(??) +email.headerregistry.HeaderRegistry(??) +email.headerregistry.MIMEVersionHeader(??) +email.headerregistry.MappingProxyType(??) +email.headerregistry.MessageIDHeader(??) +email.headerregistry.ParameterizedMIMEHeader(??) +email.headerregistry.SingleAddressHeader(??) +email.headerregistry.UniqueAddressHeader(??) +email.headerregistry.UniqueDateHeader(??) +email.headerregistry.UniqueSingleAddressHeader(??) +email.headerregistry.UniqueUnstructuredHeader(??) +email.headerregistry.UnstructuredHeader(??) +email.headerregistry.errors(??) +email.headerregistry.parser(??) +email.headerregistry.utils(??) +email.iterators(??) +email.iterators.StringIO(??) +email.iterators.body_line_iterator(??) +email.iterators.sys(??) +email.iterators.typed_subpart_iterator(??) +email.iterators.walk(??) +email.message(??) +email.message.BytesIO(??) +email.message.Charset(??) +email.message.EmailMessage(??) +email.message.MIMEPart(??) +email.message.Message(??) +email.message.Policy(??) +email.message.SEMISPACE +email.message.StringIO(??) +email.message.compat32(??) +email.message.decode_b(??) +email.message.errors(??) +email.message.quopri(??) +email.message.re(??) +email.message.tspecials(??) +email.message.utils(??) +email.message.uu(??) +email.message_from_binary_file(??) +email.message_from_bytes(??) +email.message_from_file(??) +email.message_from_string(??) +email.mime(??) +email.mime.application(??) +email.mime.application.MIMEApplication(??) +email.mime.application.MIMENonMultipart(??) +email.mime.application.encoders(??) +email.mime.audio(??) +email.mime.audio.BytesIO(??) +email.mime.audio.MIMEAudio(??) +email.mime.audio.MIMENonMultipart(??) +email.mime.audio.encoders(??) +email.mime.audio.sndhdr(??) +email.mime.base(??) +email.mime.base.MIMEBase(??) +email.mime.base.email(??) +email.mime.base.message(??) +email.mime.image(??) +email.mime.image.MIMEImage(??) +email.mime.image.MIMENonMultipart(??) +email.mime.image.encoders(??) +email.mime.image.imghdr(??) +email.mime.message(??) +email.mime.message.MIMEMessage(??) +email.mime.message.MIMENonMultipart(??) +email.mime.message.message(??) +email.mime.multipart(??) +email.mime.multipart.MIMEBase(??) +email.mime.multipart.MIMEMultipart(??) +email.mime.nonmultipart(??) +email.mime.nonmultipart.MIMEBase(??) +email.mime.nonmultipart.MIMENonMultipart(??) +email.mime.nonmultipart.errors(??) +email.mime.text(??) +email.mime.text.Charset(??) +email.mime.text.MIMENonMultipart(??) +email.mime.text.MIMEText(??) +email.parser(??) +email.parser.BytesFeedParser(??) +email.parser.BytesHeaderParser(??) +email.parser.BytesParser(??) +email.parser.FeedParser(??) +email.parser.HeaderParser(??) +email.parser.Parser(??) +email.parser.StringIO(??) +email.parser.TextIOWrapper(??) +email.parser.compat32(??) +email.policy(??) +email.policy.Compat32(??) +email.policy.EmailMessage(??) +email.policy.EmailPolicy(??) +email.policy.HTTP(??) +email.policy.HeaderRegistry(??) +email.policy.Policy(??) +email.policy.SMTP(??) +email.policy.SMTPUTF8(??) +email.policy.compat32(??) +email.policy.default(??) +email.policy.linesep_splitter(??) +email.policy.raw_data_manager(??) +email.policy.re(??) +email.policy.strict(??) +email.policy.sys(??) +email.quoprimime(??) +email.quoprimime.CRLF +email.quoprimime.EMPTYSTRING +email.quoprimime.NL +email.quoprimime.ascii_letters +email.quoprimime.body_check(??) +email.quoprimime.body_decode(??) +email.quoprimime.body_encode(??) +email.quoprimime.body_length(??) +email.quoprimime.c +email.quoprimime.decode(??) +email.quoprimime.decodestring(??) +email.quoprimime.digits +email.quoprimime.header_check(??) +email.quoprimime.header_decode(??) +email.quoprimime.header_encode(??) +email.quoprimime.header_length(??) +email.quoprimime.hexdigits +email.quoprimime.quote(??) +email.quoprimime.re(??) +email.quoprimime.unquote(??) +email.utils(??) +email.utils.COMMASPACE +email.utils.CRLF +email.utils.Charset(??) +email.utils.EMPTYSTRING +email.utils.TICK +email.utils.UEMPTYSTRING +email.utils.collapse_rfc2231_value(??) +email.utils.datetime(??) +email.utils.decode_params(??) +email.utils.decode_rfc2231(??) +email.utils.encode_rfc2231(??) +email.utils.escapesre(??) +email.utils.format_datetime(??) +email.utils.formataddr(??) +email.utils.formatdate(??) +email.utils.getaddresses(??) +email.utils.localtime(??) +email.utils.make_msgid(??) +email.utils.mktime_tz(??) +email.utils.os(??) +email.utils.parseaddr(??) +email.utils.parsedate(??) +email.utils.parsedate_to_datetime(??) +email.utils.parsedate_tz(??) +email.utils.quote(??) +email.utils.random(??) +email.utils.re(??) +email.utils.rfc2231_continuation(??) +email.utils.socket(??) +email.utils.specialsre(??) +email.utils.time(??) +email.utils.unquote(??) +email.utils.urllib(??) +ensurepip.bootstrap(??) +ensurepip.os(??) +ensurepip.resources(??) +ensurepip.runpy(??) +ensurepip.subprocess(??) +ensurepip.sys(??) +ensurepip.tempfile(??) +ensurepip.version(??) +enum.DynamicClassAttribute(??) +enum.Enum(??) +enum.EnumMeta(??) +enum.Flag(??) +enum.IntEnum(??) +enum.IntFlag(??) +enum.MappingProxyType(??) +enum.auto(??) +enum.sys(??) +enum.unique(??) +enumerate(??) +errno.E2BIG +errno.EACCES +errno.EADDRINUSE +errno.EADDRNOTAVAIL +errno.EAFNOSUPPORT +errno.EAGAIN +errno.EALREADY +errno.EAUTH +errno.EBADARCH +errno.EBADEXEC +errno.EBADF +errno.EBADMACHO +errno.EBADMSG +errno.EBADRPC +errno.EBUSY +errno.ECANCELED +errno.ECHILD +errno.ECONNABORTED +errno.ECONNREFUSED +errno.ECONNRESET +errno.EDEADLK +errno.EDESTADDRREQ +errno.EDEVERR +errno.EDOM +errno.EDQUOT +errno.EEXIST +errno.EFAULT +errno.EFBIG +errno.EFTYPE +errno.EHOSTDOWN +errno.EHOSTUNREACH +errno.EIDRM +errno.EILSEQ +errno.EINPROGRESS +errno.EINTR +errno.EINVAL +errno.EIO +errno.EISCONN +errno.EISDIR +errno.ELOOP +errno.EMFILE +errno.EMLINK +errno.EMSGSIZE +errno.EMULTIHOP +errno.ENAMETOOLONG +errno.ENEEDAUTH +errno.ENETDOWN +errno.ENETRESET +errno.ENETUNREACH +errno.ENFILE +errno.ENOATTR +errno.ENOBUFS +errno.ENODATA +errno.ENODEV +errno.ENOENT +errno.ENOEXEC +errno.ENOLCK +errno.ENOLINK +errno.ENOMEM +errno.ENOMSG +errno.ENOPOLICY +errno.ENOPROTOOPT +errno.ENOSPC +errno.ENOSR +errno.ENOSTR +errno.ENOSYS +errno.ENOTBLK +errno.ENOTCONN +errno.ENOTDIR +errno.ENOTEMPTY +errno.ENOTRECOVERABLE +errno.ENOTSOCK +errno.ENOTSUP +errno.ENOTTY +errno.ENXIO +errno.EOPNOTSUPP +errno.EOVERFLOW +errno.EOWNERDEAD +errno.EPERM +errno.EPFNOSUPPORT +errno.EPIPE +errno.EPROCLIM +errno.EPROCUNAVAIL +errno.EPROGMISMATCH +errno.EPROGUNAVAIL +errno.EPROTO +errno.EPROTONOSUPPORT +errno.EPROTOTYPE +errno.EPWROFF +errno.ERANGE +errno.EREMOTE +errno.EROFS +errno.ERPCMISMATCH +errno.ESHLIBVERS +errno.ESHUTDOWN +errno.ESOCKTNOSUPPORT +errno.ESPIPE +errno.ESRCH +errno.ESTALE +errno.ETIME +errno.ETIMEDOUT +errno.ETOOMANYREFS +errno.ETXTBSY +errno.EUSERS +errno.EWOULDBLOCK +errno.EXDEV +errno.errorcode(??) +eval(??) +exec(??) +exit(??) +faulthandler.cancel_dump_traceback_later(): +faulthandler.disable(): disable the fault handler +faulthandler.dump_traceback(file=sys.stderr, all_threads=True): dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderrn, exit=False): +faulthandler.enable(file=sys.stderr, all_threads=True): enable the fault handler +faulthandler.is_enabled()->bool: check if the handler is enabled +faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False): register a handler for the signal 'signum': dump the traceback of the current thread, or of all threads if all_threads is True, into file +faulthandler.unregister(signum): unregister the handler of the signal 'signum' registered by register() +filecmp.BUFSIZE +filecmp.DEFAULT_IGNORES(??) +filecmp.GenericAlias(??) +filecmp.clear_cache(??) +filecmp.cmp(??) +filecmp.cmpfiles(??) +filecmp.demo(??) +filecmp.dircmp(??) +filecmp.filterfalse(??) +filecmp.os(??) +filecmp.stat(??) +fileinput.FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None) +fileinput.GenericAlias(??) +fileinput.close(??) +fileinput.filelineno(??) +fileinput.filename(??) +fileinput.fileno(??) +fileinput.hook_compressed(??) +fileinput.hook_encoded(??) +fileinput.input(??) +fileinput.isfirstline(??) +fileinput.isstdin(??) +fileinput.lineno(??) +fileinput.nextfile(??) +fileinput.os(??) +fileinput.sys(??) +filter(function or None, iterable) --> filter object +float(??) +fnmatch.filter(??) +fnmatch.fnmatch(??) +fnmatch.fnmatchcase(??) +fnmatch.functools(??) +fnmatch.os(??) +fnmatch.posixpath(??) +fnmatch.re(??) +fnmatch.translate(??) +format(??) +formatter.AS_IS(??) +formatter.AbstractFormatter(??) +formatter.AbstractWriter(??) +formatter.DumbWriter(??) +formatter.NullFormatter(??) +formatter.NullWriter(??) +formatter.sys(??) +formatter.test(??) +formatter.warnings(??) +fractions.Decimal(??) +fractions.Fraction(??) +fractions.math(??) +fractions.numbers(??) +fractions.operator(??) +fractions.re(??) +fractions.sys(??) +frozenset() -> empty frozenset object +ftplib.B_CRLF +ftplib.CRLF +ftplib.Error(??) +ftplib.FTP(??) +ftplib.FTP_PORT +ftplib.FTP_TLS(??) +ftplib.MAXLINE +ftplib.MSG_OOB +ftplib.all_errors(??) +ftplib.error_perm(??) +ftplib.error_proto(??) +ftplib.error_reply(??) +ftplib.error_temp(??) +ftplib.ftpcp(??) +ftplib.parse150(??) +ftplib.parse227(??) +ftplib.parse229(??) +ftplib.parse257(??) +ftplib.print_line(??) +ftplib.socket(??) +ftplib.ssl(??) +ftplib.sys(??) +ftplib.test(??) +functools.GenericAlias(??) +functools.RLock(??) +functools.WRAPPER_ASSIGNMENTS(??) +functools.WRAPPER_UPDATES(??) +functools.cache(??) +functools.cached_property(??) +functools.cmp_to_key(??) +functools.get_cache_token(??) +functools.lru_cache(??) +functools.namedtuple(??) +functools.partial(func, *args, **keywords) - new function with partial application +functools.partialmethod(??) +functools.recursive_repr(??) +functools.reduce(function, sequence[, initial]) -> value +functools.singledispatch(??) +functools.singledispatchmethod(??) +functools.total_ordering(??) +functools.update_wrapper(??) +functools.wraps(??) +gc.DEBUG_COLLECTABLE +gc.DEBUG_LEAK +gc.DEBUG_SAVEALL +gc.DEBUG_STATS +gc.DEBUG_UNCOLLECTABLE +gc.callbacks(??) +gc.collect(??) +gc.disable(??) +gc.enable(??) +gc.freeze(??) +gc.garbage(??) +gc.get_count(??) +gc.get_debug(??) +gc.get_freeze_count(??) +gc.get_objects(??) +gc.get_referents(*objs) -> list +gc.get_referrers(*objs) -> list +gc.get_stats(??) +gc.get_threshold(??) +gc.is_finalized(??) +gc.is_tracked(??) +gc.isenabled(??) +gc.set_debug(??) +gc.set_threshold(threshold0, [threshold1, threshold2]) -> None +gc.unfreeze(??) +genericpath.commonprefix(??) +genericpath.exists(??) +genericpath.getatime(??) +genericpath.getctime(??) +genericpath.getmtime(??) +genericpath.getsize(??) +genericpath.isdir(??) +genericpath.isfile(??) +genericpath.os(??) +genericpath.samefile(??) +genericpath.sameopenfile(??) +genericpath.samestat(??) +genericpath.stat(??) +getattr(object, name[, default]) -> value +getopt.GetoptError(??) +getopt.do_longs(??) +getopt.do_shorts(??) +getopt.error(??) +getopt.getopt(args, options[, long_options]) -> opts, args +getopt.gnu_getopt(??) +getopt.long_has_args(??) +getopt.os(??) +getopt.short_has_arg(??) +getpass.GetPassWarning(??) +getpass.contextlib(??) +getpass.fallback_getpass(??) +getpass.getpass(??) +getpass.getuser(??) +getpass.io(??) +getpass.os(??) +getpass.sys(??) +getpass.termios(??) +getpass.unix_getpass(??) +getpass.warnings(??) +getpass.win_getpass(??) +gettext.Catalog(??) +gettext.GNUTranslations(??) +gettext.NullTranslations(??) +gettext.bind_textdomain_codeset(??) +gettext.bindtextdomain(??) +gettext.c2py(??) +gettext.dgettext(??) +gettext.dngettext(??) +gettext.dnpgettext(??) +gettext.dpgettext(??) +gettext.find(??) +gettext.gettext(??) +gettext.install(??) +gettext.ldgettext(??) +gettext.ldngettext(??) +gettext.lgettext(??) +gettext.lngettext(??) +gettext.ngettext(??) +gettext.npgettext(??) +gettext.os(??) +gettext.pgettext(??) +gettext.re(??) +gettext.sys(??) +gettext.textdomain(??) +gettext.translation(??) +glob.escape(??) +glob.fnmatch(??) +glob.glob(??) +glob.glob0(??) +glob.glob1(??) +glob.has_magic(??) +glob.iglob(??) +glob.magic_check(??) +glob.magic_check_bytes(??) +glob.os(??) +glob.re(??) +glob.sys(??) +globals(??) +graphlib.CycleError(??) +graphlib.TopologicalSorter(??) +gzip.BadGzipFile(??) +gzip.FCOMMENT +gzip.FEXTRA +gzip.FHCRC +gzip.FNAME +gzip.FTEXT +gzip.GzipFile(??) +gzip.READ +gzip.WRITE +gzip.builtins(??) +gzip.compress(??) +gzip.decompress(??) +gzip.io(??) +gzip.main(??) +gzip.open(??) +gzip.os(??) +gzip.struct(??) +gzip.sys(??) +gzip.time(??) +gzip.write32u(??) +gzip.zlib(??) +hasattr(??) +hash(??) +hashlib.algorithms_available(??) +hashlib.algorithms_guaranteed(??) +hashlib.blake2b(??) +hashlib.blake2s(??) +hashlib.md5(??) +hashlib.new(name, data=b'') - Return a new hashing object using the named algorithm; +hashlib.pbkdf2_hmac(??) +hashlib.scrypt(??) +hashlib.sha1(??) +hashlib.sha224(??) +hashlib.sha256(??) +hashlib.sha384(??) +hashlib.sha3_224(??) +hashlib.sha3_256(??) +hashlib.sha3_384(??) +hashlib.sha3_512(??) +hashlib.sha512(??) +hashlib.shake_128(??) +hashlib.shake_256(??) +heapq.heapify(??) +heapq.heappop(??) +heapq.heappush(??) +heapq.heappushpop(??) +heapq.heapreplace(??) +heapq.merge(??) +heapq.nlargest(??) +heapq.nsmallest(??) +help(??) +hex(??) +hmac.HMAC(??) +hmac.compare_digest(??) +hmac.digest(??) +hmac.digest_size(??) +hmac.new(??) +hmac.trans_36 +hmac.trans_5C +html.entities(??) +html.entities.codepoint2name(??) +html.entities.entitydefs(??) +html.entities.html5(??) +html.entities.name2codepoint(??) +html.escape(??) +html.parser(??) +html.parser.HTMLParser(??) +html.parser.attrfind_tolerant(??) +html.parser.charref(??) +html.parser.commentclose(??) +html.parser.endendtag(??) +html.parser.endtagfind(??) +html.parser.entityref(??) +html.parser.incomplete(??) +html.parser.interesting_normal(??) +html.parser.locatestarttagend_tolerant(??) +html.parser.piclose(??) +html.parser.re(??) +html.parser.starttagopen(??) +html.parser.tagfind_tolerant(??) +html.parser.unescape(??) +html.unescape(??) +http.HTTPStatus(??) +http.IntEnum(??) +http.client(??) +http.client.ACCEPTED(??) +http.client.ALREADY_REPORTED(??) +http.client.BAD_GATEWAY(??) +http.client.BAD_REQUEST(??) +http.client.BadStatusLine(??) +http.client.CONFLICT(??) +http.client.CONTINUE(??) +http.client.CREATED(??) +http.client.CannotSendHeader(??) +http.client.CannotSendRequest(??) +http.client.EARLY_HINTS(??) +http.client.EXPECTATION_FAILED(??) +http.client.FAILED_DEPENDENCY(??) +http.client.FORBIDDEN(??) +http.client.FOUND(??) +http.client.GATEWAY_TIMEOUT(??) +http.client.GONE(??) +http.client.HTTPConnection(??) +http.client.HTTPException(??) +http.client.HTTPMessage(??) +http.client.HTTPResponse(??) +http.client.HTTPSConnection(??) +http.client.HTTPS_PORT +http.client.HTTP_PORT +http.client.HTTP_VERSION_NOT_SUPPORTED(??) +http.client.IM_A_TEAPOT(??) +http.client.IM_USED(??) +http.client.INSUFFICIENT_STORAGE(??) +http.client.INTERNAL_SERVER_ERROR(??) +http.client.ImproperConnectionState(??) +http.client.IncompleteRead(??) +http.client.InvalidURL(??) +http.client.LENGTH_REQUIRED(??) +http.client.LOCKED(??) +http.client.LOOP_DETECTED(??) +http.client.LineTooLong(??) +http.client.METHOD_NOT_ALLOWED(??) +http.client.MISDIRECTED_REQUEST(??) +http.client.MOVED_PERMANENTLY(??) +http.client.MULTIPLE_CHOICES(??) +http.client.MULTI_STATUS(??) +http.client.NETWORK_AUTHENTICATION_REQUIRED(??) +http.client.NON_AUTHORITATIVE_INFORMATION(??) +http.client.NOT_ACCEPTABLE(??) +http.client.NOT_EXTENDED(??) +http.client.NOT_FOUND(??) +http.client.NOT_IMPLEMENTED(??) +http.client.NOT_MODIFIED(??) +http.client.NO_CONTENT(??) +http.client.NotConnected(??) +http.client.OK(??) +http.client.PARTIAL_CONTENT(??) +http.client.PAYMENT_REQUIRED(??) +http.client.PERMANENT_REDIRECT(??) +http.client.PRECONDITION_FAILED(??) +http.client.PRECONDITION_REQUIRED(??) +http.client.PROCESSING(??) +http.client.PROXY_AUTHENTICATION_REQUIRED(??) +http.client.REQUESTED_RANGE_NOT_SATISFIABLE(??) +http.client.REQUEST_ENTITY_TOO_LARGE(??) +http.client.REQUEST_HEADER_FIELDS_TOO_LARGE(??) +http.client.REQUEST_TIMEOUT(??) +http.client.REQUEST_URI_TOO_LONG(??) +http.client.RESET_CONTENT(??) +http.client.RemoteDisconnected(??) +http.client.ResponseNotReady(??) +http.client.SEE_OTHER(??) +http.client.SERVICE_UNAVAILABLE(??) +http.client.SWITCHING_PROTOCOLS(??) +http.client.TEMPORARY_REDIRECT(??) +http.client.TOO_EARLY(??) +http.client.TOO_MANY_REQUESTS(??) +http.client.UNAUTHORIZED(??) +http.client.UNAVAILABLE_FOR_LEGAL_REASONS(??) +http.client.UNPROCESSABLE_ENTITY(??) +http.client.UNSUPPORTED_MEDIA_TYPE(??) +http.client.UPGRADE_REQUIRED(??) +http.client.USE_PROXY(??) +http.client.UnimplementedFileMode(??) +http.client.UnknownProtocol(??) +http.client.UnknownTransferEncoding(??) +http.client.VARIANT_ALSO_NEGOTIATES(??) +http.client.collections(??) +http.client.email(??) +http.client.error(??) +http.client.http(??) +http.client.io(??) +http.client.parse_headers(??) +http.client.re(??) +http.client.responses(??) +http.client.socket(??) +http.client.ssl(??) +http.client.urlsplit(??) +http.cookiejar(??) +http.cookiejar.Absent(??) +http.cookiejar.Cookie(??) +http.cookiejar.CookieJar(??) +http.cookiejar.CookiePolicy(??) +http.cookiejar.DAYS(??) +http.cookiejar.DEFAULT_HTTP_PORT +http.cookiejar.DefaultCookiePolicy(??) +http.cookiejar.EPOCH_YEAR +http.cookiejar.ESCAPED_CHAR_RE(??) +http.cookiejar.FileCookieJar(??) +http.cookiejar.HEADER_ESCAPE_RE(??) +http.cookiejar.HEADER_JOIN_ESCAPE_RE(??) +http.cookiejar.HEADER_QUOTED_VALUE_RE(??) +http.cookiejar.HEADER_TOKEN_RE(??) +http.cookiejar.HEADER_VALUE_RE(??) +http.cookiejar.HTTP_PATH_SAFE +http.cookiejar.IPV4_RE(??) +http.cookiejar.ISO_DATE_RE(??) +http.cookiejar.LOOSE_HTTP_DATE_RE(??) +http.cookiejar.LWPCookieJar(??) +http.cookiejar.LoadError(??) +http.cookiejar.MISSING_FILENAME_TEXT +http.cookiejar.MONTHS(??) +http.cookiejar.MONTHS_LOWER(??) +http.cookiejar.MozillaCookieJar(??) +http.cookiejar.STRICT_DATE_RE(??) +http.cookiejar.TIMEZONE_RE(??) +http.cookiejar.UTC_ZONES(??) +http.cookiejar.WEEKDAY_RE(??) +http.cookiejar.copy(??) +http.cookiejar.cut_port_re(??) +http.cookiejar.datetime(??) +http.cookiejar.debug(??) +http.cookiejar.deepvalues(??) +http.cookiejar.domain_match(??) +http.cookiejar.eff_request_host(??) +http.cookiejar.escape_path(??) +http.cookiejar.http(??) +http.cookiejar.http2time(??) +http.cookiejar.is_HDN(??) +http.cookiejar.is_third_party(??) +http.cookiejar.iso2time(??) +http.cookiejar.join_header_words(??) +http.cookiejar.liberal_is_HDN(??) +http.cookiejar.logger(??) +http.cookiejar.lwp_cookie_str(??) +http.cookiejar.month +http.cookiejar.offset_from_tz_string(??) +http.cookiejar.os(??) +http.cookiejar.parse_ns_headers(??) +http.cookiejar.re(??) +http.cookiejar.reach(??) +http.cookiejar.request_host(??) +http.cookiejar.request_path(??) +http.cookiejar.request_port(??) +http.cookiejar.split_header_words(??) +http.cookiejar.strip_quotes(??) +http.cookiejar.time(??) +http.cookiejar.time2isoz(??) +http.cookiejar.time2netscape(??) +http.cookiejar.timegm(??) +http.cookiejar.unmatched(??) +http.cookiejar.uppercase_escaped_char(??) +http.cookiejar.urllib(??) +http.cookiejar.user_domain_match(??) +http.cookiejar.vals_sorted_by_key(??) +http.cookies(??) +http.cookies.BaseCookie(??) +http.cookies.CookieError(??) +http.cookies.Morsel(??) +http.cookies.SimpleCookie(??) +http.cookies.re(??) +http.cookies.string(??) +http.cookies.types(??) +http.server(??) +http.server.BaseHTTPRequestHandler(??) +http.server.CGIHTTPRequestHandler(??) +http.server.DEFAULT_ERROR_CONTENT_TYPE +http.server.DEFAULT_ERROR_MESSAGE +http.server.HTTPServer(??) +http.server.HTTPStatus(??) +http.server.SimpleHTTPRequestHandler(??) +http.server.ThreadingHTTPServer(??) +http.server.contextlib(??) +http.server.copy(??) +http.server.datetime(??) +http.server.email(??) +http.server.executable(??) +http.server.html(??) +http.server.http(??) +http.server.io(??) +http.server.mimetypes(??) +http.server.nobody(??) +http.server.nobody_uid(??) +http.server.os(??) +http.server.partial(func, *args, **keywords) - new function with partial application +http.server.posixpath(??) +http.server.select(??) +http.server.shutil(??) +http.server.socket(??) +http.server.socketserver(??) +http.server.sys(??) +http.server.test(??) +http.server.time(??) +http.server.urllib(??) +id(??) +imaplib.AllowedVersions(??) +imaplib.CRLF +imaplib.Commands(??) +imaplib.Continuation(??) +imaplib.DEFAULT_BUFFER_SIZE +imaplib.Debug +imaplib.Flags(??) +imaplib.HAVE_SSL(??) +imaplib.IMAP4(??) +imaplib.IMAP4_PORT +imaplib.IMAP4_SSL(??) +imaplib.IMAP4_SSL_PORT +imaplib.IMAP4_stream(??) +imaplib.Int2AP(??) +imaplib.InternalDate(??) +imaplib.Internaldate2tuple(??) +imaplib.Literal(??) +imaplib.MapCRLF(??) +imaplib.Mon2num(??) +imaplib.Months(??) +imaplib.ParseFlags(??) +imaplib.Response_code(??) +imaplib.Time2Internaldate(??) +imaplib.Untagged_response(??) +imaplib.Untagged_status(??) +imaplib.binascii(??) +imaplib.calendar(??) +imaplib.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +imaplib.errno(??) +imaplib.random(??) +imaplib.re(??) +imaplib.socket(??) +imaplib.ssl(??) +imaplib.subprocess(??) +imaplib.sys(??) +imaplib.time(??) +imaplib.timedelta(??) +imaplib.timezone(??) +imghdr.PathLike(??) +imghdr.test(??) +imghdr.test_bmp(??) +imghdr.test_exr(??) +imghdr.test_gif(??) +imghdr.test_jpeg(??) +imghdr.test_pbm(??) +imghdr.test_pgm(??) +imghdr.test_png(??) +imghdr.test_ppm(??) +imghdr.test_rast(??) +imghdr.test_rgb(??) +imghdr.test_tiff(??) +imghdr.test_webp(??) +imghdr.test_xbm(??) +imghdr.testall(??) +imghdr.tests(??) +imghdr.what(??) +imp.C_BUILTIN +imp.C_EXTENSION +imp.IMP_HOOK +imp.NullImporter(??) +imp.PKG_DIRECTORY +imp.PY_CODERESOURCE +imp.PY_COMPILED +imp.PY_FROZEN +imp.PY_RESOURCE +imp.PY_SOURCE +imp.SEARCH_ERROR +imp.SourcelessFileLoader(??) +imp.acquire_lock(??) +imp.cache_from_source(??) +imp.create_dynamic(??) +imp.find_module(??) +imp.get_frozen_object(??) +imp.get_magic(??) +imp.get_suffixes(??) +imp.get_tag(??) +imp.importlib(??) +imp.init_builtin(??) +imp.init_frozen(??) +imp.is_builtin(??) +imp.is_frozen(??) +imp.is_frozen_package(??) +imp.load_compiled(??) +imp.load_dynamic(??) +imp.load_module(??) +imp.load_package(??) +imp.load_source(??) +imp.lock_held(??) +imp.machinery(??) +imp.new_module(??) +imp.os(??) +imp.release_lock(??) +imp.reload(??) +imp.source_from_cache(??) +imp.sys(??) +imp.tokenize(??) +imp.types(??) +imp.util(??) +imp.warnings(??) +importlib.abc(??) +importlib.abc.ExecutionLoader(??) +importlib.abc.FileLoader(??) +importlib.abc.Finder(??) +importlib.abc.InspectLoader(??) +importlib.abc.Loader(??) +importlib.abc.MetaPathFinder(??) +importlib.abc.PathEntryFinder(??) +importlib.abc.Protocol(??) +importlib.abc.ResourceLoader(??) +importlib.abc.ResourceReader(??) +importlib.abc.SourceLoader(??) +importlib.abc.Traversable(??) +importlib.abc.TraversableResources(??) +importlib.abc.abc(??) +importlib.abc.machinery(??) +importlib.abc.runtime_checkable(??) +importlib.abc.warnings(??) +importlib.find_loader(??) +importlib.import_module(??) +importlib.invalidate_caches(??) +importlib.machinery(??) +importlib.machinery.BYTECODE_SUFFIXES(??) +importlib.machinery.BuiltinImporter(??) +importlib.machinery.DEBUG_BYTECODE_SUFFIXES(??) +importlib.machinery.EXTENSION_SUFFIXES(??) +importlib.machinery.ExtensionFileLoader(??) +importlib.machinery.FileFinder(??) +importlib.machinery.FrozenImporter(??) +importlib.machinery.ModuleSpec(??) +importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES(??) +importlib.machinery.PathFinder(??) +importlib.machinery.SOURCE_SUFFIXES(??) +importlib.machinery.SourceFileLoader(??) +importlib.machinery.SourcelessFileLoader(??) +importlib.machinery.WindowsRegistryFinder(??) +importlib.machinery.all_suffixes(??) +importlib.metadata(??) +importlib.metadata.ConfigParser(??) +importlib.metadata.Distribution(??) +importlib.metadata.DistributionFinder(??) +importlib.metadata.EntryPoint(??) +importlib.metadata.FastPath(??) +importlib.metadata.FileHash(??) +importlib.metadata.MetaPathFinder(??) +importlib.metadata.MetadataPathFinder(??) +importlib.metadata.PackageNotFoundError(??) +importlib.metadata.PackagePath(??) +importlib.metadata.PathDistribution(??) +importlib.metadata.Prepared(??) +importlib.metadata.abc(??) +importlib.metadata.collections(??) +importlib.metadata.csv(??) +importlib.metadata.distribution(??) +importlib.metadata.distributions(??) +importlib.metadata.email(??) +importlib.metadata.entry_points(??) +importlib.metadata.files(??) +importlib.metadata.functools(??) +importlib.metadata.import_module(??) +importlib.metadata.io(??) +importlib.metadata.itertools(??) +importlib.metadata.metadata(??) +importlib.metadata.operator(??) +importlib.metadata.os(??) +importlib.metadata.pathlib(??) +importlib.metadata.posixpath(??) +importlib.metadata.re(??) +importlib.metadata.requires(??) +importlib.metadata.starmap(??) +importlib.metadata.suppress(??) +importlib.metadata.sys(??) +importlib.metadata.version(??) +importlib.metadata.zipfile(??) +importlib.reload(??) +importlib.resources(??) +importlib.resources.BinaryIO(??) +importlib.resources.BytesIO(??) +importlib.resources.ContextManager(??) +importlib.resources.Iterable(??) +importlib.resources.ModuleType(??) +importlib.resources.Optional(??) +importlib.resources.Package(??) +importlib.resources.Path(??) +importlib.resources.Resource(??) +importlib.resources.ResourceLoader(??) +importlib.resources.TextIO(??) +importlib.resources.TextIOWrapper(??) +importlib.resources.Union(??) +importlib.resources.as_file(??) +importlib.resources.cast(??) +importlib.resources.contents(??) +importlib.resources.contextmanager(??) +importlib.resources.files(??) +importlib.resources.import_module(??) +importlib.resources.is_resource(??) +importlib.resources.open_binary(??) +importlib.resources.open_text(??) +importlib.resources.os(??) +importlib.resources.path(??) +importlib.resources.read_binary(??) +importlib.resources.read_text(??) +importlib.resources.resources_abc(??) +importlib.resources.suppress(??) +importlib.sys(??) +importlib.types(??) +importlib.util(??) +importlib.util.LazyLoader(??) +importlib.util.MAGIC_NUMBER +importlib.util.abc(??) +importlib.util.cache_from_source(??) +importlib.util.contextmanager(??) +importlib.util.decode_source(??) +importlib.util.find_spec(??) +importlib.util.functools(??) +importlib.util.module_for_loader(??) +importlib.util.module_from_spec(??) +importlib.util.resolve_name(??) +importlib.util.set_loader(??) +importlib.util.set_package(??) +importlib.util.source_from_cache(??) +importlib.util.source_hash(??) +importlib.util.spec_from_file_location(??) +importlib.util.spec_from_loader(??) +importlib.util.sys(??) +importlib.util.types(??) +importlib.util.warnings(??) +importlib.warnings(??) +input(??) +inspect.ArgInfo(args, varargs, keywords, locals) +inspect.ArgSpec(args, varargs, keywords, defaults) +inspect.Arguments(args, varargs, varkw) +inspect.Attribute(name, kind, defining_class, object) +inspect.BlockFinder(??) +inspect.BoundArguments(??) +inspect.CORO_CLOSED +inspect.CORO_CREATED +inspect.CORO_RUNNING +inspect.CORO_SUSPENDED +inspect.CO_ASYNC_GENERATOR +inspect.CO_COROUTINE +inspect.CO_GENERATOR +inspect.CO_ITERABLE_COROUTINE +inspect.CO_NESTED +inspect.CO_NEWLOCALS +inspect.CO_NOFREE +inspect.CO_OPTIMIZED +inspect.CO_VARARGS +inspect.CO_VARKEYWORDS +inspect.ClassFoundException(??) +inspect.ClosureVars(nonlocals, globals, builtins, unbound) +inspect.EndOfBlock(??) +inspect.FrameInfo(frame, filename, lineno, function, code_context, index) +inspect.FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations) +inspect.GEN_CLOSED +inspect.GEN_CREATED +inspect.GEN_RUNNING +inspect.GEN_SUSPENDED +inspect.OrderedDict(??) +inspect.Parameter(??) +inspect.Signature(??) +inspect.TPFLAGS_IS_ABSTRACT +inspect.Traceback(filename, lineno, function, code_context, index) +inspect.abc(??) +inspect.ast(??) +inspect.attrgetter(attr, ...) --> attrgetter object +inspect.builtins(??) +inspect.classify_class_attrs(??) +inspect.cleandoc(??) +inspect.collections(??) +inspect.currentframe(??) +inspect.dis(??) +inspect.enum(??) +inspect.findsource(??) +inspect.formatannotation(??) +inspect.formatannotationrelativeto(??) +inspect.formatargspec(??) +inspect.formatargvalues(??) +inspect.functools(??) +inspect.getabsfile(??) +inspect.getargs(??) +inspect.getargspec(??) +inspect.getargvalues(??) +inspect.getattr_static(??) +inspect.getblock(??) +inspect.getcallargs(??) +inspect.getclasstree(??) +inspect.getclosurevars(??) +inspect.getcomments(??) +inspect.getcoroutinelocals(??) +inspect.getcoroutinestate(??) +inspect.getdoc(??) +inspect.getfile(??) +inspect.getframeinfo(??) +inspect.getfullargspec(??) +inspect.getgeneratorlocals(??) +inspect.getgeneratorstate(??) +inspect.getinnerframes(??) +inspect.getlineno(??) +inspect.getmembers(??) +inspect.getmodule(??) +inspect.getmodulename(??) +inspect.getmro(??) +inspect.getouterframes(??) +inspect.getsource(??) +inspect.getsourcefile(??) +inspect.getsourcelines(??) +inspect.importlib(??) +inspect.indentsize(??) +inspect.isabstract(??) +inspect.isasyncgen(??) +inspect.isasyncgenfunction(??) +inspect.isawaitable(??) +inspect.isbuiltin(??) +inspect.isclass(??) +inspect.iscode(??) +inspect.iscoroutine(??) +inspect.iscoroutinefunction(??) +inspect.isdatadescriptor(??) +inspect.isframe(??) +inspect.isfunction(??) +inspect.isgenerator(??) +inspect.isgeneratorfunction(??) +inspect.isgetsetdescriptor(??) +inspect.ismemberdescriptor(??) +inspect.ismethod(??) +inspect.ismethoddescriptor(??) +inspect.ismodule(??) +inspect.isroutine(??) +inspect.istraceback(??) +inspect.itertools(??) +inspect.k +inspect.linecache(??) +inspect.mod_dict(??) +inspect.modulesbyfile(??) +inspect.namedtuple(??) +inspect.os(??) +inspect.re(??) +inspect.signature(??) +inspect.stack(??) +inspect.sys(??) +inspect.token(??) +inspect.tokenize(??) +inspect.trace(??) +inspect.types(??) +inspect.unwrap(??) +inspect.v +inspect.walktree(??) +inspect.warnings(??) +int([x]) -> integer +io.BlockingIOError(??) +io.BufferedIOBase(??) +io.BufferedRWPair(??) +io.BufferedRandom(??) +io.BufferedReader(??) +io.BufferedWriter(??) +io.BytesIO(??) +io.DEFAULT_BUFFER_SIZE +io.FileIO(??) +io.IOBase(??) +io.IncrementalNewlineDecoder(??) +io.OpenWrapper(??) +io.RawIOBase(??) +io.SEEK_CUR +io.SEEK_END +io.SEEK_SET +io.StringIO(??) +io.TextIOBase(??) +io.TextIOWrapper(??) +io.UnsupportedOperation(??) +io.abc(??) +io.open(??) +io.open_code(??) +ipaddress.AddressValueError(??) +ipaddress.IPV4LENGTH +ipaddress.IPV6LENGTH +ipaddress.IPv4Address(??) +ipaddress.IPv4Interface(??) +ipaddress.IPv4Network(??) +ipaddress.IPv6Address(??) +ipaddress.IPv6Interface(??) +ipaddress.IPv6Network(??) +ipaddress.NetmaskValueError(??) +ipaddress.collapse_addresses(??) +ipaddress.functools(??) +ipaddress.get_mixed_type_key(??) +ipaddress.ip_address(??) +ipaddress.ip_interface(??) +ipaddress.ip_network(??) +ipaddress.summarize_address_range(??) +ipaddress.v4_int_to_packed(??) +ipaddress.v6_int_to_packed(??) +isinstance(??) +issubclass(??) +iter(iterable) -> iterator +itertools.accumulate(??) +itertools.chain(*iterables) --> chain object +itertools.combinations(??) +itertools.combinations_with_replacement(??) +itertools.compress(??) +itertools.count(??) +itertools.cycle(??) +itertools.dropwhile(??) +itertools.filterfalse(??) +itertools.groupby(??) +itertools.islice(iterable, stop) --> islice object +itertools.permutations(??) +itertools.product(*iterables, repeat=1) --> product object +itertools.repeat(object [,times]) -> create an iterator which returns the object +itertools.starmap(??) +itertools.takewhile(??) +itertools.tee(??) +itertools.zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object +json.JSONDecodeError(??) +json.JSONDecoder(??) +json.JSONEncoder(??) +json.codecs(??) +json.decoder(??) +json.decoder.BACKSLASH(??) +json.decoder.FLAGS(??) +json.decoder.JSONArray(??) +json.decoder.JSONDecodeError(??) +json.decoder.JSONDecoder(??) +json.decoder.JSONObject(??) +json.decoder.NaN +json.decoder.NegInf +json.decoder.PosInf +json.decoder.STRINGCHUNK(??) +json.decoder.WHITESPACE(??) +json.decoder.WHITESPACE_STR +json.decoder.c_scanstring(??) +json.decoder.py_scanstring(??) +json.decoder.re(??) +json.decoder.scanner(??) +json.decoder.scanstring(string, end, strict=True) -> (string, end) +json.detect_encoding(??) +json.dump(??) +json.dumps(??) +json.encoder(??) +json.encoder.ESCAPE(??) +json.encoder.ESCAPE_ASCII(??) +json.encoder.ESCAPE_DCT(??) +json.encoder.HAS_UTF8(??) +json.encoder.INFINITY +json.encoder.JSONEncoder(??) +json.encoder.c_encode_basestring(??) +json.encoder.c_encode_basestring_ascii(??) +json.encoder.c_make_encoder(??) +json.encoder.encode_basestring(string) -> string +json.encoder.encode_basestring_ascii(string) -> string +json.encoder.i +json.encoder.py_encode_basestring(??) +json.encoder.py_encode_basestring_ascii(??) +json.encoder.re(??) +json.load(??) +json.loads(??) +json.scanner(??) +json.scanner.NUMBER_RE(??) +json.scanner.c_make_scanner(??) +json.scanner.make_scanner(??) +json.scanner.py_make_scanner(??) +json.scanner.re(??) +json.tool(??) +json.tool.argparse(??) +json.tool.json(??) +json.tool.main(??) +json.tool.sys(??) +keyword.iskeyword(??) +keyword.issoftkeyword(??) +keyword.kwlist(??) +keyword.softkwlist(??) +len(??) +license(??) +linecache.cache(??) +linecache.checkcache(??) +linecache.clearcache(??) +linecache.functools(??) +linecache.getline(??) +linecache.getlines(??) +linecache.lazycache(??) +linecache.os(??) +linecache.sys(??) +linecache.tokenize(??) +linecache.updatecache(??) +list(??) +locale.ABDAY_1 +locale.ABDAY_2 +locale.ABDAY_3 +locale.ABDAY_4 +locale.ABDAY_5 +locale.ABDAY_6 +locale.ABDAY_7 +locale.ABMON_1 +locale.ABMON_10 +locale.ABMON_11 +locale.ABMON_12 +locale.ABMON_2 +locale.ABMON_3 +locale.ABMON_4 +locale.ABMON_5 +locale.ABMON_6 +locale.ABMON_7 +locale.ABMON_8 +locale.ABMON_9 +locale.ALT_DIGITS +locale.AM_STR +locale.CHAR_MAX +locale.CODESET +locale.CRNCYSTR +locale.DAY_1 +locale.DAY_2 +locale.DAY_3 +locale.DAY_4 +locale.DAY_5 +locale.DAY_6 +locale.DAY_7 +locale.D_FMT +locale.D_T_FMT +locale.ERA +locale.ERA_D_FMT +locale.ERA_D_T_FMT +locale.ERA_T_FMT +locale.Error(??) +locale.LC_ALL +locale.LC_COLLATE +locale.LC_CTYPE +locale.LC_MESSAGES +locale.LC_MONETARY +locale.LC_NUMERIC +locale.LC_TIME +locale.MON_1 +locale.MON_10 +locale.MON_11 +locale.MON_12 +locale.MON_2 +locale.MON_3 +locale.MON_4 +locale.MON_5 +locale.MON_6 +locale.MON_7 +locale.MON_8 +locale.MON_9 +locale.NOEXPR +locale.PM_STR +locale.RADIXCHAR +locale.THOUSEP +locale.T_FMT +locale.T_FMT_AMPM +locale.YESEXPR +locale.atof(??) +locale.atoi(??) +locale.currency(??) +locale.delocalize(??) +locale.encodings(??) +locale.format(??) +locale.format_string(??) +locale.functools(??) +locale.getdefaultlocale(??) +locale.getlocale(??) +locale.getpreferredencoding(??) +locale.k +locale.locale_alias(??) +locale.locale_encoding_alias(??) +locale.localeconv(??) +locale.nl_langinfo(key) -> string +locale.normalize(??) +locale.re(??) +locale.resetlocale(??) +locale.setlocale(??) +locale.str(??) +locale.strcoll(??) +locale.strxfrm(string) -> string. +locale.sys(??) +locale.v +locale.windows_locale(??) +locals(??) +logging.BASIC_FORMAT +logging.BufferingFormatter(??) +logging.CRITICAL +logging.DEBUG +logging.ERROR +logging.FATAL +logging.FileHandler(??) +logging.Filter(??) +logging.Filterer(??) +logging.Formatter(??) +logging.Handler(??) +logging.INFO +logging.LogRecord(??) +logging.Logger(??) +logging.LoggerAdapter(??) +logging.Manager(??) +logging.NOTSET +logging.NullHandler(??) +logging.PercentStyle(??) +logging.PlaceHolder(??) +logging.RootLogger(??) +logging.StrFormatStyle(??) +logging.StreamHandler(??) +logging.StringTemplateStyle(??) +logging.Template(??) +logging.WARN +logging.WARNING +logging.addLevelName(??) +logging.atexit(??) +logging.basicConfig(??) +logging.captureWarnings(??) +logging.collections(??) +logging.config(??) +logging.config.BaseConfigurator(??) +logging.config.ConvertingDict(??) +logging.config.ConvertingList(??) +logging.config.ConvertingMixin(??) +logging.config.ConvertingTuple(??) +logging.config.DEFAULT_LOGGING_CONFIG_PORT +logging.config.DictConfigurator(??) +logging.config.IDENTIFIER(??) +logging.config.RESET_ERROR +logging.config.StreamRequestHandler(??) +logging.config.ThreadingTCPServer(??) +logging.config.dictConfig(??) +logging.config.dictConfigClass(??) +logging.config.errno(??) +logging.config.fileConfig(??) +logging.config.io(??) +logging.config.listen(??) +logging.config.logging(??) +logging.config.re(??) +logging.config.stopListening(??) +logging.config.struct(??) +logging.config.sys(??) +logging.config.threading(??) +logging.config.traceback(??) +logging.config.valid_ident(??) +logging.critical(??) +logging.currentframe(??) +logging.debug(??) +logging.disable(??) +logging.error(??) +logging.exception(??) +logging.fatal(??) +logging.getLevelName(??) +logging.getLogRecordFactory(??) +logging.getLogger(??) +logging.getLoggerClass(??) +logging.handlers(??) +logging.handlers.BaseRotatingHandler(??) +logging.handlers.BufferingHandler(??) +logging.handlers.DEFAULT_HTTP_LOGGING_PORT +logging.handlers.DEFAULT_SOAP_LOGGING_PORT +logging.handlers.DEFAULT_TCP_LOGGING_PORT +logging.handlers.DEFAULT_UDP_LOGGING_PORT +logging.handlers.DatagramHandler(??) +logging.handlers.HTTPHandler(??) +logging.handlers.MemoryHandler(??) +logging.handlers.NTEventLogHandler(??) +logging.handlers.QueueHandler(??) +logging.handlers.QueueListener(??) +logging.handlers.RotatingFileHandler(??) +logging.handlers.SMTPHandler(??) +logging.handlers.ST_DEV +logging.handlers.ST_INO +logging.handlers.ST_MTIME +logging.handlers.SYSLOG_TCP_PORT +logging.handlers.SYSLOG_UDP_PORT +logging.handlers.SocketHandler(??) +logging.handlers.SysLogHandler(??) +logging.handlers.TimedRotatingFileHandler(??) +logging.handlers.WatchedFileHandler(??) +logging.handlers.copy(??) +logging.handlers.logging(??) +logging.handlers.os(??) +logging.handlers.pickle(??) +logging.handlers.queue(??) +logging.handlers.re(??) +logging.handlers.socket(??) +logging.handlers.struct(??) +logging.handlers.threading(??) +logging.handlers.time(??) +logging.info(??) +logging.io(??) +logging.lastResort(??) +logging.log(??) +logging.logMultiprocessing(??) +logging.logProcesses(??) +logging.logThreads(??) +logging.makeLogRecord(??) +logging.os(??) +logging.raiseExceptions(??) +logging.re(??) +logging.root(??) +logging.setLogRecordFactory(??) +logging.setLoggerClass(??) +logging.shutdown(??) +logging.sys(??) +logging.threading(??) +logging.time(??) +logging.traceback(??) +logging.warn(??) +logging.warning(??) +logging.warnings(??) +logging.weakref(??) +lzma.CHECK_CRC32 +lzma.CHECK_CRC64 +lzma.CHECK_ID_MAX +lzma.CHECK_NONE +lzma.CHECK_SHA256 +lzma.CHECK_UNKNOWN +lzma.FILTER_ARM +lzma.FILTER_ARMTHUMB +lzma.FILTER_DELTA +lzma.FILTER_IA64 +lzma.FILTER_LZMA1 +lzma.FILTER_LZMA2 +lzma.FILTER_POWERPC +lzma.FILTER_SPARC +lzma.FILTER_X86 +lzma.FORMAT_ALONE +lzma.FORMAT_AUTO +lzma.FORMAT_RAW +lzma.FORMAT_XZ +lzma.LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None) +lzma.LZMADecompressor(??) +lzma.LZMAError(??) +lzma.LZMAFile(??) +lzma.MF_BT2 +lzma.MF_BT3 +lzma.MF_BT4 +lzma.MF_HC3 +lzma.MF_HC4 +lzma.MODE_FAST +lzma.MODE_NORMAL +lzma.PRESET_DEFAULT +lzma.PRESET_EXTREME +lzma.builtins(??) +lzma.compress(??) +lzma.decompress(??) +lzma.io(??) +lzma.is_check_supported(??) +lzma.open(??) +lzma.os(??) +mailbox.Babyl(??) +mailbox.BabylMessage(??) +mailbox.Error(??) +mailbox.ExternalClashError(??) +mailbox.FormatError(??) +mailbox.GenericAlias(??) +mailbox.MH(??) +mailbox.MHMessage(??) +mailbox.MMDF(??) +mailbox.MMDFMessage(??) +mailbox.Mailbox(??) +mailbox.Maildir(??) +mailbox.MaildirMessage(??) +mailbox.Message(??) +mailbox.NoSuchMailboxError(??) +mailbox.NotEmptyError(??) +mailbox.calendar(??) +mailbox.contextlib(??) +mailbox.copy(??) +mailbox.email(??) +mailbox.errno(??) +mailbox.fcntl(??) +mailbox.io(??) +mailbox.linesep +mailbox.mbox(??) +mailbox.mboxMessage(??) +mailbox.os(??) +mailbox.socket(??) +mailbox.time(??) +mailbox.warnings(??) +mailcap.findmatch(??) +mailcap.findparam(??) +mailcap.getcaps(??) +mailcap.lineno_sort_key(??) +mailcap.listmailcapfiles(??) +mailcap.lookup(??) +mailcap.os(??) +mailcap.parsefield(??) +mailcap.parseline(??) +mailcap.readmailcapfile(??) +mailcap.show(??) +mailcap.subst(??) +mailcap.test(??) +mailcap.warnings(??) +map(func, *iterables) --> map object +marshal.dump(??) +marshal.dumps(??) +marshal.load(??) +marshal.loads(??) +marshal.version +max(iterable, *[, default=obj, key=func]) -> value +memoryview(??) +mimetypes.MimeTypes(??) +mimetypes.add_type(??) +mimetypes.common_types(??) +mimetypes.encodings_map(??) +mimetypes.guess_all_extensions(??) +mimetypes.guess_extension(??) +mimetypes.guess_type(??) +mimetypes.init(??) +mimetypes.inited(??) +mimetypes.knownfiles(??) +mimetypes.os(??) +mimetypes.posixpath(??) +mimetypes.read_mime_types(??) +mimetypes.suffix_map(??) +mimetypes.sys(??) +mimetypes.types_map(??) +mimetypes.urllib(??) +min(iterable, *[, default=obj, key=func]) -> value +modulefinder.AddPackagePath(??) +modulefinder.EXTENDED_ARG +modulefinder.IMPORT_NAME +modulefinder.LOAD_CONST +modulefinder.Module(??) +modulefinder.ModuleFinder(??) +modulefinder.ReplacePackage(??) +modulefinder.STORE_GLOBAL +modulefinder.STORE_NAME +modulefinder.STORE_OPS(??) +modulefinder.dis(??) +modulefinder.importlib(??) +modulefinder.io(??) +modulefinder.marshal(??) +modulefinder.os(??) +modulefinder.packagePathMap(??) +modulefinder.replacePackageMap(??) +modulefinder.sys(??) +modulefinder.test(??) +multiprocessing.Array(??) +multiprocessing.AuthenticationError(??) +multiprocessing.Barrier(??) +multiprocessing.BoundedSemaphore(??) +multiprocessing.BufferTooShort(??) +multiprocessing.Condition(??) +multiprocessing.Event(??) +multiprocessing.JoinableQueue(??) +multiprocessing.Lock(??) +multiprocessing.Manager(??) +multiprocessing.Pipe(??) +multiprocessing.Pool(??) +multiprocessing.Process(??) +multiprocessing.ProcessError(??) +multiprocessing.Queue(??) +multiprocessing.RLock(??) +multiprocessing.RawArray(??) +multiprocessing.RawValue(??) +multiprocessing.SUBDEBUG +multiprocessing.SUBWARNING +multiprocessing.Semaphore(??) +multiprocessing.SimpleQueue(??) +multiprocessing.TimeoutError(??) +multiprocessing.Value(??) +multiprocessing.active_children(??) +multiprocessing.allow_connection_pickling(??) +multiprocessing.connection(??) +multiprocessing.connection.AuthenticationError(??) +multiprocessing.connection.BUFSIZE +multiprocessing.connection.BufferTooShort(??) +multiprocessing.connection.CHALLENGE +multiprocessing.connection.CONNECTION_TIMEOUT +multiprocessing.connection.Client(??) +multiprocessing.connection.Connection(??) +multiprocessing.connection.ConnectionWrapper(??) +multiprocessing.connection.FAILURE +multiprocessing.connection.Listener(??) +multiprocessing.connection.MESSAGE_LENGTH +multiprocessing.connection.Pipe(??) +multiprocessing.connection.SocketClient(??) +multiprocessing.connection.SocketListener(??) +multiprocessing.connection.WELCOME +multiprocessing.connection.XmlClient(??) +multiprocessing.connection.XmlListener(??) +multiprocessing.connection.address_type(??) +multiprocessing.connection.answer_challenge(??) +multiprocessing.connection.arbitrary_address(??) +multiprocessing.connection.default_family +multiprocessing.connection.deliver_challenge(??) +multiprocessing.connection.families(??) +multiprocessing.connection.io(??) +multiprocessing.connection.itertools(??) +multiprocessing.connection.os(??) +multiprocessing.connection.rebuild_connection(??) +multiprocessing.connection.reduce_connection(??) +multiprocessing.connection.reduction(??) +multiprocessing.connection.selectors(??) +multiprocessing.connection.socket(??) +multiprocessing.connection.struct(??) +multiprocessing.connection.sys(??) +multiprocessing.connection.tempfile(??) +multiprocessing.connection.time(??) +multiprocessing.connection.util(??) +multiprocessing.connection.wait(??) +multiprocessing.context(??) +multiprocessing.context.AuthenticationError(??) +multiprocessing.context.BaseContext(??) +multiprocessing.context.BufferTooShort(??) +multiprocessing.context.DefaultContext(??) +multiprocessing.context.ForkContext(??) +multiprocessing.context.ForkProcess(??) +multiprocessing.context.ForkServerContext(??) +multiprocessing.context.ForkServerProcess(??) +multiprocessing.context.Process(??) +multiprocessing.context.ProcessError(??) +multiprocessing.context.SpawnContext(??) +multiprocessing.context.SpawnProcess(??) +multiprocessing.context.TimeoutError(??) +multiprocessing.context.assert_spawning(??) +multiprocessing.context.get_spawning_popen(??) +multiprocessing.context.os(??) +multiprocessing.context.process(??) +multiprocessing.context.reduction(??) +multiprocessing.context.set_spawning_popen(??) +multiprocessing.context.sys(??) +multiprocessing.context.threading(??) +multiprocessing.cpu_count(??) +multiprocessing.current_process(??) +multiprocessing.dummy(??) +multiprocessing.dummy.Array(??) +multiprocessing.dummy.Barrier(??) +multiprocessing.dummy.BoundedSemaphore(??) +multiprocessing.dummy.Condition(??) +multiprocessing.dummy.DummyProcess(??) +multiprocessing.dummy.Event(??) +multiprocessing.dummy.JoinableQueue(??) +multiprocessing.dummy.Lock(??) +multiprocessing.dummy.Manager(??) +multiprocessing.dummy.Namespace(??) +multiprocessing.dummy.Pipe(??) +multiprocessing.dummy.Pool(??) +multiprocessing.dummy.Process(??) +multiprocessing.dummy.Queue(??) +multiprocessing.dummy.RLock(??) +multiprocessing.dummy.Semaphore(??) +multiprocessing.dummy.Value(??) +multiprocessing.dummy.active_children(??) +multiprocessing.dummy.array(??) +multiprocessing.dummy.connection(??) +multiprocessing.dummy.connection.Client(??) +multiprocessing.dummy.connection.Connection(??) +multiprocessing.dummy.connection.Listener(??) +multiprocessing.dummy.connection.Pipe(??) +multiprocessing.dummy.connection.Queue(??) +multiprocessing.dummy.connection.families(??) +multiprocessing.dummy.current_process(??) +multiprocessing.dummy.dict() -> new empty dictionary +multiprocessing.dummy.freeze_support(??) +multiprocessing.dummy.list(??) +multiprocessing.dummy.shutdown(??) +multiprocessing.dummy.sys(??) +multiprocessing.dummy.threading(??) +multiprocessing.dummy.weakref(??) +multiprocessing.forkserver(??) +multiprocessing.forkserver.ForkServer(??) +multiprocessing.forkserver.MAXFDS_TO_SEND +multiprocessing.forkserver.SIGNED_STRUCT(??) +multiprocessing.forkserver.connect_to_new_process(??) +multiprocessing.forkserver.connection(??) +multiprocessing.forkserver.ensure_running(??) +multiprocessing.forkserver.errno(??) +multiprocessing.forkserver.get_inherited_fds(??) +multiprocessing.forkserver.main(??) +multiprocessing.forkserver.os(??) +multiprocessing.forkserver.process(??) +multiprocessing.forkserver.read_signed(??) +multiprocessing.forkserver.reduction(??) +multiprocessing.forkserver.resource_tracker(??) +multiprocessing.forkserver.selectors(??) +multiprocessing.forkserver.set_forkserver_preload(??) +multiprocessing.forkserver.signal(??) +multiprocessing.forkserver.socket(??) +multiprocessing.forkserver.spawn(??) +multiprocessing.forkserver.struct(??) +multiprocessing.forkserver.sys(??) +multiprocessing.forkserver.threading(??) +multiprocessing.forkserver.util(??) +multiprocessing.forkserver.warnings(??) +multiprocessing.forkserver.write_signed(??) +multiprocessing.freeze_support(??) +multiprocessing.get_all_start_methods(??) +multiprocessing.get_context(??) +multiprocessing.get_logger(??) +multiprocessing.get_start_method(??) +multiprocessing.heap(??) +multiprocessing.heap.Arena(??) +multiprocessing.heap.BufferWrapper(??) +multiprocessing.heap.Heap(??) +multiprocessing.heap.assert_spawning(??) +multiprocessing.heap.bisect(??) +multiprocessing.heap.defaultdict(default_factory[, ...]) --> dict with default factory +multiprocessing.heap.mmap(??) +multiprocessing.heap.os(??) +multiprocessing.heap.rebuild_arena(??) +multiprocessing.heap.reduce_arena(??) +multiprocessing.heap.reduction(??) +multiprocessing.heap.sys(??) +multiprocessing.heap.tempfile(??) +multiprocessing.heap.threading(??) +multiprocessing.heap.util(??) +multiprocessing.log_to_stderr(??) +multiprocessing.managers(??) +multiprocessing.managers.AcquirerProxy(??) +multiprocessing.managers.Array(??) +multiprocessing.managers.ArrayProxy(??) +multiprocessing.managers.AutoProxy(??) +multiprocessing.managers.BarrierProxy(??) +multiprocessing.managers.BaseListProxy(??) +multiprocessing.managers.BaseManager(??) +multiprocessing.managers.BasePoolProxy(??) +multiprocessing.managers.BaseProxy(??) +multiprocessing.managers.ConditionProxy(??) +multiprocessing.managers.DictProxy(??) +multiprocessing.managers.EventProxy(??) +multiprocessing.managers.HAS_SHMEM(??) +multiprocessing.managers.IteratorProxy(??) +multiprocessing.managers.ListProxy(??) +multiprocessing.managers.MakeProxyType(??) +multiprocessing.managers.Namespace(??) +multiprocessing.managers.NamespaceProxy(??) +multiprocessing.managers.PoolProxy(??) +multiprocessing.managers.ProcessError(??) +multiprocessing.managers.ProcessLocalSet(??) +multiprocessing.managers.RebuildProxy(??) +multiprocessing.managers.RemoteError(??) +multiprocessing.managers.Server(??) +multiprocessing.managers.SharedMemoryManager(??) +multiprocessing.managers.SharedMemoryServer(??) +multiprocessing.managers.State(??) +multiprocessing.managers.SyncManager(??) +multiprocessing.managers.Token(??) +multiprocessing.managers.Value(??) +multiprocessing.managers.ValueProxy(??) +multiprocessing.managers.all_methods(??) +multiprocessing.managers.array(??) +multiprocessing.managers.connection(??) +multiprocessing.managers.convert_to_error(??) +multiprocessing.managers.dispatch(??) +multiprocessing.managers.format_exc(??) +multiprocessing.managers.get_context(??) +multiprocessing.managers.get_spawning_popen(??) +multiprocessing.managers.getpid(??) +multiprocessing.managers.listener_client(??) +multiprocessing.managers.os(??) +multiprocessing.managers.pool(??) +multiprocessing.managers.process(??) +multiprocessing.managers.public_methods(??) +multiprocessing.managers.queue(??) +multiprocessing.managers.rebuild_as_list(??) +multiprocessing.managers.reduce_array(??) +multiprocessing.managers.reduction(??) +multiprocessing.managers.shared_memory(??) +multiprocessing.managers.signal(??) +multiprocessing.managers.sys(??) +multiprocessing.managers.threading(??) +multiprocessing.managers.time(??) +multiprocessing.managers.types(??) +multiprocessing.managers.util(??) +multiprocessing.managers.view_type(??) +multiprocessing.managers.view_types(??) +multiprocessing.parent_process(??) +multiprocessing.pool(??) +multiprocessing.pool.ApplyResult(??) +multiprocessing.pool.AsyncResult(??) +multiprocessing.pool.CLOSE +multiprocessing.pool.ExceptionWithTraceback(??) +multiprocessing.pool.IMapIterator(??) +multiprocessing.pool.IMapUnorderedIterator(??) +multiprocessing.pool.INIT +multiprocessing.pool.MapResult(??) +multiprocessing.pool.MaybeEncodingError(??) +multiprocessing.pool.Pool(??) +multiprocessing.pool.RUN +multiprocessing.pool.RemoteTraceback(??) +multiprocessing.pool.TERMINATE +multiprocessing.pool.ThreadPool(??) +multiprocessing.pool.TimeoutError(??) +multiprocessing.pool.collections(??) +multiprocessing.pool.get_context(??) +multiprocessing.pool.itertools(??) +multiprocessing.pool.job_counter(??) +multiprocessing.pool.mapstar(??) +multiprocessing.pool.os(??) +multiprocessing.pool.queue(??) +multiprocessing.pool.rebuild_exc(??) +multiprocessing.pool.starmapstar(??) +multiprocessing.pool.threading(??) +multiprocessing.pool.time(??) +multiprocessing.pool.traceback(??) +multiprocessing.pool.types(??) +multiprocessing.pool.util(??) +multiprocessing.pool.wait(??) +multiprocessing.pool.warnings(??) +multiprocessing.pool.worker(??) +multiprocessing.popen_fork(??) +multiprocessing.popen_fork.Popen(??) +multiprocessing.popen_fork.os(??) +multiprocessing.popen_fork.signal(??) +multiprocessing.popen_fork.util(??) +multiprocessing.popen_forkserver(??) +multiprocessing.popen_forkserver.Popen(??) +multiprocessing.popen_forkserver.forkserver(??) +multiprocessing.popen_forkserver.io(??) +multiprocessing.popen_forkserver.os(??) +multiprocessing.popen_forkserver.popen_fork(??) +multiprocessing.popen_forkserver.reduction(??) +multiprocessing.popen_forkserver.set_spawning_popen(??) +multiprocessing.popen_forkserver.spawn(??) +multiprocessing.popen_forkserver.util(??) +multiprocessing.popen_spawn_posix(??) +multiprocessing.popen_spawn_posix.Popen(??) +multiprocessing.popen_spawn_posix.io(??) +multiprocessing.popen_spawn_posix.os(??) +multiprocessing.popen_spawn_posix.popen_fork(??) +multiprocessing.popen_spawn_posix.reduction(??) +multiprocessing.popen_spawn_posix.set_spawning_popen(??) +multiprocessing.popen_spawn_posix.spawn(??) +multiprocessing.popen_spawn_posix.util(??) +multiprocessing.process(??) +multiprocessing.process.AuthenticationString(??) +multiprocessing.process.BaseProcess(??) +multiprocessing.process.ORIGINAL_DIR +multiprocessing.process.WeakSet(??) +multiprocessing.process.active_children(??) +multiprocessing.process.current_process(??) +multiprocessing.process.itertools(??) +multiprocessing.process.name +multiprocessing.process.os(??) +multiprocessing.process.parent_process(??) +multiprocessing.process.signal(??) +multiprocessing.process.signum(??) +multiprocessing.process.sys(??) +multiprocessing.process.threading(??) +multiprocessing.queues(??) +multiprocessing.queues.Empty(??) +multiprocessing.queues.Finalize(??) +multiprocessing.queues.Full(??) +multiprocessing.queues.JoinableQueue(??) +multiprocessing.queues.Queue(??) +multiprocessing.queues.SimpleQueue(??) +multiprocessing.queues.collections(??) +multiprocessing.queues.connection(??) +multiprocessing.queues.context(??) +multiprocessing.queues.debug(??) +multiprocessing.queues.errno(??) +multiprocessing.queues.info(??) +multiprocessing.queues.is_exiting(??) +multiprocessing.queues.os(??) +multiprocessing.queues.register_after_fork(??) +multiprocessing.queues.sys(??) +multiprocessing.queues.threading(??) +multiprocessing.queues.time(??) +multiprocessing.queues.types(??) +multiprocessing.queues.weakref(??) +multiprocessing.reducer(??) +multiprocessing.reduction(??) +multiprocessing.reduction.ABCMeta(??) +multiprocessing.reduction.ACKNOWLEDGE(??) +multiprocessing.reduction.AbstractReducer(??) +multiprocessing.reduction.DupFd(??) +multiprocessing.reduction.ForkingPickler(??) +multiprocessing.reduction.HAVE_SEND_HANDLE(??) +multiprocessing.reduction.array(??) +multiprocessing.reduction.context(??) +multiprocessing.reduction.copyreg(??) +multiprocessing.reduction.dump(??) +multiprocessing.reduction.functools(??) +multiprocessing.reduction.io(??) +multiprocessing.reduction.os(??) +multiprocessing.reduction.pickle(??) +multiprocessing.reduction.recv_handle(??) +multiprocessing.reduction.recvfds(??) +multiprocessing.reduction.register(??) +multiprocessing.reduction.send_handle(??) +multiprocessing.reduction.sendfds(??) +multiprocessing.reduction.socket(??) +multiprocessing.reduction.sys(??) +multiprocessing.resource_sharer(??) +multiprocessing.resource_sharer.DupFd(??) +multiprocessing.resource_sharer.os(??) +multiprocessing.resource_sharer.process(??) +multiprocessing.resource_sharer.reduction(??) +multiprocessing.resource_sharer.signal(??) +multiprocessing.resource_sharer.socket(??) +multiprocessing.resource_sharer.stop(??) +multiprocessing.resource_sharer.sys(??) +multiprocessing.resource_sharer.threading(??) +multiprocessing.resource_sharer.util(??) +multiprocessing.resource_tracker(??) +multiprocessing.resource_tracker.ResourceTracker(??) +multiprocessing.resource_tracker.ensure_running(??) +multiprocessing.resource_tracker.getfd(??) +multiprocessing.resource_tracker.main(??) +multiprocessing.resource_tracker.os(??) +multiprocessing.resource_tracker.register(??) +multiprocessing.resource_tracker.signal(??) +multiprocessing.resource_tracker.spawn(??) +multiprocessing.resource_tracker.sys(??) +multiprocessing.resource_tracker.threading(??) +multiprocessing.resource_tracker.unregister(??) +multiprocessing.resource_tracker.util(??) +multiprocessing.resource_tracker.warnings(??) +multiprocessing.set_executable(??) +multiprocessing.set_forkserver_preload(??) +multiprocessing.set_start_method(??) +multiprocessing.shared_memory(??) +multiprocessing.shared_memory.ShareableList(??) +multiprocessing.shared_memory.SharedMemory(??) +multiprocessing.shared_memory.errno(??) +multiprocessing.shared_memory.mmap(??) +multiprocessing.shared_memory.os(??) +multiprocessing.shared_memory.partial(func, *args, **keywords) - new function with partial application +multiprocessing.shared_memory.secrets(??) +multiprocessing.shared_memory.struct(??) +multiprocessing.shared_memory.types(??) +multiprocessing.sharedctypes(??) +multiprocessing.sharedctypes.Array(??) +multiprocessing.sharedctypes.RawArray(??) +multiprocessing.sharedctypes.RawValue(??) +multiprocessing.sharedctypes.Synchronized(??) +multiprocessing.sharedctypes.SynchronizedArray(??) +multiprocessing.sharedctypes.SynchronizedBase(??) +multiprocessing.sharedctypes.SynchronizedString(??) +multiprocessing.sharedctypes.Value(??) +multiprocessing.sharedctypes.assert_spawning(??) +multiprocessing.sharedctypes.class_cache(??) +multiprocessing.sharedctypes.copy(??) +multiprocessing.sharedctypes.ctypes(??) +multiprocessing.sharedctypes.get_context(??) +multiprocessing.sharedctypes.heap(??) +multiprocessing.sharedctypes.make_property(??) +multiprocessing.sharedctypes.prop_cache(??) +multiprocessing.sharedctypes.rebuild_ctype(??) +multiprocessing.sharedctypes.reduce_ctype(??) +multiprocessing.sharedctypes.reduction(??) +multiprocessing.sharedctypes.synchronized(??) +multiprocessing.sharedctypes.template +multiprocessing.sharedctypes.typecode_to_type(??) +multiprocessing.sharedctypes.weakref(??) +multiprocessing.spawn(??) +multiprocessing.spawn.WINEXE(??) +multiprocessing.spawn.WINSERVICE(??) +multiprocessing.spawn.freeze_support(??) +multiprocessing.spawn.get_command_line(??) +multiprocessing.spawn.get_executable(??) +multiprocessing.spawn.get_preparation_data(??) +multiprocessing.spawn.get_start_method(??) +multiprocessing.spawn.import_main_path(??) +multiprocessing.spawn.is_forking(??) +multiprocessing.spawn.old_main_modules(??) +multiprocessing.spawn.os(??) +multiprocessing.spawn.prepare(??) +multiprocessing.spawn.process(??) +multiprocessing.spawn.reduction(??) +multiprocessing.spawn.runpy(??) +multiprocessing.spawn.set_executable(??) +multiprocessing.spawn.set_start_method(??) +multiprocessing.spawn.spawn_main(??) +multiprocessing.spawn.sys(??) +multiprocessing.spawn.types(??) +multiprocessing.spawn.util(??) +multiprocessing.synchronize(??) +multiprocessing.synchronize.Barrier(??) +multiprocessing.synchronize.BoundedSemaphore(??) +multiprocessing.synchronize.Condition(??) +multiprocessing.synchronize.Event(??) +multiprocessing.synchronize.Lock(??) +multiprocessing.synchronize.RECURSIVE_MUTEX +multiprocessing.synchronize.RLock(??) +multiprocessing.synchronize.SEMAPHORE +multiprocessing.synchronize.SEM_VALUE_MAX +multiprocessing.synchronize.SemLock(??) +multiprocessing.synchronize.Semaphore(??) +multiprocessing.synchronize.context(??) +multiprocessing.synchronize.process(??) +multiprocessing.synchronize.sem_unlink(??) +multiprocessing.synchronize.sys(??) +multiprocessing.synchronize.tempfile(??) +multiprocessing.synchronize.threading(??) +multiprocessing.synchronize.time(??) +multiprocessing.synchronize.util(??) +multiprocessing.sys(??) +multiprocessing.util(??) +multiprocessing.util.DEBUG +multiprocessing.util.DEFAULT_LOGGING_FORMAT +multiprocessing.util.Finalize(??) +multiprocessing.util.ForkAwareLocal(??) +multiprocessing.util.ForkAwareThreadLock(??) +multiprocessing.util.INFO +multiprocessing.util.LOGGER_NAME +multiprocessing.util.MAXFD +multiprocessing.util.NOTSET +multiprocessing.util.SUBDEBUG +multiprocessing.util.SUBWARNING +multiprocessing.util.abstract_sockets_supported(??) +multiprocessing.util.atexit(??) +multiprocessing.util.close_all_fds_except(??) +multiprocessing.util.close_fds(??) +multiprocessing.util.debug(??) +multiprocessing.util.get_logger(??) +multiprocessing.util.get_temp_dir(??) +multiprocessing.util.info(??) +multiprocessing.util.is_abstract_socket_namespace(??) +multiprocessing.util.is_exiting(??) +multiprocessing.util.itertools(??) +multiprocessing.util.log_to_stderr(??) +multiprocessing.util.os(??) +multiprocessing.util.process(??) +multiprocessing.util.register_after_fork(??) +multiprocessing.util.spawnv_passfds(??) +multiprocessing.util.sub_debug(??) +multiprocessing.util.sub_warning(??) +multiprocessing.util.sys(??) +multiprocessing.util.threading(??) +multiprocessing.util.weakref(??) +netrc.NetrcParseError(??) +netrc.netrc(??) +netrc.os(??) +netrc.shlex(??) +netrc.stat(??) +next(iterator[, default]) +nntplib.ArticleInfo(number, message_id, lines) +nntplib.GroupInfo(group, last, first, flag) +nntplib.NNTP(??) +nntplib.NNTPDataError(??) +nntplib.NNTPError(??) +nntplib.NNTPPermanentError(??) +nntplib.NNTPProtocolError(??) +nntplib.NNTPReplyError(??) +nntplib.NNTPTemporaryError(??) +nntplib.NNTP_PORT +nntplib.NNTP_SSL(??) +nntplib.NNTP_SSL_PORT +nntplib.collections(??) +nntplib.datetime(??) +nntplib.decode_header(??) +nntplib.re(??) +nntplib.socket(??) +nntplib.ssl(??) +nntplib.sys(??) +numbers.ABCMeta(??) +numbers.Complex(??) +numbers.Integral(??) +numbers.Number(??) +numbers.Rational(??) +numbers.Real(??) +numbers.abstractmethod(??) +object(??) +oct(??) +open(??) +operator.abs(??) +operator.add(??) +operator.and_(??) +operator.attrgetter(attr, ...) --> attrgetter object +operator.concat(??) +operator.contains(??) +operator.countOf(??) +operator.delitem(??) +operator.eq(??) +operator.floordiv(??) +operator.ge(??) +operator.getitem(??) +operator.gt(??) +operator.iadd(??) +operator.iand(??) +operator.iconcat(??) +operator.ifloordiv(??) +operator.ilshift(??) +operator.imatmul(??) +operator.imod(??) +operator.imul(??) +operator.index(??) +operator.indexOf(??) +operator.inv(??) +operator.invert(??) +operator.ior(??) +operator.ipow(??) +operator.irshift(??) +operator.is_(??) +operator.is_not(??) +operator.isub(??) +operator.itemgetter(item, ...) --> itemgetter object +operator.itruediv(??) +operator.ixor(??) +operator.le(??) +operator.length_hint(??) +operator.lshift(??) +operator.lt(??) +operator.matmul(??) +operator.methodcaller(name, ...) --> methodcaller object +operator.mod(??) +operator.mul(??) +operator.ne(??) +operator.neg(??) +operator.not_(??) +operator.or_(??) +operator.pos(??) +operator.pow(??) +operator.rshift(??) +operator.setitem(??) +operator.sub(??) +operator.truediv(??) +operator.truth(??) +operator.xor(??) +optparse.AmbiguousOptionError(??) +optparse.BadOptionError(??) +optparse.HelpFormatter(??) +optparse.IndentedHelpFormatter(??) +optparse.NO_DEFAULT(??) +optparse.OptParseError(??) +optparse.Option(??) +optparse.OptionConflictError(??) +optparse.OptionContainer(??) +optparse.OptionError(??) +optparse.OptionGroup(??) +optparse.OptionParser(??) +optparse.OptionValueError(??) +optparse.SUPPRESS_HELP +optparse.SUPPRESS_USAGE +optparse.TitledHelpFormatter(??) +optparse.Values(??) +optparse.check_builtin(??) +optparse.check_choice(??) +optparse.gettext(??) +optparse.make_option(??) +optparse.ngettext(??) +optparse.os(??) +optparse.sys(??) +optparse.textwrap(??) +ord(??) +os.CLD_CONTINUED +os.CLD_DUMPED +os.CLD_EXITED +os.CLD_KILLED +os.CLD_STOPPED +os.CLD_TRAPPED +os.DirEntry(??) +os.EX_CANTCREAT +os.EX_CONFIG +os.EX_DATAERR +os.EX_IOERR +os.EX_NOHOST +os.EX_NOINPUT +os.EX_NOPERM +os.EX_NOUSER +os.EX_OK +os.EX_OSERR +os.EX_OSFILE +os.EX_PROTOCOL +os.EX_SOFTWARE +os.EX_TEMPFAIL +os.EX_UNAVAILABLE +os.EX_USAGE +os.F_LOCK +os.F_OK +os.F_TEST +os.F_TLOCK +os.F_ULOCK +os.GenericAlias(??) +os.Mapping(??) +os.MutableMapping(??) +os.NGROUPS_MAX +os.O_ACCMODE +os.O_APPEND +os.O_ASYNC +os.O_CLOEXEC +os.O_CREAT +os.O_DIRECTORY +os.O_DSYNC +os.O_EXCL +os.O_EXLOCK +os.O_NDELAY +os.O_NOCTTY +os.O_NOFOLLOW +os.O_NONBLOCK +os.O_RDONLY +os.O_RDWR +os.O_SHLOCK +os.O_SYNC +os.O_TRUNC +os.O_WRONLY +os.POSIX_SPAWN_CLOSE +os.POSIX_SPAWN_DUP2 +os.POSIX_SPAWN_OPEN +os.PRIO_PGRP +os.PRIO_PROCESS +os.PRIO_USER +os.P_ALL +os.P_NOWAIT +os.P_NOWAITO +os.P_PGID +os.P_PID +os.P_WAIT +os.PathLike(??) +os.RTLD_GLOBAL +os.RTLD_LAZY +os.RTLD_LOCAL +os.RTLD_NODELETE +os.RTLD_NOLOAD +os.RTLD_NOW +os.R_OK +os.SCHED_FIFO +os.SCHED_OTHER +os.SCHED_RR +os.SEEK_CUR +os.SEEK_END +os.SEEK_SET +os.ST_NOSUID +os.ST_RDONLY +os.TMP_MAX +os.WCONTINUED +os.WCOREDUMP(??) +os.WEXITED +os.WEXITSTATUS(??) +os.WIFCONTINUED(??) +os.WIFEXITED(??) +os.WIFSIGNALED(??) +os.WIFSTOPPED(??) +os.WNOHANG +os.WNOWAIT +os.WSTOPPED +os.WSTOPSIG(??) +os.WTERMSIG(??) +os.WUNTRACED +os.W_OK +os.X_OK +os.abc(??) +os.abort(??) +os.access(??) +os.altsep(??) +os.chdir(??) +os.chflags(??) +os.chmod(??) +os.chown(??) +os.chroot(??) +os.close(??) +os.closerange(??) +os.confstr(??) +os.confstr_names(??) +os.cpu_count(??) +os.ctermid(??) +os.curdir +os.defpath +os.device_encoding(??) +os.devnull +os.dup(??) +os.dup2(??) +os.environ(??) +os.environb(??) +os.error(??) +os.execl(file, *args) +os.execle(file, *args, env) +os.execlp(file, *args) +os.execlpe(file, *args, env) +os.execv(??) +os.execve(??) +os.execvp(file, args) +os.execvpe(file, args, env) +os.extsep +os.fchdir(??) +os.fchmod(??) +os.fchown(??) +os.fdopen(??) +os.fork(??) +os.forkpty(??) +os.fpathconf(??) +os.fsdecode(??) +os.fsencode(??) +os.fspath(??) +os.fstat(??) +os.fstatvfs(??) +os.fsync(??) +os.ftruncate(??) +os.get_blocking(??) +os.get_exec_path(??) +os.get_inheritable(??) +os.get_terminal_size(??) +os.getcwd(??) +os.getcwdb(??) +os.getegid(??) +os.getenv(??) +os.getenvb(??) +os.geteuid(??) +os.getgid(??) +os.getgrouplist(??) +os.getgroups(??) +os.getloadavg(??) +os.getlogin(??) +os.getpgid(??) +os.getpgrp(??) +os.getpid(??) +os.getppid(??) +os.getpriority(??) +os.getsid(??) +os.getuid(??) +os.initgroups(??) +os.isatty(??) +os.kill(??) +os.killpg(??) +os.lchflags(??) +os.lchmod(??) +os.lchown(??) +os.linesep +os.link(??) +os.listdir(??) +os.lockf(??) +os.lseek(??) +os.lstat(??) +os.major(??) +os.makedev(??) +os.makedirs(name [, mode=0o777][, exist_ok=False]) +os.minor(??) +os.mkdir(??) +os.mkfifo(??) +os.mknod(??) +os.name +os.nice(??) +os.open(??) +os.openpty(??) +os.pardir +os.path(??) +os.pathconf(??) +os.pathconf_names(??) +os.pathsep +os.pipe(??) +os.popen(??) +os.posix_spawn(??) +os.posix_spawnp(??) +os.pread(??) +os.putenv(??) +os.pwrite(??) +os.read(??) +os.readlink(??) +os.readv(??) +os.register_at_fork(??) +os.remove(??) +os.removedirs(name) +os.rename(??) +os.renames(old, new) +os.replace(??) +os.rmdir(??) +os.scandir(??) +os.sched_get_priority_max(??) +os.sched_get_priority_min(??) +os.sched_yield(??) +os.sendfile(??) +os.sep +os.set_blocking(??) +os.set_inheritable(??) +os.setegid(??) +os.seteuid(??) +os.setgid(??) +os.setgroups(??) +os.setpgid(??) +os.setpgrp(??) +os.setpriority(??) +os.setregid(??) +os.setreuid(??) +os.setsid(??) +os.setuid(??) +os.spawnl(mode, file, *args) -> integer +os.spawnle(mode, file, *args, env) -> integer +os.spawnlp(mode, file, *args) -> integer +os.spawnlpe(mode, file, *args, env) -> integer +os.spawnv(mode, file, args) -> integer +os.spawnve(mode, file, args, env) -> integer +os.spawnvp(mode, file, args) -> integer +os.spawnvpe(mode, file, args, env) -> integer +os.st(??) +os.stat(??) +os.stat_result(??) +os.statvfs(??) +os.statvfs_result(??) +os.strerror(??) +os.supports_bytes_environ(??) +os.supports_dir_fd(??) +os.supports_effective_ids(??) +os.supports_fd(??) +os.supports_follow_symlinks(??) +os.symlink(??) +os.sync(??) +os.sys(??) +os.sysconf(??) +os.sysconf_names(??) +os.system(??) +os.tcgetpgrp(??) +os.tcsetpgrp(??) +os.terminal_size(??) +os.times(??) +os.times_result(??) +os.truncate(??) +os.ttyname(??) +os.umask(??) +os.uname(??) +os.uname_result(??) +os.unlink(??) +os.unsetenv(??) +os.urandom(??) +os.utime(??) +os.wait(??) +os.wait3(??) +os.wait4(??) +os.waitpid(??) +os.waitstatus_to_exitcode(??) +os.walk(??) +os.write(??) +os.writev(??) +pathlib.EBADF +pathlib.EINVAL +pathlib.ELOOP +pathlib.ENOENT +pathlib.ENOTDIR +pathlib.Path(??) +pathlib.PosixPath(??) +pathlib.PurePath(??) +pathlib.PurePosixPath(??) +pathlib.PureWindowsPath(??) +pathlib.S_ISBLK(mode) -> bool +pathlib.S_ISCHR(mode) -> bool +pathlib.S_ISDIR(mode) -> bool +pathlib.S_ISFIFO(mode) -> bool +pathlib.S_ISLNK(mode) -> bool +pathlib.S_ISREG(mode) -> bool +pathlib.S_ISSOCK(mode) -> bool +pathlib.Sequence(??) +pathlib.WindowsPath(??) +pathlib.attrgetter(attr, ...) --> attrgetter object +pathlib.fnmatch(??) +pathlib.functools(??) +pathlib.io(??) +pathlib.nt(??) +pathlib.ntpath(??) +pathlib.os(??) +pathlib.posixpath(??) +pathlib.re(??) +pathlib.supports_symlinks(??) +pathlib.sys(??) +pathlib.urlquote_from_bytes(??) +pdb.Pdb(??) +pdb.Restart(??) +pdb.TESTCMD +pdb.bdb(??) +pdb.cmd(??) +pdb.code(??) +pdb.dis(??) +pdb.find_function(??) +pdb.getsourcelines(??) +pdb.glob(??) +pdb.help(??) +pdb.inspect(??) +pdb.io(??) +pdb.lasti2lineno(??) +pdb.line_prefix +pdb.linecache(??) +pdb.main(??) +pdb.os(??) +pdb.pm(??) +pdb.post_mortem(??) +pdb.pprint(??) +pdb.re(??) +pdb.run(??) +pdb.runcall(??) +pdb.runctx(??) +pdb.runeval(??) +pdb.set_trace(??) +pdb.signal(??) +pdb.sys(??) +pdb.test(??) +pdb.tokenize(??) +pdb.traceback(??) +pickle.ADDITEMS +pickle.APPEND +pickle.APPENDS +pickle.BINBYTES +pickle.BINBYTES8 +pickle.BINFLOAT +pickle.BINGET +pickle.BININT +pickle.BININT1 +pickle.BININT2 +pickle.BINPERSID +pickle.BINPUT +pickle.BINSTRING +pickle.BINUNICODE +pickle.BINUNICODE8 +pickle.BUILD +pickle.BYTEARRAY8 +pickle.DEFAULT_PROTOCOL +pickle.DICT +pickle.DUP +pickle.EMPTY_DICT +pickle.EMPTY_LIST +pickle.EMPTY_SET +pickle.EMPTY_TUPLE +pickle.EXT1 +pickle.EXT2 +pickle.EXT4 +pickle.FALSE +pickle.FLOAT +pickle.FRAME +pickle.FROZENSET +pickle.FunctionType(??) +pickle.GET +pickle.GLOBAL +pickle.HIGHEST_PROTOCOL +pickle.INST +pickle.INT +pickle.LIST +pickle.LONG +pickle.LONG1 +pickle.LONG4 +pickle.LONG_BINGET +pickle.LONG_BINPUT +pickle.MARK +pickle.MEMOIZE +pickle.NEWFALSE +pickle.NEWOBJ +pickle.NEWOBJ_EX +pickle.NEWTRUE +pickle.NEXT_BUFFER +pickle.NONE +pickle.OBJ +pickle.PERSID +pickle.POP +pickle.POP_MARK +pickle.PROTO +pickle.PUT +pickle.PickleBuffer(??) +pickle.PickleError(??) +pickle.Pickler(??) +pickle.PicklingError(??) +pickle.PyStringMap(??) +pickle.READONLY_BUFFER +pickle.REDUCE +pickle.SETITEM +pickle.SETITEMS +pickle.SHORT_BINBYTES +pickle.SHORT_BINSTRING +pickle.SHORT_BINUNICODE +pickle.STACK_GLOBAL +pickle.STOP +pickle.STRING +pickle.TRUE +pickle.TUPLE +pickle.TUPLE1 +pickle.TUPLE2 +pickle.TUPLE3 +pickle.UNICODE +pickle.Unpickler(??) +pickle.UnpicklingError(??) +pickle.bytes_types(??) +pickle.codecs(??) +pickle.compatible_formats(??) +pickle.decode_long(??) +pickle.dispatch_table(??) +pickle.dump(??) +pickle.dumps(??) +pickle.encode_long(??) +pickle.format_version +pickle.io(??) +pickle.islice(iterable, stop) --> islice object +pickle.load(??) +pickle.loads(??) +pickle.maxsize +pickle.pack(format, v1, v2, ...) -> bytes +pickle.partial(func, *args, **keywords) - new function with partial application +pickle.re(??) +pickle.sys(??) +pickle.unpack(??) +pickle.whichmodule(??) +pickletools.ArgumentDescriptor(??) +pickletools.OpcodeInfo(??) +pickletools.StackObject(??) +pickletools.TAKEN_FROM_ARGUMENT1 +pickletools.TAKEN_FROM_ARGUMENT4 +pickletools.TAKEN_FROM_ARGUMENT4U +pickletools.TAKEN_FROM_ARGUMENT8U +pickletools.UP_TO_NEWLINE +pickletools.anyobject(??) +pickletools.bytearray8(??) +pickletools.bytes1(??) +pickletools.bytes4(??) +pickletools.bytes8(??) +pickletools.bytes_types(??) +pickletools.code2op(??) +pickletools.codecs(??) +pickletools.decimalnl_long(??) +pickletools.decimalnl_short(??) +pickletools.decode_long(??) +pickletools.dis(??) +pickletools.float8(??) +pickletools.floatnl(??) +pickletools.genops(??) +pickletools.int4(??) +pickletools.io(??) +pickletools.long1(??) +pickletools.long4(??) +pickletools.markobject(??) +pickletools.opcodes(??) +pickletools.optimize(??) +pickletools.pickle(??) +pickletools.pybool(??) +pickletools.pybuffer(??) +pickletools.pybytearray(??) +pickletools.pybytes(??) +pickletools.pybytes_or_str(??) +pickletools.pydict(??) +pickletools.pyfloat(??) +pickletools.pyfrozenset(??) +pickletools.pyint(??) +pickletools.pyinteger_or_bool(??) +pickletools.pylist(??) +pickletools.pylong(??) +pickletools.pynone(??) +pickletools.pyset(??) +pickletools.pystring(??) +pickletools.pytuple(??) +pickletools.pyunicode(??) +pickletools.re(??) +pickletools.read_bytearray8(??) +pickletools.read_bytes1(??) +pickletools.read_bytes4(??) +pickletools.read_bytes8(??) +pickletools.read_decimalnl_long(??) +pickletools.read_decimalnl_short(??) +pickletools.read_float8(??) +pickletools.read_floatnl(??) +pickletools.read_int4(??) +pickletools.read_long1(??) +pickletools.read_long4(??) +pickletools.read_string1(??) +pickletools.read_string4(??) +pickletools.read_stringnl(??) +pickletools.read_stringnl_noescape(??) +pickletools.read_stringnl_noescape_pair(??) +pickletools.read_uint1(??) +pickletools.read_uint2(??) +pickletools.read_uint4(??) +pickletools.read_uint8(??) +pickletools.read_unicodestring1(??) +pickletools.read_unicodestring4(??) +pickletools.read_unicodestring8(??) +pickletools.read_unicodestringnl(??) +pickletools.stackslice(??) +pickletools.string1(??) +pickletools.string4(??) +pickletools.stringnl(??) +pickletools.stringnl_noescape(??) +pickletools.stringnl_noescape_pair(??) +pickletools.sys(??) +pickletools.uint1(??) +pickletools.uint2(??) +pickletools.uint4(??) +pickletools.uint8(??) +pickletools.unicodestring1(??) +pickletools.unicodestring4(??) +pickletools.unicodestring8(??) +pickletools.unicodestringnl(??) +pipes.FILEIN_FILEOUT +pipes.FILEIN_STDOUT +pipes.SINK +pipes.SOURCE +pipes.STDIN_FILEOUT +pipes.STDIN_STDOUT +pipes.Template(??) +pipes.makepipeline(??) +pipes.os(??) +pipes.quote(??) +pipes.re(??) +pipes.stepkinds(??) +pipes.tempfile(??) +pkgutil.ImpImporter(??) +pkgutil.ImpLoader(??) +pkgutil.ModuleInfo(??) +pkgutil.ModuleType(??) +pkgutil.extend_path(??) +pkgutil.find_loader(??) +pkgutil.get_data(??) +pkgutil.get_importer(??) +pkgutil.get_loader(??) +pkgutil.importlib(??) +pkgutil.iter_importer_modules(??) +pkgutil.iter_importers(??) +pkgutil.iter_modules(??) +pkgutil.iter_zipimport_modules(??) +pkgutil.namedtuple(??) +pkgutil.os(??) +pkgutil.re(??) +pkgutil.read_code(??) +pkgutil.resolve_name(??) +pkgutil.simplegeneric(??) +pkgutil.sys(??) +pkgutil.walk_packages(??) +pkgutil.warnings(??) +pkgutil.zipimport(??) +pkgutil.zipimporter(archivepath) -> zipimporter object +platform.architecture(??) +platform.collections(??) +platform.functools(??) +platform.itertools(??) +platform.java_ver(??) +platform.libc_ver(??) +platform.mac_ver(??) +platform.machine(??) +platform.node(??) +platform.os(??) +platform.platform(??) +platform.processor(??) +platform.python_branch(??) +platform.python_build(??) +platform.python_compiler(??) +platform.python_implementation(??) +platform.python_revision(??) +platform.python_version(??) +platform.python_version_tuple(??) +platform.re(??) +platform.release(??) +platform.subprocess(??) +platform.sys(??) +platform.system(??) +platform.system_alias(??) +platform.uname(??) +platform.uname_result(??) +platform.version(??) +platform.win32_edition(??) +platform.win32_is_iot(??) +platform.win32_ver(??) +plistlib.BytesIO(??) +plistlib.FMT_BINARY(??) +plistlib.FMT_XML(??) +plistlib.InvalidFileException(??) +plistlib.PLISTHEADER +plistlib.ParserCreate(??) +plistlib.PlistFormat(??) +plistlib.UID(??) +plistlib.binascii(??) +plistlib.codecs(??) +plistlib.datetime(??) +plistlib.dump(??) +plistlib.dumps(??) +plistlib.enum(??) +plistlib.itertools(??) +plistlib.load(??) +plistlib.loads(??) +plistlib.os(??) +plistlib.re(??) +plistlib.struct(??) +poplib.CR +poplib.CRLF +poplib.HAVE_SSL(??) +poplib.LF +poplib.POP3(??) +poplib.POP3_PORT +poplib.POP3_SSL(??) +poplib.POP3_SSL_PORT +poplib.errno(??) +poplib.error_proto(??) +poplib.re(??) +poplib.socket(??) +poplib.ssl(??) +poplib.sys(??) +posix.CLD_CONTINUED +posix.CLD_DUMPED +posix.CLD_EXITED +posix.CLD_KILLED +posix.CLD_STOPPED +posix.CLD_TRAPPED +posix.DirEntry(??) +posix.EX_CANTCREAT +posix.EX_CONFIG +posix.EX_DATAERR +posix.EX_IOERR +posix.EX_NOHOST +posix.EX_NOINPUT +posix.EX_NOPERM +posix.EX_NOUSER +posix.EX_OK +posix.EX_OSERR +posix.EX_OSFILE +posix.EX_PROTOCOL +posix.EX_SOFTWARE +posix.EX_TEMPFAIL +posix.EX_UNAVAILABLE +posix.EX_USAGE +posix.F_LOCK +posix.F_OK +posix.F_TEST +posix.F_TLOCK +posix.F_ULOCK +posix.NGROUPS_MAX +posix.O_ACCMODE +posix.O_APPEND +posix.O_ASYNC +posix.O_CLOEXEC +posix.O_CREAT +posix.O_DIRECTORY +posix.O_DSYNC +posix.O_EXCL +posix.O_EXLOCK +posix.O_NDELAY +posix.O_NOCTTY +posix.O_NOFOLLOW +posix.O_NONBLOCK +posix.O_RDONLY +posix.O_RDWR +posix.O_SHLOCK +posix.O_SYNC +posix.O_TRUNC +posix.O_WRONLY +posix.POSIX_SPAWN_CLOSE +posix.POSIX_SPAWN_DUP2 +posix.POSIX_SPAWN_OPEN +posix.PRIO_PGRP +posix.PRIO_PROCESS +posix.PRIO_USER +posix.P_ALL +posix.P_PGID +posix.P_PID +posix.RTLD_GLOBAL +posix.RTLD_LAZY +posix.RTLD_LOCAL +posix.RTLD_NODELETE +posix.RTLD_NOLOAD +posix.RTLD_NOW +posix.R_OK +posix.SCHED_FIFO +posix.SCHED_OTHER +posix.SCHED_RR +posix.ST_NOSUID +posix.ST_RDONLY +posix.TMP_MAX +posix.WCONTINUED +posix.WCOREDUMP(??) +posix.WEXITED +posix.WEXITSTATUS(??) +posix.WIFCONTINUED(??) +posix.WIFEXITED(??) +posix.WIFSIGNALED(??) +posix.WIFSTOPPED(??) +posix.WNOHANG +posix.WNOWAIT +posix.WSTOPPED +posix.WSTOPSIG(??) +posix.WTERMSIG(??) +posix.WUNTRACED +posix.W_OK +posix.X_OK +posix.abort(??) +posix.access(??) +posix.chdir(??) +posix.chflags(??) +posix.chmod(??) +posix.chown(??) +posix.chroot(??) +posix.close(??) +posix.closerange(??) +posix.confstr(??) +posix.confstr_names(??) +posix.cpu_count(??) +posix.ctermid(??) +posix.device_encoding(??) +posix.dup(??) +posix.dup2(??) +posix.environ(??) +posix.error(??) +posix.execv(??) +posix.execve(??) +posix.fchdir(??) +posix.fchmod(??) +posix.fchown(??) +posix.fork(??) +posix.forkpty(??) +posix.fpathconf(??) +posix.fspath(??) +posix.fstat(??) +posix.fstatvfs(??) +posix.fsync(??) +posix.ftruncate(??) +posix.get_blocking(??) +posix.get_inheritable(??) +posix.get_terminal_size(??) +posix.getcwd(??) +posix.getcwdb(??) +posix.getegid(??) +posix.geteuid(??) +posix.getgid(??) +posix.getgrouplist(??) +posix.getgroups(??) +posix.getloadavg(??) +posix.getlogin(??) +posix.getpgid(??) +posix.getpgrp(??) +posix.getpid(??) +posix.getppid(??) +posix.getpriority(??) +posix.getsid(??) +posix.getuid(??) +posix.initgroups(??) +posix.isatty(??) +posix.kill(??) +posix.killpg(??) +posix.lchflags(??) +posix.lchmod(??) +posix.lchown(??) +posix.link(??) +posix.listdir(??) +posix.lockf(??) +posix.lseek(??) +posix.lstat(??) +posix.major(??) +posix.makedev(??) +posix.minor(??) +posix.mkdir(??) +posix.mkfifo(??) +posix.mknod(??) +posix.nice(??) +posix.open(??) +posix.openpty(??) +posix.pathconf(??) +posix.pathconf_names(??) +posix.pipe(??) +posix.posix_spawn(??) +posix.posix_spawnp(??) +posix.pread(??) +posix.putenv(??) +posix.pwrite(??) +posix.read(??) +posix.readlink(??) +posix.readv(??) +posix.register_at_fork(??) +posix.remove(??) +posix.rename(??) +posix.replace(??) +posix.rmdir(??) +posix.scandir(??) +posix.sched_get_priority_max(??) +posix.sched_get_priority_min(??) +posix.sched_yield(??) +posix.sendfile(??) +posix.set_blocking(??) +posix.set_inheritable(??) +posix.setegid(??) +posix.seteuid(??) +posix.setgid(??) +posix.setgroups(??) +posix.setpgid(??) +posix.setpgrp(??) +posix.setpriority(??) +posix.setregid(??) +posix.setreuid(??) +posix.setsid(??) +posix.setuid(??) +posix.stat(??) +posix.stat_result(??) +posix.statvfs(??) +posix.statvfs_result(??) +posix.strerror(??) +posix.symlink(??) +posix.sync(??) +posix.sysconf(??) +posix.sysconf_names(??) +posix.system(??) +posix.tcgetpgrp(??) +posix.tcsetpgrp(??) +posix.terminal_size(??) +posix.times(??) +posix.times_result(??) +posix.truncate(??) +posix.ttyname(??) +posix.umask(??) +posix.uname(??) +posix.uname_result(??) +posix.unlink(??) +posix.unsetenv(??) +posix.urandom(??) +posix.utime(??) +posix.wait(??) +posix.wait3(??) +posix.wait4(??) +posix.waitpid(??) +posix.waitstatus_to_exitcode(??) +posix.write(??) +posix.writev(??) +pow(??) +pprint.PrettyPrinter(??) +pprint.isreadable(??) +pprint.isrecursive(??) +pprint.pformat(??) +pprint.pp(??) +pprint.pprint(??) +pprint.re(??) +pprint.saferepr(??) +print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) +profile.Profile(??) +profile.main(??) +profile.marshal(??) +profile.run(??) +profile.runctx(??) +profile.sys(??) +profile.time(??) +property(??) +pstats.Dict(??) +pstats.Enum(??) +pstats.FunctionProfile(ncalls: int, tottime: float, percall_tottime: float, cumtime: float, percall_cumtime: float, file_name: str, line_number: int) +pstats.SortKey(??) +pstats.Stats(??) +pstats.StatsProfile(??) +pstats.TupleComp(??) +pstats.add_callers(??) +pstats.add_func_stats(??) +pstats.cmp_to_key(??) +pstats.count_calls(??) +pstats.dataclass(??) +pstats.f8(??) +pstats.func_get_function_name(??) +pstats.func_std_string(??) +pstats.func_strip_path(??) +pstats.marshal(??) +pstats.os(??) +pstats.re(??) +pstats.sys(??) +pstats.time(??) +pty.CHILD +pty.STDERR_FILENO +pty.STDIN_FILENO +pty.STDOUT_FILENO +pty.fork() -> (pid, master_fd) +pty.master_open() -> (master_fd, slave_name) +pty.openpty() -> (master_fd, slave_fd) +pty.os(??) +pty.select(??) +pty.slave_open(tty_name) -> slave_fd +pty.spawn(??) +pty.sys(??) +pty.tty(??) +pwd.getpwall(??) +pwd.getpwnam(??) +pwd.getpwuid(??) +pwd.struct_passwd(??) +py_compile.PyCompileError(??) +py_compile.PycInvalidationMode(??) +py_compile.compile(??) +py_compile.enum(??) +py_compile.importlib(??) +py_compile.main(??) +py_compile.os(??) +py_compile.sys(??) +py_compile.traceback(??) +pyclbr.Class(??) +pyclbr.DEDENT +pyclbr.Function(??) +pyclbr.NAME +pyclbr.OP +pyclbr.importlib(??) +pyclbr.io(??) +pyclbr.readmodule(??) +pyclbr.readmodule_ex(??) +pyclbr.sys(??) +pyclbr.tokenize(??) +pydoc.Doc(??) +pydoc.ErrorDuringImport(??) +pydoc.HTMLDoc(??) +pydoc.HTMLRepr(??) +pydoc.Helper(??) +pydoc.ModuleScanner(??) +pydoc.Repr(??) +pydoc.TextDoc(??) +pydoc.TextRepr(??) +pydoc.allmethods(??) +pydoc.apropos(??) +pydoc.browse(??) +pydoc.builtins(??) +pydoc.classify_class_attrs(??) +pydoc.classname(??) +pydoc.cli(??) +pydoc.cram(??) +pydoc.deque([iterable[, maxlen]]) --> deque object +pydoc.describe(??) +pydoc.doc(??) +pydoc.format_exception_only(??) +pydoc.getdoc(??) +pydoc.getpager(??) +pydoc.help(??) +pydoc.html(??) +pydoc.importfile(??) +pydoc.importlib(??) +pydoc.inspect(??) +pydoc.io(??) +pydoc.isdata(??) +pydoc.ispackage(??) +pydoc.ispath(??) +pydoc.locate(??) +pydoc.os(??) +pydoc.pager(??) +pydoc.pathdirs(??) +pydoc.pipepager(??) +pydoc.pkgutil(??) +pydoc.plain(??) +pydoc.plainpager(??) +pydoc.plaintext(??) +pydoc.platform(??) +pydoc.re(??) +pydoc.render_doc(??) +pydoc.replace(??) +pydoc.resolve(??) +pydoc.safeimport(??) +pydoc.sort_attributes(??) +pydoc.source_synopsis(??) +pydoc.splitdoc(??) +pydoc.stripid(??) +pydoc.synopsis(??) +pydoc.sys(??) +pydoc.sysconfig(??) +pydoc.tempfilepager(??) +pydoc.text(??) +pydoc.time(??) +pydoc.tokenize(??) +pydoc.ttypager(??) +pydoc.urllib(??) +pydoc.visiblename(??) +pydoc.warnings(??) +pydoc.writedoc(??) +pydoc.writedocs(??) +pydoc_data.topics(??) +pydoc_data.topics.topics(??) +queue.Empty(??) +queue.Full(??) +queue.LifoQueue(??) +queue.PriorityQueue(??) +queue.Queue(??) +queue.SimpleQueue(??) +queue.deque([iterable[, maxlen]]) --> deque object +queue.heappop(??) +queue.heappush(??) +queue.threading(??) +queue.time(??) +queue.types(??) +quit(??) +quopri.EMPTYSTRING +quopri.ESCAPE +quopri.HEX +quopri.MAXLINESIZE +quopri.a2b_qp(??) +quopri.b2a_qp(??) +quopri.decode(??) +quopri.decodestring(??) +quopri.encode(??) +quopri.encodestring(??) +quopri.ishex(??) +quopri.main(??) +quopri.needsquoting(??) +quopri.quote(??) +quopri.unhex(??) +random.BPF +random.LOG4 +random.NV_MAGICCONST +random.RECIP_BPF +random.Random(??) +random.SG_MAGICCONST +random.SystemRandom(??) +random.TWOPI +random.betavariate(??) +random.choice(??) +random.choices(??) +random.expovariate(??) +random.gammavariate(??) +random.gauss(??) +random.getrandbits(k) -> x. Generates an int with k random bits. +random.getstate(??) +random.lognormvariate(??) +random.normalvariate(??) +random.paretovariate(??) +random.randbytes(??) +random.randint(??) +random.random() -> x in the interval [0, 1). +random.randrange(??) +random.sample(??) +random.seed(??) +random.setstate(??) +random.shuffle(??) +random.triangular(??) +random.uniform(??) +random.vonmisesvariate(??) +random.weibullvariate(??) +range(stop) -> range object +re.A(??) +re.ASCII(??) +re.DEBUG(??) +re.DOTALL(??) +re.I(??) +re.IGNORECASE(??) +re.L(??) +re.LOCALE(??) +re.M(??) +re.MULTILINE(??) +re.Match(??) +re.Pattern(??) +re.RegexFlag(??) +re.S(??) +re.Scanner(??) +re.T(??) +re.TEMPLATE(??) +re.U(??) +re.UNICODE(??) +re.VERBOSE(??) +re.X(??) +re.compile(??) +re.copyreg(??) +re.enum(??) +re.error(??) +re.escape(??) +re.findall(??) +re.finditer(??) +re.fullmatch(??) +re.functools(??) +re.match(??) +re.purge(??) +re.search(??) +re.split(??) +re.sre_compile(??) +re.sre_parse(??) +re.sub(??) +re.subn(??) +re.template(??) +repr(??) +reprlib.Repr(??) +reprlib.aRepr(??) +reprlib.builtins(??) +reprlib.get_ident() -> integer +reprlib.islice(iterable, stop) --> islice object +reprlib.recursive_repr(??) +reprlib.repr(??) +reversed(??) +rlcompleter.Completer(??) +rlcompleter.atexit(??) +rlcompleter.builtins(??) +rlcompleter.get_class_members(??) +rlcompleter.readline(??) +round(??) +runpy.get_importer(??) +runpy.importlib(??) +runpy.io(??) +runpy.os(??) +runpy.read_code(??) +runpy.run_module(??) +runpy.run_path(??) +runpy.sys(??) +runpy.types(??) +sched.Event(??) +sched.heapq(??) +sched.namedtuple(??) +sched.scheduler(??) +sched.threading(??) +sched.time(??) +secrets.DEFAULT_ENTROPY +secrets.SystemRandom(??) +secrets.base64(??) +secrets.binascii(??) +secrets.choice(??) +secrets.compare_digest(??) +secrets.randbelow(??) +secrets.randbits(??) +secrets.token_bytes(??) +secrets.token_hex(??) +secrets.token_urlsafe(??) +selectors.ABCMeta(??) +selectors.BaseSelector(??) +selectors.DefaultSelector(??) +selectors.EVENT_READ +selectors.EVENT_WRITE +selectors.KqueueSelector(??) +selectors.Mapping(??) +selectors.PollSelector(??) +selectors.SelectSelector(??) +selectors.SelectorKey(fileobj, fd, events, data) +selectors.abstractmethod(??) +selectors.math(??) +selectors.namedtuple(??) +selectors.select(??) +selectors.sys(??) +set() -> new empty set object +setattr(??) +shelve.BsdDbShelf(??) +shelve.BytesIO(??) +shelve.DbfilenameShelf(??) +shelve.Pickler(??) +shelve.Shelf(??) +shelve.Unpickler(??) +shelve.collections(??) +shelve.open(??) +shlex.StringIO(??) +shlex.deque([iterable[, maxlen]]) --> deque object +shlex.join(??) +shlex.os(??) +shlex.quote(??) +shlex.re(??) +shlex.shlex(??) +shlex.split(??) +shlex.sys(??) +shutil.COPY_BUFSIZE +shutil.Error(??) +shutil.ExecError(??) +shutil.ReadError(??) +shutil.RegistryError(??) +shutil.SameFileError(??) +shutil.SpecialFileError(??) +shutil.chown(??) +shutil.collections(??) +shutil.copy(??) +shutil.copy2(??) +shutil.copyfile(??) +shutil.copyfileobj(??) +shutil.copymode(??) +shutil.copystat(??) +shutil.copytree(??) +shutil.disk_usage(??) +shutil.errno(??) +shutil.fnmatch(??) +shutil.get_archive_formats(??) +shutil.get_terminal_size(??) +shutil.get_unpack_formats(??) +shutil.getgrnam(??) +shutil.getpwnam(??) +shutil.ignore_patterns(??) +shutil.make_archive(??) +shutil.move(??) +shutil.nt(??) +shutil.os(??) +shutil.posix(??) +shutil.register_archive_format(??) +shutil.register_unpack_format(??) +shutil.rmtree(??) +shutil.stat(??) +shutil.sys(??) +shutil.unpack_archive(??) +shutil.unregister_archive_format(??) +shutil.unregister_unpack_format(??) +shutil.which(??) +signal.Handlers(??) +signal.ITIMER_PROF +signal.ITIMER_REAL +signal.ITIMER_VIRTUAL +signal.ItimerError(??) +signal.NSIG +signal.SIGABRT(??) +signal.SIGALRM(??) +signal.SIGBUS(??) +signal.SIGCHLD(??) +signal.SIGCONT(??) +signal.SIGEMT(??) +signal.SIGFPE(??) +signal.SIGHUP(??) +signal.SIGILL(??) +signal.SIGINFO(??) +signal.SIGINT(??) +signal.SIGIO(??) +signal.SIGIOT(??) +signal.SIGKILL(??) +signal.SIGPIPE(??) +signal.SIGPROF(??) +signal.SIGQUIT(??) +signal.SIGSEGV(??) +signal.SIGSTOP(??) +signal.SIGSYS(??) +signal.SIGTERM(??) +signal.SIGTRAP(??) +signal.SIGTSTP(??) +signal.SIGTTIN(??) +signal.SIGTTOU(??) +signal.SIGURG(??) +signal.SIGUSR1(??) +signal.SIGUSR2(??) +signal.SIGVTALRM(??) +signal.SIGWINCH(??) +signal.SIGXCPU(??) +signal.SIGXFSZ(??) +signal.SIG_BLOCK(??) +signal.SIG_DFL(??) +signal.SIG_IGN(??) +signal.SIG_SETMASK(??) +signal.SIG_UNBLOCK(??) +signal.Sigmasks(??) +signal.Signals(??) +signal.alarm(??) +signal.default_int_handler(...) +signal.getitimer(??) +signal.getsignal(??) +signal.pause(??) +signal.pthread_kill(??) +signal.pthread_sigmask(??) +signal.raise_signal(??) +signal.set_wakeup_fd(fd, *, warn_on_full_buffer=True) -> fd +signal.setitimer(??) +signal.siginterrupt(??) +signal.signal(??) +signal.sigpending(??) +signal.sigwait(??) +signal.strsignal(??) +signal.valid_signals(??) +site.ENABLE_USER_SITE(??) +site.PREFIXES(??) +site.USER_BASE +site.USER_SITE +site.abs_paths(??) +site.addpackage(??) +site.addsitedir(??) +site.addsitepackages(??) +site.addusersitepackages(??) +site.builtins(??) +site.check_enableusersite(??) +site.enablerlcompleter(??) +site.execsitecustomize(??) +site.execusercustomize(??) +site.getsitepackages(??) +site.getuserbase(??) +site.getusersitepackages(??) +site.io(??) +site.main(??) +site.makepath(??) +site.os(??) +site.removeduppaths(??) +site.setcopyright(??) +site.sethelper(??) +site.setquit(??) +site.sys(??) +site.venv(??) +slice(stop) +smtpd.COMMASPACE +smtpd.DATA_SIZE_DEFAULT +smtpd.DEBUGSTREAM(??) +smtpd.DebuggingServer(??) +smtpd.Devnull(??) +smtpd.MailmanProxy(??) +smtpd.NEWLINE +smtpd.Options(??) +smtpd.PureProxy(??) +smtpd.SMTPChannel(??) +smtpd.SMTPServer(??) +smtpd.asynchat(??) +smtpd.asyncore(??) +smtpd.collections(??) +smtpd.errno(??) +smtpd.get_addr_spec(??) +smtpd.get_angle_addr(??) +smtpd.getopt(??) +smtpd.os(??) +smtpd.parseargs(??) +smtpd.program +smtpd.socket(??) +smtpd.sys(??) +smtpd.time(??) +smtpd.usage(??) +smtpd.warn(??) +smtplib.CRLF +smtplib.LMTP(??) +smtplib.LMTP_PORT +smtplib.OLDSTYLE_AUTH(??) +smtplib.SMTP(??) +smtplib.SMTPAuthenticationError(??) +smtplib.SMTPConnectError(??) +smtplib.SMTPDataError(??) +smtplib.SMTPException(??) +smtplib.SMTPHeloError(??) +smtplib.SMTPNotSupportedError(??) +smtplib.SMTPRecipientsRefused(??) +smtplib.SMTPResponseException(??) +smtplib.SMTPSenderRefused(??) +smtplib.SMTPServerDisconnected(??) +smtplib.SMTP_PORT +smtplib.SMTP_SSL(??) +smtplib.SMTP_SSL_PORT +smtplib.bCRLF +smtplib.base64(??) +smtplib.copy(??) +smtplib.datetime(??) +smtplib.email(??) +smtplib.encode_base64(??) +smtplib.hmac(??) +smtplib.io(??) +smtplib.quoteaddr(??) +smtplib.quotedata(??) +smtplib.re(??) +smtplib.socket(??) +smtplib.ssl(??) +smtplib.sys(??) +sndhdr.SndHeaders(filetype, framerate, nchannels, nframes, sampwidth) +sndhdr.get_long_be(??) +sndhdr.get_long_le(??) +sndhdr.get_short_be(??) +sndhdr.get_short_le(??) +sndhdr.namedtuple(??) +sndhdr.test(??) +sndhdr.test_8svx(??) +sndhdr.test_aifc(??) +sndhdr.test_au(??) +sndhdr.test_hcom(??) +sndhdr.test_sndr(??) +sndhdr.test_sndt(??) +sndhdr.test_voc(??) +sndhdr.test_wav(??) +sndhdr.testall(??) +sndhdr.tests(??) +sndhdr.what(??) +sndhdr.whathdr(??) +socket.AF_APPLETALK(??) +socket.AF_DECnet +socket.AF_INET(??) +socket.AF_INET6(??) +socket.AF_IPX(??) +socket.AF_LINK(??) +socket.AF_ROUTE(??) +socket.AF_SNA(??) +socket.AF_SYSTEM(??) +socket.AF_UNIX(??) +socket.AF_UNSPEC(??) +socket.AI_ADDRCONFIG(??) +socket.AI_ALL(??) +socket.AI_CANONNAME(??) +socket.AI_DEFAULT(??) +socket.AI_MASK(??) +socket.AI_NUMERICHOST(??) +socket.AI_NUMERICSERV(??) +socket.AI_PASSIVE(??) +socket.AI_V4MAPPED(??) +socket.AI_V4MAPPED_CFG(??) +socket.AddressFamily(??) +socket.AddressInfo(??) +socket.CAPI(??) +socket.CMSG_LEN(length) -> control message length +socket.CMSG_SPACE(length) -> buffer size +socket.EAGAIN +socket.EAI_ADDRFAMILY +socket.EAI_AGAIN +socket.EAI_BADFLAGS +socket.EAI_BADHINTS +socket.EAI_FAIL +socket.EAI_FAMILY +socket.EAI_MAX +socket.EAI_MEMORY +socket.EAI_NODATA +socket.EAI_NONAME +socket.EAI_OVERFLOW +socket.EAI_PROTOCOL +socket.EAI_SERVICE +socket.EAI_SOCKTYPE +socket.EAI_SYSTEM +socket.EBADF +socket.EWOULDBLOCK +socket.INADDR_ALLHOSTS_GROUP +socket.INADDR_ANY +socket.INADDR_BROADCAST +socket.INADDR_LOOPBACK +socket.INADDR_MAX_LOCAL_GROUP +socket.INADDR_NONE +socket.INADDR_UNSPEC_GROUP +socket.IPPORT_RESERVED +socket.IPPORT_USERRESERVED +socket.IPPROTO_AH +socket.IPPROTO_DSTOPTS +socket.IPPROTO_EGP +socket.IPPROTO_EON +socket.IPPROTO_ESP +socket.IPPROTO_FRAGMENT +socket.IPPROTO_GGP +socket.IPPROTO_GRE +socket.IPPROTO_HELLO +socket.IPPROTO_HOPOPTS +socket.IPPROTO_ICMP +socket.IPPROTO_ICMPV6 +socket.IPPROTO_IDP +socket.IPPROTO_IGMP +socket.IPPROTO_IP +socket.IPPROTO_IPCOMP +socket.IPPROTO_IPIP +socket.IPPROTO_IPV4 +socket.IPPROTO_IPV6 +socket.IPPROTO_MAX +socket.IPPROTO_ND +socket.IPPROTO_NONE +socket.IPPROTO_PIM +socket.IPPROTO_PUP +socket.IPPROTO_RAW +socket.IPPROTO_ROUTING +socket.IPPROTO_RSVP +socket.IPPROTO_SCTP +socket.IPPROTO_TCP +socket.IPPROTO_TP +socket.IPPROTO_UDP +socket.IPPROTO_XTP +socket.IPV6_CHECKSUM +socket.IPV6_DONTFRAG +socket.IPV6_DSTOPTS +socket.IPV6_HOPLIMIT +socket.IPV6_HOPOPTS +socket.IPV6_JOIN_GROUP +socket.IPV6_LEAVE_GROUP +socket.IPV6_MULTICAST_HOPS +socket.IPV6_MULTICAST_IF +socket.IPV6_MULTICAST_LOOP +socket.IPV6_NEXTHOP +socket.IPV6_PATHMTU +socket.IPV6_PKTINFO +socket.IPV6_RECVDSTOPTS +socket.IPV6_RECVHOPLIMIT +socket.IPV6_RECVHOPOPTS +socket.IPV6_RECVPATHMTU +socket.IPV6_RECVPKTINFO +socket.IPV6_RECVRTHDR +socket.IPV6_RECVTCLASS +socket.IPV6_RTHDR +socket.IPV6_RTHDRDSTOPTS +socket.IPV6_RTHDR_TYPE_0 +socket.IPV6_TCLASS +socket.IPV6_UNICAST_HOPS +socket.IPV6_USE_MIN_MTU +socket.IPV6_V6ONLY +socket.IP_ADD_MEMBERSHIP +socket.IP_DEFAULT_MULTICAST_LOOP +socket.IP_DEFAULT_MULTICAST_TTL +socket.IP_DROP_MEMBERSHIP +socket.IP_HDRINCL +socket.IP_MAX_MEMBERSHIPS +socket.IP_MULTICAST_IF +socket.IP_MULTICAST_LOOP +socket.IP_MULTICAST_TTL +socket.IP_OPTIONS +socket.IP_RECVDSTADDR +socket.IP_RECVOPTS +socket.IP_RECVRETOPTS +socket.IP_RETOPTS +socket.IP_TOS +socket.IP_TTL +socket.IntEnum(??) +socket.IntFlag(??) +socket.LOCAL_PEERCRED +socket.MSG_CTRUNC(??) +socket.MSG_DONTROUTE(??) +socket.MSG_DONTWAIT(??) +socket.MSG_EOF(??) +socket.MSG_EOR(??) +socket.MSG_OOB(??) +socket.MSG_PEEK(??) +socket.MSG_TRUNC(??) +socket.MSG_WAITALL(??) +socket.MsgFlag(??) +socket.NI_DGRAM +socket.NI_MAXHOST +socket.NI_MAXSERV +socket.NI_NAMEREQD +socket.NI_NOFQDN +socket.NI_NUMERICHOST +socket.NI_NUMERICSERV +socket.PF_SYSTEM +socket.SCM_CREDS +socket.SCM_RIGHTS +socket.SHUT_RD +socket.SHUT_RDWR +socket.SHUT_WR +socket.SOCK_DGRAM(??) +socket.SOCK_RAW(??) +socket.SOCK_RDM(??) +socket.SOCK_SEQPACKET(??) +socket.SOCK_STREAM(??) +socket.SOL_IP +socket.SOL_SOCKET +socket.SOL_TCP +socket.SOL_UDP +socket.SOMAXCONN +socket.SO_ACCEPTCONN +socket.SO_BROADCAST +socket.SO_DEBUG +socket.SO_DONTROUTE +socket.SO_ERROR +socket.SO_KEEPALIVE +socket.SO_LINGER +socket.SO_OOBINLINE +socket.SO_RCVBUF +socket.SO_RCVLOWAT +socket.SO_RCVTIMEO +socket.SO_REUSEADDR +socket.SO_REUSEPORT +socket.SO_SNDBUF +socket.SO_SNDLOWAT +socket.SO_SNDTIMEO +socket.SO_TYPE +socket.SO_USELOOPBACK +socket.SYSPROTO_CONTROL +socket.SocketIO(??) +socket.SocketKind(??) +socket.SocketType(??) +socket.TCP_KEEPCNT +socket.TCP_KEEPINTVL +socket.TCP_MAXSEG +socket.TCP_NODELAY +socket.array(??) +socket.close(integer) -> None +socket.create_connection(??) +socket.create_server(??) +socket.dup(integer) -> integer +socket.errno(??) +socket.error(??) +socket.fromfd(fd, family, type[, proto]) -> socket object +socket.gaierror(??) +socket.getaddrinfo(??) +socket.getdefaulttimeout() -> timeout +socket.getfqdn(??) +socket.gethostbyaddr(host) -> (name, aliaslist, addresslist) +socket.gethostbyname(host) -> address +socket.gethostbyname_ex(host) -> (name, aliaslist, addresslist) +socket.gethostname() -> string +socket.getnameinfo(sockaddr, flags) --> (host, port) +socket.getprotobyname(name) -> integer +socket.getservbyname(servicename[, protocolname]) -> integer +socket.getservbyport(port[, protocolname]) -> string +socket.has_dualstack_ipv6(??) +socket.has_ipv6(??) +socket.herror(??) +socket.htonl(integer) -> integer +socket.htons(integer) -> integer +socket.if_indextoname(if_index) +socket.if_nameindex() +socket.if_nametoindex(if_name) +socket.inet_aton(string) -> bytes giving packed 32-bit IP representation +socket.inet_ntoa(packed_ip) -> ip_address_string +socket.inet_ntop(af, packed_ip) -> string formatted IP address +socket.inet_pton(af, ip) -> packed IP address string +socket.io(??) +socket.ntohl(integer) -> integer +socket.ntohs(integer) -> integer +socket.os(??) +socket.recv_fds(sock, bufsize, maxfds[, flags]) -> (data, list of file +socket.selectors(??) +socket.send_fds(sock, buffers, fds[, flags[, address]]) -> integer +socket.setdefaulttimeout(timeout) +socket.sethostname(name) +socket.socket(??) +socket.socketpair([family[, type[, proto]]]) -> (socket object, socket object) +socket.sys(??) +socket.timeout(??) +socketserver.BaseRequestHandler(??) +socketserver.BaseServer(??) +socketserver.BufferedIOBase(??) +socketserver.DatagramRequestHandler(??) +socketserver.ForkingMixIn(??) +socketserver.ForkingTCPServer(??) +socketserver.ForkingUDPServer(??) +socketserver.StreamRequestHandler(??) +socketserver.TCPServer(??) +socketserver.ThreadingMixIn(??) +socketserver.ThreadingTCPServer(??) +socketserver.ThreadingUDPServer(??) +socketserver.ThreadingUnixDatagramServer(??) +socketserver.ThreadingUnixStreamServer(??) +socketserver.UDPServer(??) +socketserver.UnixDatagramServer(??) +socketserver.UnixStreamServer(??) +socketserver.os(??) +socketserver.selectors(??) +socketserver.socket(??) +socketserver.sys(??) +socketserver.threading(??) +socketserver.time(??) +sorted(??) +sqlite3.Binary(??) +sqlite3.Connection(??) +sqlite3.Cursor(??) +sqlite3.DataError(??) +sqlite3.DatabaseError(??) +sqlite3.Date(??) +sqlite3.DateFromTicks(??) +sqlite3.Error(??) +sqlite3.IntegrityError(??) +sqlite3.InterfaceError(??) +sqlite3.InternalError(??) +sqlite3.NotSupportedError(??) +sqlite3.OperationalError(??) +sqlite3.OptimizedUnicode(??) +sqlite3.PARSE_COLNAMES +sqlite3.PARSE_DECLTYPES +sqlite3.PrepareProtocol(??) +sqlite3.ProgrammingError(??) +sqlite3.Row(??) +sqlite3.SQLITE_ALTER_TABLE +sqlite3.SQLITE_ANALYZE +sqlite3.SQLITE_ATTACH +sqlite3.SQLITE_CREATE_INDEX +sqlite3.SQLITE_CREATE_TABLE +sqlite3.SQLITE_CREATE_TEMP_INDEX +sqlite3.SQLITE_CREATE_TEMP_TABLE +sqlite3.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.SQLITE_CREATE_TEMP_VIEW +sqlite3.SQLITE_CREATE_TRIGGER +sqlite3.SQLITE_CREATE_VIEW +sqlite3.SQLITE_CREATE_VTABLE +sqlite3.SQLITE_DELETE +sqlite3.SQLITE_DENY +sqlite3.SQLITE_DETACH +sqlite3.SQLITE_DONE +sqlite3.SQLITE_DROP_INDEX +sqlite3.SQLITE_DROP_TABLE +sqlite3.SQLITE_DROP_TEMP_INDEX +sqlite3.SQLITE_DROP_TEMP_TABLE +sqlite3.SQLITE_DROP_TEMP_TRIGGER +sqlite3.SQLITE_DROP_TEMP_VIEW +sqlite3.SQLITE_DROP_TRIGGER +sqlite3.SQLITE_DROP_VIEW +sqlite3.SQLITE_DROP_VTABLE +sqlite3.SQLITE_FUNCTION +sqlite3.SQLITE_IGNORE +sqlite3.SQLITE_INSERT +sqlite3.SQLITE_OK +sqlite3.SQLITE_PRAGMA +sqlite3.SQLITE_READ +sqlite3.SQLITE_RECURSIVE +sqlite3.SQLITE_REINDEX +sqlite3.SQLITE_SAVEPOINT +sqlite3.SQLITE_SELECT +sqlite3.SQLITE_TRANSACTION +sqlite3.SQLITE_UPDATE +sqlite3.Time(??) +sqlite3.TimeFromTicks(??) +sqlite3.Timestamp(??) +sqlite3.TimestampFromTicks(??) +sqlite3.Warning(??) +sqlite3.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.adapters(??) +sqlite3.apilevel +sqlite3.collections(??) +sqlite3.complete_statement(sql) +sqlite3.connect(??) +sqlite3.converters(??) +sqlite3.datetime(??) +sqlite3.dbapi2(??) +sqlite3.dbapi2.Binary(??) +sqlite3.dbapi2.Connection(??) +sqlite3.dbapi2.Cursor(??) +sqlite3.dbapi2.DataError(??) +sqlite3.dbapi2.DatabaseError(??) +sqlite3.dbapi2.Date(??) +sqlite3.dbapi2.DateFromTicks(??) +sqlite3.dbapi2.Error(??) +sqlite3.dbapi2.IntegrityError(??) +sqlite3.dbapi2.InterfaceError(??) +sqlite3.dbapi2.InternalError(??) +sqlite3.dbapi2.NotSupportedError(??) +sqlite3.dbapi2.OperationalError(??) +sqlite3.dbapi2.OptimizedUnicode(??) +sqlite3.dbapi2.PARSE_COLNAMES +sqlite3.dbapi2.PARSE_DECLTYPES +sqlite3.dbapi2.PrepareProtocol(??) +sqlite3.dbapi2.ProgrammingError(??) +sqlite3.dbapi2.Row(??) +sqlite3.dbapi2.SQLITE_ALTER_TABLE +sqlite3.dbapi2.SQLITE_ANALYZE +sqlite3.dbapi2.SQLITE_ATTACH +sqlite3.dbapi2.SQLITE_CREATE_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_INDEX +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TABLE +sqlite3.dbapi2.SQLITE_CREATE_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_TEMP_VIEW +sqlite3.dbapi2.SQLITE_CREATE_TRIGGER +sqlite3.dbapi2.SQLITE_CREATE_VIEW +sqlite3.dbapi2.SQLITE_CREATE_VTABLE +sqlite3.dbapi2.SQLITE_DELETE +sqlite3.dbapi2.SQLITE_DENY +sqlite3.dbapi2.SQLITE_DETACH +sqlite3.dbapi2.SQLITE_DONE +sqlite3.dbapi2.SQLITE_DROP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_INDEX +sqlite3.dbapi2.SQLITE_DROP_TEMP_TABLE +sqlite3.dbapi2.SQLITE_DROP_TEMP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_TEMP_VIEW +sqlite3.dbapi2.SQLITE_DROP_TRIGGER +sqlite3.dbapi2.SQLITE_DROP_VIEW +sqlite3.dbapi2.SQLITE_DROP_VTABLE +sqlite3.dbapi2.SQLITE_FUNCTION +sqlite3.dbapi2.SQLITE_IGNORE +sqlite3.dbapi2.SQLITE_INSERT +sqlite3.dbapi2.SQLITE_OK +sqlite3.dbapi2.SQLITE_PRAGMA +sqlite3.dbapi2.SQLITE_READ +sqlite3.dbapi2.SQLITE_RECURSIVE +sqlite3.dbapi2.SQLITE_REINDEX +sqlite3.dbapi2.SQLITE_SAVEPOINT +sqlite3.dbapi2.SQLITE_SELECT +sqlite3.dbapi2.SQLITE_TRANSACTION +sqlite3.dbapi2.SQLITE_UPDATE +sqlite3.dbapi2.Time(??) +sqlite3.dbapi2.TimeFromTicks(??) +sqlite3.dbapi2.Timestamp(??) +sqlite3.dbapi2.TimestampFromTicks(??) +sqlite3.dbapi2.Warning(??) +sqlite3.dbapi2.adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. +sqlite3.dbapi2.adapters(??) +sqlite3.dbapi2.apilevel +sqlite3.dbapi2.collections(??) +sqlite3.dbapi2.complete_statement(sql) +sqlite3.dbapi2.connect(??) +sqlite3.dbapi2.converters(??) +sqlite3.dbapi2.datetime(??) +sqlite3.dbapi2.enable_callback_tracebacks(flag) +sqlite3.dbapi2.enable_shared_cache(do_enable) +sqlite3.dbapi2.paramstyle +sqlite3.dbapi2.register_adapter(type, callable) +sqlite3.dbapi2.register_converter(typename, callable) +sqlite3.dbapi2.sqlite_version +sqlite3.dbapi2.sqlite_version_info(??) +sqlite3.dbapi2.threadsafety +sqlite3.dbapi2.time(??) +sqlite3.dbapi2.version +sqlite3.dbapi2.version_info(??) +sqlite3.dump(??) +sqlite3.enable_callback_tracebacks(flag) +sqlite3.enable_shared_cache(do_enable) +sqlite3.paramstyle +sqlite3.register_adapter(type, callable) +sqlite3.register_converter(typename, callable) +sqlite3.sqlite_version +sqlite3.sqlite_version_info(??) +sqlite3.threadsafety +sqlite3.time(??) +sqlite3.version +sqlite3.version_info(??) +ssl.ALERT_DESCRIPTION_ACCESS_DENIED(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE(??) +ssl.ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE(??) +ssl.ALERT_DESCRIPTION_BAD_RECORD_MAC(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_EXPIRED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_REVOKED(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN(??) +ssl.ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE(??) +ssl.ALERT_DESCRIPTION_CLOSE_NOTIFY(??) +ssl.ALERT_DESCRIPTION_DECODE_ERROR(??) +ssl.ALERT_DESCRIPTION_DECOMPRESSION_FAILURE(??) +ssl.ALERT_DESCRIPTION_DECRYPT_ERROR(??) +ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE(??) +ssl.ALERT_DESCRIPTION_ILLEGAL_PARAMETER(??) +ssl.ALERT_DESCRIPTION_INSUFFICIENT_SECURITY(??) +ssl.ALERT_DESCRIPTION_INTERNAL_ERROR(??) +ssl.ALERT_DESCRIPTION_NO_RENEGOTIATION(??) +ssl.ALERT_DESCRIPTION_PROTOCOL_VERSION(??) +ssl.ALERT_DESCRIPTION_RECORD_OVERFLOW(??) +ssl.ALERT_DESCRIPTION_UNEXPECTED_MESSAGE(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_CA(??) +ssl.ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY(??) +ssl.ALERT_DESCRIPTION_UNRECOGNIZED_NAME(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE(??) +ssl.ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION(??) +ssl.ALERT_DESCRIPTION_USER_CANCELLED(??) +ssl.AlertDescription(??) +ssl.CERT_NONE(??) +ssl.CERT_OPTIONAL(??) +ssl.CERT_REQUIRED(??) +ssl.CHANNEL_BINDING_TYPES(??) +ssl.CertificateError(??) +ssl.DER_cert_to_PEM_cert(??) +ssl.DefaultVerifyPaths(cafile, capath, openssl_cafile_env, openssl_cafile, openssl_capath_env, openssl_capath) +ssl.HAS_ALPN(??) +ssl.HAS_ECDH(??) +ssl.HAS_NEVER_CHECK_COMMON_NAME(??) +ssl.HAS_NPN(??) +ssl.HAS_SNI(??) +ssl.HAS_SSLv2(??) +ssl.HAS_SSLv3(??) +ssl.HAS_TLSv1(??) +ssl.HAS_TLSv1_1(??) +ssl.HAS_TLSv1_2(??) +ssl.HAS_TLSv1_3(??) +ssl.MemoryBIO(??) +ssl.OPENSSL_VERSION +ssl.OPENSSL_VERSION_INFO(??) +ssl.OPENSSL_VERSION_NUMBER +ssl.OP_ALL(??) +ssl.OP_CIPHER_SERVER_PREFERENCE(??) +ssl.OP_ENABLE_MIDDLEBOX_COMPAT(??) +ssl.OP_NO_COMPRESSION(??) +ssl.OP_NO_RENEGOTIATION(??) +ssl.OP_NO_SSLv2(??) +ssl.OP_NO_SSLv3(??) +ssl.OP_NO_TICKET(??) +ssl.OP_NO_TLSv1(??) +ssl.OP_NO_TLSv1_1(??) +ssl.OP_NO_TLSv1_2(??) +ssl.OP_NO_TLSv1_3(??) +ssl.OP_SINGLE_DH_USE(??) +ssl.OP_SINGLE_ECDH_USE(??) +ssl.Options(??) +ssl.PEM_FOOTER +ssl.PEM_HEADER +ssl.PEM_cert_to_DER_cert(??) +ssl.PROTOCOL_SSLv23(??) +ssl.PROTOCOL_TLS(??) +ssl.PROTOCOL_TLS_CLIENT(??) +ssl.PROTOCOL_TLS_SERVER(??) +ssl.PROTOCOL_TLSv1(??) +ssl.PROTOCOL_TLSv1_1(??) +ssl.PROTOCOL_TLSv1_2(??) +ssl.Purpose(??) +ssl.RAND_add(??) +ssl.RAND_bytes(??) +ssl.RAND_pseudo_bytes(??) +ssl.RAND_status(??) +ssl.SOCK_STREAM(??) +ssl.SOL_SOCKET +ssl.SO_TYPE +ssl.SSLCertVerificationError(??) +ssl.SSLContext(??) +ssl.SSLEOFError(??) +ssl.SSLError(??) +ssl.SSLErrorNumber(??) +ssl.SSLObject(??) +ssl.SSLSession(??) +ssl.SSLSocket(??) +ssl.SSLSyscallError(??) +ssl.SSLWantReadError(??) +ssl.SSLWantWriteError(??) +ssl.SSLZeroReturnError(??) +ssl.SSL_ERROR_EOF(??) +ssl.SSL_ERROR_INVALID_ERROR_CODE(??) +ssl.SSL_ERROR_SSL(??) +ssl.SSL_ERROR_SYSCALL(??) +ssl.SSL_ERROR_WANT_CONNECT(??) +ssl.SSL_ERROR_WANT_READ(??) +ssl.SSL_ERROR_WANT_WRITE(??) +ssl.SSL_ERROR_WANT_X509_LOOKUP(??) +ssl.SSL_ERROR_ZERO_RETURN(??) +ssl.TLSVersion(??) +ssl.VERIFY_CRL_CHECK_CHAIN(??) +ssl.VERIFY_CRL_CHECK_LEAF(??) +ssl.VERIFY_DEFAULT(??) +ssl.VERIFY_X509_STRICT(??) +ssl.VERIFY_X509_TRUSTED_FIRST(??) +ssl.VerifyFlags(??) +ssl.VerifyMode(??) +ssl.base64(??) +ssl.cert_time_to_seconds(??) +ssl.create_connection(??) +ssl.create_default_context(??) +ssl.errno(??) +ssl.get_default_verify_paths(??) +ssl.get_protocol_name(??) +ssl.get_server_certificate(??) +ssl.match_hostname(??) +ssl.namedtuple(??) +ssl.os(??) +ssl.socket(??) +ssl.socket_error(??) +ssl.sys(??) +ssl.warnings(??) +ssl.wrap_socket(??) +stat.FILE_ATTRIBUTE_ARCHIVE +stat.FILE_ATTRIBUTE_COMPRESSED +stat.FILE_ATTRIBUTE_DEVICE +stat.FILE_ATTRIBUTE_DIRECTORY +stat.FILE_ATTRIBUTE_ENCRYPTED +stat.FILE_ATTRIBUTE_HIDDEN +stat.FILE_ATTRIBUTE_INTEGRITY_STREAM +stat.FILE_ATTRIBUTE_NORMAL +stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED +stat.FILE_ATTRIBUTE_NO_SCRUB_DATA +stat.FILE_ATTRIBUTE_OFFLINE +stat.FILE_ATTRIBUTE_READONLY +stat.FILE_ATTRIBUTE_REPARSE_POINT +stat.FILE_ATTRIBUTE_SPARSE_FILE +stat.FILE_ATTRIBUTE_SYSTEM +stat.FILE_ATTRIBUTE_TEMPORARY +stat.FILE_ATTRIBUTE_VIRTUAL +stat.SF_APPEND +stat.SF_ARCHIVED +stat.SF_IMMUTABLE +stat.SF_NOUNLINK +stat.SF_SNAPSHOT +stat.ST_ATIME +stat.ST_CTIME +stat.ST_DEV +stat.ST_GID +stat.ST_INO +stat.ST_MODE +stat.ST_MTIME +stat.ST_NLINK +stat.ST_SIZE +stat.ST_UID +stat.S_ENFMT +stat.S_IEXEC +stat.S_IFBLK +stat.S_IFCHR +stat.S_IFDIR +stat.S_IFDOOR +stat.S_IFIFO +stat.S_IFLNK +stat.S_IFMT(??) +stat.S_IFPORT +stat.S_IFREG +stat.S_IFSOCK +stat.S_IFWHT +stat.S_IMODE(??) +stat.S_IREAD +stat.S_IRGRP +stat.S_IROTH +stat.S_IRUSR +stat.S_IRWXG +stat.S_IRWXO +stat.S_IRWXU +stat.S_ISBLK(mode) -> bool +stat.S_ISCHR(mode) -> bool +stat.S_ISDIR(mode) -> bool +stat.S_ISDOOR(mode) -> bool +stat.S_ISFIFO(mode) -> bool +stat.S_ISGID +stat.S_ISLNK(mode) -> bool +stat.S_ISPORT(mode) -> bool +stat.S_ISREG(mode) -> bool +stat.S_ISSOCK(mode) -> bool +stat.S_ISUID +stat.S_ISVTX +stat.S_ISWHT(mode) -> bool +stat.S_IWGRP +stat.S_IWOTH +stat.S_IWRITE +stat.S_IWUSR +stat.S_IXGRP +stat.S_IXOTH +stat.S_IXUSR +stat.UF_APPEND +stat.UF_COMPRESSED +stat.UF_HIDDEN +stat.UF_IMMUTABLE +stat.UF_NODUMP +stat.UF_NOUNLINK +stat.UF_OPAQUE +stat.filemode(??) +staticmethod(function) -> method +statistics.Counter(??) +statistics.Decimal(??) +statistics.Fraction(??) +statistics.NormalDist(??) +statistics.StatisticsError(??) +statistics.bisect_left(??) +statistics.bisect_right(??) +statistics.erf(??) +statistics.exp(??) +statistics.fabs(??) +statistics.fmean(??) +statistics.fsum(??) +statistics.geometric_mean(??) +statistics.groupby(??) +statistics.harmonic_mean(??) +statistics.hypot(*coordinates) -> value +statistics.itemgetter(item, ...) --> itemgetter object +statistics.log(x, [base=math.e]) +statistics.math(??) +statistics.mean(??) +statistics.median(??) +statistics.median_grouped(??) +statistics.median_high(??) +statistics.median_low(??) +statistics.mode(??) +statistics.multimode(??) +statistics.numbers(??) +statistics.pstdev(??) +statistics.pvariance(??) +statistics.quantiles(??) +statistics.random(??) +statistics.sqrt(??) +statistics.stdev(??) +statistics.tau +statistics.variance(??) +str(object='') -> str +string.Formatter(??) +string.Template(??) +string.ascii_letters +string.ascii_lowercase +string.ascii_uppercase +string.capwords(s [,sep]) -> string +string.digits +string.hexdigits +string.octdigits +string.printable +string.punctuation +string.whitespace +stringprep.b1_set(??) +stringprep.b3_exceptions(??) +stringprep.c22_specials(??) +stringprep.c6_set(??) +stringprep.c7_set(??) +stringprep.c8_set(??) +stringprep.c9_set(??) +stringprep.in_table_a1(??) +stringprep.in_table_b1(??) +stringprep.in_table_c11(??) +stringprep.in_table_c11_c12(??) +stringprep.in_table_c12(??) +stringprep.in_table_c21(??) +stringprep.in_table_c21_c22(??) +stringprep.in_table_c22(??) +stringprep.in_table_c3(??) +stringprep.in_table_c4(??) +stringprep.in_table_c5(??) +stringprep.in_table_c6(??) +stringprep.in_table_c7(??) +stringprep.in_table_c8(??) +stringprep.in_table_c9(??) +stringprep.in_table_d1(??) +stringprep.in_table_d2(??) +stringprep.map_table_b2(??) +stringprep.map_table_b3(??) +stringprep.unicodedata(??) +struct.Struct(fmt) --> compiled struct object +struct.calcsize(??) +struct.error(??) +struct.iter_unpack(??) +struct.pack(format, v1, v2, ...) -> bytes +struct.pack_into(format, buffer, offset, v1, v2, ...) +struct.unpack(??) +struct.unpack_from(??) +subprocess.CalledProcessError(??) +subprocess.CompletedProcess(??) +subprocess.DEVNULL +subprocess.PIPE +subprocess.Popen(??) +subprocess.STDOUT +subprocess.SubprocessError(??) +subprocess.TimeoutExpired(??) +subprocess.builtins(??) +subprocess.call(??) +subprocess.check_call(??) +subprocess.check_output(??) +subprocess.contextlib(??) +subprocess.errno(??) +subprocess.getoutput(??) +subprocess.getstatusoutput(??) +subprocess.grp(??) +subprocess.io(??) +subprocess.list2cmdline(??) +subprocess.os(??) +subprocess.pwd(??) +subprocess.run(??) +subprocess.select(??) +subprocess.selectors(??) +subprocess.signal(??) +subprocess.sys(??) +subprocess.threading(??) +subprocess.time(??) +subprocess.types(??) +subprocess.warnings(??) +sum(??) +sunau.AUDIO_FILE_ENCODING_ADPCM_G721 +sunau.AUDIO_FILE_ENCODING_ADPCM_G722 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3 +sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5 +sunau.AUDIO_FILE_ENCODING_ALAW_8 +sunau.AUDIO_FILE_ENCODING_DOUBLE +sunau.AUDIO_FILE_ENCODING_FLOAT +sunau.AUDIO_FILE_ENCODING_LINEAR_16 +sunau.AUDIO_FILE_ENCODING_LINEAR_24 +sunau.AUDIO_FILE_ENCODING_LINEAR_32 +sunau.AUDIO_FILE_ENCODING_LINEAR_8 +sunau.AUDIO_FILE_ENCODING_MULAW_8 +sunau.AUDIO_FILE_MAGIC +sunau.AUDIO_UNKNOWN_SIZE +sunau.Au_read(??) +sunau.Au_write(??) +sunau.Error(??) +sunau.namedtuple(??) +sunau.open(??) +super() -> same as super(__class__, ) +symbol.and_expr +symbol.and_test +symbol.annassign +symbol.arglist +symbol.argument +symbol.arith_expr +symbol.assert_stmt +symbol.async_funcdef +symbol.async_stmt +symbol.atom +symbol.atom_expr +symbol.augassign +symbol.break_stmt +symbol.classdef +symbol.comp_for +symbol.comp_if +symbol.comp_iter +symbol.comp_op +symbol.comparison +symbol.compound_stmt +symbol.continue_stmt +symbol.decorated +symbol.decorator +symbol.decorators +symbol.del_stmt +symbol.dictorsetmaker +symbol.dotted_as_name +symbol.dotted_as_names +symbol.dotted_name +symbol.encoding_decl +symbol.eval_input +symbol.except_clause +symbol.expr +symbol.expr_stmt +symbol.exprlist +symbol.factor +symbol.file_input +symbol.flow_stmt +symbol.for_stmt +symbol.func_body_suite +symbol.func_type +symbol.func_type_input +symbol.funcdef +symbol.global_stmt +symbol.if_stmt +symbol.import_as_name +symbol.import_as_names +symbol.import_from +symbol.import_name +symbol.import_stmt +symbol.lambdef +symbol.lambdef_nocond +symbol.namedexpr_test +symbol.nonlocal_stmt +symbol.not_test +symbol.or_test +symbol.parameters +symbol.pass_stmt +symbol.power +symbol.raise_stmt +symbol.return_stmt +symbol.shift_expr +symbol.simple_stmt +symbol.single_input +symbol.sliceop +symbol.small_stmt +symbol.star_expr +symbol.stmt +symbol.subscript +symbol.subscriptlist +symbol.suite +symbol.sym_name(??) +symbol.sync_comp_for +symbol.term +symbol.test +symbol.test_nocond +symbol.testlist +symbol.testlist_comp +symbol.testlist_star_expr +symbol.tfpdef +symbol.trailer +symbol.try_stmt +symbol.typedargslist +symbol.typelist +symbol.varargslist +symbol.vfpdef +symbol.warnings(??) +symbol.while_stmt +symbol.with_item +symbol.with_stmt +symbol.xor_expr +symbol.yield_arg +symbol.yield_expr +symbol.yield_stmt +symtable.CELL +symtable.Class(??) +symtable.DEF_ANNOT +symtable.DEF_BOUND +symtable.DEF_GLOBAL +symtable.DEF_IMPORT +symtable.DEF_LOCAL +symtable.DEF_NONLOCAL +symtable.DEF_PARAM +symtable.FREE +symtable.Function(??) +symtable.GLOBAL_EXPLICIT +symtable.GLOBAL_IMPLICIT +symtable.LOCAL +symtable.SCOPE_MASK +symtable.SCOPE_OFF +symtable.Symbol(??) +symtable.SymbolTable(??) +symtable.SymbolTableFactory(??) +symtable.USE +symtable.symtable(??) +symtable.weakref(??) +sys.abiflags +sys.addaudithook(??) +sys.api_version +sys.argv(??) +sys.audit(event, *args) +sys.base_exec_prefix +sys.base_prefix +sys.breakpointhook(*args, **kws) +sys.builtin_module_names(??) +sys.byteorder +sys.call_tracing(??) +sys.copyright +sys.displayhook(??) +sys.dont_write_bytecode(??) +sys.exc_info(??) +sys.excepthook(??) +sys.exec_prefix +sys.executable +sys.exit(??) +sys.flags(??) +sys.float_info(??) +sys.float_repr_style +sys.get_asyncgen_hooks(??) +sys.get_coroutine_origin_tracking_depth(??) +sys.getallocatedblocks(??) +sys.getdefaultencoding(??) +sys.getdlopenflags(??) +sys.getfilesystemencodeerrors(??) +sys.getfilesystemencoding(??) +sys.getprofile(??) +sys.getrecursionlimit(??) +sys.getrefcount(??) +sys.getsizeof(object [, default]) -> int +sys.getswitchinterval(??) +sys.gettrace(??) +sys.hash_info(??) +sys.hexversion +sys.implementation(??) +sys.int_info(??) +sys.intern(??) +sys.is_finalizing(??) +sys.maxsize +sys.maxunicode +sys.meta_path(??) +sys.modules(??) +sys.path(??) +sys.path_hooks(??) +sys.path_importer_cache(??) +sys.platform +sys.platlibdir +sys.prefix +sys.pycache_prefix(??) +sys.set_asyncgen_hooks(* [, firstiter] [, finalizer]) +sys.set_coroutine_origin_tracking_depth(??) +sys.setdlopenflags(??) +sys.setprofile(function) +sys.setrecursionlimit(??) +sys.setswitchinterval(??) +sys.settrace(function) +sys.stderr(??) +sys.stdin(??) +sys.stdout(??) +sys.thread_info(??) +sys.unraisablehook(??) +sys.version +sys.version_info(??) +sys.warnoptions(??) +sysconfig.get_config_h_filename(??) +sysconfig.get_config_var(??) +sysconfig.get_config_vars(??) +sysconfig.get_makefile_filename(??) +sysconfig.get_path(??) +sysconfig.get_path_names(??) +sysconfig.get_paths(??) +sysconfig.get_platform(??) +sysconfig.get_python_version(??) +sysconfig.get_scheme_names(??) +sysconfig.is_python_build(??) +sysconfig.os(??) +sysconfig.pardir +sysconfig.parse_config_h(??) +sysconfig.realpath(??) +sysconfig.sys(??) +tabnanny.NannyNag(??) +tabnanny.Whitespace(??) +tabnanny.check(file_or_dir) +tabnanny.errprint(??) +tabnanny.filename_only +tabnanny.format_witnesses(??) +tabnanny.main(??) +tabnanny.os(??) +tabnanny.process_tokens(??) +tabnanny.sys(??) +tabnanny.tokenize(??) +tabnanny.verbose +tarfile.AREGTYPE +tarfile.BLKTYPE +tarfile.BLOCKSIZE +tarfile.CHRTYPE +tarfile.CONTTYPE +tarfile.CompressionError(??) +tarfile.DEFAULT_FORMAT +tarfile.DIRTYPE +tarfile.ENCODING +tarfile.EOFHeaderError(??) +tarfile.EmptyHeaderError(??) +tarfile.ExFileObject(??) +tarfile.ExtractError(??) +tarfile.FIFOTYPE +tarfile.GNUTYPE_LONGLINK +tarfile.GNUTYPE_LONGNAME +tarfile.GNUTYPE_SPARSE +tarfile.GNU_FORMAT +tarfile.GNU_MAGIC +tarfile.GNU_TYPES(??) +tarfile.HeaderError(??) +tarfile.InvalidHeaderError(??) +tarfile.LENGTH_LINK +tarfile.LENGTH_NAME +tarfile.LENGTH_PREFIX +tarfile.LNKTYPE +tarfile.NUL +tarfile.PAX_FIELDS(??) +tarfile.PAX_FORMAT +tarfile.PAX_NAME_FIELDS(??) +tarfile.PAX_NUMBER_FIELDS(??) +tarfile.POSIX_MAGIC +tarfile.RECORDSIZE +tarfile.REGTYPE +tarfile.REGULAR_TYPES(??) +tarfile.ReadError(??) +tarfile.SOLARIS_XHDTYPE +tarfile.SUPPORTED_TYPES(??) +tarfile.SYMTYPE +tarfile.StreamError(??) +tarfile.SubsequentHeaderError(??) +tarfile.TarError(??) +tarfile.TarFile(??) +tarfile.TarInfo(??) +tarfile.TruncatedHeaderError(??) +tarfile.USTAR_FORMAT +tarfile.XGLTYPE +tarfile.XHDTYPE +tarfile.bltn_open(??) +tarfile.calc_chksums(??) +tarfile.copy(??) +tarfile.copyfileobj(??) +tarfile.grp(??) +tarfile.io(??) +tarfile.is_tarfile(??) +tarfile.itn(??) +tarfile.main(??) +tarfile.nti(??) +tarfile.nts(??) +tarfile.open(??) +tarfile.os(??) +tarfile.pwd(??) +tarfile.re(??) +tarfile.shutil(??) +tarfile.stat(??) +tarfile.stn(??) +tarfile.struct(??) +tarfile.symlink_exception(??) +tarfile.sys(??) +tarfile.time(??) +tarfile.version +telnetlib.AO +telnetlib.AUTHENTICATION +telnetlib.AYT +telnetlib.BINARY +telnetlib.BM +telnetlib.BRK +telnetlib.CHARSET +telnetlib.COM_PORT_OPTION +telnetlib.DEBUGLEVEL +telnetlib.DET +telnetlib.DM +telnetlib.DO +telnetlib.DONT +telnetlib.EC +telnetlib.ECHO +telnetlib.EL +telnetlib.ENCRYPT +telnetlib.EOR +telnetlib.EXOPL +telnetlib.FORWARD_X +telnetlib.GA +telnetlib.IAC +telnetlib.IP +telnetlib.KERMIT +telnetlib.LFLOW +telnetlib.LINEMODE +telnetlib.LOGOUT +telnetlib.NAMS +telnetlib.NAOCRD +telnetlib.NAOFFD +telnetlib.NAOHTD +telnetlib.NAOHTS +telnetlib.NAOL +telnetlib.NAOLFD +telnetlib.NAOP +telnetlib.NAOVTD +telnetlib.NAOVTS +telnetlib.NAWS +telnetlib.NEW_ENVIRON +telnetlib.NOOPT +telnetlib.NOP +telnetlib.OLD_ENVIRON +telnetlib.OUTMRK +telnetlib.PRAGMA_HEARTBEAT +telnetlib.PRAGMA_LOGON +telnetlib.RCP +telnetlib.RCTE +telnetlib.RSP +telnetlib.SB +telnetlib.SE +telnetlib.SEND_URL +telnetlib.SGA +telnetlib.SNDLOC +telnetlib.SSPI_LOGON +telnetlib.STATUS +telnetlib.SUPDUP +telnetlib.SUPDUPOUTPUT +telnetlib.SUPPRESS_LOCAL_ECHO +telnetlib.TELNET_PORT +telnetlib.TLS +telnetlib.TM +telnetlib.TN3270E +telnetlib.TSPEED +telnetlib.TTYLOC +telnetlib.TTYPE +telnetlib.TUID +telnetlib.Telnet(??) +telnetlib.VT3270REGIME +telnetlib.WILL +telnetlib.WONT +telnetlib.X3PAD +telnetlib.XASCII +telnetlib.XAUTH +telnetlib.XDISPLOC +telnetlib.selectors(??) +telnetlib.socket(??) +telnetlib.sys(??) +telnetlib.test(??) +telnetlib.theNULL +tempfile.NamedTemporaryFile(??) +tempfile.SpooledTemporaryFile(??) +tempfile.TMP_MAX +tempfile.TemporaryDirectory(??) +tempfile.TemporaryFile(??) +tempfile.gettempdir(??) +tempfile.gettempdirb(??) +tempfile.gettempprefix(??) +tempfile.gettempprefixb(??) +tempfile.mkdtemp(??) +tempfile.mkstemp(??) +tempfile.mktemp(??) +tempfile.tempdir(??) +tempfile.template +textwrap.TextWrapper(??) +textwrap.dedent(??) +textwrap.fill(??) +textwrap.indent(??) +textwrap.re(??) +textwrap.shorten(??) +textwrap.wrap(??) +threading.Barrier(??) +threading.BoundedSemaphore(??) +threading.BrokenBarrierError(??) +threading.Condition(??) +threading.Event(??) +threading.ExceptHookArgs(??) +threading.Lock(??) +threading.RLock(??) +threading.Semaphore(??) +threading.TIMEOUT_MAX +threading.Thread(??) +threading.ThreadError(??) +threading.Timer(??) +threading.WeakSet(??) +threading.activeCount(??) +threading.active_count(??) +threading.currentThread(??) +threading.current_thread(??) +threading.enumerate(??) +threading.excepthook(exc_type, exc_value, exc_traceback, thread) +threading.functools(??) +threading.get_ident() -> integer +threading.get_native_id() -> integer +threading.local(??) +threading.main_thread(??) +threading.setprofile(??) +threading.settrace(??) +threading.stack_size([size]) -> size +time.altzone +time.asctime([tuple]) -> string +time.ctime(seconds) -> string +time.daylight +time.get_clock_info(name: str) -> dict +time.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, +time.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, +time.mktime(tuple) -> floating point number +time.monotonic() -> float +time.monotonic_ns() -> int +time.perf_counter() -> float +time.perf_counter_ns() -> int +time.process_time() -> float +time.process_time_ns(??) +time.sleep(seconds) +time.strftime(format[, tuple]) -> string +time.strptime(string, format) -> struct_time +time.struct_time(??) +time.time() -> floating point number +time.time_ns() -> int +time.timezone +time.tzname(??) +time.tzset() +timeit.Timer(??) +timeit.default_number +timeit.default_repeat +timeit.default_timer(??) +timeit.dummy_src_name +timeit.gc(??) +timeit.itertools(??) +timeit.main(??) +timeit.reindent(??) +timeit.repeat(??) +timeit.sys(??) +timeit.template +timeit.time(??) +timeit.timeit(??) +tkinter.ACTIVE +tkinter.ALL +tkinter.ANCHOR +tkinter.ARC +tkinter.BASELINE +tkinter.BEVEL +tkinter.BOTH +tkinter.BOTTOM +tkinter.BROWSE +tkinter.BUTT +tkinter.BaseWidget(??) +tkinter.BitmapImage(??) +tkinter.BooleanVar(??) +tkinter.Button(??) +tkinter.CASCADE +tkinter.CENTER +tkinter.CHAR +tkinter.CHECKBUTTON +tkinter.CHORD +tkinter.COMMAND +tkinter.CURRENT +tkinter.CallWrapper(??) +tkinter.Canvas(??) +tkinter.Checkbutton(??) +tkinter.DISABLED +tkinter.DOTBOX +tkinter.DoubleVar(??) +tkinter.E +tkinter.END +tkinter.EW +tkinter.EXCEPTION +tkinter.EXTENDED +tkinter.Entry(??) +tkinter.Event(??) +tkinter.EventType(??) +tkinter.FALSE +tkinter.FIRST +tkinter.FLAT +tkinter.Frame(??) +tkinter.GROOVE +tkinter.Grid(??) +tkinter.HIDDEN +tkinter.HORIZONTAL +tkinter.INSERT +tkinter.INSIDE +tkinter.Image(??) +tkinter.IntVar(??) +tkinter.LAST +tkinter.LEFT +tkinter.Label(??) +tkinter.LabelFrame(??) +tkinter.Listbox(??) +tkinter.MITER +tkinter.MOVETO +tkinter.MULTIPLE +tkinter.Menu(??) +tkinter.Menubutton(??) +tkinter.Message(??) +tkinter.Misc(??) +tkinter.N +tkinter.NE +tkinter.NO +tkinter.NONE +tkinter.NORMAL +tkinter.NS +tkinter.NSEW +tkinter.NUMERIC +tkinter.NW +tkinter.NoDefaultRoot(??) +tkinter.OFF +tkinter.ON +tkinter.OUTSIDE +tkinter.OptionMenu(??) +tkinter.PAGES +tkinter.PIESLICE +tkinter.PROJECTING +tkinter.Pack(??) +tkinter.PanedWindow(??) +tkinter.PhotoImage(??) +tkinter.Place(??) +tkinter.RADIOBUTTON +tkinter.RAISED +tkinter.READABLE +tkinter.RIDGE +tkinter.RIGHT +tkinter.ROUND +tkinter.Radiobutton(??) +tkinter.S +tkinter.SCROLL +tkinter.SE +tkinter.SEL +tkinter.SEL_FIRST +tkinter.SEL_LAST +tkinter.SEPARATOR +tkinter.SINGLE +tkinter.SOLID +tkinter.SUNKEN +tkinter.SW +tkinter.Scale(??) +tkinter.Scrollbar(??) +tkinter.Spinbox(??) +tkinter.StringVar(??) +tkinter.TOP +tkinter.TRUE +tkinter.Tcl(??) +tkinter.TclError(??) +tkinter.TclVersion +tkinter.Text(??) +tkinter.Tk(??) +tkinter.TkVersion +tkinter.Toplevel(??) +tkinter.UNDERLINE +tkinter.UNITS +tkinter.VERTICAL +tkinter.Variable(??) +tkinter.W +tkinter.WORD +tkinter.WRITABLE +tkinter.Widget(??) +tkinter.Wm(??) +tkinter.X +tkinter.XView(??) +tkinter.Y +tkinter.YES +tkinter.YView(??) +tkinter.colorchooser(??) +tkinter.colorchooser.Chooser(??) +tkinter.colorchooser.Dialog(??) +tkinter.colorchooser.askcolor(??) +tkinter.commondialog(??) +tkinter.commondialog.Dialog(??) +tkinter.commondialog.Frame(??) +tkinter.constants(??) +tkinter.constants.ACTIVE +tkinter.constants.ALL +tkinter.constants.ANCHOR +tkinter.constants.ARC +tkinter.constants.BASELINE +tkinter.constants.BEVEL +tkinter.constants.BOTH +tkinter.constants.BOTTOM +tkinter.constants.BROWSE +tkinter.constants.BUTT +tkinter.constants.CASCADE +tkinter.constants.CENTER +tkinter.constants.CHAR +tkinter.constants.CHECKBUTTON +tkinter.constants.CHORD +tkinter.constants.COMMAND +tkinter.constants.CURRENT +tkinter.constants.DISABLED +tkinter.constants.DOTBOX +tkinter.constants.E +tkinter.constants.END +tkinter.constants.EW +tkinter.constants.EXTENDED +tkinter.constants.FALSE +tkinter.constants.FIRST +tkinter.constants.FLAT +tkinter.constants.GROOVE +tkinter.constants.HIDDEN +tkinter.constants.HORIZONTAL +tkinter.constants.INSERT +tkinter.constants.INSIDE +tkinter.constants.LAST +tkinter.constants.LEFT +tkinter.constants.MITER +tkinter.constants.MOVETO +tkinter.constants.MULTIPLE +tkinter.constants.N +tkinter.constants.NE +tkinter.constants.NO +tkinter.constants.NONE +tkinter.constants.NORMAL +tkinter.constants.NS +tkinter.constants.NSEW +tkinter.constants.NUMERIC +tkinter.constants.NW +tkinter.constants.OFF +tkinter.constants.ON +tkinter.constants.OUTSIDE +tkinter.constants.PAGES +tkinter.constants.PIESLICE +tkinter.constants.PROJECTING +tkinter.constants.RADIOBUTTON +tkinter.constants.RAISED +tkinter.constants.RIDGE +tkinter.constants.RIGHT +tkinter.constants.ROUND +tkinter.constants.S +tkinter.constants.SCROLL +tkinter.constants.SE +tkinter.constants.SEL +tkinter.constants.SEL_FIRST +tkinter.constants.SEL_LAST +tkinter.constants.SEPARATOR +tkinter.constants.SINGLE +tkinter.constants.SOLID +tkinter.constants.SUNKEN +tkinter.constants.SW +tkinter.constants.TOP +tkinter.constants.TRUE +tkinter.constants.UNDERLINE +tkinter.constants.UNITS +tkinter.constants.VERTICAL +tkinter.constants.W +tkinter.constants.WORD +tkinter.constants.X +tkinter.constants.Y +tkinter.constants.YES +tkinter.dialog(??) +tkinter.dialog.Button(??) +tkinter.dialog.DIALOG_ICON +tkinter.dialog.Dialog(??) +tkinter.dialog.Pack(??) +tkinter.dialog.TclError(??) +tkinter.dialog.Widget(??) +tkinter.dnd(??) +tkinter.dnd.DndHandler(??) +tkinter.dnd.Icon(??) +tkinter.dnd.Tester(??) +tkinter.dnd.dnd_start(??) +tkinter.dnd.test(??) +tkinter.dnd.tkinter(??) +tkinter.enum(??) +tkinter.filedialog(??) +tkinter.filedialog.BOTH +tkinter.filedialog.BOTTOM +tkinter.filedialog.Button(??) +tkinter.filedialog.Dialog(??) +tkinter.filedialog.Directory(??) +tkinter.filedialog.END +tkinter.filedialog.Entry(??) +tkinter.filedialog.FileDialog(??) +tkinter.filedialog.Frame(??) +tkinter.filedialog.LEFT +tkinter.filedialog.Listbox(??) +tkinter.filedialog.LoadFileDialog(??) +tkinter.filedialog.Open(??) +tkinter.filedialog.RIGHT +tkinter.filedialog.SaveAs(??) +tkinter.filedialog.SaveFileDialog(??) +tkinter.filedialog.Scrollbar(??) +tkinter.filedialog.TOP +tkinter.filedialog.Tk(??) +tkinter.filedialog.Toplevel(??) +tkinter.filedialog.X +tkinter.filedialog.Y +tkinter.filedialog.YES +tkinter.filedialog.askdirectory(??) +tkinter.filedialog.askopenfile(??) +tkinter.filedialog.askopenfilename(??) +tkinter.filedialog.askopenfilenames(??) +tkinter.filedialog.askopenfiles(??) +tkinter.filedialog.asksaveasfile(??) +tkinter.filedialog.asksaveasfilename(??) +tkinter.filedialog.commondialog(??) +tkinter.filedialog.dialogstates(??) +tkinter.filedialog.fnmatch(??) +tkinter.filedialog.os(??) +tkinter.filedialog.test(??) +tkinter.font(??) +tkinter.font.BOLD +tkinter.font.Font(??) +tkinter.font.ITALIC +tkinter.font.NORMAL +tkinter.font.ROMAN +tkinter.font.families(??) +tkinter.font.itertools(??) +tkinter.font.names(??) +tkinter.font.nametofont(??) +tkinter.font.tkinter(??) +tkinter.getboolean(??) +tkinter.getdouble(??) +tkinter.getint(??) +tkinter.image_names(??) +tkinter.image_types(??) +tkinter.mainloop(??) +tkinter.messagebox(??) +tkinter.messagebox.ABORT +tkinter.messagebox.ABORTRETRYIGNORE +tkinter.messagebox.CANCEL +tkinter.messagebox.Dialog(??) +tkinter.messagebox.ERROR +tkinter.messagebox.IGNORE +tkinter.messagebox.INFO +tkinter.messagebox.Message(??) +tkinter.messagebox.NO +tkinter.messagebox.OK +tkinter.messagebox.OKCANCEL +tkinter.messagebox.QUESTION +tkinter.messagebox.RETRY +tkinter.messagebox.RETRYCANCEL +tkinter.messagebox.WARNING +tkinter.messagebox.YES +tkinter.messagebox.YESNO +tkinter.messagebox.YESNOCANCEL +tkinter.messagebox.askokcancel(??) +tkinter.messagebox.askquestion(??) +tkinter.messagebox.askretrycancel(??) +tkinter.messagebox.askyesno(??) +tkinter.messagebox.askyesnocancel(??) +tkinter.messagebox.showerror(??) +tkinter.messagebox.showinfo(??) +tkinter.messagebox.showwarning(??) +tkinter.re(??) +tkinter.scrolledtext(??) +tkinter.scrolledtext.BOTH +tkinter.scrolledtext.Frame(??) +tkinter.scrolledtext.Grid(??) +tkinter.scrolledtext.LEFT +tkinter.scrolledtext.Pack(??) +tkinter.scrolledtext.Place(??) +tkinter.scrolledtext.RIGHT +tkinter.scrolledtext.Scrollbar(??) +tkinter.scrolledtext.ScrolledText(??) +tkinter.scrolledtext.Text(??) +tkinter.scrolledtext.Y +tkinter.scrolledtext.example(??) +tkinter.simpledialog(??) +tkinter.simpledialog.ACTIVE +tkinter.simpledialog.ALL +tkinter.simpledialog.ANCHOR +tkinter.simpledialog.ARC +tkinter.simpledialog.BASELINE +tkinter.simpledialog.BEVEL +tkinter.simpledialog.BOTH +tkinter.simpledialog.BOTTOM +tkinter.simpledialog.BROWSE +tkinter.simpledialog.BUTT +tkinter.simpledialog.BaseWidget(??) +tkinter.simpledialog.BitmapImage(??) +tkinter.simpledialog.BooleanVar(??) +tkinter.simpledialog.Button(??) +tkinter.simpledialog.CASCADE +tkinter.simpledialog.CENTER +tkinter.simpledialog.CHAR +tkinter.simpledialog.CHECKBUTTON +tkinter.simpledialog.CHORD +tkinter.simpledialog.COMMAND +tkinter.simpledialog.CURRENT +tkinter.simpledialog.CallWrapper(??) +tkinter.simpledialog.Canvas(??) +tkinter.simpledialog.Checkbutton(??) +tkinter.simpledialog.DISABLED +tkinter.simpledialog.DOTBOX +tkinter.simpledialog.Dialog(??) +tkinter.simpledialog.DoubleVar(??) +tkinter.simpledialog.E +tkinter.simpledialog.END +tkinter.simpledialog.EW +tkinter.simpledialog.EXCEPTION +tkinter.simpledialog.EXTENDED +tkinter.simpledialog.Entry(??) +tkinter.simpledialog.Event(??) +tkinter.simpledialog.EventType(??) +tkinter.simpledialog.FALSE +tkinter.simpledialog.FIRST +tkinter.simpledialog.FLAT +tkinter.simpledialog.Frame(??) +tkinter.simpledialog.GROOVE +tkinter.simpledialog.Grid(??) +tkinter.simpledialog.HIDDEN +tkinter.simpledialog.HORIZONTAL +tkinter.simpledialog.INSERT +tkinter.simpledialog.INSIDE +tkinter.simpledialog.Image(??) +tkinter.simpledialog.IntVar(??) +tkinter.simpledialog.LAST +tkinter.simpledialog.LEFT +tkinter.simpledialog.Label(??) +tkinter.simpledialog.LabelFrame(??) +tkinter.simpledialog.Listbox(??) +tkinter.simpledialog.MITER +tkinter.simpledialog.MOVETO +tkinter.simpledialog.MULTIPLE +tkinter.simpledialog.Menu(??) +tkinter.simpledialog.Menubutton(??) +tkinter.simpledialog.Message(??) +tkinter.simpledialog.Misc(??) +tkinter.simpledialog.N +tkinter.simpledialog.NE +tkinter.simpledialog.NO +tkinter.simpledialog.NONE +tkinter.simpledialog.NORMAL +tkinter.simpledialog.NS +tkinter.simpledialog.NSEW +tkinter.simpledialog.NUMERIC +tkinter.simpledialog.NW +tkinter.simpledialog.NoDefaultRoot(??) +tkinter.simpledialog.OFF +tkinter.simpledialog.ON +tkinter.simpledialog.OUTSIDE +tkinter.simpledialog.OptionMenu(??) +tkinter.simpledialog.PAGES +tkinter.simpledialog.PIESLICE +tkinter.simpledialog.PROJECTING +tkinter.simpledialog.Pack(??) +tkinter.simpledialog.PanedWindow(??) +tkinter.simpledialog.PhotoImage(??) +tkinter.simpledialog.Place(??) +tkinter.simpledialog.RADIOBUTTON +tkinter.simpledialog.RAISED +tkinter.simpledialog.READABLE +tkinter.simpledialog.RIDGE +tkinter.simpledialog.RIGHT +tkinter.simpledialog.ROUND +tkinter.simpledialog.Radiobutton(??) +tkinter.simpledialog.S +tkinter.simpledialog.SCROLL +tkinter.simpledialog.SE +tkinter.simpledialog.SEL +tkinter.simpledialog.SEL_FIRST +tkinter.simpledialog.SEL_LAST +tkinter.simpledialog.SEPARATOR +tkinter.simpledialog.SINGLE +tkinter.simpledialog.SOLID +tkinter.simpledialog.SUNKEN +tkinter.simpledialog.SW +tkinter.simpledialog.Scale(??) +tkinter.simpledialog.Scrollbar(??) +tkinter.simpledialog.SimpleDialog(??) +tkinter.simpledialog.Spinbox(??) +tkinter.simpledialog.StringVar(??) +tkinter.simpledialog.TOP +tkinter.simpledialog.TRUE +tkinter.simpledialog.Tcl(??) +tkinter.simpledialog.TclError(??) +tkinter.simpledialog.TclVersion +tkinter.simpledialog.Text(??) +tkinter.simpledialog.Tk(??) +tkinter.simpledialog.TkVersion +tkinter.simpledialog.Toplevel(??) +tkinter.simpledialog.UNDERLINE +tkinter.simpledialog.UNITS +tkinter.simpledialog.VERTICAL +tkinter.simpledialog.Variable(??) +tkinter.simpledialog.W +tkinter.simpledialog.WORD +tkinter.simpledialog.WRITABLE +tkinter.simpledialog.Widget(??) +tkinter.simpledialog.Wm(??) +tkinter.simpledialog.X +tkinter.simpledialog.XView(??) +tkinter.simpledialog.Y +tkinter.simpledialog.YES +tkinter.simpledialog.YView(??) +tkinter.simpledialog.askfloat(??) +tkinter.simpledialog.askinteger(??) +tkinter.simpledialog.askstring(??) +tkinter.simpledialog.getboolean(??) +tkinter.simpledialog.getdouble(??) +tkinter.simpledialog.getint(??) +tkinter.simpledialog.image_names(??) +tkinter.simpledialog.image_types(??) +tkinter.simpledialog.mainloop(??) +tkinter.simpledialog.messagebox(??) +tkinter.simpledialog.tkinter(??) +tkinter.sys(??) +tkinter.tix(??) +tkinter.tix.ACROSSTOP +tkinter.tix.ACTIVE +tkinter.tix.ALL +tkinter.tix.ANCHOR +tkinter.tix.ARC +tkinter.tix.ASCII +tkinter.tix.AUTO +tkinter.tix.BALLOON +tkinter.tix.BASELINE +tkinter.tix.BEVEL +tkinter.tix.BOTH +tkinter.tix.BOTTOM +tkinter.tix.BROWSE +tkinter.tix.BUTT +tkinter.tix.Balloon(??) +tkinter.tix.BaseWidget(??) +tkinter.tix.BitmapImage(??) +tkinter.tix.BooleanVar(??) +tkinter.tix.Button(??) +tkinter.tix.ButtonBox(??) +tkinter.tix.CASCADE +tkinter.tix.CELL +tkinter.tix.CENTER +tkinter.tix.CHAR +tkinter.tix.CHECKBUTTON +tkinter.tix.CHORD +tkinter.tix.COLUMN +tkinter.tix.COMMAND +tkinter.tix.CObjView(??) +tkinter.tix.CURRENT +tkinter.tix.CallWrapper(??) +tkinter.tix.Canvas(??) +tkinter.tix.CheckList(??) +tkinter.tix.Checkbutton(??) +tkinter.tix.ComboBox(??) +tkinter.tix.Control(??) +tkinter.tix.DECREASING +tkinter.tix.DISABLED +tkinter.tix.DOTBOX +tkinter.tix.DialogShell(??) +tkinter.tix.DirList(??) +tkinter.tix.DirSelectBox(??) +tkinter.tix.DirSelectDialog(??) +tkinter.tix.DirTree(??) +tkinter.tix.DisplayStyle(??) +tkinter.tix.DoubleVar(??) +tkinter.tix.E +tkinter.tix.END +tkinter.tix.EW +tkinter.tix.EXCEPTION +tkinter.tix.EXTENDED +tkinter.tix.Entry(??) +tkinter.tix.Event(??) +tkinter.tix.EventType(??) +tkinter.tix.ExFileSelectBox(??) +tkinter.tix.ExFileSelectDialog(??) +tkinter.tix.FALSE +tkinter.tix.FIRST +tkinter.tix.FLAT +tkinter.tix.FileEntry(??) +tkinter.tix.FileSelectBox(??) +tkinter.tix.FileSelectDialog(??) +tkinter.tix.FileTypeList(??) +tkinter.tix.Form(??) +tkinter.tix.Frame(??) +tkinter.tix.GROOVE +tkinter.tix.Grid(??) +tkinter.tix.HIDDEN +tkinter.tix.HList(??) +tkinter.tix.HORIZONTAL +tkinter.tix.IMAGE +tkinter.tix.IMAGETEXT +tkinter.tix.IMMEDIATE +tkinter.tix.INCREASING +tkinter.tix.INSERT +tkinter.tix.INSIDE +tkinter.tix.INTEGER +tkinter.tix.Image(??) +tkinter.tix.InputOnly(??) +tkinter.tix.IntVar(??) +tkinter.tix.LAST +tkinter.tix.LEFT +tkinter.tix.Label(??) +tkinter.tix.LabelEntry(??) +tkinter.tix.LabelFrame(??) +tkinter.tix.ListNoteBook(??) +tkinter.tix.Listbox(??) +tkinter.tix.MAIN +tkinter.tix.MAX +tkinter.tix.MITER +tkinter.tix.MOVETO +tkinter.tix.MULTIPLE +tkinter.tix.Menu(??) +tkinter.tix.Menubutton(??) +tkinter.tix.Message(??) +tkinter.tix.Meter(??) +tkinter.tix.Misc(??) +tkinter.tix.N +tkinter.tix.NE +tkinter.tix.NO +tkinter.tix.NONE +tkinter.tix.NORMAL +tkinter.tix.NS +tkinter.tix.NSEW +tkinter.tix.NUMERIC +tkinter.tix.NW +tkinter.tix.NoDefaultRoot(??) +tkinter.tix.NoteBook(??) +tkinter.tix.NoteBookFrame(??) +tkinter.tix.OFF +tkinter.tix.ON +tkinter.tix.OUTSIDE +tkinter.tix.OptionMenu(??) +tkinter.tix.OptionName(??) +tkinter.tix.PAGES +tkinter.tix.PIESLICE +tkinter.tix.PROJECTING +tkinter.tix.Pack(??) +tkinter.tix.PanedWindow(??) +tkinter.tix.PhotoImage(??) +tkinter.tix.Place(??) +tkinter.tix.PopupMenu(??) +tkinter.tix.RADIOBUTTON +tkinter.tix.RAISED +tkinter.tix.READABLE +tkinter.tix.REAL +tkinter.tix.RIDGE +tkinter.tix.RIGHT +tkinter.tix.ROUND +tkinter.tix.ROW +tkinter.tix.Radiobutton(??) +tkinter.tix.ResizeHandle(??) +tkinter.tix.S +tkinter.tix.SCROLL +tkinter.tix.SE +tkinter.tix.SEL +tkinter.tix.SEL_FIRST +tkinter.tix.SEL_LAST +tkinter.tix.SEPARATOR +tkinter.tix.SINGLE +tkinter.tix.SOLID +tkinter.tix.STATUS +tkinter.tix.SUNKEN +tkinter.tix.SW +tkinter.tix.S_REGION +tkinter.tix.Scale(??) +tkinter.tix.Scrollbar(??) +tkinter.tix.ScrolledGrid(??) +tkinter.tix.ScrolledHList(??) +tkinter.tix.ScrolledListBox(??) +tkinter.tix.ScrolledTList(??) +tkinter.tix.ScrolledText(??) +tkinter.tix.ScrolledWindow(??) +tkinter.tix.Select(??) +tkinter.tix.Shell(??) +tkinter.tix.Spinbox(??) +tkinter.tix.StdButtonBox(??) +tkinter.tix.StringVar(??) +tkinter.tix.TCL_ALL_EVENTS +tkinter.tix.TCL_DONT_WAIT +tkinter.tix.TCL_FILE_EVENTS +tkinter.tix.TCL_IDLE_EVENTS +tkinter.tix.TCL_TIMER_EVENTS +tkinter.tix.TCL_WINDOW_EVENTS +tkinter.tix.TEXT +tkinter.tix.TList(??) +tkinter.tix.TOP +tkinter.tix.TRUE +tkinter.tix.Tcl(??) +tkinter.tix.TclError(??) +tkinter.tix.TclVersion +tkinter.tix.Text(??) +tkinter.tix.TixSubWidget(??) +tkinter.tix.TixWidget(??) +tkinter.tix.Tk(??) +tkinter.tix.TkVersion +tkinter.tix.Toplevel(??) +tkinter.tix.Tree(??) +tkinter.tix.UNDERLINE +tkinter.tix.UNITS +tkinter.tix.VERTICAL +tkinter.tix.Variable(??) +tkinter.tix.W +tkinter.tix.WINDOW +tkinter.tix.WORD +tkinter.tix.WRITABLE +tkinter.tix.Widget(??) +tkinter.tix.Wm(??) +tkinter.tix.X +tkinter.tix.XView(??) +tkinter.tix.X_REGION +tkinter.tix.Y +tkinter.tix.YES +tkinter.tix.YView(??) +tkinter.tix.Y_REGION +tkinter.tix.getboolean(??) +tkinter.tix.getdouble(??) +tkinter.tix.getint(??) +tkinter.tix.image_names(??) +tkinter.tix.image_types(??) +tkinter.tix.mainloop(??) +tkinter.tix.os(??) +tkinter.tix.tixCommand(??) +tkinter.tix.tkinter(??) +tkinter.ttk(??) +tkinter.ttk.Button(??) +tkinter.ttk.Checkbutton(??) +tkinter.ttk.Combobox(??) +tkinter.ttk.Entry(??) +tkinter.ttk.Frame(??) +tkinter.ttk.Label(??) +tkinter.ttk.LabelFrame(??) +tkinter.ttk.LabeledScale(??) +tkinter.ttk.Labelframe(??) +tkinter.ttk.Menubutton(??) +tkinter.ttk.Notebook(??) +tkinter.ttk.OptionMenu(??) +tkinter.ttk.PanedWindow(??) +tkinter.ttk.Panedwindow(??) +tkinter.ttk.Progressbar(??) +tkinter.ttk.Radiobutton(??) +tkinter.ttk.Scale(??) +tkinter.ttk.Scrollbar(??) +tkinter.ttk.Separator(??) +tkinter.ttk.Sizegrip(??) +tkinter.ttk.Spinbox(??) +tkinter.ttk.Style(??) +tkinter.ttk.Treeview(??) +tkinter.ttk.Widget(??) +tkinter.ttk.setup_master(??) +tkinter.ttk.tclobjs_to_py(??) +tkinter.ttk.tkinter(??) +tkinter.types(??) +tkinter.wantobjects +token.AMPER +token.AMPEREQUAL +token.ASYNC +token.AT +token.ATEQUAL +token.AWAIT +token.CIRCUMFLEX +token.CIRCUMFLEXEQUAL +token.COLON +token.COLONEQUAL +token.COMMA +token.COMMENT +token.DEDENT +token.DOT +token.DOUBLESLASH +token.DOUBLESLASHEQUAL +token.DOUBLESTAR +token.DOUBLESTAREQUAL +token.ELLIPSIS +token.ENCODING +token.ENDMARKER +token.EQEQUAL +token.EQUAL +token.ERRORTOKEN +token.EXACT_TOKEN_TYPES(??) +token.GREATER +token.GREATEREQUAL +token.INDENT +token.ISEOF(??) +token.ISNONTERMINAL(??) +token.ISTERMINAL(??) +token.LBRACE +token.LEFTSHIFT +token.LEFTSHIFTEQUAL +token.LESS +token.LESSEQUAL +token.LPAR +token.LSQB +token.MINEQUAL +token.MINUS +token.NAME +token.NEWLINE +token.NL +token.NOTEQUAL +token.NT_OFFSET +token.NUMBER +token.N_TOKENS +token.OP +token.PERCENT +token.PERCENTEQUAL +token.PLUS +token.PLUSEQUAL +token.RARROW +token.RBRACE +token.RIGHTSHIFT +token.RIGHTSHIFTEQUAL +token.RPAR +token.RSQB +token.SEMI +token.SLASH +token.SLASHEQUAL +token.STAR +token.STAREQUAL +token.STRING +token.TILDE +token.TYPE_COMMENT +token.TYPE_IGNORE +token.VBAR +token.VBAREQUAL +token.tok_name(??) +tokenize.AMPER +tokenize.AMPEREQUAL +tokenize.ASYNC +tokenize.AT +tokenize.ATEQUAL +tokenize.AWAIT +tokenize.BOM_UTF8 +tokenize.Binnumber +tokenize.CIRCUMFLEX +tokenize.CIRCUMFLEXEQUAL +tokenize.COLON +tokenize.COLONEQUAL +tokenize.COMMA +tokenize.COMMENT +tokenize.Comment +tokenize.ContStr +tokenize.DEDENT +tokenize.DOT +tokenize.DOUBLESLASH +tokenize.DOUBLESLASHEQUAL +tokenize.DOUBLESTAR +tokenize.DOUBLESTAREQUAL +tokenize.Decnumber +tokenize.Double +tokenize.Double3 +tokenize.ELLIPSIS +tokenize.ENCODING +tokenize.ENDMARKER +tokenize.EQEQUAL +tokenize.EQUAL +tokenize.ERRORTOKEN +tokenize.EXACT_TOKEN_TYPES(??) +tokenize.Expfloat +tokenize.Exponent +tokenize.Floatnumber +tokenize.Funny +tokenize.GREATER +tokenize.GREATEREQUAL +tokenize.Hexnumber +tokenize.INDENT +tokenize.ISEOF(??) +tokenize.ISNONTERMINAL(??) +tokenize.ISTERMINAL(??) +tokenize.Ignore +tokenize.Imagnumber +tokenize.Intnumber +tokenize.LBRACE +tokenize.LEFTSHIFT +tokenize.LEFTSHIFTEQUAL +tokenize.LESS +tokenize.LESSEQUAL +tokenize.LPAR +tokenize.LSQB +tokenize.MINEQUAL +tokenize.MINUS +tokenize.NAME +tokenize.NEWLINE +tokenize.NL +tokenize.NOTEQUAL +tokenize.NT_OFFSET +tokenize.NUMBER +tokenize.N_TOKENS +tokenize.Name +tokenize.Number +tokenize.OP +tokenize.Octnumber +tokenize.PERCENT +tokenize.PERCENTEQUAL +tokenize.PLUS +tokenize.PLUSEQUAL +tokenize.PlainToken +tokenize.Pointfloat +tokenize.PseudoExtras +tokenize.PseudoToken +tokenize.RARROW +tokenize.RBRACE +tokenize.RIGHTSHIFT +tokenize.RIGHTSHIFTEQUAL +tokenize.RPAR +tokenize.RSQB +tokenize.SEMI +tokenize.SLASH +tokenize.SLASHEQUAL +tokenize.STAR +tokenize.STAREQUAL +tokenize.STRING +tokenize.Single +tokenize.Single3 +tokenize.Special +tokenize.StopTokenizing(??) +tokenize.String +tokenize.StringPrefix +tokenize.TILDE +tokenize.TYPE_COMMENT +tokenize.TYPE_IGNORE +tokenize.TextIOWrapper(??) +tokenize.Token +tokenize.TokenError(??) +tokenize.TokenInfo(??) +tokenize.Triple +tokenize.Untokenizer(??) +tokenize.VBAR +tokenize.VBAREQUAL +tokenize.Whitespace +tokenize.any(??) +tokenize.blank_re(??) +tokenize.collections(??) +tokenize.cookie_re(??) +tokenize.detect_encoding(??) +tokenize.endpats(??) +tokenize.generate_tokens(??) +tokenize.group(??) +tokenize.lookup(??) +tokenize.main(??) +tokenize.maybe(??) +tokenize.open(??) +tokenize.re(??) +tokenize.single_quoted(??) +tokenize.sys(??) +tokenize.t +tokenize.tabsize +tokenize.tok_name(??) +tokenize.tokenize(??) +tokenize.triple_quoted(??) +tokenize.u +tokenize.untokenize(??) +trace.CoverageResults(??) +trace.PRAGMA_NOCOVER +trace.Trace(??) +trace.dis(??) +trace.gc(??) +trace.inspect(??) +trace.linecache(??) +trace.main(??) +trace.os(??) +trace.pickle(??) +trace.sys(??) +trace.sysconfig(??) +trace.threading(??) +trace.token(??) +trace.tokenize(??) +traceback.FrameSummary(??) +traceback.StackSummary(??) +traceback.TracebackException(??) +traceback.clear_frames(??) +traceback.collections(??) +traceback.extract_stack(??) +traceback.extract_tb(??) +traceback.format_exc(??) +traceback.format_exception(??) +traceback.format_exception_only(??) +traceback.format_list(??) +traceback.format_stack(??) +traceback.format_tb(??) +traceback.itertools(??) +traceback.linecache(??) +traceback.print_exc(??) +traceback.print_exception(??) +traceback.print_last(??) +traceback.print_list(??) +traceback.print_stack(??) +traceback.print_tb(??) +traceback.sys(??) +traceback.walk_stack(??) +traceback.walk_tb(??) +tracemalloc.BaseFilter(??) +tracemalloc.DomainFilter(??) +tracemalloc.Filter(??) +tracemalloc.Frame(??) +tracemalloc.Iterable(??) +tracemalloc.Sequence(??) +tracemalloc.Snapshot(??) +tracemalloc.Statistic(??) +tracemalloc.StatisticDiff(??) +tracemalloc.Trace(??) +tracemalloc.Traceback(??) +tracemalloc.clear_traces(??) +tracemalloc.fnmatch(??) +tracemalloc.get_object_traceback(??) +tracemalloc.get_traceback_limit(??) +tracemalloc.get_traced_memory(??) +tracemalloc.get_tracemalloc_memory(??) +tracemalloc.is_tracing(??) +tracemalloc.linecache(??) +tracemalloc.os(??) +tracemalloc.pickle(??) +tracemalloc.reset_peak(??) +tracemalloc.start(??) +tracemalloc.stop(??) +tracemalloc.take_snapshot(??) +tracemalloc.total_ordering(??) +tty.B0 +tty.B110 +tty.B115200 +tty.B1200 +tty.B134 +tty.B150 +tty.B1800 +tty.B19200 +tty.B200 +tty.B230400 +tty.B2400 +tty.B300 +tty.B38400 +tty.B4800 +tty.B50 +tty.B57600 +tty.B600 +tty.B75 +tty.B9600 +tty.BRKINT +tty.BS0 +tty.BS1 +tty.BSDLY +tty.CC +tty.CDSUSP +tty.CEOF +tty.CEOL +tty.CEOT +tty.CERASE +tty.CFLAG +tty.CFLUSH +tty.CINTR +tty.CKILL +tty.CLNEXT +tty.CLOCAL +tty.CQUIT +tty.CR0 +tty.CR1 +tty.CR2 +tty.CR3 +tty.CRDLY +tty.CREAD +tty.CRPRNT +tty.CRTSCTS +tty.CS5 +tty.CS6 +tty.CS7 +tty.CS8 +tty.CSIZE +tty.CSTART +tty.CSTOP +tty.CSTOPB +tty.CSUSP +tty.CWERASE +tty.ECHO +tty.ECHOCTL +tty.ECHOE +tty.ECHOK +tty.ECHOKE +tty.ECHONL +tty.ECHOPRT +tty.EXTA +tty.EXTB +tty.FF0 +tty.FF1 +tty.FFDLY +tty.FIOASYNC +tty.FIOCLEX +tty.FIONBIO +tty.FIONCLEX +tty.FIONREAD +tty.FLUSHO +tty.HUPCL +tty.ICANON +tty.ICRNL +tty.IEXTEN +tty.IFLAG +tty.IGNBRK +tty.IGNCR +tty.IGNPAR +tty.IMAXBEL +tty.INLCR +tty.INPCK +tty.ISIG +tty.ISPEED +tty.ISTRIP +tty.IXANY +tty.IXOFF +tty.IXON +tty.LFLAG +tty.NCCS +tty.NL0 +tty.NL1 +tty.NLDLY +tty.NOFLSH +tty.OCRNL +tty.OFDEL +tty.OFILL +tty.OFLAG +tty.ONLCR +tty.ONLRET +tty.ONOCR +tty.OPOST +tty.OSPEED +tty.PARENB +tty.PARMRK +tty.PARODD +tty.PENDIN +tty.TAB0 +tty.TAB1 +tty.TAB2 +tty.TAB3 +tty.TABDLY +tty.TCIFLUSH +tty.TCIOFF +tty.TCIOFLUSH +tty.TCION +tty.TCOFLUSH +tty.TCOOFF +tty.TCOON +tty.TCSADRAIN +tty.TCSAFLUSH +tty.TCSANOW +tty.TCSASOFT +tty.TIOCCONS +tty.TIOCEXCL +tty.TIOCGETD +tty.TIOCGPGRP +tty.TIOCGWINSZ +tty.TIOCMBIC +tty.TIOCMBIS +tty.TIOCMGET +tty.TIOCMSET +tty.TIOCM_CAR +tty.TIOCM_CD +tty.TIOCM_CTS +tty.TIOCM_DSR +tty.TIOCM_DTR +tty.TIOCM_LE +tty.TIOCM_RI +tty.TIOCM_RNG +tty.TIOCM_RTS +tty.TIOCM_SR +tty.TIOCM_ST +tty.TIOCNOTTY +tty.TIOCNXCL +tty.TIOCOUTQ +tty.TIOCPKT +tty.TIOCPKT_DATA +tty.TIOCPKT_DOSTOP +tty.TIOCPKT_FLUSHREAD +tty.TIOCPKT_FLUSHWRITE +tty.TIOCPKT_NOSTOP +tty.TIOCPKT_START +tty.TIOCPKT_STOP +tty.TIOCSCTTY +tty.TIOCSETD +tty.TIOCSPGRP +tty.TIOCSTI +tty.TIOCSWINSZ +tty.TOSTOP +tty.VDISCARD +tty.VEOF +tty.VEOL +tty.VEOL2 +tty.VERASE +tty.VINTR +tty.VKILL +tty.VLNEXT +tty.VMIN +tty.VQUIT +tty.VREPRINT +tty.VSTART +tty.VSTOP +tty.VSUSP +tty.VT0 +tty.VT1 +tty.VTDLY +tty.VTIME +tty.VWERASE +tty.error(??) +tty.setcbreak(??) +tty.setraw(??) +tty.tcdrain(fd) -> None +tty.tcflow(fd, action) -> None +tty.tcflush(fd, queue) -> None +tty.tcgetattr(fd) -> list_of_attrs +tty.tcsendbreak(fd, duration) -> None +tty.tcsetattr(fd, when, attributes) -> None +tuple(??) +turtle.Canvas(??) +turtle.Pen(??) +turtle.RawPen(??) +turtle.RawTurtle(??) +turtle.Screen(??) +turtle.ScrolledCanvas(??) +turtle.Shape(??) +turtle.TK(??) +turtle.TNavigator(??) +turtle.TPen(??) +turtle.Tbuffer(??) +turtle.Terminator(??) +turtle.Turtle(??) +turtle.TurtleGraphicsError(??) +turtle.TurtleScreen(??) +turtle.TurtleScreenBase(??) +turtle.Vec2D(??) +turtle.addshape(??) +turtle.back(??) +turtle.backward(??) +turtle.begin_fill(??) +turtle.begin_poly(??) +turtle.bgcolor(??) +turtle.bgpic(??) +turtle.bk(??) +turtle.bye(??) +turtle.circle(??) +turtle.clear(??) +turtle.clearscreen(??) +turtle.clearstamp(??) +turtle.clearstamps(??) +turtle.clone(??) +turtle.color(??) +turtle.colormode(??) +turtle.config_dict(??) +turtle.deepcopy(??) +turtle.degrees(??) +turtle.delay(??) +turtle.distance(??) +turtle.done(??) +turtle.dot(??) +turtle.down(??) +turtle.end_fill(??) +turtle.end_poly(??) +turtle.exitonclick(??) +turtle.fd(??) +turtle.fillcolor(??) +turtle.filling(??) +turtle.forward(??) +turtle.get_poly(??) +turtle.get_shapepoly(??) +turtle.getcanvas(??) +turtle.getmethparlist(??) +turtle.getpen(??) +turtle.getscreen(??) +turtle.getshapes(??) +turtle.getturtle(??) +turtle.goto(??) +turtle.heading(??) +turtle.hideturtle(??) +turtle.home(??) +turtle.ht(??) +turtle.inspect(??) +turtle.isdown(??) +turtle.isfile(??) +turtle.isvisible(??) +turtle.join(??) +turtle.left(??) +turtle.listen(??) +turtle.lt(??) +turtle.mainloop(??) +turtle.math(??) +turtle.mode(??) +turtle.numinput(??) +turtle.onclick(??) +turtle.ondrag(??) +turtle.onkey(??) +turtle.onkeypress(??) +turtle.onkeyrelease(??) +turtle.onrelease(??) +turtle.onscreenclick(??) +turtle.ontimer(??) +turtle.pd(??) +turtle.pen(??) +turtle.pencolor(??) +turtle.pendown(??) +turtle.pensize(??) +turtle.penup(??) +turtle.pos(??) +turtle.position(??) +turtle.pu(??) +turtle.radians(??) +turtle.read_docstrings(??) +turtle.readconfig(??) +turtle.register_shape(??) +turtle.reset(??) +turtle.resetscreen(??) +turtle.resizemode(??) +turtle.right(??) +turtle.rt(??) +turtle.screensize(??) +turtle.seth(??) +turtle.setheading(??) +turtle.setpos(??) +turtle.setposition(??) +turtle.settiltangle(??) +turtle.setundobuffer(??) +turtle.setup(??) +turtle.setworldcoordinates(??) +turtle.setx(??) +turtle.sety(??) +turtle.shape(??) +turtle.shapesize(??) +turtle.shapetransform(??) +turtle.shearfactor(??) +turtle.showturtle(??) +turtle.simpledialog(??) +turtle.speed(??) +turtle.split(??) +turtle.st(??) +turtle.stamp(??) +turtle.sys(??) +turtle.textinput(??) +turtle.tilt(??) +turtle.tiltangle(??) +turtle.time(??) +turtle.title(??) +turtle.towards(??) +turtle.tracer(??) +turtle.turtles(??) +turtle.turtlesize(??) +turtle.types(??) +turtle.undo (repeatedly) the last turtle action. +turtle.undobufferentries(??) +turtle.up(??) +turtle.update(??) +turtle.width(??) +turtle.window_height(??) +turtle.window_width(??) +turtle.write(??) +turtle.write_docstringdict(??) +turtle.xcor(??) +turtle.ycor(??) +type(object_or_name, bases, dict) +types.AsyncGeneratorType(??) +types.BuiltinFunctionType(??) +types.BuiltinMethodType(??) +types.CellType(??) +types.ClassMethodDescriptorType(??) +types.CodeType(??) +types.CoroutineType(??) +types.DynamicClassAttribute(??) +types.FrameType(??) +types.FunctionType(??) +types.GeneratorType(??) +types.GenericAlias(??) +types.GetSetDescriptorType(??) +types.LambdaType(??) +types.MappingProxyType(??) +types.MemberDescriptorType(??) +types.MethodDescriptorType(??) +types.MethodType(??) +types.MethodWrapperType(??) +types.ModuleType(??) +types.SimpleNamespace(??) +types.TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno) +types.WrapperDescriptorType(??) +types.coroutine(??) +types.new_class(??) +types.prepare_class(??) +types.resolve_bases(??) +typing.ABCMeta(??) +typing.AbstractSet(??) +typing.Annotated(??) +typing.Any(??) +typing.AnyStr(??) +typing.AsyncContextManager(??) +typing.AsyncGenerator(??) +typing.AsyncIterable(??) +typing.AsyncIterator(??) +typing.Awaitable(??) +typing.BinaryIO(??) +typing.ByteString(??) +typing.CT_co(??) +typing.Callable(??) +typing.ChainMap(??) +typing.ClassVar(??) +typing.Collection(??) +typing.Container(??) +typing.ContextManager(??) +typing.Coroutine(??) +typing.Counter(??) +typing.DefaultDict(??) +typing.Deque(??) +typing.Dict(??) +typing.EXCLUDED_ATTRIBUTES(??) +typing.Final(??) +typing.ForwardRef(??) +typing.FrozenSet(??) +typing.Generator(??) +typing.Generic(??) +typing.GenericAlias(??) +typing.Hashable(??) +typing.IO(??) +typing.ItemsView(??) +typing.Iterable(??) +typing.Iterator(??) +typing.KT(??) +typing.KeysView(??) +typing.List(??) +typing.Literal(??) +typing.Mapping(??) +typing.MappingView(??) +typing.Match(??) +typing.MethodDescriptorType(??) +typing.MethodWrapperType(??) +typing.MutableMapping(??) +typing.MutableSequence(??) +typing.MutableSet(??) +typing.NamedTuple(??) +typing.NamedTupleMeta(??) +typing.NewType(??) +typing.NoReturn(??) +typing.Optional(??) +typing.OrderedDict(??) +typing.Pattern(??) +typing.Protocol(??) +typing.Reversible(??) +typing.Sequence(??) +typing.Set(??) +typing.Sized(??) +typing.SupportsAbs(??) +typing.SupportsBytes(??) +typing.SupportsComplex(??) +typing.SupportsFloat(??) +typing.SupportsIndex(??) +typing.SupportsInt(??) +typing.SupportsRound(??) +typing.T(??) +typing.TYPE_CHECKING(??) +typing.T_co(??) +typing.T_contra(??) +typing.Text(??) +typing.TextIO(??) +typing.Tuple(??) +typing.Type(??) +typing.TypeVar(??) +typing.TypedDict(??) +typing.Union(??) +typing.VT(??) +typing.VT_co(??) +typing.V_co(??) +typing.ValuesView(??) +typing.WrapperDescriptorType(??) +typing.abstractmethod(??) +typing.cast(??) +typing.collections(??) +typing.contextlib(??) +typing.final(??) +typing.functools(??) +typing.get_args(??) +typing.get_origin(??) +typing.get_type_hints(??) +typing.io(??) +typing.no_type_check(??) +typing.no_type_check_decorator(??) +typing.operator(??) +typing.overload(??) +typing.re(??) +typing.runtime_checkable(??) +typing.stdlib_re(??) +typing.sys(??) +typing.types(??) +urllib.error(??) +urllib.error.ContentTooShortError(??) +urllib.error.HTTPError(??) +urllib.error.URLError(??) +urllib.error.urllib(??) +urllib.parse(??) +urllib.parse.DefragResult(??) +urllib.parse.DefragResultBytes(??) +urllib.parse.MAX_CACHE_SIZE +urllib.parse.ParseResult(??) +urllib.parse.ParseResultBytes(??) +urllib.parse.Quoter(??) +urllib.parse.ResultBase(??) +urllib.parse.SplitResult(??) +urllib.parse.SplitResultBytes(??) +urllib.parse.clear_cache(??) +urllib.parse.collections(??) +urllib.parse.namedtuple(??) +urllib.parse.non_hierarchical(??) +urllib.parse.parse_qs(??) +urllib.parse.parse_qsl(??) +urllib.parse.quote('abc def') -> 'abc%20def' +urllib.parse.quote_from_bytes(??) +urllib.parse.quote_plus(??) +urllib.parse.re(??) +urllib.parse.scheme_chars +urllib.parse.splitattr(??) +urllib.parse.splithost(??) +urllib.parse.splitnport(??) +urllib.parse.splitpasswd(??) +urllib.parse.splitport(??) +urllib.parse.splitquery(??) +urllib.parse.splittag(??) +urllib.parse.splittype(??) +urllib.parse.splituser(??) +urllib.parse.splitvalue(??) +urllib.parse.sys(??) +urllib.parse.to_bytes(??) +urllib.parse.types(??) +urllib.parse.unquote(??) +urllib.parse.unquote_plus(??) +urllib.parse.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.parse.unwrap(??) +urllib.parse.urldefrag(??) +urllib.parse.urlencode(??) +urllib.parse.urljoin(??) +urllib.parse.urlparse(??) +urllib.parse.urlsplit(??) +urllib.parse.urlunparse(??) +urllib.parse.urlunsplit(??) +urllib.parse.uses_fragment(??) +urllib.parse.uses_netloc(??) +urllib.parse.uses_params(??) +urllib.parse.uses_query(??) +urllib.parse.uses_relative(??) +urllib.parse.warnings(??) +urllib.request(??) +urllib.request.AbstractBasicAuthHandler(??) +urllib.request.AbstractDigestAuthHandler(??) +urllib.request.AbstractHTTPHandler(??) +urllib.request.BaseHandler(??) +urllib.request.CacheFTPHandler(??) +urllib.request.ContentTooShortError(??) +urllib.request.DataHandler(??) +urllib.request.FTPHandler(??) +urllib.request.FancyURLopener(??) +urllib.request.FileHandler(??) +urllib.request.HTTPBasicAuthHandler(??) +urllib.request.HTTPCookieProcessor(??) +urllib.request.HTTPDefaultErrorHandler(??) +urllib.request.HTTPDigestAuthHandler(??) +urllib.request.HTTPError(??) +urllib.request.HTTPErrorProcessor(??) +urllib.request.HTTPHandler(??) +urllib.request.HTTPPasswordMgr(??) +urllib.request.HTTPPasswordMgrWithDefaultRealm(??) +urllib.request.HTTPPasswordMgrWithPriorAuth(??) +urllib.request.HTTPRedirectHandler(??) +urllib.request.HTTPSHandler(??) +urllib.request.MAXFTPCACHE +urllib.request.OpenerDirector(??) +urllib.request.ProxyBasicAuthHandler(??) +urllib.request.ProxyDigestAuthHandler(??) +urllib.request.ProxyHandler(??) +urllib.request.Request(??) +urllib.request.URLError(??) +urllib.request.URLopener(??) +urllib.request.UnknownHandler(??) +urllib.request.addclosehook(??) +urllib.request.addinfourl(??) +urllib.request.base64(??) +urllib.request.bisect(??) +urllib.request.build_opener(??) +urllib.request.contextlib(??) +urllib.request.email(??) +urllib.request.ftpcache(??) +urllib.request.ftperrors(??) +urllib.request.ftpwrapper(??) +urllib.request.getproxies(??) +urllib.request.getproxies_environment(??) +urllib.request.getproxies_macosx_sysconf(??) +urllib.request.hashlib(??) +urllib.request.http(??) +urllib.request.install_opener(??) +urllib.request.io(??) +urllib.request.localhost(??) +urllib.request.noheaders(??) +urllib.request.os(??) +urllib.request.parse_http_list(??) +urllib.request.parse_keqv_list(??) +urllib.request.pathname2url(??) +urllib.request.posixpath(??) +urllib.request.proxy_bypass(??) +urllib.request.proxy_bypass_environment(??) +urllib.request.proxy_bypass_macosx_sysconf(??) +urllib.request.quote('abc def') -> 'abc%20def' +urllib.request.re(??) +urllib.request.request_host(??) +urllib.request.socket(??) +urllib.request.ssl(??) +urllib.request.string(??) +urllib.request.sys(??) +urllib.request.tempfile(??) +urllib.request.thishost(??) +urllib.request.time(??) +urllib.request.unquote(??) +urllib.request.unquote_to_bytes('abc%20def') -> b'abc def'. +urllib.request.unwrap(??) +urllib.request.url2pathname(??) +urllib.request.urlcleanup(??) +urllib.request.urljoin(??) +urllib.request.urlopen(??) +urllib.request.urlparse(??) +urllib.request.urlretrieve(??) +urllib.request.urlsplit(??) +urllib.request.urlunparse(??) +urllib.request.warnings(??) +urllib.response(??) +urllib.response.addbase(??) +urllib.response.addclosehook(??) +urllib.response.addinfo(??) +urllib.response.addinfourl(??) +urllib.response.tempfile(??) +urllib.robotparser(??) +urllib.robotparser.Entry(??) +urllib.robotparser.RequestRate(requests, seconds) +urllib.robotparser.RobotFileParser(??) +urllib.robotparser.RuleLine(??) +urllib.robotparser.collections(??) +urllib.robotparser.urllib(??) +uu.Error(??) +uu.binascii(??) +uu.decode(??) +uu.encode(??) +uu.os(??) +uu.sys(??) +uu.test(??) +uuid.Enum(??) +uuid.NAMESPACE_DNS(??) +uuid.NAMESPACE_OID(??) +uuid.NAMESPACE_URL(??) +uuid.NAMESPACE_X500(??) +uuid.RESERVED_FUTURE +uuid.RESERVED_MICROSOFT +uuid.RESERVED_NCS +uuid.RFC_4122 +uuid.SafeUUID(??) +uuid.UUID(??) +uuid.bytes_(??) +uuid.getnode(??) +uuid.int_(??) +uuid.os(??) +uuid.sys(??) +uuid.uuid1(??) +uuid.uuid3(??) +uuid.uuid4(??) +uuid.uuid5(??) +vars([object]) -> dictionary +venv.CORE_VENV_DEPS(??) +venv.EnvBuilder(??) +venv.create(??) +venv.logger(??) +venv.logging(??) +venv.main(??) +venv.os(??) +venv.shutil(??) +venv.subprocess(??) +venv.sys(??) +venv.sysconfig(??) +venv.types(??) +warnings.WarningMessage(??) +warnings.catch_warnings(??) +warnings.defaultaction +warnings.filters(??) +warnings.filterwarnings(??) +warnings.formatwarning(??) +warnings.onceregistry(??) +warnings.resetwarnings(??) +warnings.showwarning(??) +warnings.simplefilter(??) +warnings.sys(??) +warnings.warn(??) +warnings.warn_explicit(??) +wave.Chunk(??) +wave.Error(??) +wave.WAVE_FORMAT_PCM +wave.Wave_read(??) +wave.Wave_write(??) +wave.audioop(??) +wave.builtins(??) +wave.namedtuple(??) +wave.open(??) +wave.struct(??) +wave.sys(??) +weakref.CallableProxyType(??) +weakref.KeyedRef(??) +weakref.ProxyType(??) +weakref.ProxyTypes(??) +weakref.ReferenceType(??) +weakref.WeakKeyDictionary(??) +weakref.WeakMethod(??) +weakref.WeakSet(??) +weakref.WeakValueDictionary(??) +weakref.finalize(??) +weakref.getweakrefcount(??) +weakref.getweakrefs(object) -- return a list of all weak reference objects +weakref.itertools(??) +weakref.proxy(object[, callback]) -- create a proxy object that weakly +weakref.ref(??) +weakref.sys(??) +webbrowser.BackgroundBrowser(??) +webbrowser.BaseBrowser(??) +webbrowser.Chrome(??) +webbrowser.Chromium(??) +webbrowser.Elinks(??) +webbrowser.Error(??) +webbrowser.Galeon(??) +webbrowser.GenericBrowser(??) +webbrowser.Grail(??) +webbrowser.Konqueror(??) +webbrowser.MacOSX(??) +webbrowser.MacOSXOSAScript(??) +webbrowser.Mozilla(??) +webbrowser.Netscape(??) +webbrowser.Opera(??) +webbrowser.UnixBrowser(??) +webbrowser.get(??) +webbrowser.main(??) +webbrowser.open(??) +webbrowser.open_new(??) +webbrowser.open_new_tab(??) +webbrowser.os(??) +webbrowser.register(??) +webbrowser.register_X_browsers(??) +webbrowser.register_standard_browsers(??) +webbrowser.shlex(??) +webbrowser.shutil(??) +webbrowser.subprocess(??) +webbrowser.sys(??) +webbrowser.threading(??) +wsgiref.handlers(??) +wsgiref.handlers.BaseCGIHandler(??) +wsgiref.handlers.BaseHandler(??) +wsgiref.handlers.CGIHandler(??) +wsgiref.handlers.FileWrapper(??) +wsgiref.handlers.Headers(??) +wsgiref.handlers.IISCGIHandler(??) +wsgiref.handlers.SimpleHandler(??) +wsgiref.handlers.format_date_time(??) +wsgiref.handlers.guess_scheme(??) +wsgiref.handlers.is_hop_by_hop(??) +wsgiref.handlers.os(??) +wsgiref.handlers.read_environ(??) +wsgiref.handlers.sys(??) +wsgiref.handlers.time(??) +wsgiref.headers(??) +wsgiref.headers.Headers(??) +wsgiref.headers.re(??) +wsgiref.headers.tspecials(??) +wsgiref.simple_server(??) +wsgiref.simple_server.BaseHTTPRequestHandler(??) +wsgiref.simple_server.HTTPServer(??) +wsgiref.simple_server.ServerHandler(??) +wsgiref.simple_server.SimpleHandler(??) +wsgiref.simple_server.WSGIRequestHandler(??) +wsgiref.simple_server.WSGIServer(??) +wsgiref.simple_server.demo_app(??) +wsgiref.simple_server.make_server(??) +wsgiref.simple_server.python_implementation(??) +wsgiref.simple_server.server_version +wsgiref.simple_server.software_version +wsgiref.simple_server.sys(??) +wsgiref.simple_server.sys_version +wsgiref.simple_server.urllib(??) +wsgiref.util(??) +wsgiref.util.FileWrapper(??) +wsgiref.util.application_uri(??) +wsgiref.util.guess_scheme(??) +wsgiref.util.is_hop_by_hop(??) +wsgiref.util.posixpath(??) +wsgiref.util.request_uri(??) +wsgiref.util.setup_testing_defaults(??) +wsgiref.util.shift_path_info(??) +wsgiref.validate(??) +wsgiref.validate.ErrorWrapper(??) +wsgiref.validate.InputWrapper(??) +wsgiref.validate.IteratorWrapper(??) +wsgiref.validate.PartialIteratorWrapper(??) +wsgiref.validate.WSGIWarning(??) +wsgiref.validate.WriteWrapper(??) +wsgiref.validate.assert_(??) +wsgiref.validate.bad_header_value_re(??) +wsgiref.validate.check_content_type(??) +wsgiref.validate.check_environ(??) +wsgiref.validate.check_errors(??) +wsgiref.validate.check_exc_info(??) +wsgiref.validate.check_headers(??) +wsgiref.validate.check_input(??) +wsgiref.validate.check_iterator(??) +wsgiref.validate.check_status(??) +wsgiref.validate.check_string_type(??) +wsgiref.validate.header_re(??) +wsgiref.validate.re(??) +wsgiref.validate.sys(??) +wsgiref.validate.validator(??) +wsgiref.validate.warnings(??) +xdrlib.BytesIO(??) +xdrlib.ConversionError(??) +xdrlib.Error(??) +xdrlib.Packer(??) +xdrlib.Unpacker(??) +xdrlib.raise_conversion_error(??) +xdrlib.struct(??) +xdrlib.wraps(??) +xml.dom(??) +xml.dom.DOMException(??) +xml.dom.DOMSTRING_SIZE_ERR +xml.dom.DomstringSizeErr(??) +xml.dom.EMPTY_NAMESPACE(??) +xml.dom.EMPTY_PREFIX(??) +xml.dom.HIERARCHY_REQUEST_ERR +xml.dom.HierarchyRequestErr(??) +xml.dom.INDEX_SIZE_ERR +xml.dom.INUSE_ATTRIBUTE_ERR +xml.dom.INVALID_ACCESS_ERR +xml.dom.INVALID_CHARACTER_ERR +xml.dom.INVALID_MODIFICATION_ERR +xml.dom.INVALID_STATE_ERR +xml.dom.IndexSizeErr(??) +xml.dom.InuseAttributeErr(??) +xml.dom.InvalidAccessErr(??) +xml.dom.InvalidCharacterErr(??) +xml.dom.InvalidModificationErr(??) +xml.dom.InvalidStateErr(??) +xml.dom.NAMESPACE_ERR +xml.dom.NOT_FOUND_ERR +xml.dom.NOT_SUPPORTED_ERR +xml.dom.NO_DATA_ALLOWED_ERR +xml.dom.NO_MODIFICATION_ALLOWED_ERR +xml.dom.NamespaceErr(??) +xml.dom.NoDataAllowedErr(??) +xml.dom.NoModificationAllowedErr(??) +xml.dom.Node(??) +xml.dom.NodeFilter(??) +xml.dom.NodeFilter.NodeFilter(??) +xml.dom.NotFoundErr(??) +xml.dom.NotSupportedErr(??) +xml.dom.SYNTAX_ERR +xml.dom.SyntaxErr(??) +xml.dom.UserDataHandler(??) +xml.dom.VALIDATION_ERR +xml.dom.ValidationErr(??) +xml.dom.WRONG_DOCUMENT_ERR +xml.dom.WrongDocumentErr(??) +xml.dom.XHTML_NAMESPACE +xml.dom.XMLNS_NAMESPACE +xml.dom.XML_NAMESPACE +xml.dom.domreg(??) +xml.dom.domreg.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.domreg.registerDOMImplementation(name, factory) +xml.dom.domreg.registered(??) +xml.dom.domreg.sys(??) +xml.dom.domreg.well_known_implementations(??) +xml.dom.expatbuilder(??) +xml.dom.expatbuilder.CDATA_SECTION_NODE +xml.dom.expatbuilder.DOCUMENT_NODE +xml.dom.expatbuilder.EMPTY_NAMESPACE(??) +xml.dom.expatbuilder.EMPTY_PREFIX(??) +xml.dom.expatbuilder.ElementInfo(??) +xml.dom.expatbuilder.ExpatBuilder(??) +xml.dom.expatbuilder.ExpatBuilderNS(??) +xml.dom.expatbuilder.FILTER_ACCEPT +xml.dom.expatbuilder.FILTER_INTERRUPT +xml.dom.expatbuilder.FILTER_REJECT +xml.dom.expatbuilder.FILTER_SKIP +xml.dom.expatbuilder.FilterCrutch(??) +xml.dom.expatbuilder.FilterVisibilityController(??) +xml.dom.expatbuilder.FragmentBuilder(??) +xml.dom.expatbuilder.FragmentBuilderNS(??) +xml.dom.expatbuilder.InternalSubsetExtractor(??) +xml.dom.expatbuilder.Namespaces(??) +xml.dom.expatbuilder.Node(??) +xml.dom.expatbuilder.NodeFilter(??) +xml.dom.expatbuilder.ParseEscape(??) +xml.dom.expatbuilder.Rejecter(??) +xml.dom.expatbuilder.Skipper(??) +xml.dom.expatbuilder.TEXT_NODE +xml.dom.expatbuilder.XMLNS_NAMESPACE +xml.dom.expatbuilder.expat(??) +xml.dom.expatbuilder.makeBuilder(??) +xml.dom.expatbuilder.minidom(??) +xml.dom.expatbuilder.parse(??) +xml.dom.expatbuilder.parseFragment(??) +xml.dom.expatbuilder.parseFragmentString(??) +xml.dom.expatbuilder.parseString(??) +xml.dom.expatbuilder.theDOMImplementation(??) +xml.dom.expatbuilder.xmlbuilder(??) +xml.dom.getDOMImplementation(name = None, features = ()) -> DOM implementation. +xml.dom.minicompat(??) +xml.dom.minicompat.EmptyNodeList(??) +xml.dom.minicompat.NodeList(??) +xml.dom.minicompat.StringTypes(??) +xml.dom.minicompat.defproperty(??) +xml.dom.minicompat.xml(??) +xml.dom.minidom(??) +xml.dom.minidom.Attr(??) +xml.dom.minidom.AttributeList(??) +xml.dom.minidom.CDATASection(??) +xml.dom.minidom.CharacterData(??) +xml.dom.minidom.Childless(??) +xml.dom.minidom.Comment(??) +xml.dom.minidom.DOMImplementation(??) +xml.dom.minidom.DOMImplementationLS(??) +xml.dom.minidom.Document(??) +xml.dom.minidom.DocumentFragment(??) +xml.dom.minidom.DocumentLS(??) +xml.dom.minidom.DocumentType(??) +xml.dom.minidom.EMPTY_NAMESPACE(??) +xml.dom.minidom.EMPTY_PREFIX(??) +xml.dom.minidom.Element(??) +xml.dom.minidom.ElementInfo(??) +xml.dom.minidom.EmptyNodeList(??) +xml.dom.minidom.Entity(??) +xml.dom.minidom.Identified(??) +xml.dom.minidom.NamedNodeMap(??) +xml.dom.minidom.Node(??) +xml.dom.minidom.NodeList(??) +xml.dom.minidom.Notation(??) +xml.dom.minidom.ProcessingInstruction(??) +xml.dom.minidom.ReadOnlySequentialNamedNodeMap(??) +xml.dom.minidom.StringTypes(??) +xml.dom.minidom.Text(??) +xml.dom.minidom.TypeInfo(??) +xml.dom.minidom.XMLNS_NAMESPACE +xml.dom.minidom.defproperty(??) +xml.dom.minidom.domreg(??) +xml.dom.minidom.getDOMImplementation(??) +xml.dom.minidom.io(??) +xml.dom.minidom.parse(??) +xml.dom.minidom.parseString(??) +xml.dom.minidom.xml(??) +xml.dom.pulldom(??) +xml.dom.pulldom.CHARACTERS +xml.dom.pulldom.COMMENT +xml.dom.pulldom.DOMEventStream(??) +xml.dom.pulldom.END_DOCUMENT +xml.dom.pulldom.END_ELEMENT +xml.dom.pulldom.ErrorHandler(??) +xml.dom.pulldom.IGNORABLE_WHITESPACE +xml.dom.pulldom.PROCESSING_INSTRUCTION +xml.dom.pulldom.PullDOM(??) +xml.dom.pulldom.SAX2DOM(??) +xml.dom.pulldom.START_DOCUMENT +xml.dom.pulldom.START_ELEMENT +xml.dom.pulldom.default_bufsize +xml.dom.pulldom.parse(??) +xml.dom.pulldom.parseString(??) +xml.dom.pulldom.xml(??) +xml.dom.registerDOMImplementation(name, factory) +xml.dom.xmlbuilder(??) +xml.dom.xmlbuilder.DOMBuilder(??) +xml.dom.xmlbuilder.DOMBuilderFilter(??) +xml.dom.xmlbuilder.DOMEntityResolver(??) +xml.dom.xmlbuilder.DOMImplementationLS(??) +xml.dom.xmlbuilder.DOMInputSource(??) +xml.dom.xmlbuilder.DocumentLS(??) +xml.dom.xmlbuilder.Options(??) +xml.dom.xmlbuilder.copy(??) +xml.dom.xmlbuilder.xml(??) +xml.etree(??) +xml.etree.ElementInclude(??) +xml.etree.ElementInclude.DEFAULT_MAX_INCLUSION_DEPTH +xml.etree.ElementInclude.ElementTree(??) +xml.etree.ElementInclude.FatalIncludeError(??) +xml.etree.ElementInclude.LimitedRecursiveIncludeError(??) +xml.etree.ElementInclude.XINCLUDE +xml.etree.ElementInclude.XINCLUDE_FALLBACK +xml.etree.ElementInclude.XINCLUDE_INCLUDE +xml.etree.ElementInclude.copy(??) +xml.etree.ElementInclude.default_loader(??) +xml.etree.ElementInclude.include(??) +xml.etree.ElementInclude.urljoin(??) +xml.etree.ElementPath(??) +xml.etree.ElementPath.find(??) +xml.etree.ElementPath.findall(??) +xml.etree.ElementPath.findtext(??) +xml.etree.ElementPath.get_parent_map(??) +xml.etree.ElementPath.iterfind(??) +xml.etree.ElementPath.ops(??) +xml.etree.ElementPath.prepare_child(??) +xml.etree.ElementPath.prepare_descendant(??) +xml.etree.ElementPath.prepare_parent(??) +xml.etree.ElementPath.prepare_predicate(??) +xml.etree.ElementPath.prepare_self(??) +xml.etree.ElementPath.prepare_star(??) +xml.etree.ElementPath.re(??) +xml.etree.ElementPath.xpath_tokenizer(??) +xml.etree.ElementPath.xpath_tokenizer_re(??) +xml.etree.ElementTree(??) +xml.etree.ElementTree.C14NWriterTarget(??) +xml.etree.ElementTree.Comment(??) +xml.etree.ElementTree.Element(??) +xml.etree.ElementTree.ElementPath(??) +xml.etree.ElementTree.ElementTree(??) +xml.etree.ElementTree.HTML_EMPTY(??) +xml.etree.ElementTree.PI(??) +xml.etree.ElementTree.ParseError(??) +xml.etree.ElementTree.ProcessingInstruction(??) +xml.etree.ElementTree.QName(??) +xml.etree.ElementTree.SubElement(??) +xml.etree.ElementTree.TreeBuilder(??) +xml.etree.ElementTree.VERSION +xml.etree.ElementTree.XML(??) +xml.etree.ElementTree.XMLID(??) +xml.etree.ElementTree.XMLParser(??) +xml.etree.ElementTree.XMLPullParser(??) +xml.etree.ElementTree.canonicalize(??) +xml.etree.ElementTree.collections(??) +xml.etree.ElementTree.contextlib(??) +xml.etree.ElementTree.dump(??) +xml.etree.ElementTree.fromstring(??) +xml.etree.ElementTree.fromstringlist(??) +xml.etree.ElementTree.indent(??) +xml.etree.ElementTree.io(??) +xml.etree.ElementTree.iselement(??) +xml.etree.ElementTree.iterparse(??) +xml.etree.ElementTree.parse(??) +xml.etree.ElementTree.re(??) +xml.etree.ElementTree.register_namespace(??) +xml.etree.ElementTree.sys(??) +xml.etree.ElementTree.tostring(??) +xml.etree.ElementTree.tostringlist(??) +xml.etree.ElementTree.warnings(??) +xml.etree.cElementTree(??) +xml.etree.cElementTree.C14NWriterTarget(??) +xml.etree.cElementTree.Comment(??) +xml.etree.cElementTree.Element(??) +xml.etree.cElementTree.ElementTree(??) +xml.etree.cElementTree.PI(??) +xml.etree.cElementTree.ParseError(??) +xml.etree.cElementTree.ProcessingInstruction(??) +xml.etree.cElementTree.QName(??) +xml.etree.cElementTree.SubElement(??) +xml.etree.cElementTree.TreeBuilder(??) +xml.etree.cElementTree.VERSION +xml.etree.cElementTree.XML(??) +xml.etree.cElementTree.XMLID(??) +xml.etree.cElementTree.XMLParser(??) +xml.etree.cElementTree.XMLPullParser(??) +xml.etree.cElementTree.canonicalize(??) +xml.etree.cElementTree.dump(??) +xml.etree.cElementTree.fromstring(??) +xml.etree.cElementTree.fromstringlist(??) +xml.etree.cElementTree.indent(??) +xml.etree.cElementTree.iselement(??) +xml.etree.cElementTree.iterparse(??) +xml.etree.cElementTree.parse(??) +xml.etree.cElementTree.register_namespace(??) +xml.etree.cElementTree.tostring(??) +xml.etree.cElementTree.tostringlist(??) +xml.parsers(??) +xml.parsers.expat(??) +xml.parsers.expat.EXPAT_VERSION +xml.parsers.expat.ErrorString(??) +xml.parsers.expat.ExpatError(??) +xml.parsers.expat.ParserCreate(??) +xml.parsers.expat.XMLParserType(??) +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_ALWAYS +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_NEVER +xml.parsers.expat.XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE +xml.parsers.expat.error(??) +xml.parsers.expat.errors(??) +xml.parsers.expat.expat_CAPI(??) +xml.parsers.expat.features(??) +xml.parsers.expat.model(??) +xml.parsers.expat.native_encoding +xml.parsers.expat.sys(??) +xml.parsers.expat.version_info(??) +xml.sax(??) +xml.sax.ContentHandler(??) +xml.sax.ErrorHandler(??) +xml.sax.InputSource(??) +xml.sax.SAXException(??) +xml.sax.SAXNotRecognizedException(??) +xml.sax.SAXNotSupportedException(??) +xml.sax.SAXParseException(??) +xml.sax.SAXReaderNotAvailable(??) +xml.sax.default_parser_list(??) +xml.sax.expatreader(??) +xml.sax.expatreader.AttributesImpl(??) +xml.sax.expatreader.AttributesNSImpl(??) +xml.sax.expatreader.ExpatLocator(??) +xml.sax.expatreader.ExpatParser(??) +xml.sax.expatreader.SAXException(??) +xml.sax.expatreader.SAXNotRecognizedException(??) +xml.sax.expatreader.SAXNotSupportedException(??) +xml.sax.expatreader.SAXParseException(??) +xml.sax.expatreader.SAXReaderNotAvailable(??) +xml.sax.expatreader.create_parser(??) +xml.sax.expatreader.expat(??) +xml.sax.expatreader.feature_external_ges +xml.sax.expatreader.feature_external_pes +xml.sax.expatreader.feature_namespace_prefixes +xml.sax.expatreader.feature_namespaces +xml.sax.expatreader.feature_string_interning +xml.sax.expatreader.feature_validation +xml.sax.expatreader.handler(??) +xml.sax.expatreader.property_interning_dict +xml.sax.expatreader.property_xml_string +xml.sax.expatreader.saxutils(??) +xml.sax.expatreader.version +xml.sax.expatreader.xmlreader(??) +xml.sax.handler(??) +xml.sax.handler.ContentHandler(??) +xml.sax.handler.DTDHandler(??) +xml.sax.handler.EntityResolver(??) +xml.sax.handler.ErrorHandler(??) +xml.sax.handler.all_features(??) +xml.sax.handler.all_properties(??) +xml.sax.handler.feature_external_ges +xml.sax.handler.feature_external_pes +xml.sax.handler.feature_namespace_prefixes +xml.sax.handler.feature_namespaces +xml.sax.handler.feature_string_interning +xml.sax.handler.feature_validation +xml.sax.handler.property_declaration_handler +xml.sax.handler.property_dom_node +xml.sax.handler.property_encoding +xml.sax.handler.property_interning_dict +xml.sax.handler.property_lexical_handler +xml.sax.handler.property_xml_string +xml.sax.handler.version +xml.sax.make_parser(??) +xml.sax.parse(??) +xml.sax.parseString(??) +xml.sax.saxutils(??) +xml.sax.saxutils.XMLFilterBase(??) +xml.sax.saxutils.XMLGenerator(??) +xml.sax.saxutils.codecs(??) +xml.sax.saxutils.escape(??) +xml.sax.saxutils.handler(??) +xml.sax.saxutils.io(??) +xml.sax.saxutils.os(??) +xml.sax.saxutils.prepare_input_source(??) +xml.sax.saxutils.quoteattr(??) +xml.sax.saxutils.unescape(??) +xml.sax.saxutils.urllib(??) +xml.sax.saxutils.xmlreader(??) +xml.sax.xmlreader(??) +xml.sax.xmlreader.AttributesImpl(??) +xml.sax.xmlreader.AttributesNSImpl(??) +xml.sax.xmlreader.IncrementalParser(??) +xml.sax.xmlreader.InputSource(??) +xml.sax.xmlreader.Locator(??) +xml.sax.xmlreader.SAXNotRecognizedException(??) +xml.sax.xmlreader.SAXNotSupportedException(??) +xml.sax.xmlreader.XMLReader(??) +xml.sax.xmlreader.handler(??) +xmlrpc.client(??) +xmlrpc.client.APPLICATION_ERROR +xmlrpc.client.Binary(??) +xmlrpc.client.Boolean(??) +xmlrpc.client.BytesIO(??) +xmlrpc.client.DateTime(??) +xmlrpc.client.Decimal(??) +xmlrpc.client.Error(??) +xmlrpc.client.ExpatParser(??) +xmlrpc.client.FastMarshaller(??) +xmlrpc.client.FastParser(??) +xmlrpc.client.FastUnmarshaller(??) +xmlrpc.client.Fault(??) +xmlrpc.client.GzipDecodedResponse(??) +xmlrpc.client.INTERNAL_ERROR +xmlrpc.client.INVALID_ENCODING_CHAR +xmlrpc.client.INVALID_METHOD_PARAMS +xmlrpc.client.INVALID_XMLRPC +xmlrpc.client.MAXINT +xmlrpc.client.METHOD_NOT_FOUND +xmlrpc.client.MININT +xmlrpc.client.Marshaller(??) +xmlrpc.client.MultiCall(??) +xmlrpc.client.MultiCallIterator(??) +xmlrpc.client.NOT_WELLFORMED_ERROR +xmlrpc.client.PARSE_ERROR +xmlrpc.client.ProtocolError(??) +xmlrpc.client.ResponseError(??) +xmlrpc.client.SERVER_ERROR +xmlrpc.client.SYSTEM_ERROR +xmlrpc.client.SafeTransport(??) +xmlrpc.client.Server(??) +xmlrpc.client.ServerProxy(??) +xmlrpc.client.TRANSPORT_ERROR +xmlrpc.client.Transport(??) +xmlrpc.client.UNSUPPORTED_ENCODING +xmlrpc.client.Unmarshaller(??) +xmlrpc.client.WRAPPERS(??) +xmlrpc.client.base64(??) +xmlrpc.client.boolean(??) +xmlrpc.client.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]]) +xmlrpc.client.dumps(??) +xmlrpc.client.errno(??) +xmlrpc.client.escape(??) +xmlrpc.client.expat(??) +xmlrpc.client.getparser() -> parser, unmarshaller +xmlrpc.client.gzip(??) +xmlrpc.client.gzip_decode(??) +xmlrpc.client.gzip_encode(??) +xmlrpc.client.http(??) +xmlrpc.client.loads(??) +xmlrpc.client.sys(??) +xmlrpc.client.time(??) +xmlrpc.client.urllib(??) +xmlrpc.server(??) +xmlrpc.server.BaseHTTPRequestHandler(??) +xmlrpc.server.CGIXMLRPCRequestHandler(??) +xmlrpc.server.DocCGIXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCRequestHandler(??) +xmlrpc.server.DocXMLRPCServer(??) +xmlrpc.server.Fault(??) +xmlrpc.server.MultiPathXMLRPCServer(??) +xmlrpc.server.ServerHTMLDoc(??) +xmlrpc.server.SimpleXMLRPCDispatcher(??) +xmlrpc.server.SimpleXMLRPCRequestHandler(??) +xmlrpc.server.SimpleXMLRPCServer(??) +xmlrpc.server.XMLRPCDocGenerator(??) +xmlrpc.server.dumps(??) +xmlrpc.server.fcntl(??) +xmlrpc.server.gzip_decode(??) +xmlrpc.server.gzip_encode(??) +xmlrpc.server.html(??) +xmlrpc.server.http(??) +xmlrpc.server.list_public_methods(??) +xmlrpc.server.loads(??) +xmlrpc.server.os(??) +xmlrpc.server.partial(func, *args, **keywords) - new function with partial application +xmlrpc.server.pydoc(??) +xmlrpc.server.re(??) +xmlrpc.server.resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d +xmlrpc.server.signature(??) +xmlrpc.server.socketserver(??) +xmlrpc.server.sys(??) +xmlrpc.server.traceback(??) +zip(*iterables) --> A zip object yielding tuples until an input is exhausted. +zipapp.MAIN_TEMPLATE +zipapp.ZipAppError(??) +zipapp.contextlib(??) +zipapp.create_archive(??) +zipapp.get_interpreter(??) +zipapp.main(??) +zipapp.os(??) +zipapp.pathlib(??) +zipapp.shebang_encoding +zipapp.shutil(??) +zipapp.stat(??) +zipapp.sys(??) +zipapp.zipfile(??) +zipfile.BZIP2_VERSION +zipfile.BadZipFile(??) +zipfile.BadZipfile(??) +zipfile.CompleteDirs(??) +zipfile.DEFAULT_VERSION +zipfile.FastLookup(??) +zipfile.LZMACompressor(??) +zipfile.LZMADecompressor(??) +zipfile.LZMA_VERSION +zipfile.LargeZipFile(??) +zipfile.MAX_EXTRACT_VERSION +zipfile.Path(??) +zipfile.PyZipFile(??) +zipfile.ZIP64_LIMIT +zipfile.ZIP64_VERSION +zipfile.ZIP_BZIP2 +zipfile.ZIP_DEFLATED +zipfile.ZIP_FILECOUNT_LIMIT +zipfile.ZIP_LZMA +zipfile.ZIP_MAX_COMMENT +zipfile.ZIP_STORED +zipfile.ZipExtFile(??) +zipfile.ZipFile(??) +zipfile.ZipInfo(??) +zipfile.binascii(??) +zipfile.bz2(??) +zipfile.compressor_names(??) +zipfile.contextlib(??) +zipfile.crc32(??) +zipfile.error(??) +zipfile.importlib(??) +zipfile.io(??) +zipfile.is_zipfile(??) +zipfile.itertools(??) +zipfile.lzma(??) +zipfile.main(??) +zipfile.os(??) +zipfile.posixpath(??) +zipfile.shutil(??) +zipfile.sizeCentralDir +zipfile.sizeEndCentDir +zipfile.sizeEndCentDir64 +zipfile.sizeEndCentDir64Locator +zipfile.sizeFileHeader +zipfile.stat(??) +zipfile.stringCentralDir +zipfile.stringEndArchive +zipfile.stringEndArchive64 +zipfile.stringEndArchive64Locator +zipfile.stringFileHeader +zipfile.struct(??) +zipfile.structCentralDir +zipfile.structEndArchive +zipfile.structEndArchive64 +zipfile.structEndArchive64Locator +zipfile.structFileHeader +zipfile.sys(??) +zipfile.threading(??) +zipfile.time(??) +zipfile.zlib(??) +zipimport.END_CENTRAL_DIR_SIZE +zipimport.MAX_COMMENT_LEN +zipimport.STRING_END_ARCHIVE +zipimport.ZipImportError(??) +zipimport.alt_path_sep +zipimport.cp437_table +zipimport.marshal(??) +zipimport.path_sep +zipimport.sys(??) +zipimport.time(??) +zipimport.zipimporter(archivepath) -> zipimporter object +zoneinfo.InvalidTZPathWarning(??) +zoneinfo.TZPATH(??) +zoneinfo.ZoneInfo(??) +zoneinfo.ZoneInfoNotFoundError(??) +zoneinfo.available_timezones(??) +zoneinfo.reset_tzpath(??) diff --git a/third_party/qscintilla/scintilla/include/ILexer.h b/third_party/qscintilla/scintilla/include/ILexer.h new file mode 100644 index 0000000..42f980f --- /dev/null +++ b/third_party/qscintilla/scintilla/include/ILexer.h @@ -0,0 +1,90 @@ +// Scintilla source code edit control +/** @file ILexer.h + ** Interface between Scintilla and lexers. + **/ +// Copyright 1998-2010 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#ifndef ILEXER_H +#define ILEXER_H + +#include "Sci_Position.h" + +namespace Scintilla { + +enum { dvOriginal=0, dvLineEnd=1 }; + +class IDocument { +public: + virtual int SCI_METHOD Version() const = 0; + virtual void SCI_METHOD SetErrorStatus(int status) = 0; + virtual Sci_Position SCI_METHOD Length() const = 0; + virtual void SCI_METHOD GetCharRange(char *buffer, Sci_Position position, Sci_Position lengthRetrieve) const = 0; + virtual char SCI_METHOD StyleAt(Sci_Position position) const = 0; + virtual Sci_Position SCI_METHOD LineFromPosition(Sci_Position position) const = 0; + virtual Sci_Position SCI_METHOD LineStart(Sci_Position line) const = 0; + virtual int SCI_METHOD GetLevel(Sci_Position line) const = 0; + virtual int SCI_METHOD SetLevel(Sci_Position line, int level) = 0; + virtual int SCI_METHOD GetLineState(Sci_Position line) const = 0; + virtual int SCI_METHOD SetLineState(Sci_Position line, int state) = 0; + virtual void SCI_METHOD StartStyling(Sci_Position position, char mask) = 0; + virtual bool SCI_METHOD SetStyleFor(Sci_Position length, char style) = 0; + virtual bool SCI_METHOD SetStyles(Sci_Position length, const char *styles) = 0; + virtual void SCI_METHOD DecorationSetCurrentIndicator(int indicator) = 0; + virtual void SCI_METHOD DecorationFillRange(Sci_Position position, int value, Sci_Position fillLength) = 0; + virtual void SCI_METHOD ChangeLexerState(Sci_Position start, Sci_Position end) = 0; + virtual int SCI_METHOD CodePage() const = 0; + virtual bool SCI_METHOD IsDBCSLeadByte(char ch) const = 0; + virtual const char * SCI_METHOD BufferPointer() = 0; + virtual int SCI_METHOD GetLineIndentation(Sci_Position line) = 0; +}; + +class IDocumentWithLineEnd : public IDocument { +public: + virtual Sci_Position SCI_METHOD LineEnd(Sci_Position line) const = 0; + virtual Sci_Position SCI_METHOD GetRelativePosition(Sci_Position positionStart, Sci_Position characterOffset) const = 0; + virtual int SCI_METHOD GetCharacterAndWidth(Sci_Position position, Sci_Position *pWidth) const = 0; +}; + +enum { lvOriginal=0, lvSubStyles=1, lvMetaData=2 }; + +class ILexer { +public: + virtual int SCI_METHOD Version() const = 0; + virtual void SCI_METHOD Release() = 0; + virtual const char * SCI_METHOD PropertyNames() = 0; + virtual int SCI_METHOD PropertyType(const char *name) = 0; + virtual const char * SCI_METHOD DescribeProperty(const char *name) = 0; + virtual Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) = 0; + virtual const char * SCI_METHOD DescribeWordListSets() = 0; + virtual Sci_Position SCI_METHOD WordListSet(int n, const char *wl) = 0; + virtual void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) = 0; + virtual void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) = 0; + virtual void * SCI_METHOD PrivateCall(int operation, void *pointer) = 0; +}; + +class ILexerWithSubStyles : public ILexer { +public: + virtual int SCI_METHOD LineEndTypesSupported() = 0; + virtual int SCI_METHOD AllocateSubStyles(int styleBase, int numberStyles) = 0; + virtual int SCI_METHOD SubStylesStart(int styleBase) = 0; + virtual int SCI_METHOD SubStylesLength(int styleBase) = 0; + virtual int SCI_METHOD StyleFromSubStyle(int subStyle) = 0; + virtual int SCI_METHOD PrimaryStyleFromStyle(int style) = 0; + virtual void SCI_METHOD FreeSubStyles() = 0; + virtual void SCI_METHOD SetIdentifiers(int style, const char *identifiers) = 0; + virtual int SCI_METHOD DistanceToSecondaryStyles() = 0; + virtual const char * SCI_METHOD GetSubStyleBases() = 0; +}; + +class ILexerWithMetaData : public ILexerWithSubStyles { +public: + virtual int SCI_METHOD NamedStyles() = 0; + virtual const char * SCI_METHOD NameOfStyle(int style) = 0; + virtual const char * SCI_METHOD TagsOfStyle(int style) = 0; + virtual const char * SCI_METHOD DescriptionOfStyle(int style) = 0; +}; + +} + +#endif diff --git a/third_party/qscintilla/scintilla/include/ILoader.h b/third_party/qscintilla/scintilla/include/ILoader.h new file mode 100644 index 0000000..e989de8 --- /dev/null +++ b/third_party/qscintilla/scintilla/include/ILoader.h @@ -0,0 +1,21 @@ +// Scintilla source code edit control +/** @file ILoader.h + ** Interface for loading into a Scintilla document from a background thread. + **/ +// Copyright 1998-2017 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#ifndef ILOADER_H +#define ILOADER_H + +#include "Sci_Position.h" + +class ILoader { +public: + virtual int SCI_METHOD Release() = 0; + // Returns a status code from SC_STATUS_* + virtual int SCI_METHOD AddData(const char *data, Sci_Position length) = 0; + virtual void * SCI_METHOD ConvertToDocument() = 0; +}; + +#endif diff --git a/third_party/qscintilla/scintilla/include/License.txt b/third_party/qscintilla/scintilla/include/License.txt new file mode 100644 index 0000000..47c7926 --- /dev/null +++ b/third_party/qscintilla/scintilla/include/License.txt @@ -0,0 +1,20 @@ +License for Scintilla and SciTE + +Copyright 1998-2003 by Neil Hodgson + +All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation. + +NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS +SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY +SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE +OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/third_party/qscintilla/scintilla/include/Platform.h b/third_party/qscintilla/scintilla/include/Platform.h new file mode 100644 index 0000000..887ed4b --- /dev/null +++ b/third_party/qscintilla/scintilla/include/Platform.h @@ -0,0 +1,553 @@ +// Scintilla source code edit control +/** @file Platform.h + ** Interface to platform facilities. Also includes some basic utilities. + ** Implemented in PlatGTK.cxx for GTK+/Linux, PlatWin.cxx for Windows, and PlatWX.cxx for wxWindows. + **/ +// Copyright 1998-2009 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#ifndef PLATFORM_H +#define PLATFORM_H + +// PLAT_GTK = GTK+ on Linux or Win32 +// PLAT_GTK_WIN32 is defined additionally when running PLAT_GTK under Win32 +// PLAT_WIN = Win32 API on Win32 OS +// PLAT_WX is wxWindows on any supported platform +// PLAT_TK = Tcl/TK on Linux or Win32 + +#define PLAT_GTK 0 +#define PLAT_GTK_WIN32 0 +#define PLAT_GTK_MACOSX 0 +#define PLAT_MACOSX 0 +#define PLAT_WIN 0 +#define PLAT_WX 0 +#define PLAT_QT 0 +#define PLAT_FOX 0 +#define PLAT_CURSES 0 +#define PLAT_TK 0 +#define PLAT_HAIKU 0 + +#if defined(FOX) +#undef PLAT_FOX +#define PLAT_FOX 1 + +#elif defined(__WX__) +#undef PLAT_WX +#define PLAT_WX 1 + +#elif defined(CURSES) +#undef PLAT_CURSES +#define PLAT_CURSES 1 + +#elif defined(__HAIKU__) +#undef PLAT_HAIKU +#define PLAT_HAIKU 1 + +#elif defined(SCINTILLA_QT) +#undef PLAT_QT +#define PLAT_QT 1 + +#include +QT_BEGIN_NAMESPACE +class QPainter; +QT_END_NAMESPACE + +// This is needed to work around an HP-UX bug with Qt4. +#include + +#elif defined(TK) +#undef PLAT_TK +#define PLAT_TK 1 + +#elif defined(GTK) +#undef PLAT_GTK +#define PLAT_GTK 1 + +#if defined(__WIN32__) || defined(_MSC_VER) +#undef PLAT_GTK_WIN32 +#define PLAT_GTK_WIN32 1 +#endif + +#if defined(__APPLE__) +#undef PLAT_GTK_MACOSX +#define PLAT_GTK_MACOSX 1 +#endif + +#elif defined(__APPLE__) + +#undef PLAT_MACOSX +#define PLAT_MACOSX 1 + +#else +#undef PLAT_WIN +#define PLAT_WIN 1 + +#endif + +namespace Scintilla { + +typedef float XYPOSITION; +typedef double XYACCUMULATOR; + +// Underlying the implementation of the platform classes are platform specific types. +// Sometimes these need to be passed around by client code so they are defined here + +typedef void *FontID; +typedef void *SurfaceID; +typedef void *WindowID; +typedef void *MenuID; +typedef void *TickerID; +typedef void *Function; +typedef void *IdlerID; + +/** + * A geometric point class. + * Point is similar to the Win32 POINT and GTK+ GdkPoint types. + */ +class Point { +public: + XYPOSITION x; + XYPOSITION y; + + constexpr explicit Point(XYPOSITION x_=0, XYPOSITION y_=0) noexcept : x(x_), y(y_) { + } + + static Point FromInts(int x_, int y_) noexcept { + return Point(static_cast(x_), static_cast(y_)); + } + + // Other automatically defined methods (assignment, copy constructor, destructor) are fine +}; + +/** + * A geometric rectangle class. + * PRectangle is similar to Win32 RECT. + * PRectangles contain their top and left sides, but not their right and bottom sides. + */ +class PRectangle { +public: + XYPOSITION left; + XYPOSITION top; + XYPOSITION right; + XYPOSITION bottom; + + constexpr explicit PRectangle(XYPOSITION left_=0, XYPOSITION top_=0, XYPOSITION right_=0, XYPOSITION bottom_ = 0) noexcept : + left(left_), top(top_), right(right_), bottom(bottom_) { + } + + static PRectangle FromInts(int left_, int top_, int right_, int bottom_) noexcept { + return PRectangle(static_cast(left_), static_cast(top_), + static_cast(right_), static_cast(bottom_)); + } + + // Other automatically defined methods (assignment, copy constructor, destructor) are fine + + bool operator==(const PRectangle &rc) const noexcept { + return (rc.left == left) && (rc.right == right) && + (rc.top == top) && (rc.bottom == bottom); + } + bool Contains(Point pt) const noexcept { + return (pt.x >= left) && (pt.x <= right) && + (pt.y >= top) && (pt.y <= bottom); + } + bool ContainsWholePixel(Point pt) const noexcept { + // Does the rectangle contain all of the pixel to left/below the point + return (pt.x >= left) && ((pt.x+1) <= right) && + (pt.y >= top) && ((pt.y+1) <= bottom); + } + bool Contains(PRectangle rc) const noexcept { + return (rc.left >= left) && (rc.right <= right) && + (rc.top >= top) && (rc.bottom <= bottom); + } + bool Intersects(PRectangle other) const noexcept { + return (right > other.left) && (left < other.right) && + (bottom > other.top) && (top < other.bottom); + } + void Move(XYPOSITION xDelta, XYPOSITION yDelta) noexcept { + left += xDelta; + top += yDelta; + right += xDelta; + bottom += yDelta; + } + XYPOSITION Width() const noexcept { return right - left; } + XYPOSITION Height() const noexcept { return bottom - top; } + bool Empty() const noexcept { + return (Height() <= 0) || (Width() <= 0); + } +}; + +/** + * Holds an RGB colour with 8 bits for each component. + */ +constexpr const float componentMaximum = 255.0f; +class ColourDesired { + int co; +public: + explicit ColourDesired(int co_=0) noexcept : co(co_) { + } + + ColourDesired(unsigned int red, unsigned int green, unsigned int blue) noexcept : + co(red | (green << 8) | (blue << 16)) { + } + + bool operator==(const ColourDesired &other) const noexcept { + return co == other.co; + } + + int AsInteger() const noexcept { + return co; + } + + // Red, green and blue values as bytes 0..255 + unsigned char GetRed() const noexcept { + return co & 0xff; + } + unsigned char GetGreen() const noexcept { + return (co >> 8) & 0xff; + } + unsigned char GetBlue() const noexcept { + return (co >> 16) & 0xff; + } + + // Red, green and blue values as float 0..1.0 + float GetRedComponent() const noexcept { + return GetRed() / componentMaximum; + } + float GetGreenComponent() const noexcept { + return GetGreen() / componentMaximum; + } + float GetBlueComponent() const noexcept { + return GetBlue() / componentMaximum; + } +}; + +/** +* Holds an RGBA colour. +*/ +class ColourAlpha : public ColourDesired { +public: + explicit ColourAlpha(int co_ = 0) noexcept : ColourDesired(co_) { + } + + ColourAlpha(unsigned int red, unsigned int green, unsigned int blue) noexcept : + ColourDesired(red | (green << 8) | (blue << 16)) { + } + + ColourAlpha(unsigned int red, unsigned int green, unsigned int blue, unsigned int alpha) noexcept : + ColourDesired(red | (green << 8) | (blue << 16) | (alpha << 24)) { + } + + ColourAlpha(ColourDesired cd, unsigned int alpha) noexcept : + ColourDesired(cd.AsInteger() | (alpha << 24)) { + } + + ColourDesired GetColour() const noexcept { + return ColourDesired(AsInteger() & 0xffffff); + } + + unsigned char GetAlpha() const noexcept { + return (AsInteger() >> 24) & 0xff; + } + + float GetAlphaComponent() const noexcept { + return GetAlpha() / componentMaximum; + } + + ColourAlpha MixedWith(ColourAlpha other) const noexcept { + const unsigned int red = (GetRed() + other.GetRed()) / 2; + const unsigned int green = (GetGreen() + other.GetGreen()) / 2; + const unsigned int blue = (GetBlue() + other.GetBlue()) / 2; + const unsigned int alpha = (GetAlpha() + other.GetAlpha()) / 2; + return ColourAlpha(red, green, blue, alpha); + } +}; + +/** +* Holds an element of a gradient with an RGBA colour and a relative position. +*/ +class ColourStop { +public: + float position; + ColourAlpha colour; + ColourStop(float position_, ColourAlpha colour_) noexcept : + position(position_), colour(colour_) { + } +}; + +/** + * Font management. + */ + +struct FontParameters { + const char *faceName; + float size; + int weight; + bool italic; + int extraFontFlag; + int technology; + int characterSet; + + FontParameters( + const char *faceName_, + float size_=10, + int weight_=400, + bool italic_=false, + int extraFontFlag_=0, + int technology_=0, + int characterSet_=0) noexcept : + + faceName(faceName_), + size(size_), + weight(weight_), + italic(italic_), + extraFontFlag(extraFontFlag_), + technology(technology_), + characterSet(characterSet_) + { + } + +}; + +class Font { +protected: + FontID fid; +public: + Font() noexcept; + // Deleted so Font objects can not be copied + Font(const Font &) = delete; + Font(Font &&) = delete; + Font &operator=(const Font &) = delete; + Font &operator=(Font &&) = delete; + virtual ~Font(); + + virtual void Create(const FontParameters &fp); + virtual void Release(); + + FontID GetID() const noexcept { return fid; } + // Alias another font - caller guarantees not to Release + void SetID(FontID fid_) noexcept { fid = fid_; } + friend class Surface; + friend class SurfaceImpl; +}; + +/** + * A surface abstracts a place to draw. + */ +#if defined(PLAT_QT) +class XPM; +#endif +class Surface { +public: + Surface() noexcept = default; + Surface(const Surface &) = delete; + Surface(Surface &&) = delete; + Surface &operator=(const Surface &) = delete; + Surface &operator=(Surface &&) = delete; + virtual ~Surface() {} + static Surface *Allocate(int technology); + + virtual void Init(WindowID wid)=0; + virtual void Init(SurfaceID sid, WindowID wid)=0; + virtual void InitPixMap(int width, int height, Surface *surface_, WindowID wid)=0; + + virtual void Release()=0; + virtual bool Initialised()=0; + virtual void PenColour(ColourDesired fore)=0; + virtual int LogPixelsY()=0; + virtual int DeviceHeightFont(int points)=0; + virtual void MoveTo(int x_, int y_)=0; + virtual void LineTo(int x_, int y_)=0; + virtual void Polygon(Point *pts, size_t npts, ColourDesired fore, ColourDesired back)=0; + virtual void RectangleDraw(PRectangle rc, ColourDesired fore, ColourDesired back)=0; + virtual void FillRectangle(PRectangle rc, ColourDesired back)=0; + virtual void FillRectangle(PRectangle rc, Surface &surfacePattern)=0; + virtual void RoundedRectangle(PRectangle rc, ColourDesired fore, ColourDesired back)=0; + virtual void AlphaRectangle(PRectangle rc, int cornerSize, ColourDesired fill, int alphaFill, + ColourDesired outline, int alphaOutline, int flags)=0; + enum class GradientOptions { leftToRight, topToBottom }; + virtual void GradientRectangle(PRectangle rc, const std::vector &stops, GradientOptions options)=0; + virtual void DrawRGBAImage(PRectangle rc, int width, int height, const unsigned char *pixelsImage) = 0; + virtual void Ellipse(PRectangle rc, ColourDesired fore, ColourDesired back)=0; + virtual void Copy(PRectangle rc, Point from, Surface &surfaceSource)=0; + + virtual void DrawTextNoClip(PRectangle rc, Font &font_, XYPOSITION ybase, const char *s, int len, ColourDesired fore, ColourDesired back)=0; + virtual void DrawTextClipped(PRectangle rc, Font &font_, XYPOSITION ybase, const char *s, int len, ColourDesired fore, ColourDesired back)=0; + virtual void DrawTextTransparent(PRectangle rc, Font &font_, XYPOSITION ybase, const char *s, int len, ColourDesired fore)=0; + virtual void MeasureWidths(Font &font_, const char *s, int len, XYPOSITION *positions)=0; + virtual XYPOSITION WidthText(Font &font_, const char *s, int len)=0; + virtual XYPOSITION Ascent(Font &font_)=0; + virtual XYPOSITION Descent(Font &font_)=0; + virtual XYPOSITION InternalLeading(Font &font_)=0; + virtual XYPOSITION Height(Font &font_)=0; + virtual XYPOSITION AverageCharWidth(Font &font_)=0; + + virtual void SetClip(PRectangle rc)=0; + virtual void FlushCachedState()=0; + + virtual void SetUnicodeMode(bool unicodeMode_)=0; + virtual void SetDBCSMode(int codePage)=0; + +#if defined(PLAT_QT) + virtual void Init(QPainter *p)=0; + virtual void DrawXPM(PRectangle rc, const XPM *xpm)=0; +#endif +}; + +/** + * Class to hide the details of window manipulation. + * Does not own the window which will normally have a longer life than this object. + */ +class Window { +protected: + WindowID wid; +public: + Window() noexcept : wid(nullptr), cursorLast(cursorInvalid) { + } + Window(const Window &source) = delete; + Window(Window &&) = delete; + Window &operator=(WindowID wid_) noexcept { + wid = wid_; + cursorLast = cursorInvalid; + return *this; + } + Window &operator=(const Window &) = delete; + Window &operator=(Window &&) = delete; + virtual ~Window(); + WindowID GetID() const noexcept { return wid; } + bool Created() const noexcept { return wid != nullptr; } + void Destroy(); + PRectangle GetPosition() const; + void SetPosition(PRectangle rc); + void SetPositionRelative(PRectangle rc, const Window *relativeTo); + PRectangle GetClientPosition() const; + void Show(bool show=true); + void InvalidateAll(); + void InvalidateRectangle(PRectangle rc); + virtual void SetFont(Font &font); + enum Cursor { cursorInvalid, cursorText, cursorArrow, cursorUp, cursorWait, cursorHoriz, cursorVert, cursorReverseArrow, cursorHand }; + void SetCursor(Cursor curs); + PRectangle GetMonitorRect(Point pt); +private: + Cursor cursorLast; +}; + +/** + * Listbox management. + */ + +// ScintillaBase implements IListBoxDelegate to receive ListBoxEvents from a ListBox + +struct ListBoxEvent { + enum class EventType { selectionChange, doubleClick } event; + ListBoxEvent(EventType event_) noexcept : event(event_) { + } +}; + +class IListBoxDelegate { +public: + virtual void ListNotify(ListBoxEvent *plbe)=0; +}; + +class ListBox : public Window { +public: + ListBox() noexcept; + ~ListBox() override; + static ListBox *Allocate(); + + void SetFont(Font &font) override =0; + virtual void Create(Window &parent, int ctrlID, Point location, int lineHeight_, bool unicodeMode_, int technology_)=0; + virtual void SetAverageCharWidth(int width)=0; + virtual void SetVisibleRows(int rows)=0; + virtual int GetVisibleRows() const=0; + virtual PRectangle GetDesiredRect()=0; + virtual int CaretFromEdge()=0; + virtual void Clear()=0; + virtual void Append(char *s, int type = -1)=0; + virtual int Length()=0; + virtual void Select(int n)=0; + virtual int GetSelection()=0; + virtual int Find(const char *prefix)=0; + virtual void GetValue(int n, char *value, int len)=0; + virtual void RegisterImage(int type, const char *xpm_data)=0; + virtual void RegisterRGBAImage(int type, int width, int height, const unsigned char *pixelsImage) = 0; + virtual void ClearRegisteredImages()=0; + virtual void SetDelegate(IListBoxDelegate *lbDelegate)=0; + virtual void SetList(const char* list, char separator, char typesep)=0; +}; + +/** + * Menu management. + */ +class Menu { + MenuID mid; +public: + Menu() noexcept; + MenuID GetID() const noexcept { return mid; } + void CreatePopUp(); + void Destroy(); + void Show(Point pt, Window &w); +}; + +/** + * Dynamic Library (DLL/SO/...) loading + */ +class DynamicLibrary { +public: + virtual ~DynamicLibrary() = default; + + /// @return Pointer to function "name", or NULL on failure. + virtual Function FindFunction(const char *name) = 0; + + /// @return true if the library was loaded successfully. + virtual bool IsValid() = 0; + + /// @return An instance of a DynamicLibrary subclass with "modulePath" loaded. + static DynamicLibrary *Load(const char *modulePath); +}; + +#if defined(__clang__) +# if __has_feature(attribute_analyzer_noreturn) +# define CLANG_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) +# else +# define CLANG_ANALYZER_NORETURN +# endif +#else +# define CLANG_ANALYZER_NORETURN +#endif + +/** + * Platform class used to retrieve system wide parameters such as double click speed + * and chrome colour. Not a creatable object, more of a module with several functions. + */ +class Platform { +public: + Platform() = default; + Platform(const Platform &) = delete; + Platform(Platform &&) = delete; + Platform &operator=(const Platform &) = delete; + Platform &operator=(Platform &&) = delete; + ~Platform() = default; + static ColourDesired Chrome(); + static ColourDesired ChromeHighlight(); + static const char *DefaultFont(); + static int DefaultFontSize(); + static unsigned int DoubleClickTime(); + static void DebugDisplay(const char *s); + static constexpr long LongFromTwoShorts(short a,short b) noexcept { + return (a) | ((b) << 16); + } + + static void DebugPrintf(const char *format, ...); + static bool ShowAssertionPopUps(bool assertionPopUps_); + static void Assert(const char *c, const char *file, int line) CLANG_ANALYZER_NORETURN; +}; + +#ifdef NDEBUG +#define PLATFORM_ASSERT(c) ((void)0) +#else +#define PLATFORM_ASSERT(c) ((c) ? (void)(0) : Scintilla::Platform::Assert(#c, __FILE__, __LINE__)) +#endif + +} + +#endif diff --git a/third_party/qscintilla/scintilla/include/SciLexer.h b/third_party/qscintilla/scintilla/include/SciLexer.h new file mode 100644 index 0000000..0335bf4 --- /dev/null +++ b/third_party/qscintilla/scintilla/include/SciLexer.h @@ -0,0 +1,1861 @@ +/* Scintilla source code edit control */ +/** @file SciLexer.h + ** Interface to the added lexer functions in the SciLexer version of the edit control. + **/ +/* Copyright 1998-2002 by Neil Hodgson + * The License.txt file describes the conditions under which this software may be distributed. */ + +/* Most of this file is automatically generated from the Scintilla.iface interface definition + * file which contains any comments about the definitions. HFacer.py does the generation. */ + +#ifndef SCILEXER_H +#define SCILEXER_H + +/* SciLexer features - not in standard Scintilla */ + +/* ++Autogenerated -- start of section automatically generated from Scintilla.iface */ +#define SCLEX_CONTAINER 0 +#define SCLEX_NULL 1 +#define SCLEX_PYTHON 2 +#define SCLEX_CPP 3 +#define SCLEX_HTML 4 +#define SCLEX_XML 5 +#define SCLEX_PERL 6 +#define SCLEX_SQL 7 +#define SCLEX_VB 8 +#define SCLEX_PROPERTIES 9 +#define SCLEX_ERRORLIST 10 +#define SCLEX_MAKEFILE 11 +#define SCLEX_BATCH 12 +#define SCLEX_XCODE 13 +#define SCLEX_LATEX 14 +#define SCLEX_LUA 15 +#define SCLEX_DIFF 16 +#define SCLEX_CONF 17 +#define SCLEX_PASCAL 18 +#define SCLEX_AVE 19 +#define SCLEX_ADA 20 +#define SCLEX_LISP 21 +#define SCLEX_RUBY 22 +#define SCLEX_EIFFEL 23 +#define SCLEX_EIFFELKW 24 +#define SCLEX_TCL 25 +#define SCLEX_NNCRONTAB 26 +#define SCLEX_BULLANT 27 +#define SCLEX_VBSCRIPT 28 +#define SCLEX_BAAN 31 +#define SCLEX_MATLAB 32 +#define SCLEX_SCRIPTOL 33 +#define SCLEX_ASM 34 +#define SCLEX_CPPNOCASE 35 +#define SCLEX_FORTRAN 36 +#define SCLEX_F77 37 +#define SCLEX_CSS 38 +#define SCLEX_POV 39 +#define SCLEX_LOUT 40 +#define SCLEX_ESCRIPT 41 +#define SCLEX_PS 42 +#define SCLEX_NSIS 43 +#define SCLEX_MMIXAL 44 +#define SCLEX_CLW 45 +#define SCLEX_CLWNOCASE 46 +#define SCLEX_LOT 47 +#define SCLEX_YAML 48 +#define SCLEX_TEX 49 +#define SCLEX_METAPOST 50 +#define SCLEX_POWERBASIC 51 +#define SCLEX_FORTH 52 +#define SCLEX_ERLANG 53 +#define SCLEX_OCTAVE 54 +#define SCLEX_MSSQL 55 +#define SCLEX_VERILOG 56 +#define SCLEX_KIX 57 +#define SCLEX_GUI4CLI 58 +#define SCLEX_SPECMAN 59 +#define SCLEX_AU3 60 +#define SCLEX_APDL 61 +#define SCLEX_BASH 62 +#define SCLEX_ASN1 63 +#define SCLEX_VHDL 64 +#define SCLEX_CAML 65 +#define SCLEX_BLITZBASIC 66 +#define SCLEX_PUREBASIC 67 +#define SCLEX_HASKELL 68 +#define SCLEX_PHPSCRIPT 69 +#define SCLEX_TADS3 70 +#define SCLEX_REBOL 71 +#define SCLEX_SMALLTALK 72 +#define SCLEX_FLAGSHIP 73 +#define SCLEX_CSOUND 74 +#define SCLEX_FREEBASIC 75 +#define SCLEX_INNOSETUP 76 +#define SCLEX_OPAL 77 +#define SCLEX_SPICE 78 +#define SCLEX_D 79 +#define SCLEX_CMAKE 80 +#define SCLEX_GAP 81 +#define SCLEX_PLM 82 +#define SCLEX_PROGRESS 83 +#define SCLEX_ABAQUS 84 +#define SCLEX_ASYMPTOTE 85 +#define SCLEX_R 86 +#define SCLEX_MAGIK 87 +#define SCLEX_POWERSHELL 88 +#define SCLEX_MYSQL 89 +#define SCLEX_PO 90 +#define SCLEX_TAL 91 +#define SCLEX_COBOL 92 +#define SCLEX_TACL 93 +#define SCLEX_SORCUS 94 +#define SCLEX_POWERPRO 95 +#define SCLEX_NIMROD 96 +#define SCLEX_SML 97 +#define SCLEX_MARKDOWN 98 +#define SCLEX_TXT2TAGS 99 +#define SCLEX_A68K 100 +#define SCLEX_MODULA 101 +#define SCLEX_COFFEESCRIPT 102 +#define SCLEX_TCMD 103 +#define SCLEX_AVS 104 +#define SCLEX_ECL 105 +#define SCLEX_OSCRIPT 106 +#define SCLEX_VISUALPROLOG 107 +#define SCLEX_LITERATEHASKELL 108 +#define SCLEX_STTXT 109 +#define SCLEX_KVIRC 110 +#define SCLEX_RUST 111 +#define SCLEX_DMAP 112 +#define SCLEX_AS 113 +#define SCLEX_DMIS 114 +#define SCLEX_REGISTRY 115 +#define SCLEX_BIBTEX 116 +#define SCLEX_SREC 117 +#define SCLEX_IHEX 118 +#define SCLEX_TEHEX 119 +#define SCLEX_JSON 120 +#define SCLEX_EDIFACT 121 +#define SCLEX_INDENT 122 +#define SCLEX_MAXIMA 123 +#define SCLEX_STATA 124 +#define SCLEX_SAS 125 +#define SCLEX_LPEG 999 +#define SCLEX_AUTOMATIC 1000 +#define SCE_P_DEFAULT 0 +#define SCE_P_COMMENTLINE 1 +#define SCE_P_NUMBER 2 +#define SCE_P_STRING 3 +#define SCE_P_CHARACTER 4 +#define SCE_P_WORD 5 +#define SCE_P_TRIPLE 6 +#define SCE_P_TRIPLEDOUBLE 7 +#define SCE_P_CLASSNAME 8 +#define SCE_P_DEFNAME 9 +#define SCE_P_OPERATOR 10 +#define SCE_P_IDENTIFIER 11 +#define SCE_P_COMMENTBLOCK 12 +#define SCE_P_STRINGEOL 13 +#define SCE_P_WORD2 14 +#define SCE_P_DECORATOR 15 +#define SCE_P_FSTRING 16 +#define SCE_P_FCHARACTER 17 +#define SCE_P_FTRIPLE 18 +#define SCE_P_FTRIPLEDOUBLE 19 +#define SCE_C_DEFAULT 0 +#define SCE_C_COMMENT 1 +#define SCE_C_COMMENTLINE 2 +#define SCE_C_COMMENTDOC 3 +#define SCE_C_NUMBER 4 +#define SCE_C_WORD 5 +#define SCE_C_STRING 6 +#define SCE_C_CHARACTER 7 +#define SCE_C_UUID 8 +#define SCE_C_PREPROCESSOR 9 +#define SCE_C_OPERATOR 10 +#define SCE_C_IDENTIFIER 11 +#define SCE_C_STRINGEOL 12 +#define SCE_C_VERBATIM 13 +#define SCE_C_REGEX 14 +#define SCE_C_COMMENTLINEDOC 15 +#define SCE_C_WORD2 16 +#define SCE_C_COMMENTDOCKEYWORD 17 +#define SCE_C_COMMENTDOCKEYWORDERROR 18 +#define SCE_C_GLOBALCLASS 19 +#define SCE_C_STRINGRAW 20 +#define SCE_C_TRIPLEVERBATIM 21 +#define SCE_C_HASHQUOTEDSTRING 22 +#define SCE_C_PREPROCESSORCOMMENT 23 +#define SCE_C_PREPROCESSORCOMMENTDOC 24 +#define SCE_C_USERLITERAL 25 +#define SCE_C_TASKMARKER 26 +#define SCE_C_ESCAPESEQUENCE 27 +#define SCE_D_DEFAULT 0 +#define SCE_D_COMMENT 1 +#define SCE_D_COMMENTLINE 2 +#define SCE_D_COMMENTDOC 3 +#define SCE_D_COMMENTNESTED 4 +#define SCE_D_NUMBER 5 +#define SCE_D_WORD 6 +#define SCE_D_WORD2 7 +#define SCE_D_WORD3 8 +#define SCE_D_TYPEDEF 9 +#define SCE_D_STRING 10 +#define SCE_D_STRINGEOL 11 +#define SCE_D_CHARACTER 12 +#define SCE_D_OPERATOR 13 +#define SCE_D_IDENTIFIER 14 +#define SCE_D_COMMENTLINEDOC 15 +#define SCE_D_COMMENTDOCKEYWORD 16 +#define SCE_D_COMMENTDOCKEYWORDERROR 17 +#define SCE_D_STRINGB 18 +#define SCE_D_STRINGR 19 +#define SCE_D_WORD5 20 +#define SCE_D_WORD6 21 +#define SCE_D_WORD7 22 +#define SCE_TCL_DEFAULT 0 +#define SCE_TCL_COMMENT 1 +#define SCE_TCL_COMMENTLINE 2 +#define SCE_TCL_NUMBER 3 +#define SCE_TCL_WORD_IN_QUOTE 4 +#define SCE_TCL_IN_QUOTE 5 +#define SCE_TCL_OPERATOR 6 +#define SCE_TCL_IDENTIFIER 7 +#define SCE_TCL_SUBSTITUTION 8 +#define SCE_TCL_SUB_BRACE 9 +#define SCE_TCL_MODIFIER 10 +#define SCE_TCL_EXPAND 11 +#define SCE_TCL_WORD 12 +#define SCE_TCL_WORD2 13 +#define SCE_TCL_WORD3 14 +#define SCE_TCL_WORD4 15 +#define SCE_TCL_WORD5 16 +#define SCE_TCL_WORD6 17 +#define SCE_TCL_WORD7 18 +#define SCE_TCL_WORD8 19 +#define SCE_TCL_COMMENT_BOX 20 +#define SCE_TCL_BLOCK_COMMENT 21 +#define SCE_H_DEFAULT 0 +#define SCE_H_TAG 1 +#define SCE_H_TAGUNKNOWN 2 +#define SCE_H_ATTRIBUTE 3 +#define SCE_H_ATTRIBUTEUNKNOWN 4 +#define SCE_H_NUMBER 5 +#define SCE_H_DOUBLESTRING 6 +#define SCE_H_SINGLESTRING 7 +#define SCE_H_OTHER 8 +#define SCE_H_COMMENT 9 +#define SCE_H_ENTITY 10 +#define SCE_H_TAGEND 11 +#define SCE_H_XMLSTART 12 +#define SCE_H_XMLEND 13 +#define SCE_H_SCRIPT 14 +#define SCE_H_ASP 15 +#define SCE_H_ASPAT 16 +#define SCE_H_CDATA 17 +#define SCE_H_QUESTION 18 +#define SCE_H_VALUE 19 +#define SCE_H_XCCOMMENT 20 +#define SCE_H_SGML_DEFAULT 21 +#define SCE_H_SGML_COMMAND 22 +#define SCE_H_SGML_1ST_PARAM 23 +#define SCE_H_SGML_DOUBLESTRING 24 +#define SCE_H_SGML_SIMPLESTRING 25 +#define SCE_H_SGML_ERROR 26 +#define SCE_H_SGML_SPECIAL 27 +#define SCE_H_SGML_ENTITY 28 +#define SCE_H_SGML_COMMENT 29 +#define SCE_H_SGML_1ST_PARAM_COMMENT 30 +#define SCE_H_SGML_BLOCK_DEFAULT 31 +#define SCE_HJ_START 40 +#define SCE_HJ_DEFAULT 41 +#define SCE_HJ_COMMENT 42 +#define SCE_HJ_COMMENTLINE 43 +#define SCE_HJ_COMMENTDOC 44 +#define SCE_HJ_NUMBER 45 +#define SCE_HJ_WORD 46 +#define SCE_HJ_KEYWORD 47 +#define SCE_HJ_DOUBLESTRING 48 +#define SCE_HJ_SINGLESTRING 49 +#define SCE_HJ_SYMBOLS 50 +#define SCE_HJ_STRINGEOL 51 +#define SCE_HJ_REGEX 52 +#define SCE_HJA_START 55 +#define SCE_HJA_DEFAULT 56 +#define SCE_HJA_COMMENT 57 +#define SCE_HJA_COMMENTLINE 58 +#define SCE_HJA_COMMENTDOC 59 +#define SCE_HJA_NUMBER 60 +#define SCE_HJA_WORD 61 +#define SCE_HJA_KEYWORD 62 +#define SCE_HJA_DOUBLESTRING 63 +#define SCE_HJA_SINGLESTRING 64 +#define SCE_HJA_SYMBOLS 65 +#define SCE_HJA_STRINGEOL 66 +#define SCE_HJA_REGEX 67 +#define SCE_HB_START 70 +#define SCE_HB_DEFAULT 71 +#define SCE_HB_COMMENTLINE 72 +#define SCE_HB_NUMBER 73 +#define SCE_HB_WORD 74 +#define SCE_HB_STRING 75 +#define SCE_HB_IDENTIFIER 76 +#define SCE_HB_STRINGEOL 77 +#define SCE_HBA_START 80 +#define SCE_HBA_DEFAULT 81 +#define SCE_HBA_COMMENTLINE 82 +#define SCE_HBA_NUMBER 83 +#define SCE_HBA_WORD 84 +#define SCE_HBA_STRING 85 +#define SCE_HBA_IDENTIFIER 86 +#define SCE_HBA_STRINGEOL 87 +#define SCE_HP_START 90 +#define SCE_HP_DEFAULT 91 +#define SCE_HP_COMMENTLINE 92 +#define SCE_HP_NUMBER 93 +#define SCE_HP_STRING 94 +#define SCE_HP_CHARACTER 95 +#define SCE_HP_WORD 96 +#define SCE_HP_TRIPLE 97 +#define SCE_HP_TRIPLEDOUBLE 98 +#define SCE_HP_CLASSNAME 99 +#define SCE_HP_DEFNAME 100 +#define SCE_HP_OPERATOR 101 +#define SCE_HP_IDENTIFIER 102 +#define SCE_HPHP_COMPLEX_VARIABLE 104 +#define SCE_HPA_START 105 +#define SCE_HPA_DEFAULT 106 +#define SCE_HPA_COMMENTLINE 107 +#define SCE_HPA_NUMBER 108 +#define SCE_HPA_STRING 109 +#define SCE_HPA_CHARACTER 110 +#define SCE_HPA_WORD 111 +#define SCE_HPA_TRIPLE 112 +#define SCE_HPA_TRIPLEDOUBLE 113 +#define SCE_HPA_CLASSNAME 114 +#define SCE_HPA_DEFNAME 115 +#define SCE_HPA_OPERATOR 116 +#define SCE_HPA_IDENTIFIER 117 +#define SCE_HPHP_DEFAULT 118 +#define SCE_HPHP_HSTRING 119 +#define SCE_HPHP_SIMPLESTRING 120 +#define SCE_HPHP_WORD 121 +#define SCE_HPHP_NUMBER 122 +#define SCE_HPHP_VARIABLE 123 +#define SCE_HPHP_COMMENT 124 +#define SCE_HPHP_COMMENTLINE 125 +#define SCE_HPHP_HSTRING_VARIABLE 126 +#define SCE_HPHP_OPERATOR 127 +#define SCE_PL_DEFAULT 0 +#define SCE_PL_ERROR 1 +#define SCE_PL_COMMENTLINE 2 +#define SCE_PL_POD 3 +#define SCE_PL_NUMBER 4 +#define SCE_PL_WORD 5 +#define SCE_PL_STRING 6 +#define SCE_PL_CHARACTER 7 +#define SCE_PL_PUNCTUATION 8 +#define SCE_PL_PREPROCESSOR 9 +#define SCE_PL_OPERATOR 10 +#define SCE_PL_IDENTIFIER 11 +#define SCE_PL_SCALAR 12 +#define SCE_PL_ARRAY 13 +#define SCE_PL_HASH 14 +#define SCE_PL_SYMBOLTABLE 15 +#define SCE_PL_VARIABLE_INDEXER 16 +#define SCE_PL_REGEX 17 +#define SCE_PL_REGSUBST 18 +#define SCE_PL_LONGQUOTE 19 +#define SCE_PL_BACKTICKS 20 +#define SCE_PL_DATASECTION 21 +#define SCE_PL_HERE_DELIM 22 +#define SCE_PL_HERE_Q 23 +#define SCE_PL_HERE_QQ 24 +#define SCE_PL_HERE_QX 25 +#define SCE_PL_STRING_Q 26 +#define SCE_PL_STRING_QQ 27 +#define SCE_PL_STRING_QX 28 +#define SCE_PL_STRING_QR 29 +#define SCE_PL_STRING_QW 30 +#define SCE_PL_POD_VERB 31 +#define SCE_PL_SUB_PROTOTYPE 40 +#define SCE_PL_FORMAT_IDENT 41 +#define SCE_PL_FORMAT 42 +#define SCE_PL_STRING_VAR 43 +#define SCE_PL_XLAT 44 +#define SCE_PL_REGEX_VAR 54 +#define SCE_PL_REGSUBST_VAR 55 +#define SCE_PL_BACKTICKS_VAR 57 +#define SCE_PL_HERE_QQ_VAR 61 +#define SCE_PL_HERE_QX_VAR 62 +#define SCE_PL_STRING_QQ_VAR 64 +#define SCE_PL_STRING_QX_VAR 65 +#define SCE_PL_STRING_QR_VAR 66 +#define SCE_RB_DEFAULT 0 +#define SCE_RB_ERROR 1 +#define SCE_RB_COMMENTLINE 2 +#define SCE_RB_POD 3 +#define SCE_RB_NUMBER 4 +#define SCE_RB_WORD 5 +#define SCE_RB_STRING 6 +#define SCE_RB_CHARACTER 7 +#define SCE_RB_CLASSNAME 8 +#define SCE_RB_DEFNAME 9 +#define SCE_RB_OPERATOR 10 +#define SCE_RB_IDENTIFIER 11 +#define SCE_RB_REGEX 12 +#define SCE_RB_GLOBAL 13 +#define SCE_RB_SYMBOL 14 +#define SCE_RB_MODULE_NAME 15 +#define SCE_RB_INSTANCE_VAR 16 +#define SCE_RB_CLASS_VAR 17 +#define SCE_RB_BACKTICKS 18 +#define SCE_RB_DATASECTION 19 +#define SCE_RB_HERE_DELIM 20 +#define SCE_RB_HERE_Q 21 +#define SCE_RB_HERE_QQ 22 +#define SCE_RB_HERE_QX 23 +#define SCE_RB_STRING_Q 24 +#define SCE_RB_STRING_QQ 25 +#define SCE_RB_STRING_QX 26 +#define SCE_RB_STRING_QR 27 +#define SCE_RB_STRING_QW 28 +#define SCE_RB_WORD_DEMOTED 29 +#define SCE_RB_STDIN 30 +#define SCE_RB_STDOUT 31 +#define SCE_RB_STDERR 40 +#define SCE_RB_UPPER_BOUND 41 +#define SCE_B_DEFAULT 0 +#define SCE_B_COMMENT 1 +#define SCE_B_NUMBER 2 +#define SCE_B_KEYWORD 3 +#define SCE_B_STRING 4 +#define SCE_B_PREPROCESSOR 5 +#define SCE_B_OPERATOR 6 +#define SCE_B_IDENTIFIER 7 +#define SCE_B_DATE 8 +#define SCE_B_STRINGEOL 9 +#define SCE_B_KEYWORD2 10 +#define SCE_B_KEYWORD3 11 +#define SCE_B_KEYWORD4 12 +#define SCE_B_CONSTANT 13 +#define SCE_B_ASM 14 +#define SCE_B_LABEL 15 +#define SCE_B_ERROR 16 +#define SCE_B_HEXNUMBER 17 +#define SCE_B_BINNUMBER 18 +#define SCE_B_COMMENTBLOCK 19 +#define SCE_B_DOCLINE 20 +#define SCE_B_DOCBLOCK 21 +#define SCE_B_DOCKEYWORD 22 +#define SCE_PROPS_DEFAULT 0 +#define SCE_PROPS_COMMENT 1 +#define SCE_PROPS_SECTION 2 +#define SCE_PROPS_ASSIGNMENT 3 +#define SCE_PROPS_DEFVAL 4 +#define SCE_PROPS_KEY 5 +#define SCE_L_DEFAULT 0 +#define SCE_L_COMMAND 1 +#define SCE_L_TAG 2 +#define SCE_L_MATH 3 +#define SCE_L_COMMENT 4 +#define SCE_L_TAG2 5 +#define SCE_L_MATH2 6 +#define SCE_L_COMMENT2 7 +#define SCE_L_VERBATIM 8 +#define SCE_L_SHORTCMD 9 +#define SCE_L_SPECIAL 10 +#define SCE_L_CMDOPT 11 +#define SCE_L_ERROR 12 +#define SCE_LUA_DEFAULT 0 +#define SCE_LUA_COMMENT 1 +#define SCE_LUA_COMMENTLINE 2 +#define SCE_LUA_COMMENTDOC 3 +#define SCE_LUA_NUMBER 4 +#define SCE_LUA_WORD 5 +#define SCE_LUA_STRING 6 +#define SCE_LUA_CHARACTER 7 +#define SCE_LUA_LITERALSTRING 8 +#define SCE_LUA_PREPROCESSOR 9 +#define SCE_LUA_OPERATOR 10 +#define SCE_LUA_IDENTIFIER 11 +#define SCE_LUA_STRINGEOL 12 +#define SCE_LUA_WORD2 13 +#define SCE_LUA_WORD3 14 +#define SCE_LUA_WORD4 15 +#define SCE_LUA_WORD5 16 +#define SCE_LUA_WORD6 17 +#define SCE_LUA_WORD7 18 +#define SCE_LUA_WORD8 19 +#define SCE_LUA_LABEL 20 +#define SCE_ERR_DEFAULT 0 +#define SCE_ERR_PYTHON 1 +#define SCE_ERR_GCC 2 +#define SCE_ERR_MS 3 +#define SCE_ERR_CMD 4 +#define SCE_ERR_BORLAND 5 +#define SCE_ERR_PERL 6 +#define SCE_ERR_NET 7 +#define SCE_ERR_LUA 8 +#define SCE_ERR_CTAG 9 +#define SCE_ERR_DIFF_CHANGED 10 +#define SCE_ERR_DIFF_ADDITION 11 +#define SCE_ERR_DIFF_DELETION 12 +#define SCE_ERR_DIFF_MESSAGE 13 +#define SCE_ERR_PHP 14 +#define SCE_ERR_ELF 15 +#define SCE_ERR_IFC 16 +#define SCE_ERR_IFORT 17 +#define SCE_ERR_ABSF 18 +#define SCE_ERR_TIDY 19 +#define SCE_ERR_JAVA_STACK 20 +#define SCE_ERR_VALUE 21 +#define SCE_ERR_GCC_INCLUDED_FROM 22 +#define SCE_ERR_ESCSEQ 23 +#define SCE_ERR_ESCSEQ_UNKNOWN 24 +#define SCE_ERR_ES_BLACK 40 +#define SCE_ERR_ES_RED 41 +#define SCE_ERR_ES_GREEN 42 +#define SCE_ERR_ES_BROWN 43 +#define SCE_ERR_ES_BLUE 44 +#define SCE_ERR_ES_MAGENTA 45 +#define SCE_ERR_ES_CYAN 46 +#define SCE_ERR_ES_GRAY 47 +#define SCE_ERR_ES_DARK_GRAY 48 +#define SCE_ERR_ES_BRIGHT_RED 49 +#define SCE_ERR_ES_BRIGHT_GREEN 50 +#define SCE_ERR_ES_YELLOW 51 +#define SCE_ERR_ES_BRIGHT_BLUE 52 +#define SCE_ERR_ES_BRIGHT_MAGENTA 53 +#define SCE_ERR_ES_BRIGHT_CYAN 54 +#define SCE_ERR_ES_WHITE 55 +#define SCE_BAT_DEFAULT 0 +#define SCE_BAT_COMMENT 1 +#define SCE_BAT_WORD 2 +#define SCE_BAT_LABEL 3 +#define SCE_BAT_HIDE 4 +#define SCE_BAT_COMMAND 5 +#define SCE_BAT_IDENTIFIER 6 +#define SCE_BAT_OPERATOR 7 +#define SCE_TCMD_DEFAULT 0 +#define SCE_TCMD_COMMENT 1 +#define SCE_TCMD_WORD 2 +#define SCE_TCMD_LABEL 3 +#define SCE_TCMD_HIDE 4 +#define SCE_TCMD_COMMAND 5 +#define SCE_TCMD_IDENTIFIER 6 +#define SCE_TCMD_OPERATOR 7 +#define SCE_TCMD_ENVIRONMENT 8 +#define SCE_TCMD_EXPANSION 9 +#define SCE_TCMD_CLABEL 10 +#define SCE_MAKE_DEFAULT 0 +#define SCE_MAKE_COMMENT 1 +#define SCE_MAKE_PREPROCESSOR 2 +#define SCE_MAKE_IDENTIFIER 3 +#define SCE_MAKE_OPERATOR 4 +#define SCE_MAKE_TARGET 5 +#define SCE_MAKE_IDEOL 9 +#define SCE_DIFF_DEFAULT 0 +#define SCE_DIFF_COMMENT 1 +#define SCE_DIFF_COMMAND 2 +#define SCE_DIFF_HEADER 3 +#define SCE_DIFF_POSITION 4 +#define SCE_DIFF_DELETED 5 +#define SCE_DIFF_ADDED 6 +#define SCE_DIFF_CHANGED 7 +#define SCE_DIFF_PATCH_ADD 8 +#define SCE_DIFF_PATCH_DELETE 9 +#define SCE_DIFF_REMOVED_PATCH_ADD 10 +#define SCE_DIFF_REMOVED_PATCH_DELETE 11 +#define SCE_CONF_DEFAULT 0 +#define SCE_CONF_COMMENT 1 +#define SCE_CONF_NUMBER 2 +#define SCE_CONF_IDENTIFIER 3 +#define SCE_CONF_EXTENSION 4 +#define SCE_CONF_PARAMETER 5 +#define SCE_CONF_STRING 6 +#define SCE_CONF_OPERATOR 7 +#define SCE_CONF_IP 8 +#define SCE_CONF_DIRECTIVE 9 +#define SCE_AVE_DEFAULT 0 +#define SCE_AVE_COMMENT 1 +#define SCE_AVE_NUMBER 2 +#define SCE_AVE_WORD 3 +#define SCE_AVE_STRING 6 +#define SCE_AVE_ENUM 7 +#define SCE_AVE_STRINGEOL 8 +#define SCE_AVE_IDENTIFIER 9 +#define SCE_AVE_OPERATOR 10 +#define SCE_AVE_WORD1 11 +#define SCE_AVE_WORD2 12 +#define SCE_AVE_WORD3 13 +#define SCE_AVE_WORD4 14 +#define SCE_AVE_WORD5 15 +#define SCE_AVE_WORD6 16 +#define SCE_ADA_DEFAULT 0 +#define SCE_ADA_WORD 1 +#define SCE_ADA_IDENTIFIER 2 +#define SCE_ADA_NUMBER 3 +#define SCE_ADA_DELIMITER 4 +#define SCE_ADA_CHARACTER 5 +#define SCE_ADA_CHARACTEREOL 6 +#define SCE_ADA_STRING 7 +#define SCE_ADA_STRINGEOL 8 +#define SCE_ADA_LABEL 9 +#define SCE_ADA_COMMENTLINE 10 +#define SCE_ADA_ILLEGAL 11 +#define SCE_BAAN_DEFAULT 0 +#define SCE_BAAN_COMMENT 1 +#define SCE_BAAN_COMMENTDOC 2 +#define SCE_BAAN_NUMBER 3 +#define SCE_BAAN_WORD 4 +#define SCE_BAAN_STRING 5 +#define SCE_BAAN_PREPROCESSOR 6 +#define SCE_BAAN_OPERATOR 7 +#define SCE_BAAN_IDENTIFIER 8 +#define SCE_BAAN_STRINGEOL 9 +#define SCE_BAAN_WORD2 10 +#define SCE_BAAN_WORD3 11 +#define SCE_BAAN_WORD4 12 +#define SCE_BAAN_WORD5 13 +#define SCE_BAAN_WORD6 14 +#define SCE_BAAN_WORD7 15 +#define SCE_BAAN_WORD8 16 +#define SCE_BAAN_WORD9 17 +#define SCE_BAAN_TABLEDEF 18 +#define SCE_BAAN_TABLESQL 19 +#define SCE_BAAN_FUNCTION 20 +#define SCE_BAAN_DOMDEF 21 +#define SCE_BAAN_FUNCDEF 22 +#define SCE_BAAN_OBJECTDEF 23 +#define SCE_BAAN_DEFINEDEF 24 +#define SCE_LISP_DEFAULT 0 +#define SCE_LISP_COMMENT 1 +#define SCE_LISP_NUMBER 2 +#define SCE_LISP_KEYWORD 3 +#define SCE_LISP_KEYWORD_KW 4 +#define SCE_LISP_SYMBOL 5 +#define SCE_LISP_STRING 6 +#define SCE_LISP_STRINGEOL 8 +#define SCE_LISP_IDENTIFIER 9 +#define SCE_LISP_OPERATOR 10 +#define SCE_LISP_SPECIAL 11 +#define SCE_LISP_MULTI_COMMENT 12 +#define SCE_EIFFEL_DEFAULT 0 +#define SCE_EIFFEL_COMMENTLINE 1 +#define SCE_EIFFEL_NUMBER 2 +#define SCE_EIFFEL_WORD 3 +#define SCE_EIFFEL_STRING 4 +#define SCE_EIFFEL_CHARACTER 5 +#define SCE_EIFFEL_OPERATOR 6 +#define SCE_EIFFEL_IDENTIFIER 7 +#define SCE_EIFFEL_STRINGEOL 8 +#define SCE_NNCRONTAB_DEFAULT 0 +#define SCE_NNCRONTAB_COMMENT 1 +#define SCE_NNCRONTAB_TASK 2 +#define SCE_NNCRONTAB_SECTION 3 +#define SCE_NNCRONTAB_KEYWORD 4 +#define SCE_NNCRONTAB_MODIFIER 5 +#define SCE_NNCRONTAB_ASTERISK 6 +#define SCE_NNCRONTAB_NUMBER 7 +#define SCE_NNCRONTAB_STRING 8 +#define SCE_NNCRONTAB_ENVIRONMENT 9 +#define SCE_NNCRONTAB_IDENTIFIER 10 +#define SCE_FORTH_DEFAULT 0 +#define SCE_FORTH_COMMENT 1 +#define SCE_FORTH_COMMENT_ML 2 +#define SCE_FORTH_IDENTIFIER 3 +#define SCE_FORTH_CONTROL 4 +#define SCE_FORTH_KEYWORD 5 +#define SCE_FORTH_DEFWORD 6 +#define SCE_FORTH_PREWORD1 7 +#define SCE_FORTH_PREWORD2 8 +#define SCE_FORTH_NUMBER 9 +#define SCE_FORTH_STRING 10 +#define SCE_FORTH_LOCALE 11 +#define SCE_MATLAB_DEFAULT 0 +#define SCE_MATLAB_COMMENT 1 +#define SCE_MATLAB_COMMAND 2 +#define SCE_MATLAB_NUMBER 3 +#define SCE_MATLAB_KEYWORD 4 +#define SCE_MATLAB_STRING 5 +#define SCE_MATLAB_OPERATOR 6 +#define SCE_MATLAB_IDENTIFIER 7 +#define SCE_MATLAB_DOUBLEQUOTESTRING 8 +#define SCE_MAXIMA_OPERATOR 0 +#define SCE_MAXIMA_COMMANDENDING 1 +#define SCE_MAXIMA_COMMENT 2 +#define SCE_MAXIMA_NUMBER 3 +#define SCE_MAXIMA_STRING 4 +#define SCE_MAXIMA_COMMAND 5 +#define SCE_MAXIMA_VARIABLE 6 +#define SCE_MAXIMA_UNKNOWN 7 +#define SCE_SCRIPTOL_DEFAULT 0 +#define SCE_SCRIPTOL_WHITE 1 +#define SCE_SCRIPTOL_COMMENTLINE 2 +#define SCE_SCRIPTOL_PERSISTENT 3 +#define SCE_SCRIPTOL_CSTYLE 4 +#define SCE_SCRIPTOL_COMMENTBLOCK 5 +#define SCE_SCRIPTOL_NUMBER 6 +#define SCE_SCRIPTOL_STRING 7 +#define SCE_SCRIPTOL_CHARACTER 8 +#define SCE_SCRIPTOL_STRINGEOL 9 +#define SCE_SCRIPTOL_KEYWORD 10 +#define SCE_SCRIPTOL_OPERATOR 11 +#define SCE_SCRIPTOL_IDENTIFIER 12 +#define SCE_SCRIPTOL_TRIPLE 13 +#define SCE_SCRIPTOL_CLASSNAME 14 +#define SCE_SCRIPTOL_PREPROCESSOR 15 +#define SCE_ASM_DEFAULT 0 +#define SCE_ASM_COMMENT 1 +#define SCE_ASM_NUMBER 2 +#define SCE_ASM_STRING 3 +#define SCE_ASM_OPERATOR 4 +#define SCE_ASM_IDENTIFIER 5 +#define SCE_ASM_CPUINSTRUCTION 6 +#define SCE_ASM_MATHINSTRUCTION 7 +#define SCE_ASM_REGISTER 8 +#define SCE_ASM_DIRECTIVE 9 +#define SCE_ASM_DIRECTIVEOPERAND 10 +#define SCE_ASM_COMMENTBLOCK 11 +#define SCE_ASM_CHARACTER 12 +#define SCE_ASM_STRINGEOL 13 +#define SCE_ASM_EXTINSTRUCTION 14 +#define SCE_ASM_COMMENTDIRECTIVE 15 +#define SCE_F_DEFAULT 0 +#define SCE_F_COMMENT 1 +#define SCE_F_NUMBER 2 +#define SCE_F_STRING1 3 +#define SCE_F_STRING2 4 +#define SCE_F_STRINGEOL 5 +#define SCE_F_OPERATOR 6 +#define SCE_F_IDENTIFIER 7 +#define SCE_F_WORD 8 +#define SCE_F_WORD2 9 +#define SCE_F_WORD3 10 +#define SCE_F_PREPROCESSOR 11 +#define SCE_F_OPERATOR2 12 +#define SCE_F_LABEL 13 +#define SCE_F_CONTINUATION 14 +#define SCE_CSS_DEFAULT 0 +#define SCE_CSS_TAG 1 +#define SCE_CSS_CLASS 2 +#define SCE_CSS_PSEUDOCLASS 3 +#define SCE_CSS_UNKNOWN_PSEUDOCLASS 4 +#define SCE_CSS_OPERATOR 5 +#define SCE_CSS_IDENTIFIER 6 +#define SCE_CSS_UNKNOWN_IDENTIFIER 7 +#define SCE_CSS_VALUE 8 +#define SCE_CSS_COMMENT 9 +#define SCE_CSS_ID 10 +#define SCE_CSS_IMPORTANT 11 +#define SCE_CSS_DIRECTIVE 12 +#define SCE_CSS_DOUBLESTRING 13 +#define SCE_CSS_SINGLESTRING 14 +#define SCE_CSS_IDENTIFIER2 15 +#define SCE_CSS_ATTRIBUTE 16 +#define SCE_CSS_IDENTIFIER3 17 +#define SCE_CSS_PSEUDOELEMENT 18 +#define SCE_CSS_EXTENDED_IDENTIFIER 19 +#define SCE_CSS_EXTENDED_PSEUDOCLASS 20 +#define SCE_CSS_EXTENDED_PSEUDOELEMENT 21 +#define SCE_CSS_MEDIA 22 +#define SCE_CSS_VARIABLE 23 +#define SCE_POV_DEFAULT 0 +#define SCE_POV_COMMENT 1 +#define SCE_POV_COMMENTLINE 2 +#define SCE_POV_NUMBER 3 +#define SCE_POV_OPERATOR 4 +#define SCE_POV_IDENTIFIER 5 +#define SCE_POV_STRING 6 +#define SCE_POV_STRINGEOL 7 +#define SCE_POV_DIRECTIVE 8 +#define SCE_POV_BADDIRECTIVE 9 +#define SCE_POV_WORD2 10 +#define SCE_POV_WORD3 11 +#define SCE_POV_WORD4 12 +#define SCE_POV_WORD5 13 +#define SCE_POV_WORD6 14 +#define SCE_POV_WORD7 15 +#define SCE_POV_WORD8 16 +#define SCE_LOUT_DEFAULT 0 +#define SCE_LOUT_COMMENT 1 +#define SCE_LOUT_NUMBER 2 +#define SCE_LOUT_WORD 3 +#define SCE_LOUT_WORD2 4 +#define SCE_LOUT_WORD3 5 +#define SCE_LOUT_WORD4 6 +#define SCE_LOUT_STRING 7 +#define SCE_LOUT_OPERATOR 8 +#define SCE_LOUT_IDENTIFIER 9 +#define SCE_LOUT_STRINGEOL 10 +#define SCE_ESCRIPT_DEFAULT 0 +#define SCE_ESCRIPT_COMMENT 1 +#define SCE_ESCRIPT_COMMENTLINE 2 +#define SCE_ESCRIPT_COMMENTDOC 3 +#define SCE_ESCRIPT_NUMBER 4 +#define SCE_ESCRIPT_WORD 5 +#define SCE_ESCRIPT_STRING 6 +#define SCE_ESCRIPT_OPERATOR 7 +#define SCE_ESCRIPT_IDENTIFIER 8 +#define SCE_ESCRIPT_BRACE 9 +#define SCE_ESCRIPT_WORD2 10 +#define SCE_ESCRIPT_WORD3 11 +#define SCE_PS_DEFAULT 0 +#define SCE_PS_COMMENT 1 +#define SCE_PS_DSC_COMMENT 2 +#define SCE_PS_DSC_VALUE 3 +#define SCE_PS_NUMBER 4 +#define SCE_PS_NAME 5 +#define SCE_PS_KEYWORD 6 +#define SCE_PS_LITERAL 7 +#define SCE_PS_IMMEVAL 8 +#define SCE_PS_PAREN_ARRAY 9 +#define SCE_PS_PAREN_DICT 10 +#define SCE_PS_PAREN_PROC 11 +#define SCE_PS_TEXT 12 +#define SCE_PS_HEXSTRING 13 +#define SCE_PS_BASE85STRING 14 +#define SCE_PS_BADSTRINGCHAR 15 +#define SCE_NSIS_DEFAULT 0 +#define SCE_NSIS_COMMENT 1 +#define SCE_NSIS_STRINGDQ 2 +#define SCE_NSIS_STRINGLQ 3 +#define SCE_NSIS_STRINGRQ 4 +#define SCE_NSIS_FUNCTION 5 +#define SCE_NSIS_VARIABLE 6 +#define SCE_NSIS_LABEL 7 +#define SCE_NSIS_USERDEFINED 8 +#define SCE_NSIS_SECTIONDEF 9 +#define SCE_NSIS_SUBSECTIONDEF 10 +#define SCE_NSIS_IFDEFINEDEF 11 +#define SCE_NSIS_MACRODEF 12 +#define SCE_NSIS_STRINGVAR 13 +#define SCE_NSIS_NUMBER 14 +#define SCE_NSIS_SECTIONGROUP 15 +#define SCE_NSIS_PAGEEX 16 +#define SCE_NSIS_FUNCTIONDEF 17 +#define SCE_NSIS_COMMENTBOX 18 +#define SCE_MMIXAL_LEADWS 0 +#define SCE_MMIXAL_COMMENT 1 +#define SCE_MMIXAL_LABEL 2 +#define SCE_MMIXAL_OPCODE 3 +#define SCE_MMIXAL_OPCODE_PRE 4 +#define SCE_MMIXAL_OPCODE_VALID 5 +#define SCE_MMIXAL_OPCODE_UNKNOWN 6 +#define SCE_MMIXAL_OPCODE_POST 7 +#define SCE_MMIXAL_OPERANDS 8 +#define SCE_MMIXAL_NUMBER 9 +#define SCE_MMIXAL_REF 10 +#define SCE_MMIXAL_CHAR 11 +#define SCE_MMIXAL_STRING 12 +#define SCE_MMIXAL_REGISTER 13 +#define SCE_MMIXAL_HEX 14 +#define SCE_MMIXAL_OPERATOR 15 +#define SCE_MMIXAL_SYMBOL 16 +#define SCE_MMIXAL_INCLUDE 17 +#define SCE_CLW_DEFAULT 0 +#define SCE_CLW_LABEL 1 +#define SCE_CLW_COMMENT 2 +#define SCE_CLW_STRING 3 +#define SCE_CLW_USER_IDENTIFIER 4 +#define SCE_CLW_INTEGER_CONSTANT 5 +#define SCE_CLW_REAL_CONSTANT 6 +#define SCE_CLW_PICTURE_STRING 7 +#define SCE_CLW_KEYWORD 8 +#define SCE_CLW_COMPILER_DIRECTIVE 9 +#define SCE_CLW_RUNTIME_EXPRESSIONS 10 +#define SCE_CLW_BUILTIN_PROCEDURES_FUNCTION 11 +#define SCE_CLW_STRUCTURE_DATA_TYPE 12 +#define SCE_CLW_ATTRIBUTE 13 +#define SCE_CLW_STANDARD_EQUATE 14 +#define SCE_CLW_ERROR 15 +#define SCE_CLW_DEPRECATED 16 +#define SCE_LOT_DEFAULT 0 +#define SCE_LOT_HEADER 1 +#define SCE_LOT_BREAK 2 +#define SCE_LOT_SET 3 +#define SCE_LOT_PASS 4 +#define SCE_LOT_FAIL 5 +#define SCE_LOT_ABORT 6 +#define SCE_YAML_DEFAULT 0 +#define SCE_YAML_COMMENT 1 +#define SCE_YAML_IDENTIFIER 2 +#define SCE_YAML_KEYWORD 3 +#define SCE_YAML_NUMBER 4 +#define SCE_YAML_REFERENCE 5 +#define SCE_YAML_DOCUMENT 6 +#define SCE_YAML_TEXT 7 +#define SCE_YAML_ERROR 8 +#define SCE_YAML_OPERATOR 9 +#define SCE_TEX_DEFAULT 0 +#define SCE_TEX_SPECIAL 1 +#define SCE_TEX_GROUP 2 +#define SCE_TEX_SYMBOL 3 +#define SCE_TEX_COMMAND 4 +#define SCE_TEX_TEXT 5 +#define SCE_METAPOST_DEFAULT 0 +#define SCE_METAPOST_SPECIAL 1 +#define SCE_METAPOST_GROUP 2 +#define SCE_METAPOST_SYMBOL 3 +#define SCE_METAPOST_COMMAND 4 +#define SCE_METAPOST_TEXT 5 +#define SCE_METAPOST_EXTRA 6 +#define SCE_ERLANG_DEFAULT 0 +#define SCE_ERLANG_COMMENT 1 +#define SCE_ERLANG_VARIABLE 2 +#define SCE_ERLANG_NUMBER 3 +#define SCE_ERLANG_KEYWORD 4 +#define SCE_ERLANG_STRING 5 +#define SCE_ERLANG_OPERATOR 6 +#define SCE_ERLANG_ATOM 7 +#define SCE_ERLANG_FUNCTION_NAME 8 +#define SCE_ERLANG_CHARACTER 9 +#define SCE_ERLANG_MACRO 10 +#define SCE_ERLANG_RECORD 11 +#define SCE_ERLANG_PREPROC 12 +#define SCE_ERLANG_NODE_NAME 13 +#define SCE_ERLANG_COMMENT_FUNCTION 14 +#define SCE_ERLANG_COMMENT_MODULE 15 +#define SCE_ERLANG_COMMENT_DOC 16 +#define SCE_ERLANG_COMMENT_DOC_MACRO 17 +#define SCE_ERLANG_ATOM_QUOTED 18 +#define SCE_ERLANG_MACRO_QUOTED 19 +#define SCE_ERLANG_RECORD_QUOTED 20 +#define SCE_ERLANG_NODE_NAME_QUOTED 21 +#define SCE_ERLANG_BIFS 22 +#define SCE_ERLANG_MODULES 23 +#define SCE_ERLANG_MODULES_ATT 24 +#define SCE_ERLANG_UNKNOWN 31 +#define SCE_MSSQL_DEFAULT 0 +#define SCE_MSSQL_COMMENT 1 +#define SCE_MSSQL_LINE_COMMENT 2 +#define SCE_MSSQL_NUMBER 3 +#define SCE_MSSQL_STRING 4 +#define SCE_MSSQL_OPERATOR 5 +#define SCE_MSSQL_IDENTIFIER 6 +#define SCE_MSSQL_VARIABLE 7 +#define SCE_MSSQL_COLUMN_NAME 8 +#define SCE_MSSQL_STATEMENT 9 +#define SCE_MSSQL_DATATYPE 10 +#define SCE_MSSQL_SYSTABLE 11 +#define SCE_MSSQL_GLOBAL_VARIABLE 12 +#define SCE_MSSQL_FUNCTION 13 +#define SCE_MSSQL_STORED_PROCEDURE 14 +#define SCE_MSSQL_DEFAULT_PREF_DATATYPE 15 +#define SCE_MSSQL_COLUMN_NAME_2 16 +#define SCE_V_DEFAULT 0 +#define SCE_V_COMMENT 1 +#define SCE_V_COMMENTLINE 2 +#define SCE_V_COMMENTLINEBANG 3 +#define SCE_V_NUMBER 4 +#define SCE_V_WORD 5 +#define SCE_V_STRING 6 +#define SCE_V_WORD2 7 +#define SCE_V_WORD3 8 +#define SCE_V_PREPROCESSOR 9 +#define SCE_V_OPERATOR 10 +#define SCE_V_IDENTIFIER 11 +#define SCE_V_STRINGEOL 12 +#define SCE_V_USER 19 +#define SCE_V_COMMENT_WORD 20 +#define SCE_V_INPUT 21 +#define SCE_V_OUTPUT 22 +#define SCE_V_INOUT 23 +#define SCE_V_PORT_CONNECT 24 +#define SCE_KIX_DEFAULT 0 +#define SCE_KIX_COMMENT 1 +#define SCE_KIX_STRING1 2 +#define SCE_KIX_STRING2 3 +#define SCE_KIX_NUMBER 4 +#define SCE_KIX_VAR 5 +#define SCE_KIX_MACRO 6 +#define SCE_KIX_KEYWORD 7 +#define SCE_KIX_FUNCTIONS 8 +#define SCE_KIX_OPERATOR 9 +#define SCE_KIX_COMMENTSTREAM 10 +#define SCE_KIX_IDENTIFIER 31 +#define SCE_GC_DEFAULT 0 +#define SCE_GC_COMMENTLINE 1 +#define SCE_GC_COMMENTBLOCK 2 +#define SCE_GC_GLOBAL 3 +#define SCE_GC_EVENT 4 +#define SCE_GC_ATTRIBUTE 5 +#define SCE_GC_CONTROL 6 +#define SCE_GC_COMMAND 7 +#define SCE_GC_STRING 8 +#define SCE_GC_OPERATOR 9 +#define SCE_SN_DEFAULT 0 +#define SCE_SN_CODE 1 +#define SCE_SN_COMMENTLINE 2 +#define SCE_SN_COMMENTLINEBANG 3 +#define SCE_SN_NUMBER 4 +#define SCE_SN_WORD 5 +#define SCE_SN_STRING 6 +#define SCE_SN_WORD2 7 +#define SCE_SN_WORD3 8 +#define SCE_SN_PREPROCESSOR 9 +#define SCE_SN_OPERATOR 10 +#define SCE_SN_IDENTIFIER 11 +#define SCE_SN_STRINGEOL 12 +#define SCE_SN_REGEXTAG 13 +#define SCE_SN_SIGNAL 14 +#define SCE_SN_USER 19 +#define SCE_AU3_DEFAULT 0 +#define SCE_AU3_COMMENT 1 +#define SCE_AU3_COMMENTBLOCK 2 +#define SCE_AU3_NUMBER 3 +#define SCE_AU3_FUNCTION 4 +#define SCE_AU3_KEYWORD 5 +#define SCE_AU3_MACRO 6 +#define SCE_AU3_STRING 7 +#define SCE_AU3_OPERATOR 8 +#define SCE_AU3_VARIABLE 9 +#define SCE_AU3_SENT 10 +#define SCE_AU3_PREPROCESSOR 11 +#define SCE_AU3_SPECIAL 12 +#define SCE_AU3_EXPAND 13 +#define SCE_AU3_COMOBJ 14 +#define SCE_AU3_UDF 15 +#define SCE_APDL_DEFAULT 0 +#define SCE_APDL_COMMENT 1 +#define SCE_APDL_COMMENTBLOCK 2 +#define SCE_APDL_NUMBER 3 +#define SCE_APDL_STRING 4 +#define SCE_APDL_OPERATOR 5 +#define SCE_APDL_WORD 6 +#define SCE_APDL_PROCESSOR 7 +#define SCE_APDL_COMMAND 8 +#define SCE_APDL_SLASHCOMMAND 9 +#define SCE_APDL_STARCOMMAND 10 +#define SCE_APDL_ARGUMENT 11 +#define SCE_APDL_FUNCTION 12 +#define SCE_SH_DEFAULT 0 +#define SCE_SH_ERROR 1 +#define SCE_SH_COMMENTLINE 2 +#define SCE_SH_NUMBER 3 +#define SCE_SH_WORD 4 +#define SCE_SH_STRING 5 +#define SCE_SH_CHARACTER 6 +#define SCE_SH_OPERATOR 7 +#define SCE_SH_IDENTIFIER 8 +#define SCE_SH_SCALAR 9 +#define SCE_SH_PARAM 10 +#define SCE_SH_BACKTICKS 11 +#define SCE_SH_HERE_DELIM 12 +#define SCE_SH_HERE_Q 13 +#define SCE_ASN1_DEFAULT 0 +#define SCE_ASN1_COMMENT 1 +#define SCE_ASN1_IDENTIFIER 2 +#define SCE_ASN1_STRING 3 +#define SCE_ASN1_OID 4 +#define SCE_ASN1_SCALAR 5 +#define SCE_ASN1_KEYWORD 6 +#define SCE_ASN1_ATTRIBUTE 7 +#define SCE_ASN1_DESCRIPTOR 8 +#define SCE_ASN1_TYPE 9 +#define SCE_ASN1_OPERATOR 10 +#define SCE_VHDL_DEFAULT 0 +#define SCE_VHDL_COMMENT 1 +#define SCE_VHDL_COMMENTLINEBANG 2 +#define SCE_VHDL_NUMBER 3 +#define SCE_VHDL_STRING 4 +#define SCE_VHDL_OPERATOR 5 +#define SCE_VHDL_IDENTIFIER 6 +#define SCE_VHDL_STRINGEOL 7 +#define SCE_VHDL_KEYWORD 8 +#define SCE_VHDL_STDOPERATOR 9 +#define SCE_VHDL_ATTRIBUTE 10 +#define SCE_VHDL_STDFUNCTION 11 +#define SCE_VHDL_STDPACKAGE 12 +#define SCE_VHDL_STDTYPE 13 +#define SCE_VHDL_USERWORD 14 +#define SCE_VHDL_BLOCK_COMMENT 15 +#define SCE_CAML_DEFAULT 0 +#define SCE_CAML_IDENTIFIER 1 +#define SCE_CAML_TAGNAME 2 +#define SCE_CAML_KEYWORD 3 +#define SCE_CAML_KEYWORD2 4 +#define SCE_CAML_KEYWORD3 5 +#define SCE_CAML_LINENUM 6 +#define SCE_CAML_OPERATOR 7 +#define SCE_CAML_NUMBER 8 +#define SCE_CAML_CHAR 9 +#define SCE_CAML_WHITE 10 +#define SCE_CAML_STRING 11 +#define SCE_CAML_COMMENT 12 +#define SCE_CAML_COMMENT1 13 +#define SCE_CAML_COMMENT2 14 +#define SCE_CAML_COMMENT3 15 +#define SCE_HA_DEFAULT 0 +#define SCE_HA_IDENTIFIER 1 +#define SCE_HA_KEYWORD 2 +#define SCE_HA_NUMBER 3 +#define SCE_HA_STRING 4 +#define SCE_HA_CHARACTER 5 +#define SCE_HA_CLASS 6 +#define SCE_HA_MODULE 7 +#define SCE_HA_CAPITAL 8 +#define SCE_HA_DATA 9 +#define SCE_HA_IMPORT 10 +#define SCE_HA_OPERATOR 11 +#define SCE_HA_INSTANCE 12 +#define SCE_HA_COMMENTLINE 13 +#define SCE_HA_COMMENTBLOCK 14 +#define SCE_HA_COMMENTBLOCK2 15 +#define SCE_HA_COMMENTBLOCK3 16 +#define SCE_HA_PRAGMA 17 +#define SCE_HA_PREPROCESSOR 18 +#define SCE_HA_STRINGEOL 19 +#define SCE_HA_RESERVED_OPERATOR 20 +#define SCE_HA_LITERATE_COMMENT 21 +#define SCE_HA_LITERATE_CODEDELIM 22 +#define SCE_T3_DEFAULT 0 +#define SCE_T3_X_DEFAULT 1 +#define SCE_T3_PREPROCESSOR 2 +#define SCE_T3_BLOCK_COMMENT 3 +#define SCE_T3_LINE_COMMENT 4 +#define SCE_T3_OPERATOR 5 +#define SCE_T3_KEYWORD 6 +#define SCE_T3_NUMBER 7 +#define SCE_T3_IDENTIFIER 8 +#define SCE_T3_S_STRING 9 +#define SCE_T3_D_STRING 10 +#define SCE_T3_X_STRING 11 +#define SCE_T3_LIB_DIRECTIVE 12 +#define SCE_T3_MSG_PARAM 13 +#define SCE_T3_HTML_TAG 14 +#define SCE_T3_HTML_DEFAULT 15 +#define SCE_T3_HTML_STRING 16 +#define SCE_T3_USER1 17 +#define SCE_T3_USER2 18 +#define SCE_T3_USER3 19 +#define SCE_T3_BRACE 20 +#define SCE_REBOL_DEFAULT 0 +#define SCE_REBOL_COMMENTLINE 1 +#define SCE_REBOL_COMMENTBLOCK 2 +#define SCE_REBOL_PREFACE 3 +#define SCE_REBOL_OPERATOR 4 +#define SCE_REBOL_CHARACTER 5 +#define SCE_REBOL_QUOTEDSTRING 6 +#define SCE_REBOL_BRACEDSTRING 7 +#define SCE_REBOL_NUMBER 8 +#define SCE_REBOL_PAIR 9 +#define SCE_REBOL_TUPLE 10 +#define SCE_REBOL_BINARY 11 +#define SCE_REBOL_MONEY 12 +#define SCE_REBOL_ISSUE 13 +#define SCE_REBOL_TAG 14 +#define SCE_REBOL_FILE 15 +#define SCE_REBOL_EMAIL 16 +#define SCE_REBOL_URL 17 +#define SCE_REBOL_DATE 18 +#define SCE_REBOL_TIME 19 +#define SCE_REBOL_IDENTIFIER 20 +#define SCE_REBOL_WORD 21 +#define SCE_REBOL_WORD2 22 +#define SCE_REBOL_WORD3 23 +#define SCE_REBOL_WORD4 24 +#define SCE_REBOL_WORD5 25 +#define SCE_REBOL_WORD6 26 +#define SCE_REBOL_WORD7 27 +#define SCE_REBOL_WORD8 28 +#define SCE_SQL_DEFAULT 0 +#define SCE_SQL_COMMENT 1 +#define SCE_SQL_COMMENTLINE 2 +#define SCE_SQL_COMMENTDOC 3 +#define SCE_SQL_NUMBER 4 +#define SCE_SQL_WORD 5 +#define SCE_SQL_STRING 6 +#define SCE_SQL_CHARACTER 7 +#define SCE_SQL_SQLPLUS 8 +#define SCE_SQL_SQLPLUS_PROMPT 9 +#define SCE_SQL_OPERATOR 10 +#define SCE_SQL_IDENTIFIER 11 +#define SCE_SQL_SQLPLUS_COMMENT 13 +#define SCE_SQL_COMMENTLINEDOC 15 +#define SCE_SQL_WORD2 16 +#define SCE_SQL_COMMENTDOCKEYWORD 17 +#define SCE_SQL_COMMENTDOCKEYWORDERROR 18 +#define SCE_SQL_USER1 19 +#define SCE_SQL_USER2 20 +#define SCE_SQL_USER3 21 +#define SCE_SQL_USER4 22 +#define SCE_SQL_QUOTEDIDENTIFIER 23 +#define SCE_SQL_QOPERATOR 24 +#define SCE_ST_DEFAULT 0 +#define SCE_ST_STRING 1 +#define SCE_ST_NUMBER 2 +#define SCE_ST_COMMENT 3 +#define SCE_ST_SYMBOL 4 +#define SCE_ST_BINARY 5 +#define SCE_ST_BOOL 6 +#define SCE_ST_SELF 7 +#define SCE_ST_SUPER 8 +#define SCE_ST_NIL 9 +#define SCE_ST_GLOBAL 10 +#define SCE_ST_RETURN 11 +#define SCE_ST_SPECIAL 12 +#define SCE_ST_KWSEND 13 +#define SCE_ST_ASSIGN 14 +#define SCE_ST_CHARACTER 15 +#define SCE_ST_SPEC_SEL 16 +#define SCE_FS_DEFAULT 0 +#define SCE_FS_COMMENT 1 +#define SCE_FS_COMMENTLINE 2 +#define SCE_FS_COMMENTDOC 3 +#define SCE_FS_COMMENTLINEDOC 4 +#define SCE_FS_COMMENTDOCKEYWORD 5 +#define SCE_FS_COMMENTDOCKEYWORDERROR 6 +#define SCE_FS_KEYWORD 7 +#define SCE_FS_KEYWORD2 8 +#define SCE_FS_KEYWORD3 9 +#define SCE_FS_KEYWORD4 10 +#define SCE_FS_NUMBER 11 +#define SCE_FS_STRING 12 +#define SCE_FS_PREPROCESSOR 13 +#define SCE_FS_OPERATOR 14 +#define SCE_FS_IDENTIFIER 15 +#define SCE_FS_DATE 16 +#define SCE_FS_STRINGEOL 17 +#define SCE_FS_CONSTANT 18 +#define SCE_FS_WORDOPERATOR 19 +#define SCE_FS_DISABLEDCODE 20 +#define SCE_FS_DEFAULT_C 21 +#define SCE_FS_COMMENTDOC_C 22 +#define SCE_FS_COMMENTLINEDOC_C 23 +#define SCE_FS_KEYWORD_C 24 +#define SCE_FS_KEYWORD2_C 25 +#define SCE_FS_NUMBER_C 26 +#define SCE_FS_STRING_C 27 +#define SCE_FS_PREPROCESSOR_C 28 +#define SCE_FS_OPERATOR_C 29 +#define SCE_FS_IDENTIFIER_C 30 +#define SCE_FS_STRINGEOL_C 31 +#define SCE_CSOUND_DEFAULT 0 +#define SCE_CSOUND_COMMENT 1 +#define SCE_CSOUND_NUMBER 2 +#define SCE_CSOUND_OPERATOR 3 +#define SCE_CSOUND_INSTR 4 +#define SCE_CSOUND_IDENTIFIER 5 +#define SCE_CSOUND_OPCODE 6 +#define SCE_CSOUND_HEADERSTMT 7 +#define SCE_CSOUND_USERKEYWORD 8 +#define SCE_CSOUND_COMMENTBLOCK 9 +#define SCE_CSOUND_PARAM 10 +#define SCE_CSOUND_ARATE_VAR 11 +#define SCE_CSOUND_KRATE_VAR 12 +#define SCE_CSOUND_IRATE_VAR 13 +#define SCE_CSOUND_GLOBAL_VAR 14 +#define SCE_CSOUND_STRINGEOL 15 +#define SCE_INNO_DEFAULT 0 +#define SCE_INNO_COMMENT 1 +#define SCE_INNO_KEYWORD 2 +#define SCE_INNO_PARAMETER 3 +#define SCE_INNO_SECTION 4 +#define SCE_INNO_PREPROC 5 +#define SCE_INNO_INLINE_EXPANSION 6 +#define SCE_INNO_COMMENT_PASCAL 7 +#define SCE_INNO_KEYWORD_PASCAL 8 +#define SCE_INNO_KEYWORD_USER 9 +#define SCE_INNO_STRING_DOUBLE 10 +#define SCE_INNO_STRING_SINGLE 11 +#define SCE_INNO_IDENTIFIER 12 +#define SCE_OPAL_SPACE 0 +#define SCE_OPAL_COMMENT_BLOCK 1 +#define SCE_OPAL_COMMENT_LINE 2 +#define SCE_OPAL_INTEGER 3 +#define SCE_OPAL_KEYWORD 4 +#define SCE_OPAL_SORT 5 +#define SCE_OPAL_STRING 6 +#define SCE_OPAL_PAR 7 +#define SCE_OPAL_BOOL_CONST 8 +#define SCE_OPAL_DEFAULT 32 +#define SCE_SPICE_DEFAULT 0 +#define SCE_SPICE_IDENTIFIER 1 +#define SCE_SPICE_KEYWORD 2 +#define SCE_SPICE_KEYWORD2 3 +#define SCE_SPICE_KEYWORD3 4 +#define SCE_SPICE_NUMBER 5 +#define SCE_SPICE_DELIMITER 6 +#define SCE_SPICE_VALUE 7 +#define SCE_SPICE_COMMENTLINE 8 +#define SCE_CMAKE_DEFAULT 0 +#define SCE_CMAKE_COMMENT 1 +#define SCE_CMAKE_STRINGDQ 2 +#define SCE_CMAKE_STRINGLQ 3 +#define SCE_CMAKE_STRINGRQ 4 +#define SCE_CMAKE_COMMANDS 5 +#define SCE_CMAKE_PARAMETERS 6 +#define SCE_CMAKE_VARIABLE 7 +#define SCE_CMAKE_USERDEFINED 8 +#define SCE_CMAKE_WHILEDEF 9 +#define SCE_CMAKE_FOREACHDEF 10 +#define SCE_CMAKE_IFDEFINEDEF 11 +#define SCE_CMAKE_MACRODEF 12 +#define SCE_CMAKE_STRINGVAR 13 +#define SCE_CMAKE_NUMBER 14 +#define SCE_GAP_DEFAULT 0 +#define SCE_GAP_IDENTIFIER 1 +#define SCE_GAP_KEYWORD 2 +#define SCE_GAP_KEYWORD2 3 +#define SCE_GAP_KEYWORD3 4 +#define SCE_GAP_KEYWORD4 5 +#define SCE_GAP_STRING 6 +#define SCE_GAP_CHAR 7 +#define SCE_GAP_OPERATOR 8 +#define SCE_GAP_COMMENT 9 +#define SCE_GAP_NUMBER 10 +#define SCE_GAP_STRINGEOL 11 +#define SCE_PLM_DEFAULT 0 +#define SCE_PLM_COMMENT 1 +#define SCE_PLM_STRING 2 +#define SCE_PLM_NUMBER 3 +#define SCE_PLM_IDENTIFIER 4 +#define SCE_PLM_OPERATOR 5 +#define SCE_PLM_CONTROL 6 +#define SCE_PLM_KEYWORD 7 +#define SCE_ABL_DEFAULT 0 +#define SCE_ABL_NUMBER 1 +#define SCE_ABL_WORD 2 +#define SCE_ABL_STRING 3 +#define SCE_ABL_CHARACTER 4 +#define SCE_ABL_PREPROCESSOR 5 +#define SCE_ABL_OPERATOR 6 +#define SCE_ABL_IDENTIFIER 7 +#define SCE_ABL_BLOCK 8 +#define SCE_ABL_END 9 +#define SCE_ABL_COMMENT 10 +#define SCE_ABL_TASKMARKER 11 +#define SCE_ABL_LINECOMMENT 12 +#define SCE_ABAQUS_DEFAULT 0 +#define SCE_ABAQUS_COMMENT 1 +#define SCE_ABAQUS_COMMENTBLOCK 2 +#define SCE_ABAQUS_NUMBER 3 +#define SCE_ABAQUS_STRING 4 +#define SCE_ABAQUS_OPERATOR 5 +#define SCE_ABAQUS_WORD 6 +#define SCE_ABAQUS_PROCESSOR 7 +#define SCE_ABAQUS_COMMAND 8 +#define SCE_ABAQUS_SLASHCOMMAND 9 +#define SCE_ABAQUS_STARCOMMAND 10 +#define SCE_ABAQUS_ARGUMENT 11 +#define SCE_ABAQUS_FUNCTION 12 +#define SCE_ASY_DEFAULT 0 +#define SCE_ASY_COMMENT 1 +#define SCE_ASY_COMMENTLINE 2 +#define SCE_ASY_NUMBER 3 +#define SCE_ASY_WORD 4 +#define SCE_ASY_STRING 5 +#define SCE_ASY_CHARACTER 6 +#define SCE_ASY_OPERATOR 7 +#define SCE_ASY_IDENTIFIER 8 +#define SCE_ASY_STRINGEOL 9 +#define SCE_ASY_COMMENTLINEDOC 10 +#define SCE_ASY_WORD2 11 +#define SCE_R_DEFAULT 0 +#define SCE_R_COMMENT 1 +#define SCE_R_KWORD 2 +#define SCE_R_BASEKWORD 3 +#define SCE_R_OTHERKWORD 4 +#define SCE_R_NUMBER 5 +#define SCE_R_STRING 6 +#define SCE_R_STRING2 7 +#define SCE_R_OPERATOR 8 +#define SCE_R_IDENTIFIER 9 +#define SCE_R_INFIX 10 +#define SCE_R_INFIXEOL 11 +#define SCE_MAGIK_DEFAULT 0 +#define SCE_MAGIK_COMMENT 1 +#define SCE_MAGIK_HYPER_COMMENT 16 +#define SCE_MAGIK_STRING 2 +#define SCE_MAGIK_CHARACTER 3 +#define SCE_MAGIK_NUMBER 4 +#define SCE_MAGIK_IDENTIFIER 5 +#define SCE_MAGIK_OPERATOR 6 +#define SCE_MAGIK_FLOW 7 +#define SCE_MAGIK_CONTAINER 8 +#define SCE_MAGIK_BRACKET_BLOCK 9 +#define SCE_MAGIK_BRACE_BLOCK 10 +#define SCE_MAGIK_SQBRACKET_BLOCK 11 +#define SCE_MAGIK_UNKNOWN_KEYWORD 12 +#define SCE_MAGIK_KEYWORD 13 +#define SCE_MAGIK_PRAGMA 14 +#define SCE_MAGIK_SYMBOL 15 +#define SCE_POWERSHELL_DEFAULT 0 +#define SCE_POWERSHELL_COMMENT 1 +#define SCE_POWERSHELL_STRING 2 +#define SCE_POWERSHELL_CHARACTER 3 +#define SCE_POWERSHELL_NUMBER 4 +#define SCE_POWERSHELL_VARIABLE 5 +#define SCE_POWERSHELL_OPERATOR 6 +#define SCE_POWERSHELL_IDENTIFIER 7 +#define SCE_POWERSHELL_KEYWORD 8 +#define SCE_POWERSHELL_CMDLET 9 +#define SCE_POWERSHELL_ALIAS 10 +#define SCE_POWERSHELL_FUNCTION 11 +#define SCE_POWERSHELL_USER1 12 +#define SCE_POWERSHELL_COMMENTSTREAM 13 +#define SCE_POWERSHELL_HERE_STRING 14 +#define SCE_POWERSHELL_HERE_CHARACTER 15 +#define SCE_POWERSHELL_COMMENTDOCKEYWORD 16 +#define SCE_MYSQL_DEFAULT 0 +#define SCE_MYSQL_COMMENT 1 +#define SCE_MYSQL_COMMENTLINE 2 +#define SCE_MYSQL_VARIABLE 3 +#define SCE_MYSQL_SYSTEMVARIABLE 4 +#define SCE_MYSQL_KNOWNSYSTEMVARIABLE 5 +#define SCE_MYSQL_NUMBER 6 +#define SCE_MYSQL_MAJORKEYWORD 7 +#define SCE_MYSQL_KEYWORD 8 +#define SCE_MYSQL_DATABASEOBJECT 9 +#define SCE_MYSQL_PROCEDUREKEYWORD 10 +#define SCE_MYSQL_STRING 11 +#define SCE_MYSQL_SQSTRING 12 +#define SCE_MYSQL_DQSTRING 13 +#define SCE_MYSQL_OPERATOR 14 +#define SCE_MYSQL_FUNCTION 15 +#define SCE_MYSQL_IDENTIFIER 16 +#define SCE_MYSQL_QUOTEDIDENTIFIER 17 +#define SCE_MYSQL_USER1 18 +#define SCE_MYSQL_USER2 19 +#define SCE_MYSQL_USER3 20 +#define SCE_MYSQL_HIDDENCOMMAND 21 +#define SCE_MYSQL_PLACEHOLDER 22 +#define SCE_PO_DEFAULT 0 +#define SCE_PO_COMMENT 1 +#define SCE_PO_MSGID 2 +#define SCE_PO_MSGID_TEXT 3 +#define SCE_PO_MSGSTR 4 +#define SCE_PO_MSGSTR_TEXT 5 +#define SCE_PO_MSGCTXT 6 +#define SCE_PO_MSGCTXT_TEXT 7 +#define SCE_PO_FUZZY 8 +#define SCE_PO_PROGRAMMER_COMMENT 9 +#define SCE_PO_REFERENCE 10 +#define SCE_PO_FLAGS 11 +#define SCE_PO_MSGID_TEXT_EOL 12 +#define SCE_PO_MSGSTR_TEXT_EOL 13 +#define SCE_PO_MSGCTXT_TEXT_EOL 14 +#define SCE_PO_ERROR 15 +#define SCE_PAS_DEFAULT 0 +#define SCE_PAS_IDENTIFIER 1 +#define SCE_PAS_COMMENT 2 +#define SCE_PAS_COMMENT2 3 +#define SCE_PAS_COMMENTLINE 4 +#define SCE_PAS_PREPROCESSOR 5 +#define SCE_PAS_PREPROCESSOR2 6 +#define SCE_PAS_NUMBER 7 +#define SCE_PAS_HEXNUMBER 8 +#define SCE_PAS_WORD 9 +#define SCE_PAS_STRING 10 +#define SCE_PAS_STRINGEOL 11 +#define SCE_PAS_CHARACTER 12 +#define SCE_PAS_OPERATOR 13 +#define SCE_PAS_ASM 14 +#define SCE_SORCUS_DEFAULT 0 +#define SCE_SORCUS_COMMAND 1 +#define SCE_SORCUS_PARAMETER 2 +#define SCE_SORCUS_COMMENTLINE 3 +#define SCE_SORCUS_STRING 4 +#define SCE_SORCUS_STRINGEOL 5 +#define SCE_SORCUS_IDENTIFIER 6 +#define SCE_SORCUS_OPERATOR 7 +#define SCE_SORCUS_NUMBER 8 +#define SCE_SORCUS_CONSTANT 9 +#define SCE_POWERPRO_DEFAULT 0 +#define SCE_POWERPRO_COMMENTBLOCK 1 +#define SCE_POWERPRO_COMMENTLINE 2 +#define SCE_POWERPRO_NUMBER 3 +#define SCE_POWERPRO_WORD 4 +#define SCE_POWERPRO_WORD2 5 +#define SCE_POWERPRO_WORD3 6 +#define SCE_POWERPRO_WORD4 7 +#define SCE_POWERPRO_DOUBLEQUOTEDSTRING 8 +#define SCE_POWERPRO_SINGLEQUOTEDSTRING 9 +#define SCE_POWERPRO_LINECONTINUE 10 +#define SCE_POWERPRO_OPERATOR 11 +#define SCE_POWERPRO_IDENTIFIER 12 +#define SCE_POWERPRO_STRINGEOL 13 +#define SCE_POWERPRO_VERBATIM 14 +#define SCE_POWERPRO_ALTQUOTE 15 +#define SCE_POWERPRO_FUNCTION 16 +#define SCE_SML_DEFAULT 0 +#define SCE_SML_IDENTIFIER 1 +#define SCE_SML_TAGNAME 2 +#define SCE_SML_KEYWORD 3 +#define SCE_SML_KEYWORD2 4 +#define SCE_SML_KEYWORD3 5 +#define SCE_SML_LINENUM 6 +#define SCE_SML_OPERATOR 7 +#define SCE_SML_NUMBER 8 +#define SCE_SML_CHAR 9 +#define SCE_SML_STRING 11 +#define SCE_SML_COMMENT 12 +#define SCE_SML_COMMENT1 13 +#define SCE_SML_COMMENT2 14 +#define SCE_SML_COMMENT3 15 +#define SCE_MARKDOWN_DEFAULT 0 +#define SCE_MARKDOWN_LINE_BEGIN 1 +#define SCE_MARKDOWN_STRONG1 2 +#define SCE_MARKDOWN_STRONG2 3 +#define SCE_MARKDOWN_EM1 4 +#define SCE_MARKDOWN_EM2 5 +#define SCE_MARKDOWN_HEADER1 6 +#define SCE_MARKDOWN_HEADER2 7 +#define SCE_MARKDOWN_HEADER3 8 +#define SCE_MARKDOWN_HEADER4 9 +#define SCE_MARKDOWN_HEADER5 10 +#define SCE_MARKDOWN_HEADER6 11 +#define SCE_MARKDOWN_PRECHAR 12 +#define SCE_MARKDOWN_ULIST_ITEM 13 +#define SCE_MARKDOWN_OLIST_ITEM 14 +#define SCE_MARKDOWN_BLOCKQUOTE 15 +#define SCE_MARKDOWN_STRIKEOUT 16 +#define SCE_MARKDOWN_HRULE 17 +#define SCE_MARKDOWN_LINK 18 +#define SCE_MARKDOWN_CODE 19 +#define SCE_MARKDOWN_CODE2 20 +#define SCE_MARKDOWN_CODEBK 21 +#define SCE_TXT2TAGS_DEFAULT 0 +#define SCE_TXT2TAGS_LINE_BEGIN 1 +#define SCE_TXT2TAGS_STRONG1 2 +#define SCE_TXT2TAGS_STRONG2 3 +#define SCE_TXT2TAGS_EM1 4 +#define SCE_TXT2TAGS_EM2 5 +#define SCE_TXT2TAGS_HEADER1 6 +#define SCE_TXT2TAGS_HEADER2 7 +#define SCE_TXT2TAGS_HEADER3 8 +#define SCE_TXT2TAGS_HEADER4 9 +#define SCE_TXT2TAGS_HEADER5 10 +#define SCE_TXT2TAGS_HEADER6 11 +#define SCE_TXT2TAGS_PRECHAR 12 +#define SCE_TXT2TAGS_ULIST_ITEM 13 +#define SCE_TXT2TAGS_OLIST_ITEM 14 +#define SCE_TXT2TAGS_BLOCKQUOTE 15 +#define SCE_TXT2TAGS_STRIKEOUT 16 +#define SCE_TXT2TAGS_HRULE 17 +#define SCE_TXT2TAGS_LINK 18 +#define SCE_TXT2TAGS_CODE 19 +#define SCE_TXT2TAGS_CODE2 20 +#define SCE_TXT2TAGS_CODEBK 21 +#define SCE_TXT2TAGS_COMMENT 22 +#define SCE_TXT2TAGS_OPTION 23 +#define SCE_TXT2TAGS_PREPROC 24 +#define SCE_TXT2TAGS_POSTPROC 25 +#define SCE_A68K_DEFAULT 0 +#define SCE_A68K_COMMENT 1 +#define SCE_A68K_NUMBER_DEC 2 +#define SCE_A68K_NUMBER_BIN 3 +#define SCE_A68K_NUMBER_HEX 4 +#define SCE_A68K_STRING1 5 +#define SCE_A68K_OPERATOR 6 +#define SCE_A68K_CPUINSTRUCTION 7 +#define SCE_A68K_EXTINSTRUCTION 8 +#define SCE_A68K_REGISTER 9 +#define SCE_A68K_DIRECTIVE 10 +#define SCE_A68K_MACRO_ARG 11 +#define SCE_A68K_LABEL 12 +#define SCE_A68K_STRING2 13 +#define SCE_A68K_IDENTIFIER 14 +#define SCE_A68K_MACRO_DECLARATION 15 +#define SCE_A68K_COMMENT_WORD 16 +#define SCE_A68K_COMMENT_SPECIAL 17 +#define SCE_A68K_COMMENT_DOXYGEN 18 +#define SCE_MODULA_DEFAULT 0 +#define SCE_MODULA_COMMENT 1 +#define SCE_MODULA_DOXYCOMM 2 +#define SCE_MODULA_DOXYKEY 3 +#define SCE_MODULA_KEYWORD 4 +#define SCE_MODULA_RESERVED 5 +#define SCE_MODULA_NUMBER 6 +#define SCE_MODULA_BASENUM 7 +#define SCE_MODULA_FLOAT 8 +#define SCE_MODULA_STRING 9 +#define SCE_MODULA_STRSPEC 10 +#define SCE_MODULA_CHAR 11 +#define SCE_MODULA_CHARSPEC 12 +#define SCE_MODULA_PROC 13 +#define SCE_MODULA_PRAGMA 14 +#define SCE_MODULA_PRGKEY 15 +#define SCE_MODULA_OPERATOR 16 +#define SCE_MODULA_BADSTR 17 +#define SCE_COFFEESCRIPT_DEFAULT 0 +#define SCE_COFFEESCRIPT_COMMENT 1 +#define SCE_COFFEESCRIPT_COMMENTLINE 2 +#define SCE_COFFEESCRIPT_COMMENTDOC 3 +#define SCE_COFFEESCRIPT_NUMBER 4 +#define SCE_COFFEESCRIPT_WORD 5 +#define SCE_COFFEESCRIPT_STRING 6 +#define SCE_COFFEESCRIPT_CHARACTER 7 +#define SCE_COFFEESCRIPT_UUID 8 +#define SCE_COFFEESCRIPT_PREPROCESSOR 9 +#define SCE_COFFEESCRIPT_OPERATOR 10 +#define SCE_COFFEESCRIPT_IDENTIFIER 11 +#define SCE_COFFEESCRIPT_STRINGEOL 12 +#define SCE_COFFEESCRIPT_VERBATIM 13 +#define SCE_COFFEESCRIPT_REGEX 14 +#define SCE_COFFEESCRIPT_COMMENTLINEDOC 15 +#define SCE_COFFEESCRIPT_WORD2 16 +#define SCE_COFFEESCRIPT_COMMENTDOCKEYWORD 17 +#define SCE_COFFEESCRIPT_COMMENTDOCKEYWORDERROR 18 +#define SCE_COFFEESCRIPT_GLOBALCLASS 19 +#define SCE_COFFEESCRIPT_STRINGRAW 20 +#define SCE_COFFEESCRIPT_TRIPLEVERBATIM 21 +#define SCE_COFFEESCRIPT_COMMENTBLOCK 22 +#define SCE_COFFEESCRIPT_VERBOSE_REGEX 23 +#define SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT 24 +#define SCE_COFFEESCRIPT_INSTANCEPROPERTY 25 +#define SCE_AVS_DEFAULT 0 +#define SCE_AVS_COMMENTBLOCK 1 +#define SCE_AVS_COMMENTBLOCKN 2 +#define SCE_AVS_COMMENTLINE 3 +#define SCE_AVS_NUMBER 4 +#define SCE_AVS_OPERATOR 5 +#define SCE_AVS_IDENTIFIER 6 +#define SCE_AVS_STRING 7 +#define SCE_AVS_TRIPLESTRING 8 +#define SCE_AVS_KEYWORD 9 +#define SCE_AVS_FILTER 10 +#define SCE_AVS_PLUGIN 11 +#define SCE_AVS_FUNCTION 12 +#define SCE_AVS_CLIPPROP 13 +#define SCE_AVS_USERDFN 14 +#define SCE_ECL_DEFAULT 0 +#define SCE_ECL_COMMENT 1 +#define SCE_ECL_COMMENTLINE 2 +#define SCE_ECL_NUMBER 3 +#define SCE_ECL_STRING 4 +#define SCE_ECL_WORD0 5 +#define SCE_ECL_OPERATOR 6 +#define SCE_ECL_CHARACTER 7 +#define SCE_ECL_UUID 8 +#define SCE_ECL_PREPROCESSOR 9 +#define SCE_ECL_UNKNOWN 10 +#define SCE_ECL_IDENTIFIER 11 +#define SCE_ECL_STRINGEOL 12 +#define SCE_ECL_VERBATIM 13 +#define SCE_ECL_REGEX 14 +#define SCE_ECL_COMMENTLINEDOC 15 +#define SCE_ECL_WORD1 16 +#define SCE_ECL_COMMENTDOCKEYWORD 17 +#define SCE_ECL_COMMENTDOCKEYWORDERROR 18 +#define SCE_ECL_WORD2 19 +#define SCE_ECL_WORD3 20 +#define SCE_ECL_WORD4 21 +#define SCE_ECL_WORD5 22 +#define SCE_ECL_COMMENTDOC 23 +#define SCE_ECL_ADDED 24 +#define SCE_ECL_DELETED 25 +#define SCE_ECL_CHANGED 26 +#define SCE_ECL_MOVED 27 +#define SCE_OSCRIPT_DEFAULT 0 +#define SCE_OSCRIPT_LINE_COMMENT 1 +#define SCE_OSCRIPT_BLOCK_COMMENT 2 +#define SCE_OSCRIPT_DOC_COMMENT 3 +#define SCE_OSCRIPT_PREPROCESSOR 4 +#define SCE_OSCRIPT_NUMBER 5 +#define SCE_OSCRIPT_SINGLEQUOTE_STRING 6 +#define SCE_OSCRIPT_DOUBLEQUOTE_STRING 7 +#define SCE_OSCRIPT_CONSTANT 8 +#define SCE_OSCRIPT_IDENTIFIER 9 +#define SCE_OSCRIPT_GLOBAL 10 +#define SCE_OSCRIPT_KEYWORD 11 +#define SCE_OSCRIPT_OPERATOR 12 +#define SCE_OSCRIPT_LABEL 13 +#define SCE_OSCRIPT_TYPE 14 +#define SCE_OSCRIPT_FUNCTION 15 +#define SCE_OSCRIPT_OBJECT 16 +#define SCE_OSCRIPT_PROPERTY 17 +#define SCE_OSCRIPT_METHOD 18 +#define SCE_VISUALPROLOG_DEFAULT 0 +#define SCE_VISUALPROLOG_KEY_MAJOR 1 +#define SCE_VISUALPROLOG_KEY_MINOR 2 +#define SCE_VISUALPROLOG_KEY_DIRECTIVE 3 +#define SCE_VISUALPROLOG_COMMENT_BLOCK 4 +#define SCE_VISUALPROLOG_COMMENT_LINE 5 +#define SCE_VISUALPROLOG_COMMENT_KEY 6 +#define SCE_VISUALPROLOG_COMMENT_KEY_ERROR 7 +#define SCE_VISUALPROLOG_IDENTIFIER 8 +#define SCE_VISUALPROLOG_VARIABLE 9 +#define SCE_VISUALPROLOG_ANONYMOUS 10 +#define SCE_VISUALPROLOG_NUMBER 11 +#define SCE_VISUALPROLOG_OPERATOR 12 +#define SCE_VISUALPROLOG_CHARACTER 13 +#define SCE_VISUALPROLOG_CHARACTER_TOO_MANY 14 +#define SCE_VISUALPROLOG_CHARACTER_ESCAPE_ERROR 15 +#define SCE_VISUALPROLOG_STRING 16 +#define SCE_VISUALPROLOG_STRING_ESCAPE 17 +#define SCE_VISUALPROLOG_STRING_ESCAPE_ERROR 18 +#define SCE_VISUALPROLOG_STRING_EOL_OPEN 19 +#define SCE_VISUALPROLOG_STRING_VERBATIM 20 +#define SCE_VISUALPROLOG_STRING_VERBATIM_SPECIAL 21 +#define SCE_VISUALPROLOG_STRING_VERBATIM_EOL 22 +#define SCE_STTXT_DEFAULT 0 +#define SCE_STTXT_COMMENT 1 +#define SCE_STTXT_COMMENTLINE 2 +#define SCE_STTXT_KEYWORD 3 +#define SCE_STTXT_TYPE 4 +#define SCE_STTXT_FUNCTION 5 +#define SCE_STTXT_FB 6 +#define SCE_STTXT_NUMBER 7 +#define SCE_STTXT_HEXNUMBER 8 +#define SCE_STTXT_PRAGMA 9 +#define SCE_STTXT_OPERATOR 10 +#define SCE_STTXT_CHARACTER 11 +#define SCE_STTXT_STRING1 12 +#define SCE_STTXT_STRING2 13 +#define SCE_STTXT_STRINGEOL 14 +#define SCE_STTXT_IDENTIFIER 15 +#define SCE_STTXT_DATETIME 16 +#define SCE_STTXT_VARS 17 +#define SCE_STTXT_PRAGMAS 18 +#define SCE_KVIRC_DEFAULT 0 +#define SCE_KVIRC_COMMENT 1 +#define SCE_KVIRC_COMMENTBLOCK 2 +#define SCE_KVIRC_STRING 3 +#define SCE_KVIRC_WORD 4 +#define SCE_KVIRC_KEYWORD 5 +#define SCE_KVIRC_FUNCTION_KEYWORD 6 +#define SCE_KVIRC_FUNCTION 7 +#define SCE_KVIRC_VARIABLE 8 +#define SCE_KVIRC_NUMBER 9 +#define SCE_KVIRC_OPERATOR 10 +#define SCE_KVIRC_STRING_FUNCTION 11 +#define SCE_KVIRC_STRING_VARIABLE 12 +#define SCE_RUST_DEFAULT 0 +#define SCE_RUST_COMMENTBLOCK 1 +#define SCE_RUST_COMMENTLINE 2 +#define SCE_RUST_COMMENTBLOCKDOC 3 +#define SCE_RUST_COMMENTLINEDOC 4 +#define SCE_RUST_NUMBER 5 +#define SCE_RUST_WORD 6 +#define SCE_RUST_WORD2 7 +#define SCE_RUST_WORD3 8 +#define SCE_RUST_WORD4 9 +#define SCE_RUST_WORD5 10 +#define SCE_RUST_WORD6 11 +#define SCE_RUST_WORD7 12 +#define SCE_RUST_STRING 13 +#define SCE_RUST_STRINGR 14 +#define SCE_RUST_CHARACTER 15 +#define SCE_RUST_OPERATOR 16 +#define SCE_RUST_IDENTIFIER 17 +#define SCE_RUST_LIFETIME 18 +#define SCE_RUST_MACRO 19 +#define SCE_RUST_LEXERROR 20 +#define SCE_RUST_BYTESTRING 21 +#define SCE_RUST_BYTESTRINGR 22 +#define SCE_RUST_BYTECHARACTER 23 +#define SCE_DMAP_DEFAULT 0 +#define SCE_DMAP_COMMENT 1 +#define SCE_DMAP_NUMBER 2 +#define SCE_DMAP_STRING1 3 +#define SCE_DMAP_STRING2 4 +#define SCE_DMAP_STRINGEOL 5 +#define SCE_DMAP_OPERATOR 6 +#define SCE_DMAP_IDENTIFIER 7 +#define SCE_DMAP_WORD 8 +#define SCE_DMAP_WORD2 9 +#define SCE_DMAP_WORD3 10 +#define SCE_DMIS_DEFAULT 0 +#define SCE_DMIS_COMMENT 1 +#define SCE_DMIS_STRING 2 +#define SCE_DMIS_NUMBER 3 +#define SCE_DMIS_KEYWORD 4 +#define SCE_DMIS_MAJORWORD 5 +#define SCE_DMIS_MINORWORD 6 +#define SCE_DMIS_UNSUPPORTED_MAJOR 7 +#define SCE_DMIS_UNSUPPORTED_MINOR 8 +#define SCE_DMIS_LABEL 9 +#define SCE_REG_DEFAULT 0 +#define SCE_REG_COMMENT 1 +#define SCE_REG_VALUENAME 2 +#define SCE_REG_STRING 3 +#define SCE_REG_HEXDIGIT 4 +#define SCE_REG_VALUETYPE 5 +#define SCE_REG_ADDEDKEY 6 +#define SCE_REG_DELETEDKEY 7 +#define SCE_REG_ESCAPED 8 +#define SCE_REG_KEYPATH_GUID 9 +#define SCE_REG_STRING_GUID 10 +#define SCE_REG_PARAMETER 11 +#define SCE_REG_OPERATOR 12 +#define SCE_BIBTEX_DEFAULT 0 +#define SCE_BIBTEX_ENTRY 1 +#define SCE_BIBTEX_UNKNOWN_ENTRY 2 +#define SCE_BIBTEX_KEY 3 +#define SCE_BIBTEX_PARAMETER 4 +#define SCE_BIBTEX_VALUE 5 +#define SCE_BIBTEX_COMMENT 6 +#define SCE_HEX_DEFAULT 0 +#define SCE_HEX_RECSTART 1 +#define SCE_HEX_RECTYPE 2 +#define SCE_HEX_RECTYPE_UNKNOWN 3 +#define SCE_HEX_BYTECOUNT 4 +#define SCE_HEX_BYTECOUNT_WRONG 5 +#define SCE_HEX_NOADDRESS 6 +#define SCE_HEX_DATAADDRESS 7 +#define SCE_HEX_RECCOUNT 8 +#define SCE_HEX_STARTADDRESS 9 +#define SCE_HEX_ADDRESSFIELD_UNKNOWN 10 +#define SCE_HEX_EXTENDEDADDRESS 11 +#define SCE_HEX_DATA_ODD 12 +#define SCE_HEX_DATA_EVEN 13 +#define SCE_HEX_DATA_UNKNOWN 14 +#define SCE_HEX_DATA_EMPTY 15 +#define SCE_HEX_CHECKSUM 16 +#define SCE_HEX_CHECKSUM_WRONG 17 +#define SCE_HEX_GARBAGE 18 +#define SCE_JSON_DEFAULT 0 +#define SCE_JSON_NUMBER 1 +#define SCE_JSON_STRING 2 +#define SCE_JSON_STRINGEOL 3 +#define SCE_JSON_PROPERTYNAME 4 +#define SCE_JSON_ESCAPESEQUENCE 5 +#define SCE_JSON_LINECOMMENT 6 +#define SCE_JSON_BLOCKCOMMENT 7 +#define SCE_JSON_OPERATOR 8 +#define SCE_JSON_URI 9 +#define SCE_JSON_COMPACTIRI 10 +#define SCE_JSON_KEYWORD 11 +#define SCE_JSON_LDKEYWORD 12 +#define SCE_JSON_ERROR 13 +#define SCE_EDI_DEFAULT 0 +#define SCE_EDI_SEGMENTSTART 1 +#define SCE_EDI_SEGMENTEND 2 +#define SCE_EDI_SEP_ELEMENT 3 +#define SCE_EDI_SEP_COMPOSITE 4 +#define SCE_EDI_SEP_RELEASE 5 +#define SCE_EDI_UNA 6 +#define SCE_EDI_UNH 7 +#define SCE_EDI_BADSEGMENT 8 +#define SCE_STATA_DEFAULT 0 +#define SCE_STATA_COMMENT 1 +#define SCE_STATA_COMMENTLINE 2 +#define SCE_STATA_COMMENTBLOCK 3 +#define SCE_STATA_NUMBER 4 +#define SCE_STATA_OPERATOR 5 +#define SCE_STATA_IDENTIFIER 6 +#define SCE_STATA_STRING 7 +#define SCE_STATA_TYPE 8 +#define SCE_STATA_WORD 9 +#define SCE_STATA_GLOBAL_MACRO 10 +#define SCE_STATA_MACRO 11 +#define SCE_SAS_DEFAULT 0 +#define SCE_SAS_COMMENT 1 +#define SCE_SAS_COMMENTLINE 2 +#define SCE_SAS_COMMENTBLOCK 3 +#define SCE_SAS_NUMBER 4 +#define SCE_SAS_OPERATOR 5 +#define SCE_SAS_IDENTIFIER 6 +#define SCE_SAS_STRING 7 +#define SCE_SAS_TYPE 8 +#define SCE_SAS_WORD 9 +#define SCE_SAS_GLOBAL_MACRO 10 +#define SCE_SAS_MACRO 11 +#define SCE_SAS_MACRO_KEYWORD 12 +#define SCE_SAS_BLOCK_KEYWORD 13 +#define SCE_SAS_MACRO_FUNCTION 14 +#define SCE_SAS_STATEMENT 15 +/* --Autogenerated -- end of section automatically generated from Scintilla.iface */ + +#endif diff --git a/third_party/qscintilla/scintilla/include/Sci_Position.h b/third_party/qscintilla/scintilla/include/Sci_Position.h new file mode 100644 index 0000000..abd0f34 --- /dev/null +++ b/third_party/qscintilla/scintilla/include/Sci_Position.h @@ -0,0 +1,29 @@ +// Scintilla source code edit control +/** @file Sci_Position.h + ** Define the Sci_Position type used in Scintilla's external interfaces. + ** These need to be available to clients written in C so are not in a C++ namespace. + **/ +// Copyright 2015 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#ifndef SCI_POSITION_H +#define SCI_POSITION_H + +#include + +// Basic signed type used throughout interface +typedef ptrdiff_t Sci_Position; + +// Unsigned variant used for ILexer::Lex and ILexer::Fold +typedef size_t Sci_PositionU; + +// For Sci_CharacterRange which is defined as long to be compatible with Win32 CHARRANGE +typedef long Sci_PositionCR; + +#ifdef _WIN32 + #define SCI_METHOD __stdcall +#else + #define SCI_METHOD +#endif + +#endif diff --git a/third_party/qscintilla/scintilla/include/Scintilla.h b/third_party/qscintilla/scintilla/include/Scintilla.h new file mode 100644 index 0000000..298103c --- /dev/null +++ b/third_party/qscintilla/scintilla/include/Scintilla.h @@ -0,0 +1,1239 @@ +/* Scintilla source code edit control */ +/** @file Scintilla.h + ** Interface to the edit control. + **/ +/* Copyright 1998-2003 by Neil Hodgson + * The License.txt file describes the conditions under which this software may be distributed. */ + +/* Most of this file is automatically generated from the Scintilla.iface interface definition + * file which contains any comments about the definitions. HFacer.py does the generation. */ + +#ifndef SCINTILLA_H +#define SCINTILLA_H + +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(_WIN32) +/* Return false on failure: */ +int Scintilla_RegisterClasses(void *hInstance); +int Scintilla_ReleaseResources(void); +#endif +int Scintilla_LinkLexers(void); + +#ifdef __cplusplus +} +#endif + +// Include header that defines basic numeric types. +#include + +// Define uptr_t, an unsigned integer type large enough to hold a pointer. +typedef uintptr_t uptr_t; +// Define sptr_t, a signed integer large enough to hold a pointer. +typedef intptr_t sptr_t; + +#include "Sci_Position.h" + +typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, sptr_t lParam); + +/* ++Autogenerated -- start of section automatically generated from Scintilla.iface */ +#define INVALID_POSITION -1 +#define SCI_START 2000 +#define SCI_OPTIONAL_START 3000 +#define SCI_LEXER_START 4000 +#define SCI_ADDTEXT 2001 +#define SCI_ADDSTYLEDTEXT 2002 +#define SCI_INSERTTEXT 2003 +#define SCI_CHANGEINSERTION 2672 +#define SCI_CLEARALL 2004 +#define SCI_DELETERANGE 2645 +#define SCI_CLEARDOCUMENTSTYLE 2005 +#define SCI_GETLENGTH 2006 +#define SCI_GETCHARAT 2007 +#define SCI_GETCURRENTPOS 2008 +#define SCI_GETANCHOR 2009 +#define SCI_GETSTYLEAT 2010 +#define SCI_REDO 2011 +#define SCI_SETUNDOCOLLECTION 2012 +#define SCI_SELECTALL 2013 +#define SCI_SETSAVEPOINT 2014 +#define SCI_GETSTYLEDTEXT 2015 +#define SCI_CANREDO 2016 +#define SCI_MARKERLINEFROMHANDLE 2017 +#define SCI_MARKERDELETEHANDLE 2018 +#define SCI_GETUNDOCOLLECTION 2019 +#define SCWS_INVISIBLE 0 +#define SCWS_VISIBLEALWAYS 1 +#define SCWS_VISIBLEAFTERINDENT 2 +#define SCWS_VISIBLEONLYININDENT 3 +#define SCI_GETVIEWWS 2020 +#define SCI_SETVIEWWS 2021 +#define SCTD_LONGARROW 0 +#define SCTD_STRIKEOUT 1 +#define SCI_GETTABDRAWMODE 2698 +#define SCI_SETTABDRAWMODE 2699 +#define SCI_POSITIONFROMPOINT 2022 +#define SCI_POSITIONFROMPOINTCLOSE 2023 +#define SCI_GOTOLINE 2024 +#define SCI_GOTOPOS 2025 +#define SCI_SETANCHOR 2026 +#define SCI_GETCURLINE 2027 +#define SCI_GETENDSTYLED 2028 +#define SC_EOL_CRLF 0 +#define SC_EOL_CR 1 +#define SC_EOL_LF 2 +#define SCI_CONVERTEOLS 2029 +#define SCI_GETEOLMODE 2030 +#define SCI_SETEOLMODE 2031 +#define SCI_STARTSTYLING 2032 +#define SCI_SETSTYLING 2033 +#define SCI_GETBUFFEREDDRAW 2034 +#define SCI_SETBUFFEREDDRAW 2035 +#define SCI_SETTABWIDTH 2036 +#define SCI_GETTABWIDTH 2121 +#define SCI_CLEARTABSTOPS 2675 +#define SCI_ADDTABSTOP 2676 +#define SCI_GETNEXTTABSTOP 2677 +#define SC_CP_UTF8 65001 +#define SCI_SETCODEPAGE 2037 +#define SC_IME_WINDOWED 0 +#define SC_IME_INLINE 1 +#define SCI_GETIMEINTERACTION 2678 +#define SCI_SETIMEINTERACTION 2679 +#define MARKER_MAX 31 +#define SC_MARK_CIRCLE 0 +#define SC_MARK_ROUNDRECT 1 +#define SC_MARK_ARROW 2 +#define SC_MARK_SMALLRECT 3 +#define SC_MARK_SHORTARROW 4 +#define SC_MARK_EMPTY 5 +#define SC_MARK_ARROWDOWN 6 +#define SC_MARK_MINUS 7 +#define SC_MARK_PLUS 8 +#define SC_MARK_VLINE 9 +#define SC_MARK_LCORNER 10 +#define SC_MARK_TCORNER 11 +#define SC_MARK_BOXPLUS 12 +#define SC_MARK_BOXPLUSCONNECTED 13 +#define SC_MARK_BOXMINUS 14 +#define SC_MARK_BOXMINUSCONNECTED 15 +#define SC_MARK_LCORNERCURVE 16 +#define SC_MARK_TCORNERCURVE 17 +#define SC_MARK_CIRCLEPLUS 18 +#define SC_MARK_CIRCLEPLUSCONNECTED 19 +#define SC_MARK_CIRCLEMINUS 20 +#define SC_MARK_CIRCLEMINUSCONNECTED 21 +#define SC_MARK_BACKGROUND 22 +#define SC_MARK_DOTDOTDOT 23 +#define SC_MARK_ARROWS 24 +#define SC_MARK_PIXMAP 25 +#define SC_MARK_FULLRECT 26 +#define SC_MARK_LEFTRECT 27 +#define SC_MARK_AVAILABLE 28 +#define SC_MARK_UNDERLINE 29 +#define SC_MARK_RGBAIMAGE 30 +#define SC_MARK_BOOKMARK 31 +#define SC_MARK_CHARACTER 10000 +#define SC_MARKNUM_FOLDEREND 25 +#define SC_MARKNUM_FOLDEROPENMID 26 +#define SC_MARKNUM_FOLDERMIDTAIL 27 +#define SC_MARKNUM_FOLDERTAIL 28 +#define SC_MARKNUM_FOLDERSUB 29 +#define SC_MARKNUM_FOLDER 30 +#define SC_MARKNUM_FOLDEROPEN 31 +#define SC_MASK_FOLDERS 0xFE000000 +#define SCI_MARKERDEFINE 2040 +#define SCI_MARKERSETFORE 2041 +#define SCI_MARKERSETBACK 2042 +#define SCI_MARKERSETBACKSELECTED 2292 +#define SCI_MARKERENABLEHIGHLIGHT 2293 +#define SCI_MARKERADD 2043 +#define SCI_MARKERDELETE 2044 +#define SCI_MARKERDELETEALL 2045 +#define SCI_MARKERGET 2046 +#define SCI_MARKERNEXT 2047 +#define SCI_MARKERPREVIOUS 2048 +#define SCI_MARKERDEFINEPIXMAP 2049 +#define SCI_MARKERADDSET 2466 +#define SCI_MARKERSETALPHA 2476 +#define SC_MAX_MARGIN 4 +#define SC_MARGIN_SYMBOL 0 +#define SC_MARGIN_NUMBER 1 +#define SC_MARGIN_BACK 2 +#define SC_MARGIN_FORE 3 +#define SC_MARGIN_TEXT 4 +#define SC_MARGIN_RTEXT 5 +#define SC_MARGIN_COLOUR 6 +#define SCI_SETMARGINTYPEN 2240 +#define SCI_GETMARGINTYPEN 2241 +#define SCI_SETMARGINWIDTHN 2242 +#define SCI_GETMARGINWIDTHN 2243 +#define SCI_SETMARGINMASKN 2244 +#define SCI_GETMARGINMASKN 2245 +#define SCI_SETMARGINSENSITIVEN 2246 +#define SCI_GETMARGINSENSITIVEN 2247 +#define SCI_SETMARGINCURSORN 2248 +#define SCI_GETMARGINCURSORN 2249 +#define SCI_SETMARGINBACKN 2250 +#define SCI_GETMARGINBACKN 2251 +#define SCI_SETMARGINS 2252 +#define SCI_GETMARGINS 2253 +#define STYLE_DEFAULT 32 +#define STYLE_LINENUMBER 33 +#define STYLE_BRACELIGHT 34 +#define STYLE_BRACEBAD 35 +#define STYLE_CONTROLCHAR 36 +#define STYLE_INDENTGUIDE 37 +#define STYLE_CALLTIP 38 +#define STYLE_FOLDDISPLAYTEXT 39 +#define STYLE_LASTPREDEFINED 39 +#define STYLE_MAX 255 +#define SC_CHARSET_ANSI 0 +#define SC_CHARSET_DEFAULT 1 +#define SC_CHARSET_BALTIC 186 +#define SC_CHARSET_CHINESEBIG5 136 +#define SC_CHARSET_EASTEUROPE 238 +#define SC_CHARSET_GB2312 134 +#define SC_CHARSET_GREEK 161 +#define SC_CHARSET_HANGUL 129 +#define SC_CHARSET_MAC 77 +#define SC_CHARSET_OEM 255 +#define SC_CHARSET_RUSSIAN 204 +#define SC_CHARSET_OEM866 866 +#define SC_CHARSET_CYRILLIC 1251 +#define SC_CHARSET_SHIFTJIS 128 +#define SC_CHARSET_SYMBOL 2 +#define SC_CHARSET_TURKISH 162 +#define SC_CHARSET_JOHAB 130 +#define SC_CHARSET_HEBREW 177 +#define SC_CHARSET_ARABIC 178 +#define SC_CHARSET_VIETNAMESE 163 +#define SC_CHARSET_THAI 222 +#define SC_CHARSET_8859_15 1000 +#define SCI_STYLECLEARALL 2050 +#define SCI_STYLESETFORE 2051 +#define SCI_STYLESETBACK 2052 +#define SCI_STYLESETBOLD 2053 +#define SCI_STYLESETITALIC 2054 +#define SCI_STYLESETSIZE 2055 +#define SCI_STYLESETFONT 2056 +#define SCI_STYLESETEOLFILLED 2057 +#define SCI_STYLERESETDEFAULT 2058 +#define SCI_STYLESETUNDERLINE 2059 +#define SC_CASE_MIXED 0 +#define SC_CASE_UPPER 1 +#define SC_CASE_LOWER 2 +#define SC_CASE_CAMEL 3 +#define SCI_STYLEGETFORE 2481 +#define SCI_STYLEGETBACK 2482 +#define SCI_STYLEGETBOLD 2483 +#define SCI_STYLEGETITALIC 2484 +#define SCI_STYLEGETSIZE 2485 +#define SCI_STYLEGETFONT 2486 +#define SCI_STYLEGETEOLFILLED 2487 +#define SCI_STYLEGETUNDERLINE 2488 +#define SCI_STYLEGETCASE 2489 +#define SCI_STYLEGETCHARACTERSET 2490 +#define SCI_STYLEGETVISIBLE 2491 +#define SCI_STYLEGETCHANGEABLE 2492 +#define SCI_STYLEGETHOTSPOT 2493 +#define SCI_STYLESETCASE 2060 +#define SC_FONT_SIZE_MULTIPLIER 100 +#define SCI_STYLESETSIZEFRACTIONAL 2061 +#define SCI_STYLEGETSIZEFRACTIONAL 2062 +#define SC_WEIGHT_NORMAL 400 +#define SC_WEIGHT_SEMIBOLD 600 +#define SC_WEIGHT_BOLD 700 +#define SCI_STYLESETWEIGHT 2063 +#define SCI_STYLEGETWEIGHT 2064 +#define SCI_STYLESETCHARACTERSET 2066 +#define SCI_STYLESETHOTSPOT 2409 +#define SCI_SETSELFORE 2067 +#define SCI_SETSELBACK 2068 +#define SCI_GETSELALPHA 2477 +#define SCI_SETSELALPHA 2478 +#define SCI_GETSELEOLFILLED 2479 +#define SCI_SETSELEOLFILLED 2480 +#define SCI_SETCARETFORE 2069 +#define SCI_ASSIGNCMDKEY 2070 +#define SCI_CLEARCMDKEY 2071 +#define SCI_CLEARALLCMDKEYS 2072 +#define SCI_SETSTYLINGEX 2073 +#define SCI_STYLESETVISIBLE 2074 +#define SCI_GETCARETPERIOD 2075 +#define SCI_SETCARETPERIOD 2076 +#define SCI_SETWORDCHARS 2077 +#define SCI_GETWORDCHARS 2646 +#define SCI_BEGINUNDOACTION 2078 +#define SCI_ENDUNDOACTION 2079 +#define INDIC_PLAIN 0 +#define INDIC_SQUIGGLE 1 +#define INDIC_TT 2 +#define INDIC_DIAGONAL 3 +#define INDIC_STRIKE 4 +#define INDIC_HIDDEN 5 +#define INDIC_BOX 6 +#define INDIC_ROUNDBOX 7 +#define INDIC_STRAIGHTBOX 8 +#define INDIC_DASH 9 +#define INDIC_DOTS 10 +#define INDIC_SQUIGGLELOW 11 +#define INDIC_DOTBOX 12 +#define INDIC_SQUIGGLEPIXMAP 13 +#define INDIC_COMPOSITIONTHICK 14 +#define INDIC_COMPOSITIONTHIN 15 +#define INDIC_FULLBOX 16 +#define INDIC_TEXTFORE 17 +#define INDIC_POINT 18 +#define INDIC_POINTCHARACTER 19 +#define INDIC_GRADIENT 20 +#define INDIC_GRADIENTCENTRE 21 +#define INDIC_IME 32 +#define INDIC_IME_MAX 35 +#define INDIC_MAX 35 +#define INDIC_CONTAINER 8 +#define INDIC0_MASK 0x20 +#define INDIC1_MASK 0x40 +#define INDIC2_MASK 0x80 +#define INDICS_MASK 0xE0 +#define SCI_INDICSETSTYLE 2080 +#define SCI_INDICGETSTYLE 2081 +#define SCI_INDICSETFORE 2082 +#define SCI_INDICGETFORE 2083 +#define SCI_INDICSETUNDER 2510 +#define SCI_INDICGETUNDER 2511 +#define SCI_INDICSETHOVERSTYLE 2680 +#define SCI_INDICGETHOVERSTYLE 2681 +#define SCI_INDICSETHOVERFORE 2682 +#define SCI_INDICGETHOVERFORE 2683 +#define SC_INDICVALUEBIT 0x1000000 +#define SC_INDICVALUEMASK 0xFFFFFF +#define SC_INDICFLAG_VALUEFORE 1 +#define SCI_INDICSETFLAGS 2684 +#define SCI_INDICGETFLAGS 2685 +#define SCI_SETWHITESPACEFORE 2084 +#define SCI_SETWHITESPACEBACK 2085 +#define SCI_SETWHITESPACESIZE 2086 +#define SCI_GETWHITESPACESIZE 2087 +#define SCI_SETLINESTATE 2092 +#define SCI_GETLINESTATE 2093 +#define SCI_GETMAXLINESTATE 2094 +#define SCI_GETCARETLINEVISIBLE 2095 +#define SCI_SETCARETLINEVISIBLE 2096 +#define SCI_GETCARETLINEBACK 2097 +#define SCI_SETCARETLINEBACK 2098 +#define SCI_GETCARETLINEFRAME 2704 +#define SCI_SETCARETLINEFRAME 2705 +#define SCI_STYLESETCHANGEABLE 2099 +#define SCI_AUTOCSHOW 2100 +#define SCI_AUTOCCANCEL 2101 +#define SCI_AUTOCACTIVE 2102 +#define SCI_AUTOCPOSSTART 2103 +#define SCI_AUTOCCOMPLETE 2104 +#define SCI_AUTOCSTOPS 2105 +#define SCI_AUTOCSETSEPARATOR 2106 +#define SCI_AUTOCGETSEPARATOR 2107 +#define SCI_AUTOCSELECT 2108 +#define SCI_AUTOCSETCANCELATSTART 2110 +#define SCI_AUTOCGETCANCELATSTART 2111 +#define SCI_AUTOCSETFILLUPS 2112 +#define SCI_AUTOCSETCHOOSESINGLE 2113 +#define SCI_AUTOCGETCHOOSESINGLE 2114 +#define SCI_AUTOCSETIGNORECASE 2115 +#define SCI_AUTOCGETIGNORECASE 2116 +#define SCI_USERLISTSHOW 2117 +#define SCI_AUTOCSETAUTOHIDE 2118 +#define SCI_AUTOCGETAUTOHIDE 2119 +#define SCI_AUTOCSETDROPRESTOFWORD 2270 +#define SCI_AUTOCGETDROPRESTOFWORD 2271 +#define SCI_REGISTERIMAGE 2405 +#define SCI_CLEARREGISTEREDIMAGES 2408 +#define SCI_AUTOCGETTYPESEPARATOR 2285 +#define SCI_AUTOCSETTYPESEPARATOR 2286 +#define SCI_AUTOCSETMAXWIDTH 2208 +#define SCI_AUTOCGETMAXWIDTH 2209 +#define SCI_AUTOCSETMAXHEIGHT 2210 +#define SCI_AUTOCGETMAXHEIGHT 2211 +#define SCI_SETINDENT 2122 +#define SCI_GETINDENT 2123 +#define SCI_SETUSETABS 2124 +#define SCI_GETUSETABS 2125 +#define SCI_SETLINEINDENTATION 2126 +#define SCI_GETLINEINDENTATION 2127 +#define SCI_GETLINEINDENTPOSITION 2128 +#define SCI_GETCOLUMN 2129 +#define SCI_COUNTCHARACTERS 2633 +#define SCI_COUNTCODEUNITS 2715 +#define SCI_SETHSCROLLBAR 2130 +#define SCI_GETHSCROLLBAR 2131 +#define SC_IV_NONE 0 +#define SC_IV_REAL 1 +#define SC_IV_LOOKFORWARD 2 +#define SC_IV_LOOKBOTH 3 +#define SCI_SETINDENTATIONGUIDES 2132 +#define SCI_GETINDENTATIONGUIDES 2133 +#define SCI_SETHIGHLIGHTGUIDE 2134 +#define SCI_GETHIGHLIGHTGUIDE 2135 +#define SCI_GETLINEENDPOSITION 2136 +#define SCI_GETCODEPAGE 2137 +#define SCI_GETCARETFORE 2138 +#define SCI_GETREADONLY 2140 +#define SCI_SETCURRENTPOS 2141 +#define SCI_SETSELECTIONSTART 2142 +#define SCI_GETSELECTIONSTART 2143 +#define SCI_SETSELECTIONEND 2144 +#define SCI_GETSELECTIONEND 2145 +#define SCI_SETEMPTYSELECTION 2556 +#define SCI_SETPRINTMAGNIFICATION 2146 +#define SCI_GETPRINTMAGNIFICATION 2147 +#define SC_PRINT_NORMAL 0 +#define SC_PRINT_INVERTLIGHT 1 +#define SC_PRINT_BLACKONWHITE 2 +#define SC_PRINT_COLOURONWHITE 3 +#define SC_PRINT_COLOURONWHITEDEFAULTBG 4 +#define SC_PRINT_SCREENCOLOURS 5 +#define SCI_SETPRINTCOLOURMODE 2148 +#define SCI_GETPRINTCOLOURMODE 2149 +#define SCFIND_WHOLEWORD 0x2 +#define SCFIND_MATCHCASE 0x4 +#define SCFIND_WORDSTART 0x00100000 +#define SCFIND_REGEXP 0x00200000 +#define SCFIND_POSIX 0x00400000 +#define SCFIND_CXX11REGEX 0x00800000 +#define SCI_FINDTEXT 2150 +#define SCI_FORMATRANGE 2151 +#define SCI_GETFIRSTVISIBLELINE 2152 +#define SCI_GETLINE 2153 +#define SCI_GETLINECOUNT 2154 +#define SCI_SETMARGINLEFT 2155 +#define SCI_GETMARGINLEFT 2156 +#define SCI_SETMARGINRIGHT 2157 +#define SCI_GETMARGINRIGHT 2158 +#define SCI_GETMODIFY 2159 +#define SCI_SETSEL 2160 +#define SCI_GETSELTEXT 2161 +#define SCI_GETTEXTRANGE 2162 +#define SCI_HIDESELECTION 2163 +#define SCI_POINTXFROMPOSITION 2164 +#define SCI_POINTYFROMPOSITION 2165 +#define SCI_LINEFROMPOSITION 2166 +#define SCI_POSITIONFROMLINE 2167 +#define SCI_LINESCROLL 2168 +#define SCI_SCROLLCARET 2169 +#define SCI_SCROLLRANGE 2569 +#define SCI_REPLACESEL 2170 +#define SCI_SETREADONLY 2171 +#define SCI_NULL 2172 +#define SCI_CANPASTE 2173 +#define SCI_CANUNDO 2174 +#define SCI_EMPTYUNDOBUFFER 2175 +#define SCI_UNDO 2176 +#define SCI_CUT 2177 +#define SCI_COPY 2178 +#define SCI_PASTE 2179 +#define SCI_CLEAR 2180 +#define SCI_SETTEXT 2181 +#define SCI_GETTEXT 2182 +#define SCI_GETTEXTLENGTH 2183 +#define SCI_GETDIRECTFUNCTION 2184 +#define SCI_GETDIRECTPOINTER 2185 +#define SCI_SETOVERTYPE 2186 +#define SCI_GETOVERTYPE 2187 +#define SCI_SETCARETWIDTH 2188 +#define SCI_GETCARETWIDTH 2189 +#define SCI_SETTARGETSTART 2190 +#define SCI_GETTARGETSTART 2191 +#define SCI_SETTARGETEND 2192 +#define SCI_GETTARGETEND 2193 +#define SCI_SETTARGETRANGE 2686 +#define SCI_GETTARGETTEXT 2687 +#define SCI_TARGETFROMSELECTION 2287 +#define SCI_TARGETWHOLEDOCUMENT 2690 +#define SCI_REPLACETARGET 2194 +#define SCI_REPLACETARGETRE 2195 +#define SCI_SEARCHINTARGET 2197 +#define SCI_SETSEARCHFLAGS 2198 +#define SCI_GETSEARCHFLAGS 2199 +#define SCI_CALLTIPSHOW 2200 +#define SCI_CALLTIPCANCEL 2201 +#define SCI_CALLTIPACTIVE 2202 +#define SCI_CALLTIPPOSSTART 2203 +#define SCI_CALLTIPSETPOSSTART 2214 +#define SCI_CALLTIPSETHLT 2204 +#define SCI_CALLTIPSETBACK 2205 +#define SCI_CALLTIPSETFORE 2206 +#define SCI_CALLTIPSETFOREHLT 2207 +#define SCI_CALLTIPUSESTYLE 2212 +#define SCI_CALLTIPSETPOSITION 2213 +#define SCI_VISIBLEFROMDOCLINE 2220 +#define SCI_DOCLINEFROMVISIBLE 2221 +#define SCI_WRAPCOUNT 2235 +#define SC_FOLDLEVELBASE 0x400 +#define SC_FOLDLEVELWHITEFLAG 0x1000 +#define SC_FOLDLEVELHEADERFLAG 0x2000 +#define SC_FOLDLEVELNUMBERMASK 0x0FFF +#define SCI_SETFOLDLEVEL 2222 +#define SCI_GETFOLDLEVEL 2223 +#define SCI_GETLASTCHILD 2224 +#define SCI_GETFOLDPARENT 2225 +#define SCI_SHOWLINES 2226 +#define SCI_HIDELINES 2227 +#define SCI_GETLINEVISIBLE 2228 +#define SCI_GETALLLINESVISIBLE 2236 +#define SCI_SETFOLDEXPANDED 2229 +#define SCI_GETFOLDEXPANDED 2230 +#define SCI_TOGGLEFOLD 2231 +#define SCI_TOGGLEFOLDSHOWTEXT 2700 +#define SC_FOLDDISPLAYTEXT_HIDDEN 0 +#define SC_FOLDDISPLAYTEXT_STANDARD 1 +#define SC_FOLDDISPLAYTEXT_BOXED 2 +#define SCI_FOLDDISPLAYTEXTSETSTYLE 2701 +#define SC_FOLDACTION_CONTRACT 0 +#define SC_FOLDACTION_EXPAND 1 +#define SC_FOLDACTION_TOGGLE 2 +#define SCI_FOLDLINE 2237 +#define SCI_FOLDCHILDREN 2238 +#define SCI_EXPANDCHILDREN 2239 +#define SCI_FOLDALL 2662 +#define SCI_ENSUREVISIBLE 2232 +#define SC_AUTOMATICFOLD_SHOW 0x0001 +#define SC_AUTOMATICFOLD_CLICK 0x0002 +#define SC_AUTOMATICFOLD_CHANGE 0x0004 +#define SCI_SETAUTOMATICFOLD 2663 +#define SCI_GETAUTOMATICFOLD 2664 +#define SC_FOLDFLAG_LINEBEFORE_EXPANDED 0x0002 +#define SC_FOLDFLAG_LINEBEFORE_CONTRACTED 0x0004 +#define SC_FOLDFLAG_LINEAFTER_EXPANDED 0x0008 +#define SC_FOLDFLAG_LINEAFTER_CONTRACTED 0x0010 +#define SC_FOLDFLAG_LEVELNUMBERS 0x0040 +#define SC_FOLDFLAG_LINESTATE 0x0080 +#define SCI_SETFOLDFLAGS 2233 +#define SCI_ENSUREVISIBLEENFORCEPOLICY 2234 +#define SCI_SETTABINDENTS 2260 +#define SCI_GETTABINDENTS 2261 +#define SCI_SETBACKSPACEUNINDENTS 2262 +#define SCI_GETBACKSPACEUNINDENTS 2263 +#define SC_TIME_FOREVER 10000000 +#define SCI_SETMOUSEDWELLTIME 2264 +#define SCI_GETMOUSEDWELLTIME 2265 +#define SCI_WORDSTARTPOSITION 2266 +#define SCI_WORDENDPOSITION 2267 +#define SCI_ISRANGEWORD 2691 +#define SC_IDLESTYLING_NONE 0 +#define SC_IDLESTYLING_TOVISIBLE 1 +#define SC_IDLESTYLING_AFTERVISIBLE 2 +#define SC_IDLESTYLING_ALL 3 +#define SCI_SETIDLESTYLING 2692 +#define SCI_GETIDLESTYLING 2693 +#define SC_WRAP_NONE 0 +#define SC_WRAP_WORD 1 +#define SC_WRAP_CHAR 2 +#define SC_WRAP_WHITESPACE 3 +#define SCI_SETWRAPMODE 2268 +#define SCI_GETWRAPMODE 2269 +#define SC_WRAPVISUALFLAG_NONE 0x0000 +#define SC_WRAPVISUALFLAG_END 0x0001 +#define SC_WRAPVISUALFLAG_START 0x0002 +#define SC_WRAPVISUALFLAG_MARGIN 0x0004 +#define SCI_SETWRAPVISUALFLAGS 2460 +#define SCI_GETWRAPVISUALFLAGS 2461 +#define SC_WRAPVISUALFLAGLOC_DEFAULT 0x0000 +#define SC_WRAPVISUALFLAGLOC_END_BY_TEXT 0x0001 +#define SC_WRAPVISUALFLAGLOC_START_BY_TEXT 0x0002 +#define SCI_SETWRAPVISUALFLAGSLOCATION 2462 +#define SCI_GETWRAPVISUALFLAGSLOCATION 2463 +#define SCI_SETWRAPSTARTINDENT 2464 +#define SCI_GETWRAPSTARTINDENT 2465 +#define SC_WRAPINDENT_FIXED 0 +#define SC_WRAPINDENT_SAME 1 +#define SC_WRAPINDENT_INDENT 2 +#define SC_WRAPINDENT_DEEPINDENT 3 +#define SCI_SETWRAPINDENTMODE 2472 +#define SCI_GETWRAPINDENTMODE 2473 +#define SC_CACHE_NONE 0 +#define SC_CACHE_CARET 1 +#define SC_CACHE_PAGE 2 +#define SC_CACHE_DOCUMENT 3 +#define SCI_SETLAYOUTCACHE 2272 +#define SCI_GETLAYOUTCACHE 2273 +#define SCI_SETSCROLLWIDTH 2274 +#define SCI_GETSCROLLWIDTH 2275 +#define SCI_SETSCROLLWIDTHTRACKING 2516 +#define SCI_GETSCROLLWIDTHTRACKING 2517 +#define SCI_TEXTWIDTH 2276 +#define SCI_SETENDATLASTLINE 2277 +#define SCI_GETENDATLASTLINE 2278 +#define SCI_TEXTHEIGHT 2279 +#define SCI_SETVSCROLLBAR 2280 +#define SCI_GETVSCROLLBAR 2281 +#define SCI_APPENDTEXT 2282 +#define SCI_GETTWOPHASEDRAW 2283 +#define SCI_SETTWOPHASEDRAW 2284 +#define SC_PHASES_ONE 0 +#define SC_PHASES_TWO 1 +#define SC_PHASES_MULTIPLE 2 +#define SCI_GETPHASESDRAW 2673 +#define SCI_SETPHASESDRAW 2674 +#define SC_EFF_QUALITY_MASK 0xF +#define SC_EFF_QUALITY_DEFAULT 0 +#define SC_EFF_QUALITY_NON_ANTIALIASED 1 +#define SC_EFF_QUALITY_ANTIALIASED 2 +#define SC_EFF_QUALITY_LCD_OPTIMIZED 3 +#define SCI_SETFONTQUALITY 2611 +#define SCI_GETFONTQUALITY 2612 +#define SCI_SETFIRSTVISIBLELINE 2613 +#define SC_MULTIPASTE_ONCE 0 +#define SC_MULTIPASTE_EACH 1 +#define SCI_SETMULTIPASTE 2614 +#define SCI_GETMULTIPASTE 2615 +#define SCI_GETTAG 2616 +#define SCI_LINESJOIN 2288 +#define SCI_LINESSPLIT 2289 +#define SCI_SETFOLDMARGINCOLOUR 2290 +#define SCI_SETFOLDMARGINHICOLOUR 2291 +#define SC_ACCESSIBILITY_DISABLED 0 +#define SC_ACCESSIBILITY_ENABLED 1 +#define SCI_SETACCESSIBILITY 2702 +#define SCI_GETACCESSIBILITY 2703 +#define SCI_LINEDOWN 2300 +#define SCI_LINEDOWNEXTEND 2301 +#define SCI_LINEUP 2302 +#define SCI_LINEUPEXTEND 2303 +#define SCI_CHARLEFT 2304 +#define SCI_CHARLEFTEXTEND 2305 +#define SCI_CHARRIGHT 2306 +#define SCI_CHARRIGHTEXTEND 2307 +#define SCI_WORDLEFT 2308 +#define SCI_WORDLEFTEXTEND 2309 +#define SCI_WORDRIGHT 2310 +#define SCI_WORDRIGHTEXTEND 2311 +#define SCI_HOME 2312 +#define SCI_HOMEEXTEND 2313 +#define SCI_LINEEND 2314 +#define SCI_LINEENDEXTEND 2315 +#define SCI_DOCUMENTSTART 2316 +#define SCI_DOCUMENTSTARTEXTEND 2317 +#define SCI_DOCUMENTEND 2318 +#define SCI_DOCUMENTENDEXTEND 2319 +#define SCI_PAGEUP 2320 +#define SCI_PAGEUPEXTEND 2321 +#define SCI_PAGEDOWN 2322 +#define SCI_PAGEDOWNEXTEND 2323 +#define SCI_EDITTOGGLEOVERTYPE 2324 +#define SCI_CANCEL 2325 +#define SCI_DELETEBACK 2326 +#define SCI_TAB 2327 +#define SCI_BACKTAB 2328 +#define SCI_NEWLINE 2329 +#define SCI_FORMFEED 2330 +#define SCI_VCHOME 2331 +#define SCI_VCHOMEEXTEND 2332 +#define SCI_ZOOMIN 2333 +#define SCI_ZOOMOUT 2334 +#define SCI_DELWORDLEFT 2335 +#define SCI_DELWORDRIGHT 2336 +#define SCI_DELWORDRIGHTEND 2518 +#define SCI_LINECUT 2337 +#define SCI_LINEDELETE 2338 +#define SCI_LINETRANSPOSE 2339 +#define SCI_LINEREVERSE 2354 +#define SCI_LINEDUPLICATE 2404 +#define SCI_LOWERCASE 2340 +#define SCI_UPPERCASE 2341 +#define SCI_LINESCROLLDOWN 2342 +#define SCI_LINESCROLLUP 2343 +#define SCI_DELETEBACKNOTLINE 2344 +#define SCI_HOMEDISPLAY 2345 +#define SCI_HOMEDISPLAYEXTEND 2346 +#define SCI_LINEENDDISPLAY 2347 +#define SCI_LINEENDDISPLAYEXTEND 2348 +#define SCI_HOMEWRAP 2349 +#define SCI_HOMEWRAPEXTEND 2450 +#define SCI_LINEENDWRAP 2451 +#define SCI_LINEENDWRAPEXTEND 2452 +#define SCI_VCHOMEWRAP 2453 +#define SCI_VCHOMEWRAPEXTEND 2454 +#define SCI_LINECOPY 2455 +#define SCI_MOVECARETINSIDEVIEW 2401 +#define SCI_LINELENGTH 2350 +#define SCI_BRACEHIGHLIGHT 2351 +#define SCI_BRACEHIGHLIGHTINDICATOR 2498 +#define SCI_BRACEBADLIGHT 2352 +#define SCI_BRACEBADLIGHTINDICATOR 2499 +#define SCI_BRACEMATCH 2353 +#define SCI_GETVIEWEOL 2355 +#define SCI_SETVIEWEOL 2356 +#define SCI_GETDOCPOINTER 2357 +#define SCI_SETDOCPOINTER 2358 +#define SCI_SETMODEVENTMASK 2359 +#define EDGE_NONE 0 +#define EDGE_LINE 1 +#define EDGE_BACKGROUND 2 +#define EDGE_MULTILINE 3 +#define SCI_GETEDGECOLUMN 2360 +#define SCI_SETEDGECOLUMN 2361 +#define SCI_GETEDGEMODE 2362 +#define SCI_SETEDGEMODE 2363 +#define SCI_GETEDGECOLOUR 2364 +#define SCI_SETEDGECOLOUR 2365 +#define SCI_MULTIEDGEADDLINE 2694 +#define SCI_MULTIEDGECLEARALL 2695 +#define SCI_SEARCHANCHOR 2366 +#define SCI_SEARCHNEXT 2367 +#define SCI_SEARCHPREV 2368 +#define SCI_LINESONSCREEN 2370 +#define SC_POPUP_NEVER 0 +#define SC_POPUP_ALL 1 +#define SC_POPUP_TEXT 2 +#define SCI_USEPOPUP 2371 +#define SCI_SELECTIONISRECTANGLE 2372 +#define SCI_SETZOOM 2373 +#define SCI_GETZOOM 2374 +#define SC_DOCUMENTOPTION_DEFAULT 0 +#define SC_DOCUMENTOPTION_STYLES_NONE 0x1 +#define SC_DOCUMENTOPTION_TEXT_LARGE 0x100 +#define SCI_CREATEDOCUMENT 2375 +#define SCI_ADDREFDOCUMENT 2376 +#define SCI_RELEASEDOCUMENT 2377 +#define SCI_GETDOCUMENTOPTIONS 2379 +#define SCI_GETMODEVENTMASK 2378 +#define SCI_SETCOMMANDEVENTS 2717 +#define SCI_GETCOMMANDEVENTS 2718 +#define SCI_SETFOCUS 2380 +#define SCI_GETFOCUS 2381 +#define SC_STATUS_OK 0 +#define SC_STATUS_FAILURE 1 +#define SC_STATUS_BADALLOC 2 +#define SC_STATUS_WARN_START 1000 +#define SC_STATUS_WARN_REGEX 1001 +#define SCI_SETSTATUS 2382 +#define SCI_GETSTATUS 2383 +#define SCI_SETMOUSEDOWNCAPTURES 2384 +#define SCI_GETMOUSEDOWNCAPTURES 2385 +#define SCI_SETMOUSEWHEELCAPTURES 2696 +#define SCI_GETMOUSEWHEELCAPTURES 2697 +#define SC_CURSORNORMAL -1 +#define SC_CURSORARROW 2 +#define SC_CURSORWAIT 4 +#define SC_CURSORREVERSEARROW 7 +#define SCI_SETCURSOR 2386 +#define SCI_GETCURSOR 2387 +#define SCI_SETCONTROLCHARSYMBOL 2388 +#define SCI_GETCONTROLCHARSYMBOL 2389 +#define SCI_WORDPARTLEFT 2390 +#define SCI_WORDPARTLEFTEXTEND 2391 +#define SCI_WORDPARTRIGHT 2392 +#define SCI_WORDPARTRIGHTEXTEND 2393 +#define VISIBLE_SLOP 0x01 +#define VISIBLE_STRICT 0x04 +#define SCI_SETVISIBLEPOLICY 2394 +#define SCI_DELLINELEFT 2395 +#define SCI_DELLINERIGHT 2396 +#define SCI_SETXOFFSET 2397 +#define SCI_GETXOFFSET 2398 +#define SCI_CHOOSECARETX 2399 +#define SCI_GRABFOCUS 2400 +#define CARET_SLOP 0x01 +#define CARET_STRICT 0x04 +#define CARET_JUMPS 0x10 +#define CARET_EVEN 0x08 +#define SCI_SETXCARETPOLICY 2402 +#define SCI_SETYCARETPOLICY 2403 +#define SCI_SETPRINTWRAPMODE 2406 +#define SCI_GETPRINTWRAPMODE 2407 +#define SCI_SETHOTSPOTACTIVEFORE 2410 +#define SCI_GETHOTSPOTACTIVEFORE 2494 +#define SCI_SETHOTSPOTACTIVEBACK 2411 +#define SCI_GETHOTSPOTACTIVEBACK 2495 +#define SCI_SETHOTSPOTACTIVEUNDERLINE 2412 +#define SCI_GETHOTSPOTACTIVEUNDERLINE 2496 +#define SCI_SETHOTSPOTSINGLELINE 2421 +#define SCI_GETHOTSPOTSINGLELINE 2497 +#define SCI_PARADOWN 2413 +#define SCI_PARADOWNEXTEND 2414 +#define SCI_PARAUP 2415 +#define SCI_PARAUPEXTEND 2416 +#define SCI_POSITIONBEFORE 2417 +#define SCI_POSITIONAFTER 2418 +#define SCI_POSITIONRELATIVE 2670 +#define SCI_POSITIONRELATIVECODEUNITS 2716 +#define SCI_COPYRANGE 2419 +#define SCI_COPYTEXT 2420 +#define SC_SEL_STREAM 0 +#define SC_SEL_RECTANGLE 1 +#define SC_SEL_LINES 2 +#define SC_SEL_THIN 3 +#define SCI_SETSELECTIONMODE 2422 +#define SCI_GETSELECTIONMODE 2423 +#define SCI_GETMOVEEXTENDSSELECTION 2706 +#define SCI_GETLINESELSTARTPOSITION 2424 +#define SCI_GETLINESELENDPOSITION 2425 +#define SCI_LINEDOWNRECTEXTEND 2426 +#define SCI_LINEUPRECTEXTEND 2427 +#define SCI_CHARLEFTRECTEXTEND 2428 +#define SCI_CHARRIGHTRECTEXTEND 2429 +#define SCI_HOMERECTEXTEND 2430 +#define SCI_VCHOMERECTEXTEND 2431 +#define SCI_LINEENDRECTEXTEND 2432 +#define SCI_PAGEUPRECTEXTEND 2433 +#define SCI_PAGEDOWNRECTEXTEND 2434 +#define SCI_STUTTEREDPAGEUP 2435 +#define SCI_STUTTEREDPAGEUPEXTEND 2436 +#define SCI_STUTTEREDPAGEDOWN 2437 +#define SCI_STUTTEREDPAGEDOWNEXTEND 2438 +#define SCI_WORDLEFTEND 2439 +#define SCI_WORDLEFTENDEXTEND 2440 +#define SCI_WORDRIGHTEND 2441 +#define SCI_WORDRIGHTENDEXTEND 2442 +#define SCI_SETWHITESPACECHARS 2443 +#define SCI_GETWHITESPACECHARS 2647 +#define SCI_SETPUNCTUATIONCHARS 2648 +#define SCI_GETPUNCTUATIONCHARS 2649 +#define SCI_SETCHARSDEFAULT 2444 +#define SCI_AUTOCGETCURRENT 2445 +#define SCI_AUTOCGETCURRENTTEXT 2610 +#define SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE 0 +#define SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE 1 +#define SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR 2634 +#define SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR 2635 +#define SC_MULTIAUTOC_ONCE 0 +#define SC_MULTIAUTOC_EACH 1 +#define SCI_AUTOCSETMULTI 2636 +#define SCI_AUTOCGETMULTI 2637 +#define SC_ORDER_PRESORTED 0 +#define SC_ORDER_PERFORMSORT 1 +#define SC_ORDER_CUSTOM 2 +#define SCI_AUTOCSETORDER 2660 +#define SCI_AUTOCGETORDER 2661 +#define SCI_ALLOCATE 2446 +#define SCI_TARGETASUTF8 2447 +#define SCI_SETLENGTHFORENCODE 2448 +#define SCI_ENCODEDFROMUTF8 2449 +#define SCI_FINDCOLUMN 2456 +#define SCI_GETCARETSTICKY 2457 +#define SCI_SETCARETSTICKY 2458 +#define SC_CARETSTICKY_OFF 0 +#define SC_CARETSTICKY_ON 1 +#define SC_CARETSTICKY_WHITESPACE 2 +#define SCI_TOGGLECARETSTICKY 2459 +#define SCI_SETPASTECONVERTENDINGS 2467 +#define SCI_GETPASTECONVERTENDINGS 2468 +#define SCI_SELECTIONDUPLICATE 2469 +#define SC_ALPHA_TRANSPARENT 0 +#define SC_ALPHA_OPAQUE 255 +#define SC_ALPHA_NOALPHA 256 +#define SCI_SETCARETLINEBACKALPHA 2470 +#define SCI_GETCARETLINEBACKALPHA 2471 +#define CARETSTYLE_INVISIBLE 0 +#define CARETSTYLE_LINE 1 +#define CARETSTYLE_BLOCK 2 +#define SCI_SETCARETSTYLE 2512 +#define SCI_GETCARETSTYLE 2513 +#define SCI_SETINDICATORCURRENT 2500 +#define SCI_GETINDICATORCURRENT 2501 +#define SCI_SETINDICATORVALUE 2502 +#define SCI_GETINDICATORVALUE 2503 +#define SCI_INDICATORFILLRANGE 2504 +#define SCI_INDICATORCLEARRANGE 2505 +#define SCI_INDICATORALLONFOR 2506 +#define SCI_INDICATORVALUEAT 2507 +#define SCI_INDICATORSTART 2508 +#define SCI_INDICATOREND 2509 +#define SCI_SETPOSITIONCACHE 2514 +#define SCI_GETPOSITIONCACHE 2515 +#define SCI_COPYALLOWLINE 2519 +#define SCI_GETCHARACTERPOINTER 2520 +#define SCI_GETRANGEPOINTER 2643 +#define SCI_GETGAPPOSITION 2644 +#define SCI_INDICSETALPHA 2523 +#define SCI_INDICGETALPHA 2524 +#define SCI_INDICSETOUTLINEALPHA 2558 +#define SCI_INDICGETOUTLINEALPHA 2559 +#define SCI_SETEXTRAASCENT 2525 +#define SCI_GETEXTRAASCENT 2526 +#define SCI_SETEXTRADESCENT 2527 +#define SCI_GETEXTRADESCENT 2528 +#define SCI_MARKERSYMBOLDEFINED 2529 +#define SCI_MARGINSETTEXT 2530 +#define SCI_MARGINGETTEXT 2531 +#define SCI_MARGINSETSTYLE 2532 +#define SCI_MARGINGETSTYLE 2533 +#define SCI_MARGINSETSTYLES 2534 +#define SCI_MARGINGETSTYLES 2535 +#define SCI_MARGINTEXTCLEARALL 2536 +#define SCI_MARGINSETSTYLEOFFSET 2537 +#define SCI_MARGINGETSTYLEOFFSET 2538 +#define SC_MARGINOPTION_NONE 0 +#define SC_MARGINOPTION_SUBLINESELECT 1 +#define SCI_SETMARGINOPTIONS 2539 +#define SCI_GETMARGINOPTIONS 2557 +#define SCI_ANNOTATIONSETTEXT 2540 +#define SCI_ANNOTATIONGETTEXT 2541 +#define SCI_ANNOTATIONSETSTYLE 2542 +#define SCI_ANNOTATIONGETSTYLE 2543 +#define SCI_ANNOTATIONSETSTYLES 2544 +#define SCI_ANNOTATIONGETSTYLES 2545 +#define SCI_ANNOTATIONGETLINES 2546 +#define SCI_ANNOTATIONCLEARALL 2547 +#define ANNOTATION_HIDDEN 0 +#define ANNOTATION_STANDARD 1 +#define ANNOTATION_BOXED 2 +#define ANNOTATION_INDENTED 3 +#define SCI_ANNOTATIONSETVISIBLE 2548 +#define SCI_ANNOTATIONGETVISIBLE 2549 +#define SCI_ANNOTATIONSETSTYLEOFFSET 2550 +#define SCI_ANNOTATIONGETSTYLEOFFSET 2551 +#define SCI_RELEASEALLEXTENDEDSTYLES 2552 +#define SCI_ALLOCATEEXTENDEDSTYLES 2553 +#define UNDO_MAY_COALESCE 1 +#define SCI_ADDUNDOACTION 2560 +#define SCI_CHARPOSITIONFROMPOINT 2561 +#define SCI_CHARPOSITIONFROMPOINTCLOSE 2562 +#define SCI_SETMOUSESELECTIONRECTANGULARSWITCH 2668 +#define SCI_GETMOUSESELECTIONRECTANGULARSWITCH 2669 +#define SCI_SETMULTIPLESELECTION 2563 +#define SCI_GETMULTIPLESELECTION 2564 +#define SCI_SETADDITIONALSELECTIONTYPING 2565 +#define SCI_GETADDITIONALSELECTIONTYPING 2566 +#define SCI_SETADDITIONALCARETSBLINK 2567 +#define SCI_GETADDITIONALCARETSBLINK 2568 +#define SCI_SETADDITIONALCARETSVISIBLE 2608 +#define SCI_GETADDITIONALCARETSVISIBLE 2609 +#define SCI_GETSELECTIONS 2570 +#define SCI_GETSELECTIONEMPTY 2650 +#define SCI_CLEARSELECTIONS 2571 +#define SCI_SETSELECTION 2572 +#define SCI_ADDSELECTION 2573 +#define SCI_DROPSELECTIONN 2671 +#define SCI_SETMAINSELECTION 2574 +#define SCI_GETMAINSELECTION 2575 +#define SCI_SETSELECTIONNCARET 2576 +#define SCI_GETSELECTIONNCARET 2577 +#define SCI_SETSELECTIONNANCHOR 2578 +#define SCI_GETSELECTIONNANCHOR 2579 +#define SCI_SETSELECTIONNCARETVIRTUALSPACE 2580 +#define SCI_GETSELECTIONNCARETVIRTUALSPACE 2581 +#define SCI_SETSELECTIONNANCHORVIRTUALSPACE 2582 +#define SCI_GETSELECTIONNANCHORVIRTUALSPACE 2583 +#define SCI_SETSELECTIONNSTART 2584 +#define SCI_GETSELECTIONNSTART 2585 +#define SCI_SETSELECTIONNEND 2586 +#define SCI_GETSELECTIONNEND 2587 +#define SCI_SETRECTANGULARSELECTIONCARET 2588 +#define SCI_GETRECTANGULARSELECTIONCARET 2589 +#define SCI_SETRECTANGULARSELECTIONANCHOR 2590 +#define SCI_GETRECTANGULARSELECTIONANCHOR 2591 +#define SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE 2592 +#define SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE 2593 +#define SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE 2594 +#define SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE 2595 +#define SCVS_NONE 0 +#define SCVS_RECTANGULARSELECTION 1 +#define SCVS_USERACCESSIBLE 2 +#define SCVS_NOWRAPLINESTART 4 +#define SCI_SETVIRTUALSPACEOPTIONS 2596 +#define SCI_GETVIRTUALSPACEOPTIONS 2597 +#define SCI_SETRECTANGULARSELECTIONMODIFIER 2598 +#define SCI_GETRECTANGULARSELECTIONMODIFIER 2599 +#define SCI_SETADDITIONALSELFORE 2600 +#define SCI_SETADDITIONALSELBACK 2601 +#define SCI_SETADDITIONALSELALPHA 2602 +#define SCI_GETADDITIONALSELALPHA 2603 +#define SCI_SETADDITIONALCARETFORE 2604 +#define SCI_GETADDITIONALCARETFORE 2605 +#define SCI_ROTATESELECTION 2606 +#define SCI_SWAPMAINANCHORCARET 2607 +#define SCI_MULTIPLESELECTADDNEXT 2688 +#define SCI_MULTIPLESELECTADDEACH 2689 +#define SCI_CHANGELEXERSTATE 2617 +#define SCI_CONTRACTEDFOLDNEXT 2618 +#define SCI_VERTICALCENTRECARET 2619 +#define SCI_MOVESELECTEDLINESUP 2620 +#define SCI_MOVESELECTEDLINESDOWN 2621 +#define SCI_SETIDENTIFIER 2622 +#define SCI_GETIDENTIFIER 2623 +#define SCI_RGBAIMAGESETWIDTH 2624 +#define SCI_RGBAIMAGESETHEIGHT 2625 +#define SCI_RGBAIMAGESETSCALE 2651 +#define SCI_MARKERDEFINERGBAIMAGE 2626 +#define SCI_REGISTERRGBAIMAGE 2627 +#define SCI_SCROLLTOSTART 2628 +#define SCI_SCROLLTOEND 2629 +#define SC_TECHNOLOGY_DEFAULT 0 +#define SC_TECHNOLOGY_DIRECTWRITE 1 +#define SC_TECHNOLOGY_DIRECTWRITERETAIN 2 +#define SC_TECHNOLOGY_DIRECTWRITEDC 3 +#define SCI_SETTECHNOLOGY 2630 +#define SCI_GETTECHNOLOGY 2631 +#define SCI_CREATELOADER 2632 +#define SCI_FINDINDICATORSHOW 2640 +#define SCI_FINDINDICATORFLASH 2641 +#define SCI_FINDINDICATORHIDE 2642 +#define SCI_VCHOMEDISPLAY 2652 +#define SCI_VCHOMEDISPLAYEXTEND 2653 +#define SCI_GETCARETLINEVISIBLEALWAYS 2654 +#define SCI_SETCARETLINEVISIBLEALWAYS 2655 +#define SC_LINE_END_TYPE_DEFAULT 0 +#define SC_LINE_END_TYPE_UNICODE 1 +#define SCI_SETLINEENDTYPESALLOWED 2656 +#define SCI_GETLINEENDTYPESALLOWED 2657 +#define SCI_GETLINEENDTYPESACTIVE 2658 +#define SCI_SETREPRESENTATION 2665 +#define SCI_GETREPRESENTATION 2666 +#define SCI_CLEARREPRESENTATION 2667 +#define SCI_STARTRECORD 3001 +#define SCI_STOPRECORD 3002 +#define SCI_SETLEXER 4001 +#define SCI_GETLEXER 4002 +#define SCI_COLOURISE 4003 +#define SCI_SETPROPERTY 4004 +#define KEYWORDSET_MAX 8 +#define SCI_SETKEYWORDS 4005 +#define SCI_SETLEXERLANGUAGE 4006 +#define SCI_LOADLEXERLIBRARY 4007 +#define SCI_GETPROPERTY 4008 +#define SCI_GETPROPERTYEXPANDED 4009 +#define SCI_GETPROPERTYINT 4010 +#define SCI_GETLEXERLANGUAGE 4012 +#define SCI_PRIVATELEXERCALL 4013 +#define SCI_PROPERTYNAMES 4014 +#define SC_TYPE_BOOLEAN 0 +#define SC_TYPE_INTEGER 1 +#define SC_TYPE_STRING 2 +#define SCI_PROPERTYTYPE 4015 +#define SCI_DESCRIBEPROPERTY 4016 +#define SCI_DESCRIBEKEYWORDSETS 4017 +#define SCI_GETLINEENDTYPESSUPPORTED 4018 +#define SCI_ALLOCATESUBSTYLES 4020 +#define SCI_GETSUBSTYLESSTART 4021 +#define SCI_GETSUBSTYLESLENGTH 4022 +#define SCI_GETSTYLEFROMSUBSTYLE 4027 +#define SCI_GETPRIMARYSTYLEFROMSTYLE 4028 +#define SCI_FREESUBSTYLES 4023 +#define SCI_SETIDENTIFIERS 4024 +#define SCI_DISTANCETOSECONDARYSTYLES 4025 +#define SCI_GETSUBSTYLEBASES 4026 +#define SCI_GETNAMEDSTYLES 4029 +#define SCI_NAMEOFSTYLE 4030 +#define SCI_TAGSOFSTYLE 4031 +#define SCI_DESCRIPTIONOFSTYLE 4032 +#define SC_MOD_INSERTTEXT 0x1 +#define SC_MOD_DELETETEXT 0x2 +#define SC_MOD_CHANGESTYLE 0x4 +#define SC_MOD_CHANGEFOLD 0x8 +#define SC_PERFORMED_USER 0x10 +#define SC_PERFORMED_UNDO 0x20 +#define SC_PERFORMED_REDO 0x40 +#define SC_MULTISTEPUNDOREDO 0x80 +#define SC_LASTSTEPINUNDOREDO 0x100 +#define SC_MOD_CHANGEMARKER 0x200 +#define SC_MOD_BEFOREINSERT 0x400 +#define SC_MOD_BEFOREDELETE 0x800 +#define SC_MULTILINEUNDOREDO 0x1000 +#define SC_STARTACTION 0x2000 +#define SC_MOD_CHANGEINDICATOR 0x4000 +#define SC_MOD_CHANGELINESTATE 0x8000 +#define SC_MOD_CHANGEMARGIN 0x10000 +#define SC_MOD_CHANGEANNOTATION 0x20000 +#define SC_MOD_CONTAINER 0x40000 +#define SC_MOD_LEXERSTATE 0x80000 +#define SC_MOD_INSERTCHECK 0x100000 +#define SC_MOD_CHANGETABSTOPS 0x200000 +#define SC_MODEVENTMASKALL 0x3FFFFF +#define SC_UPDATE_CONTENT 0x1 +#define SC_UPDATE_SELECTION 0x2 +#define SC_UPDATE_V_SCROLL 0x4 +#define SC_UPDATE_H_SCROLL 0x8 +#define SCEN_CHANGE 768 +#define SCEN_SETFOCUS 512 +#define SCEN_KILLFOCUS 256 +#define SCK_DOWN 300 +#define SCK_UP 301 +#define SCK_LEFT 302 +#define SCK_RIGHT 303 +#define SCK_HOME 304 +#define SCK_END 305 +#define SCK_PRIOR 306 +#define SCK_NEXT 307 +#define SCK_DELETE 308 +#define SCK_INSERT 309 +#define SCK_ESCAPE 7 +#define SCK_BACK 8 +#define SCK_TAB 9 +#define SCK_RETURN 13 +#define SCK_ADD 310 +#define SCK_SUBTRACT 311 +#define SCK_DIVIDE 312 +#define SCK_WIN 313 +#define SCK_RWIN 314 +#define SCK_MENU 315 +#define SCMOD_NORM 0 +#define SCMOD_SHIFT 1 +#define SCMOD_CTRL 2 +#define SCMOD_ALT 4 +#define SCMOD_SUPER 8 +#define SCMOD_META 16 +#define SC_AC_FILLUP 1 +#define SC_AC_DOUBLECLICK 2 +#define SC_AC_TAB 3 +#define SC_AC_NEWLINE 4 +#define SC_AC_COMMAND 5 +#define SCN_STYLENEEDED 2000 +#define SCN_CHARADDED 2001 +#define SCN_SAVEPOINTREACHED 2002 +#define SCN_SAVEPOINTLEFT 2003 +#define SCN_MODIFYATTEMPTRO 2004 +#define SCN_KEY 2005 +#define SCN_DOUBLECLICK 2006 +#define SCN_UPDATEUI 2007 +#define SCN_MODIFIED 2008 +#define SCN_MACRORECORD 2009 +#define SCN_MARGINCLICK 2010 +#define SCN_NEEDSHOWN 2011 +#define SCN_PAINTED 2013 +#define SCN_USERLISTSELECTION 2014 +#define SCN_URIDROPPED 2015 +#define SCN_DWELLSTART 2016 +#define SCN_DWELLEND 2017 +#define SCN_ZOOM 2018 +#define SCN_HOTSPOTCLICK 2019 +#define SCN_HOTSPOTDOUBLECLICK 2020 +#define SCN_CALLTIPCLICK 2021 +#define SCN_AUTOCSELECTION 2022 +#define SCN_INDICATORCLICK 2023 +#define SCN_INDICATORRELEASE 2024 +#define SCN_AUTOCCANCELLED 2025 +#define SCN_AUTOCCHARDELETED 2026 +#define SCN_HOTSPOTRELEASECLICK 2027 +#define SCN_FOCUSIN 2028 +#define SCN_FOCUSOUT 2029 +#define SCN_AUTOCCOMPLETED 2030 +#define SCN_MARGINRIGHTCLICK 2031 +#define SCN_AUTOCSELECTIONCHANGE 2032 +#ifndef SCI_DISABLE_PROVISIONAL +#define SC_LINECHARACTERINDEX_NONE 0 +#define SC_LINECHARACTERINDEX_UTF32 1 +#define SC_LINECHARACTERINDEX_UTF16 2 +#define SCI_GETLINECHARACTERINDEX 2710 +#define SCI_ALLOCATELINECHARACTERINDEX 2711 +#define SCI_RELEASELINECHARACTERINDEX 2712 +#define SCI_LINEFROMINDEXPOSITION 2713 +#define SCI_INDEXPOSITIONFROMLINE 2714 +#endif +/* --Autogenerated -- end of section automatically generated from Scintilla.iface */ + +/* These structures are defined to be exactly the same shape as the Win32 + * CHARRANGE, TEXTRANGE, FINDTEXTEX, FORMATRANGE, and NMHDR structs. + * So older code that treats Scintilla as a RichEdit will work. */ + +struct Sci_CharacterRange { + Sci_PositionCR cpMin; + Sci_PositionCR cpMax; +}; + +struct Sci_TextRange { + struct Sci_CharacterRange chrg; + char *lpstrText; +}; + +struct Sci_TextToFind { + struct Sci_CharacterRange chrg; + const char *lpstrText; + struct Sci_CharacterRange chrgText; +}; + +typedef void *Sci_SurfaceID; + +struct Sci_Rectangle { + int left; + int top; + int right; + int bottom; +}; + +/* This structure is used in printing and requires some of the graphics types + * from Platform.h. Not needed by most client code. */ + +struct Sci_RangeToFormat { + Sci_SurfaceID hdc; + Sci_SurfaceID hdcTarget; + struct Sci_Rectangle rc; + struct Sci_Rectangle rcPage; + struct Sci_CharacterRange chrg; +}; + +#ifndef __cplusplus +/* For the GTK+ platform, g-ir-scanner needs to have these typedefs. This + * is not required in C++ code and actually seems to break ScintillaEditPy */ +typedef struct Sci_NotifyHeader Sci_NotifyHeader; +typedef struct SCNotification SCNotification; +#endif + +struct Sci_NotifyHeader { + /* Compatible with Windows NMHDR. + * hwndFrom is really an environment specific window handle or pointer + * but most clients of Scintilla.h do not have this type visible. */ + void *hwndFrom; + uptr_t idFrom; + unsigned int code; +}; + +struct SCNotification { + Sci_NotifyHeader nmhdr; + Sci_Position position; + /* SCN_STYLENEEDED, SCN_DOUBLECLICK, SCN_MODIFIED, SCN_MARGINCLICK, */ + /* SCN_NEEDSHOWN, SCN_DWELLSTART, SCN_DWELLEND, SCN_CALLTIPCLICK, */ + /* SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK, SCN_HOTSPOTRELEASECLICK, */ + /* SCN_INDICATORCLICK, SCN_INDICATORRELEASE, */ + /* SCN_USERLISTSELECTION, SCN_AUTOCSELECTION */ + + int ch; + /* SCN_CHARADDED, SCN_KEY, SCN_AUTOCCOMPLETED, SCN_AUTOCSELECTION, */ + /* SCN_USERLISTSELECTION */ + int modifiers; + /* SCN_KEY, SCN_DOUBLECLICK, SCN_HOTSPOTCLICK, SCN_HOTSPOTDOUBLECLICK, */ + /* SCN_HOTSPOTRELEASECLICK, SCN_INDICATORCLICK, SCN_INDICATORRELEASE, */ + + int modificationType; /* SCN_MODIFIED */ + const char *text; + /* SCN_MODIFIED, SCN_USERLISTSELECTION, SCN_AUTOCSELECTION, SCN_URIDROPPED */ + + Sci_Position length; /* SCN_MODIFIED */ + Sci_Position linesAdded; /* SCN_MODIFIED */ + int message; /* SCN_MACRORECORD */ + uptr_t wParam; /* SCN_MACRORECORD */ + sptr_t lParam; /* SCN_MACRORECORD */ + Sci_Position line; /* SCN_MODIFIED */ + int foldLevelNow; /* SCN_MODIFIED */ + int foldLevelPrev; /* SCN_MODIFIED */ + int margin; /* SCN_MARGINCLICK */ + int listType; /* SCN_USERLISTSELECTION */ + int x; /* SCN_DWELLSTART, SCN_DWELLEND */ + int y; /* SCN_DWELLSTART, SCN_DWELLEND */ + int token; /* SCN_MODIFIED with SC_MOD_CONTAINER */ + Sci_Position annotationLinesAdded; /* SCN_MODIFIED with SC_MOD_CHANGEANNOTATION */ + int updated; /* SCN_UPDATEUI */ + int listCompletionMethod; + /* SCN_AUTOCSELECTION, SCN_AUTOCCOMPLETED, SCN_USERLISTSELECTION, */ +}; + +#ifdef INCLUDE_DEPRECATED_FEATURES + +#define SCI_SETKEYSUNICODE 2521 +#define SCI_GETKEYSUNICODE 2522 + +#define CharacterRange Sci_CharacterRange +#define TextRange Sci_TextRange +#define TextToFind Sci_TextToFind +#define RangeToFormat Sci_RangeToFormat +#define NotifyHeader Sci_NotifyHeader + +#define SCI_SETSTYLEBITS 2090 +#define SCI_GETSTYLEBITS 2091 +#define SCI_GETSTYLEBITSNEEDED 4011 + +#endif + +#endif diff --git a/third_party/qscintilla/scintilla/include/Scintilla.iface b/third_party/qscintilla/scintilla/include/Scintilla.iface new file mode 100644 index 0000000..0281f92 --- /dev/null +++ b/third_party/qscintilla/scintilla/include/Scintilla.iface @@ -0,0 +1,4990 @@ +## First line may be used for shbang + +## This file defines the interface to Scintilla + +## Copyright 2000-2003 by Neil Hodgson +## The License.txt file describes the conditions under which this software may be distributed. + +## A line starting with ## is a pure comment and should be stripped by readers. +## A line starting with #! is for future shbang use +## A line starting with # followed by a space is a documentation comment and refers +## to the next feature definition. + +## Each feature is defined by a line starting with fun, get, set, val or evt. +## cat -> start a category +## fun -> a function +## get -> a property get function +## set -> a property set function +## val -> definition of a constant +## evt -> an event +## enu -> associate an enumeration with a set of vals with a prefix +## lex -> associate a lexer with the lexical classes it produces +## +## All other feature names should be ignored. They may be defined in the future. +## A property may have a set function, a get function or both. Each will have +## "Get" or "Set" in their names and the corresponding name will have the obvious switch. +## A property may be subscripted, in which case the first parameter is the subscript. +## fun, get, and set features have a strict syntax: +## [=,) +## where stands for white space. +## param may be empty (null value) or is [=] +## Additional white space is allowed between elements. +## The syntax for evt is [=[,]*]) +## Feature names that contain an underscore are defined by Windows, so in these +## cases, using the Windows definition is preferred where available. +## The feature numbers are stable so features will not be renumbered. +## Features may be removed but they will go through a period of deprecation +## before removal which is signalled by moving them into the Deprecated category. +## +## enu has the syntax enu=[]* where all the val +## features in this file starting with a given are considered part of the +## enumeration. +## +## lex has the syntax lex=[]* +## where name is a reasonably capitalised (Python, XML) identifier or UI name, +## lexerVal is the val used to specify the lexer, and the list of prefixes is similar +## to enu. The name may not be the same as that used within the lexer so the lexerVal +## should be used to tie these entities together. + +## Types: +## void +## int +## bool -> integer, 1=true, 0=false +## position -> integer position in a document +## colour -> colour integer containing red, green and blue bytes. +## string -> pointer to const character +## stringresult -> pointer to character, NULL-> return size of result +## cells -> pointer to array of cells, each cell containing a style byte and character byte +## textrange -> range of a min and a max position with an output string +## findtext -> searchrange, text -> foundposition +## keymod -> integer containing key in low half and modifiers in high half +## formatrange +## Types no longer used: +## findtextex -> searchrange +## charrange -> range of a min and a max position +## charrangeresult -> like charrange, but output param +## countedstring +## point -> x,y +## pointresult -> like point, but output param +## rectangle -> left,top,right,bottom +## Client code should ignore definitions containing types it does not understand, except +## for possibly #defining the constants + +## Line numbers and positions start at 0. +## String arguments may contain NUL ('\0') characters where the calls provide a length +## argument and retrieve NUL characters. APIs marked as NUL-terminated also have a +## NUL appended but client code should calculate the size that will be returned rather +## than relying upon the NUL whenever possible. Allow for the extra NUL character when +## allocating buffers. The size to allocate for a stringresult (not including NUL) can be +## determined by calling with a NULL (0) pointer. + +cat Basics + +################################################ +## For Scintilla.h +val INVALID_POSITION=-1 +# Define start of Scintilla messages to be greater than all Windows edit (EM_*) messages +# as many EM_ messages can be used although that use is deprecated. +val SCI_START=2000 +val SCI_OPTIONAL_START=3000 +val SCI_LEXER_START=4000 + +# Add text to the document at current position. +fun void AddText=2001(int length, string text) + +# Add array of cells to document. +fun void AddStyledText=2002(int length, cells c) + +# Insert string at a position. +fun void InsertText=2003(position pos, string text) + +# Change the text that is being inserted in response to SC_MOD_INSERTCHECK +fun void ChangeInsertion=2672(int length, string text) + +# Delete all text in the document. +fun void ClearAll=2004(,) + +# Delete a range of text in the document. +fun void DeleteRange=2645(position start, int lengthDelete) + +# Set all style bytes to 0, remove all folding information. +fun void ClearDocumentStyle=2005(,) + +# Returns the number of bytes in the document. +get int GetLength=2006(,) + +# Returns the character byte at the position. +get int GetCharAt=2007(position pos,) + +# Returns the position of the caret. +get position GetCurrentPos=2008(,) + +# Returns the position of the opposite end of the selection to the caret. +get position GetAnchor=2009(,) + +# Returns the style byte at the position. +get int GetStyleAt=2010(position pos,) + +# Redoes the next action on the undo history. +fun void Redo=2011(,) + +# Choose between collecting actions into the undo +# history and discarding them. +set void SetUndoCollection=2012(bool collectUndo,) + +# Select all the text in the document. +fun void SelectAll=2013(,) + +# Remember the current position in the undo history as the position +# at which the document was saved. +fun void SetSavePoint=2014(,) + +# Retrieve a buffer of cells. +# Returns the number of bytes in the buffer not including terminating NULs. +fun int GetStyledText=2015(, textrange tr) + +# Are there any redoable actions in the undo history? +fun bool CanRedo=2016(,) + +# Retrieve the line number at which a particular marker is located. +fun int MarkerLineFromHandle=2017(int markerHandle,) + +# Delete a marker. +fun void MarkerDeleteHandle=2018(int markerHandle,) + +# Is undo history being collected? +get bool GetUndoCollection=2019(,) + +enu WhiteSpace=SCWS_ +val SCWS_INVISIBLE=0 +val SCWS_VISIBLEALWAYS=1 +val SCWS_VISIBLEAFTERINDENT=2 +val SCWS_VISIBLEONLYININDENT=3 + +# Are white space characters currently visible? +# Returns one of SCWS_* constants. +get int GetViewWS=2020(,) + +# Make white space characters invisible, always visible or visible outside indentation. +set void SetViewWS=2021(int viewWS,) + +enu TabDrawMode=SCTD_ +val SCTD_LONGARROW=0 +val SCTD_STRIKEOUT=1 + +# Retrieve the current tab draw mode. +# Returns one of SCTD_* constants. +get int GetTabDrawMode=2698(,) + +# Set how tabs are drawn when visible. +set void SetTabDrawMode=2699(int tabDrawMode,) + +# Find the position from a point within the window. +fun position PositionFromPoint=2022(int x, int y) + +# Find the position from a point within the window but return +# INVALID_POSITION if not close to text. +fun position PositionFromPointClose=2023(int x, int y) + +# Set caret to start of a line and ensure it is visible. +fun void GotoLine=2024(int line,) + +# Set caret to a position and ensure it is visible. +fun void GotoPos=2025(position caret,) + +# Set the selection anchor to a position. The anchor is the opposite +# end of the selection from the caret. +set void SetAnchor=2026(position anchor,) + +# Retrieve the text of the line containing the caret. +# Returns the index of the caret on the line. +# Result is NUL-terminated. +fun int GetCurLine=2027(int length, stringresult text) + +# Retrieve the position of the last correctly styled character. +get position GetEndStyled=2028(,) + +enu EndOfLine=SC_EOL_ +val SC_EOL_CRLF=0 +val SC_EOL_CR=1 +val SC_EOL_LF=2 + +# Convert all line endings in the document to one mode. +fun void ConvertEOLs=2029(int eolMode,) + +# Retrieve the current end of line mode - one of CRLF, CR, or LF. +get int GetEOLMode=2030(,) + +# Set the current end of line mode. +set void SetEOLMode=2031(int eolMode,) + +# Set the current styling position to start. +# The unused parameter is no longer used and should be set to 0. +fun void StartStyling=2032(position start, int unused) + +# Change style from current styling position for length characters to a style +# and move the current styling position to after this newly styled segment. +fun void SetStyling=2033(int length, int style) + +# Is drawing done first into a buffer or direct to the screen? +get bool GetBufferedDraw=2034(,) + +# If drawing is buffered then each line of text is drawn into a bitmap buffer +# before drawing it to the screen to avoid flicker. +set void SetBufferedDraw=2035(bool buffered,) + +# Change the visible size of a tab to be a multiple of the width of a space character. +set void SetTabWidth=2036(int tabWidth,) + +# Retrieve the visible size of a tab. +get int GetTabWidth=2121(,) + +# Clear explicit tabstops on a line. +fun void ClearTabStops=2675(int line,) + +# Add an explicit tab stop for a line. +fun void AddTabStop=2676(int line, int x) + +# Find the next explicit tab stop position on a line after a position. +fun int GetNextTabStop=2677(int line, int x) + +# The SC_CP_UTF8 value can be used to enter Unicode mode. +# This is the same value as CP_UTF8 in Windows +val SC_CP_UTF8=65001 + +# Set the code page used to interpret the bytes of the document as characters. +# The SC_CP_UTF8 value can be used to enter Unicode mode. +set void SetCodePage=2037(int codePage,) + +enu IMEInteraction=SC_IME_ +val SC_IME_WINDOWED=0 +val SC_IME_INLINE=1 + +# Is the IME displayed in a window or inline? +get int GetIMEInteraction=2678(,) + +# Choose to display the the IME in a winow or inline. +set void SetIMEInteraction=2679(int imeInteraction,) + +enu MarkerSymbol=SC_MARK_ +val MARKER_MAX=31 +val SC_MARK_CIRCLE=0 +val SC_MARK_ROUNDRECT=1 +val SC_MARK_ARROW=2 +val SC_MARK_SMALLRECT=3 +val SC_MARK_SHORTARROW=4 +val SC_MARK_EMPTY=5 +val SC_MARK_ARROWDOWN=6 +val SC_MARK_MINUS=7 +val SC_MARK_PLUS=8 + +# Shapes used for outlining column. +val SC_MARK_VLINE=9 +val SC_MARK_LCORNER=10 +val SC_MARK_TCORNER=11 +val SC_MARK_BOXPLUS=12 +val SC_MARK_BOXPLUSCONNECTED=13 +val SC_MARK_BOXMINUS=14 +val SC_MARK_BOXMINUSCONNECTED=15 +val SC_MARK_LCORNERCURVE=16 +val SC_MARK_TCORNERCURVE=17 +val SC_MARK_CIRCLEPLUS=18 +val SC_MARK_CIRCLEPLUSCONNECTED=19 +val SC_MARK_CIRCLEMINUS=20 +val SC_MARK_CIRCLEMINUSCONNECTED=21 + +# Invisible mark that only sets the line background colour. +val SC_MARK_BACKGROUND=22 +val SC_MARK_DOTDOTDOT=23 +val SC_MARK_ARROWS=24 +val SC_MARK_PIXMAP=25 +val SC_MARK_FULLRECT=26 +val SC_MARK_LEFTRECT=27 +val SC_MARK_AVAILABLE=28 +val SC_MARK_UNDERLINE=29 +val SC_MARK_RGBAIMAGE=30 +val SC_MARK_BOOKMARK=31 + +val SC_MARK_CHARACTER=10000 + +enu MarkerOutline=SC_MARKNUM_ +# Markers used for outlining column. +val SC_MARKNUM_FOLDEREND=25 +val SC_MARKNUM_FOLDEROPENMID=26 +val SC_MARKNUM_FOLDERMIDTAIL=27 +val SC_MARKNUM_FOLDERTAIL=28 +val SC_MARKNUM_FOLDERSUB=29 +val SC_MARKNUM_FOLDER=30 +val SC_MARKNUM_FOLDEROPEN=31 + +val SC_MASK_FOLDERS=0xFE000000 + +# Set the symbol used for a particular marker number. +fun void MarkerDefine=2040(int markerNumber, int markerSymbol) + +# Set the foreground colour used for a particular marker number. +set void MarkerSetFore=2041(int markerNumber, colour fore) + +# Set the background colour used for a particular marker number. +set void MarkerSetBack=2042(int markerNumber, colour back) + +# Set the background colour used for a particular marker number when its folding block is selected. +set void MarkerSetBackSelected=2292(int markerNumber, colour back) + +# Enable/disable highlight for current folding bloc (smallest one that contains the caret) +fun void MarkerEnableHighlight=2293(bool enabled,) + +# Add a marker to a line, returning an ID which can be used to find or delete the marker. +fun int MarkerAdd=2043(int line, int markerNumber) + +# Delete a marker from a line. +fun void MarkerDelete=2044(int line, int markerNumber) + +# Delete all markers with a particular number from all lines. +fun void MarkerDeleteAll=2045(int markerNumber,) + +# Get a bit mask of all the markers set on a line. +fun int MarkerGet=2046(int line,) + +# Find the next line at or after lineStart that includes a marker in mask. +# Return -1 when no more lines. +fun int MarkerNext=2047(int lineStart, int markerMask) + +# Find the previous line before lineStart that includes a marker in mask. +fun int MarkerPrevious=2048(int lineStart, int markerMask) + +# Define a marker from a pixmap. +fun void MarkerDefinePixmap=2049(int markerNumber, string pixmap) + +# Add a set of markers to a line. +fun void MarkerAddSet=2466(int line, int markerSet) + +# Set the alpha used for a marker that is drawn in the text area, not the margin. +set void MarkerSetAlpha=2476(int markerNumber, int alpha) + +val SC_MAX_MARGIN=4 + +enu MarginType=SC_MARGIN_ +val SC_MARGIN_SYMBOL=0 +val SC_MARGIN_NUMBER=1 +val SC_MARGIN_BACK=2 +val SC_MARGIN_FORE=3 +val SC_MARGIN_TEXT=4 +val SC_MARGIN_RTEXT=5 +val SC_MARGIN_COLOUR=6 + +# Set a margin to be either numeric or symbolic. +set void SetMarginTypeN=2240(int margin, int marginType) + +# Retrieve the type of a margin. +get int GetMarginTypeN=2241(int margin,) + +# Set the width of a margin to a width expressed in pixels. +set void SetMarginWidthN=2242(int margin, int pixelWidth) + +# Retrieve the width of a margin in pixels. +get int GetMarginWidthN=2243(int margin,) + +# Set a mask that determines which markers are displayed in a margin. +set void SetMarginMaskN=2244(int margin, int mask) + +# Retrieve the marker mask of a margin. +get int GetMarginMaskN=2245(int margin,) + +# Make a margin sensitive or insensitive to mouse clicks. +set void SetMarginSensitiveN=2246(int margin, bool sensitive) + +# Retrieve the mouse click sensitivity of a margin. +get bool GetMarginSensitiveN=2247(int margin,) + +# Set the cursor shown when the mouse is inside a margin. +set void SetMarginCursorN=2248(int margin, int cursor) + +# Retrieve the cursor shown in a margin. +get int GetMarginCursorN=2249(int margin,) + +# Set the background colour of a margin. Only visible for SC_MARGIN_COLOUR. +set void SetMarginBackN=2250(int margin, colour back) + +# Retrieve the background colour of a margin +get colour GetMarginBackN=2251(int margin,) + +# Allocate a non-standard number of margins. +set void SetMargins=2252(int margins,) + +# How many margins are there?. +get int GetMargins=2253(,) + +# Styles in range 32..39 are predefined for parts of the UI and are not used as normal styles. +enu StylesCommon=STYLE_ +val STYLE_DEFAULT=32 +val STYLE_LINENUMBER=33 +val STYLE_BRACELIGHT=34 +val STYLE_BRACEBAD=35 +val STYLE_CONTROLCHAR=36 +val STYLE_INDENTGUIDE=37 +val STYLE_CALLTIP=38 +val STYLE_FOLDDISPLAYTEXT=39 +val STYLE_LASTPREDEFINED=39 +val STYLE_MAX=255 + +# Character set identifiers are used in StyleSetCharacterSet. +# The values are the same as the Windows *_CHARSET values. +enu CharacterSet=SC_CHARSET_ +val SC_CHARSET_ANSI=0 +val SC_CHARSET_DEFAULT=1 +val SC_CHARSET_BALTIC=186 +val SC_CHARSET_CHINESEBIG5=136 +val SC_CHARSET_EASTEUROPE=238 +val SC_CHARSET_GB2312=134 +val SC_CHARSET_GREEK=161 +val SC_CHARSET_HANGUL=129 +val SC_CHARSET_MAC=77 +val SC_CHARSET_OEM=255 +val SC_CHARSET_RUSSIAN=204 +val SC_CHARSET_OEM866=866 +val SC_CHARSET_CYRILLIC=1251 +val SC_CHARSET_SHIFTJIS=128 +val SC_CHARSET_SYMBOL=2 +val SC_CHARSET_TURKISH=162 +val SC_CHARSET_JOHAB=130 +val SC_CHARSET_HEBREW=177 +val SC_CHARSET_ARABIC=178 +val SC_CHARSET_VIETNAMESE=163 +val SC_CHARSET_THAI=222 +val SC_CHARSET_8859_15=1000 + +# Clear all the styles and make equivalent to the global default style. +fun void StyleClearAll=2050(,) + +# Set the foreground colour of a style. +set void StyleSetFore=2051(int style, colour fore) + +# Set the background colour of a style. +set void StyleSetBack=2052(int style, colour back) + +# Set a style to be bold or not. +set void StyleSetBold=2053(int style, bool bold) + +# Set a style to be italic or not. +set void StyleSetItalic=2054(int style, bool italic) + +# Set the size of characters of a style. +set void StyleSetSize=2055(int style, int sizePoints) + +# Set the font of a style. +set void StyleSetFont=2056(int style, string fontName) + +# Set a style to have its end of line filled or not. +set void StyleSetEOLFilled=2057(int style, bool eolFilled) + +# Reset the default style to its state at startup +fun void StyleResetDefault=2058(,) + +# Set a style to be underlined or not. +set void StyleSetUnderline=2059(int style, bool underline) + +enu CaseVisible=SC_CASE_ +val SC_CASE_MIXED=0 +val SC_CASE_UPPER=1 +val SC_CASE_LOWER=2 +val SC_CASE_CAMEL=3 + +# Get the foreground colour of a style. +get colour StyleGetFore=2481(int style,) + +# Get the background colour of a style. +get colour StyleGetBack=2482(int style,) + +# Get is a style bold or not. +get bool StyleGetBold=2483(int style,) + +# Get is a style italic or not. +get bool StyleGetItalic=2484(int style,) + +# Get the size of characters of a style. +get int StyleGetSize=2485(int style,) + +# Get the font of a style. +# Returns the length of the fontName +# Result is NUL-terminated. +get int StyleGetFont=2486(int style, stringresult fontName) + +# Get is a style to have its end of line filled or not. +get bool StyleGetEOLFilled=2487(int style,) + +# Get is a style underlined or not. +get bool StyleGetUnderline=2488(int style,) + +# Get is a style mixed case, or to force upper or lower case. +get int StyleGetCase=2489(int style,) + +# Get the character get of the font in a style. +get int StyleGetCharacterSet=2490(int style,) + +# Get is a style visible or not. +get bool StyleGetVisible=2491(int style,) + +# Get is a style changeable or not (read only). +# Experimental feature, currently buggy. +get bool StyleGetChangeable=2492(int style,) + +# Get is a style a hotspot or not. +get bool StyleGetHotSpot=2493(int style,) + +# Set a style to be mixed case, or to force upper or lower case. +set void StyleSetCase=2060(int style, int caseVisible) + +val SC_FONT_SIZE_MULTIPLIER=100 + +# Set the size of characters of a style. Size is in points multiplied by 100. +set void StyleSetSizeFractional=2061(int style, int sizeHundredthPoints) + +# Get the size of characters of a style in points multiplied by 100 +get int StyleGetSizeFractional=2062(int style,) + +enu FontWeight=SC_WEIGHT_ +val SC_WEIGHT_NORMAL=400 +val SC_WEIGHT_SEMIBOLD=600 +val SC_WEIGHT_BOLD=700 + +# Set the weight of characters of a style. +set void StyleSetWeight=2063(int style, int weight) + +# Get the weight of characters of a style. +get int StyleGetWeight=2064(int style,) + +# Set the character set of the font in a style. +set void StyleSetCharacterSet=2066(int style, int characterSet) + +# Set a style to be a hotspot or not. +set void StyleSetHotSpot=2409(int style, bool hotspot) + +# Set the foreground colour of the main and additional selections and whether to use this setting. +fun void SetSelFore=2067(bool useSetting, colour fore) + +# Set the background colour of the main and additional selections and whether to use this setting. +fun void SetSelBack=2068(bool useSetting, colour back) + +# Get the alpha of the selection. +get int GetSelAlpha=2477(,) + +# Set the alpha of the selection. +set void SetSelAlpha=2478(int alpha,) + +# Is the selection end of line filled? +get bool GetSelEOLFilled=2479(,) + +# Set the selection to have its end of line filled or not. +set void SetSelEOLFilled=2480(bool filled,) + +# Set the foreground colour of the caret. +set void SetCaretFore=2069(colour fore,) + +# When key+modifier combination keyDefinition is pressed perform sciCommand. +fun void AssignCmdKey=2070(keymod keyDefinition, int sciCommand) + +# When key+modifier combination keyDefinition is pressed do nothing. +fun void ClearCmdKey=2071(keymod keyDefinition,) + +# Drop all key mappings. +fun void ClearAllCmdKeys=2072(,) + +# Set the styles for a segment of the document. +fun void SetStylingEx=2073(int length, string styles) + +# Set a style to be visible or not. +set void StyleSetVisible=2074(int style, bool visible) + +# Get the time in milliseconds that the caret is on and off. +get int GetCaretPeriod=2075(,) + +# Get the time in milliseconds that the caret is on and off. 0 = steady on. +set void SetCaretPeriod=2076(int periodMilliseconds,) + +# Set the set of characters making up words for when moving or selecting by word. +# First sets defaults like SetCharsDefault. +set void SetWordChars=2077(, string characters) + +# Get the set of characters making up words for when moving or selecting by word. +# Returns the number of characters +get int GetWordChars=2646(, stringresult characters) + +# Start a sequence of actions that is undone and redone as a unit. +# May be nested. +fun void BeginUndoAction=2078(,) + +# End a sequence of actions that is undone and redone as a unit. +fun void EndUndoAction=2079(,) + +# Indicator style enumeration and some constants +enu IndicatorStyle=INDIC_ +val INDIC_PLAIN=0 +val INDIC_SQUIGGLE=1 +val INDIC_TT=2 +val INDIC_DIAGONAL=3 +val INDIC_STRIKE=4 +val INDIC_HIDDEN=5 +val INDIC_BOX=6 +val INDIC_ROUNDBOX=7 +val INDIC_STRAIGHTBOX=8 +val INDIC_DASH=9 +val INDIC_DOTS=10 +val INDIC_SQUIGGLELOW=11 +val INDIC_DOTBOX=12 +val INDIC_SQUIGGLEPIXMAP=13 +val INDIC_COMPOSITIONTHICK=14 +val INDIC_COMPOSITIONTHIN=15 +val INDIC_FULLBOX=16 +val INDIC_TEXTFORE=17 +val INDIC_POINT=18 +val INDIC_POINTCHARACTER=19 +val INDIC_GRADIENT=20 +val INDIC_GRADIENTCENTRE=21 +val INDIC_IME=32 +val INDIC_IME_MAX=35 +val INDIC_MAX=35 +val INDIC_CONTAINER=8 +val INDIC0_MASK=0x20 +val INDIC1_MASK=0x40 +val INDIC2_MASK=0x80 +val INDICS_MASK=0xE0 + +# Set an indicator to plain, squiggle or TT. +set void IndicSetStyle=2080(int indicator, int indicatorStyle) + +# Retrieve the style of an indicator. +get int IndicGetStyle=2081(int indicator,) + +# Set the foreground colour of an indicator. +set void IndicSetFore=2082(int indicator, colour fore) + +# Retrieve the foreground colour of an indicator. +get colour IndicGetFore=2083(int indicator,) + +# Set an indicator to draw under text or over(default). +set void IndicSetUnder=2510(int indicator, bool under) + +# Retrieve whether indicator drawn under or over text. +get bool IndicGetUnder=2511(int indicator,) + +# Set a hover indicator to plain, squiggle or TT. +set void IndicSetHoverStyle=2680(int indicator, int indicatorStyle) + +# Retrieve the hover style of an indicator. +get int IndicGetHoverStyle=2681(int indicator,) + +# Set the foreground hover colour of an indicator. +set void IndicSetHoverFore=2682(int indicator, colour fore) + +# Retrieve the foreground hover colour of an indicator. +get colour IndicGetHoverFore=2683(int indicator,) + +val SC_INDICVALUEBIT=0x1000000 +val SC_INDICVALUEMASK=0xFFFFFF + +enu IndicFlag=SC_INDICFLAG_ +val SC_INDICFLAG_VALUEFORE=1 + +# Set the attributes of an indicator. +set void IndicSetFlags=2684(int indicator, int flags) + +# Retrieve the attributes of an indicator. +get int IndicGetFlags=2685(int indicator,) + +# Set the foreground colour of all whitespace and whether to use this setting. +fun void SetWhitespaceFore=2084(bool useSetting, colour fore) + +# Set the background colour of all whitespace and whether to use this setting. +fun void SetWhitespaceBack=2085(bool useSetting, colour back) + +# Set the size of the dots used to mark space characters. +set void SetWhitespaceSize=2086(int size,) + +# Get the size of the dots used to mark space characters. +get int GetWhitespaceSize=2087(,) + +# Used to hold extra styling information for each line. +set void SetLineState=2092(int line, int state) + +# Retrieve the extra styling information for a line. +get int GetLineState=2093(int line,) + +# Retrieve the last line number that has line state. +get int GetMaxLineState=2094(,) + +# Is the background of the line containing the caret in a different colour? +get bool GetCaretLineVisible=2095(,) + +# Display the background of the line containing the caret in a different colour. +set void SetCaretLineVisible=2096(bool show,) + +# Get the colour of the background of the line containing the caret. +get colour GetCaretLineBack=2097(,) + +# Set the colour of the background of the line containing the caret. +set void SetCaretLineBack=2098(colour back,) + +# Retrieve the caret line frame width. +# Width = 0 means this option is disabled. +get int GetCaretLineFrame=2704(,) + +# Display the caret line framed. +# Set width != 0 to enable this option and width = 0 to disable it. +set void SetCaretLineFrame=2705(int width,) + +# Set a style to be changeable or not (read only). +# Experimental feature, currently buggy. +set void StyleSetChangeable=2099(int style, bool changeable) + +# Display a auto-completion list. +# The lengthEntered parameter indicates how many characters before +# the caret should be used to provide context. +fun void AutoCShow=2100(int lengthEntered, string itemList) + +# Remove the auto-completion list from the screen. +fun void AutoCCancel=2101(,) + +# Is there an auto-completion list visible? +fun bool AutoCActive=2102(,) + +# Retrieve the position of the caret when the auto-completion list was displayed. +fun position AutoCPosStart=2103(,) + +# User has selected an item so remove the list and insert the selection. +fun void AutoCComplete=2104(,) + +# Define a set of character that when typed cancel the auto-completion list. +fun void AutoCStops=2105(, string characterSet) + +# Change the separator character in the string setting up an auto-completion list. +# Default is space but can be changed if items contain space. +set void AutoCSetSeparator=2106(int separatorCharacter,) + +# Retrieve the auto-completion list separator character. +get int AutoCGetSeparator=2107(,) + +# Select the item in the auto-completion list that starts with a string. +fun void AutoCSelect=2108(, string select) + +# Should the auto-completion list be cancelled if the user backspaces to a +# position before where the box was created. +set void AutoCSetCancelAtStart=2110(bool cancel,) + +# Retrieve whether auto-completion cancelled by backspacing before start. +get bool AutoCGetCancelAtStart=2111(,) + +# Define a set of characters that when typed will cause the autocompletion to +# choose the selected item. +set void AutoCSetFillUps=2112(, string characterSet) + +# Should a single item auto-completion list automatically choose the item. +set void AutoCSetChooseSingle=2113(bool chooseSingle,) + +# Retrieve whether a single item auto-completion list automatically choose the item. +get bool AutoCGetChooseSingle=2114(,) + +# Set whether case is significant when performing auto-completion searches. +set void AutoCSetIgnoreCase=2115(bool ignoreCase,) + +# Retrieve state of ignore case flag. +get bool AutoCGetIgnoreCase=2116(,) + +# Display a list of strings and send notification when user chooses one. +fun void UserListShow=2117(int listType, string itemList) + +# Set whether or not autocompletion is hidden automatically when nothing matches. +set void AutoCSetAutoHide=2118(bool autoHide,) + +# Retrieve whether or not autocompletion is hidden automatically when nothing matches. +get bool AutoCGetAutoHide=2119(,) + +# Set whether or not autocompletion deletes any word characters +# after the inserted text upon completion. +set void AutoCSetDropRestOfWord=2270(bool dropRestOfWord,) + +# Retrieve whether or not autocompletion deletes any word characters +# after the inserted text upon completion. +get bool AutoCGetDropRestOfWord=2271(,) + +# Register an XPM image for use in autocompletion lists. +fun void RegisterImage=2405(int type, string xpmData) + +# Clear all the registered XPM images. +fun void ClearRegisteredImages=2408(,) + +# Retrieve the auto-completion list type-separator character. +get int AutoCGetTypeSeparator=2285(,) + +# Change the type-separator character in the string setting up an auto-completion list. +# Default is '?' but can be changed if items contain '?'. +set void AutoCSetTypeSeparator=2286(int separatorCharacter,) + +# Set the maximum width, in characters, of auto-completion and user lists. +# Set to 0 to autosize to fit longest item, which is the default. +set void AutoCSetMaxWidth=2208(int characterCount,) + +# Get the maximum width, in characters, of auto-completion and user lists. +get int AutoCGetMaxWidth=2209(,) + +# Set the maximum height, in rows, of auto-completion and user lists. +# The default is 5 rows. +set void AutoCSetMaxHeight=2210(int rowCount,) + +# Set the maximum height, in rows, of auto-completion and user lists. +get int AutoCGetMaxHeight=2211(,) + +# Set the number of spaces used for one level of indentation. +set void SetIndent=2122(int indentSize,) + +# Retrieve indentation size. +get int GetIndent=2123(,) + +# Indentation will only use space characters if useTabs is false, otherwise +# it will use a combination of tabs and spaces. +set void SetUseTabs=2124(bool useTabs,) + +# Retrieve whether tabs will be used in indentation. +get bool GetUseTabs=2125(,) + +# Change the indentation of a line to a number of columns. +set void SetLineIndentation=2126(int line, int indentation) + +# Retrieve the number of columns that a line is indented. +get int GetLineIndentation=2127(int line,) + +# Retrieve the position before the first non indentation character on a line. +get position GetLineIndentPosition=2128(int line,) + +# Retrieve the column number of a position, taking tab width into account. +get int GetColumn=2129(position pos,) + +# Count characters between two positions. +fun int CountCharacters=2633(position start, position end) + +# Count code units between two positions. +fun int CountCodeUnits=2715(position start, position end) + +# Show or hide the horizontal scroll bar. +set void SetHScrollBar=2130(bool visible,) +# Is the horizontal scroll bar visible? +get bool GetHScrollBar=2131(,) + +enu IndentView=SC_IV_ +val SC_IV_NONE=0 +val SC_IV_REAL=1 +val SC_IV_LOOKFORWARD=2 +val SC_IV_LOOKBOTH=3 + +# Show or hide indentation guides. +set void SetIndentationGuides=2132(int indentView,) + +# Are the indentation guides visible? +get int GetIndentationGuides=2133(,) + +# Set the highlighted indentation guide column. +# 0 = no highlighted guide. +set void SetHighlightGuide=2134(int column,) + +# Get the highlighted indentation guide column. +get int GetHighlightGuide=2135(,) + +# Get the position after the last visible characters on a line. +get position GetLineEndPosition=2136(int line,) + +# Get the code page used to interpret the bytes of the document as characters. +get int GetCodePage=2137(,) + +# Get the foreground colour of the caret. +get colour GetCaretFore=2138(,) + +# In read-only mode? +get bool GetReadOnly=2140(,) + +# Sets the position of the caret. +set void SetCurrentPos=2141(position caret,) + +# Sets the position that starts the selection - this becomes the anchor. +set void SetSelectionStart=2142(position anchor,) + +# Returns the position at the start of the selection. +get position GetSelectionStart=2143(,) + +# Sets the position that ends the selection - this becomes the caret. +set void SetSelectionEnd=2144(position caret,) + +# Returns the position at the end of the selection. +get position GetSelectionEnd=2145(,) + +# Set caret to a position, while removing any existing selection. +fun void SetEmptySelection=2556(position caret,) + +# Sets the print magnification added to the point size of each style for printing. +set void SetPrintMagnification=2146(int magnification,) + +# Returns the print magnification. +get int GetPrintMagnification=2147(,) + +enu PrintOption=SC_PRINT_ +# PrintColourMode - use same colours as screen. +# with the exception of line number margins, which use a white background +val SC_PRINT_NORMAL=0 +# PrintColourMode - invert the light value of each style for printing. +val SC_PRINT_INVERTLIGHT=1 +# PrintColourMode - force black text on white background for printing. +val SC_PRINT_BLACKONWHITE=2 +# PrintColourMode - text stays coloured, but all background is forced to be white for printing. +val SC_PRINT_COLOURONWHITE=3 +# PrintColourMode - only the default-background is forced to be white for printing. +val SC_PRINT_COLOURONWHITEDEFAULTBG=4 +# PrintColourMode - use same colours as screen, including line number margins. +val SC_PRINT_SCREENCOLOURS=5 + +# Modify colours when printing for clearer printed text. +set void SetPrintColourMode=2148(int mode,) + +# Returns the print colour mode. +get int GetPrintColourMode=2149(,) + +enu FindOption=SCFIND_ +val SCFIND_WHOLEWORD=0x2 +val SCFIND_MATCHCASE=0x4 +val SCFIND_WORDSTART=0x00100000 +val SCFIND_REGEXP=0x00200000 +val SCFIND_POSIX=0x00400000 +val SCFIND_CXX11REGEX=0x00800000 + +# Find some text in the document. +fun position FindText=2150(int searchFlags, findtext ft) + +# On Windows, will draw the document into a display context such as a printer. +fun position FormatRange=2151(bool draw, formatrange fr) + +# Retrieve the display line at the top of the display. +get int GetFirstVisibleLine=2152(,) + +# Retrieve the contents of a line. +# Returns the length of the line. +fun int GetLine=2153(int line, stringresult text) + +# Returns the number of lines in the document. There is always at least one. +get int GetLineCount=2154(,) + +# Sets the size in pixels of the left margin. +set void SetMarginLeft=2155(, int pixelWidth) + +# Returns the size in pixels of the left margin. +get int GetMarginLeft=2156(,) + +# Sets the size in pixels of the right margin. +set void SetMarginRight=2157(, int pixelWidth) + +# Returns the size in pixels of the right margin. +get int GetMarginRight=2158(,) + +# Is the document different from when it was last saved? +get bool GetModify=2159(,) + +# Select a range of text. +fun void SetSel=2160(position anchor, position caret) + +# Retrieve the selected text. +# Return the length of the text. +# Result is NUL-terminated. +fun int GetSelText=2161(, stringresult text) + +# Retrieve a range of text. +# Return the length of the text. +fun int GetTextRange=2162(, textrange tr) + +# Draw the selection either highlighted or in normal (non-highlighted) style. +fun void HideSelection=2163(bool hide,) + +# Retrieve the x value of the point in the window where a position is displayed. +fun int PointXFromPosition=2164(, position pos) + +# Retrieve the y value of the point in the window where a position is displayed. +fun int PointYFromPosition=2165(, position pos) + +# Retrieve the line containing a position. +fun int LineFromPosition=2166(position pos,) + +# Retrieve the position at the start of a line. +fun position PositionFromLine=2167(int line,) + +# Scroll horizontally and vertically. +fun void LineScroll=2168(int columns, int lines) + +# Ensure the caret is visible. +fun void ScrollCaret=2169(,) + +# Scroll the argument positions and the range between them into view giving +# priority to the primary position then the secondary position. +# This may be used to make a search match visible. +fun void ScrollRange=2569(position secondary, position primary) + +# Replace the selected text with the argument text. +fun void ReplaceSel=2170(, string text) + +# Set to read only or read write. +set void SetReadOnly=2171(bool readOnly,) + +# Null operation. +fun void Null=2172(,) + +# Will a paste succeed? +fun bool CanPaste=2173(,) + +# Are there any undoable actions in the undo history? +fun bool CanUndo=2174(,) + +# Delete the undo history. +fun void EmptyUndoBuffer=2175(,) + +# Undo one action in the undo history. +fun void Undo=2176(,) + +# Cut the selection to the clipboard. +fun void Cut=2177(,) + +# Copy the selection to the clipboard. +fun void Copy=2178(,) + +# Paste the contents of the clipboard into the document replacing the selection. +fun void Paste=2179(,) + +# Clear the selection. +fun void Clear=2180(,) + +# Replace the contents of the document with the argument text. +fun void SetText=2181(, string text) + +# Retrieve all the text in the document. +# Returns number of characters retrieved. +# Result is NUL-terminated. +fun int GetText=2182(int length, stringresult text) + +# Retrieve the number of characters in the document. +get int GetTextLength=2183(,) + +# Retrieve a pointer to a function that processes messages for this Scintilla. +get int GetDirectFunction=2184(,) + +# Retrieve a pointer value to use as the first argument when calling +# the function returned by GetDirectFunction. +get int GetDirectPointer=2185(,) + +# Set to overtype (true) or insert mode. +set void SetOvertype=2186(bool overType,) + +# Returns true if overtype mode is active otherwise false is returned. +get bool GetOvertype=2187(,) + +# Set the width of the insert mode caret. +set void SetCaretWidth=2188(int pixelWidth,) + +# Returns the width of the insert mode caret. +get int GetCaretWidth=2189(,) + +# Sets the position that starts the target which is used for updating the +# document without affecting the scroll position. +set void SetTargetStart=2190(position start,) + +# Get the position that starts the target. +get position GetTargetStart=2191(,) + +# Sets the position that ends the target which is used for updating the +# document without affecting the scroll position. +set void SetTargetEnd=2192(position end,) + +# Get the position that ends the target. +get position GetTargetEnd=2193(,) + +# Sets both the start and end of the target in one call. +fun void SetTargetRange=2686(position start, position end) + +# Retrieve the text in the target. +get int GetTargetText=2687(, stringresult text) + +# Make the target range start and end be the same as the selection range start and end. +fun void TargetFromSelection=2287(,) + +# Sets the target to the whole document. +fun void TargetWholeDocument=2690(,) + +# Replace the target text with the argument text. +# Text is counted so it can contain NULs. +# Returns the length of the replacement text. +fun int ReplaceTarget=2194(int length, string text) + +# Replace the target text with the argument text after \d processing. +# Text is counted so it can contain NULs. +# Looks for \d where d is between 1 and 9 and replaces these with the strings +# matched in the last search operation which were surrounded by \( and \). +# Returns the length of the replacement text including any change +# caused by processing the \d patterns. +fun int ReplaceTargetRE=2195(int length, string text) + +# Search for a counted string in the target and set the target to the found +# range. Text is counted so it can contain NULs. +# Returns length of range or -1 for failure in which case target is not moved. +fun int SearchInTarget=2197(int length, string text) + +# Set the search flags used by SearchInTarget. +set void SetSearchFlags=2198(int searchFlags,) + +# Get the search flags used by SearchInTarget. +get int GetSearchFlags=2199(,) + +# Show a call tip containing a definition near position pos. +fun void CallTipShow=2200(position pos, string definition) + +# Remove the call tip from the screen. +fun void CallTipCancel=2201(,) + +# Is there an active call tip? +fun bool CallTipActive=2202(,) + +# Retrieve the position where the caret was before displaying the call tip. +fun position CallTipPosStart=2203(,) + +# Set the start position in order to change when backspacing removes the calltip. +set void CallTipSetPosStart=2214(int posStart,) + +# Highlight a segment of the definition. +fun void CallTipSetHlt=2204(int highlightStart, int highlightEnd) + +# Set the background colour for the call tip. +set void CallTipSetBack=2205(colour back,) + +# Set the foreground colour for the call tip. +set void CallTipSetFore=2206(colour fore,) + +# Set the foreground colour for the highlighted part of the call tip. +set void CallTipSetForeHlt=2207(colour fore,) + +# Enable use of STYLE_CALLTIP and set call tip tab size in pixels. +set void CallTipUseStyle=2212(int tabSize,) + +# Set position of calltip, above or below text. +set void CallTipSetPosition=2213(bool above,) + +# Find the display line of a document line taking hidden lines into account. +fun int VisibleFromDocLine=2220(int docLine,) + +# Find the document line of a display line taking hidden lines into account. +fun int DocLineFromVisible=2221(int displayLine,) + +# The number of display lines needed to wrap a document line +fun int WrapCount=2235(int docLine,) + +enu FoldLevel=SC_FOLDLEVEL +val SC_FOLDLEVELBASE=0x400 +val SC_FOLDLEVELWHITEFLAG=0x1000 +val SC_FOLDLEVELHEADERFLAG=0x2000 +val SC_FOLDLEVELNUMBERMASK=0x0FFF + +# Set the fold level of a line. +# This encodes an integer level along with flags indicating whether the +# line is a header and whether it is effectively white space. +set void SetFoldLevel=2222(int line, int level) + +# Retrieve the fold level of a line. +get int GetFoldLevel=2223(int line,) + +# Find the last child line of a header line. +get int GetLastChild=2224(int line, int level) + +# Find the parent line of a child line. +get int GetFoldParent=2225(int line,) + +# Make a range of lines visible. +fun void ShowLines=2226(int lineStart, int lineEnd) + +# Make a range of lines invisible. +fun void HideLines=2227(int lineStart, int lineEnd) + +# Is a line visible? +get bool GetLineVisible=2228(int line,) + +# Are all lines visible? +get bool GetAllLinesVisible=2236(,) + +# Show the children of a header line. +set void SetFoldExpanded=2229(int line, bool expanded) + +# Is a header line expanded? +get bool GetFoldExpanded=2230(int line,) + +# Switch a header line between expanded and contracted. +fun void ToggleFold=2231(int line,) + +# Switch a header line between expanded and contracted and show some text after the line. +fun void ToggleFoldShowText=2700(int line, string text) + +enu FoldDisplayTextStyle=SC_FOLDDISPLAYTEXT_ +val SC_FOLDDISPLAYTEXT_HIDDEN=0 +val SC_FOLDDISPLAYTEXT_STANDARD=1 +val SC_FOLDDISPLAYTEXT_BOXED=2 + +# Set the style of fold display text +set void FoldDisplayTextSetStyle=2701(int style,) + +enu FoldAction=SC_FOLDACTION_ +val SC_FOLDACTION_CONTRACT=0 +val SC_FOLDACTION_EXPAND=1 +val SC_FOLDACTION_TOGGLE=2 + +# Expand or contract a fold header. +fun void FoldLine=2237(int line, int action) + +# Expand or contract a fold header and its children. +fun void FoldChildren=2238(int line, int action) + +# Expand a fold header and all children. Use the level argument instead of the line's current level. +fun void ExpandChildren=2239(int line, int level) + +# Expand or contract all fold headers. +fun void FoldAll=2662(int action,) + +# Ensure a particular line is visible by expanding any header line hiding it. +fun void EnsureVisible=2232(int line,) + +enu AutomaticFold=SC_AUTOMATICFOLD_ +val SC_AUTOMATICFOLD_SHOW=0x0001 +val SC_AUTOMATICFOLD_CLICK=0x0002 +val SC_AUTOMATICFOLD_CHANGE=0x0004 + +# Set automatic folding behaviours. +set void SetAutomaticFold=2663(int automaticFold,) + +# Get automatic folding behaviours. +get int GetAutomaticFold=2664(,) + +enu FoldFlag=SC_FOLDFLAG_ +val SC_FOLDFLAG_LINEBEFORE_EXPANDED=0x0002 +val SC_FOLDFLAG_LINEBEFORE_CONTRACTED=0x0004 +val SC_FOLDFLAG_LINEAFTER_EXPANDED=0x0008 +val SC_FOLDFLAG_LINEAFTER_CONTRACTED=0x0010 +val SC_FOLDFLAG_LEVELNUMBERS=0x0040 +val SC_FOLDFLAG_LINESTATE=0x0080 + +# Set some style options for folding. +set void SetFoldFlags=2233(int flags,) + +# Ensure a particular line is visible by expanding any header line hiding it. +# Use the currently set visibility policy to determine which range to display. +fun void EnsureVisibleEnforcePolicy=2234(int line,) + +# Sets whether a tab pressed when caret is within indentation indents. +set void SetTabIndents=2260(bool tabIndents,) + +# Does a tab pressed when caret is within indentation indent? +get bool GetTabIndents=2261(,) + +# Sets whether a backspace pressed when caret is within indentation unindents. +set void SetBackSpaceUnIndents=2262(bool bsUnIndents,) + +# Does a backspace pressed when caret is within indentation unindent? +get bool GetBackSpaceUnIndents=2263(,) + +val SC_TIME_FOREVER=10000000 + +# Sets the time the mouse must sit still to generate a mouse dwell event. +set void SetMouseDwellTime=2264(int periodMilliseconds,) + +# Retrieve the time the mouse must sit still to generate a mouse dwell event. +get int GetMouseDwellTime=2265(,) + +# Get position of start of word. +fun int WordStartPosition=2266(position pos, bool onlyWordCharacters) + +# Get position of end of word. +fun int WordEndPosition=2267(position pos, bool onlyWordCharacters) + +# Is the range start..end considered a word? +fun bool IsRangeWord=2691(position start, position end) + +enu IdleStyling=SC_IDLESTYLING_ +val SC_IDLESTYLING_NONE=0 +val SC_IDLESTYLING_TOVISIBLE=1 +val SC_IDLESTYLING_AFTERVISIBLE=2 +val SC_IDLESTYLING_ALL=3 + +# Sets limits to idle styling. +set void SetIdleStyling=2692(int idleStyling,) + +# Retrieve the limits to idle styling. +get int GetIdleStyling=2693(,) + +enu Wrap=SC_WRAP_ +val SC_WRAP_NONE=0 +val SC_WRAP_WORD=1 +val SC_WRAP_CHAR=2 +val SC_WRAP_WHITESPACE=3 + +# Sets whether text is word wrapped. +set void SetWrapMode=2268(int wrapMode,) + +# Retrieve whether text is word wrapped. +get int GetWrapMode=2269(,) + +enu WrapVisualFlag=SC_WRAPVISUALFLAG_ +val SC_WRAPVISUALFLAG_NONE=0x0000 +val SC_WRAPVISUALFLAG_END=0x0001 +val SC_WRAPVISUALFLAG_START=0x0002 +val SC_WRAPVISUALFLAG_MARGIN=0x0004 + +# Set the display mode of visual flags for wrapped lines. +set void SetWrapVisualFlags=2460(int wrapVisualFlags,) + +# Retrive the display mode of visual flags for wrapped lines. +get int GetWrapVisualFlags=2461(,) + +enu WrapVisualLocation=SC_WRAPVISUALFLAGLOC_ +val SC_WRAPVISUALFLAGLOC_DEFAULT=0x0000 +val SC_WRAPVISUALFLAGLOC_END_BY_TEXT=0x0001 +val SC_WRAPVISUALFLAGLOC_START_BY_TEXT=0x0002 + +# Set the location of visual flags for wrapped lines. +set void SetWrapVisualFlagsLocation=2462(int wrapVisualFlagsLocation,) + +# Retrive the location of visual flags for wrapped lines. +get int GetWrapVisualFlagsLocation=2463(,) + +# Set the start indent for wrapped lines. +set void SetWrapStartIndent=2464(int indent,) + +# Retrive the start indent for wrapped lines. +get int GetWrapStartIndent=2465(,) + +enu WrapIndentMode=SC_WRAPINDENT_ +val SC_WRAPINDENT_FIXED=0 +val SC_WRAPINDENT_SAME=1 +val SC_WRAPINDENT_INDENT=2 +val SC_WRAPINDENT_DEEPINDENT=3 + +# Sets how wrapped sublines are placed. Default is fixed. +set void SetWrapIndentMode=2472(int wrapIndentMode,) + +# Retrieve how wrapped sublines are placed. Default is fixed. +get int GetWrapIndentMode=2473(,) + +enu LineCache=SC_CACHE_ +val SC_CACHE_NONE=0 +val SC_CACHE_CARET=1 +val SC_CACHE_PAGE=2 +val SC_CACHE_DOCUMENT=3 + +# Sets the degree of caching of layout information. +set void SetLayoutCache=2272(int cacheMode,) + +# Retrieve the degree of caching of layout information. +get int GetLayoutCache=2273(,) + +# Sets the document width assumed for scrolling. +set void SetScrollWidth=2274(int pixelWidth,) + +# Retrieve the document width assumed for scrolling. +get int GetScrollWidth=2275(,) + +# Sets whether the maximum width line displayed is used to set scroll width. +set void SetScrollWidthTracking=2516(bool tracking,) + +# Retrieve whether the scroll width tracks wide lines. +get bool GetScrollWidthTracking=2517(,) + +# Measure the pixel width of some text in a particular style. +# NUL terminated text argument. +# Does not handle tab or control characters. +fun int TextWidth=2276(int style, string text) + +# Sets the scroll range so that maximum scroll position has +# the last line at the bottom of the view (default). +# Setting this to false allows scrolling one page below the last line. +set void SetEndAtLastLine=2277(bool endAtLastLine,) + +# Retrieve whether the maximum scroll position has the last +# line at the bottom of the view. +get bool GetEndAtLastLine=2278(,) + +# Retrieve the height of a particular line of text in pixels. +fun int TextHeight=2279(int line,) + +# Show or hide the vertical scroll bar. +set void SetVScrollBar=2280(bool visible,) + +# Is the vertical scroll bar visible? +get bool GetVScrollBar=2281(,) + +# Append a string to the end of the document without changing the selection. +fun void AppendText=2282(int length, string text) + +# Is drawing done in two phases with backgrounds drawn before foregrounds? +get bool GetTwoPhaseDraw=2283(,) + +# In twoPhaseDraw mode, drawing is performed in two phases, first the background +# and then the foreground. This avoids chopping off characters that overlap the next run. +set void SetTwoPhaseDraw=2284(bool twoPhase,) + +enu PhasesDraw=SC_PHASES_ +val SC_PHASES_ONE=0 +val SC_PHASES_TWO=1 +val SC_PHASES_MULTIPLE=2 + +# How many phases is drawing done in? +get int GetPhasesDraw=2673(,) + +# In one phase draw, text is drawn in a series of rectangular blocks with no overlap. +# In two phase draw, text is drawn in a series of lines allowing runs to overlap horizontally. +# In multiple phase draw, each element is drawn over the whole drawing area, allowing text +# to overlap from one line to the next. +set void SetPhasesDraw=2674(int phases,) + +# Control font anti-aliasing. + +enu FontQuality=SC_EFF_ +val SC_EFF_QUALITY_MASK=0xF +val SC_EFF_QUALITY_DEFAULT=0 +val SC_EFF_QUALITY_NON_ANTIALIASED=1 +val SC_EFF_QUALITY_ANTIALIASED=2 +val SC_EFF_QUALITY_LCD_OPTIMIZED=3 + +# Choose the quality level for text from the FontQuality enumeration. +set void SetFontQuality=2611(int fontQuality,) + +# Retrieve the quality level for text. +get int GetFontQuality=2612(,) + +# Scroll so that a display line is at the top of the display. +set void SetFirstVisibleLine=2613(int displayLine,) + +enu MultiPaste=SC_MULTIPASTE_ +val SC_MULTIPASTE_ONCE=0 +val SC_MULTIPASTE_EACH=1 + +# Change the effect of pasting when there are multiple selections. +set void SetMultiPaste=2614(int multiPaste,) + +# Retrieve the effect of pasting when there are multiple selections. +get int GetMultiPaste=2615(,) + +# Retrieve the value of a tag from a regular expression search. +# Result is NUL-terminated. +get int GetTag=2616(int tagNumber, stringresult tagValue) + +# Join the lines in the target. +fun void LinesJoin=2288(,) + +# Split the lines in the target into lines that are less wide than pixelWidth +# where possible. +fun void LinesSplit=2289(int pixelWidth,) + +# Set one of the colours used as a chequerboard pattern in the fold margin +fun void SetFoldMarginColour=2290(bool useSetting, colour back) +# Set the other colour used as a chequerboard pattern in the fold margin +fun void SetFoldMarginHiColour=2291(bool useSetting, colour fore) + +enu Accessibility=SC_ACCESSIBILITY_ +val SC_ACCESSIBILITY_DISABLED=0 +val SC_ACCESSIBILITY_ENABLED=1 + +# Enable or disable accessibility. +set void SetAccessibility=2702(int accessibility,) + +# Report accessibility status. +get int GetAccessibility=2703(,) + +## New messages go here + +## Start of key messages +# Move caret down one line. +fun void LineDown=2300(,) + +# Move caret down one line extending selection to new caret position. +fun void LineDownExtend=2301(,) + +# Move caret up one line. +fun void LineUp=2302(,) + +# Move caret up one line extending selection to new caret position. +fun void LineUpExtend=2303(,) + +# Move caret left one character. +fun void CharLeft=2304(,) + +# Move caret left one character extending selection to new caret position. +fun void CharLeftExtend=2305(,) + +# Move caret right one character. +fun void CharRight=2306(,) + +# Move caret right one character extending selection to new caret position. +fun void CharRightExtend=2307(,) + +# Move caret left one word. +fun void WordLeft=2308(,) + +# Move caret left one word extending selection to new caret position. +fun void WordLeftExtend=2309(,) + +# Move caret right one word. +fun void WordRight=2310(,) + +# Move caret right one word extending selection to new caret position. +fun void WordRightExtend=2311(,) + +# Move caret to first position on line. +fun void Home=2312(,) + +# Move caret to first position on line extending selection to new caret position. +fun void HomeExtend=2313(,) + +# Move caret to last position on line. +fun void LineEnd=2314(,) + +# Move caret to last position on line extending selection to new caret position. +fun void LineEndExtend=2315(,) + +# Move caret to first position in document. +fun void DocumentStart=2316(,) + +# Move caret to first position in document extending selection to new caret position. +fun void DocumentStartExtend=2317(,) + +# Move caret to last position in document. +fun void DocumentEnd=2318(,) + +# Move caret to last position in document extending selection to new caret position. +fun void DocumentEndExtend=2319(,) + +# Move caret one page up. +fun void PageUp=2320(,) + +# Move caret one page up extending selection to new caret position. +fun void PageUpExtend=2321(,) + +# Move caret one page down. +fun void PageDown=2322(,) + +# Move caret one page down extending selection to new caret position. +fun void PageDownExtend=2323(,) + +# Switch from insert to overtype mode or the reverse. +fun void EditToggleOvertype=2324(,) + +# Cancel any modes such as call tip or auto-completion list display. +fun void Cancel=2325(,) + +# Delete the selection or if no selection, the character before the caret. +fun void DeleteBack=2326(,) + +# If selection is empty or all on one line replace the selection with a tab character. +# If more than one line selected, indent the lines. +fun void Tab=2327(,) + +# Dedent the selected lines. +fun void BackTab=2328(,) + +# Insert a new line, may use a CRLF, CR or LF depending on EOL mode. +fun void NewLine=2329(,) + +# Insert a Form Feed character. +fun void FormFeed=2330(,) + +# Move caret to before first visible character on line. +# If already there move to first character on line. +fun void VCHome=2331(,) + +# Like VCHome but extending selection to new caret position. +fun void VCHomeExtend=2332(,) + +# Magnify the displayed text by increasing the sizes by 1 point. +fun void ZoomIn=2333(,) + +# Make the displayed text smaller by decreasing the sizes by 1 point. +fun void ZoomOut=2334(,) + +# Delete the word to the left of the caret. +fun void DelWordLeft=2335(,) + +# Delete the word to the right of the caret. +fun void DelWordRight=2336(,) + +# Delete the word to the right of the caret, but not the trailing non-word characters. +fun void DelWordRightEnd=2518(,) + +# Cut the line containing the caret. +fun void LineCut=2337(,) + +# Delete the line containing the caret. +fun void LineDelete=2338(,) + +# Switch the current line with the previous. +fun void LineTranspose=2339(,) + +# Reverse order of selected lines. +fun void LineReverse=2354(,) + +# Duplicate the current line. +fun void LineDuplicate=2404(,) + +# Transform the selection to lower case. +fun void LowerCase=2340(,) + +# Transform the selection to upper case. +fun void UpperCase=2341(,) + +# Scroll the document down, keeping the caret visible. +fun void LineScrollDown=2342(,) + +# Scroll the document up, keeping the caret visible. +fun void LineScrollUp=2343(,) + +# Delete the selection or if no selection, the character before the caret. +# Will not delete the character before at the start of a line. +fun void DeleteBackNotLine=2344(,) + +# Move caret to first position on display line. +fun void HomeDisplay=2345(,) + +# Move caret to first position on display line extending selection to +# new caret position. +fun void HomeDisplayExtend=2346(,) + +# Move caret to last position on display line. +fun void LineEndDisplay=2347(,) + +# Move caret to last position on display line extending selection to new +# caret position. +fun void LineEndDisplayExtend=2348(,) + +# Like Home but when word-wrap is enabled goes first to start of display line +# HomeDisplay, then to start of document line Home. +fun void HomeWrap=2349(,) + +# Like HomeExtend but when word-wrap is enabled extends first to start of display line +# HomeDisplayExtend, then to start of document line HomeExtend. +fun void HomeWrapExtend=2450(,) + +# Like LineEnd but when word-wrap is enabled goes first to end of display line +# LineEndDisplay, then to start of document line LineEnd. +fun void LineEndWrap=2451(,) + +# Like LineEndExtend but when word-wrap is enabled extends first to end of display line +# LineEndDisplayExtend, then to start of document line LineEndExtend. +fun void LineEndWrapExtend=2452(,) + +# Like VCHome but when word-wrap is enabled goes first to start of display line +# VCHomeDisplay, then behaves like VCHome. +fun void VCHomeWrap=2453(,) + +# Like VCHomeExtend but when word-wrap is enabled extends first to start of display line +# VCHomeDisplayExtend, then behaves like VCHomeExtend. +fun void VCHomeWrapExtend=2454(,) + +# Copy the line containing the caret. +fun void LineCopy=2455(,) + +# Move the caret inside current view if it's not there already. +fun void MoveCaretInsideView=2401(,) + +# How many characters are on a line, including end of line characters? +fun int LineLength=2350(int line,) + +# Highlight the characters at two positions. +fun void BraceHighlight=2351(position posA, position posB) + +# Use specified indicator to highlight matching braces instead of changing their style. +fun void BraceHighlightIndicator=2498(bool useSetting, int indicator) + +# Highlight the character at a position indicating there is no matching brace. +fun void BraceBadLight=2352(position pos,) + +# Use specified indicator to highlight non matching brace instead of changing its style. +fun void BraceBadLightIndicator=2499(bool useSetting, int indicator) + +# Find the position of a matching brace or INVALID_POSITION if no match. +# The maxReStyle must be 0 for now. It may be defined in a future release. +fun position BraceMatch=2353(position pos, int maxReStyle) + +# Are the end of line characters visible? +get bool GetViewEOL=2355(,) + +# Make the end of line characters visible or invisible. +set void SetViewEOL=2356(bool visible,) + +# Retrieve a pointer to the document object. +get int GetDocPointer=2357(,) + +# Change the document object used. +set void SetDocPointer=2358(, int doc) + +# Set which document modification events are sent to the container. +set void SetModEventMask=2359(int eventMask,) + +enu EdgeVisualStyle=EDGE_ +val EDGE_NONE=0 +val EDGE_LINE=1 +val EDGE_BACKGROUND=2 +val EDGE_MULTILINE=3 + +# Retrieve the column number which text should be kept within. +get int GetEdgeColumn=2360(,) + +# Set the column number of the edge. +# If text goes past the edge then it is highlighted. +set void SetEdgeColumn=2361(int column,) + +# Retrieve the edge highlight mode. +get int GetEdgeMode=2362(,) + +# The edge may be displayed by a line (EDGE_LINE/EDGE_MULTILINE) or by highlighting text that +# goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE). +set void SetEdgeMode=2363(int edgeMode,) + +# Retrieve the colour used in edge indication. +get colour GetEdgeColour=2364(,) + +# Change the colour used in edge indication. +set void SetEdgeColour=2365(colour edgeColour,) + +# Add a new vertical edge to the view. +fun void MultiEdgeAddLine=2694(int column, colour edgeColour) + +# Clear all vertical edges. +fun void MultiEdgeClearAll=2695(,) + +# Sets the current caret position to be the search anchor. +fun void SearchAnchor=2366(,) + +# Find some text starting at the search anchor. +# Does not ensure the selection is visible. +fun int SearchNext=2367(int searchFlags, string text) + +# Find some text starting at the search anchor and moving backwards. +# Does not ensure the selection is visible. +fun int SearchPrev=2368(int searchFlags, string text) + +# Retrieves the number of lines completely visible. +get int LinesOnScreen=2370(,) + +enu PopUp=SC_POPUP_ +val SC_POPUP_NEVER=0 +val SC_POPUP_ALL=1 +val SC_POPUP_TEXT=2 + +# Set whether a pop up menu is displayed automatically when the user presses +# the wrong mouse button on certain areas. +fun void UsePopUp=2371(int popUpMode,) + +# Is the selection rectangular? The alternative is the more common stream selection. +get bool SelectionIsRectangle=2372(,) + +# Set the zoom level. This number of points is added to the size of all fonts. +# It may be positive to magnify or negative to reduce. +set void SetZoom=2373(int zoomInPoints,) +# Retrieve the zoom level. +get int GetZoom=2374(,) + +enu DocumentOption=SC_DOCUMENTOPTION_ +val SC_DOCUMENTOPTION_DEFAULT=0 +val SC_DOCUMENTOPTION_STYLES_NONE=0x1 +val SC_DOCUMENTOPTION_TEXT_LARGE=0x100 + +# Create a new document object. +# Starts with reference count of 1 and not selected into editor. +fun int CreateDocument=2375(int bytes, int documentOptions) +# Extend life of document. +fun void AddRefDocument=2376(, int doc) +# Release a reference to the document, deleting document if it fades to black. +fun void ReleaseDocument=2377(, int doc) + +# Get which document options are set. +get int GetDocumentOptions=2379(,) + +# Get which document modification events are sent to the container. +get int GetModEventMask=2378(,) + +# Set whether command events are sent to the container. +set void SetCommandEvents=2717(bool commandEvents,) + +# Get whether command events are sent to the container. +get bool GetCommandEvents=2718(,) + +# Change internal focus flag. +set void SetFocus=2380(bool focus,) +# Get internal focus flag. +get bool GetFocus=2381(,) + +enu Status=SC_STATUS_ +val SC_STATUS_OK=0 +val SC_STATUS_FAILURE=1 +val SC_STATUS_BADALLOC=2 +val SC_STATUS_WARN_START=1000 +val SC_STATUS_WARN_REGEX=1001 + +# Change error status - 0 = OK. +set void SetStatus=2382(int status,) +# Get error status. +get int GetStatus=2383(,) + +# Set whether the mouse is captured when its button is pressed. +set void SetMouseDownCaptures=2384(bool captures,) +# Get whether mouse gets captured. +get bool GetMouseDownCaptures=2385(,) + +# Set whether the mouse wheel can be active outside the window. +set void SetMouseWheelCaptures=2696(bool captures,) +# Get whether mouse wheel can be active outside the window. +get bool GetMouseWheelCaptures=2697(,) + +enu CursorShape=SC_CURSOR +val SC_CURSORNORMAL=-1 +val SC_CURSORARROW=2 +val SC_CURSORWAIT=4 +val SC_CURSORREVERSEARROW=7 +# Sets the cursor to one of the SC_CURSOR* values. +set void SetCursor=2386(int cursorType,) +# Get cursor type. +get int GetCursor=2387(,) + +# Change the way control characters are displayed: +# If symbol is < 32, keep the drawn way, else, use the given character. +set void SetControlCharSymbol=2388(int symbol,) +# Get the way control characters are displayed. +get int GetControlCharSymbol=2389(,) + +# Move to the previous change in capitalisation. +fun void WordPartLeft=2390(,) +# Move to the previous change in capitalisation extending selection +# to new caret position. +fun void WordPartLeftExtend=2391(,) +# Move to the change next in capitalisation. +fun void WordPartRight=2392(,) +# Move to the next change in capitalisation extending selection +# to new caret position. +fun void WordPartRightExtend=2393(,) + +# Constants for use with SetVisiblePolicy, similar to SetCaretPolicy. +enu VisiblePolicy=VISIBLE_ +val VISIBLE_SLOP=0x01 +val VISIBLE_STRICT=0x04 +# Set the way the display area is determined when a particular line +# is to be moved to by Find, FindNext, GotoLine, etc. +fun void SetVisiblePolicy=2394(int visiblePolicy, int visibleSlop) + +# Delete back from the current position to the start of the line. +fun void DelLineLeft=2395(,) + +# Delete forwards from the current position to the end of the line. +fun void DelLineRight=2396(,) + +# Set the xOffset (ie, horizontal scroll position). +set void SetXOffset=2397(int xOffset,) + +# Get the xOffset (ie, horizontal scroll position). +get int GetXOffset=2398(,) + +# Set the last x chosen value to be the caret x position. +fun void ChooseCaretX=2399(,) + +# Set the focus to this Scintilla widget. +fun void GrabFocus=2400(,) + +enu CaretPolicy=CARET_ +# Caret policy, used by SetXCaretPolicy and SetYCaretPolicy. +# If CARET_SLOP is set, we can define a slop value: caretSlop. +# This value defines an unwanted zone (UZ) where the caret is... unwanted. +# This zone is defined as a number of pixels near the vertical margins, +# and as a number of lines near the horizontal margins. +# By keeping the caret away from the edges, it is seen within its context, +# so it is likely that the identifier that the caret is on can be completely seen, +# and that the current line is seen with some of the lines following it which are +# often dependent on that line. +val CARET_SLOP=0x01 +# If CARET_STRICT is set, the policy is enforced... strictly. +# The caret is centred on the display if slop is not set, +# and cannot go in the UZ if slop is set. +val CARET_STRICT=0x04 +# If CARET_JUMPS is set, the display is moved more energetically +# so the caret can move in the same direction longer before the policy is applied again. +val CARET_JUMPS=0x10 +# If CARET_EVEN is not set, instead of having symmetrical UZs, +# the left and bottom UZs are extended up to right and top UZs respectively. +# This way, we favour the displaying of useful information: the beginning of lines, +# where most code reside, and the lines after the caret, eg. the body of a function. +val CARET_EVEN=0x08 + +# Set the way the caret is kept visible when going sideways. +# The exclusion zone is given in pixels. +fun void SetXCaretPolicy=2402(int caretPolicy, int caretSlop) + +# Set the way the line the caret is on is kept visible. +# The exclusion zone is given in lines. +fun void SetYCaretPolicy=2403(int caretPolicy, int caretSlop) + +# Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE). +set void SetPrintWrapMode=2406(int wrapMode,) + +# Is printing line wrapped? +get int GetPrintWrapMode=2407(,) + +# Set a fore colour for active hotspots. +set void SetHotspotActiveFore=2410(bool useSetting, colour fore) + +# Get the fore colour for active hotspots. +get colour GetHotspotActiveFore=2494(,) + +# Set a back colour for active hotspots. +set void SetHotspotActiveBack=2411(bool useSetting, colour back) + +# Get the back colour for active hotspots. +get colour GetHotspotActiveBack=2495(,) + +# Enable / Disable underlining active hotspots. +set void SetHotspotActiveUnderline=2412(bool underline,) + +# Get whether underlining for active hotspots. +get bool GetHotspotActiveUnderline=2496(,) + +# Limit hotspots to single line so hotspots on two lines don't merge. +set void SetHotspotSingleLine=2421(bool singleLine,) + +# Get the HotspotSingleLine property +get bool GetHotspotSingleLine=2497(,) + +# Move caret down one paragraph (delimited by empty lines). +fun void ParaDown=2413(,) +# Extend selection down one paragraph (delimited by empty lines). +fun void ParaDownExtend=2414(,) +# Move caret up one paragraph (delimited by empty lines). +fun void ParaUp=2415(,) +# Extend selection up one paragraph (delimited by empty lines). +fun void ParaUpExtend=2416(,) + +# Given a valid document position, return the previous position taking code +# page into account. Returns 0 if passed 0. +fun position PositionBefore=2417(position pos,) + +# Given a valid document position, return the next position taking code +# page into account. Maximum value returned is the last position in the document. +fun position PositionAfter=2418(position pos,) + +# Given a valid document position, return a position that differs in a number +# of characters. Returned value is always between 0 and last position in document. +fun position PositionRelative=2670(position pos, int relative) + +# Given a valid document position, return a position that differs in a number +# of UTF-16 code units. Returned value is always between 0 and last position in document. +# The result may point half way (2 bytes) inside a non-BMP character. +fun position PositionRelativeCodeUnits=2716(position pos, int relative) + +# Copy a range of text to the clipboard. Positions are clipped into the document. +fun void CopyRange=2419(position start, position end) + +# Copy argument text to the clipboard. +fun void CopyText=2420(int length, string text) + +enu SelectionMode=SC_SEL_ +val SC_SEL_STREAM=0 +val SC_SEL_RECTANGLE=1 +val SC_SEL_LINES=2 +val SC_SEL_THIN=3 + +# Set the selection mode to stream (SC_SEL_STREAM) or rectangular (SC_SEL_RECTANGLE/SC_SEL_THIN) or +# by lines (SC_SEL_LINES). +set void SetSelectionMode=2422(int selectionMode,) + +# Get the mode of the current selection. +get int GetSelectionMode=2423(,) + +# Get whether or not regular caret moves will extend or reduce the selection. +get bool GetMoveExtendsSelection=2706(,) + +# Retrieve the position of the start of the selection at the given line (INVALID_POSITION if no selection on this line). +fun position GetLineSelStartPosition=2424(int line,) + +# Retrieve the position of the end of the selection at the given line (INVALID_POSITION if no selection on this line). +fun position GetLineSelEndPosition=2425(int line,) + +## RectExtended rectangular selection moves +# Move caret down one line, extending rectangular selection to new caret position. +fun void LineDownRectExtend=2426(,) + +# Move caret up one line, extending rectangular selection to new caret position. +fun void LineUpRectExtend=2427(,) + +# Move caret left one character, extending rectangular selection to new caret position. +fun void CharLeftRectExtend=2428(,) + +# Move caret right one character, extending rectangular selection to new caret position. +fun void CharRightRectExtend=2429(,) + +# Move caret to first position on line, extending rectangular selection to new caret position. +fun void HomeRectExtend=2430(,) + +# Move caret to before first visible character on line. +# If already there move to first character on line. +# In either case, extend rectangular selection to new caret position. +fun void VCHomeRectExtend=2431(,) + +# Move caret to last position on line, extending rectangular selection to new caret position. +fun void LineEndRectExtend=2432(,) + +# Move caret one page up, extending rectangular selection to new caret position. +fun void PageUpRectExtend=2433(,) + +# Move caret one page down, extending rectangular selection to new caret position. +fun void PageDownRectExtend=2434(,) + + +# Move caret to top of page, or one page up if already at top of page. +fun void StutteredPageUp=2435(,) + +# Move caret to top of page, or one page up if already at top of page, extending selection to new caret position. +fun void StutteredPageUpExtend=2436(,) + +# Move caret to bottom of page, or one page down if already at bottom of page. +fun void StutteredPageDown=2437(,) + +# Move caret to bottom of page, or one page down if already at bottom of page, extending selection to new caret position. +fun void StutteredPageDownExtend=2438(,) + + +# Move caret left one word, position cursor at end of word. +fun void WordLeftEnd=2439(,) + +# Move caret left one word, position cursor at end of word, extending selection to new caret position. +fun void WordLeftEndExtend=2440(,) + +# Move caret right one word, position cursor at end of word. +fun void WordRightEnd=2441(,) + +# Move caret right one word, position cursor at end of word, extending selection to new caret position. +fun void WordRightEndExtend=2442(,) + +# Set the set of characters making up whitespace for when moving or selecting by word. +# Should be called after SetWordChars. +set void SetWhitespaceChars=2443(, string characters) + +# Get the set of characters making up whitespace for when moving or selecting by word. +get int GetWhitespaceChars=2647(, stringresult characters) + +# Set the set of characters making up punctuation characters +# Should be called after SetWordChars. +set void SetPunctuationChars=2648(, string characters) + +# Get the set of characters making up punctuation characters +get int GetPunctuationChars=2649(, stringresult characters) + +# Reset the set of characters for whitespace and word characters to the defaults. +fun void SetCharsDefault=2444(,) + +# Get currently selected item position in the auto-completion list +get int AutoCGetCurrent=2445(,) + +# Get currently selected item text in the auto-completion list +# Returns the length of the item text +# Result is NUL-terminated. +get int AutoCGetCurrentText=2610(, stringresult text) + +enu CaseInsensitiveBehaviour=SC_CASEINSENSITIVEBEHAVIOUR_ +val SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE=0 +val SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE=1 + +# Set auto-completion case insensitive behaviour to either prefer case-sensitive matches or have no preference. +set void AutoCSetCaseInsensitiveBehaviour=2634(int behaviour,) + +# Get auto-completion case insensitive behaviour. +get int AutoCGetCaseInsensitiveBehaviour=2635(,) + +enu MultiAutoComplete=SC_MULTIAUTOC_ +val SC_MULTIAUTOC_ONCE=0 +val SC_MULTIAUTOC_EACH=1 + +# Change the effect of autocompleting when there are multiple selections. +set void AutoCSetMulti=2636(int multi,) + +# Retrieve the effect of autocompleting when there are multiple selections. +get int AutoCGetMulti=2637(,) + +enu Ordering=SC_ORDER_ +val SC_ORDER_PRESORTED=0 +val SC_ORDER_PERFORMSORT=1 +val SC_ORDER_CUSTOM=2 + +# Set the way autocompletion lists are ordered. +set void AutoCSetOrder=2660(int order,) + +# Get the way autocompletion lists are ordered. +get int AutoCGetOrder=2661(,) + +# Enlarge the document to a particular size of text bytes. +fun void Allocate=2446(int bytes,) + +# Returns the target converted to UTF8. +# Return the length in bytes. +fun int TargetAsUTF8=2447(, stringresult s) + +# Set the length of the utf8 argument for calling EncodedFromUTF8. +# Set to -1 and the string will be measured to the first nul. +fun void SetLengthForEncode=2448(int bytes,) + +# Translates a UTF8 string into the document encoding. +# Return the length of the result in bytes. +# On error return 0. +fun int EncodedFromUTF8=2449(string utf8, stringresult encoded) + +# Find the position of a column on a line taking into account tabs and +# multi-byte characters. If beyond end of line, return line end position. +fun int FindColumn=2456(int line, int column) + +# Can the caret preferred x position only be changed by explicit movement commands? +get int GetCaretSticky=2457(,) + +# Stop the caret preferred x position changing when the user types. +set void SetCaretSticky=2458(int useCaretStickyBehaviour,) + +enu CaretSticky=SC_CARETSTICKY_ +val SC_CARETSTICKY_OFF=0 +val SC_CARETSTICKY_ON=1 +val SC_CARETSTICKY_WHITESPACE=2 + +# Switch between sticky and non-sticky: meant to be bound to a key. +fun void ToggleCaretSticky=2459(,) + +# Enable/Disable convert-on-paste for line endings +set void SetPasteConvertEndings=2467(bool convert,) + +# Get convert-on-paste setting +get bool GetPasteConvertEndings=2468(,) + +# Duplicate the selection. If selection empty duplicate the line containing the caret. +fun void SelectionDuplicate=2469(,) + +enu Alpha=SC_ALPHA_ +val SC_ALPHA_TRANSPARENT=0 +val SC_ALPHA_OPAQUE=255 +val SC_ALPHA_NOALPHA=256 + +# Set background alpha of the caret line. +set void SetCaretLineBackAlpha=2470(int alpha,) + +# Get the background alpha of the caret line. +get int GetCaretLineBackAlpha=2471(,) + +enu CaretStyle=CARETSTYLE_ +val CARETSTYLE_INVISIBLE=0 +val CARETSTYLE_LINE=1 +val CARETSTYLE_BLOCK=2 + +# Set the style of the caret to be drawn. +set void SetCaretStyle=2512(int caretStyle,) + +# Returns the current style of the caret. +get int GetCaretStyle=2513(,) + +# Set the indicator used for IndicatorFillRange and IndicatorClearRange +set void SetIndicatorCurrent=2500(int indicator,) + +# Get the current indicator +get int GetIndicatorCurrent=2501(,) + +# Set the value used for IndicatorFillRange +set void SetIndicatorValue=2502(int value,) + +# Get the current indicator value +get int GetIndicatorValue=2503(,) + +# Turn a indicator on over a range. +fun void IndicatorFillRange=2504(position start, int lengthFill) + +# Turn a indicator off over a range. +fun void IndicatorClearRange=2505(position start, int lengthClear) + +# Are any indicators present at pos? +fun int IndicatorAllOnFor=2506(position pos,) + +# What value does a particular indicator have at a position? +fun int IndicatorValueAt=2507(int indicator, position pos) + +# Where does a particular indicator start? +fun int IndicatorStart=2508(int indicator, position pos) + +# Where does a particular indicator end? +fun int IndicatorEnd=2509(int indicator, position pos) + +# Set number of entries in position cache +set void SetPositionCache=2514(int size,) + +# How many entries are allocated to the position cache? +get int GetPositionCache=2515(,) + +# Copy the selection, if selection empty copy the line with the caret +fun void CopyAllowLine=2519(,) + +# Compact the document buffer and return a read-only pointer to the +# characters in the document. +get int GetCharacterPointer=2520(,) + +# Return a read-only pointer to a range of characters in the document. +# May move the gap so that the range is contiguous, but will only move up +# to lengthRange bytes. +get int GetRangePointer=2643(position start, int lengthRange) + +# Return a position which, to avoid performance costs, should not be within +# the range of a call to GetRangePointer. +get position GetGapPosition=2644(,) + +# Set the alpha fill colour of the given indicator. +set void IndicSetAlpha=2523(int indicator, int alpha) + +# Get the alpha fill colour of the given indicator. +get int IndicGetAlpha=2524(int indicator,) + +# Set the alpha outline colour of the given indicator. +set void IndicSetOutlineAlpha=2558(int indicator, int alpha) + +# Get the alpha outline colour of the given indicator. +get int IndicGetOutlineAlpha=2559(int indicator,) + +# Set extra ascent for each line +set void SetExtraAscent=2525(int extraAscent,) + +# Get extra ascent for each line +get int GetExtraAscent=2526(,) + +# Set extra descent for each line +set void SetExtraDescent=2527(int extraDescent,) + +# Get extra descent for each line +get int GetExtraDescent=2528(,) + +# Which symbol was defined for markerNumber with MarkerDefine +fun int MarkerSymbolDefined=2529(int markerNumber,) + +# Set the text in the text margin for a line +set void MarginSetText=2530(int line, string text) + +# Get the text in the text margin for a line +get int MarginGetText=2531(int line, stringresult text) + +# Set the style number for the text margin for a line +set void MarginSetStyle=2532(int line, int style) + +# Get the style number for the text margin for a line +get int MarginGetStyle=2533(int line,) + +# Set the style in the text margin for a line +set void MarginSetStyles=2534(int line, string styles) + +# Get the styles in the text margin for a line +get int MarginGetStyles=2535(int line, stringresult styles) + +# Clear the margin text on all lines +fun void MarginTextClearAll=2536(,) + +# Get the start of the range of style numbers used for margin text +set void MarginSetStyleOffset=2537(int style,) + +# Get the start of the range of style numbers used for margin text +get int MarginGetStyleOffset=2538(,) + +enu MarginOption=SC_MARGINOPTION_ +val SC_MARGINOPTION_NONE=0 +val SC_MARGINOPTION_SUBLINESELECT=1 + +# Set the margin options. +set void SetMarginOptions=2539(int marginOptions,) + +# Get the margin options. +get int GetMarginOptions=2557(,) + +# Set the annotation text for a line +set void AnnotationSetText=2540(int line, string text) + +# Get the annotation text for a line +get int AnnotationGetText=2541(int line, stringresult text) + +# Set the style number for the annotations for a line +set void AnnotationSetStyle=2542(int line, int style) + +# Get the style number for the annotations for a line +get int AnnotationGetStyle=2543(int line,) + +# Set the annotation styles for a line +set void AnnotationSetStyles=2544(int line, string styles) + +# Get the annotation styles for a line +get int AnnotationGetStyles=2545(int line, stringresult styles) + +# Get the number of annotation lines for a line +get int AnnotationGetLines=2546(int line,) + +# Clear the annotations from all lines +fun void AnnotationClearAll=2547(,) + +enu AnnotationVisible=ANNOTATION_ +val ANNOTATION_HIDDEN=0 +val ANNOTATION_STANDARD=1 +val ANNOTATION_BOXED=2 +val ANNOTATION_INDENTED=3 + +# Set the visibility for the annotations for a view +set void AnnotationSetVisible=2548(int visible,) + +# Get the visibility for the annotations for a view +get int AnnotationGetVisible=2549(,) + +# Get the start of the range of style numbers used for annotations +set void AnnotationSetStyleOffset=2550(int style,) + +# Get the start of the range of style numbers used for annotations +get int AnnotationGetStyleOffset=2551(,) + +# Release all extended (>255) style numbers +fun void ReleaseAllExtendedStyles=2552(,) + +# Allocate some extended (>255) style numbers and return the start of the range +fun int AllocateExtendedStyles=2553(int numberStyles,) + +val UNDO_MAY_COALESCE=1 + +# Add a container action to the undo stack +fun void AddUndoAction=2560(int token, int flags) + +# Find the position of a character from a point within the window. +fun position CharPositionFromPoint=2561(int x, int y) + +# Find the position of a character from a point within the window. +# Return INVALID_POSITION if not close to text. +fun position CharPositionFromPointClose=2562(int x, int y) + +# Set whether switching to rectangular mode while selecting with the mouse is allowed. +set void SetMouseSelectionRectangularSwitch=2668(bool mouseSelectionRectangularSwitch,) + +# Whether switching to rectangular mode while selecting with the mouse is allowed. +get bool GetMouseSelectionRectangularSwitch=2669(,) + +# Set whether multiple selections can be made +set void SetMultipleSelection=2563(bool multipleSelection,) + +# Whether multiple selections can be made +get bool GetMultipleSelection=2564(,) + +# Set whether typing can be performed into multiple selections +set void SetAdditionalSelectionTyping=2565(bool additionalSelectionTyping,) + +# Whether typing can be performed into multiple selections +get bool GetAdditionalSelectionTyping=2566(,) + +# Set whether additional carets will blink +set void SetAdditionalCaretsBlink=2567(bool additionalCaretsBlink,) + +# Whether additional carets will blink +get bool GetAdditionalCaretsBlink=2568(,) + +# Set whether additional carets are visible +set void SetAdditionalCaretsVisible=2608(bool additionalCaretsVisible,) + +# Whether additional carets are visible +get bool GetAdditionalCaretsVisible=2609(,) + +# How many selections are there? +get int GetSelections=2570(,) + +# Is every selected range empty? +get bool GetSelectionEmpty=2650(,) + +# Clear selections to a single empty stream selection +fun void ClearSelections=2571(,) + +# Set a simple selection +fun void SetSelection=2572(position caret, position anchor) + +# Add a selection +fun void AddSelection=2573(position caret, position anchor) + +# Drop one selection +fun void DropSelectionN=2671(int selection,) + +# Set the main selection +set void SetMainSelection=2574(int selection,) + +# Which selection is the main selection +get int GetMainSelection=2575(,) + +# Set the caret position of the nth selection. +set void SetSelectionNCaret=2576(int selection, position caret) +# Return the caret position of the nth selection. +get position GetSelectionNCaret=2577(int selection,) +# Set the anchor position of the nth selection. +set void SetSelectionNAnchor=2578(int selection, position anchor) +# Return the anchor position of the nth selection. +get position GetSelectionNAnchor=2579(int selection,) +# Set the virtual space of the caret of the nth selection. +set void SetSelectionNCaretVirtualSpace=2580(int selection, int space) +# Return the virtual space of the caret of the nth selection. +get int GetSelectionNCaretVirtualSpace=2581(int selection,) +# Set the virtual space of the anchor of the nth selection. +set void SetSelectionNAnchorVirtualSpace=2582(int selection, int space) +# Return the virtual space of the anchor of the nth selection. +get int GetSelectionNAnchorVirtualSpace=2583(int selection,) + +# Sets the position that starts the selection - this becomes the anchor. +set void SetSelectionNStart=2584(int selection, position anchor) + +# Returns the position at the start of the selection. +get position GetSelectionNStart=2585(int selection,) + +# Sets the position that ends the selection - this becomes the currentPosition. +set void SetSelectionNEnd=2586(int selection, position caret) + +# Returns the position at the end of the selection. +get position GetSelectionNEnd=2587(int selection,) + +# Set the caret position of the rectangular selection. +set void SetRectangularSelectionCaret=2588(position caret,) +# Return the caret position of the rectangular selection. +get position GetRectangularSelectionCaret=2589(,) +# Set the anchor position of the rectangular selection. +set void SetRectangularSelectionAnchor=2590(position anchor,) +# Return the anchor position of the rectangular selection. +get position GetRectangularSelectionAnchor=2591(,) +# Set the virtual space of the caret of the rectangular selection. +set void SetRectangularSelectionCaretVirtualSpace=2592(int space,) +# Return the virtual space of the caret of the rectangular selection. +get int GetRectangularSelectionCaretVirtualSpace=2593(,) +# Set the virtual space of the anchor of the rectangular selection. +set void SetRectangularSelectionAnchorVirtualSpace=2594(int space,) +# Return the virtual space of the anchor of the rectangular selection. +get int GetRectangularSelectionAnchorVirtualSpace=2595(,) + +enu VirtualSpace=SCVS_ +val SCVS_NONE=0 +val SCVS_RECTANGULARSELECTION=1 +val SCVS_USERACCESSIBLE=2 +val SCVS_NOWRAPLINESTART=4 + +# Set options for virtual space behaviour. +set void SetVirtualSpaceOptions=2596(int virtualSpaceOptions,) +# Return options for virtual space behaviour. +get int GetVirtualSpaceOptions=2597(,) + +# On GTK+, allow selecting the modifier key to use for mouse-based +# rectangular selection. Often the window manager requires Alt+Mouse Drag +# for moving windows. +# Valid values are SCMOD_CTRL(default), SCMOD_ALT, or SCMOD_SUPER. + +set void SetRectangularSelectionModifier=2598(int modifier,) + +# Get the modifier key used for rectangular selection. +get int GetRectangularSelectionModifier=2599(,) + +# Set the foreground colour of additional selections. +# Must have previously called SetSelFore with non-zero first argument for this to have an effect. +set void SetAdditionalSelFore=2600(colour fore,) + +# Set the background colour of additional selections. +# Must have previously called SetSelBack with non-zero first argument for this to have an effect. +set void SetAdditionalSelBack=2601(colour back,) + +# Set the alpha of the selection. +set void SetAdditionalSelAlpha=2602(int alpha,) + +# Get the alpha of the selection. +get int GetAdditionalSelAlpha=2603(,) + +# Set the foreground colour of additional carets. +set void SetAdditionalCaretFore=2604(colour fore,) + +# Get the foreground colour of additional carets. +get colour GetAdditionalCaretFore=2605(,) + +# Set the main selection to the next selection. +fun void RotateSelection=2606(,) + +# Swap that caret and anchor of the main selection. +fun void SwapMainAnchorCaret=2607(,) + +# Add the next occurrence of the main selection to the set of selections as main. +# If the current selection is empty then select word around caret. +fun void MultipleSelectAddNext=2688(,) + +# Add each occurrence of the main selection in the target to the set of selections. +# If the current selection is empty then select word around caret. +fun void MultipleSelectAddEach=2689(,) + +# Indicate that the internal state of a lexer has changed over a range and therefore +# there may be a need to redraw. +fun int ChangeLexerState=2617(position start, position end) + +# Find the next line at or after lineStart that is a contracted fold header line. +# Return -1 when no more lines. +fun int ContractedFoldNext=2618(int lineStart,) + +# Centre current line in window. +fun void VerticalCentreCaret=2619(,) + +# Move the selected lines up one line, shifting the line above after the selection +fun void MoveSelectedLinesUp=2620(,) + +# Move the selected lines down one line, shifting the line below before the selection +fun void MoveSelectedLinesDown=2621(,) + +# Set the identifier reported as idFrom in notification messages. +set void SetIdentifier=2622(int identifier,) + +# Get the identifier. +get int GetIdentifier=2623(,) + +# Set the width for future RGBA image data. +set void RGBAImageSetWidth=2624(int width,) + +# Set the height for future RGBA image data. +set void RGBAImageSetHeight=2625(int height,) + +# Set the scale factor in percent for future RGBA image data. +set void RGBAImageSetScale=2651(int scalePercent,) + +# Define a marker from RGBA data. +# It has the width and height from RGBAImageSetWidth/Height +fun void MarkerDefineRGBAImage=2626(int markerNumber, string pixels) + +# Register an RGBA image for use in autocompletion lists. +# It has the width and height from RGBAImageSetWidth/Height +fun void RegisterRGBAImage=2627(int type, string pixels) + +# Scroll to start of document. +fun void ScrollToStart=2628(,) + +# Scroll to end of document. +fun void ScrollToEnd=2629(,) + +enu Technology=SC_TECHNOLOGY_ +val SC_TECHNOLOGY_DEFAULT=0 +val SC_TECHNOLOGY_DIRECTWRITE=1 +val SC_TECHNOLOGY_DIRECTWRITERETAIN=2 +val SC_TECHNOLOGY_DIRECTWRITEDC=3 + +# Set the technology used. +set void SetTechnology=2630(int technology,) + +# Get the tech. +get int GetTechnology=2631(,) + +# Create an ILoader*. +fun int CreateLoader=2632(int bytes, int documentOptions) + +# On OS X, show a find indicator. +fun void FindIndicatorShow=2640(position start, position end) + +# On OS X, flash a find indicator, then fade out. +fun void FindIndicatorFlash=2641(position start, position end) + +# On OS X, hide the find indicator. +fun void FindIndicatorHide=2642(,) + +# Move caret to before first visible character on display line. +# If already there move to first character on display line. +fun void VCHomeDisplay=2652(,) + +# Like VCHomeDisplay but extending selection to new caret position. +fun void VCHomeDisplayExtend=2653(,) + +# Is the caret line always visible? +get bool GetCaretLineVisibleAlways=2654(,) + +# Sets the caret line to always visible. +set void SetCaretLineVisibleAlways=2655(bool alwaysVisible,) + +# Line end types which may be used in addition to LF, CR, and CRLF +# SC_LINE_END_TYPE_UNICODE includes U+2028 Line Separator, +# U+2029 Paragraph Separator, and U+0085 Next Line +enu LineEndType=SC_LINE_END_TYPE_ +val SC_LINE_END_TYPE_DEFAULT=0 +val SC_LINE_END_TYPE_UNICODE=1 + +# Set the line end types that the application wants to use. May not be used if incompatible with lexer or encoding. +set void SetLineEndTypesAllowed=2656(int lineEndBitSet,) + +# Get the line end types currently allowed. +get int GetLineEndTypesAllowed=2657(,) + +# Get the line end types currently recognised. May be a subset of the allowed types due to lexer limitation. +get int GetLineEndTypesActive=2658(,) + +# Set the way a character is drawn. +set void SetRepresentation=2665(string encodedCharacter, string representation) + +# Set the way a character is drawn. +# Result is NUL-terminated. +get int GetRepresentation=2666(string encodedCharacter, stringresult representation) + +# Remove a character representation. +fun void ClearRepresentation=2667(string encodedCharacter,) + +# Start notifying the container of all key presses and commands. +fun void StartRecord=3001(,) + +# Stop notifying the container of all key presses and commands. +fun void StopRecord=3002(,) + +# Set the lexing language of the document. +set void SetLexer=4001(int lexer,) + +# Retrieve the lexing language of the document. +get int GetLexer=4002(,) + +# Colourise a segment of the document using the current lexing language. +fun void Colourise=4003(position start, position end) + +# Set up a value that may be used by a lexer for some optional feature. +set void SetProperty=4004(string key, string value) + +# Maximum value of keywordSet parameter of SetKeyWords. +val KEYWORDSET_MAX=8 + +# Set up the key words used by the lexer. +set void SetKeyWords=4005(int keyWordSet, string keyWords) + +# Set the lexing language of the document based on string name. +set void SetLexerLanguage=4006(, string language) + +# Load a lexer library (dll / so). +fun void LoadLexerLibrary=4007(, string path) + +# Retrieve a "property" value previously set with SetProperty. +# Result is NUL-terminated. +get int GetProperty=4008(string key, stringresult value) + +# Retrieve a "property" value previously set with SetProperty, +# with "$()" variable replacement on returned buffer. +# Result is NUL-terminated. +get int GetPropertyExpanded=4009(string key, stringresult value) + +# Retrieve a "property" value previously set with SetProperty, +# interpreted as an int AFTER any "$()" variable replacement. +get int GetPropertyInt=4010(string key, int defaultValue) + +# Retrieve the name of the lexer. +# Return the length of the text. +# Result is NUL-terminated. +get int GetLexerLanguage=4012(, stringresult language) + +# For private communication between an application and a known lexer. +fun int PrivateLexerCall=4013(int operation, int pointer) + +# Retrieve a '\n' separated list of properties understood by the current lexer. +# Result is NUL-terminated. +fun int PropertyNames=4014(, stringresult names) + +enu TypeProperty=SC_TYPE_ +val SC_TYPE_BOOLEAN=0 +val SC_TYPE_INTEGER=1 +val SC_TYPE_STRING=2 + +# Retrieve the type of a property. +fun int PropertyType=4015(string name,) + +# Describe a property. +# Result is NUL-terminated. +fun int DescribeProperty=4016(string name, stringresult description) + +# Retrieve a '\n' separated list of descriptions of the keyword sets understood by the current lexer. +# Result is NUL-terminated. +fun int DescribeKeyWordSets=4017(, stringresult descriptions) + +# Bit set of LineEndType enumertion for which line ends beyond the standard +# LF, CR, and CRLF are supported by the lexer. +get int GetLineEndTypesSupported=4018(,) + +# Allocate a set of sub styles for a particular base style, returning start of range +fun int AllocateSubStyles=4020(int styleBase, int numberStyles) + +# The starting style number for the sub styles associated with a base style +get int GetSubStylesStart=4021(int styleBase,) + +# The number of sub styles associated with a base style +get int GetSubStylesLength=4022(int styleBase,) + +# For a sub style, return the base style, else return the argument. +get int GetStyleFromSubStyle=4027(int subStyle,) + +# For a secondary style, return the primary style, else return the argument. +get int GetPrimaryStyleFromStyle=4028(int style,) + +# Free allocated sub styles +fun void FreeSubStyles=4023(,) + +# Set the identifiers that are shown in a particular style +set void SetIdentifiers=4024(int style, string identifiers) + +# Where styles are duplicated by a feature such as active/inactive code +# return the distance between the two types. +get int DistanceToSecondaryStyles=4025(,) + +# Get the set of base styles that can be extended with sub styles +# Result is NUL-terminated. +get int GetSubStyleBases=4026(, stringresult styles) + +# Retrieve the number of named styles for the lexer. +get int GetNamedStyles=4029(,) + +# Retrieve the name of a style. +# Result is NUL-terminated. +fun int NameOfStyle=4030(int style, stringresult name) + +# Retrieve a ' ' separated list of style tags like "literal quoted string". +# Result is NUL-terminated. +fun int TagsOfStyle=4031(int style, stringresult tags) + +# Retrieve a description of a style. +# Result is NUL-terminated. +fun int DescriptionOfStyle=4032(int style, stringresult description) + +# Notifications +# Type of modification and the action which caused the modification. +# These are defined as a bit mask to make it easy to specify which notifications are wanted. +# One bit is set from each of SC_MOD_* and SC_PERFORMED_*. +enu ModificationFlags=SC_MOD_ SC_PERFORMED_ SC_MULTISTEPUNDOREDO SC_LASTSTEPINUNDOREDO SC_MULTILINEUNDOREDO SC_STARTACTION SC_MODEVENTMASKALL +val SC_MOD_INSERTTEXT=0x1 +val SC_MOD_DELETETEXT=0x2 +val SC_MOD_CHANGESTYLE=0x4 +val SC_MOD_CHANGEFOLD=0x8 +val SC_PERFORMED_USER=0x10 +val SC_PERFORMED_UNDO=0x20 +val SC_PERFORMED_REDO=0x40 +val SC_MULTISTEPUNDOREDO=0x80 +val SC_LASTSTEPINUNDOREDO=0x100 +val SC_MOD_CHANGEMARKER=0x200 +val SC_MOD_BEFOREINSERT=0x400 +val SC_MOD_BEFOREDELETE=0x800 +val SC_MULTILINEUNDOREDO=0x1000 +val SC_STARTACTION=0x2000 +val SC_MOD_CHANGEINDICATOR=0x4000 +val SC_MOD_CHANGELINESTATE=0x8000 +val SC_MOD_CHANGEMARGIN=0x10000 +val SC_MOD_CHANGEANNOTATION=0x20000 +val SC_MOD_CONTAINER=0x40000 +val SC_MOD_LEXERSTATE=0x80000 +val SC_MOD_INSERTCHECK=0x100000 +val SC_MOD_CHANGETABSTOPS=0x200000 +val SC_MODEVENTMASKALL=0x3FFFFF + +enu Update=SC_UPDATE_ +val SC_UPDATE_CONTENT=0x1 +val SC_UPDATE_SELECTION=0x2 +val SC_UPDATE_V_SCROLL=0x4 +val SC_UPDATE_H_SCROLL=0x8 + +# For compatibility, these go through the COMMAND notification rather than NOTIFY +# and should have had exactly the same values as the EN_* constants. +# Unfortunately the SETFOCUS and KILLFOCUS are flipped over from EN_* +# As clients depend on these constants, this will not be changed. +val SCEN_CHANGE=768 +val SCEN_SETFOCUS=512 +val SCEN_KILLFOCUS=256 + +# Symbolic key codes and modifier flags. +# ASCII and other printable characters below 256. +# Extended keys above 300. + +enu Keys=SCK_ +val SCK_DOWN=300 +val SCK_UP=301 +val SCK_LEFT=302 +val SCK_RIGHT=303 +val SCK_HOME=304 +val SCK_END=305 +val SCK_PRIOR=306 +val SCK_NEXT=307 +val SCK_DELETE=308 +val SCK_INSERT=309 +val SCK_ESCAPE=7 +val SCK_BACK=8 +val SCK_TAB=9 +val SCK_RETURN=13 +val SCK_ADD=310 +val SCK_SUBTRACT=311 +val SCK_DIVIDE=312 +val SCK_WIN=313 +val SCK_RWIN=314 +val SCK_MENU=315 + +enu KeyMod=SCMOD_ +val SCMOD_NORM=0 +val SCMOD_SHIFT=1 +val SCMOD_CTRL=2 +val SCMOD_ALT=4 +val SCMOD_SUPER=8 +val SCMOD_META=16 + +enu CompletionMethods=SC_AC_ +val SC_AC_FILLUP=1 +val SC_AC_DOUBLECLICK=2 +val SC_AC_TAB=3 +val SC_AC_NEWLINE=4 +val SC_AC_COMMAND=5 + +################################################ +# For SciLexer.h +enu Lexer=SCLEX_ +val SCLEX_CONTAINER=0 +val SCLEX_NULL=1 +val SCLEX_PYTHON=2 +val SCLEX_CPP=3 +val SCLEX_HTML=4 +val SCLEX_XML=5 +val SCLEX_PERL=6 +val SCLEX_SQL=7 +val SCLEX_VB=8 +val SCLEX_PROPERTIES=9 +val SCLEX_ERRORLIST=10 +val SCLEX_MAKEFILE=11 +val SCLEX_BATCH=12 +val SCLEX_XCODE=13 +val SCLEX_LATEX=14 +val SCLEX_LUA=15 +val SCLEX_DIFF=16 +val SCLEX_CONF=17 +val SCLEX_PASCAL=18 +val SCLEX_AVE=19 +val SCLEX_ADA=20 +val SCLEX_LISP=21 +val SCLEX_RUBY=22 +val SCLEX_EIFFEL=23 +val SCLEX_EIFFELKW=24 +val SCLEX_TCL=25 +val SCLEX_NNCRONTAB=26 +val SCLEX_BULLANT=27 +val SCLEX_VBSCRIPT=28 +val SCLEX_BAAN=31 +val SCLEX_MATLAB=32 +val SCLEX_SCRIPTOL=33 +val SCLEX_ASM=34 +val SCLEX_CPPNOCASE=35 +val SCLEX_FORTRAN=36 +val SCLEX_F77=37 +val SCLEX_CSS=38 +val SCLEX_POV=39 +val SCLEX_LOUT=40 +val SCLEX_ESCRIPT=41 +val SCLEX_PS=42 +val SCLEX_NSIS=43 +val SCLEX_MMIXAL=44 +val SCLEX_CLW=45 +val SCLEX_CLWNOCASE=46 +val SCLEX_LOT=47 +val SCLEX_YAML=48 +val SCLEX_TEX=49 +val SCLEX_METAPOST=50 +val SCLEX_POWERBASIC=51 +val SCLEX_FORTH=52 +val SCLEX_ERLANG=53 +val SCLEX_OCTAVE=54 +val SCLEX_MSSQL=55 +val SCLEX_VERILOG=56 +val SCLEX_KIX=57 +val SCLEX_GUI4CLI=58 +val SCLEX_SPECMAN=59 +val SCLEX_AU3=60 +val SCLEX_APDL=61 +val SCLEX_BASH=62 +val SCLEX_ASN1=63 +val SCLEX_VHDL=64 +val SCLEX_CAML=65 +val SCLEX_BLITZBASIC=66 +val SCLEX_PUREBASIC=67 +val SCLEX_HASKELL=68 +val SCLEX_PHPSCRIPT=69 +val SCLEX_TADS3=70 +val SCLEX_REBOL=71 +val SCLEX_SMALLTALK=72 +val SCLEX_FLAGSHIP=73 +val SCLEX_CSOUND=74 +val SCLEX_FREEBASIC=75 +val SCLEX_INNOSETUP=76 +val SCLEX_OPAL=77 +val SCLEX_SPICE=78 +val SCLEX_D=79 +val SCLEX_CMAKE=80 +val SCLEX_GAP=81 +val SCLEX_PLM=82 +val SCLEX_PROGRESS=83 +val SCLEX_ABAQUS=84 +val SCLEX_ASYMPTOTE=85 +val SCLEX_R=86 +val SCLEX_MAGIK=87 +val SCLEX_POWERSHELL=88 +val SCLEX_MYSQL=89 +val SCLEX_PO=90 +val SCLEX_TAL=91 +val SCLEX_COBOL=92 +val SCLEX_TACL=93 +val SCLEX_SORCUS=94 +val SCLEX_POWERPRO=95 +val SCLEX_NIMROD=96 +val SCLEX_SML=97 +val SCLEX_MARKDOWN=98 +val SCLEX_TXT2TAGS=99 +val SCLEX_A68K=100 +val SCLEX_MODULA=101 +val SCLEX_COFFEESCRIPT=102 +val SCLEX_TCMD=103 +val SCLEX_AVS=104 +val SCLEX_ECL=105 +val SCLEX_OSCRIPT=106 +val SCLEX_VISUALPROLOG=107 +val SCLEX_LITERATEHASKELL=108 +val SCLEX_STTXT=109 +val SCLEX_KVIRC=110 +val SCLEX_RUST=111 +val SCLEX_DMAP=112 +val SCLEX_AS=113 +val SCLEX_DMIS=114 +val SCLEX_REGISTRY=115 +val SCLEX_BIBTEX=116 +val SCLEX_SREC=117 +val SCLEX_IHEX=118 +val SCLEX_TEHEX=119 +val SCLEX_JSON=120 +val SCLEX_EDIFACT=121 +val SCLEX_INDENT=122 +val SCLEX_MAXIMA=123 +val SCLEX_STATA=124 +val SCLEX_SAS=125 +val SCLEX_LPEG=999 + +# When a lexer specifies its language as SCLEX_AUTOMATIC it receives a +# value assigned in sequence from SCLEX_AUTOMATIC+1. +val SCLEX_AUTOMATIC=1000 +# Lexical states for SCLEX_PYTHON +lex Python=SCLEX_PYTHON SCE_P_ +lex Nimrod=SCLEX_NIMROD SCE_P_ +val SCE_P_DEFAULT=0 +val SCE_P_COMMENTLINE=1 +val SCE_P_NUMBER=2 +val SCE_P_STRING=3 +val SCE_P_CHARACTER=4 +val SCE_P_WORD=5 +val SCE_P_TRIPLE=6 +val SCE_P_TRIPLEDOUBLE=7 +val SCE_P_CLASSNAME=8 +val SCE_P_DEFNAME=9 +val SCE_P_OPERATOR=10 +val SCE_P_IDENTIFIER=11 +val SCE_P_COMMENTBLOCK=12 +val SCE_P_STRINGEOL=13 +val SCE_P_WORD2=14 +val SCE_P_DECORATOR=15 +val SCE_P_FSTRING=16 +val SCE_P_FCHARACTER=17 +val SCE_P_FTRIPLE=18 +val SCE_P_FTRIPLEDOUBLE=19 +# Lexical states for SCLEX_CPP +# Lexical states for SCLEX_BULLANT +# Lexical states for SCLEX_COBOL +# Lexical states for SCLEX_TACL +# Lexical states for SCLEX_TAL +lex Cpp=SCLEX_CPP SCE_C_ +lex BullAnt=SCLEX_BULLANT SCE_C_ +lex COBOL=SCLEX_COBOL SCE_C_ +lex TACL=SCLEX_TACL SCE_C_ +lex TAL=SCLEX_TAL SCE_C_ +val SCE_C_DEFAULT=0 +val SCE_C_COMMENT=1 +val SCE_C_COMMENTLINE=2 +val SCE_C_COMMENTDOC=3 +val SCE_C_NUMBER=4 +val SCE_C_WORD=5 +val SCE_C_STRING=6 +val SCE_C_CHARACTER=7 +val SCE_C_UUID=8 +val SCE_C_PREPROCESSOR=9 +val SCE_C_OPERATOR=10 +val SCE_C_IDENTIFIER=11 +val SCE_C_STRINGEOL=12 +val SCE_C_VERBATIM=13 +val SCE_C_REGEX=14 +val SCE_C_COMMENTLINEDOC=15 +val SCE_C_WORD2=16 +val SCE_C_COMMENTDOCKEYWORD=17 +val SCE_C_COMMENTDOCKEYWORDERROR=18 +val SCE_C_GLOBALCLASS=19 +val SCE_C_STRINGRAW=20 +val SCE_C_TRIPLEVERBATIM=21 +val SCE_C_HASHQUOTEDSTRING=22 +val SCE_C_PREPROCESSORCOMMENT=23 +val SCE_C_PREPROCESSORCOMMENTDOC=24 +val SCE_C_USERLITERAL=25 +val SCE_C_TASKMARKER=26 +val SCE_C_ESCAPESEQUENCE=27 +# Lexical states for SCLEX_D +lex D=SCLEX_D SCE_D_ +val SCE_D_DEFAULT=0 +val SCE_D_COMMENT=1 +val SCE_D_COMMENTLINE=2 +val SCE_D_COMMENTDOC=3 +val SCE_D_COMMENTNESTED=4 +val SCE_D_NUMBER=5 +val SCE_D_WORD=6 +val SCE_D_WORD2=7 +val SCE_D_WORD3=8 +val SCE_D_TYPEDEF=9 +val SCE_D_STRING=10 +val SCE_D_STRINGEOL=11 +val SCE_D_CHARACTER=12 +val SCE_D_OPERATOR=13 +val SCE_D_IDENTIFIER=14 +val SCE_D_COMMENTLINEDOC=15 +val SCE_D_COMMENTDOCKEYWORD=16 +val SCE_D_COMMENTDOCKEYWORDERROR=17 +val SCE_D_STRINGB=18 +val SCE_D_STRINGR=19 +val SCE_D_WORD5=20 +val SCE_D_WORD6=21 +val SCE_D_WORD7=22 +# Lexical states for SCLEX_TCL +lex TCL=SCLEX_TCL SCE_TCL_ +val SCE_TCL_DEFAULT=0 +val SCE_TCL_COMMENT=1 +val SCE_TCL_COMMENTLINE=2 +val SCE_TCL_NUMBER=3 +val SCE_TCL_WORD_IN_QUOTE=4 +val SCE_TCL_IN_QUOTE=5 +val SCE_TCL_OPERATOR=6 +val SCE_TCL_IDENTIFIER=7 +val SCE_TCL_SUBSTITUTION=8 +val SCE_TCL_SUB_BRACE=9 +val SCE_TCL_MODIFIER=10 +val SCE_TCL_EXPAND=11 +val SCE_TCL_WORD=12 +val SCE_TCL_WORD2=13 +val SCE_TCL_WORD3=14 +val SCE_TCL_WORD4=15 +val SCE_TCL_WORD5=16 +val SCE_TCL_WORD6=17 +val SCE_TCL_WORD7=18 +val SCE_TCL_WORD8=19 +val SCE_TCL_COMMENT_BOX=20 +val SCE_TCL_BLOCK_COMMENT=21 +# Lexical states for SCLEX_HTML, SCLEX_XML +lex HTML=SCLEX_HTML SCE_H_ SCE_HJ_ SCE_HJA_ SCE_HB_ SCE_HBA_ SCE_HP_ SCE_HPHP_ SCE_HPA_ +lex XML=SCLEX_XML SCE_H_ SCE_HJ_ SCE_HJA_ SCE_HB_ SCE_HBA_ SCE_HP_ SCE_HPHP_ SCE_HPA_ +val SCE_H_DEFAULT=0 +val SCE_H_TAG=1 +val SCE_H_TAGUNKNOWN=2 +val SCE_H_ATTRIBUTE=3 +val SCE_H_ATTRIBUTEUNKNOWN=4 +val SCE_H_NUMBER=5 +val SCE_H_DOUBLESTRING=6 +val SCE_H_SINGLESTRING=7 +val SCE_H_OTHER=8 +val SCE_H_COMMENT=9 +val SCE_H_ENTITY=10 +# XML and ASP +val SCE_H_TAGEND=11 +val SCE_H_XMLSTART=12 +val SCE_H_XMLEND=13 +val SCE_H_SCRIPT=14 +val SCE_H_ASP=15 +val SCE_H_ASPAT=16 +val SCE_H_CDATA=17 +val SCE_H_QUESTION=18 +# More HTML +val SCE_H_VALUE=19 +# X-Code +val SCE_H_XCCOMMENT=20 +# SGML +val SCE_H_SGML_DEFAULT=21 +val SCE_H_SGML_COMMAND=22 +val SCE_H_SGML_1ST_PARAM=23 +val SCE_H_SGML_DOUBLESTRING=24 +val SCE_H_SGML_SIMPLESTRING=25 +val SCE_H_SGML_ERROR=26 +val SCE_H_SGML_SPECIAL=27 +val SCE_H_SGML_ENTITY=28 +val SCE_H_SGML_COMMENT=29 +val SCE_H_SGML_1ST_PARAM_COMMENT=30 +val SCE_H_SGML_BLOCK_DEFAULT=31 +# Embedded Javascript +val SCE_HJ_START=40 +val SCE_HJ_DEFAULT=41 +val SCE_HJ_COMMENT=42 +val SCE_HJ_COMMENTLINE=43 +val SCE_HJ_COMMENTDOC=44 +val SCE_HJ_NUMBER=45 +val SCE_HJ_WORD=46 +val SCE_HJ_KEYWORD=47 +val SCE_HJ_DOUBLESTRING=48 +val SCE_HJ_SINGLESTRING=49 +val SCE_HJ_SYMBOLS=50 +val SCE_HJ_STRINGEOL=51 +val SCE_HJ_REGEX=52 +# ASP Javascript +val SCE_HJA_START=55 +val SCE_HJA_DEFAULT=56 +val SCE_HJA_COMMENT=57 +val SCE_HJA_COMMENTLINE=58 +val SCE_HJA_COMMENTDOC=59 +val SCE_HJA_NUMBER=60 +val SCE_HJA_WORD=61 +val SCE_HJA_KEYWORD=62 +val SCE_HJA_DOUBLESTRING=63 +val SCE_HJA_SINGLESTRING=64 +val SCE_HJA_SYMBOLS=65 +val SCE_HJA_STRINGEOL=66 +val SCE_HJA_REGEX=67 +# Embedded VBScript +val SCE_HB_START=70 +val SCE_HB_DEFAULT=71 +val SCE_HB_COMMENTLINE=72 +val SCE_HB_NUMBER=73 +val SCE_HB_WORD=74 +val SCE_HB_STRING=75 +val SCE_HB_IDENTIFIER=76 +val SCE_HB_STRINGEOL=77 +# ASP VBScript +val SCE_HBA_START=80 +val SCE_HBA_DEFAULT=81 +val SCE_HBA_COMMENTLINE=82 +val SCE_HBA_NUMBER=83 +val SCE_HBA_WORD=84 +val SCE_HBA_STRING=85 +val SCE_HBA_IDENTIFIER=86 +val SCE_HBA_STRINGEOL=87 +# Embedded Python +val SCE_HP_START=90 +val SCE_HP_DEFAULT=91 +val SCE_HP_COMMENTLINE=92 +val SCE_HP_NUMBER=93 +val SCE_HP_STRING=94 +val SCE_HP_CHARACTER=95 +val SCE_HP_WORD=96 +val SCE_HP_TRIPLE=97 +val SCE_HP_TRIPLEDOUBLE=98 +val SCE_HP_CLASSNAME=99 +val SCE_HP_DEFNAME=100 +val SCE_HP_OPERATOR=101 +val SCE_HP_IDENTIFIER=102 +# PHP +val SCE_HPHP_COMPLEX_VARIABLE=104 +# ASP Python +val SCE_HPA_START=105 +val SCE_HPA_DEFAULT=106 +val SCE_HPA_COMMENTLINE=107 +val SCE_HPA_NUMBER=108 +val SCE_HPA_STRING=109 +val SCE_HPA_CHARACTER=110 +val SCE_HPA_WORD=111 +val SCE_HPA_TRIPLE=112 +val SCE_HPA_TRIPLEDOUBLE=113 +val SCE_HPA_CLASSNAME=114 +val SCE_HPA_DEFNAME=115 +val SCE_HPA_OPERATOR=116 +val SCE_HPA_IDENTIFIER=117 +# PHP +val SCE_HPHP_DEFAULT=118 +val SCE_HPHP_HSTRING=119 +val SCE_HPHP_SIMPLESTRING=120 +val SCE_HPHP_WORD=121 +val SCE_HPHP_NUMBER=122 +val SCE_HPHP_VARIABLE=123 +val SCE_HPHP_COMMENT=124 +val SCE_HPHP_COMMENTLINE=125 +val SCE_HPHP_HSTRING_VARIABLE=126 +val SCE_HPHP_OPERATOR=127 +# Lexical states for SCLEX_PERL +lex Perl=SCLEX_PERL SCE_PL_ +val SCE_PL_DEFAULT=0 +val SCE_PL_ERROR=1 +val SCE_PL_COMMENTLINE=2 +val SCE_PL_POD=3 +val SCE_PL_NUMBER=4 +val SCE_PL_WORD=5 +val SCE_PL_STRING=6 +val SCE_PL_CHARACTER=7 +val SCE_PL_PUNCTUATION=8 +val SCE_PL_PREPROCESSOR=9 +val SCE_PL_OPERATOR=10 +val SCE_PL_IDENTIFIER=11 +val SCE_PL_SCALAR=12 +val SCE_PL_ARRAY=13 +val SCE_PL_HASH=14 +val SCE_PL_SYMBOLTABLE=15 +val SCE_PL_VARIABLE_INDEXER=16 +val SCE_PL_REGEX=17 +val SCE_PL_REGSUBST=18 +val SCE_PL_LONGQUOTE=19 +val SCE_PL_BACKTICKS=20 +val SCE_PL_DATASECTION=21 +val SCE_PL_HERE_DELIM=22 +val SCE_PL_HERE_Q=23 +val SCE_PL_HERE_QQ=24 +val SCE_PL_HERE_QX=25 +val SCE_PL_STRING_Q=26 +val SCE_PL_STRING_QQ=27 +val SCE_PL_STRING_QX=28 +val SCE_PL_STRING_QR=29 +val SCE_PL_STRING_QW=30 +val SCE_PL_POD_VERB=31 +val SCE_PL_SUB_PROTOTYPE=40 +val SCE_PL_FORMAT_IDENT=41 +val SCE_PL_FORMAT=42 +val SCE_PL_STRING_VAR=43 +val SCE_PL_XLAT=44 +val SCE_PL_REGEX_VAR=54 +val SCE_PL_REGSUBST_VAR=55 +val SCE_PL_BACKTICKS_VAR=57 +val SCE_PL_HERE_QQ_VAR=61 +val SCE_PL_HERE_QX_VAR=62 +val SCE_PL_STRING_QQ_VAR=64 +val SCE_PL_STRING_QX_VAR=65 +val SCE_PL_STRING_QR_VAR=66 +# Lexical states for SCLEX_RUBY +lex Ruby=SCLEX_RUBY SCE_RB_ +val SCE_RB_DEFAULT=0 +val SCE_RB_ERROR=1 +val SCE_RB_COMMENTLINE=2 +val SCE_RB_POD=3 +val SCE_RB_NUMBER=4 +val SCE_RB_WORD=5 +val SCE_RB_STRING=6 +val SCE_RB_CHARACTER=7 +val SCE_RB_CLASSNAME=8 +val SCE_RB_DEFNAME=9 +val SCE_RB_OPERATOR=10 +val SCE_RB_IDENTIFIER=11 +val SCE_RB_REGEX=12 +val SCE_RB_GLOBAL=13 +val SCE_RB_SYMBOL=14 +val SCE_RB_MODULE_NAME=15 +val SCE_RB_INSTANCE_VAR=16 +val SCE_RB_CLASS_VAR=17 +val SCE_RB_BACKTICKS=18 +val SCE_RB_DATASECTION=19 +val SCE_RB_HERE_DELIM=20 +val SCE_RB_HERE_Q=21 +val SCE_RB_HERE_QQ=22 +val SCE_RB_HERE_QX=23 +val SCE_RB_STRING_Q=24 +val SCE_RB_STRING_QQ=25 +val SCE_RB_STRING_QX=26 +val SCE_RB_STRING_QR=27 +val SCE_RB_STRING_QW=28 +val SCE_RB_WORD_DEMOTED=29 +val SCE_RB_STDIN=30 +val SCE_RB_STDOUT=31 +val SCE_RB_STDERR=40 +val SCE_RB_UPPER_BOUND=41 +# Lexical states for SCLEX_VB, SCLEX_VBSCRIPT, SCLEX_POWERBASIC, SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC +lex VB=SCLEX_VB SCE_B_ +lex VBScript=SCLEX_VBSCRIPT SCE_B_ +lex PowerBasic=SCLEX_POWERBASIC SCE_B_ +lex BlitzBasic=SCLEX_BLITZBASIC SCE_B_ +lex PureBasic=SCLEX_PUREBASIC SCE_B_ +lex FreeBasic=SCLEX_FREEBASIC SCE_B_ +val SCE_B_DEFAULT=0 +val SCE_B_COMMENT=1 +val SCE_B_NUMBER=2 +val SCE_B_KEYWORD=3 +val SCE_B_STRING=4 +val SCE_B_PREPROCESSOR=5 +val SCE_B_OPERATOR=6 +val SCE_B_IDENTIFIER=7 +val SCE_B_DATE=8 +val SCE_B_STRINGEOL=9 +val SCE_B_KEYWORD2=10 +val SCE_B_KEYWORD3=11 +val SCE_B_KEYWORD4=12 +val SCE_B_CONSTANT=13 +val SCE_B_ASM=14 +val SCE_B_LABEL=15 +val SCE_B_ERROR=16 +val SCE_B_HEXNUMBER=17 +val SCE_B_BINNUMBER=18 +val SCE_B_COMMENTBLOCK=19 +val SCE_B_DOCLINE=20 +val SCE_B_DOCBLOCK=21 +val SCE_B_DOCKEYWORD=22 +# Lexical states for SCLEX_PROPERTIES +lex Properties=SCLEX_PROPERTIES SCE_PROPS_ +val SCE_PROPS_DEFAULT=0 +val SCE_PROPS_COMMENT=1 +val SCE_PROPS_SECTION=2 +val SCE_PROPS_ASSIGNMENT=3 +val SCE_PROPS_DEFVAL=4 +val SCE_PROPS_KEY=5 +# Lexical states for SCLEX_LATEX +lex LaTeX=SCLEX_LATEX SCE_L_ +val SCE_L_DEFAULT=0 +val SCE_L_COMMAND=1 +val SCE_L_TAG=2 +val SCE_L_MATH=3 +val SCE_L_COMMENT=4 +val SCE_L_TAG2=5 +val SCE_L_MATH2=6 +val SCE_L_COMMENT2=7 +val SCE_L_VERBATIM=8 +val SCE_L_SHORTCMD=9 +val SCE_L_SPECIAL=10 +val SCE_L_CMDOPT=11 +val SCE_L_ERROR=12 +# Lexical states for SCLEX_LUA +lex Lua=SCLEX_LUA SCE_LUA_ +val SCE_LUA_DEFAULT=0 +val SCE_LUA_COMMENT=1 +val SCE_LUA_COMMENTLINE=2 +val SCE_LUA_COMMENTDOC=3 +val SCE_LUA_NUMBER=4 +val SCE_LUA_WORD=5 +val SCE_LUA_STRING=6 +val SCE_LUA_CHARACTER=7 +val SCE_LUA_LITERALSTRING=8 +val SCE_LUA_PREPROCESSOR=9 +val SCE_LUA_OPERATOR=10 +val SCE_LUA_IDENTIFIER=11 +val SCE_LUA_STRINGEOL=12 +val SCE_LUA_WORD2=13 +val SCE_LUA_WORD3=14 +val SCE_LUA_WORD4=15 +val SCE_LUA_WORD5=16 +val SCE_LUA_WORD6=17 +val SCE_LUA_WORD7=18 +val SCE_LUA_WORD8=19 +val SCE_LUA_LABEL=20 +# Lexical states for SCLEX_ERRORLIST +lex ErrorList=SCLEX_ERRORLIST SCE_ERR_ +val SCE_ERR_DEFAULT=0 +val SCE_ERR_PYTHON=1 +val SCE_ERR_GCC=2 +val SCE_ERR_MS=3 +val SCE_ERR_CMD=4 +val SCE_ERR_BORLAND=5 +val SCE_ERR_PERL=6 +val SCE_ERR_NET=7 +val SCE_ERR_LUA=8 +val SCE_ERR_CTAG=9 +val SCE_ERR_DIFF_CHANGED=10 +val SCE_ERR_DIFF_ADDITION=11 +val SCE_ERR_DIFF_DELETION=12 +val SCE_ERR_DIFF_MESSAGE=13 +val SCE_ERR_PHP=14 +val SCE_ERR_ELF=15 +val SCE_ERR_IFC=16 +val SCE_ERR_IFORT=17 +val SCE_ERR_ABSF=18 +val SCE_ERR_TIDY=19 +val SCE_ERR_JAVA_STACK=20 +val SCE_ERR_VALUE=21 +val SCE_ERR_GCC_INCLUDED_FROM=22 +val SCE_ERR_ESCSEQ=23 +val SCE_ERR_ESCSEQ_UNKNOWN=24 +val SCE_ERR_ES_BLACK=40 +val SCE_ERR_ES_RED=41 +val SCE_ERR_ES_GREEN=42 +val SCE_ERR_ES_BROWN=43 +val SCE_ERR_ES_BLUE=44 +val SCE_ERR_ES_MAGENTA=45 +val SCE_ERR_ES_CYAN=46 +val SCE_ERR_ES_GRAY=47 +val SCE_ERR_ES_DARK_GRAY=48 +val SCE_ERR_ES_BRIGHT_RED=49 +val SCE_ERR_ES_BRIGHT_GREEN=50 +val SCE_ERR_ES_YELLOW=51 +val SCE_ERR_ES_BRIGHT_BLUE=52 +val SCE_ERR_ES_BRIGHT_MAGENTA=53 +val SCE_ERR_ES_BRIGHT_CYAN=54 +val SCE_ERR_ES_WHITE=55 +# Lexical states for SCLEX_BATCH +lex Batch=SCLEX_BATCH SCE_BAT_ +val SCE_BAT_DEFAULT=0 +val SCE_BAT_COMMENT=1 +val SCE_BAT_WORD=2 +val SCE_BAT_LABEL=3 +val SCE_BAT_HIDE=4 +val SCE_BAT_COMMAND=5 +val SCE_BAT_IDENTIFIER=6 +val SCE_BAT_OPERATOR=7 +# Lexical states for SCLEX_TCMD +lex TCMD=SCLEX_TCMD SCE_TCMD_ +val SCE_TCMD_DEFAULT=0 +val SCE_TCMD_COMMENT=1 +val SCE_TCMD_WORD=2 +val SCE_TCMD_LABEL=3 +val SCE_TCMD_HIDE=4 +val SCE_TCMD_COMMAND=5 +val SCE_TCMD_IDENTIFIER=6 +val SCE_TCMD_OPERATOR=7 +val SCE_TCMD_ENVIRONMENT=8 +val SCE_TCMD_EXPANSION=9 +val SCE_TCMD_CLABEL=10 +# Lexical states for SCLEX_MAKEFILE +lex MakeFile=SCLEX_MAKEFILE SCE_MAKE_ +val SCE_MAKE_DEFAULT=0 +val SCE_MAKE_COMMENT=1 +val SCE_MAKE_PREPROCESSOR=2 +val SCE_MAKE_IDENTIFIER=3 +val SCE_MAKE_OPERATOR=4 +val SCE_MAKE_TARGET=5 +val SCE_MAKE_IDEOL=9 +# Lexical states for SCLEX_DIFF +lex Diff=SCLEX_DIFF SCE_DIFF_ +val SCE_DIFF_DEFAULT=0 +val SCE_DIFF_COMMENT=1 +val SCE_DIFF_COMMAND=2 +val SCE_DIFF_HEADER=3 +val SCE_DIFF_POSITION=4 +val SCE_DIFF_DELETED=5 +val SCE_DIFF_ADDED=6 +val SCE_DIFF_CHANGED=7 +val SCE_DIFF_PATCH_ADD=8 +val SCE_DIFF_PATCH_DELETE=9 +val SCE_DIFF_REMOVED_PATCH_ADD=10 +val SCE_DIFF_REMOVED_PATCH_DELETE=11 +# Lexical states for SCLEX_CONF (Apache Configuration Files Lexer) +lex Conf=SCLEX_CONF SCE_CONF_ +val SCE_CONF_DEFAULT=0 +val SCE_CONF_COMMENT=1 +val SCE_CONF_NUMBER=2 +val SCE_CONF_IDENTIFIER=3 +val SCE_CONF_EXTENSION=4 +val SCE_CONF_PARAMETER=5 +val SCE_CONF_STRING=6 +val SCE_CONF_OPERATOR=7 +val SCE_CONF_IP=8 +val SCE_CONF_DIRECTIVE=9 +# Lexical states for SCLEX_AVE, Avenue +lex Avenue=SCLEX_AVE SCE_AVE_ +val SCE_AVE_DEFAULT=0 +val SCE_AVE_COMMENT=1 +val SCE_AVE_NUMBER=2 +val SCE_AVE_WORD=3 +val SCE_AVE_STRING=6 +val SCE_AVE_ENUM=7 +val SCE_AVE_STRINGEOL=8 +val SCE_AVE_IDENTIFIER=9 +val SCE_AVE_OPERATOR=10 +val SCE_AVE_WORD1=11 +val SCE_AVE_WORD2=12 +val SCE_AVE_WORD3=13 +val SCE_AVE_WORD4=14 +val SCE_AVE_WORD5=15 +val SCE_AVE_WORD6=16 +# Lexical states for SCLEX_ADA +lex Ada=SCLEX_ADA SCE_ADA_ +val SCE_ADA_DEFAULT=0 +val SCE_ADA_WORD=1 +val SCE_ADA_IDENTIFIER=2 +val SCE_ADA_NUMBER=3 +val SCE_ADA_DELIMITER=4 +val SCE_ADA_CHARACTER=5 +val SCE_ADA_CHARACTEREOL=6 +val SCE_ADA_STRING=7 +val SCE_ADA_STRINGEOL=8 +val SCE_ADA_LABEL=9 +val SCE_ADA_COMMENTLINE=10 +val SCE_ADA_ILLEGAL=11 +# Lexical states for SCLEX_BAAN +lex Baan=SCLEX_BAAN SCE_BAAN_ +val SCE_BAAN_DEFAULT=0 +val SCE_BAAN_COMMENT=1 +val SCE_BAAN_COMMENTDOC=2 +val SCE_BAAN_NUMBER=3 +val SCE_BAAN_WORD=4 +val SCE_BAAN_STRING=5 +val SCE_BAAN_PREPROCESSOR=6 +val SCE_BAAN_OPERATOR=7 +val SCE_BAAN_IDENTIFIER=8 +val SCE_BAAN_STRINGEOL=9 +val SCE_BAAN_WORD2=10 +val SCE_BAAN_WORD3=11 +val SCE_BAAN_WORD4=12 +val SCE_BAAN_WORD5=13 +val SCE_BAAN_WORD6=14 +val SCE_BAAN_WORD7=15 +val SCE_BAAN_WORD8=16 +val SCE_BAAN_WORD9=17 +val SCE_BAAN_TABLEDEF=18 +val SCE_BAAN_TABLESQL=19 +val SCE_BAAN_FUNCTION=20 +val SCE_BAAN_DOMDEF=21 +val SCE_BAAN_FUNCDEF=22 +val SCE_BAAN_OBJECTDEF=23 +val SCE_BAAN_DEFINEDEF=24 +# Lexical states for SCLEX_LISP +lex Lisp=SCLEX_LISP SCE_LISP_ +val SCE_LISP_DEFAULT=0 +val SCE_LISP_COMMENT=1 +val SCE_LISP_NUMBER=2 +val SCE_LISP_KEYWORD=3 +val SCE_LISP_KEYWORD_KW=4 +val SCE_LISP_SYMBOL=5 +val SCE_LISP_STRING=6 +val SCE_LISP_STRINGEOL=8 +val SCE_LISP_IDENTIFIER=9 +val SCE_LISP_OPERATOR=10 +val SCE_LISP_SPECIAL=11 +val SCE_LISP_MULTI_COMMENT=12 +# Lexical states for SCLEX_EIFFEL and SCLEX_EIFFELKW +lex Eiffel=SCLEX_EIFFEL SCE_EIFFEL_ +lex EiffelKW=SCLEX_EIFFELKW SCE_EIFFEL_ +val SCE_EIFFEL_DEFAULT=0 +val SCE_EIFFEL_COMMENTLINE=1 +val SCE_EIFFEL_NUMBER=2 +val SCE_EIFFEL_WORD=3 +val SCE_EIFFEL_STRING=4 +val SCE_EIFFEL_CHARACTER=5 +val SCE_EIFFEL_OPERATOR=6 +val SCE_EIFFEL_IDENTIFIER=7 +val SCE_EIFFEL_STRINGEOL=8 +# Lexical states for SCLEX_NNCRONTAB (nnCron crontab Lexer) +lex NNCronTab=SCLEX_NNCRONTAB SCE_NNCRONTAB_ +val SCE_NNCRONTAB_DEFAULT=0 +val SCE_NNCRONTAB_COMMENT=1 +val SCE_NNCRONTAB_TASK=2 +val SCE_NNCRONTAB_SECTION=3 +val SCE_NNCRONTAB_KEYWORD=4 +val SCE_NNCRONTAB_MODIFIER=5 +val SCE_NNCRONTAB_ASTERISK=6 +val SCE_NNCRONTAB_NUMBER=7 +val SCE_NNCRONTAB_STRING=8 +val SCE_NNCRONTAB_ENVIRONMENT=9 +val SCE_NNCRONTAB_IDENTIFIER=10 +# Lexical states for SCLEX_FORTH (Forth Lexer) +lex Forth=SCLEX_FORTH SCE_FORTH_ +val SCE_FORTH_DEFAULT=0 +val SCE_FORTH_COMMENT=1 +val SCE_FORTH_COMMENT_ML=2 +val SCE_FORTH_IDENTIFIER=3 +val SCE_FORTH_CONTROL=4 +val SCE_FORTH_KEYWORD=5 +val SCE_FORTH_DEFWORD=6 +val SCE_FORTH_PREWORD1=7 +val SCE_FORTH_PREWORD2=8 +val SCE_FORTH_NUMBER=9 +val SCE_FORTH_STRING=10 +val SCE_FORTH_LOCALE=11 +# Lexical states for SCLEX_MATLAB +lex MatLab=SCLEX_MATLAB SCE_MATLAB_ +val SCE_MATLAB_DEFAULT=0 +val SCE_MATLAB_COMMENT=1 +val SCE_MATLAB_COMMAND=2 +val SCE_MATLAB_NUMBER=3 +val SCE_MATLAB_KEYWORD=4 +# single quoted string +val SCE_MATLAB_STRING=5 +val SCE_MATLAB_OPERATOR=6 +val SCE_MATLAB_IDENTIFIER=7 +val SCE_MATLAB_DOUBLEQUOTESTRING=8 +# Lexical states for SCLEX_MAXIMA +lex Maxima=SCLEX_MAXIMA SCE_MAXIMA_ +val SCE_MAXIMA_OPERATOR=0 +val SCE_MAXIMA_COMMANDENDING=1 +val SCE_MAXIMA_COMMENT=2 +val SCE_MAXIMA_NUMBER=3 +val SCE_MAXIMA_STRING=4 +val SCE_MAXIMA_COMMAND=5 +val SCE_MAXIMA_VARIABLE=6 +val SCE_MAXIMA_UNKNOWN=7 +# Lexical states for SCLEX_SCRIPTOL +lex Sol=SCLEX_SCRIPTOL SCE_SCRIPTOL_ +val SCE_SCRIPTOL_DEFAULT=0 +val SCE_SCRIPTOL_WHITE=1 +val SCE_SCRIPTOL_COMMENTLINE=2 +val SCE_SCRIPTOL_PERSISTENT=3 +val SCE_SCRIPTOL_CSTYLE=4 +val SCE_SCRIPTOL_COMMENTBLOCK=5 +val SCE_SCRIPTOL_NUMBER=6 +val SCE_SCRIPTOL_STRING=7 +val SCE_SCRIPTOL_CHARACTER=8 +val SCE_SCRIPTOL_STRINGEOL=9 +val SCE_SCRIPTOL_KEYWORD=10 +val SCE_SCRIPTOL_OPERATOR=11 +val SCE_SCRIPTOL_IDENTIFIER=12 +val SCE_SCRIPTOL_TRIPLE=13 +val SCE_SCRIPTOL_CLASSNAME=14 +val SCE_SCRIPTOL_PREPROCESSOR=15 +# Lexical states for SCLEX_ASM, SCLEX_AS +lex Asm=SCLEX_ASM SCE_ASM_ +lex As=SCLEX_AS SCE_ASM_ +val SCE_ASM_DEFAULT=0 +val SCE_ASM_COMMENT=1 +val SCE_ASM_NUMBER=2 +val SCE_ASM_STRING=3 +val SCE_ASM_OPERATOR=4 +val SCE_ASM_IDENTIFIER=5 +val SCE_ASM_CPUINSTRUCTION=6 +val SCE_ASM_MATHINSTRUCTION=7 +val SCE_ASM_REGISTER=8 +val SCE_ASM_DIRECTIVE=9 +val SCE_ASM_DIRECTIVEOPERAND=10 +val SCE_ASM_COMMENTBLOCK=11 +val SCE_ASM_CHARACTER=12 +val SCE_ASM_STRINGEOL=13 +val SCE_ASM_EXTINSTRUCTION=14 +val SCE_ASM_COMMENTDIRECTIVE=15 +# Lexical states for SCLEX_FORTRAN +lex Fortran=SCLEX_FORTRAN SCE_F_ +lex F77=SCLEX_F77 SCE_F_ +val SCE_F_DEFAULT=0 +val SCE_F_COMMENT=1 +val SCE_F_NUMBER=2 +val SCE_F_STRING1=3 +val SCE_F_STRING2=4 +val SCE_F_STRINGEOL=5 +val SCE_F_OPERATOR=6 +val SCE_F_IDENTIFIER=7 +val SCE_F_WORD=8 +val SCE_F_WORD2=9 +val SCE_F_WORD3=10 +val SCE_F_PREPROCESSOR=11 +val SCE_F_OPERATOR2=12 +val SCE_F_LABEL=13 +val SCE_F_CONTINUATION=14 +# Lexical states for SCLEX_CSS +lex CSS=SCLEX_CSS SCE_CSS_ +val SCE_CSS_DEFAULT=0 +val SCE_CSS_TAG=1 +val SCE_CSS_CLASS=2 +val SCE_CSS_PSEUDOCLASS=3 +val SCE_CSS_UNKNOWN_PSEUDOCLASS=4 +val SCE_CSS_OPERATOR=5 +val SCE_CSS_IDENTIFIER=6 +val SCE_CSS_UNKNOWN_IDENTIFIER=7 +val SCE_CSS_VALUE=8 +val SCE_CSS_COMMENT=9 +val SCE_CSS_ID=10 +val SCE_CSS_IMPORTANT=11 +val SCE_CSS_DIRECTIVE=12 +val SCE_CSS_DOUBLESTRING=13 +val SCE_CSS_SINGLESTRING=14 +val SCE_CSS_IDENTIFIER2=15 +val SCE_CSS_ATTRIBUTE=16 +val SCE_CSS_IDENTIFIER3=17 +val SCE_CSS_PSEUDOELEMENT=18 +val SCE_CSS_EXTENDED_IDENTIFIER=19 +val SCE_CSS_EXTENDED_PSEUDOCLASS=20 +val SCE_CSS_EXTENDED_PSEUDOELEMENT=21 +val SCE_CSS_MEDIA=22 +val SCE_CSS_VARIABLE=23 +# Lexical states for SCLEX_POV +lex POV=SCLEX_POV SCE_POV_ +val SCE_POV_DEFAULT=0 +val SCE_POV_COMMENT=1 +val SCE_POV_COMMENTLINE=2 +val SCE_POV_NUMBER=3 +val SCE_POV_OPERATOR=4 +val SCE_POV_IDENTIFIER=5 +val SCE_POV_STRING=6 +val SCE_POV_STRINGEOL=7 +val SCE_POV_DIRECTIVE=8 +val SCE_POV_BADDIRECTIVE=9 +val SCE_POV_WORD2=10 +val SCE_POV_WORD3=11 +val SCE_POV_WORD4=12 +val SCE_POV_WORD5=13 +val SCE_POV_WORD6=14 +val SCE_POV_WORD7=15 +val SCE_POV_WORD8=16 +# Lexical states for SCLEX_LOUT +lex LOUT=SCLEX_LOUT SCE_LOUT_ +val SCE_LOUT_DEFAULT=0 +val SCE_LOUT_COMMENT=1 +val SCE_LOUT_NUMBER=2 +val SCE_LOUT_WORD=3 +val SCE_LOUT_WORD2=4 +val SCE_LOUT_WORD3=5 +val SCE_LOUT_WORD4=6 +val SCE_LOUT_STRING=7 +val SCE_LOUT_OPERATOR=8 +val SCE_LOUT_IDENTIFIER=9 +val SCE_LOUT_STRINGEOL=10 +# Lexical states for SCLEX_ESCRIPT +lex ESCRIPT=SCLEX_ESCRIPT SCE_ESCRIPT_ +val SCE_ESCRIPT_DEFAULT=0 +val SCE_ESCRIPT_COMMENT=1 +val SCE_ESCRIPT_COMMENTLINE=2 +val SCE_ESCRIPT_COMMENTDOC=3 +val SCE_ESCRIPT_NUMBER=4 +val SCE_ESCRIPT_WORD=5 +val SCE_ESCRIPT_STRING=6 +val SCE_ESCRIPT_OPERATOR=7 +val SCE_ESCRIPT_IDENTIFIER=8 +val SCE_ESCRIPT_BRACE=9 +val SCE_ESCRIPT_WORD2=10 +val SCE_ESCRIPT_WORD3=11 +# Lexical states for SCLEX_PS +lex PS=SCLEX_PS SCE_PS_ +val SCE_PS_DEFAULT=0 +val SCE_PS_COMMENT=1 +val SCE_PS_DSC_COMMENT=2 +val SCE_PS_DSC_VALUE=3 +val SCE_PS_NUMBER=4 +val SCE_PS_NAME=5 +val SCE_PS_KEYWORD=6 +val SCE_PS_LITERAL=7 +val SCE_PS_IMMEVAL=8 +val SCE_PS_PAREN_ARRAY=9 +val SCE_PS_PAREN_DICT=10 +val SCE_PS_PAREN_PROC=11 +val SCE_PS_TEXT=12 +val SCE_PS_HEXSTRING=13 +val SCE_PS_BASE85STRING=14 +val SCE_PS_BADSTRINGCHAR=15 +# Lexical states for SCLEX_NSIS +lex NSIS=SCLEX_NSIS SCE_NSIS_ +val SCE_NSIS_DEFAULT=0 +val SCE_NSIS_COMMENT=1 +val SCE_NSIS_STRINGDQ=2 +val SCE_NSIS_STRINGLQ=3 +val SCE_NSIS_STRINGRQ=4 +val SCE_NSIS_FUNCTION=5 +val SCE_NSIS_VARIABLE=6 +val SCE_NSIS_LABEL=7 +val SCE_NSIS_USERDEFINED=8 +val SCE_NSIS_SECTIONDEF=9 +val SCE_NSIS_SUBSECTIONDEF=10 +val SCE_NSIS_IFDEFINEDEF=11 +val SCE_NSIS_MACRODEF=12 +val SCE_NSIS_STRINGVAR=13 +val SCE_NSIS_NUMBER=14 +val SCE_NSIS_SECTIONGROUP=15 +val SCE_NSIS_PAGEEX=16 +val SCE_NSIS_FUNCTIONDEF=17 +val SCE_NSIS_COMMENTBOX=18 +# Lexical states for SCLEX_MMIXAL +lex MMIXAL=SCLEX_MMIXAL SCE_MMIXAL_ +val SCE_MMIXAL_LEADWS=0 +val SCE_MMIXAL_COMMENT=1 +val SCE_MMIXAL_LABEL=2 +val SCE_MMIXAL_OPCODE=3 +val SCE_MMIXAL_OPCODE_PRE=4 +val SCE_MMIXAL_OPCODE_VALID=5 +val SCE_MMIXAL_OPCODE_UNKNOWN=6 +val SCE_MMIXAL_OPCODE_POST=7 +val SCE_MMIXAL_OPERANDS=8 +val SCE_MMIXAL_NUMBER=9 +val SCE_MMIXAL_REF=10 +val SCE_MMIXAL_CHAR=11 +val SCE_MMIXAL_STRING=12 +val SCE_MMIXAL_REGISTER=13 +val SCE_MMIXAL_HEX=14 +val SCE_MMIXAL_OPERATOR=15 +val SCE_MMIXAL_SYMBOL=16 +val SCE_MMIXAL_INCLUDE=17 +# Lexical states for SCLEX_CLW +lex Clarion=SCLEX_CLW SCE_CLW_ +val SCE_CLW_DEFAULT=0 +val SCE_CLW_LABEL=1 +val SCE_CLW_COMMENT=2 +val SCE_CLW_STRING=3 +val SCE_CLW_USER_IDENTIFIER=4 +val SCE_CLW_INTEGER_CONSTANT=5 +val SCE_CLW_REAL_CONSTANT=6 +val SCE_CLW_PICTURE_STRING=7 +val SCE_CLW_KEYWORD=8 +val SCE_CLW_COMPILER_DIRECTIVE=9 +val SCE_CLW_RUNTIME_EXPRESSIONS=10 +val SCE_CLW_BUILTIN_PROCEDURES_FUNCTION=11 +val SCE_CLW_STRUCTURE_DATA_TYPE=12 +val SCE_CLW_ATTRIBUTE=13 +val SCE_CLW_STANDARD_EQUATE=14 +val SCE_CLW_ERROR=15 +val SCE_CLW_DEPRECATED=16 +# Lexical states for SCLEX_LOT +lex LOT=SCLEX_LOT SCE_LOT_ +val SCE_LOT_DEFAULT=0 +val SCE_LOT_HEADER=1 +val SCE_LOT_BREAK=2 +val SCE_LOT_SET=3 +val SCE_LOT_PASS=4 +val SCE_LOT_FAIL=5 +val SCE_LOT_ABORT=6 +# Lexical states for SCLEX_YAML +lex YAML=SCLEX_YAML SCE_YAML_ +val SCE_YAML_DEFAULT=0 +val SCE_YAML_COMMENT=1 +val SCE_YAML_IDENTIFIER=2 +val SCE_YAML_KEYWORD=3 +val SCE_YAML_NUMBER=4 +val SCE_YAML_REFERENCE=5 +val SCE_YAML_DOCUMENT=6 +val SCE_YAML_TEXT=7 +val SCE_YAML_ERROR=8 +val SCE_YAML_OPERATOR=9 +# Lexical states for SCLEX_TEX +lex TeX=SCLEX_TEX SCE_TEX_ +val SCE_TEX_DEFAULT=0 +val SCE_TEX_SPECIAL=1 +val SCE_TEX_GROUP=2 +val SCE_TEX_SYMBOL=3 +val SCE_TEX_COMMAND=4 +val SCE_TEX_TEXT=5 +lex Metapost=SCLEX_METAPOST SCE_METAPOST_ +val SCE_METAPOST_DEFAULT=0 +val SCE_METAPOST_SPECIAL=1 +val SCE_METAPOST_GROUP=2 +val SCE_METAPOST_SYMBOL=3 +val SCE_METAPOST_COMMAND=4 +val SCE_METAPOST_TEXT=5 +val SCE_METAPOST_EXTRA=6 +# Lexical states for SCLEX_ERLANG +lex Erlang=SCLEX_ERLANG SCE_ERLANG_ +val SCE_ERLANG_DEFAULT=0 +val SCE_ERLANG_COMMENT=1 +val SCE_ERLANG_VARIABLE=2 +val SCE_ERLANG_NUMBER=3 +val SCE_ERLANG_KEYWORD=4 +val SCE_ERLANG_STRING=5 +val SCE_ERLANG_OPERATOR=6 +val SCE_ERLANG_ATOM=7 +val SCE_ERLANG_FUNCTION_NAME=8 +val SCE_ERLANG_CHARACTER=9 +val SCE_ERLANG_MACRO=10 +val SCE_ERLANG_RECORD=11 +val SCE_ERLANG_PREPROC=12 +val SCE_ERLANG_NODE_NAME=13 +val SCE_ERLANG_COMMENT_FUNCTION=14 +val SCE_ERLANG_COMMENT_MODULE=15 +val SCE_ERLANG_COMMENT_DOC=16 +val SCE_ERLANG_COMMENT_DOC_MACRO=17 +val SCE_ERLANG_ATOM_QUOTED=18 +val SCE_ERLANG_MACRO_QUOTED=19 +val SCE_ERLANG_RECORD_QUOTED=20 +val SCE_ERLANG_NODE_NAME_QUOTED=21 +val SCE_ERLANG_BIFS=22 +val SCE_ERLANG_MODULES=23 +val SCE_ERLANG_MODULES_ATT=24 +val SCE_ERLANG_UNKNOWN=31 +# Lexical states for SCLEX_OCTAVE are identical to MatLab +lex Octave=SCLEX_OCTAVE SCE_MATLAB_ +# Lexical states for SCLEX_MSSQL +lex MSSQL=SCLEX_MSSQL SCE_MSSQL_ +val SCE_MSSQL_DEFAULT=0 +val SCE_MSSQL_COMMENT=1 +val SCE_MSSQL_LINE_COMMENT=2 +val SCE_MSSQL_NUMBER=3 +val SCE_MSSQL_STRING=4 +val SCE_MSSQL_OPERATOR=5 +val SCE_MSSQL_IDENTIFIER=6 +val SCE_MSSQL_VARIABLE=7 +val SCE_MSSQL_COLUMN_NAME=8 +val SCE_MSSQL_STATEMENT=9 +val SCE_MSSQL_DATATYPE=10 +val SCE_MSSQL_SYSTABLE=11 +val SCE_MSSQL_GLOBAL_VARIABLE=12 +val SCE_MSSQL_FUNCTION=13 +val SCE_MSSQL_STORED_PROCEDURE=14 +val SCE_MSSQL_DEFAULT_PREF_DATATYPE=15 +val SCE_MSSQL_COLUMN_NAME_2=16 +# Lexical states for SCLEX_VERILOG +lex Verilog=SCLEX_VERILOG SCE_V_ +val SCE_V_DEFAULT=0 +val SCE_V_COMMENT=1 +val SCE_V_COMMENTLINE=2 +val SCE_V_COMMENTLINEBANG=3 +val SCE_V_NUMBER=4 +val SCE_V_WORD=5 +val SCE_V_STRING=6 +val SCE_V_WORD2=7 +val SCE_V_WORD3=8 +val SCE_V_PREPROCESSOR=9 +val SCE_V_OPERATOR=10 +val SCE_V_IDENTIFIER=11 +val SCE_V_STRINGEOL=12 +val SCE_V_USER=19 +val SCE_V_COMMENT_WORD=20 +val SCE_V_INPUT=21 +val SCE_V_OUTPUT=22 +val SCE_V_INOUT=23 +val SCE_V_PORT_CONNECT=24 +# Lexical states for SCLEX_KIX +lex Kix=SCLEX_KIX SCE_KIX_ +val SCE_KIX_DEFAULT=0 +val SCE_KIX_COMMENT=1 +val SCE_KIX_STRING1=2 +val SCE_KIX_STRING2=3 +val SCE_KIX_NUMBER=4 +val SCE_KIX_VAR=5 +val SCE_KIX_MACRO=6 +val SCE_KIX_KEYWORD=7 +val SCE_KIX_FUNCTIONS=8 +val SCE_KIX_OPERATOR=9 +val SCE_KIX_COMMENTSTREAM=10 +val SCE_KIX_IDENTIFIER=31 +# Lexical states for SCLEX_GUI4CLI +lex Gui4Cli=SCLEX_GUI4CLI SCE_GC_ +val SCE_GC_DEFAULT=0 +val SCE_GC_COMMENTLINE=1 +val SCE_GC_COMMENTBLOCK=2 +val SCE_GC_GLOBAL=3 +val SCE_GC_EVENT=4 +val SCE_GC_ATTRIBUTE=5 +val SCE_GC_CONTROL=6 +val SCE_GC_COMMAND=7 +val SCE_GC_STRING=8 +val SCE_GC_OPERATOR=9 +# Lexical states for SCLEX_SPECMAN +lex Specman=SCLEX_SPECMAN SCE_SN_ +val SCE_SN_DEFAULT=0 +val SCE_SN_CODE=1 +val SCE_SN_COMMENTLINE=2 +val SCE_SN_COMMENTLINEBANG=3 +val SCE_SN_NUMBER=4 +val SCE_SN_WORD=5 +val SCE_SN_STRING=6 +val SCE_SN_WORD2=7 +val SCE_SN_WORD3=8 +val SCE_SN_PREPROCESSOR=9 +val SCE_SN_OPERATOR=10 +val SCE_SN_IDENTIFIER=11 +val SCE_SN_STRINGEOL=12 +val SCE_SN_REGEXTAG=13 +val SCE_SN_SIGNAL=14 +val SCE_SN_USER=19 +# Lexical states for SCLEX_AU3 +lex Au3=SCLEX_AU3 SCE_AU3_ +val SCE_AU3_DEFAULT=0 +val SCE_AU3_COMMENT=1 +val SCE_AU3_COMMENTBLOCK=2 +val SCE_AU3_NUMBER=3 +val SCE_AU3_FUNCTION=4 +val SCE_AU3_KEYWORD=5 +val SCE_AU3_MACRO=6 +val SCE_AU3_STRING=7 +val SCE_AU3_OPERATOR=8 +val SCE_AU3_VARIABLE=9 +val SCE_AU3_SENT=10 +val SCE_AU3_PREPROCESSOR=11 +val SCE_AU3_SPECIAL=12 +val SCE_AU3_EXPAND=13 +val SCE_AU3_COMOBJ=14 +val SCE_AU3_UDF=15 +# Lexical states for SCLEX_APDL +lex APDL=SCLEX_APDL SCE_APDL_ +val SCE_APDL_DEFAULT=0 +val SCE_APDL_COMMENT=1 +val SCE_APDL_COMMENTBLOCK=2 +val SCE_APDL_NUMBER=3 +val SCE_APDL_STRING=4 +val SCE_APDL_OPERATOR=5 +val SCE_APDL_WORD=6 +val SCE_APDL_PROCESSOR=7 +val SCE_APDL_COMMAND=8 +val SCE_APDL_SLASHCOMMAND=9 +val SCE_APDL_STARCOMMAND=10 +val SCE_APDL_ARGUMENT=11 +val SCE_APDL_FUNCTION=12 +# Lexical states for SCLEX_BASH +lex Bash=SCLEX_BASH SCE_SH_ +val SCE_SH_DEFAULT=0 +val SCE_SH_ERROR=1 +val SCE_SH_COMMENTLINE=2 +val SCE_SH_NUMBER=3 +val SCE_SH_WORD=4 +val SCE_SH_STRING=5 +val SCE_SH_CHARACTER=6 +val SCE_SH_OPERATOR=7 +val SCE_SH_IDENTIFIER=8 +val SCE_SH_SCALAR=9 +val SCE_SH_PARAM=10 +val SCE_SH_BACKTICKS=11 +val SCE_SH_HERE_DELIM=12 +val SCE_SH_HERE_Q=13 +# Lexical states for SCLEX_ASN1 +lex Asn1=SCLEX_ASN1 SCE_ASN1_ +val SCE_ASN1_DEFAULT=0 +val SCE_ASN1_COMMENT=1 +val SCE_ASN1_IDENTIFIER=2 +val SCE_ASN1_STRING=3 +val SCE_ASN1_OID=4 +val SCE_ASN1_SCALAR=5 +val SCE_ASN1_KEYWORD=6 +val SCE_ASN1_ATTRIBUTE=7 +val SCE_ASN1_DESCRIPTOR=8 +val SCE_ASN1_TYPE=9 +val SCE_ASN1_OPERATOR=10 +# Lexical states for SCLEX_VHDL +lex VHDL=SCLEX_VHDL SCE_VHDL_ +val SCE_VHDL_DEFAULT=0 +val SCE_VHDL_COMMENT=1 +val SCE_VHDL_COMMENTLINEBANG=2 +val SCE_VHDL_NUMBER=3 +val SCE_VHDL_STRING=4 +val SCE_VHDL_OPERATOR=5 +val SCE_VHDL_IDENTIFIER=6 +val SCE_VHDL_STRINGEOL=7 +val SCE_VHDL_KEYWORD=8 +val SCE_VHDL_STDOPERATOR=9 +val SCE_VHDL_ATTRIBUTE=10 +val SCE_VHDL_STDFUNCTION=11 +val SCE_VHDL_STDPACKAGE=12 +val SCE_VHDL_STDTYPE=13 +val SCE_VHDL_USERWORD=14 +val SCE_VHDL_BLOCK_COMMENT=15 +# Lexical states for SCLEX_CAML +lex Caml=SCLEX_CAML SCE_CAML_ +val SCE_CAML_DEFAULT=0 +val SCE_CAML_IDENTIFIER=1 +val SCE_CAML_TAGNAME=2 +val SCE_CAML_KEYWORD=3 +val SCE_CAML_KEYWORD2=4 +val SCE_CAML_KEYWORD3=5 +val SCE_CAML_LINENUM=6 +val SCE_CAML_OPERATOR=7 +val SCE_CAML_NUMBER=8 +val SCE_CAML_CHAR=9 +val SCE_CAML_WHITE=10 +val SCE_CAML_STRING=11 +val SCE_CAML_COMMENT=12 +val SCE_CAML_COMMENT1=13 +val SCE_CAML_COMMENT2=14 +val SCE_CAML_COMMENT3=15 +# Lexical states for SCLEX_HASKELL +lex Haskell=SCLEX_HASKELL SCE_HA_ +val SCE_HA_DEFAULT=0 +val SCE_HA_IDENTIFIER=1 +val SCE_HA_KEYWORD=2 +val SCE_HA_NUMBER=3 +val SCE_HA_STRING=4 +val SCE_HA_CHARACTER=5 +val SCE_HA_CLASS=6 +val SCE_HA_MODULE=7 +val SCE_HA_CAPITAL=8 +val SCE_HA_DATA=9 +val SCE_HA_IMPORT=10 +val SCE_HA_OPERATOR=11 +val SCE_HA_INSTANCE=12 +val SCE_HA_COMMENTLINE=13 +val SCE_HA_COMMENTBLOCK=14 +val SCE_HA_COMMENTBLOCK2=15 +val SCE_HA_COMMENTBLOCK3=16 +val SCE_HA_PRAGMA=17 +val SCE_HA_PREPROCESSOR=18 +val SCE_HA_STRINGEOL=19 +val SCE_HA_RESERVED_OPERATOR=20 +val SCE_HA_LITERATE_COMMENT=21 +val SCE_HA_LITERATE_CODEDELIM=22 +# Lexical states of SCLEX_TADS3 +lex TADS3=SCLEX_TADS3 SCE_T3_ +val SCE_T3_DEFAULT=0 +val SCE_T3_X_DEFAULT=1 +val SCE_T3_PREPROCESSOR=2 +val SCE_T3_BLOCK_COMMENT=3 +val SCE_T3_LINE_COMMENT=4 +val SCE_T3_OPERATOR=5 +val SCE_T3_KEYWORD=6 +val SCE_T3_NUMBER=7 +val SCE_T3_IDENTIFIER=8 +val SCE_T3_S_STRING=9 +val SCE_T3_D_STRING=10 +val SCE_T3_X_STRING=11 +val SCE_T3_LIB_DIRECTIVE=12 +val SCE_T3_MSG_PARAM=13 +val SCE_T3_HTML_TAG=14 +val SCE_T3_HTML_DEFAULT=15 +val SCE_T3_HTML_STRING=16 +val SCE_T3_USER1=17 +val SCE_T3_USER2=18 +val SCE_T3_USER3=19 +val SCE_T3_BRACE=20 +# Lexical states for SCLEX_REBOL +lex Rebol=SCLEX_REBOL SCE_REBOL_ +val SCE_REBOL_DEFAULT=0 +val SCE_REBOL_COMMENTLINE=1 +val SCE_REBOL_COMMENTBLOCK=2 +val SCE_REBOL_PREFACE=3 +val SCE_REBOL_OPERATOR=4 +val SCE_REBOL_CHARACTER=5 +val SCE_REBOL_QUOTEDSTRING=6 +val SCE_REBOL_BRACEDSTRING=7 +val SCE_REBOL_NUMBER=8 +val SCE_REBOL_PAIR=9 +val SCE_REBOL_TUPLE=10 +val SCE_REBOL_BINARY=11 +val SCE_REBOL_MONEY=12 +val SCE_REBOL_ISSUE=13 +val SCE_REBOL_TAG=14 +val SCE_REBOL_FILE=15 +val SCE_REBOL_EMAIL=16 +val SCE_REBOL_URL=17 +val SCE_REBOL_DATE=18 +val SCE_REBOL_TIME=19 +val SCE_REBOL_IDENTIFIER=20 +val SCE_REBOL_WORD=21 +val SCE_REBOL_WORD2=22 +val SCE_REBOL_WORD3=23 +val SCE_REBOL_WORD4=24 +val SCE_REBOL_WORD5=25 +val SCE_REBOL_WORD6=26 +val SCE_REBOL_WORD7=27 +val SCE_REBOL_WORD8=28 +# Lexical states for SCLEX_SQL +lex SQL=SCLEX_SQL SCE_SQL_ +val SCE_SQL_DEFAULT=0 +val SCE_SQL_COMMENT=1 +val SCE_SQL_COMMENTLINE=2 +val SCE_SQL_COMMENTDOC=3 +val SCE_SQL_NUMBER=4 +val SCE_SQL_WORD=5 +val SCE_SQL_STRING=6 +val SCE_SQL_CHARACTER=7 +val SCE_SQL_SQLPLUS=8 +val SCE_SQL_SQLPLUS_PROMPT=9 +val SCE_SQL_OPERATOR=10 +val SCE_SQL_IDENTIFIER=11 +val SCE_SQL_SQLPLUS_COMMENT=13 +val SCE_SQL_COMMENTLINEDOC=15 +val SCE_SQL_WORD2=16 +val SCE_SQL_COMMENTDOCKEYWORD=17 +val SCE_SQL_COMMENTDOCKEYWORDERROR=18 +val SCE_SQL_USER1=19 +val SCE_SQL_USER2=20 +val SCE_SQL_USER3=21 +val SCE_SQL_USER4=22 +val SCE_SQL_QUOTEDIDENTIFIER=23 +val SCE_SQL_QOPERATOR=24 +# Lexical states for SCLEX_SMALLTALK +lex Smalltalk=SCLEX_SMALLTALK SCE_ST_ +val SCE_ST_DEFAULT=0 +val SCE_ST_STRING=1 +val SCE_ST_NUMBER=2 +val SCE_ST_COMMENT=3 +val SCE_ST_SYMBOL=4 +val SCE_ST_BINARY=5 +val SCE_ST_BOOL=6 +val SCE_ST_SELF=7 +val SCE_ST_SUPER=8 +val SCE_ST_NIL=9 +val SCE_ST_GLOBAL=10 +val SCE_ST_RETURN=11 +val SCE_ST_SPECIAL=12 +val SCE_ST_KWSEND=13 +val SCE_ST_ASSIGN=14 +val SCE_ST_CHARACTER=15 +val SCE_ST_SPEC_SEL=16 +# Lexical states for SCLEX_FLAGSHIP (clipper) +lex FlagShip=SCLEX_FLAGSHIP SCE_FS_ +val SCE_FS_DEFAULT=0 +val SCE_FS_COMMENT=1 +val SCE_FS_COMMENTLINE=2 +val SCE_FS_COMMENTDOC=3 +val SCE_FS_COMMENTLINEDOC=4 +val SCE_FS_COMMENTDOCKEYWORD=5 +val SCE_FS_COMMENTDOCKEYWORDERROR=6 +val SCE_FS_KEYWORD=7 +val SCE_FS_KEYWORD2=8 +val SCE_FS_KEYWORD3=9 +val SCE_FS_KEYWORD4=10 +val SCE_FS_NUMBER=11 +val SCE_FS_STRING=12 +val SCE_FS_PREPROCESSOR=13 +val SCE_FS_OPERATOR=14 +val SCE_FS_IDENTIFIER=15 +val SCE_FS_DATE=16 +val SCE_FS_STRINGEOL=17 +val SCE_FS_CONSTANT=18 +val SCE_FS_WORDOPERATOR=19 +val SCE_FS_DISABLEDCODE=20 +val SCE_FS_DEFAULT_C=21 +val SCE_FS_COMMENTDOC_C=22 +val SCE_FS_COMMENTLINEDOC_C=23 +val SCE_FS_KEYWORD_C=24 +val SCE_FS_KEYWORD2_C=25 +val SCE_FS_NUMBER_C=26 +val SCE_FS_STRING_C=27 +val SCE_FS_PREPROCESSOR_C=28 +val SCE_FS_OPERATOR_C=29 +val SCE_FS_IDENTIFIER_C=30 +val SCE_FS_STRINGEOL_C=31 +# Lexical states for SCLEX_CSOUND +lex Csound=SCLEX_CSOUND SCE_CSOUND_ +val SCE_CSOUND_DEFAULT=0 +val SCE_CSOUND_COMMENT=1 +val SCE_CSOUND_NUMBER=2 +val SCE_CSOUND_OPERATOR=3 +val SCE_CSOUND_INSTR=4 +val SCE_CSOUND_IDENTIFIER=5 +val SCE_CSOUND_OPCODE=6 +val SCE_CSOUND_HEADERSTMT=7 +val SCE_CSOUND_USERKEYWORD=8 +val SCE_CSOUND_COMMENTBLOCK=9 +val SCE_CSOUND_PARAM=10 +val SCE_CSOUND_ARATE_VAR=11 +val SCE_CSOUND_KRATE_VAR=12 +val SCE_CSOUND_IRATE_VAR=13 +val SCE_CSOUND_GLOBAL_VAR=14 +val SCE_CSOUND_STRINGEOL=15 +# Lexical states for SCLEX_INNOSETUP +lex Inno=SCLEX_INNOSETUP SCE_INNO_ +val SCE_INNO_DEFAULT=0 +val SCE_INNO_COMMENT=1 +val SCE_INNO_KEYWORD=2 +val SCE_INNO_PARAMETER=3 +val SCE_INNO_SECTION=4 +val SCE_INNO_PREPROC=5 +val SCE_INNO_INLINE_EXPANSION=6 +val SCE_INNO_COMMENT_PASCAL=7 +val SCE_INNO_KEYWORD_PASCAL=8 +val SCE_INNO_KEYWORD_USER=9 +val SCE_INNO_STRING_DOUBLE=10 +val SCE_INNO_STRING_SINGLE=11 +val SCE_INNO_IDENTIFIER=12 +# Lexical states for SCLEX_OPAL +lex Opal=SCLEX_OPAL SCE_OPAL_ +val SCE_OPAL_SPACE=0 +val SCE_OPAL_COMMENT_BLOCK=1 +val SCE_OPAL_COMMENT_LINE=2 +val SCE_OPAL_INTEGER=3 +val SCE_OPAL_KEYWORD=4 +val SCE_OPAL_SORT=5 +val SCE_OPAL_STRING=6 +val SCE_OPAL_PAR=7 +val SCE_OPAL_BOOL_CONST=8 +val SCE_OPAL_DEFAULT=32 +# Lexical states for SCLEX_SPICE +lex Spice=SCLEX_SPICE SCE_SPICE_ +val SCE_SPICE_DEFAULT=0 +val SCE_SPICE_IDENTIFIER=1 +val SCE_SPICE_KEYWORD=2 +val SCE_SPICE_KEYWORD2=3 +val SCE_SPICE_KEYWORD3=4 +val SCE_SPICE_NUMBER=5 +val SCE_SPICE_DELIMITER=6 +val SCE_SPICE_VALUE=7 +val SCE_SPICE_COMMENTLINE=8 +# Lexical states for SCLEX_CMAKE +lex CMAKE=SCLEX_CMAKE SCE_CMAKE_ +val SCE_CMAKE_DEFAULT=0 +val SCE_CMAKE_COMMENT=1 +val SCE_CMAKE_STRINGDQ=2 +val SCE_CMAKE_STRINGLQ=3 +val SCE_CMAKE_STRINGRQ=4 +val SCE_CMAKE_COMMANDS=5 +val SCE_CMAKE_PARAMETERS=6 +val SCE_CMAKE_VARIABLE=7 +val SCE_CMAKE_USERDEFINED=8 +val SCE_CMAKE_WHILEDEF=9 +val SCE_CMAKE_FOREACHDEF=10 +val SCE_CMAKE_IFDEFINEDEF=11 +val SCE_CMAKE_MACRODEF=12 +val SCE_CMAKE_STRINGVAR=13 +val SCE_CMAKE_NUMBER=14 +# Lexical states for SCLEX_GAP +lex Gap=SCLEX_GAP SCE_GAP_ +val SCE_GAP_DEFAULT=0 +val SCE_GAP_IDENTIFIER=1 +val SCE_GAP_KEYWORD=2 +val SCE_GAP_KEYWORD2=3 +val SCE_GAP_KEYWORD3=4 +val SCE_GAP_KEYWORD4=5 +val SCE_GAP_STRING=6 +val SCE_GAP_CHAR=7 +val SCE_GAP_OPERATOR=8 +val SCE_GAP_COMMENT=9 +val SCE_GAP_NUMBER=10 +val SCE_GAP_STRINGEOL=11 +# Lexical state for SCLEX_PLM +lex PLM=SCLEX_PLM SCE_PLM_ +val SCE_PLM_DEFAULT=0 +val SCE_PLM_COMMENT=1 +val SCE_PLM_STRING=2 +val SCE_PLM_NUMBER=3 +val SCE_PLM_IDENTIFIER=4 +val SCE_PLM_OPERATOR=5 +val SCE_PLM_CONTROL=6 +val SCE_PLM_KEYWORD=7 +# Lexical state for SCLEX_PROGRESS +lex Progress=SCLEX_PROGRESS SCE_ABL_ +val SCE_ABL_DEFAULT=0 +val SCE_ABL_NUMBER=1 +val SCE_ABL_WORD=2 +val SCE_ABL_STRING=3 +val SCE_ABL_CHARACTER=4 +val SCE_ABL_PREPROCESSOR=5 +val SCE_ABL_OPERATOR=6 +val SCE_ABL_IDENTIFIER=7 +val SCE_ABL_BLOCK=8 +val SCE_ABL_END=9 +val SCE_ABL_COMMENT=10 +val SCE_ABL_TASKMARKER=11 +val SCE_ABL_LINECOMMENT=12 +# Lexical states for SCLEX_ABAQUS +lex ABAQUS=SCLEX_ABAQUS SCE_ABAQUS_ +val SCE_ABAQUS_DEFAULT=0 +val SCE_ABAQUS_COMMENT=1 +val SCE_ABAQUS_COMMENTBLOCK=2 +val SCE_ABAQUS_NUMBER=3 +val SCE_ABAQUS_STRING=4 +val SCE_ABAQUS_OPERATOR=5 +val SCE_ABAQUS_WORD=6 +val SCE_ABAQUS_PROCESSOR=7 +val SCE_ABAQUS_COMMAND=8 +val SCE_ABAQUS_SLASHCOMMAND=9 +val SCE_ABAQUS_STARCOMMAND=10 +val SCE_ABAQUS_ARGUMENT=11 +val SCE_ABAQUS_FUNCTION=12 +# Lexical states for SCLEX_ASYMPTOTE +lex Asymptote=SCLEX_ASYMPTOTE SCE_ASY_ +val SCE_ASY_DEFAULT=0 +val SCE_ASY_COMMENT=1 +val SCE_ASY_COMMENTLINE=2 +val SCE_ASY_NUMBER=3 +val SCE_ASY_WORD=4 +val SCE_ASY_STRING=5 +val SCE_ASY_CHARACTER=6 +val SCE_ASY_OPERATOR=7 +val SCE_ASY_IDENTIFIER=8 +val SCE_ASY_STRINGEOL=9 +val SCE_ASY_COMMENTLINEDOC=10 +val SCE_ASY_WORD2=11 +# Lexical states for SCLEX_R +lex R=SCLEX_R SCE_R_ +val SCE_R_DEFAULT=0 +val SCE_R_COMMENT=1 +val SCE_R_KWORD=2 +val SCE_R_BASEKWORD=3 +val SCE_R_OTHERKWORD=4 +val SCE_R_NUMBER=5 +val SCE_R_STRING=6 +val SCE_R_STRING2=7 +val SCE_R_OPERATOR=8 +val SCE_R_IDENTIFIER=9 +val SCE_R_INFIX=10 +val SCE_R_INFIXEOL=11 +# Lexical state for SCLEX_MAGIK +lex MagikSF=SCLEX_MAGIK SCE_MAGIK_ +val SCE_MAGIK_DEFAULT=0 +val SCE_MAGIK_COMMENT=1 +val SCE_MAGIK_HYPER_COMMENT=16 +val SCE_MAGIK_STRING=2 +val SCE_MAGIK_CHARACTER=3 +val SCE_MAGIK_NUMBER=4 +val SCE_MAGIK_IDENTIFIER=5 +val SCE_MAGIK_OPERATOR=6 +val SCE_MAGIK_FLOW=7 +val SCE_MAGIK_CONTAINER=8 +val SCE_MAGIK_BRACKET_BLOCK=9 +val SCE_MAGIK_BRACE_BLOCK=10 +val SCE_MAGIK_SQBRACKET_BLOCK=11 +val SCE_MAGIK_UNKNOWN_KEYWORD=12 +val SCE_MAGIK_KEYWORD=13 +val SCE_MAGIK_PRAGMA=14 +val SCE_MAGIK_SYMBOL=15 +# Lexical state for SCLEX_POWERSHELL +lex PowerShell=SCLEX_POWERSHELL SCE_POWERSHELL_ +val SCE_POWERSHELL_DEFAULT=0 +val SCE_POWERSHELL_COMMENT=1 +val SCE_POWERSHELL_STRING=2 +val SCE_POWERSHELL_CHARACTER=3 +val SCE_POWERSHELL_NUMBER=4 +val SCE_POWERSHELL_VARIABLE=5 +val SCE_POWERSHELL_OPERATOR=6 +val SCE_POWERSHELL_IDENTIFIER=7 +val SCE_POWERSHELL_KEYWORD=8 +val SCE_POWERSHELL_CMDLET=9 +val SCE_POWERSHELL_ALIAS=10 +val SCE_POWERSHELL_FUNCTION=11 +val SCE_POWERSHELL_USER1=12 +val SCE_POWERSHELL_COMMENTSTREAM=13 +val SCE_POWERSHELL_HERE_STRING=14 +val SCE_POWERSHELL_HERE_CHARACTER=15 +val SCE_POWERSHELL_COMMENTDOCKEYWORD=16 +# Lexical state for SCLEX_MYSQL +lex MySQL=SCLEX_MYSQL SCE_MYSQL_ +val SCE_MYSQL_DEFAULT=0 +val SCE_MYSQL_COMMENT=1 +val SCE_MYSQL_COMMENTLINE=2 +val SCE_MYSQL_VARIABLE=3 +val SCE_MYSQL_SYSTEMVARIABLE=4 +val SCE_MYSQL_KNOWNSYSTEMVARIABLE=5 +val SCE_MYSQL_NUMBER=6 +val SCE_MYSQL_MAJORKEYWORD=7 +val SCE_MYSQL_KEYWORD=8 +val SCE_MYSQL_DATABASEOBJECT=9 +val SCE_MYSQL_PROCEDUREKEYWORD=10 +val SCE_MYSQL_STRING=11 +val SCE_MYSQL_SQSTRING=12 +val SCE_MYSQL_DQSTRING=13 +val SCE_MYSQL_OPERATOR=14 +val SCE_MYSQL_FUNCTION=15 +val SCE_MYSQL_IDENTIFIER=16 +val SCE_MYSQL_QUOTEDIDENTIFIER=17 +val SCE_MYSQL_USER1=18 +val SCE_MYSQL_USER2=19 +val SCE_MYSQL_USER3=20 +val SCE_MYSQL_HIDDENCOMMAND=21 +val SCE_MYSQL_PLACEHOLDER=22 +# Lexical state for SCLEX_PO +lex Po=SCLEX_PO SCE_PO_ +val SCE_PO_DEFAULT=0 +val SCE_PO_COMMENT=1 +val SCE_PO_MSGID=2 +val SCE_PO_MSGID_TEXT=3 +val SCE_PO_MSGSTR=4 +val SCE_PO_MSGSTR_TEXT=5 +val SCE_PO_MSGCTXT=6 +val SCE_PO_MSGCTXT_TEXT=7 +val SCE_PO_FUZZY=8 +val SCE_PO_PROGRAMMER_COMMENT=9 +val SCE_PO_REFERENCE=10 +val SCE_PO_FLAGS=11 +val SCE_PO_MSGID_TEXT_EOL=12 +val SCE_PO_MSGSTR_TEXT_EOL=13 +val SCE_PO_MSGCTXT_TEXT_EOL=14 +val SCE_PO_ERROR=15 +# Lexical states for SCLEX_PASCAL +lex Pascal=SCLEX_PASCAL SCE_PAS_ +val SCE_PAS_DEFAULT=0 +val SCE_PAS_IDENTIFIER=1 +val SCE_PAS_COMMENT=2 +val SCE_PAS_COMMENT2=3 +val SCE_PAS_COMMENTLINE=4 +val SCE_PAS_PREPROCESSOR=5 +val SCE_PAS_PREPROCESSOR2=6 +val SCE_PAS_NUMBER=7 +val SCE_PAS_HEXNUMBER=8 +val SCE_PAS_WORD=9 +val SCE_PAS_STRING=10 +val SCE_PAS_STRINGEOL=11 +val SCE_PAS_CHARACTER=12 +val SCE_PAS_OPERATOR=13 +val SCE_PAS_ASM=14 +# Lexical state for SCLEX_SORCUS +lex SORCUS=SCLEX_SORCUS SCE_SORCUS_ +val SCE_SORCUS_DEFAULT=0 +val SCE_SORCUS_COMMAND=1 +val SCE_SORCUS_PARAMETER=2 +val SCE_SORCUS_COMMENTLINE=3 +val SCE_SORCUS_STRING=4 +val SCE_SORCUS_STRINGEOL=5 +val SCE_SORCUS_IDENTIFIER=6 +val SCE_SORCUS_OPERATOR=7 +val SCE_SORCUS_NUMBER=8 +val SCE_SORCUS_CONSTANT=9 +# Lexical state for SCLEX_POWERPRO +lex PowerPro=SCLEX_POWERPRO SCE_POWERPRO_ +val SCE_POWERPRO_DEFAULT=0 +val SCE_POWERPRO_COMMENTBLOCK=1 +val SCE_POWERPRO_COMMENTLINE=2 +val SCE_POWERPRO_NUMBER=3 +val SCE_POWERPRO_WORD=4 +val SCE_POWERPRO_WORD2=5 +val SCE_POWERPRO_WORD3=6 +val SCE_POWERPRO_WORD4=7 +val SCE_POWERPRO_DOUBLEQUOTEDSTRING=8 +val SCE_POWERPRO_SINGLEQUOTEDSTRING=9 +val SCE_POWERPRO_LINECONTINUE=10 +val SCE_POWERPRO_OPERATOR=11 +val SCE_POWERPRO_IDENTIFIER=12 +val SCE_POWERPRO_STRINGEOL=13 +val SCE_POWERPRO_VERBATIM=14 +val SCE_POWERPRO_ALTQUOTE=15 +val SCE_POWERPRO_FUNCTION=16 +# Lexical states for SCLEX_SML +lex SML=SCLEX_SML SCE_SML_ +val SCE_SML_DEFAULT=0 +val SCE_SML_IDENTIFIER=1 +val SCE_SML_TAGNAME=2 +val SCE_SML_KEYWORD=3 +val SCE_SML_KEYWORD2=4 +val SCE_SML_KEYWORD3=5 +val SCE_SML_LINENUM=6 +val SCE_SML_OPERATOR=7 +val SCE_SML_NUMBER=8 +val SCE_SML_CHAR=9 +val SCE_SML_STRING=11 +val SCE_SML_COMMENT=12 +val SCE_SML_COMMENT1=13 +val SCE_SML_COMMENT2=14 +val SCE_SML_COMMENT3=15 +# Lexical state for SCLEX_MARKDOWN +lex Markdown=SCLEX_MARKDOWN SCE_MARKDOWN_ +val SCE_MARKDOWN_DEFAULT=0 +val SCE_MARKDOWN_LINE_BEGIN=1 +val SCE_MARKDOWN_STRONG1=2 +val SCE_MARKDOWN_STRONG2=3 +val SCE_MARKDOWN_EM1=4 +val SCE_MARKDOWN_EM2=5 +val SCE_MARKDOWN_HEADER1=6 +val SCE_MARKDOWN_HEADER2=7 +val SCE_MARKDOWN_HEADER3=8 +val SCE_MARKDOWN_HEADER4=9 +val SCE_MARKDOWN_HEADER5=10 +val SCE_MARKDOWN_HEADER6=11 +val SCE_MARKDOWN_PRECHAR=12 +val SCE_MARKDOWN_ULIST_ITEM=13 +val SCE_MARKDOWN_OLIST_ITEM=14 +val SCE_MARKDOWN_BLOCKQUOTE=15 +val SCE_MARKDOWN_STRIKEOUT=16 +val SCE_MARKDOWN_HRULE=17 +val SCE_MARKDOWN_LINK=18 +val SCE_MARKDOWN_CODE=19 +val SCE_MARKDOWN_CODE2=20 +val SCE_MARKDOWN_CODEBK=21 +# Lexical state for SCLEX_TXT2TAGS +lex Txt2tags=SCLEX_TXT2TAGS SCE_TXT2TAGS_ +val SCE_TXT2TAGS_DEFAULT=0 +val SCE_TXT2TAGS_LINE_BEGIN=1 +val SCE_TXT2TAGS_STRONG1=2 +val SCE_TXT2TAGS_STRONG2=3 +val SCE_TXT2TAGS_EM1=4 +val SCE_TXT2TAGS_EM2=5 +val SCE_TXT2TAGS_HEADER1=6 +val SCE_TXT2TAGS_HEADER2=7 +val SCE_TXT2TAGS_HEADER3=8 +val SCE_TXT2TAGS_HEADER4=9 +val SCE_TXT2TAGS_HEADER5=10 +val SCE_TXT2TAGS_HEADER6=11 +val SCE_TXT2TAGS_PRECHAR=12 +val SCE_TXT2TAGS_ULIST_ITEM=13 +val SCE_TXT2TAGS_OLIST_ITEM=14 +val SCE_TXT2TAGS_BLOCKQUOTE=15 +val SCE_TXT2TAGS_STRIKEOUT=16 +val SCE_TXT2TAGS_HRULE=17 +val SCE_TXT2TAGS_LINK=18 +val SCE_TXT2TAGS_CODE=19 +val SCE_TXT2TAGS_CODE2=20 +val SCE_TXT2TAGS_CODEBK=21 +val SCE_TXT2TAGS_COMMENT=22 +val SCE_TXT2TAGS_OPTION=23 +val SCE_TXT2TAGS_PREPROC=24 +val SCE_TXT2TAGS_POSTPROC=25 +# Lexical states for SCLEX_A68K +lex A68k=SCLEX_A68K SCE_A68K_ +val SCE_A68K_DEFAULT=0 +val SCE_A68K_COMMENT=1 +val SCE_A68K_NUMBER_DEC=2 +val SCE_A68K_NUMBER_BIN=3 +val SCE_A68K_NUMBER_HEX=4 +val SCE_A68K_STRING1=5 +val SCE_A68K_OPERATOR=6 +val SCE_A68K_CPUINSTRUCTION=7 +val SCE_A68K_EXTINSTRUCTION=8 +val SCE_A68K_REGISTER=9 +val SCE_A68K_DIRECTIVE=10 +val SCE_A68K_MACRO_ARG=11 +val SCE_A68K_LABEL=12 +val SCE_A68K_STRING2=13 +val SCE_A68K_IDENTIFIER=14 +val SCE_A68K_MACRO_DECLARATION=15 +val SCE_A68K_COMMENT_WORD=16 +val SCE_A68K_COMMENT_SPECIAL=17 +val SCE_A68K_COMMENT_DOXYGEN=18 +# Lexical states for SCLEX_MODULA +lex Modula=SCLEX_MODULA SCE_MODULA_ +val SCE_MODULA_DEFAULT=0 +val SCE_MODULA_COMMENT=1 +val SCE_MODULA_DOXYCOMM=2 +val SCE_MODULA_DOXYKEY=3 +val SCE_MODULA_KEYWORD=4 +val SCE_MODULA_RESERVED=5 +val SCE_MODULA_NUMBER=6 +val SCE_MODULA_BASENUM=7 +val SCE_MODULA_FLOAT=8 +val SCE_MODULA_STRING=9 +val SCE_MODULA_STRSPEC=10 +val SCE_MODULA_CHAR=11 +val SCE_MODULA_CHARSPEC=12 +val SCE_MODULA_PROC=13 +val SCE_MODULA_PRAGMA=14 +val SCE_MODULA_PRGKEY=15 +val SCE_MODULA_OPERATOR=16 +val SCE_MODULA_BADSTR=17 +# Lexical states for SCLEX_COFFEESCRIPT +lex CoffeeScript=SCLEX_COFFEESCRIPT SCE_COFFEESCRIPT_ +val SCE_COFFEESCRIPT_DEFAULT=0 +val SCE_COFFEESCRIPT_COMMENT=1 +val SCE_COFFEESCRIPT_COMMENTLINE=2 +val SCE_COFFEESCRIPT_COMMENTDOC=3 +val SCE_COFFEESCRIPT_NUMBER=4 +val SCE_COFFEESCRIPT_WORD=5 +val SCE_COFFEESCRIPT_STRING=6 +val SCE_COFFEESCRIPT_CHARACTER=7 +val SCE_COFFEESCRIPT_UUID=8 +val SCE_COFFEESCRIPT_PREPROCESSOR=9 +val SCE_COFFEESCRIPT_OPERATOR=10 +val SCE_COFFEESCRIPT_IDENTIFIER=11 +val SCE_COFFEESCRIPT_STRINGEOL=12 +val SCE_COFFEESCRIPT_VERBATIM=13 +val SCE_COFFEESCRIPT_REGEX=14 +val SCE_COFFEESCRIPT_COMMENTLINEDOC=15 +val SCE_COFFEESCRIPT_WORD2=16 +val SCE_COFFEESCRIPT_COMMENTDOCKEYWORD=17 +val SCE_COFFEESCRIPT_COMMENTDOCKEYWORDERROR=18 +val SCE_COFFEESCRIPT_GLOBALCLASS=19 +val SCE_COFFEESCRIPT_STRINGRAW=20 +val SCE_COFFEESCRIPT_TRIPLEVERBATIM=21 +val SCE_COFFEESCRIPT_COMMENTBLOCK=22 +val SCE_COFFEESCRIPT_VERBOSE_REGEX=23 +val SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT=24 +val SCE_COFFEESCRIPT_INSTANCEPROPERTY=25 +# Lexical states for SCLEX_AVS +lex AVS=SCLEX_AVS SCE_AVS_ +val SCE_AVS_DEFAULT=0 +val SCE_AVS_COMMENTBLOCK=1 +val SCE_AVS_COMMENTBLOCKN=2 +val SCE_AVS_COMMENTLINE=3 +val SCE_AVS_NUMBER=4 +val SCE_AVS_OPERATOR=5 +val SCE_AVS_IDENTIFIER=6 +val SCE_AVS_STRING=7 +val SCE_AVS_TRIPLESTRING=8 +val SCE_AVS_KEYWORD=9 +val SCE_AVS_FILTER=10 +val SCE_AVS_PLUGIN=11 +val SCE_AVS_FUNCTION=12 +val SCE_AVS_CLIPPROP=13 +val SCE_AVS_USERDFN=14 +# Lexical states for SCLEX_ECL +lex ECL=SCLEX_ECL SCE_ECL_ +val SCE_ECL_DEFAULT=0 +val SCE_ECL_COMMENT=1 +val SCE_ECL_COMMENTLINE=2 +val SCE_ECL_NUMBER=3 +val SCE_ECL_STRING=4 +val SCE_ECL_WORD0=5 +val SCE_ECL_OPERATOR=6 +val SCE_ECL_CHARACTER=7 +val SCE_ECL_UUID=8 +val SCE_ECL_PREPROCESSOR=9 +val SCE_ECL_UNKNOWN=10 +val SCE_ECL_IDENTIFIER=11 +val SCE_ECL_STRINGEOL=12 +val SCE_ECL_VERBATIM=13 +val SCE_ECL_REGEX=14 +val SCE_ECL_COMMENTLINEDOC=15 +val SCE_ECL_WORD1=16 +val SCE_ECL_COMMENTDOCKEYWORD=17 +val SCE_ECL_COMMENTDOCKEYWORDERROR=18 +val SCE_ECL_WORD2=19 +val SCE_ECL_WORD3=20 +val SCE_ECL_WORD4=21 +val SCE_ECL_WORD5=22 +val SCE_ECL_COMMENTDOC=23 +val SCE_ECL_ADDED=24 +val SCE_ECL_DELETED=25 +val SCE_ECL_CHANGED=26 +val SCE_ECL_MOVED=27 +# Lexical states for SCLEX_OSCRIPT +lex OScript=SCLEX_OSCRIPT SCE_OSCRIPT_ +val SCE_OSCRIPT_DEFAULT=0 +val SCE_OSCRIPT_LINE_COMMENT=1 +val SCE_OSCRIPT_BLOCK_COMMENT=2 +val SCE_OSCRIPT_DOC_COMMENT=3 +val SCE_OSCRIPT_PREPROCESSOR=4 +val SCE_OSCRIPT_NUMBER=5 +val SCE_OSCRIPT_SINGLEQUOTE_STRING=6 +val SCE_OSCRIPT_DOUBLEQUOTE_STRING=7 +val SCE_OSCRIPT_CONSTANT=8 +val SCE_OSCRIPT_IDENTIFIER=9 +val SCE_OSCRIPT_GLOBAL=10 +val SCE_OSCRIPT_KEYWORD=11 +val SCE_OSCRIPT_OPERATOR=12 +val SCE_OSCRIPT_LABEL=13 +val SCE_OSCRIPT_TYPE=14 +val SCE_OSCRIPT_FUNCTION=15 +val SCE_OSCRIPT_OBJECT=16 +val SCE_OSCRIPT_PROPERTY=17 +val SCE_OSCRIPT_METHOD=18 +# Lexical states for SCLEX_VISUALPROLOG +lex VisualProlog=SCLEX_VISUALPROLOG SCE_VISUALPROLOG_ +val SCE_VISUALPROLOG_DEFAULT=0 +val SCE_VISUALPROLOG_KEY_MAJOR=1 +val SCE_VISUALPROLOG_KEY_MINOR=2 +val SCE_VISUALPROLOG_KEY_DIRECTIVE=3 +val SCE_VISUALPROLOG_COMMENT_BLOCK=4 +val SCE_VISUALPROLOG_COMMENT_LINE=5 +val SCE_VISUALPROLOG_COMMENT_KEY=6 +val SCE_VISUALPROLOG_COMMENT_KEY_ERROR=7 +val SCE_VISUALPROLOG_IDENTIFIER=8 +val SCE_VISUALPROLOG_VARIABLE=9 +val SCE_VISUALPROLOG_ANONYMOUS=10 +val SCE_VISUALPROLOG_NUMBER=11 +val SCE_VISUALPROLOG_OPERATOR=12 +val SCE_VISUALPROLOG_CHARACTER=13 +val SCE_VISUALPROLOG_CHARACTER_TOO_MANY=14 +val SCE_VISUALPROLOG_CHARACTER_ESCAPE_ERROR=15 +val SCE_VISUALPROLOG_STRING=16 +val SCE_VISUALPROLOG_STRING_ESCAPE=17 +val SCE_VISUALPROLOG_STRING_ESCAPE_ERROR=18 +val SCE_VISUALPROLOG_STRING_EOL_OPEN=19 +val SCE_VISUALPROLOG_STRING_VERBATIM=20 +val SCE_VISUALPROLOG_STRING_VERBATIM_SPECIAL=21 +val SCE_VISUALPROLOG_STRING_VERBATIM_EOL=22 +# Lexical states for SCLEX_STTXT +lex StructuredText=SCLEX_STTXT SCE_STTXT_ +val SCE_STTXT_DEFAULT=0 +val SCE_STTXT_COMMENT=1 +val SCE_STTXT_COMMENTLINE=2 +val SCE_STTXT_KEYWORD=3 +val SCE_STTXT_TYPE=4 +val SCE_STTXT_FUNCTION=5 +val SCE_STTXT_FB=6 +val SCE_STTXT_NUMBER=7 +val SCE_STTXT_HEXNUMBER=8 +val SCE_STTXT_PRAGMA=9 +val SCE_STTXT_OPERATOR=10 +val SCE_STTXT_CHARACTER=11 +val SCE_STTXT_STRING1=12 +val SCE_STTXT_STRING2=13 +val SCE_STTXT_STRINGEOL=14 +val SCE_STTXT_IDENTIFIER=15 +val SCE_STTXT_DATETIME=16 +val SCE_STTXT_VARS=17 +val SCE_STTXT_PRAGMAS=18 +# Lexical states for SCLEX_KVIRC +lex KVIrc=SCLEX_KVIRC SCE_KVIRC_ +val SCE_KVIRC_DEFAULT=0 +val SCE_KVIRC_COMMENT=1 +val SCE_KVIRC_COMMENTBLOCK=2 +val SCE_KVIRC_STRING=3 +val SCE_KVIRC_WORD=4 +val SCE_KVIRC_KEYWORD=5 +val SCE_KVIRC_FUNCTION_KEYWORD=6 +val SCE_KVIRC_FUNCTION=7 +val SCE_KVIRC_VARIABLE=8 +val SCE_KVIRC_NUMBER=9 +val SCE_KVIRC_OPERATOR=10 +val SCE_KVIRC_STRING_FUNCTION=11 +val SCE_KVIRC_STRING_VARIABLE=12 +# Lexical states for SCLEX_RUST +lex Rust=SCLEX_RUST SCE_RUST_ +val SCE_RUST_DEFAULT=0 +val SCE_RUST_COMMENTBLOCK=1 +val SCE_RUST_COMMENTLINE=2 +val SCE_RUST_COMMENTBLOCKDOC=3 +val SCE_RUST_COMMENTLINEDOC=4 +val SCE_RUST_NUMBER=5 +val SCE_RUST_WORD=6 +val SCE_RUST_WORD2=7 +val SCE_RUST_WORD3=8 +val SCE_RUST_WORD4=9 +val SCE_RUST_WORD5=10 +val SCE_RUST_WORD6=11 +val SCE_RUST_WORD7=12 +val SCE_RUST_STRING=13 +val SCE_RUST_STRINGR=14 +val SCE_RUST_CHARACTER=15 +val SCE_RUST_OPERATOR=16 +val SCE_RUST_IDENTIFIER=17 +val SCE_RUST_LIFETIME=18 +val SCE_RUST_MACRO=19 +val SCE_RUST_LEXERROR=20 +val SCE_RUST_BYTESTRING=21 +val SCE_RUST_BYTESTRINGR=22 +val SCE_RUST_BYTECHARACTER=23 +# Lexical states for SCLEX_DMAP +lex DMAP=SCLEX_DMAP SCE_DMAP_ +val SCE_DMAP_DEFAULT=0 +val SCE_DMAP_COMMENT=1 +val SCE_DMAP_NUMBER=2 +val SCE_DMAP_STRING1=3 +val SCE_DMAP_STRING2=4 +val SCE_DMAP_STRINGEOL=5 +val SCE_DMAP_OPERATOR=6 +val SCE_DMAP_IDENTIFIER=7 +val SCE_DMAP_WORD=8 +val SCE_DMAP_WORD2=9 +val SCE_DMAP_WORD3=10 +# Lexical states for SCLEX_DMIS +lex DMIS=SCLEX_DMIS SCE_DMIS_ +val SCE_DMIS_DEFAULT=0 +val SCE_DMIS_COMMENT=1 +val SCE_DMIS_STRING=2 +val SCE_DMIS_NUMBER=3 +val SCE_DMIS_KEYWORD=4 +val SCE_DMIS_MAJORWORD=5 +val SCE_DMIS_MINORWORD=6 +val SCE_DMIS_UNSUPPORTED_MAJOR=7 +val SCE_DMIS_UNSUPPORTED_MINOR=8 +val SCE_DMIS_LABEL=9 +# Lexical states for SCLEX_REGISTRY +lex REG=SCLEX_REGISTRY SCE_REG_ +val SCE_REG_DEFAULT=0 +val SCE_REG_COMMENT=1 +val SCE_REG_VALUENAME=2 +val SCE_REG_STRING=3 +val SCE_REG_HEXDIGIT=4 +val SCE_REG_VALUETYPE=5 +val SCE_REG_ADDEDKEY=6 +val SCE_REG_DELETEDKEY=7 +val SCE_REG_ESCAPED=8 +val SCE_REG_KEYPATH_GUID=9 +val SCE_REG_STRING_GUID=10 +val SCE_REG_PARAMETER=11 +val SCE_REG_OPERATOR=12 +# Lexical state for SCLEX_BIBTEX +lex BibTeX=SCLEX_BIBTEX SCE_BIBTEX_ +val SCE_BIBTEX_DEFAULT=0 +val SCE_BIBTEX_ENTRY=1 +val SCE_BIBTEX_UNKNOWN_ENTRY=2 +val SCE_BIBTEX_KEY=3 +val SCE_BIBTEX_PARAMETER=4 +val SCE_BIBTEX_VALUE=5 +val SCE_BIBTEX_COMMENT=6 +# Lexical state for SCLEX_SREC +lex Srec=SCLEX_SREC SCE_HEX_ +val SCE_HEX_DEFAULT=0 +val SCE_HEX_RECSTART=1 +val SCE_HEX_RECTYPE=2 +val SCE_HEX_RECTYPE_UNKNOWN=3 +val SCE_HEX_BYTECOUNT=4 +val SCE_HEX_BYTECOUNT_WRONG=5 +val SCE_HEX_NOADDRESS=6 +val SCE_HEX_DATAADDRESS=7 +val SCE_HEX_RECCOUNT=8 +val SCE_HEX_STARTADDRESS=9 +val SCE_HEX_ADDRESSFIELD_UNKNOWN=10 +val SCE_HEX_EXTENDEDADDRESS=11 +val SCE_HEX_DATA_ODD=12 +val SCE_HEX_DATA_EVEN=13 +val SCE_HEX_DATA_UNKNOWN=14 +val SCE_HEX_DATA_EMPTY=15 +val SCE_HEX_CHECKSUM=16 +val SCE_HEX_CHECKSUM_WRONG=17 +val SCE_HEX_GARBAGE=18 +# Lexical state for SCLEX_IHEX (shared with Srec) +lex IHex=SCLEX_IHEX SCE_HEX_ +# Lexical state for SCLEX_TEHEX (shared with Srec) +lex TEHex=SCLEX_TEHEX SCE_HEX_ +# Lexical states for SCLEX_JSON +lex JSON=SCLEX_JSON SCE_JSON_ +val SCE_JSON_DEFAULT=0 +val SCE_JSON_NUMBER=1 +val SCE_JSON_STRING=2 +val SCE_JSON_STRINGEOL=3 +val SCE_JSON_PROPERTYNAME=4 +val SCE_JSON_ESCAPESEQUENCE=5 +val SCE_JSON_LINECOMMENT=6 +val SCE_JSON_BLOCKCOMMENT=7 +val SCE_JSON_OPERATOR=8 +val SCE_JSON_URI=9 +val SCE_JSON_COMPACTIRI=10 +val SCE_JSON_KEYWORD=11 +val SCE_JSON_LDKEYWORD=12 +val SCE_JSON_ERROR=13 +lex EDIFACT=SCLEX_EDIFACT SCE_EDI_ +val SCE_EDI_DEFAULT=0 +val SCE_EDI_SEGMENTSTART=1 +val SCE_EDI_SEGMENTEND=2 +val SCE_EDI_SEP_ELEMENT=3 +val SCE_EDI_SEP_COMPOSITE=4 +val SCE_EDI_SEP_RELEASE=5 +val SCE_EDI_UNA=6 +val SCE_EDI_UNH=7 +val SCE_EDI_BADSEGMENT=8 +# Lexical states for SCLEX_STATA +lex STATA=SCLEX_STATA SCE_STATA_ +val SCE_STATA_DEFAULT=0 +val SCE_STATA_COMMENT=1 +val SCE_STATA_COMMENTLINE=2 +val SCE_STATA_COMMENTBLOCK=3 +val SCE_STATA_NUMBER=4 +val SCE_STATA_OPERATOR=5 +val SCE_STATA_IDENTIFIER=6 +val SCE_STATA_STRING=7 +val SCE_STATA_TYPE=8 +val SCE_STATA_WORD=9 +val SCE_STATA_GLOBAL_MACRO=10 +val SCE_STATA_MACRO=11 +# Lexical states for SCLEX_SAS +lex SAS=SCLEX_SAS SCE_SAS_ +val SCE_SAS_DEFAULT=0 +val SCE_SAS_COMMENT=1 +val SCE_SAS_COMMENTLINE=2 +val SCE_SAS_COMMENTBLOCK=3 +val SCE_SAS_NUMBER=4 +val SCE_SAS_OPERATOR=5 +val SCE_SAS_IDENTIFIER=6 +val SCE_SAS_STRING=7 +val SCE_SAS_TYPE=8 +val SCE_SAS_WORD=9 +val SCE_SAS_GLOBAL_MACRO=10 +val SCE_SAS_MACRO=11 +val SCE_SAS_MACRO_KEYWORD=12 +val SCE_SAS_BLOCK_KEYWORD=13 +val SCE_SAS_MACRO_FUNCTION=14 +val SCE_SAS_STATEMENT=15 + +# Events + +evt void StyleNeeded=2000(int position) +evt void CharAdded=2001(int ch) +evt void SavePointReached=2002(void) +evt void SavePointLeft=2003(void) +evt void ModifyAttemptRO=2004(void) +# GTK+ Specific to work around focus and accelerator problems: +evt void Key=2005(int ch, int modifiers) +evt void DoubleClick=2006(int modifiers, int position, int line) +evt void UpdateUI=2007(int updated) +evt void Modified=2008(int position, int modificationType, string text, int length, int linesAdded, int line, int foldLevelNow, int foldLevelPrev, int token, int annotationLinesAdded) +evt void MacroRecord=2009(int message, int wParam, int lParam) +evt void MarginClick=2010(int modifiers, int position, int margin) +evt void NeedShown=2011(int position, int length) +evt void Painted=2013(void) +evt void UserListSelection=2014(int listType, string text, int position, int ch, CompletionMethods listCompletionMethod) +evt void URIDropped=2015(string text) +evt void DwellStart=2016(int position, int x, int y) +evt void DwellEnd=2017(int position, int x, int y) +evt void Zoom=2018(void) +evt void HotSpotClick=2019(int modifiers, int position) +evt void HotSpotDoubleClick=2020(int modifiers, int position) +evt void CallTipClick=2021(int position) +evt void AutoCSelection=2022(string text, int position, int ch, CompletionMethods listCompletionMethod) +evt void IndicatorClick=2023(int modifiers, int position) +evt void IndicatorRelease=2024(int modifiers, int position) +evt void AutoCCancelled=2025(void) +evt void AutoCCharDeleted=2026(void) +evt void HotSpotReleaseClick=2027(int modifiers, int position) +evt void FocusIn=2028(void) +evt void FocusOut=2029(void) +evt void AutoCCompleted=2030(string text, int position, int ch, CompletionMethods listCompletionMethod) +evt void MarginRightClick=2031(int modifiers, int position, int margin) +evt void AutoCSelectionChange=2032(int listType, string text, int position) + +cat Provisional + +enu LineCharacterIndexType=SC_LINECHARACTERINDEX_ +val SC_LINECHARACTERINDEX_NONE=0 +val SC_LINECHARACTERINDEX_UTF32=1 +val SC_LINECHARACTERINDEX_UTF16=2 + +# Retrieve line character index state. +get int GetLineCharacterIndex=2710(,) + +# Request line character index be created or its use count increased. +fun void AllocateLineCharacterIndex=2711(int lineCharacterIndex,) + +# Decrease use count of line character index and remove if 0. +fun void ReleaseLineCharacterIndex=2712(int lineCharacterIndex,) + +# Retrieve the document line containing a position measured in index units. +fun int LineFromIndexPosition=2713(position pos, int lineCharacterIndex) + +# Retrieve the position measured in index units at the start of a document line. +fun position IndexPositionFromLine=2714(int line, int lineCharacterIndex) + +cat Deprecated + +# Divide each styling byte into lexical class bits (default: 5) and indicator +# bits (default: 3). If a lexer requires more than 32 lexical states, then this +# is used to expand the possible states. +set void SetStyleBits=2090(int bits,) + +# Retrieve number of bits in style bytes used to hold the lexical state. +get int GetStyleBits=2091(,) + +# Retrieve the number of bits the current lexer needs for styling. +get int GetStyleBitsNeeded=4011(,) + +# Deprecated in 3.5.5 + +# Always interpret keyboard input as Unicode +set void SetKeysUnicode=2521(bool keysUnicode,) + +# Are keys always interpreted as Unicode? +get bool GetKeysUnicode=2522(,) diff --git a/third_party/qscintilla/scintilla/include/ScintillaWidget.h b/third_party/qscintilla/scintilla/include/ScintillaWidget.h new file mode 100644 index 0000000..1721f65 --- /dev/null +++ b/third_party/qscintilla/scintilla/include/ScintillaWidget.h @@ -0,0 +1,72 @@ +/* Scintilla source code edit control */ +/* @file ScintillaWidget.h + * Definition of Scintilla widget for GTK+. + * Only needed by GTK+ code but is harmless on other platforms. + * This comment is not a doc-comment as that causes warnings from g-ir-scanner. + */ +/* Copyright 1998-2001 by Neil Hodgson + * The License.txt file describes the conditions under which this software may be distributed. */ + +#ifndef SCINTILLAWIDGET_H +#define SCINTILLAWIDGET_H + +#if defined(GTK) + +#ifdef __cplusplus +extern "C" { +#endif + +#define SCINTILLA(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, scintilla_get_type (), ScintillaObject) +#define SCINTILLA_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, scintilla_get_type (), ScintillaClass) +#define IS_SCINTILLA(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, scintilla_get_type ()) + +#define SCINTILLA_TYPE_OBJECT (scintilla_object_get_type()) +#define SCINTILLA_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SCINTILLA_TYPE_OBJECT, ScintillaObject)) +#define SCINTILLA_IS_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SCINTILLA_TYPE_OBJECT)) +#define SCINTILLA_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SCINTILLA_TYPE_OBJECT, ScintillaObjectClass)) +#define SCINTILLA_IS_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SCINTILLA_TYPE_OBJECT)) +#define SCINTILLA_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), SCINTILLA_TYPE_OBJECT, ScintillaObjectClass)) + +typedef struct _ScintillaObject ScintillaObject; +typedef struct _ScintillaClass ScintillaObjectClass; + +struct _ScintillaObject { + GtkContainer cont; + void *pscin; +}; + +struct _ScintillaClass { + GtkContainerClass parent_class; + + void (* command) (ScintillaObject *sci, int cmd, GtkWidget *window); + void (* notify) (ScintillaObject *sci, int id, SCNotification *scn); +}; + +GType scintilla_object_get_type (void); +GtkWidget* scintilla_object_new (void); +gintptr scintilla_object_send_message (ScintillaObject *sci, unsigned int iMessage, guintptr wParam, gintptr lParam); + + +GType scnotification_get_type (void); +#define SCINTILLA_TYPE_NOTIFICATION (scnotification_get_type()) + +#ifndef G_IR_SCANNING +/* The legacy names confuse the g-ir-scanner program */ +typedef struct _ScintillaClass ScintillaClass; + +GType scintilla_get_type (void); +GtkWidget* scintilla_new (void); +void scintilla_set_id (ScintillaObject *sci, uptr_t id); +sptr_t scintilla_send_message (ScintillaObject *sci,unsigned int iMessage, uptr_t wParam, sptr_t lParam); +void scintilla_release_resources(void); +#endif + +#define SCINTILLA_NOTIFY "sci-notify" + +#ifdef __cplusplus +} +#endif + +#endif + +#endif diff --git a/third_party/qscintilla/scintilla/lexers/LexA68k.cpp b/third_party/qscintilla/scintilla/lexers/LexA68k.cpp new file mode 100644 index 0000000..1475ad0 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexA68k.cpp @@ -0,0 +1,345 @@ +// Scintilla source code edit control +/** @file LexA68k.cxx + ** Lexer for Assembler, just for the MASM syntax + ** Written by Martial Demolins AKA Folco + **/ +// Copyright 2010 Martial Demolins +// The License.txt file describes the conditions under which this software +// may be distributed. + + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + + +// Return values for GetOperatorType +#define NO_OPERATOR 0 +#define OPERATOR_1CHAR 1 +#define OPERATOR_2CHAR 2 + + +/** + * IsIdentifierStart + * + * Return true if the given char is a valid identifier first char + */ + +static inline bool IsIdentifierStart (const int ch) +{ + return (isalpha(ch) || (ch == '_') || (ch == '\\')); +} + + +/** + * IsIdentifierChar + * + * Return true if the given char is a valid identifier char + */ + +static inline bool IsIdentifierChar (const int ch) +{ + return (isalnum(ch) || (ch == '_') || (ch == '@') || (ch == ':') || (ch == '.')); +} + + +/** + * GetOperatorType + * + * Return: + * NO_OPERATOR if char is not an operator + * OPERATOR_1CHAR if the operator is one char long + * OPERATOR_2CHAR if the operator is two chars long + */ + +static inline int GetOperatorType (const int ch1, const int ch2) +{ + int OpType = NO_OPERATOR; + + if ((ch1 == '+') || (ch1 == '-') || (ch1 == '*') || (ch1 == '/') || (ch1 == '#') || + (ch1 == '(') || (ch1 == ')') || (ch1 == '~') || (ch1 == '&') || (ch1 == '|') || (ch1 == ',')) + OpType = OPERATOR_1CHAR; + + else if ((ch1 == ch2) && (ch1 == '<' || ch1 == '>')) + OpType = OPERATOR_2CHAR; + + return OpType; +} + + +/** + * IsBin + * + * Return true if the given char is 0 or 1 + */ + +static inline bool IsBin (const int ch) +{ + return (ch == '0') || (ch == '1'); +} + + +/** + * IsDoxygenChar + * + * Return true if the char may be part of a Doxygen keyword + */ + +static inline bool IsDoxygenChar (const int ch) +{ + return isalpha(ch) || (ch == '$') || (ch == '[') || (ch == ']') || (ch == '{') || (ch == '}'); +} + + +/** + * ColouriseA68kDoc + * + * Main function, which colourises a 68k source + */ + +static void ColouriseA68kDoc (Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], Accessor &styler) +{ + // Used to buffer a string, to be able to compare it using built-in functions + char Buffer[100]; + + + // Used to know the length of an operator + int OpType; + + + // Get references to keywords lists + WordList &cpuInstruction = *keywordlists[0]; + WordList ®isters = *keywordlists[1]; + WordList &directive = *keywordlists[2]; + WordList &extInstruction = *keywordlists[3]; + WordList &alert = *keywordlists[4]; + WordList &doxygenKeyword = *keywordlists[5]; + + + // Instanciate a context for our source + StyleContext sc(startPos, length, initStyle, styler); + + + /************************************************************ + * + * Parse the source + * + ************************************************************/ + + for ( ; sc.More(); sc.Forward()) + { + /************************************************************ + * + * A style always terminates at the end of a line, even for + * comments (no multi-lines comments) + * + ************************************************************/ + if (sc.atLineStart) { + sc.SetState(SCE_A68K_DEFAULT); + } + + + /************************************************************ + * + * If we are not in "default style", check if the style continues + * In this case, we just have to loop + * + ************************************************************/ + + if (sc.state != SCE_A68K_DEFAULT) + { + if ( ((sc.state == SCE_A68K_NUMBER_DEC) && isdigit(sc.ch)) // Decimal number + || ((sc.state == SCE_A68K_NUMBER_BIN) && IsBin(sc.ch)) // Binary number + || ((sc.state == SCE_A68K_NUMBER_HEX) && isxdigit(sc.ch)) // Hexa number + || ((sc.state == SCE_A68K_MACRO_ARG) && isdigit(sc.ch)) // Macro argument + || ((sc.state == SCE_A68K_STRING1) && (sc.ch != '\'')) // String single-quoted + || ((sc.state == SCE_A68K_STRING2) && (sc.ch != '\"')) // String double-quoted + || ((sc.state == SCE_A68K_MACRO_DECLARATION) && IsIdentifierChar(sc.ch)) // Macro declaration (or global label, we don't know at this point) + || ((sc.state == SCE_A68K_IDENTIFIER) && IsIdentifierChar(sc.ch)) // Identifier + || ((sc.state == SCE_A68K_LABEL) && IsIdentifierChar(sc.ch)) // Label (local) + || ((sc.state == SCE_A68K_COMMENT_DOXYGEN) && IsDoxygenChar(sc.ch)) // Doxygen keyword + || ((sc.state == SCE_A68K_COMMENT_SPECIAL) && isalpha(sc.ch)) // Alert + || ((sc.state == SCE_A68K_COMMENT) && !isalpha(sc.ch) && (sc.ch != '\\'))) // Normal comment + { + continue; + } + + /************************************************************ + * + * Check if current state terminates + * + ************************************************************/ + + // Strings: include terminal ' or " in the current string by skipping it + if ((sc.state == SCE_A68K_STRING1) || (sc.state == SCE_A68K_STRING2)) { + sc.Forward(); + } + + + // If a macro declaration was terminated with ':', it was a label + else if ((sc.state == SCE_A68K_MACRO_DECLARATION) && (sc.chPrev == ':')) { + sc.ChangeState(SCE_A68K_LABEL); + } + + + // If it wasn't a Doxygen keyword, change it to normal comment + else if (sc.state == SCE_A68K_COMMENT_DOXYGEN) { + sc.GetCurrent(Buffer, sizeof(Buffer)); + if (!doxygenKeyword.InList(Buffer)) { + sc.ChangeState(SCE_A68K_COMMENT); + } + sc.SetState(SCE_A68K_COMMENT); + continue; + } + + + // If it wasn't an Alert, change it to normal comment + else if (sc.state == SCE_A68K_COMMENT_SPECIAL) { + sc.GetCurrent(Buffer, sizeof(Buffer)); + if (!alert.InList(Buffer)) { + sc.ChangeState(SCE_A68K_COMMENT); + } + // Reset style to normal comment, or to Doxygen keyword if it begins with '\' + if (sc.ch == '\\') { + sc.SetState(SCE_A68K_COMMENT_DOXYGEN); + } + else { + sc.SetState(SCE_A68K_COMMENT); + } + continue; + } + + + // If we are in a comment, it's a Doxygen keyword or an Alert + else if (sc.state == SCE_A68K_COMMENT) { + if (sc.ch == '\\') { + sc.SetState(SCE_A68K_COMMENT_DOXYGEN); + } + else { + sc.SetState(SCE_A68K_COMMENT_SPECIAL); + } + continue; + } + + + // Check if we are at the end of an identifier + // In this case, colourise it if was a keyword. + else if ((sc.state == SCE_A68K_IDENTIFIER) && !IsIdentifierChar(sc.ch)) { + sc.GetCurrentLowered(Buffer, sizeof(Buffer)); // Buffer the string of the current context + if (cpuInstruction.InList(Buffer)) { // And check if it belongs to a keyword list + sc.ChangeState(SCE_A68K_CPUINSTRUCTION); + } + else if (extInstruction.InList(Buffer)) { + sc.ChangeState(SCE_A68K_EXTINSTRUCTION); + } + else if (registers.InList(Buffer)) { + sc.ChangeState(SCE_A68K_REGISTER); + } + else if (directive.InList(Buffer)) { + sc.ChangeState(SCE_A68K_DIRECTIVE); + } + } + + // All special contexts are now handled.Come back to default style + sc.SetState(SCE_A68K_DEFAULT); + } + + + /************************************************************ + * + * Check if we must enter a new state + * + ************************************************************/ + + // Something which begins at the beginning of a line, and with + // - '\' + an identifier start char, or + // - '\\@' + an identifier start char + // is a local label (second case is used for macro local labels). We set it already as a label, it can't be a macro/equ declaration + if (sc.atLineStart && (sc.ch < 0x80) && IsIdentifierStart(sc.chNext) && (sc.ch == '\\')) { + sc.SetState(SCE_A68K_LABEL); + } + + if (sc.atLineStart && (sc.ch < 0x80) && (sc.ch == '\\') && (sc.chNext == '\\')) { + sc.Forward(2); + if ((sc.ch == '@') && IsIdentifierStart(sc.chNext)) { + sc.ChangeState(SCE_A68K_LABEL); + sc.SetState(SCE_A68K_LABEL); + } + } + + // Label and macro identifiers start at the beginning of a line + // We set both as a macro id, but if it wasn't one (':' at the end), + // it will be changed as a label. + if (sc.atLineStart && (sc.ch < 0x80) && IsIdentifierStart(sc.ch)) { + sc.SetState(SCE_A68K_MACRO_DECLARATION); + } + else if ((sc.ch < 0x80) && (sc.ch == ';')) { // Default: alert in a comment. If it doesn't match + sc.SetState(SCE_A68K_COMMENT); // with an alert, it will be toggle to a normal comment + } + else if ((sc.ch < 0x80) && isdigit(sc.ch)) { // Decimal numbers haven't prefix + sc.SetState(SCE_A68K_NUMBER_DEC); + } + else if ((sc.ch < 0x80) && (sc.ch == '%')) { // Binary numbers are prefixed with '%' + sc.SetState(SCE_A68K_NUMBER_BIN); + } + else if ((sc.ch < 0x80) && (sc.ch == '$')) { // Hexadecimal numbers are prefixed with '$' + sc.SetState(SCE_A68K_NUMBER_HEX); + } + else if ((sc.ch < 0x80) && (sc.ch == '\'')) { // String (single-quoted) + sc.SetState(SCE_A68K_STRING1); + } + else if ((sc.ch < 0x80) && (sc.ch == '\"')) { // String (double-quoted) + sc.SetState(SCE_A68K_STRING2); + } + else if ((sc.ch < 0x80) && (sc.ch == '\\') && (isdigit(sc.chNext))) { // Replacement symbols in macro are prefixed with '\' + sc.SetState(SCE_A68K_MACRO_ARG); + } + else if ((sc.ch < 0x80) && IsIdentifierStart(sc.ch)) { // An identifier: constant, label, etc... + sc.SetState(SCE_A68K_IDENTIFIER); + } + else { + if (sc.ch < 0x80) { + OpType = GetOperatorType(sc.ch, sc.chNext); // Check if current char is an operator + if (OpType != NO_OPERATOR) { + sc.SetState(SCE_A68K_OPERATOR); + if (OpType == OPERATOR_2CHAR) { // Check if the operator is 2 bytes long + sc.ForwardSetState(SCE_A68K_OPERATOR); // (>> or <<) + } + } + } + } + } // End of for() + sc.Complete(); +} + + +// Names of the keyword lists + +static const char * const a68kWordListDesc[] = +{ + "CPU instructions", + "Registers", + "Directives", + "Extended instructions", + "Comment special words", + "Doxygen keywords", + 0 +}; + +LexerModule lmA68k(SCLEX_A68K, ColouriseA68kDoc, "a68k", 0, a68kWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexAPDL.cpp b/third_party/qscintilla/scintilla/lexers/LexAPDL.cpp new file mode 100644 index 0000000..447e40d --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAPDL.cpp @@ -0,0 +1,257 @@ +// Scintilla source code edit control +/** @file LexAPDL.cxx + ** Lexer for APDL. Based on the lexer for Assembler by The Black Horus. + ** By Hadar Raz. + **/ +// Copyright 1998-2003 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80 && (isalnum(ch) || ch == '_')); +} + +static inline bool IsAnOperator(char ch) { + // '.' left out as it is used to make up numbers + if (ch == '*' || ch == '/' || ch == '-' || ch == '+' || + ch == '(' || ch == ')' || ch == '=' || ch == '^' || + ch == '[' || ch == ']' || ch == '<' || ch == '&' || + ch == '>' || ch == ',' || ch == '|' || ch == '~' || + ch == '$' || ch == ':' || ch == '%') + return true; + return false; +} + +static void ColouriseAPDLDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + + int stringStart = ' '; + + WordList &processors = *keywordlists[0]; + WordList &commands = *keywordlists[1]; + WordList &slashcommands = *keywordlists[2]; + WordList &starcommands = *keywordlists[3]; + WordList &arguments = *keywordlists[4]; + WordList &functions = *keywordlists[5]; + + // Do not leak onto next line + initStyle = SCE_APDL_DEFAULT; + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + // Determine if the current state should terminate. + if (sc.state == SCE_APDL_NUMBER) { + if (!(IsADigit(sc.ch) || sc.ch == '.' || (sc.ch == 'e' || sc.ch == 'E') || + ((sc.ch == '+' || sc.ch == '-') && (sc.chPrev == 'e' || sc.chPrev == 'E')))) { + sc.SetState(SCE_APDL_DEFAULT); + } + } else if (sc.state == SCE_APDL_COMMENT) { + if (sc.atLineEnd) { + sc.SetState(SCE_APDL_DEFAULT); + } + } else if (sc.state == SCE_APDL_COMMENTBLOCK) { + if (sc.atLineEnd) { + if (sc.ch == '\r') { + sc.Forward(); + } + sc.ForwardSetState(SCE_APDL_DEFAULT); + } + } else if (sc.state == SCE_APDL_STRING) { + if (sc.atLineEnd) { + sc.SetState(SCE_APDL_DEFAULT); + } else if ((sc.ch == '\'' && stringStart == '\'') || (sc.ch == '\"' && stringStart == '\"')) { + sc.ForwardSetState(SCE_APDL_DEFAULT); + } + } else if (sc.state == SCE_APDL_WORD) { + if (!IsAWordChar(sc.ch)) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + if (processors.InList(s)) { + sc.ChangeState(SCE_APDL_PROCESSOR); + } else if (slashcommands.InList(s)) { + sc.ChangeState(SCE_APDL_SLASHCOMMAND); + } else if (starcommands.InList(s)) { + sc.ChangeState(SCE_APDL_STARCOMMAND); + } else if (commands.InList(s)) { + sc.ChangeState(SCE_APDL_COMMAND); + } else if (arguments.InList(s)) { + sc.ChangeState(SCE_APDL_ARGUMENT); + } else if (functions.InList(s)) { + sc.ChangeState(SCE_APDL_FUNCTION); + } + sc.SetState(SCE_APDL_DEFAULT); + } + } else if (sc.state == SCE_APDL_OPERATOR) { + if (!IsAnOperator(static_cast(sc.ch))) { + sc.SetState(SCE_APDL_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_APDL_DEFAULT) { + if (sc.ch == '!' && sc.chNext == '!') { + sc.SetState(SCE_APDL_COMMENTBLOCK); + } else if (sc.ch == '!') { + sc.SetState(SCE_APDL_COMMENT); + } else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_APDL_NUMBER); + } else if (sc.ch == '\'' || sc.ch == '\"') { + sc.SetState(SCE_APDL_STRING); + stringStart = sc.ch; + } else if (IsAWordChar(sc.ch) || ((sc.ch == '*' || sc.ch == '/') && !isgraph(sc.chPrev))) { + sc.SetState(SCE_APDL_WORD); + } else if (IsAnOperator(static_cast(sc.ch))) { + sc.SetState(SCE_APDL_OPERATOR); + } + } + } + sc.Complete(); +} + +//------------------------------------------------------------------------------ +// 06-27-07 Sergio Lucato +// - Included code folding for Ansys APDL lexer +// - Copyied from LexBasic.cxx and modified for APDL +//------------------------------------------------------------------------------ + +/* Bits: + * 1 - whitespace + * 2 - operator + * 4 - identifier + * 8 - decimal digit + * 16 - hex digit + * 32 - bin digit + */ +static int character_classification[128] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 2, 0, 2, 2, 2, 2, 2, 2, 2, 6, 2, 2, 2, 10, 6, + 60, 60, 28, 28, 28, 28, 28, 28, 28, 28, 2, 2, 2, 2, 2, 2, + 2, 20, 20, 20, 20, 20, 20, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 4, + 2, 20, 20, 20, 20, 20, 20, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 0 +}; + +static bool IsSpace(int c) { + return c < 128 && (character_classification[c] & 1); +} + +static bool IsIdentifier(int c) { + return c < 128 && (character_classification[c] & 4); +} + +static int LowerCase(int c) +{ + if (c >= 'A' && c <= 'Z') + return 'a' + c - 'A'; + return c; +} + +static int CheckAPDLFoldPoint(char const *token, int &level) { + if (!strcmp(token, "*if") || + !strcmp(token, "*do") || + !strcmp(token, "*dowhile") ) { + level |= SC_FOLDLEVELHEADERFLAG; + return 1; + } + if (!strcmp(token, "*endif") || + !strcmp(token, "*enddo") ) { + return -1; + } + return 0; +} + +static void FoldAPDLDoc(Sci_PositionU startPos, Sci_Position length, int, + WordList *[], Accessor &styler) { + + Sci_Position line = styler.GetLine(startPos); + int level = styler.LevelAt(line); + int go = 0, done = 0; + Sci_Position endPos = startPos + length; + char word[256]; + int wordlen = 0; + Sci_Position i; + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + // Scan for tokens at the start of the line (they may include + // whitespace, for tokens like "End Function" + for (i = startPos; i < endPos; i++) { + int c = styler.SafeGetCharAt(i); + if (!done && !go) { + if (wordlen) { // are we scanning a token already? + word[wordlen] = static_cast(LowerCase(c)); + if (!IsIdentifier(c)) { // done with token + word[wordlen] = '\0'; + go = CheckAPDLFoldPoint(word, level); + if (!go) { + // Treat any whitespace as single blank, for + // things like "End Function". + if (IsSpace(c) && IsIdentifier(word[wordlen - 1])) { + word[wordlen] = ' '; + if (wordlen < 255) + wordlen++; + } + else // done with this line + done = 1; + } + } else if (wordlen < 255) { + wordlen++; + } + } else { // start scanning at first non-whitespace character + if (!IsSpace(c)) { + if (IsIdentifier(c)) { + word[0] = static_cast(LowerCase(c)); + wordlen = 1; + } else // done with this line + done = 1; + } + } + } + if (c == '\n') { // line end + if (!done && wordlen == 0 && foldCompact) // line was only space + level |= SC_FOLDLEVELWHITEFLAG; + if (level != styler.LevelAt(line)) + styler.SetLevel(line, level); + level += go; + line++; + // reset state + wordlen = 0; + level &= ~SC_FOLDLEVELHEADERFLAG; + level &= ~SC_FOLDLEVELWHITEFLAG; + go = 0; + done = 0; + } + } +} + +static const char * const apdlWordListDesc[] = { + "processors", + "commands", + "slashommands", + "starcommands", + "arguments", + "functions", + 0 +}; + +LexerModule lmAPDL(SCLEX_APDL, ColouriseAPDLDoc, "apdl", FoldAPDLDoc, apdlWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexASY.cpp b/third_party/qscintilla/scintilla/lexers/LexASY.cpp new file mode 100644 index 0000000..3ec5227 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexASY.cpp @@ -0,0 +1,269 @@ +// Scintilla source code edit control +//Author: instanton (email: soft_share126com) +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static void ColouriseAsyDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + + CharacterSet setWordStart(CharacterSet::setAlpha, "_", 0x80, true); + CharacterSet setWord(CharacterSet::setAlphaNum, "._", 0x80, true); + + int visibleChars = 0; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + if (sc.atLineStart) { + if (sc.state == SCE_ASY_STRING) { + sc.SetState(SCE_ASY_STRING); + } + visibleChars = 0; + } + + if (sc.ch == '\\') { + if (sc.chNext == '\n' || sc.chNext == '\r') { + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } +// continuationLine = true; + continue; + } + } + + // Determine if the current state should terminate. + switch (sc.state) { + case SCE_ASY_OPERATOR: + sc.SetState(SCE_ASY_DEFAULT); + break; + case SCE_ASY_NUMBER: + if (!setWord.Contains(sc.ch)) { + sc.SetState(SCE_ASY_DEFAULT); + } + break; + case SCE_ASY_IDENTIFIER: + if (!setWord.Contains(sc.ch) || (sc.ch == '.')) { + char s[1000]; + sc.GetCurrentLowered(s, sizeof(s)); + if (keywords.InList(s)) { + sc.ChangeState(SCE_ASY_WORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_ASY_WORD2); + } + sc.SetState(SCE_ASY_DEFAULT); + } + break; + case SCE_ASY_COMMENT: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_ASY_DEFAULT); + } + break; + case SCE_ASY_COMMENTLINE: + if (sc.atLineStart) { + sc.SetState(SCE_ASY_DEFAULT); + } + break; + case SCE_ASY_STRING: + if (sc.atLineEnd) { + sc.ChangeState(SCE_ASY_STRINGEOL); + } else if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_ASY_DEFAULT); + } + break; + case SCE_ASY_CHARACTER: + if (sc.atLineEnd) { + sc.ChangeState(SCE_ASY_STRINGEOL); + } else if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\'') { + sc.ForwardSetState(SCE_ASY_DEFAULT); + } + break; + } + + // Determine if a new state should be entered. + if (sc.state == SCE_ASY_DEFAULT) { + if (setWordStart.Contains(sc.ch) || (sc.ch == '@')) { + sc.SetState(SCE_ASY_IDENTIFIER); + } else if (sc.Match('/', '*')) { + sc.SetState(SCE_ASY_COMMENT); + sc.Forward(); // + } else if (sc.Match('/', '/')) { + sc.SetState(SCE_ASY_COMMENTLINE); + } else if (sc.ch == '\"') { + sc.SetState(SCE_ASY_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_ASY_CHARACTER); + } else if (sc.ch == '#' && visibleChars == 0) { + do { + sc.Forward(); + } while ((sc.ch == ' ' || sc.ch == '\t') && sc.More()); + if (sc.atLineEnd) { + sc.SetState(SCE_ASY_DEFAULT); + } + } else if (isoperator(static_cast(sc.ch))) { + sc.SetState(SCE_ASY_OPERATOR); + } + } + + } + sc.Complete(); +} + +static bool IsAsyCommentStyle(int style) { + return style == SCE_ASY_COMMENT; +} + + +static inline bool isASYidentifier(int ch) { + return + ((ch >= 'a') && (ch <= 'z')) || ((ch >= 'A') && (ch <= 'Z')) ; +} + +static int ParseASYWord(Sci_PositionU pos, Accessor &styler, char *word) +{ + int length=0; + char ch=styler.SafeGetCharAt(pos); + *word=0; + + while(isASYidentifier(ch) && length<100){ + word[length]=ch; + length++; + ch=styler.SafeGetCharAt(pos+length); + } + word[length]=0; + return length; +} + +static bool IsASYDrawingLine(Sci_Position line, Accessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + + Sci_Position startpos = pos; + char buffer[100]=""; + + while (startpos 0) + levelCurrent = styler.LevelAt(lineCurrent-1) >> 16; + int levelMinCurrent = levelCurrent; + int levelNext = levelCurrent; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (foldComment && IsAsyCommentStyle(style)) { + if (!IsAsyCommentStyle(stylePrev) && (stylePrev != SCE_ASY_COMMENTLINEDOC)) { + levelNext++; + } else if (!IsAsyCommentStyle(styleNext) && (styleNext != SCE_ASY_COMMENTLINEDOC) && !atEOL) { + levelNext--; + } + } + if (style == SCE_ASY_OPERATOR) { + if (ch == '{') { + if (levelMinCurrent > levelNext) { + levelMinCurrent = levelNext; + } + levelNext++; + } else if (ch == '}') { + levelNext--; + } + } + + if (atEOL && IsASYDrawingLine(lineCurrent, styler)){ + if (lineCurrent==0 && IsASYDrawingLine(lineCurrent + 1, styler)) + levelNext++; + else if (lineCurrent!=0 && !IsASYDrawingLine(lineCurrent - 1, styler) + && IsASYDrawingLine(lineCurrent + 1, styler) + ) + levelNext++; + else if (lineCurrent!=0 && IsASYDrawingLine(lineCurrent - 1, styler) && + !IsASYDrawingLine(lineCurrent+1, styler)) + levelNext--; + } + + if (atEOL) { + int levelUse = levelCurrent; + if (foldAtElse) { + levelUse = levelMinCurrent; + } + int lev = levelUse | levelNext << 16; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if (levelUse < levelNext) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelCurrent = levelNext; + levelMinCurrent = levelCurrent; + visibleChars = 0; + } + if (!IsASpace(ch)) + visibleChars++; + } +} + +static const char * const asyWordLists[] = { + "Primary keywords and identifiers", + "Secondary keywords and identifiers", + 0, + }; + +LexerModule lmASY(SCLEX_ASYMPTOTE, ColouriseAsyDoc, "asy", FoldAsyDoc, asyWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexAU3.cpp b/third_party/qscintilla/scintilla/lexers/LexAU3.cpp new file mode 100644 index 0000000..b402941 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAU3.cpp @@ -0,0 +1,908 @@ +// Scintilla source code edit control +// @file LexAU3.cxx +// Lexer for AutoIt3 http://www.hiddensoft.com/autoit3 +// by Jos van der Zande, jvdzande@yahoo.com +// +// Changes: +// March 28, 2004 - Added the standard Folding code +// April 21, 2004 - Added Preprosessor Table + Syntax Highlighting +// Fixed Number highlighting +// Changed default isoperator to IsAOperator to have a better match to AutoIt3 +// Fixed "#comments_start" -> "#comments-start" +// Fixed "#comments_end" -> "#comments-end" +// Fixed Sendkeys in Strings when not terminated with } +// Added support for Sendkey strings that have second parameter e.g. {UP 5} or {a down} +// April 26, 2004 - Fixed # pre-processor statement inside of comment block would invalidly change the color. +// Added logic for #include to treat the <> as string +// Added underscore to IsAOperator. +// May 17, 2004 - Changed the folding logic from indent to keyword folding. +// Added Folding logic for blocks of single-commentlines or commentblock. +// triggered by: fold.comment=1 +// Added Folding logic for preprocessor blocks triggered by fold.preprocessor=1 +// Added Special for #region - #endregion syntax highlight and folding. +// May 30, 2004 - Fixed issue with continuation lines on If statements. +// June 5, 2004 - Added comma to Operators for better readability. +// Added fold.compact support set with fold.compact=1 +// Changed folding inside of #cs-#ce. Default is no keyword folding inside comment blocks when fold.comment=1 +// it will now only happen when fold.comment=2. +// Sep 5, 2004 - Added logic to handle colourizing words on the last line. +// Typed Characters now show as "default" till they match any table. +// Oct 10, 2004 - Added logic to show Comments in "Special" directives. +// Nov 1, 2004 - Added better testing for Numbers supporting x and e notation. +// Nov 28, 2004 - Added logic to handle continuation lines for syntax highlighting. +// Jan 10, 2005 - Added Abbreviations Keyword used for expansion +// Mar 24, 2005 - Updated Abbreviations Keywords to fix when followed by Operator. +// Apr 18, 2005 - Updated #CE/#Comment-End logic to take a linecomment ";" into account +// - Added folding support for With...EndWith +// - Added support for a DOT in variable names +// - Fixed Underscore in CommentBlock +// May 23, 2005 - Fixed the SentKey lexing in case of a missing } +// Aug 11, 2005 - Fixed possible bug with s_save length > 100. +// Aug 23, 2005 - Added Switch/endswitch support to the folding logic. +// Sep 27, 2005 - Fixed the SentKey lexing logic in case of multiple sentkeys. +// Mar 12, 2006 - Fixed issue with <> coloring as String in stead of Operator in rare occasions. +// Apr 8, 2006 - Added support for AutoIt3 Standard UDF library (SCE_AU3_UDF) +// Mar 9, 2007 - Fixed bug with + following a String getting the wrong Color. +// Jun 20, 2007 - Fixed Commentblock issue when LF's are used as EOL. +// Jul 26, 2007 - Fixed #endregion undetected bug. +// +// Copyright for Scintilla: 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. +// Scintilla source code edit control + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsTypeCharacter(const int ch) +{ + return ch == '$'; +} +static inline bool IsAWordChar(const int ch) +{ + return (ch < 0x80) && (isalnum(ch) || ch == '_'); +} + +static inline bool IsAWordStart(const int ch) +{ + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '@' || ch == '#' || ch == '$' || ch == '.'); +} + +static inline bool IsAOperator(char ch) { + if (IsASCII(ch) && isalnum(ch)) + return false; + if (ch == '+' || ch == '-' || ch == '*' || ch == '/' || + ch == '&' || ch == '^' || ch == '=' || ch == '<' || ch == '>' || + ch == '(' || ch == ')' || ch == '[' || ch == ']' || ch == ',' ) + return true; + return false; +} + +/////////////////////////////////////////////////////////////////////////////// +// GetSendKey() filters the portion before and after a/multiple space(s) +// and return the first portion to be looked-up in the table +// also check if the second portion is valid... (up,down.on.off,toggle or a number) +/////////////////////////////////////////////////////////////////////////////// + +static int GetSendKey(const char *szLine, char *szKey) +{ + int nFlag = 0; + int nStartFound = 0; + int nKeyPos = 0; + int nSpecPos= 0; + int nSpecNum= 1; + int nPos = 0; + char cTemp; + char szSpecial[100]; + + // split the portion of the sendkey in the part before and after the spaces + while ( ( (cTemp = szLine[nPos]) != '\0')) + { + // skip leading Ctrl/Shift/Alt state + if (cTemp == '{') { + nStartFound = 1; + } + // + if (nStartFound == 1) { + if ((cTemp == ' ') && (nFlag == 0) ) // get the stuff till first space + { + nFlag = 1; + // Add } to the end of the first bit for table lookup later. + szKey[nKeyPos++] = '}'; + } + else if (cTemp == ' ') + { + // skip other spaces + } + else if (nFlag == 0) + { + // save first portion into var till space or } is hit + szKey[nKeyPos++] = cTemp; + } + else if ((nFlag == 1) && (cTemp != '}')) + { + // Save second portion into var... + szSpecial[nSpecPos++] = cTemp; + // check if Second portion is all numbers for repeat fuction + if (isdigit(cTemp) == false) {nSpecNum = 0;} + } + } + nPos++; // skip to next char + + } // End While + + + // Check if the second portion is either a number or one of these keywords + szKey[nKeyPos] = '\0'; + szSpecial[nSpecPos] = '\0'; + if (strcmp(szSpecial,"down")== 0 || strcmp(szSpecial,"up")== 0 || + strcmp(szSpecial,"on")== 0 || strcmp(szSpecial,"off")== 0 || + strcmp(szSpecial,"toggle")== 0 || nSpecNum == 1 ) + { + nFlag = 0; + } + else + { + nFlag = 1; + } + return nFlag; // 1 is bad, 0 is good + +} // GetSendKey() + +// +// Routine to check the last "none comment" character on a line to see if its a continuation +// +static bool IsContinuationLine(Sci_PositionU szLine, Accessor &styler) +{ + Sci_Position nsPos = styler.LineStart(szLine); + Sci_Position nePos = styler.LineStart(szLine+1) - 2; + //int stylech = styler.StyleAt(nsPos); + while (nsPos < nePos) + { + //stylech = styler.StyleAt(nePos); + int stylech = styler.StyleAt(nsPos); + if (!(stylech == SCE_AU3_COMMENT)) { + char ch = styler.SafeGetCharAt(nePos); + if (!isspacechar(ch)) { + if (ch == '_') + return true; + else + return false; + } + } + nePos--; // skip to next char + } // End While + return false; +} // IsContinuationLine() + +// +// syntax highlighting logic +static void ColouriseAU3Doc(Sci_PositionU startPos, + Sci_Position length, int initStyle, + WordList *keywordlists[], + Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + WordList &keywords4 = *keywordlists[3]; + WordList &keywords5 = *keywordlists[4]; + WordList &keywords6 = *keywordlists[5]; + WordList &keywords7 = *keywordlists[6]; + WordList &keywords8 = *keywordlists[7]; + // find the first previous line without continuation character at the end + Sci_Position lineCurrent = styler.GetLine(startPos); + Sci_Position s_startPos = startPos; + // When not inside a Block comment: find First line without _ + if (!(initStyle==SCE_AU3_COMMENTBLOCK)) { + while ((lineCurrent > 0 && IsContinuationLine(lineCurrent,styler)) || + (lineCurrent > 1 && IsContinuationLine(lineCurrent-1,styler))) { + lineCurrent--; + startPos = styler.LineStart(lineCurrent); // get start position + initStyle = 0; // reset the start style to 0 + } + } + // Set the new length to include it from the start and set the start position + length = length + s_startPos - startPos; // correct the total length to process + styler.StartAt(startPos); + + StyleContext sc(startPos, length, initStyle, styler); + char si; // string indicator "=1 '=2 + char ni; // Numeric indicator error=9 normal=0 normal+dec=1 hex=2 Enot=3 + char ci; // comment indicator 0=not linecomment(;) + char s_save[100] = ""; + si=0; + ni=0; + ci=0; + //$$$ + for (; sc.More(); sc.Forward()) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + // ********************************************** + // save the total current word for eof processing + if (IsAWordChar(sc.ch) || sc.ch == '}') + { + strcpy(s_save,s); + int tp = static_cast(strlen(s_save)); + if (tp < 99) { + s_save[tp] = static_cast(tolower(sc.ch)); + s_save[tp+1] = '\0'; + } + } + // ********************************************** + // + switch (sc.state) + { + case SCE_AU3_COMMENTBLOCK: + { + //Reset at line end + if (sc.atLineEnd) { + ci=0; + if (strcmp(s, "#ce")== 0 || strcmp(s, "#comments-end")== 0) { + if (sc.atLineEnd) + sc.SetState(SCE_AU3_DEFAULT); + else + sc.SetState(SCE_AU3_COMMENTBLOCK); + } + break; + } + //skip rest of line when a ; is encountered + if (sc.chPrev == ';') { + ci=2; + sc.SetState(SCE_AU3_COMMENTBLOCK); + } + // skip rest of the line + if (ci==2) + break; + // check when first character is detected on the line + if (ci==0) { + if (IsAWordStart(static_cast(sc.ch)) || IsAOperator(static_cast(sc.ch))) { + ci=1; + sc.SetState(SCE_AU3_COMMENTBLOCK); + } + break; + } + if (!(IsAWordChar(sc.ch) || (sc.ch == '-' && strcmp(s, "#comments") == 0))) { + if ((strcmp(s, "#ce")== 0 || strcmp(s, "#comments-end")== 0)) + sc.SetState(SCE_AU3_COMMENT); // set to comment line for the rest of the line + else + ci=2; // line doesn't begin with #CE so skip the rest of the line + } + break; + } + case SCE_AU3_COMMENT: + { + if (sc.atLineEnd) {sc.SetState(SCE_AU3_DEFAULT);} + break; + } + case SCE_AU3_OPERATOR: + { + // check if its a COMobject + if (sc.chPrev == '.' && IsAWordChar(sc.ch)) { + sc.SetState(SCE_AU3_COMOBJ); + } + else { + sc.SetState(SCE_AU3_DEFAULT); + } + break; + } + case SCE_AU3_SPECIAL: + { + if (sc.ch == ';') {sc.SetState(SCE_AU3_COMMENT);} + if (sc.atLineEnd) {sc.SetState(SCE_AU3_DEFAULT);} + break; + } + case SCE_AU3_KEYWORD: + { + if (!(IsAWordChar(sc.ch) || (sc.ch == '-' && (strcmp(s, "#comments") == 0 || strcmp(s, "#include") == 0)))) + { + if (!IsTypeCharacter(sc.ch)) + { + if (strcmp(s, "#cs")== 0 || strcmp(s, "#comments-start")== 0 ) + { + sc.ChangeState(SCE_AU3_COMMENTBLOCK); + sc.SetState(SCE_AU3_COMMENTBLOCK); + break; + } + else if (keywords.InList(s)) { + sc.ChangeState(SCE_AU3_KEYWORD); + sc.SetState(SCE_AU3_DEFAULT); + } + else if (keywords2.InList(s)) { + sc.ChangeState(SCE_AU3_FUNCTION); + sc.SetState(SCE_AU3_DEFAULT); + } + else if (keywords3.InList(s)) { + sc.ChangeState(SCE_AU3_MACRO); + sc.SetState(SCE_AU3_DEFAULT); + } + else if (keywords5.InList(s)) { + sc.ChangeState(SCE_AU3_PREPROCESSOR); + sc.SetState(SCE_AU3_DEFAULT); + if (strcmp(s, "#include")== 0) + { + si = 3; // use to determine string start for #inlude <> + } + } + else if (keywords6.InList(s)) { + sc.ChangeState(SCE_AU3_SPECIAL); + sc.SetState(SCE_AU3_SPECIAL); + } + else if ((keywords7.InList(s)) && (!IsAOperator(static_cast(sc.ch)))) { + sc.ChangeState(SCE_AU3_EXPAND); + sc.SetState(SCE_AU3_DEFAULT); + } + else if (keywords8.InList(s)) { + sc.ChangeState(SCE_AU3_UDF); + sc.SetState(SCE_AU3_DEFAULT); + } + else if (strcmp(s, "_") == 0) { + sc.ChangeState(SCE_AU3_OPERATOR); + sc.SetState(SCE_AU3_DEFAULT); + } + else if (!IsAWordChar(sc.ch)) { + sc.ChangeState(SCE_AU3_DEFAULT); + sc.SetState(SCE_AU3_DEFAULT); + } + } + } + if (sc.atLineEnd) { + sc.SetState(SCE_AU3_DEFAULT);} + break; + } + case SCE_AU3_NUMBER: + { + // Numeric indicator error=9 normal=0 normal+dec=1 hex=2 E-not=3 + // + // test for Hex notation + if (strcmp(s, "0") == 0 && (sc.ch == 'x' || sc.ch == 'X') && ni == 0) + { + ni = 2; + break; + } + // test for E notation + if (IsADigit(sc.chPrev) && (sc.ch == 'e' || sc.ch == 'E') && ni <= 1) + { + ni = 3; + break; + } + // Allow Hex characters inside hex numeric strings + if ((ni == 2) && + (sc.ch == 'a' || sc.ch == 'b' || sc.ch == 'c' || sc.ch == 'd' || sc.ch == 'e' || sc.ch == 'f' || + sc.ch == 'A' || sc.ch == 'B' || sc.ch == 'C' || sc.ch == 'D' || sc.ch == 'E' || sc.ch == 'F' )) + { + break; + } + // test for 1 dec point only + if (sc.ch == '.') + { + if (ni==0) + { + ni=1; + } + else + { + ni=9; + } + break; + } + // end of numeric string ? + if (!(IsADigit(sc.ch))) + { + if (ni==9) + { + sc.ChangeState(SCE_AU3_DEFAULT); + } + sc.SetState(SCE_AU3_DEFAULT); + } + break; + } + case SCE_AU3_VARIABLE: + { + // Check if its a COMObject + if (sc.ch == '.' && !IsADigit(sc.chNext)) { + sc.SetState(SCE_AU3_OPERATOR); + } + else if (!IsAWordChar(sc.ch)) { + sc.SetState(SCE_AU3_DEFAULT); + } + break; + } + case SCE_AU3_COMOBJ: + { + if (!(IsAWordChar(sc.ch))) { + sc.SetState(SCE_AU3_DEFAULT); + } + break; + } + case SCE_AU3_STRING: + { + // check for " to end a double qouted string or + // check for ' to end a single qouted string + if ((si == 1 && sc.ch == '\"') || (si == 2 && sc.ch == '\'') || (si == 3 && sc.ch == '>')) + { + sc.ForwardSetState(SCE_AU3_DEFAULT); + si=0; + break; + } + if (sc.atLineEnd) + { + si=0; + // at line end and not found a continuation char then reset to default + Sci_Position lineCurrent = styler.GetLine(sc.currentPos); + if (!IsContinuationLine(lineCurrent,styler)) + { + sc.SetState(SCE_AU3_DEFAULT); + break; + } + } + // find Sendkeys in a STRING + if (sc.ch == '{' || sc.ch == '+' || sc.ch == '!' || sc.ch == '^' || sc.ch == '#' ) { + sc.SetState(SCE_AU3_SENT);} + break; + } + + case SCE_AU3_SENT: + { + // Send key string ended + if (sc.chPrev == '}' && sc.ch != '}') + { + // set color to SENDKEY when valid sendkey .. else set back to regular string + char sk[100]; + // split {111 222} and return {111} and check if 222 is valid. + // if return code = 1 then invalid 222 so must be string + if (GetSendKey(s,sk)) + { + sc.ChangeState(SCE_AU3_STRING); + } + // if single char between {?} then its ok as sendkey for a single character + else if (strlen(sk) == 3) + { + sc.ChangeState(SCE_AU3_SENT); + } + // if sendkey {111} is in table then ok as sendkey + else if (keywords4.InList(sk)) + { + sc.ChangeState(SCE_AU3_SENT); + } + else + { + sc.ChangeState(SCE_AU3_STRING); + } + sc.SetState(SCE_AU3_STRING); + } + else + { + // check if the start is a valid SendKey start + Sci_Position nPos = 0; + int nState = 1; + char cTemp; + while (!(nState == 2) && ((cTemp = s[nPos]) != '\0')) + { + if (cTemp == '{' && nState == 1) + { + nState = 2; + } + if (nState == 1 && !(cTemp == '+' || cTemp == '!' || cTemp == '^' || cTemp == '#' )) + { + nState = 0; + } + nPos++; + } + //Verify characters infront of { ... if not assume regular string + if (nState == 1 && (!(sc.ch == '{' || sc.ch == '+' || sc.ch == '!' || sc.ch == '^' || sc.ch == '#' ))) { + sc.ChangeState(SCE_AU3_STRING); + sc.SetState(SCE_AU3_STRING); + } + // If invalid character found then assume its a regular string + if (nState == 0) { + sc.ChangeState(SCE_AU3_STRING); + sc.SetState(SCE_AU3_STRING); + } + } + // check if next portion is again a sendkey + if (sc.atLineEnd) + { + sc.ChangeState(SCE_AU3_STRING); + sc.SetState(SCE_AU3_DEFAULT); + si = 0; // reset string indicator + } + //* check in next characters following a sentkey are again a sent key + // Need this test incase of 2 sentkeys like {F1}{ENTER} but not detect {{} + if (sc.state == SCE_AU3_STRING && (sc.ch == '{' || sc.ch == '+' || sc.ch == '!' || sc.ch == '^' || sc.ch == '#' )) { + sc.SetState(SCE_AU3_SENT);} + // check to see if the string ended... + // Sendkey string isn't complete but the string ended.... + if ((si == 1 && sc.ch == '\"') || (si == 2 && sc.ch == '\'')) + { + sc.ChangeState(SCE_AU3_STRING); + sc.ForwardSetState(SCE_AU3_DEFAULT); + } + break; + } + } //switch (sc.state) + + // Determine if a new state should be entered: + + if (sc.state == SCE_AU3_DEFAULT) + { + if (sc.ch == ';') {sc.SetState(SCE_AU3_COMMENT);} + else if (sc.ch == '#') {sc.SetState(SCE_AU3_KEYWORD);} + else if (sc.ch == '$') {sc.SetState(SCE_AU3_VARIABLE);} + else if (sc.ch == '.' && !IsADigit(sc.chNext)) {sc.SetState(SCE_AU3_OPERATOR);} + else if (sc.ch == '@') {sc.SetState(SCE_AU3_KEYWORD);} + //else if (sc.ch == '_') {sc.SetState(SCE_AU3_KEYWORD);} + else if (sc.ch == '<' && si==3) {sc.SetState(SCE_AU3_STRING);} // string after #include + else if (sc.ch == '\"') { + sc.SetState(SCE_AU3_STRING); + si = 1; } + else if (sc.ch == '\'') { + sc.SetState(SCE_AU3_STRING); + si = 2; } + else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) + { + sc.SetState(SCE_AU3_NUMBER); + ni = 0; + } + else if (IsAWordStart(sc.ch)) {sc.SetState(SCE_AU3_KEYWORD);} + else if (IsAOperator(static_cast(sc.ch))) {sc.SetState(SCE_AU3_OPERATOR);} + else if (sc.atLineEnd) {sc.SetState(SCE_AU3_DEFAULT);} + } + } //for (; sc.More(); sc.Forward()) + + //************************************* + // Colourize the last word correctly + //************************************* + if (sc.state == SCE_AU3_KEYWORD) + { + if (strcmp(s_save, "#cs")== 0 || strcmp(s_save, "#comments-start")== 0 ) + { + sc.ChangeState(SCE_AU3_COMMENTBLOCK); + sc.SetState(SCE_AU3_COMMENTBLOCK); + } + else if (keywords.InList(s_save)) { + sc.ChangeState(SCE_AU3_KEYWORD); + sc.SetState(SCE_AU3_KEYWORD); + } + else if (keywords2.InList(s_save)) { + sc.ChangeState(SCE_AU3_FUNCTION); + sc.SetState(SCE_AU3_FUNCTION); + } + else if (keywords3.InList(s_save)) { + sc.ChangeState(SCE_AU3_MACRO); + sc.SetState(SCE_AU3_MACRO); + } + else if (keywords5.InList(s_save)) { + sc.ChangeState(SCE_AU3_PREPROCESSOR); + sc.SetState(SCE_AU3_PREPROCESSOR); + } + else if (keywords6.InList(s_save)) { + sc.ChangeState(SCE_AU3_SPECIAL); + sc.SetState(SCE_AU3_SPECIAL); + } + else if (keywords7.InList(s_save) && sc.atLineEnd) { + sc.ChangeState(SCE_AU3_EXPAND); + sc.SetState(SCE_AU3_EXPAND); + } + else if (keywords8.InList(s_save)) { + sc.ChangeState(SCE_AU3_UDF); + sc.SetState(SCE_AU3_UDF); + } + else { + sc.ChangeState(SCE_AU3_DEFAULT); + sc.SetState(SCE_AU3_DEFAULT); + } + } + if (sc.state == SCE_AU3_SENT) + { + // Send key string ended + if (sc.chPrev == '}' && sc.ch != '}') + { + // set color to SENDKEY when valid sendkey .. else set back to regular string + char sk[100]; + // split {111 222} and return {111} and check if 222 is valid. + // if return code = 1 then invalid 222 so must be string + if (GetSendKey(s_save,sk)) + { + sc.ChangeState(SCE_AU3_STRING); + } + // if single char between {?} then its ok as sendkey for a single character + else if (strlen(sk) == 3) + { + sc.ChangeState(SCE_AU3_SENT); + } + // if sendkey {111} is in table then ok as sendkey + else if (keywords4.InList(sk)) + { + sc.ChangeState(SCE_AU3_SENT); + } + else + { + sc.ChangeState(SCE_AU3_STRING); + } + sc.SetState(SCE_AU3_STRING); + } + // check if next portion is again a sendkey + if (sc.atLineEnd) + { + sc.ChangeState(SCE_AU3_STRING); + sc.SetState(SCE_AU3_DEFAULT); + } + } + //************************************* + sc.Complete(); +} + +// +static bool IsStreamCommentStyle(int style) { + return style == SCE_AU3_COMMENT || style == SCE_AU3_COMMENTBLOCK; +} + +// +// Routine to find first none space on the current line and return its Style +// needed for comment lines not starting on pos 1 +static int GetStyleFirstWord(Sci_PositionU szLine, Accessor &styler) +{ + Sci_Position nsPos = styler.LineStart(szLine); + Sci_Position nePos = styler.LineStart(szLine+1) - 1; + while (isspacechar(styler.SafeGetCharAt(nsPos)) && nsPos < nePos) + { + nsPos++; // skip to next char + + } // End While + return styler.StyleAt(nsPos); + +} // GetStyleFirstWord() + + +// +static void FoldAU3Doc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) +{ + Sci_Position endPos = startPos + length; + // get settings from the config files for folding comments and preprocessor lines + bool foldComment = styler.GetPropertyInt("fold.comment") != 0; + bool foldInComment = styler.GetPropertyInt("fold.comment") == 2; + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + bool foldpreprocessor = styler.GetPropertyInt("fold.preprocessor") != 0; + // Backtrack to previous line in case need to fix its fold status + Sci_Position lineCurrent = styler.GetLine(startPos); + if (startPos > 0) { + if (lineCurrent > 0) { + lineCurrent--; + startPos = styler.LineStart(lineCurrent); + } + } + // vars for style of previous/current/next lines + int style = GetStyleFirstWord(lineCurrent,styler); + int stylePrev = 0; + // find the first previous line without continuation character at the end + while ((lineCurrent > 0 && IsContinuationLine(lineCurrent,styler)) || + (lineCurrent > 1 && IsContinuationLine(lineCurrent-1,styler))) { + lineCurrent--; + startPos = styler.LineStart(lineCurrent); + } + if (lineCurrent > 0) { + stylePrev = GetStyleFirstWord(lineCurrent-1,styler); + } + // vars for getting first word to check for keywords + bool FirstWordStart = false; + bool FirstWordEnd = false; + char szKeyword[11]=""; + int szKeywordlen = 0; + char szThen[5]=""; + int szThenlen = 0; + bool ThenFoundLast = false; + // var for indentlevel + int levelCurrent = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelCurrent = styler.LevelAt(lineCurrent-1) >> 16; + int levelNext = levelCurrent; + // + int visibleChars = 0; + char chNext = styler.SafeGetCharAt(startPos); + char chPrev = ' '; + // + for (Sci_Position i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + if (IsAWordChar(ch)) { + visibleChars++; + } + // get the syle for the current character neede to check in comment + int stylech = styler.StyleAt(i); + // get first word for the line for indent check max 9 characters + if (FirstWordStart && (!(FirstWordEnd))) { + if (!IsAWordChar(ch)) { + FirstWordEnd = true; + szKeyword[szKeywordlen] = '\0'; + } + else { + if (szKeywordlen < 10) { + szKeyword[szKeywordlen++] = static_cast(tolower(ch)); + } + } + } + // start the capture of the first word + if (!(FirstWordStart)) { + if (IsAWordChar(ch) || IsAWordStart(ch) || ch == ';') { + FirstWordStart = true; + szKeyword[szKeywordlen++] = static_cast(tolower(ch)); + } + } + // only process this logic when not in comment section + if (!(stylech == SCE_AU3_COMMENT)) { + if (ThenFoundLast) { + if (IsAWordChar(ch)) { + ThenFoundLast = false; + } + } + // find out if the word "then" is the last on a "if" line + if (FirstWordEnd && strcmp(szKeyword,"if") == 0) { + if (szThenlen == 4) { + szThen[0] = szThen[1]; + szThen[1] = szThen[2]; + szThen[2] = szThen[3]; + szThen[3] = static_cast(tolower(ch)); + if (strcmp(szThen,"then") == 0 ) { + ThenFoundLast = true; + } + } + else { + szThen[szThenlen++] = static_cast(tolower(ch)); + if (szThenlen == 5) { + szThen[4] = '\0'; + } + } + } + } + // End of Line found so process the information + if ((ch == '\r' && chNext != '\n') || (ch == '\n') || (i == endPos)) { + // ************************** + // Folding logic for Keywords + // ************************** + // if a keyword is found on the current line and the line doesn't end with _ (continuation) + // and we are not inside a commentblock. + if (szKeywordlen > 0 && (!(chPrev == '_')) && + ((!(IsStreamCommentStyle(style)) || foldInComment)) ) { + szKeyword[szKeywordlen] = '\0'; + // only fold "if" last keyword is "then" (else its a one line if) + if (strcmp(szKeyword,"if") == 0 && ThenFoundLast) { + levelNext++; + } + // create new fold for these words + if (strcmp(szKeyword,"do") == 0 || strcmp(szKeyword,"for") == 0 || + strcmp(szKeyword,"func") == 0 || strcmp(szKeyword,"while") == 0|| + strcmp(szKeyword,"with") == 0 || strcmp(szKeyword,"#region") == 0 ) { + levelNext++; + } + // create double Fold for select&switch because Case will subtract one of the current level + if (strcmp(szKeyword,"select") == 0 || strcmp(szKeyword,"switch") == 0) { + levelNext++; + levelNext++; + } + // end the fold for these words before the current line + if (strcmp(szKeyword,"endfunc") == 0 || strcmp(szKeyword,"endif") == 0 || + strcmp(szKeyword,"next") == 0 || strcmp(szKeyword,"until") == 0 || + strcmp(szKeyword,"endwith") == 0 ||strcmp(szKeyword,"wend") == 0){ + levelNext--; + levelCurrent--; + } + // end the fold for these words before the current line and Start new fold + if (strcmp(szKeyword,"case") == 0 || strcmp(szKeyword,"else") == 0 || + strcmp(szKeyword,"elseif") == 0 ) { + levelCurrent--; + } + // end the double fold for this word before the current line + if (strcmp(szKeyword,"endselect") == 0 || strcmp(szKeyword,"endswitch") == 0 ) { + levelNext--; + levelNext--; + levelCurrent--; + levelCurrent--; + } + // end the fold for these words on the current line + if (strcmp(szKeyword,"#endregion") == 0 ) { + levelNext--; + } + } + // Preprocessor and Comment folding + int styleNext = GetStyleFirstWord(lineCurrent + 1,styler); + // ************************************* + // Folding logic for preprocessor blocks + // ************************************* + // process preprosessor line + if (foldpreprocessor && style == SCE_AU3_PREPROCESSOR) { + if (!(stylePrev == SCE_AU3_PREPROCESSOR) && (styleNext == SCE_AU3_PREPROCESSOR)) { + levelNext++; + } + // fold till the last line for normal comment lines + else if (stylePrev == SCE_AU3_PREPROCESSOR && !(styleNext == SCE_AU3_PREPROCESSOR)) { + levelNext--; + } + } + // ********************************* + // Folding logic for Comment blocks + // ********************************* + if (foldComment && IsStreamCommentStyle(style)) { + // Start of a comment block + if (!(stylePrev==style) && IsStreamCommentStyle(styleNext) && styleNext==style) { + levelNext++; + } + // fold till the last line for normal comment lines + else if (IsStreamCommentStyle(stylePrev) + && !(styleNext == SCE_AU3_COMMENT) + && stylePrev == SCE_AU3_COMMENT + && style == SCE_AU3_COMMENT) { + levelNext--; + } + // fold till the one but last line for Blockcomment lines + else if (IsStreamCommentStyle(stylePrev) + && !(styleNext == SCE_AU3_COMMENTBLOCK) + && style == SCE_AU3_COMMENTBLOCK) { + levelNext--; + levelCurrent--; + } + } + int levelUse = levelCurrent; + int lev = levelUse | levelNext << 16; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if (levelUse < levelNext) { + lev |= SC_FOLDLEVELHEADERFLAG; + } + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + // reset values for the next line + lineCurrent++; + stylePrev = style; + style = styleNext; + levelCurrent = levelNext; + visibleChars = 0; + // if the last character is an Underscore then don't reset since the line continues on the next line. + if (!(chPrev == '_')) { + szKeywordlen = 0; + szThenlen = 0; + FirstWordStart = false; + FirstWordEnd = false; + ThenFoundLast = false; + } + } + // save the last processed character + if (!isspacechar(ch)) { + chPrev = ch; + visibleChars++; + } + } +} + + +// + +static const char * const AU3WordLists[] = { + "#autoit keywords", + "#autoit functions", + "#autoit macros", + "#autoit Sent keys", + "#autoit Pre-processors", + "#autoit Special", + "#autoit Expand", + "#autoit UDF", + 0 +}; +LexerModule lmAU3(SCLEX_AU3, ColouriseAU3Doc, "au3", FoldAU3Doc , AU3WordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexAVE.cpp b/third_party/qscintilla/scintilla/lexers/LexAVE.cpp new file mode 100644 index 0000000..b976734 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAVE.cpp @@ -0,0 +1,229 @@ +// SciTE - Scintilla based Text Editor +/** @file LexAVE.cxx + ** Lexer for Avenue. + ** + ** Written by Alexey Yutkin . + **/ +// Copyright 1998-2002 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_'); +} +static inline bool IsEnumChar(const int ch) { + return (ch < 0x80) && (isalnum(ch)|| ch == '_'); +} +static inline bool IsANumberChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' ); +} + +inline bool IsAWordStart(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_'); +} + +inline bool isAveOperator(char ch) { + if (IsASCII(ch) && isalnum(ch)) + return false; + // '.' left out as it is used to make up numbers + if (ch == '*' || ch == '/' || ch == '-' || ch == '+' || + ch == '(' || ch == ')' || ch == '=' || + ch == '{' || ch == '}' || + ch == '[' || ch == ']' || ch == ';' || + ch == '<' || ch == '>' || ch == ',' || + ch == '.' ) + return true; + return false; +} + +static void ColouriseAveDoc( + Sci_PositionU startPos, + Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + WordList &keywords4 = *keywordlists[3]; + WordList &keywords5 = *keywordlists[4]; + WordList &keywords6 = *keywordlists[5]; + + // Do not leak onto next line + if (initStyle == SCE_AVE_STRINGEOL) { + initStyle = SCE_AVE_DEFAULT; + } + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + if (sc.atLineEnd) { + // Update the line state, so it can be seen by next line + Sci_Position currentLine = styler.GetLine(sc.currentPos); + styler.SetLineState(currentLine, 0); + } + if (sc.atLineStart && (sc.state == SCE_AVE_STRING)) { + // Prevent SCE_AVE_STRINGEOL from leaking back to previous line + sc.SetState(SCE_AVE_STRING); + } + + + // Determine if the current state should terminate. + if (sc.state == SCE_AVE_OPERATOR) { + sc.SetState(SCE_AVE_DEFAULT); + } else if (sc.state == SCE_AVE_NUMBER) { + if (!IsANumberChar(sc.ch)) { + sc.SetState(SCE_AVE_DEFAULT); + } + } else if (sc.state == SCE_AVE_ENUM) { + if (!IsEnumChar(sc.ch)) { + sc.SetState(SCE_AVE_DEFAULT); + } + } else if (sc.state == SCE_AVE_IDENTIFIER) { + if (!IsAWordChar(sc.ch) || (sc.ch == '.')) { + char s[100]; + //sc.GetCurrent(s, sizeof(s)); + sc.GetCurrentLowered(s, sizeof(s)); + if (keywords.InList(s)) { + sc.ChangeState(SCE_AVE_WORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_AVE_WORD2); + } else if (keywords3.InList(s)) { + sc.ChangeState(SCE_AVE_WORD3); + } else if (keywords4.InList(s)) { + sc.ChangeState(SCE_AVE_WORD4); + } else if (keywords5.InList(s)) { + sc.ChangeState(SCE_AVE_WORD5); + } else if (keywords6.InList(s)) { + sc.ChangeState(SCE_AVE_WORD6); + } + sc.SetState(SCE_AVE_DEFAULT); + } + } else if (sc.state == SCE_AVE_COMMENT) { + if (sc.atLineEnd) { + sc.SetState(SCE_AVE_DEFAULT); + } + } else if (sc.state == SCE_AVE_STRING) { + if (sc.ch == '\"') { + sc.ForwardSetState(SCE_AVE_DEFAULT); + } else if (sc.atLineEnd) { + sc.ChangeState(SCE_AVE_STRINGEOL); + sc.ForwardSetState(SCE_AVE_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_AVE_DEFAULT) { + if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_AVE_NUMBER); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_AVE_IDENTIFIER); + } else if (sc.Match('\"')) { + sc.SetState(SCE_AVE_STRING); + } else if (sc.Match('\'')) { + sc.SetState(SCE_AVE_COMMENT); + sc.Forward(); + } else if (isAveOperator(static_cast(sc.ch))) { + sc.SetState(SCE_AVE_OPERATOR); + } else if (sc.Match('#')) { + sc.SetState(SCE_AVE_ENUM); + sc.Forward(); + } + } + } + sc.Complete(); +} + +static void FoldAveDoc(Sci_PositionU startPos, Sci_Position length, int /* initStyle */, WordList *[], + Accessor &styler) { + Sci_PositionU lengthDoc = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = static_cast(tolower(styler[startPos])); + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + int styleNext = styler.StyleAt(startPos); + char s[10] = ""; + + for (Sci_PositionU i = startPos; i < lengthDoc; i++) { + char ch = static_cast(tolower(chNext)); + chNext = static_cast(tolower(styler.SafeGetCharAt(i + 1))); + int style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (style == SCE_AVE_WORD) { + if (ch == 't' || ch == 'f' || ch == 'w' || ch == 'e') { + for (unsigned int j = 0; j < 6; j++) { + if (!iswordchar(styler[i + j])) { + break; + } + s[j] = static_cast(tolower(styler[i + j])); + s[j + 1] = '\0'; + } + + if ((strcmp(s, "then") == 0) || (strcmp(s, "for") == 0) || (strcmp(s, "while") == 0)) { + levelCurrent++; + } + if ((strcmp(s, "end") == 0) || (strcmp(s, "elseif") == 0)) { + // Normally "elseif" and "then" will be on the same line and will cancel + // each other out. // As implemented, this does not support fold.at.else. + levelCurrent--; + } + } + } else if (style == SCE_AVE_OPERATOR) { + if (ch == '{' || ch == '(') { + levelCurrent++; + } else if (ch == '}' || ch == ')') { + levelCurrent--; + } + } + + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0 && foldCompact) { + lev |= SC_FOLDLEVELWHITEFLAG; + } + if ((levelCurrent > levelPrev) && (visibleChars > 0)) { + lev |= SC_FOLDLEVELHEADERFLAG; + } + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) { + visibleChars++; + } + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +LexerModule lmAVE(SCLEX_AVE, ColouriseAveDoc, "ave", FoldAveDoc); + diff --git a/third_party/qscintilla/scintilla/lexers/LexAVS.cpp b/third_party/qscintilla/scintilla/lexers/LexAVS.cpp new file mode 100644 index 0000000..df5223f --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAVS.cpp @@ -0,0 +1,291 @@ +// Scintilla source code edit control +/** @file LexAVS.cxx + ** Lexer for AviSynth. + **/ +// Copyright 2012 by Bruno Barbieri +// Heavily based on LexPOV by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_'); +} + +static inline bool IsAWordStart(int ch) { + return isalpha(ch) || (ch != ' ' && ch != '\n' && ch != '(' && ch != '.' && ch != ','); +} + +static inline bool IsANumberChar(int ch) { + // Not exactly following number definition (several dots are seen as OK, etc.) + // but probably enough in most cases. + return (ch < 0x80) && + (isdigit(ch) || ch == '.' || ch == '-' || ch == '+'); +} + +static void ColouriseAvsDoc( + Sci_PositionU startPos, + Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &filters = *keywordlists[1]; + WordList &plugins = *keywordlists[2]; + WordList &functions = *keywordlists[3]; + WordList &clipProperties = *keywordlists[4]; + WordList &userDefined = *keywordlists[5]; + + Sci_Position currentLine = styler.GetLine(startPos); + // Initialize the block comment nesting level, if we are inside such a comment. + int blockCommentLevel = 0; + if (initStyle == SCE_AVS_COMMENTBLOCK || initStyle == SCE_AVS_COMMENTBLOCKN) { + blockCommentLevel = styler.GetLineState(currentLine - 1); + } + + // Do not leak onto next line + if (initStyle == SCE_AVS_COMMENTLINE) { + initStyle = SCE_AVS_DEFAULT; + } + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + if (sc.atLineEnd) { + // Update the line state, so it can be seen by next line + currentLine = styler.GetLine(sc.currentPos); + if (sc.state == SCE_AVS_COMMENTBLOCK || sc.state == SCE_AVS_COMMENTBLOCKN) { + // Inside a block comment, we set the line state + styler.SetLineState(currentLine, blockCommentLevel); + } else { + // Reset the line state + styler.SetLineState(currentLine, 0); + } + } + + // Determine if the current state should terminate. + if (sc.state == SCE_AVS_OPERATOR) { + sc.SetState(SCE_AVS_DEFAULT); + } else if (sc.state == SCE_AVS_NUMBER) { + // We stop the number definition on non-numerical non-dot non-sign char + if (!IsANumberChar(sc.ch)) { + sc.SetState(SCE_AVS_DEFAULT); + } + } else if (sc.state == SCE_AVS_IDENTIFIER) { + if (!IsAWordChar(sc.ch)) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + + if (keywords.InList(s)) { + sc.ChangeState(SCE_AVS_KEYWORD); + } else if (filters.InList(s)) { + sc.ChangeState(SCE_AVS_FILTER); + } else if (plugins.InList(s)) { + sc.ChangeState(SCE_AVS_PLUGIN); + } else if (functions.InList(s)) { + sc.ChangeState(SCE_AVS_FUNCTION); + } else if (clipProperties.InList(s)) { + sc.ChangeState(SCE_AVS_CLIPPROP); + } else if (userDefined.InList(s)) { + sc.ChangeState(SCE_AVS_USERDFN); + } + sc.SetState(SCE_AVS_DEFAULT); + } + } else if (sc.state == SCE_AVS_COMMENTBLOCK) { + if (sc.Match('/', '*')) { + blockCommentLevel++; + sc.Forward(); + } else if (sc.Match('*', '/') && blockCommentLevel > 0) { + blockCommentLevel--; + sc.Forward(); + if (blockCommentLevel == 0) { + sc.ForwardSetState(SCE_AVS_DEFAULT); + } + } + } else if (sc.state == SCE_AVS_COMMENTBLOCKN) { + if (sc.Match('[', '*')) { + blockCommentLevel++; + sc.Forward(); + } else if (sc.Match('*', ']') && blockCommentLevel > 0) { + blockCommentLevel--; + sc.Forward(); + if (blockCommentLevel == 0) { + sc.ForwardSetState(SCE_AVS_DEFAULT); + } + } + } else if (sc.state == SCE_AVS_COMMENTLINE) { + if (sc.atLineEnd) { + sc.ForwardSetState(SCE_AVS_DEFAULT); + } + } else if (sc.state == SCE_AVS_STRING) { + if (sc.ch == '\"') { + sc.ForwardSetState(SCE_AVS_DEFAULT); + } + } else if (sc.state == SCE_AVS_TRIPLESTRING) { + if (sc.Match("\"\"\"")) { + sc.Forward(); + sc.Forward(); + sc.ForwardSetState(SCE_AVS_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_AVS_DEFAULT) { + if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_AVS_NUMBER); + } else if (IsADigit(sc.ch) || (sc.ch == ',' && IsADigit(sc.chNext))) { + sc.Forward(); + sc.SetState(SCE_AVS_NUMBER); + } else if (sc.Match('/', '*')) { + blockCommentLevel = 1; + sc.SetState(SCE_AVS_COMMENTBLOCK); + sc.Forward(); // Eat the * so it isn't used for the end of the comment + } else if (sc.Match('[', '*')) { + blockCommentLevel = 1; + sc.SetState(SCE_AVS_COMMENTBLOCKN); + sc.Forward(); // Eat the * so it isn't used for the end of the comment + } else if (sc.ch == '#') { + sc.SetState(SCE_AVS_COMMENTLINE); + } else if (sc.ch == '\"') { + if (sc.Match("\"\"\"")) { + sc.SetState(SCE_AVS_TRIPLESTRING); + } else { + sc.SetState(SCE_AVS_STRING); + } + } else if (isoperator(static_cast(sc.ch))) { + sc.SetState(SCE_AVS_OPERATOR); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_AVS_IDENTIFIER); + } + } + } + + // End of file: complete any pending changeState + if (sc.state == SCE_AVS_IDENTIFIER) { + if (!IsAWordChar(sc.ch)) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + + if (keywords.InList(s)) { + sc.ChangeState(SCE_AVS_KEYWORD); + } else if (filters.InList(s)) { + sc.ChangeState(SCE_AVS_FILTER); + } else if (plugins.InList(s)) { + sc.ChangeState(SCE_AVS_PLUGIN); + } else if (functions.InList(s)) { + sc.ChangeState(SCE_AVS_FUNCTION); + } else if (clipProperties.InList(s)) { + sc.ChangeState(SCE_AVS_CLIPPROP); + } else if (userDefined.InList(s)) { + sc.ChangeState(SCE_AVS_USERDFN); + } + sc.SetState(SCE_AVS_DEFAULT); + } + } + + sc.Complete(); +} + +static void FoldAvsDoc( + Sci_PositionU startPos, + Sci_Position length, + int initStyle, + WordList *[], + Accessor &styler) { + + bool foldComment = styler.GetPropertyInt("fold.comment") != 0; + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (foldComment && style == SCE_AVS_COMMENTBLOCK) { + if (stylePrev != SCE_AVS_COMMENTBLOCK) { + levelCurrent++; + } else if ((styleNext != SCE_AVS_COMMENTBLOCK) && !atEOL) { + // Comments don't end at end of line and the next character may be unstyled. + levelCurrent--; + } + } + + if (foldComment && style == SCE_AVS_COMMENTBLOCKN) { + if (stylePrev != SCE_AVS_COMMENTBLOCKN) { + levelCurrent++; + } else if ((styleNext != SCE_AVS_COMMENTBLOCKN) && !atEOL) { + // Comments don't end at end of line and the next character may be unstyled. + levelCurrent--; + } + } + + if (style == SCE_AVS_OPERATOR) { + if (ch == '{') { + levelCurrent++; + } else if (ch == '}') { + levelCurrent--; + } + } + + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + + if (!isspacechar(ch)) + visibleChars++; + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const avsWordLists[] = { + "Keywords", + "Filters", + "Plugins", + "Functions", + "Clip properties", + "User defined functions", + 0, +}; + +LexerModule lmAVS(SCLEX_AVS, ColouriseAvsDoc, "avs", FoldAvsDoc, avsWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexAbaqus.cpp b/third_party/qscintilla/scintilla/lexers/LexAbaqus.cpp new file mode 100644 index 0000000..96a7b88 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAbaqus.cpp @@ -0,0 +1,603 @@ +// Scintilla source code edit control +/** @file LexABAQUS.cxx + ** Lexer for ABAQUS. Based on the lexer for APDL by Hadar Raz. + ** By Sergio Lucato. + ** Sort of completely rewritten by Gertjan Kloosterman + **/ +// The License.txt file describes the conditions under which this software may be distributed. + +// Code folding copyied and modified from LexBasic.cxx + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsAKeywordChar(const int ch) { + return (ch < 0x80 && (isalnum(ch) || (ch == '_') || (ch == ' '))); +} + +static inline bool IsASetChar(const int ch) { + return (ch < 0x80 && (isalnum(ch) || (ch == '_') || (ch == '.') || (ch == '-'))); +} + +static void ColouriseABAQUSDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList*[] /* *keywordlists[] */, + Accessor &styler) { + enum localState { KW_LINE_KW, KW_LINE_COMMA, KW_LINE_PAR, KW_LINE_EQ, KW_LINE_VAL, \ + DAT_LINE_VAL, DAT_LINE_COMMA,\ + COMMENT_LINE,\ + ST_ERROR, LINE_END } state ; + + // Do not leak onto next line + state = LINE_END ; + initStyle = SCE_ABAQUS_DEFAULT; + StyleContext sc(startPos, length, initStyle, styler); + + // Things are actually quite simple + // we have commentlines + // keywordlines and datalines + // On a data line there will only be colouring of numbers + // a keyword line is constructed as + // *word,[ paramname[=paramvalue]]* + // if the line ends with a , the keyword line continues onto the new line + + for (; sc.More(); sc.Forward()) { + switch ( state ) { + case KW_LINE_KW : + if ( sc.atLineEnd ) { + // finished the line in keyword state, switch to LINE_END + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = LINE_END ; + } else if ( IsAKeywordChar(sc.ch) ) { + // nothing changes + state = KW_LINE_KW ; + } else if ( sc.ch == ',' ) { + // Well well we say a comma, arguments *MUST* follow + sc.SetState(SCE_ABAQUS_OPERATOR) ; + state = KW_LINE_COMMA ; + } else { + // Flag an error + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + // Done with processing + break ; + case KW_LINE_COMMA : + // acomma on a keywordline was seen + if ( IsAKeywordChar(sc.ch)) { + sc.SetState(SCE_ABAQUS_ARGUMENT) ; + state = KW_LINE_PAR ; + } else if ( sc.atLineEnd || (sc.ch == ',') ) { + // we remain in keyword mode + state = KW_LINE_COMMA ; + } else if ( sc.ch == ' ' ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = KW_LINE_COMMA ; + } else { + // Anything else constitutes an error + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + break ; + case KW_LINE_PAR : + if ( sc.atLineEnd ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = LINE_END ; + } else if ( IsAKeywordChar(sc.ch) || (sc.ch == '-') ) { + // remain in this state + state = KW_LINE_PAR ; + } else if ( sc.ch == ',' ) { + sc.SetState(SCE_ABAQUS_OPERATOR) ; + state = KW_LINE_COMMA ; + } else if ( sc.ch == '=' ) { + sc.SetState(SCE_ABAQUS_OPERATOR) ; + state = KW_LINE_EQ ; + } else { + // Anything else constitutes an error + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + break ; + case KW_LINE_EQ : + if ( sc.ch == ' ' ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + // remain in this state + state = KW_LINE_EQ ; + } else if ( IsADigit(sc.ch) || (sc.ch == '-') || (sc.ch == '.' && IsADigit(sc.chNext)) ) { + sc.SetState(SCE_ABAQUS_NUMBER) ; + state = KW_LINE_VAL ; + } else if ( IsAKeywordChar(sc.ch) ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = KW_LINE_VAL ; + } else if ( (sc.ch == '\'') || (sc.ch == '\"') ) { + sc.SetState(SCE_ABAQUS_STRING) ; + state = KW_LINE_VAL ; + } else { + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + break ; + case KW_LINE_VAL : + if ( sc.atLineEnd ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = LINE_END ; + } else if ( IsASetChar(sc.ch) && (sc.state == SCE_ABAQUS_DEFAULT) ) { + // nothing changes + state = KW_LINE_VAL ; + } else if (( (IsADigit(sc.ch) || sc.ch == '.' || (sc.ch == 'e' || sc.ch == 'E') || + ((sc.ch == '+' || sc.ch == '-') && (sc.chPrev == 'e' || sc.chPrev == 'E')))) && + (sc.state == SCE_ABAQUS_NUMBER)) { + // remain in number mode + state = KW_LINE_VAL ; + } else if (sc.state == SCE_ABAQUS_STRING) { + // accept everything until a closing quote + if ( sc.ch == '\'' || sc.ch == '\"' ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = KW_LINE_VAL ; + } + } else if ( sc.ch == ',' ) { + sc.SetState(SCE_ABAQUS_OPERATOR) ; + state = KW_LINE_COMMA ; + } else { + // anything else is an error + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + break ; + case DAT_LINE_VAL : + if ( sc.atLineEnd ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = LINE_END ; + } else if ( IsASetChar(sc.ch) && (sc.state == SCE_ABAQUS_DEFAULT) ) { + // nothing changes + state = DAT_LINE_VAL ; + } else if (( (IsADigit(sc.ch) || sc.ch == '.' || (sc.ch == 'e' || sc.ch == 'E') || + ((sc.ch == '+' || sc.ch == '-') && (sc.chPrev == 'e' || sc.chPrev == 'E')))) && + (sc.state == SCE_ABAQUS_NUMBER)) { + // remain in number mode + state = DAT_LINE_VAL ; + } else if (sc.state == SCE_ABAQUS_STRING) { + // accept everything until a closing quote + if ( sc.ch == '\'' || sc.ch == '\"' ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = DAT_LINE_VAL ; + } + } else if ( sc.ch == ',' ) { + sc.SetState(SCE_ABAQUS_OPERATOR) ; + state = DAT_LINE_COMMA ; + } else { + // anything else is an error + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + break ; + case DAT_LINE_COMMA : + // a comma on a data line was seen + if ( sc.atLineEnd ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = LINE_END ; + } else if ( sc.ch == ' ' ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = DAT_LINE_COMMA ; + } else if (sc.ch == ',') { + sc.SetState(SCE_ABAQUS_OPERATOR) ; + state = DAT_LINE_COMMA ; + } else if ( IsADigit(sc.ch) || (sc.ch == '-')|| (sc.ch == '.' && IsADigit(sc.chNext)) ) { + sc.SetState(SCE_ABAQUS_NUMBER) ; + state = DAT_LINE_VAL ; + } else if ( IsAKeywordChar(sc.ch) ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = DAT_LINE_VAL ; + } else if ( (sc.ch == '\'') || (sc.ch == '\"') ) { + sc.SetState(SCE_ABAQUS_STRING) ; + state = DAT_LINE_VAL ; + } else { + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + break ; + case COMMENT_LINE : + if ( sc.atLineEnd ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = LINE_END ; + } + break ; + case ST_ERROR : + if ( sc.atLineEnd ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = LINE_END ; + } + break ; + case LINE_END : + if ( sc.atLineEnd || sc.ch == ' ' ) { + // nothing changes + state = LINE_END ; + } else if ( sc.ch == '*' ) { + if ( sc.chNext == '*' ) { + state = COMMENT_LINE ; + sc.SetState(SCE_ABAQUS_COMMENT) ; + } else { + state = KW_LINE_KW ; + sc.SetState(SCE_ABAQUS_STARCOMMAND) ; + } + } else { + // it must be a data line, things are as if we are in DAT_LINE_COMMA + if ( sc.ch == ',' ) { + sc.SetState(SCE_ABAQUS_OPERATOR) ; + state = DAT_LINE_COMMA ; + } else if ( IsADigit(sc.ch) || (sc.ch == '-')|| (sc.ch == '.' && IsADigit(sc.chNext)) ) { + sc.SetState(SCE_ABAQUS_NUMBER) ; + state = DAT_LINE_VAL ; + } else if ( IsAKeywordChar(sc.ch) ) { + sc.SetState(SCE_ABAQUS_DEFAULT) ; + state = DAT_LINE_VAL ; + } else if ( (sc.ch == '\'') || (sc.ch == '\"') ) { + sc.SetState(SCE_ABAQUS_STRING) ; + state = DAT_LINE_VAL ; + } else { + sc.SetState(SCE_ABAQUS_PROCESSOR) ; + state = ST_ERROR ; + } + } + break ; + } + } + sc.Complete(); +} + +//------------------------------------------------------------------------------ +// This copyied and modified from LexBasic.cxx +//------------------------------------------------------------------------------ + +/* Bits: + * 1 - whitespace + * 2 - operator + * 4 - identifier + * 8 - decimal digit + * 16 - hex digit + * 32 - bin digit + */ +static int character_classification[128] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 2, 0, 2, 2, 2, 2, 2, 2, 2, 6, 2, 2, 2, 10, 6, + 60, 60, 28, 28, 28, 28, 28, 28, 28, 28, 2, 2, 2, 2, 2, 2, + 2, 20, 20, 20, 20, 20, 20, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 4, + 2, 20, 20, 20, 20, 20, 20, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 2, 2, 2, 0 +}; + +static bool IsSpace(int c) { + return c < 128 && (character_classification[c] & 1); +} + +static bool IsIdentifier(int c) { + return c < 128 && (character_classification[c] & 4); +} + +static int LowerCase(int c) +{ + if (c >= 'A' && c <= 'Z') + return 'a' + c - 'A'; + return c; +} + +static Sci_Position LineEnd(Sci_Position line, Accessor &styler) +{ + const Sci_Position docLines = styler.GetLine(styler.Length() - 1); // Available last line + Sci_Position eol_pos ; + // if the line is the last line, the eol_pos is styler.Length() + // eol will contain a new line, or a virtual new line + if ( docLines == line ) + eol_pos = styler.Length() ; + else + eol_pos = styler.LineStart(line + 1) - 1; + return eol_pos ; +} + +static Sci_Position LineStart(Sci_Position line, Accessor &styler) +{ + return styler.LineStart(line) ; +} + +// LineType +// +// bits determines the line type +// 1 : data line +// 2 : only whitespace +// 3 : data line with only whitespace +// 4 : keyword line +// 5 : block open keyword line +// 6 : block close keyword line +// 7 : keyword line in error +// 8 : comment line +static int LineType(Sci_Position line, Accessor &styler) { + Sci_Position pos = LineStart(line, styler) ; + Sci_Position eol_pos = LineEnd(line, styler) ; + + int c ; + char ch = ' '; + + Sci_Position i = pos ; + while ( i < eol_pos ) { + c = styler.SafeGetCharAt(i); + ch = static_cast(LowerCase(c)); + // We can say something as soon as no whitespace + // was encountered + if ( !IsSpace(c) ) + break ; + i++ ; + } + + if ( i >= eol_pos ) { + // This is a whitespace line, currently + // classifies as data line + return 3 ; + } + + if ( ch != '*' ) { + // This is a data line + return 1 ; + } + + if ( i == eol_pos - 1 ) { + // Only a single *, error but make keyword line + return 4+3 ; + } + + // This means we can have a second character + // if that is also a * this means a comment + // otherwise it is a keyword. + c = styler.SafeGetCharAt(i+1); + ch = static_cast(LowerCase(c)); + if ( ch == '*' ) { + return 8 ; + } + + // At this point we know this is a keyword line + // the character at position i is a * + // it is not a comment line + char word[256] ; + int wlen = 0; + + word[wlen] = '*' ; + wlen++ ; + + i++ ; + while ( (i < eol_pos) && (wlen < 255) ) { + c = styler.SafeGetCharAt(i); + ch = static_cast(LowerCase(c)); + + if ( (!IsSpace(c)) && (!IsIdentifier(c)) ) + break ; + + if ( IsIdentifier(c) ) { + word[wlen] = ch ; + wlen++ ; + } + + i++ ; + } + + word[wlen] = 0 ; + + // Make a comparison + if ( !strcmp(word, "*step") || + !strcmp(word, "*part") || + !strcmp(word, "*instance") || + !strcmp(word, "*assembly")) { + return 4+1 ; + } + + if ( !strcmp(word, "*endstep") || + !strcmp(word, "*endpart") || + !strcmp(word, "*endinstance") || + !strcmp(word, "*endassembly")) { + return 4+2 ; + } + + return 4 ; +} + +static void SafeSetLevel(Sci_Position line, int level, Accessor &styler) +{ + if ( line < 0 ) + return ; + + int mask = ((~SC_FOLDLEVELHEADERFLAG) | (~SC_FOLDLEVELWHITEFLAG)); + + if ( (level & mask) < 0 ) + return ; + + if ( styler.LevelAt(line) != level ) + styler.SetLevel(line, level) ; +} + +static void FoldABAQUSDoc(Sci_PositionU startPos, Sci_Position length, int, +WordList *[], Accessor &styler) { + Sci_Position startLine = styler.GetLine(startPos) ; + Sci_Position endLine = styler.GetLine(startPos+length-1) ; + + // bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + // We want to deal with all the cases + // To know the correct indentlevel, we need to look back to the + // previous command line indentation level + // order of formatting keyline datalines commentlines + Sci_Position beginData = -1 ; + Sci_Position beginComment = -1 ; + Sci_Position prvKeyLine = startLine ; + Sci_Position prvKeyLineTp = 0 ; + + // Scan until we find the previous keyword line + // this will give us the level reference that we need + while ( prvKeyLine > 0 ) { + prvKeyLine-- ; + prvKeyLineTp = LineType(prvKeyLine, styler) ; + if ( prvKeyLineTp & 4 ) + break ; + } + + // Determine the base line level of all lines following + // the previous keyword + // new keyword lines are placed on this level + //if ( prvKeyLineTp & 4 ) { + int level = styler.LevelAt(prvKeyLine) & ~SC_FOLDLEVELHEADERFLAG ; + //} + + // uncomment line below if weird behaviour continues + prvKeyLine = -1 ; + + // Now start scanning over the lines. + for ( Sci_Position line = startLine; line <= endLine; line++ ) { + int lineType = LineType(line, styler) ; + + // Check for comment line + if ( lineType == 8 ) { + if ( beginComment < 0 ) { + beginComment = line ; + } + } + + // Check for data line + if ( (lineType == 1) || (lineType == 3) ) { + if ( beginData < 0 ) { + if ( beginComment >= 0 ) { + beginData = beginComment ; + } else { + beginData = line ; + } + } + beginComment = -1 ; + } + + // Check for keywordline. + // As soon as a keyword line is encountered, we can set the + // levels of everything from the previous keyword line to this one + if ( lineType & 4 ) { + // this is a keyword, we can now place the previous keyword + // all its data lines and the remainder + + // Write comments and data line + if ( beginComment < 0 ) { + beginComment = line ; + } + + if ( beginData < 0 ) { + beginData = beginComment ; + if ( prvKeyLineTp != 5 ) + SafeSetLevel(prvKeyLine, level, styler) ; + else + SafeSetLevel(prvKeyLine, level | SC_FOLDLEVELHEADERFLAG, styler) ; + } else { + SafeSetLevel(prvKeyLine, level | SC_FOLDLEVELHEADERFLAG, styler) ; + } + + int datLevel = level + 1 ; + if ( !(prvKeyLineTp & 4) ) { + datLevel = level ; + } + + for ( Sci_Position ll = beginData; ll < beginComment; ll++ ) + SafeSetLevel(ll, datLevel, styler) ; + + // The keyword we just found is going to be written at another level + // if we have a type 5 and type 6 + if ( prvKeyLineTp == 5 ) { + level += 1 ; + } + + if ( prvKeyLineTp == 6 ) { + level -= 1 ; + if ( level < 0 ) { + level = 0 ; + } + } + + for ( Sci_Position lll = beginComment; lll < line; lll++ ) + SafeSetLevel(lll, level, styler) ; + + // wrap and reset + beginComment = -1 ; + beginData = -1 ; + prvKeyLine = line ; + prvKeyLineTp = lineType ; + } + + } + + if ( beginComment < 0 ) { + beginComment = endLine + 1 ; + } else { + // We need to find out whether this comment block is followed by + // a data line or a keyword line + const Sci_Position docLines = styler.GetLine(styler.Length() - 1); + + for ( Sci_Position line = endLine + 1; line <= docLines; line++ ) { + Sci_Position lineType = LineType(line, styler) ; + + if ( lineType != 8 ) { + if ( !(lineType & 4) ) { + beginComment = endLine + 1 ; + } + break ; + } + } + } + + if ( beginData < 0 ) { + beginData = beginComment ; + if ( prvKeyLineTp != 5 ) + SafeSetLevel(prvKeyLine, level, styler) ; + else + SafeSetLevel(prvKeyLine, level | SC_FOLDLEVELHEADERFLAG, styler) ; + } else { + SafeSetLevel(prvKeyLine, level | SC_FOLDLEVELHEADERFLAG, styler) ; + } + + int datLevel = level + 1 ; + if ( !(prvKeyLineTp & 4) ) { + datLevel = level ; + } + + for ( Sci_Position ll = beginData; ll < beginComment; ll++ ) + SafeSetLevel(ll, datLevel, styler) ; + + if ( prvKeyLineTp == 5 ) { + level += 1 ; + } + + if ( prvKeyLineTp == 6 ) { + level -= 1 ; + } + for ( Sci_Position m = beginComment; m <= endLine; m++ ) + SafeSetLevel(m, level, styler) ; +} + +static const char * const abaqusWordListDesc[] = { + "processors", + "commands", + "slashommands", + "starcommands", + "arguments", + "functions", + 0 +}; + +LexerModule lmAbaqus(SCLEX_ABAQUS, ColouriseABAQUSDoc, "abaqus", FoldABAQUSDoc, abaqusWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexAda.cpp b/third_party/qscintilla/scintilla/lexers/LexAda.cpp new file mode 100644 index 0000000..9d7f5d0 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAda.cpp @@ -0,0 +1,513 @@ +// Scintilla source code edit control +/** @file LexAda.cxx + ** Lexer for Ada 95 + **/ +// Copyright 2002 by Sergey Koshcheyev +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +/* + * Interface + */ + +static void ColouriseDocument( + Sci_PositionU startPos, + Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler); + +static const char * const adaWordListDesc[] = { + "Keywords", + 0 +}; + +LexerModule lmAda(SCLEX_ADA, ColouriseDocument, "ada", NULL, adaWordListDesc); + +/* + * Implementation + */ + +// Functions that have apostropheStartsAttribute as a parameter set it according to whether +// an apostrophe encountered after processing the current token will start an attribute or +// a character literal. +static void ColouriseCharacter(StyleContext& sc, bool& apostropheStartsAttribute); +static void ColouriseComment(StyleContext& sc, bool& apostropheStartsAttribute); +static void ColouriseContext(StyleContext& sc, char chEnd, int stateEOL); +static void ColouriseDelimiter(StyleContext& sc, bool& apostropheStartsAttribute); +static void ColouriseLabel(StyleContext& sc, WordList& keywords, bool& apostropheStartsAttribute); +static void ColouriseNumber(StyleContext& sc, bool& apostropheStartsAttribute); +static void ColouriseString(StyleContext& sc, bool& apostropheStartsAttribute); +static void ColouriseWhiteSpace(StyleContext& sc, bool& apostropheStartsAttribute); +static void ColouriseWord(StyleContext& sc, WordList& keywords, bool& apostropheStartsAttribute); + +static inline bool IsDelimiterCharacter(int ch); +static inline bool IsSeparatorOrDelimiterCharacter(int ch); +static bool IsValidIdentifier(const std::string& identifier); +static bool IsValidNumber(const std::string& number); +static inline bool IsWordStartCharacter(int ch); +static inline bool IsWordCharacter(int ch); + +static void ColouriseCharacter(StyleContext& sc, bool& apostropheStartsAttribute) { + apostropheStartsAttribute = true; + + sc.SetState(SCE_ADA_CHARACTER); + + // Skip the apostrophe and one more character (so that '' is shown as non-terminated and ''' + // is handled correctly) + sc.Forward(); + sc.Forward(); + + ColouriseContext(sc, '\'', SCE_ADA_CHARACTEREOL); +} + +static void ColouriseContext(StyleContext& sc, char chEnd, int stateEOL) { + while (!sc.atLineEnd && !sc.Match(chEnd)) { + sc.Forward(); + } + + if (!sc.atLineEnd) { + sc.ForwardSetState(SCE_ADA_DEFAULT); + } else { + sc.ChangeState(stateEOL); + } +} + +static void ColouriseComment(StyleContext& sc, bool& /*apostropheStartsAttribute*/) { + // Apostrophe meaning is not changed, but the parameter is present for uniformity + + sc.SetState(SCE_ADA_COMMENTLINE); + + while (!sc.atLineEnd) { + sc.Forward(); + } +} + +static void ColouriseDelimiter(StyleContext& sc, bool& apostropheStartsAttribute) { + apostropheStartsAttribute = sc.Match (')'); + sc.SetState(SCE_ADA_DELIMITER); + sc.ForwardSetState(SCE_ADA_DEFAULT); +} + +static void ColouriseLabel(StyleContext& sc, WordList& keywords, bool& apostropheStartsAttribute) { + apostropheStartsAttribute = false; + + sc.SetState(SCE_ADA_LABEL); + + // Skip "<<" + sc.Forward(); + sc.Forward(); + + std::string identifier; + + while (!sc.atLineEnd && !IsSeparatorOrDelimiterCharacter(sc.ch)) { + identifier += static_cast(tolower(sc.ch)); + sc.Forward(); + } + + // Skip ">>" + if (sc.Match('>', '>')) { + sc.Forward(); + sc.Forward(); + } else { + sc.ChangeState(SCE_ADA_ILLEGAL); + } + + // If the name is an invalid identifier or a keyword, then make it invalid label + if (!IsValidIdentifier(identifier) || keywords.InList(identifier.c_str())) { + sc.ChangeState(SCE_ADA_ILLEGAL); + } + + sc.SetState(SCE_ADA_DEFAULT); + +} + +static void ColouriseNumber(StyleContext& sc, bool& apostropheStartsAttribute) { + apostropheStartsAttribute = true; + + std::string number; + sc.SetState(SCE_ADA_NUMBER); + + // Get all characters up to a delimiter or a separator, including points, but excluding + // double points (ranges). + while (!IsSeparatorOrDelimiterCharacter(sc.ch) || (sc.ch == '.' && sc.chNext != '.')) { + number += static_cast(sc.ch); + sc.Forward(); + } + + // Special case: exponent with sign + if ((sc.chPrev == 'e' || sc.chPrev == 'E') && + (sc.ch == '+' || sc.ch == '-')) { + number += static_cast(sc.ch); + sc.Forward (); + + while (!IsSeparatorOrDelimiterCharacter(sc.ch)) { + number += static_cast(sc.ch); + sc.Forward(); + } + } + + if (!IsValidNumber(number)) { + sc.ChangeState(SCE_ADA_ILLEGAL); + } + + sc.SetState(SCE_ADA_DEFAULT); +} + +static void ColouriseString(StyleContext& sc, bool& apostropheStartsAttribute) { + apostropheStartsAttribute = true; + + sc.SetState(SCE_ADA_STRING); + sc.Forward(); + + ColouriseContext(sc, '"', SCE_ADA_STRINGEOL); +} + +static void ColouriseWhiteSpace(StyleContext& sc, bool& /*apostropheStartsAttribute*/) { + // Apostrophe meaning is not changed, but the parameter is present for uniformity + sc.SetState(SCE_ADA_DEFAULT); + sc.ForwardSetState(SCE_ADA_DEFAULT); +} + +static void ColouriseWord(StyleContext& sc, WordList& keywords, bool& apostropheStartsAttribute) { + apostropheStartsAttribute = true; + sc.SetState(SCE_ADA_IDENTIFIER); + + std::string word; + + while (!sc.atLineEnd && !IsSeparatorOrDelimiterCharacter(sc.ch)) { + word += static_cast(tolower(sc.ch)); + sc.Forward(); + } + + if (!IsValidIdentifier(word)) { + sc.ChangeState(SCE_ADA_ILLEGAL); + + } else if (keywords.InList(word.c_str())) { + sc.ChangeState(SCE_ADA_WORD); + + if (word != "all") { + apostropheStartsAttribute = false; + } + } + + sc.SetState(SCE_ADA_DEFAULT); +} + +// +// ColouriseDocument +// + +static void ColouriseDocument( + Sci_PositionU startPos, + Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler) { + WordList &keywords = *keywordlists[0]; + + StyleContext sc(startPos, length, initStyle, styler); + + Sci_Position lineCurrent = styler.GetLine(startPos); + bool apostropheStartsAttribute = (styler.GetLineState(lineCurrent) & 1) != 0; + + while (sc.More()) { + if (sc.atLineEnd) { + // Go to the next line + sc.Forward(); + lineCurrent++; + + // Remember the line state for future incremental lexing + styler.SetLineState(lineCurrent, apostropheStartsAttribute); + + // Don't continue any styles on the next line + sc.SetState(SCE_ADA_DEFAULT); + } + + // Comments + if (sc.Match('-', '-')) { + ColouriseComment(sc, apostropheStartsAttribute); + + // Strings + } else if (sc.Match('"')) { + ColouriseString(sc, apostropheStartsAttribute); + + // Characters + } else if (sc.Match('\'') && !apostropheStartsAttribute) { + ColouriseCharacter(sc, apostropheStartsAttribute); + + // Labels + } else if (sc.Match('<', '<')) { + ColouriseLabel(sc, keywords, apostropheStartsAttribute); + + // Whitespace + } else if (IsASpace(sc.ch)) { + ColouriseWhiteSpace(sc, apostropheStartsAttribute); + + // Delimiters + } else if (IsDelimiterCharacter(sc.ch)) { + ColouriseDelimiter(sc, apostropheStartsAttribute); + + // Numbers + } else if (IsADigit(sc.ch) || sc.ch == '#') { + ColouriseNumber(sc, apostropheStartsAttribute); + + // Keywords or identifiers + } else { + ColouriseWord(sc, keywords, apostropheStartsAttribute); + } + } + + sc.Complete(); +} + +static inline bool IsDelimiterCharacter(int ch) { + switch (ch) { + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '|': + return true; + default: + return false; + } +} + +static inline bool IsSeparatorOrDelimiterCharacter(int ch) { + return IsASpace(ch) || IsDelimiterCharacter(ch); +} + +static bool IsValidIdentifier(const std::string& identifier) { + // First character can't be '_', so initialize the flag to true + bool lastWasUnderscore = true; + + size_t length = identifier.length(); + + // Zero-length identifiers are not valid (these can occur inside labels) + if (length == 0) { + return false; + } + + // Check for valid character at the start + if (!IsWordStartCharacter(identifier[0])) { + return false; + } + + // Check for only valid characters and no double underscores + for (size_t i = 0; i < length; i++) { + if (!IsWordCharacter(identifier[i]) || + (identifier[i] == '_' && lastWasUnderscore)) { + return false; + } + lastWasUnderscore = identifier[i] == '_'; + } + + // Check for underscore at the end + if (lastWasUnderscore == true) { + return false; + } + + // All checks passed + return true; +} + +static bool IsValidNumber(const std::string& number) { + size_t hashPos = number.find("#"); + bool seenDot = false; + + size_t i = 0; + size_t length = number.length(); + + if (length == 0) + return false; // Just in case + + // Decimal number + if (hashPos == std::string::npos) { + bool canBeSpecial = false; + + for (; i < length; i++) { + if (number[i] == '_') { + if (!canBeSpecial) { + return false; + } + canBeSpecial = false; + } else if (number[i] == '.') { + if (!canBeSpecial || seenDot) { + return false; + } + canBeSpecial = false; + seenDot = true; + } else if (IsADigit(number[i])) { + canBeSpecial = true; + } else { + break; + } + } + + if (!canBeSpecial) + return false; + } else { + // Based number + bool canBeSpecial = false; + int base = 0; + + // Parse base + for (; i < length; i++) { + int ch = number[i]; + if (ch == '_') { + if (!canBeSpecial) + return false; + canBeSpecial = false; + } else if (IsADigit(ch)) { + base = base * 10 + (ch - '0'); + if (base > 16) + return false; + canBeSpecial = true; + } else if (ch == '#' && canBeSpecial) { + break; + } else { + return false; + } + } + + if (base < 2) + return false; + if (i == length) + return false; + + i++; // Skip over '#' + + // Parse number + canBeSpecial = false; + + for (; i < length; i++) { + int ch = tolower(number[i]); + + if (ch == '_') { + if (!canBeSpecial) { + return false; + } + canBeSpecial = false; + + } else if (ch == '.') { + if (!canBeSpecial || seenDot) { + return false; + } + canBeSpecial = false; + seenDot = true; + + } else if (IsADigit(ch)) { + if (ch - '0' >= base) { + return false; + } + canBeSpecial = true; + + } else if (ch >= 'a' && ch <= 'f') { + if (ch - 'a' + 10 >= base) { + return false; + } + canBeSpecial = true; + + } else if (ch == '#' && canBeSpecial) { + break; + + } else { + return false; + } + } + + if (i == length) { + return false; + } + + i++; + } + + // Exponent (optional) + if (i < length) { + if (number[i] != 'e' && number[i] != 'E') + return false; + + i++; // Move past 'E' + + if (i == length) { + return false; + } + + if (number[i] == '+') + i++; + else if (number[i] == '-') { + if (seenDot) { + i++; + } else { + return false; // Integer literals should not have negative exponents + } + } + + if (i == length) { + return false; + } + + bool canBeSpecial = false; + + for (; i < length; i++) { + if (number[i] == '_') { + if (!canBeSpecial) { + return false; + } + canBeSpecial = false; + } else if (IsADigit(number[i])) { + canBeSpecial = true; + } else { + return false; + } + } + + if (!canBeSpecial) + return false; + } + + // if i == length, number was parsed successfully. + return i == length; +} + +static inline bool IsWordCharacter(int ch) { + return IsWordStartCharacter(ch) || IsADigit(ch); +} + +static inline bool IsWordStartCharacter(int ch) { + return (IsASCII(ch) && isalpha(ch)) || ch == '_'; +} diff --git a/third_party/qscintilla/scintilla/lexers/LexAsm.cpp b/third_party/qscintilla/scintilla/lexers/LexAsm.cpp new file mode 100644 index 0000000..bd82b16 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAsm.cpp @@ -0,0 +1,466 @@ +// Scintilla source code edit control +/** @file LexAsm.cxx + ** Lexer for Assembler, just for the MASM syntax + ** Written by The Black Horus + ** Enhancements and NASM stuff by Kein-Hong Man, 2003-10 + ** SCE_ASM_COMMENTBLOCK and SCE_ASM_CHARACTER are for future GNU as colouring + ** Converted to lexer object and added further folding features/properties by "Udo Lechner" + **/ +// Copyright 1998-2003 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' || + ch == '_' || ch == '?'); +} + +static inline bool IsAWordStart(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.' || + ch == '%' || ch == '@' || ch == '$' || ch == '?'); +} + +static inline bool IsAsmOperator(const int ch) { + if ((ch < 0x80) && (isalnum(ch))) + return false; + // '.' left out as it is used to make up numbers + if (ch == '*' || ch == '/' || ch == '-' || ch == '+' || + ch == '(' || ch == ')' || ch == '=' || ch == '^' || + ch == '[' || ch == ']' || ch == '<' || ch == '&' || + ch == '>' || ch == ',' || ch == '|' || ch == '~' || + ch == '%' || ch == ':') + return true; + return false; +} + +static bool IsStreamCommentStyle(int style) { + return style == SCE_ASM_COMMENTDIRECTIVE || style == SCE_ASM_COMMENTBLOCK; +} + +static inline int LowerCase(int c) { + if (c >= 'A' && c <= 'Z') + return 'a' + c - 'A'; + return c; +} + +// An individual named option for use in an OptionSet + +// Options used for LexerAsm +struct OptionsAsm { + std::string delimiter; + bool fold; + bool foldSyntaxBased; + bool foldCommentMultiline; + bool foldCommentExplicit; + std::string foldExplicitStart; + std::string foldExplicitEnd; + bool foldExplicitAnywhere; + bool foldCompact; + OptionsAsm() { + delimiter = ""; + fold = false; + foldSyntaxBased = true; + foldCommentMultiline = false; + foldCommentExplicit = false; + foldExplicitStart = ""; + foldExplicitEnd = ""; + foldExplicitAnywhere = false; + foldCompact = true; + } +}; + +static const char * const asmWordListDesc[] = { + "CPU instructions", + "FPU instructions", + "Registers", + "Directives", + "Directive operands", + "Extended instructions", + "Directives4Foldstart", + "Directives4Foldend", + 0 +}; + +struct OptionSetAsm : public OptionSet { + OptionSetAsm() { + DefineProperty("lexer.asm.comment.delimiter", &OptionsAsm::delimiter, + "Character used for COMMENT directive's delimiter, replacing the standard \"~\"."); + + DefineProperty("fold", &OptionsAsm::fold); + + DefineProperty("fold.asm.syntax.based", &OptionsAsm::foldSyntaxBased, + "Set this property to 0 to disable syntax based folding."); + + DefineProperty("fold.asm.comment.multiline", &OptionsAsm::foldCommentMultiline, + "Set this property to 1 to enable folding multi-line comments."); + + DefineProperty("fold.asm.comment.explicit", &OptionsAsm::foldCommentExplicit, + "This option enables folding explicit fold points when using the Asm lexer. " + "Explicit fold points allows adding extra folding by placing a ;{ comment at the start and a ;} " + "at the end of a section that should fold."); + + DefineProperty("fold.asm.explicit.start", &OptionsAsm::foldExplicitStart, + "The string to use for explicit fold start points, replacing the standard ;{."); + + DefineProperty("fold.asm.explicit.end", &OptionsAsm::foldExplicitEnd, + "The string to use for explicit fold end points, replacing the standard ;}."); + + DefineProperty("fold.asm.explicit.anywhere", &OptionsAsm::foldExplicitAnywhere, + "Set this property to 1 to enable explicit fold points anywhere, not just in line comments."); + + DefineProperty("fold.compact", &OptionsAsm::foldCompact); + + DefineWordListSets(asmWordListDesc); + } +}; + +class LexerAsm : public DefaultLexer { + WordList cpuInstruction; + WordList mathInstruction; + WordList registers; + WordList directive; + WordList directiveOperand; + WordList extInstruction; + WordList directives4foldstart; + WordList directives4foldend; + OptionsAsm options; + OptionSetAsm osAsm; + int commentChar; +public: + LexerAsm(int commentChar_) { + commentChar = commentChar_; + } + virtual ~LexerAsm() { + } + void SCI_METHOD Release() override { + delete this; + } + int SCI_METHOD Version() const override { + return lvOriginal; + } + const char * SCI_METHOD PropertyNames() override { + return osAsm.PropertyNames(); + } + int SCI_METHOD PropertyType(const char *name) override { + return osAsm.PropertyType(name); + } + const char * SCI_METHOD DescribeProperty(const char *name) override { + return osAsm.DescribeProperty(name); + } + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override; + const char * SCI_METHOD DescribeWordListSets() override { + return osAsm.DescribeWordListSets(); + } + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void * SCI_METHOD PrivateCall(int, void *) override { + return 0; + } + + static ILexer *LexerFactoryAsm() { + return new LexerAsm(';'); + } + + static ILexer *LexerFactoryAs() { + return new LexerAsm('#'); + } +}; + +Sci_Position SCI_METHOD LexerAsm::PropertySet(const char *key, const char *val) { + if (osAsm.PropertySet(&options, key, val)) { + return 0; + } + return -1; +} + +Sci_Position SCI_METHOD LexerAsm::WordListSet(int n, const char *wl) { + WordList *wordListN = 0; + switch (n) { + case 0: + wordListN = &cpuInstruction; + break; + case 1: + wordListN = &mathInstruction; + break; + case 2: + wordListN = ®isters; + break; + case 3: + wordListN = &directive; + break; + case 4: + wordListN = &directiveOperand; + break; + case 5: + wordListN = &extInstruction; + break; + case 6: + wordListN = &directives4foldstart; + break; + case 7: + wordListN = &directives4foldend; + break; + } + Sci_Position firstModification = -1; + if (wordListN) { + WordList wlNew; + wlNew.Set(wl); + if (*wordListN != wlNew) { + wordListN->Set(wl); + firstModification = 0; + } + } + return firstModification; +} + +void SCI_METHOD LexerAsm::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + LexAccessor styler(pAccess); + + // Do not leak onto next line + if (initStyle == SCE_ASM_STRINGEOL) + initStyle = SCE_ASM_DEFAULT; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) + { + + // Prevent SCE_ASM_STRINGEOL from leaking back to previous line + if (sc.atLineStart && (sc.state == SCE_ASM_STRING)) { + sc.SetState(SCE_ASM_STRING); + } else if (sc.atLineStart && (sc.state == SCE_ASM_CHARACTER)) { + sc.SetState(SCE_ASM_CHARACTER); + } + + // Handle line continuation generically. + if (sc.ch == '\\') { + if (sc.chNext == '\n' || sc.chNext == '\r') { + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } + continue; + } + } + + // Determine if the current state should terminate. + if (sc.state == SCE_ASM_OPERATOR) { + if (!IsAsmOperator(sc.ch)) { + sc.SetState(SCE_ASM_DEFAULT); + } + } else if (sc.state == SCE_ASM_NUMBER) { + if (!IsAWordChar(sc.ch)) { + sc.SetState(SCE_ASM_DEFAULT); + } + } else if (sc.state == SCE_ASM_IDENTIFIER) { + if (!IsAWordChar(sc.ch) ) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + bool IsDirective = false; + + if (cpuInstruction.InList(s)) { + sc.ChangeState(SCE_ASM_CPUINSTRUCTION); + } else if (mathInstruction.InList(s)) { + sc.ChangeState(SCE_ASM_MATHINSTRUCTION); + } else if (registers.InList(s)) { + sc.ChangeState(SCE_ASM_REGISTER); + } else if (directive.InList(s)) { + sc.ChangeState(SCE_ASM_DIRECTIVE); + IsDirective = true; + } else if (directiveOperand.InList(s)) { + sc.ChangeState(SCE_ASM_DIRECTIVEOPERAND); + } else if (extInstruction.InList(s)) { + sc.ChangeState(SCE_ASM_EXTINSTRUCTION); + } + sc.SetState(SCE_ASM_DEFAULT); + if (IsDirective && !strcmp(s, "comment")) { + char delimiter = options.delimiter.empty() ? '~' : options.delimiter.c_str()[0]; + while (IsASpaceOrTab(sc.ch) && !sc.atLineEnd) { + sc.ForwardSetState(SCE_ASM_DEFAULT); + } + if (sc.ch == delimiter) { + sc.SetState(SCE_ASM_COMMENTDIRECTIVE); + } + } + } + } else if (sc.state == SCE_ASM_COMMENTDIRECTIVE) { + char delimiter = options.delimiter.empty() ? '~' : options.delimiter.c_str()[0]; + if (sc.ch == delimiter) { + while (!sc.atLineEnd) { + sc.Forward(); + } + sc.SetState(SCE_ASM_DEFAULT); + } + } else if (sc.state == SCE_ASM_COMMENT ) { + if (sc.atLineEnd) { + sc.SetState(SCE_ASM_DEFAULT); + } + } else if (sc.state == SCE_ASM_STRING) { + if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_ASM_DEFAULT); + } else if (sc.atLineEnd) { + sc.ChangeState(SCE_ASM_STRINGEOL); + sc.ForwardSetState(SCE_ASM_DEFAULT); + } + } else if (sc.state == SCE_ASM_CHARACTER) { + if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\'') { + sc.ForwardSetState(SCE_ASM_DEFAULT); + } else if (sc.atLineEnd) { + sc.ChangeState(SCE_ASM_STRINGEOL); + sc.ForwardSetState(SCE_ASM_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_ASM_DEFAULT) { + if (sc.ch == commentChar){ + sc.SetState(SCE_ASM_COMMENT); + } else if (IsASCII(sc.ch) && (isdigit(sc.ch) || (sc.ch == '.' && IsASCII(sc.chNext) && isdigit(sc.chNext)))) { + sc.SetState(SCE_ASM_NUMBER); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_ASM_IDENTIFIER); + } else if (sc.ch == '\"') { + sc.SetState(SCE_ASM_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_ASM_CHARACTER); + } else if (IsAsmOperator(sc.ch)) { + sc.SetState(SCE_ASM_OPERATOR); + } + } + + } + sc.Complete(); +} + +// Store both the current line's fold level and the next lines in the +// level store to make it easy to pick up with each increment +// and to make it possible to fiddle the current level for "else". + +void SCI_METHOD LexerAsm::Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + + if (!options.fold) + return; + + LexAccessor styler(pAccess); + + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelCurrent = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelCurrent = styler.LevelAt(lineCurrent-1) >> 16; + int levelNext = levelCurrent; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + char word[100]; + int wordlen = 0; + const bool userDefinedFoldMarkers = !options.foldExplicitStart.empty() && !options.foldExplicitEnd.empty(); + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (options.foldCommentMultiline && IsStreamCommentStyle(style)) { + if (!IsStreamCommentStyle(stylePrev)) { + levelNext++; + } else if (!IsStreamCommentStyle(styleNext) && !atEOL) { + // Comments don't end at end of line and the next character may be unstyled. + levelNext--; + } + } + if (options.foldCommentExplicit && ((style == SCE_ASM_COMMENT) || options.foldExplicitAnywhere)) { + if (userDefinedFoldMarkers) { + if (styler.Match(i, options.foldExplicitStart.c_str())) { + levelNext++; + } else if (styler.Match(i, options.foldExplicitEnd.c_str())) { + levelNext--; + } + } else { + if (ch == ';') { + if (chNext == '{') { + levelNext++; + } else if (chNext == '}') { + levelNext--; + } + } + } + } + if (options.foldSyntaxBased && (style == SCE_ASM_DIRECTIVE)) { + word[wordlen++] = static_cast(LowerCase(ch)); + if (wordlen == 100) { // prevent overflow + word[0] = '\0'; + wordlen = 1; + } + if (styleNext != SCE_ASM_DIRECTIVE) { // reading directive ready + word[wordlen] = '\0'; + wordlen = 0; + if (directives4foldstart.InList(word)) { + levelNext++; + } else if (directives4foldend.InList(word)){ + levelNext--; + } + } + } + if (!IsASpace(ch)) + visibleChars++; + if (atEOL || (i == endPos-1)) { + int levelUse = levelCurrent; + int lev = levelUse | levelNext << 16; + if (visibleChars == 0 && options.foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if (levelUse < levelNext) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelCurrent = levelNext; + if (atEOL && (i == static_cast(styler.Length() - 1))) { + // There is an empty line at end of file so give it same level and empty + styler.SetLevel(lineCurrent, (levelCurrent | levelCurrent << 16) | SC_FOLDLEVELWHITEFLAG); + } + visibleChars = 0; + } + } +} + +LexerModule lmAsm(SCLEX_ASM, LexerAsm::LexerFactoryAsm, "asm", asmWordListDesc); +LexerModule lmAs(SCLEX_AS, LexerAsm::LexerFactoryAs, "as", asmWordListDesc); + diff --git a/third_party/qscintilla/scintilla/lexers/LexAsn1.cpp b/third_party/qscintilla/scintilla/lexers/LexAsn1.cpp new file mode 100644 index 0000000..0ec2a06 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexAsn1.cpp @@ -0,0 +1,186 @@ +// Scintilla source code edit control +/** @file LexAsn1.cxx + ** Lexer for ASN.1 + **/ +// Copyright 2004 by Herr Pfarrer rpfarrer yahoo de +// Last Updated: 20/07/2004 +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +// Some char test functions +static bool isAsn1Number(int ch) +{ + return (ch >= '0' && ch <= '9'); +} + +static bool isAsn1Letter(int ch) +{ + return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'); +} + +static bool isAsn1Char(int ch) +{ + return (ch == '-' ) || isAsn1Number(ch) || isAsn1Letter (ch); +} + +// +// Function determining the color of a given code portion +// Based on a "state" +// +static void ColouriseAsn1Doc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordLists[], Accessor &styler) +{ + // The keywords + WordList &Keywords = *keywordLists[0]; + WordList &Attributes = *keywordLists[1]; + WordList &Descriptors = *keywordLists[2]; + WordList &Types = *keywordLists[3]; + + // Parse the whole buffer character by character using StyleContext + StyleContext sc(startPos, length, initStyle, styler); + for (; sc.More(); sc.Forward()) + { + // The state engine + switch (sc.state) + { + case SCE_ASN1_DEFAULT: // Plain characters +asn1_default: + if (sc.ch == '-' && sc.chNext == '-') + // A comment begins here + sc.SetState(SCE_ASN1_COMMENT); + else if (sc.ch == '"') + // A string begins here + sc.SetState(SCE_ASN1_STRING); + else if (isAsn1Number (sc.ch)) + // A number starts here (identifier should start with a letter in ASN.1) + sc.SetState(SCE_ASN1_SCALAR); + else if (isAsn1Char (sc.ch)) + // An identifier starts here (identifier always start with a letter) + sc.SetState(SCE_ASN1_IDENTIFIER); + else if (sc.ch == ':') + // A ::= operator starts here + sc.SetState(SCE_ASN1_OPERATOR); + break; + case SCE_ASN1_COMMENT: // A comment + if (sc.ch == '\r' || sc.ch == '\n') + // A comment ends here + sc.SetState(SCE_ASN1_DEFAULT); + break; + case SCE_ASN1_IDENTIFIER: // An identifier (keyword, attribute, descriptor or type) + if (!isAsn1Char (sc.ch)) + { + // The end of identifier is here: we can look for it in lists by now and change its state + char s[100]; + sc.GetCurrent(s, sizeof(s)); + if (Keywords.InList(s)) + // It's a keyword, change its state + sc.ChangeState(SCE_ASN1_KEYWORD); + else if (Attributes.InList(s)) + // It's an attribute, change its state + sc.ChangeState(SCE_ASN1_ATTRIBUTE); + else if (Descriptors.InList(s)) + // It's a descriptor, change its state + sc.ChangeState(SCE_ASN1_DESCRIPTOR); + else if (Types.InList(s)) + // It's a type, change its state + sc.ChangeState(SCE_ASN1_TYPE); + + // Set to default now + sc.SetState(SCE_ASN1_DEFAULT); + } + break; + case SCE_ASN1_STRING: // A string delimited by "" + if (sc.ch == '"') + { + // A string ends here + sc.ForwardSetState(SCE_ASN1_DEFAULT); + + // To correctly manage a char sticking to the string quote + goto asn1_default; + } + break; + case SCE_ASN1_SCALAR: // A plain number + if (!isAsn1Number (sc.ch)) + // A number ends here + sc.SetState(SCE_ASN1_DEFAULT); + break; + case SCE_ASN1_OPERATOR: // The affectation operator ::= and wath follows (eg: ::= { org 6 } OID or ::= 12 trap) + if (sc.ch == '{') + { + // An OID definition starts here: enter the sub loop + for (; sc.More(); sc.Forward()) + { + if (isAsn1Number (sc.ch) && (!isAsn1Char (sc.chPrev) || isAsn1Number (sc.chPrev))) + // The OID number is highlighted + sc.SetState(SCE_ASN1_OID); + else if (isAsn1Char (sc.ch)) + // The OID parent identifier is plain + sc.SetState(SCE_ASN1_IDENTIFIER); + else + sc.SetState(SCE_ASN1_DEFAULT); + + if (sc.ch == '}') + // Here ends the OID and the operator sub loop: go back to main loop + break; + } + } + else if (isAsn1Number (sc.ch)) + { + // A trap number definition starts here: enter the sub loop + for (; sc.More(); sc.Forward()) + { + if (isAsn1Number (sc.ch)) + // The trap number is highlighted + sc.SetState(SCE_ASN1_OID); + else + { + // The number ends here: go back to main loop + sc.SetState(SCE_ASN1_DEFAULT); + break; + } + } + } + else if (sc.ch != ':' && sc.ch != '=' && sc.ch != ' ') + // The operator doesn't imply an OID definition nor a trap, back to main loop + goto asn1_default; // To be sure to handle actually the state change + break; + } + } + sc.Complete(); +} + +static void FoldAsn1Doc(Sci_PositionU, Sci_Position, int, WordList *[], Accessor &styler) +{ + // No folding enabled, no reason to continue... + if( styler.GetPropertyInt("fold") == 0 ) + return; + + // No folding implemented: doesn't make sense for ASN.1 +} + +static const char * const asn1WordLists[] = { + "Keywords", + "Attributes", + "Descriptors", + "Types", + 0, }; + + +LexerModule lmAsn1(SCLEX_ASN1, ColouriseAsn1Doc, "asn1", FoldAsn1Doc, asn1WordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexBaan.cpp b/third_party/qscintilla/scintilla/lexers/LexBaan.cpp new file mode 100644 index 0000000..fa8b463 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexBaan.cpp @@ -0,0 +1,988 @@ +// Scintilla source code edit control +/** @file LexBaan.cxx +** Lexer for Baan. +** Based heavily on LexCPP.cxx +**/ +// Copyright 2001- by Vamsi Potluru & Praveen Ambekar +// Maintainer Email: oirfeodent@yahoo.co.in +// The License.txt file describes the conditions under which this software may be distributed. + +// C standard library +#include +#include + +// C++ wrappers of C standard library +#include + +// C++ standard library +#include +#include + +// Scintilla headers + +// Non-platform-specific headers + +// include +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +// lexlib +#include "WordList.h" +#include "LexAccessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +namespace { +// Use an unnamed namespace to protect the functions and classes from name conflicts + +// Options used for LexerBaan +struct OptionsBaan { + bool fold; + bool foldComment; + bool foldPreprocessor; + bool foldCompact; + bool baanFoldSyntaxBased; + bool baanFoldKeywordsBased; + bool baanFoldSections; + bool baanFoldInnerLevel; + bool baanStylingWithinPreprocessor; + OptionsBaan() { + fold = false; + foldComment = false; + foldPreprocessor = false; + foldCompact = false; + baanFoldSyntaxBased = false; + baanFoldKeywordsBased = false; + baanFoldSections = false; + baanFoldInnerLevel = false; + baanStylingWithinPreprocessor = false; + } +}; + +const char *const baanWordLists[] = { + "Baan & BaanSQL Reserved Keywords ", + "Baan Standard functions", + "Baan Functions Abridged", + "Baan Main Sections ", + "Baan Sub Sections", + "PreDefined Variables", + "PreDefined Attributes", + "Enumerates", + 0, +}; + +struct OptionSetBaan : public OptionSet { + OptionSetBaan() { + DefineProperty("fold", &OptionsBaan::fold); + + DefineProperty("fold.comment", &OptionsBaan::foldComment); + + DefineProperty("fold.preprocessor", &OptionsBaan::foldPreprocessor); + + DefineProperty("fold.compact", &OptionsBaan::foldCompact); + + DefineProperty("fold.baan.syntax.based", &OptionsBaan::baanFoldSyntaxBased, + "Set this property to 0 to disable syntax based folding, which is folding based on '{' & '('."); + + DefineProperty("fold.baan.keywords.based", &OptionsBaan::baanFoldKeywordsBased, + "Set this property to 0 to disable keywords based folding, which is folding based on " + " for, if, on (case), repeat, select, while and fold ends based on endfor, endif, endcase, until, endselect, endwhile respectively." + "Also folds declarations which are grouped together."); + + DefineProperty("fold.baan.sections", &OptionsBaan::baanFoldSections, + "Set this property to 0 to disable folding of Main Sections as well as Sub Sections."); + + DefineProperty("fold.baan.inner.level", &OptionsBaan::baanFoldInnerLevel, + "Set this property to 1 to enable folding of inner levels of select statements." + "Disabled by default. case and if statements are also eligible" ); + + DefineProperty("lexer.baan.styling.within.preprocessor", &OptionsBaan::baanStylingWithinPreprocessor, + "For Baan code, determines whether all preprocessor code is styled in the " + "preprocessor style (0, the default) or only from the initial # to the end " + "of the command word(1)."); + + DefineWordListSets(baanWordLists); + } +}; + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_' || ch == '$'); +} + +static inline bool IsAnOperator(int ch) { + if (IsAlphaNumeric(ch)) + return false; + if (ch == '#' || ch == '^' || ch == '&' || ch == '*' || + ch == '(' || ch == ')' || ch == '-' || ch == '+' || + ch == '=' || ch == '|' || ch == '{' || ch == '}' || + ch == '[' || ch == ']' || ch == ':' || ch == ';' || + ch == '<' || ch == '>' || ch == ',' || ch == '/' || + ch == '?' || ch == '!' || ch == '"' || ch == '~' || + ch == '\\') + return true; + return false; +} + +static inline int IsAnyOtherIdentifier(char *s, Sci_Position sLength) { + + /* IsAnyOtherIdentifier uses standard templates used in baan. + The matching template is shown as comments just above the return condition. + ^ - refers to any character [a-z]. + # - refers to any number [0-9]. + Other characters shown are compared as is. + Tried implementing with Regex... it was too complicated for me. + Any other implementation suggestion welcome. + */ + switch (sLength) { + case 8: + if (isalpha(s[0]) && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && IsADigit(s[5]) && IsADigit(s[6]) && IsADigit(s[7])) { + //^^^^^### + return(SCE_BAAN_TABLEDEF); + } + break; + case 9: + if (s[0] == 't' && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && isalpha(s[5]) && IsADigit(s[6]) && IsADigit(s[7]) && IsADigit(s[8])) { + //t^^^^^### + return(SCE_BAAN_TABLEDEF); + } + else if (s[8] == '.' && isalpha(s[0]) && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && IsADigit(s[5]) && IsADigit(s[6]) && IsADigit(s[7])) { + //^^^^^###. + return(SCE_BAAN_TABLESQL); + } + break; + case 13: + if (s[8] == '.' && isalpha(s[0]) && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && IsADigit(s[5]) && IsADigit(s[6]) && IsADigit(s[7])) { + //^^^^^###.**** + return(SCE_BAAN_TABLESQL); + } + else if (s[0] == 'r' && s[1] == 'c' && s[2] == 'd' && s[3] == '.' && s[4] == 't' && isalpha(s[5]) && isalpha(s[6]) && isalpha(s[7]) && isalpha(s[8]) && isalpha(s[9]) && IsADigit(s[10]) && IsADigit(s[11]) && IsADigit(s[12])) { + //rcd.t^^^^^### + return(SCE_BAAN_TABLEDEF); + } + break; + case 14: + case 15: + if (s[8] == '.' && isalpha(s[0]) && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && IsADigit(s[5]) && IsADigit(s[6]) && IsADigit(s[7])) { + if (s[13] != ':') { + //^^^^^###.****** + return(SCE_BAAN_TABLESQL); + } + } + break; + case 16: + case 17: + if (s[8] == '.' && s[9] == '_' && s[10] == 'i' && s[11] == 'n' && s[12] == 'd' && s[13] == 'e' && s[14] == 'x' && IsADigit(s[15]) && isalpha(s[0]) && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && IsADigit(s[5]) && IsADigit(s[6]) && IsADigit(s[7])) { + //^^^^^###._index## + return(SCE_BAAN_TABLEDEF); + } + else if (s[8] == '.' && s[9] == '_' && s[10] == 'c' && s[11] == 'o' && s[12] == 'm' && s[13] == 'p' && s[14] == 'n' && s[15] == 'r' && isalpha(s[0]) && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && IsADigit(s[5]) && IsADigit(s[6]) && IsADigit(s[7])) { + //^^^^^###._compnr + return(SCE_BAAN_TABLEDEF); + } + break; + default: + break; + } + if (sLength > 14 && s[5] == '.' && s[6] == 'd' && s[7] == 'l' && s[8] == 'l' && s[13] == '.' && isalpha(s[0]) && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && IsADigit(s[9]) && IsADigit(s[10]) && IsADigit(s[11]) && IsADigit(s[12])) { + //^^^^^.dll####. + return(SCE_BAAN_FUNCTION); + } + else if (sLength > 15 && s[2] == 'i' && s[3] == 'n' && s[4] == 't' && s[5] == '.' && s[6] == 'd' && s[7] == 'l' && s[8] == 'l' && isalpha(s[0]) && isalpha(s[1]) && isalpha(s[9]) && isalpha(s[10]) && isalpha(s[11]) && isalpha(s[12]) && isalpha(s[13])) { + //^^int.dll^^^^^. + return(SCE_BAAN_FUNCTION); + } + else if (sLength > 11 && s[0] == 'i' && s[10] == '.' && isalpha(s[1]) && isalpha(s[2]) && isalpha(s[3]) && isalpha(s[4]) && isalpha(s[5]) && IsADigit(s[6]) && IsADigit(s[7]) && IsADigit(s[8]) && IsADigit(s[9])) { + //i^^^^^####. + return(SCE_BAAN_FUNCTION); + } + + return(SCE_BAAN_DEFAULT); +} + +static bool IsCommentLine(Sci_Position line, LexAccessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + int style = styler.StyleAt(i); + if (ch == '|' && style == SCE_BAAN_COMMENT) + return true; + else if (!IsASpaceOrTab(ch)) + return false; + } + return false; +} + +static bool IsPreProcLine(Sci_Position line, LexAccessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + int style = styler.StyleAt(i); + if (ch == '#' && style == SCE_BAAN_PREPROCESSOR) { + if (styler.Match(i, "#elif") || styler.Match(i, "#else") || styler.Match(i, "#endif") + || styler.Match(i, "#if") || styler.Match(i, "#ifdef") || styler.Match(i, "#ifndef")) + // Above PreProcessors has a seperate fold mechanism. + return false; + else + return true; + } + else if (ch == '^') + return true; + else if (!IsASpaceOrTab(ch)) + return false; + } + return false; +} + +static int mainOrSubSectionLine(Sci_Position line, LexAccessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + int style = styler.StyleAt(i); + if (style == SCE_BAAN_WORD5 || style == SCE_BAAN_WORD4) + return style; + else if (IsASpaceOrTab(ch)) + continue; + else + break; + } + return 0; +} + +static bool priorSectionIsSubSection(Sci_Position line, LexAccessor &styler){ + while (line > 0) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + int style = styler.StyleAt(i); + if (style == SCE_BAAN_WORD4) + return true; + else if (style == SCE_BAAN_WORD5) + return false; + else if (IsASpaceOrTab(ch)) + continue; + else + break; + } + line--; + } + return false; +} + +static bool nextSectionIsSubSection(Sci_Position line, LexAccessor &styler) { + while (line > 0) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + int style = styler.StyleAt(i); + if (style == SCE_BAAN_WORD4) + return true; + else if (style == SCE_BAAN_WORD5) + return false; + else if (IsASpaceOrTab(ch)) + continue; + else + break; + } + line++; + } + return false; +} + +static bool IsDeclarationLine(Sci_Position line, LexAccessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + int style = styler.StyleAt(i); + if (style == SCE_BAAN_WORD) { + if (styler.Match(i, "table") || styler.Match(i, "extern") || styler.Match(i, "long") + || styler.Match(i, "double") || styler.Match(i, "boolean") || styler.Match(i, "string") + || styler.Match(i, "domain")) { + for (Sci_Position j = eol_pos; j > pos; j--) { + int styleFromEnd = styler.StyleAt(j); + if (styleFromEnd == SCE_BAAN_COMMENT) + continue; + else if (IsASpace(styler[j])) + continue; + else if (styler[j] != ',') + //Above conditions ensures, Declaration is not part of any function parameters. + return true; + else + return false; + } + } + else + return false; + } + else if (!IsASpaceOrTab(ch)) + return false; + } + return false; +} + +static bool IsInnerLevelFold(Sci_Position line, LexAccessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + int style = styler.StyleAt(i); + if (style == SCE_BAAN_WORD && (styler.Match(i, "else" ) || styler.Match(i, "case") + || styler.Match(i, "default") || styler.Match(i, "selectdo") || styler.Match(i, "selecteos") + || styler.Match(i, "selectempty") || styler.Match(i, "selecterror"))) + return true; + else if (IsASpaceOrTab(ch)) + continue; + else + return false; + } + return false; +} + +static inline bool wordInArray(const std::string& value, std::string *array, int length) +{ + for (int i = 0; i < length; i++) + { + if (value == array[i]) + { + return true; + } + } + + return false; +} + +class WordListAbridged : public WordList { +public: + WordListAbridged() { + kwAbridged = false; + kwHasSection = false; + }; + ~WordListAbridged() { + Clear(); + }; + bool kwAbridged; + bool kwHasSection; + bool Contains(const char *s) { + return kwAbridged ? InListAbridged(s, '~') : InList(s); + }; +}; + +} + +class LexerBaan : public DefaultLexer { + WordListAbridged keywords; + WordListAbridged keywords2; + WordListAbridged keywords3; + WordListAbridged keywords4; + WordListAbridged keywords5; + WordListAbridged keywords6; + WordListAbridged keywords7; + WordListAbridged keywords8; + WordListAbridged keywords9; + OptionsBaan options; + OptionSetBaan osBaan; +public: + LexerBaan() { + } + + virtual ~LexerBaan() { + } + + int SCI_METHOD Version() const override { + return lvOriginal; + } + + void SCI_METHOD Release() override { + delete this; + } + + const char * SCI_METHOD PropertyNames() override { + return osBaan.PropertyNames(); + } + + int SCI_METHOD PropertyType(const char * name) override { + return osBaan.PropertyType(name); + } + + const char * SCI_METHOD DescribeProperty(const char * name) override { + return osBaan.DescribeProperty(name); + } + + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override; + + const char * SCI_METHOD DescribeWordListSets() override { + return osBaan.DescribeWordListSets(); + } + + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void * SCI_METHOD PrivateCall(int, void *) override { + return NULL; + } + + static ILexer * LexerFactoryBaan() { + return new LexerBaan(); + } +}; + +Sci_Position SCI_METHOD LexerBaan::PropertySet(const char *key, const char *val) { + if (osBaan.PropertySet(&options, key, val)) { + return 0; + } + return -1; +} + +Sci_Position SCI_METHOD LexerBaan::WordListSet(int n, const char *wl) { + WordListAbridged *WordListAbridgedN = 0; + switch (n) { + case 0: + WordListAbridgedN = &keywords; + break; + case 1: + WordListAbridgedN = &keywords2; + break; + case 2: + WordListAbridgedN = &keywords3; + break; + case 3: + WordListAbridgedN = &keywords4; + break; + case 4: + WordListAbridgedN = &keywords5; + break; + case 5: + WordListAbridgedN = &keywords6; + break; + case 6: + WordListAbridgedN = &keywords7; + break; + case 7: + WordListAbridgedN = &keywords8; + break; + case 8: + WordListAbridgedN = &keywords9; + break; + } + Sci_Position firstModification = -1; + if (WordListAbridgedN) { + WordListAbridged wlNew; + wlNew.Set(wl); + if (*WordListAbridgedN != wlNew) { + WordListAbridgedN->Set(wl); + WordListAbridgedN->kwAbridged = strchr(wl, '~') != NULL; + WordListAbridgedN->kwHasSection = strchr(wl, ':') != NULL; + + firstModification = 0; + } + } + return firstModification; +} + +void SCI_METHOD LexerBaan::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + + if (initStyle == SCE_BAAN_STRINGEOL) // Does not leak onto next line + initStyle = SCE_BAAN_DEFAULT; + + int visibleChars = 0; + bool lineHasDomain = false; + bool lineHasFunction = false; + bool lineHasPreProc = false; + bool lineIgnoreString = false; + bool lineHasDefines = false; + bool numberIsHex = false; + char word[1000]; + int wordlen = 0; + + std::string preProcessorTags[13] = { "#context_off", "#context_on", + "#define", "#elif", "#else", "#endif", + "#ident", "#if", "#ifdef", "#ifndef", + "#include", "#pragma", "#undef" }; + LexAccessor styler(pAccess); + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + // Determine if the current state should terminate. + switch (sc.state) { + case SCE_BAAN_OPERATOR: + sc.SetState(SCE_BAAN_DEFAULT); + break; + case SCE_BAAN_NUMBER: + if (IsASpaceOrTab(sc.ch) || sc.ch == '\r' || sc.ch == '\n' || IsAnOperator(sc.ch)) { + sc.SetState(SCE_BAAN_DEFAULT); + } + else if ((numberIsHex && !(MakeLowerCase(sc.ch) == 'x' || MakeLowerCase(sc.ch) == 'e' || + IsADigit(sc.ch, 16) || sc.ch == '.' || sc.ch == '-' || sc.ch == '+')) || + (!numberIsHex && !(MakeLowerCase(sc.ch) == 'e' || IsADigit(sc.ch) + || sc.ch == '.' || sc.ch == '-' || sc.ch == '+'))) { + // check '-' for possible -10e-5. Add '+' as well. + numberIsHex = false; + sc.ChangeState(SCE_BAAN_IDENTIFIER); + sc.SetState(SCE_BAAN_DEFAULT); + } + break; + case SCE_BAAN_IDENTIFIER: + if (!IsAWordChar(sc.ch)) { + char s[1000]; + char s1[1000]; + sc.GetCurrentLowered(s, sizeof(s)); + if (sc.ch == ':') { + memcpy(s1, s, sizeof(s)); + s1[sc.LengthCurrent()] = sc.ch; + s1[sc.LengthCurrent() + 1] = '\0'; + } + if ((keywords.kwHasSection && (sc.ch == ':')) ? keywords.Contains(s1) : keywords.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD); + if (0 == strcmp(s, "domain")) { + lineHasDomain = true; + } + else if (0 == strcmp(s, "function")) { + lineHasFunction = true; + } + } + else if (lineHasDomain) { + sc.ChangeState(SCE_BAAN_DOMDEF); + lineHasDomain = false; + } + else if (lineHasFunction) { + sc.ChangeState(SCE_BAAN_FUNCDEF); + lineHasFunction = false; + } + else if ((keywords2.kwHasSection && (sc.ch == ':')) ? keywords2.Contains(s1) : keywords2.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD2); + } + else if ((keywords3.kwHasSection && (sc.ch == ':')) ? keywords3.Contains(s1) : keywords3.Contains(s)) { + if (sc.ch == '(') + sc.ChangeState(SCE_BAAN_WORD3); + else + sc.ChangeState(SCE_BAAN_IDENTIFIER); + } + else if ((keywords4.kwHasSection && (sc.ch == ':')) ? keywords4.Contains(s1) : keywords4.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD4); + } + else if ((keywords5.kwHasSection && (sc.ch == ':')) ? keywords5.Contains(s1) : keywords5.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD5); + } + else if ((keywords6.kwHasSection && (sc.ch == ':')) ? keywords6.Contains(s1) : keywords6.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD6); + } + else if ((keywords7.kwHasSection && (sc.ch == ':')) ? keywords7.Contains(s1) : keywords7.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD7); + } + else if ((keywords8.kwHasSection && (sc.ch == ':')) ? keywords8.Contains(s1) : keywords8.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD8); + } + else if ((keywords9.kwHasSection && (sc.ch == ':')) ? keywords9.Contains(s1) : keywords9.Contains(s)) { + sc.ChangeState(SCE_BAAN_WORD9); + } + else if (lineHasPreProc) { + sc.ChangeState(SCE_BAAN_OBJECTDEF); + lineHasPreProc = false; + } + else if (lineHasDefines) { + sc.ChangeState(SCE_BAAN_DEFINEDEF); + lineHasDefines = false; + } + else { + int state = IsAnyOtherIdentifier(s, sc.LengthCurrent()); + if (state > 0) { + sc.ChangeState(state); + } + } + sc.SetState(SCE_BAAN_DEFAULT); + } + break; + case SCE_BAAN_PREPROCESSOR: + if (options.baanStylingWithinPreprocessor) { + if (IsASpace(sc.ch) || IsAnOperator(sc.ch)) { + sc.SetState(SCE_BAAN_DEFAULT); + } + } + else { + if (sc.atLineEnd && (sc.chNext != '^')) { + sc.SetState(SCE_BAAN_DEFAULT); + } + } + break; + case SCE_BAAN_COMMENT: + if (sc.ch == '\r' || sc.ch == '\n') { + sc.SetState(SCE_BAAN_DEFAULT); + } + break; + case SCE_BAAN_COMMENTDOC: + if (sc.MatchIgnoreCase("enddllusage")) { + for (unsigned int i = 0; i < 10; i++) { + sc.Forward(); + } + sc.ForwardSetState(SCE_BAAN_DEFAULT); + } + else if (sc.MatchIgnoreCase("endfunctionusage")) { + for (unsigned int i = 0; i < 15; i++) { + sc.Forward(); + } + sc.ForwardSetState(SCE_BAAN_DEFAULT); + } + break; + case SCE_BAAN_STRING: + if (sc.ch == '\"') { + sc.ForwardSetState(SCE_BAAN_DEFAULT); + } + else if ((sc.atLineEnd) && (sc.chNext != '^')) { + sc.ChangeState(SCE_BAAN_STRINGEOL); + sc.ForwardSetState(SCE_BAAN_DEFAULT); + visibleChars = 0; + } + break; + } + + // Determine if a new state should be entered. + if (sc.state == SCE_BAAN_DEFAULT) { + if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext)) + || ((sc.ch == '-' || sc.ch == '+') && (IsADigit(sc.chNext) || sc.chNext == '.')) + || (MakeLowerCase(sc.ch) == 'e' && (IsADigit(sc.chNext) || sc.chNext == '+' || sc.chNext == '-'))) { + if ((sc.ch == '0' && MakeLowerCase(sc.chNext) == 'x') || + ((sc.ch == '-' || sc.ch == '+') && sc.chNext == '0' && MakeLowerCase(sc.GetRelativeCharacter(2)) == 'x')){ + numberIsHex = true; + } + sc.SetState(SCE_BAAN_NUMBER); + } + else if (sc.MatchIgnoreCase("dllusage") || sc.MatchIgnoreCase("functionusage")) { + sc.SetState(SCE_BAAN_COMMENTDOC); + do { + sc.Forward(); + } while ((!sc.atLineEnd) && sc.More()); + } + else if (iswordstart(sc.ch)) { + sc.SetState(SCE_BAAN_IDENTIFIER); + } + else if (sc.Match('|')) { + sc.SetState(SCE_BAAN_COMMENT); + } + else if (sc.ch == '\"' && !(lineIgnoreString)) { + sc.SetState(SCE_BAAN_STRING); + } + else if (sc.ch == '#' && visibleChars == 0) { + // Preprocessor commands are alone on their line + sc.SetState(SCE_BAAN_PREPROCESSOR); + word[0] = '\0'; + wordlen = 0; + while (sc.More() && !(IsASpace(sc.chNext) || IsAnOperator(sc.chNext))) { + sc.Forward(); + wordlen++; + } + sc.GetCurrentLowered(word, sizeof(word)); + if (!sc.atLineEnd) { + word[wordlen++] = sc.ch; + word[wordlen++] = '\0'; + } + if (!wordInArray(word, preProcessorTags, 13)) + // Colorise only preprocessor built in Baan. + sc.ChangeState(SCE_BAAN_IDENTIFIER); + if (strcmp(word, "#pragma") == 0 || strcmp(word, "#include") == 0) { + lineHasPreProc = true; + lineIgnoreString = true; + } + else if (strcmp(word, "#define") == 0 || strcmp(word, "#undef") == 0 || + strcmp(word, "#ifdef") == 0 || strcmp(word, "#if") == 0 || strcmp(word, "#ifndef") == 0) { + lineHasDefines = true; + lineIgnoreString = false; + } + } + else if (IsAnOperator(static_cast(sc.ch))) { + sc.SetState(SCE_BAAN_OPERATOR); + } + } + + if (sc.atLineEnd) { + // Reset states to begining of colourise so no surprises + // if different sets of lines lexed. + visibleChars = 0; + lineHasDomain = false; + lineHasFunction = false; + lineHasPreProc = false; + lineIgnoreString = false; + lineHasDefines = false; + numberIsHex = false; + } + if (!IsASpace(sc.ch)) { + visibleChars++; + } + } + sc.Complete(); +} + +void SCI_METHOD LexerBaan::Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + if (!options.fold) + return; + + char word[100]; + int wordlen = 0; + bool foldStart = true; + bool foldNextSelect = true; + bool afterFunctionSection = false; + bool beforeDeclarationSection = false; + int currLineStyle = 0; + int nextLineStyle = 0; + + std::string startTags[6] = { "for", "if", "on", "repeat", "select", "while" }; + std::string endTags[6] = { "endcase", "endfor", "endif", "endselect", "endwhile", "until" }; + std::string selectCloseTags[5] = { "selectdo", "selecteos", "selectempty", "selecterror", "endselect" }; + + LexAccessor styler(pAccess); + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + + // Backtrack to previous line in case need to fix its fold status + if (startPos > 0) { + if (lineCurrent > 0) { + lineCurrent--; + startPos = styler.LineStart(lineCurrent); + } + } + + int levelPrev = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelPrev = styler.LevelAt(lineCurrent - 1) >> 16; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int style = initStyle; + int styleNext = styler.StyleAt(startPos); + + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + style = styleNext; + styleNext = styler.StyleAt(i + 1); + int stylePrev = (i) ? styler.StyleAt(i - 1) : SCE_BAAN_DEFAULT; + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + + // Comment folding + if (options.foldComment && style == SCE_BAAN_COMMENTDOC) { + if (style != stylePrev) { + levelCurrent++; + } + else if (style != styleNext) { + levelCurrent--; + } + } + if (options.foldComment && atEOL && IsCommentLine(lineCurrent, styler)) { + if (!IsCommentLine(lineCurrent - 1, styler) + && IsCommentLine(lineCurrent + 1, styler)) + levelCurrent++; + else if (IsCommentLine(lineCurrent - 1, styler) + && !IsCommentLine(lineCurrent + 1, styler)) + levelCurrent--; + } + // PreProcessor Folding + if (options.foldPreprocessor) { + if (atEOL && IsPreProcLine(lineCurrent, styler)) { + if (!IsPreProcLine(lineCurrent - 1, styler) + && IsPreProcLine(lineCurrent + 1, styler)) + levelCurrent++; + else if (IsPreProcLine(lineCurrent - 1, styler) + && !IsPreProcLine(lineCurrent + 1, styler)) + levelCurrent--; + } + else if (style == SCE_BAAN_PREPROCESSOR) { + // folds #ifdef/#if/#ifndef - they are not part of the IsPreProcLine folding. + if (ch == '#') { + if (styler.Match(i, "#ifdef") || styler.Match(i, "#if") || styler.Match(i, "#ifndef") + || styler.Match(i, "#context_on")) + levelCurrent++; + else if (styler.Match(i, "#endif") || styler.Match(i, "#context_off")) + levelCurrent--; + } + } + } + //Syntax Folding + if (options.baanFoldSyntaxBased && (style == SCE_BAAN_OPERATOR)) { + if (ch == '{' || ch == '(') { + levelCurrent++; + } + else if (ch == '}' || ch == ')') { + levelCurrent--; + } + } + //Keywords Folding + if (options.baanFoldKeywordsBased) { + if (atEOL && IsDeclarationLine(lineCurrent, styler)) { + if (!IsDeclarationLine(lineCurrent - 1, styler) + && IsDeclarationLine(lineCurrent + 1, styler)) + levelCurrent++; + else if (IsDeclarationLine(lineCurrent - 1, styler) + && !IsDeclarationLine(lineCurrent + 1, styler)) + levelCurrent--; + } + else if (style == SCE_BAAN_WORD) { + word[wordlen++] = static_cast(MakeLowerCase(ch)); + if (wordlen == 100) { // prevent overflow + word[0] = '\0'; + wordlen = 1; + } + if (styleNext != SCE_BAAN_WORD) { + word[wordlen] = '\0'; + wordlen = 0; + if (strcmp(word, "for") == 0) { + Sci_PositionU j = i + 1; + while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) { + j++; + } + if (styler.Match(j, "update")) { + // Means this is a "for update" used by Select which is already folded. + foldStart = false; + } + } + else if (strcmp(word, "on") == 0) { + Sci_PositionU j = i + 1; + while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) { + j++; + } + if (!styler.Match(j, "case")) { + // Means this is not a "on Case" statement... could be "on" used by index. + foldStart = false; + } + } + else if (strcmp(word, "select") == 0) { + if (foldNextSelect) { + // Next Selects are sub-clause till reach of selectCloseTags[] array. + foldNextSelect = false; + foldStart = true; + } + else { + foldNextSelect = false; + foldStart = false; + } + } + else if (wordInArray(word, selectCloseTags, 5)) { + // select clause ends, next select clause can be folded. + foldNextSelect = true; + foldStart = true; + } + else { + foldStart = true; + } + if (foldStart) { + if (wordInArray(word, startTags, 6)) { + levelCurrent++; + } + else if (wordInArray(word, endTags, 6)) { + levelCurrent--; + } + } + } + } + } + // Fold inner level of if/select/case statements + if (options.baanFoldInnerLevel && atEOL) { + bool currLineInnerLevel = IsInnerLevelFold(lineCurrent, styler); + bool nextLineInnerLevel = IsInnerLevelFold(lineCurrent + 1, styler); + if (currLineInnerLevel && currLineInnerLevel != nextLineInnerLevel) { + levelCurrent++; + } + else if (nextLineInnerLevel && nextLineInnerLevel != currLineInnerLevel) { + levelCurrent--; + } + } + // Section Foldings. + // One way of implementing Section Foldings, as there is no END markings of sections. + // first section ends on the previous line of next section. + // Re-written whole folding to accomodate this. + if (options.baanFoldSections && atEOL) { + currLineStyle = mainOrSubSectionLine(lineCurrent, styler); + nextLineStyle = mainOrSubSectionLine(lineCurrent + 1, styler); + if (currLineStyle != 0 && currLineStyle != nextLineStyle) { + if (levelCurrent < levelPrev) + --levelPrev; + for (Sci_Position j = styler.LineStart(lineCurrent); j < styler.LineStart(lineCurrent + 1) - 1; j++) { + if (IsASpaceOrTab(styler[j])) + continue; + else if (styler.StyleAt(j) == SCE_BAAN_WORD5) { + if (styler.Match(j, "functions:")) { + // Means functions: is the end of MainSections. + // Nothing to fold after this. + afterFunctionSection = true; + break; + } + else { + afterFunctionSection = false; + break; + } + } + else { + afterFunctionSection = false; + break; + } + } + if (!afterFunctionSection) + levelCurrent++; + } + else if (nextLineStyle != 0 && currLineStyle != nextLineStyle + && (priorSectionIsSubSection(lineCurrent -1 ,styler) + || !nextSectionIsSubSection(lineCurrent + 1, styler))) { + for (Sci_Position j = styler.LineStart(lineCurrent + 1); j < styler.LineStart(lineCurrent + 1 + 1) - 1; j++) { + if (IsASpaceOrTab(styler[j])) + continue; + else if (styler.StyleAt(j) == SCE_BAAN_WORD5) { + if (styler.Match(j, "declaration:")) { + // Means declaration: is the start of MainSections. + // Nothing to fold before this. + beforeDeclarationSection = true; + break; + } + else { + beforeDeclarationSection = false; + break; + } + } + else { + beforeDeclarationSection = false; + break; + } + } + if (!beforeDeclarationSection) { + levelCurrent--; + if (nextLineStyle == SCE_BAAN_WORD5 && priorSectionIsSubSection(lineCurrent-1, styler)) + // next levelCurrent--; is to unfold previous subsection fold. + // On reaching the next main section, the previous main as well sub section ends. + levelCurrent--; + } + } + } + if (atEOL) { + int lev = levelPrev; + lev |= levelCurrent << 16; + if (visibleChars == 0 && options.foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) + visibleChars++; + } + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +LexerModule lmBaan(SCLEX_BAAN, LexerBaan::LexerFactoryBaan, "baan", baanWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexBash.cpp b/third_party/qscintilla/scintilla/lexers/LexBash.cpp new file mode 100644 index 0000000..5bbd563 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexBash.cpp @@ -0,0 +1,907 @@ +// Scintilla source code edit control +/** @file LexBash.cxx + ** Lexer for Bash. + **/ +// Copyright 2004-2012 by Neil Hodgson +// Adapted from LexPerl by Kein-Hong Man 2004 +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +#define HERE_DELIM_MAX 256 + +// define this if you want 'invalid octals' to be marked as errors +// usually, this is not a good idea, permissive lexing is better +#undef PEDANTIC_OCTAL + +#define BASH_BASE_ERROR 65 +#define BASH_BASE_DECIMAL 66 +#define BASH_BASE_HEX 67 +#ifdef PEDANTIC_OCTAL +#define BASH_BASE_OCTAL 68 +#define BASH_BASE_OCTAL_ERROR 69 +#endif + +// state constants for parts of a bash command segment +#define BASH_CMD_BODY 0 +#define BASH_CMD_START 1 +#define BASH_CMD_WORD 2 +#define BASH_CMD_TEST 3 +#define BASH_CMD_ARITH 4 +#define BASH_CMD_DELIM 5 + +// state constants for nested delimiter pairs, used by +// SCE_SH_STRING and SCE_SH_BACKTICKS processing +#define BASH_DELIM_LITERAL 0 +#define BASH_DELIM_STRING 1 +#define BASH_DELIM_CSTRING 2 +#define BASH_DELIM_LSTRING 3 +#define BASH_DELIM_COMMAND 4 +#define BASH_DELIM_BACKTICK 5 + +#define BASH_DELIM_STACK_MAX 7 + +static inline int translateBashDigit(int ch) { + if (ch >= '0' && ch <= '9') { + return ch - '0'; + } else if (ch >= 'a' && ch <= 'z') { + return ch - 'a' + 10; + } else if (ch >= 'A' && ch <= 'Z') { + return ch - 'A' + 36; + } else if (ch == '@') { + return 62; + } else if (ch == '_') { + return 63; + } + return BASH_BASE_ERROR; +} + +static inline int getBashNumberBase(char *s) { + int i = 0; + int base = 0; + while (*s) { + base = base * 10 + (*s++ - '0'); + i++; + } + if (base > 64 || i > 2) { + return BASH_BASE_ERROR; + } + return base; +} + +static int opposite(int ch) { + if (ch == '(') return ')'; + if (ch == '[') return ']'; + if (ch == '{') return '}'; + if (ch == '<') return '>'; + return ch; +} + +static int GlobScan(StyleContext &sc) { + // forward scan for zsh globs, disambiguate versus bash arrays + // complex expressions may still fail, e.g. unbalanced () '' "" etc + int c, sLen = 0; + int pCount = 0; + int hash = 0; + while ((c = sc.GetRelativeCharacter(++sLen)) != 0) { + if (IsASpace(c)) { + return 0; + } else if (c == '\'' || c == '\"') { + if (hash != 2) return 0; + } else if (c == '#' && hash == 0) { + hash = (sLen == 1) ? 2:1; + } else if (c == '(') { + pCount++; + } else if (c == ')') { + if (pCount == 0) { + if (hash) return sLen; + return 0; + } + pCount--; + } + } + return 0; +} + +static void ColouriseBashDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList cmdDelimiter, bashStruct, bashStruct_in; + cmdDelimiter.Set("| || |& & && ; ;; ( ) { }"); + bashStruct.Set("if elif fi while until else then do done esac eval"); + bashStruct_in.Set("for case select"); + + CharacterSet setWordStart(CharacterSet::setAlpha, "_"); + // note that [+-] are often parts of identifiers in shell scripts + CharacterSet setWord(CharacterSet::setAlphaNum, "._+-"); + CharacterSet setMetaCharacter(CharacterSet::setNone, "|&;()<> \t\r\n"); + setMetaCharacter.Add(0); + CharacterSet setBashOperator(CharacterSet::setNone, "^&%()-+=|{}[]:;>,*/(ch); + Delimiter[DelimiterLength] = '\0'; + } + ~HereDocCls() { + } + }; + HereDocCls HereDoc; + + class QuoteCls { // Class to manage quote pairs (simplified vs LexPerl) + public: + int Count; + int Up, Down; + QuoteCls() { + Count = 0; + Up = '\0'; + Down = '\0'; + } + void Open(int u) { + Count++; + Up = u; + Down = opposite(Up); + } + void Start(int u) { + Count = 0; + Open(u); + } + }; + QuoteCls Quote; + + class QuoteStackCls { // Class to manage quote pairs that nest + public: + int Count; + int Up, Down; + int Style; + int Depth; // levels pushed + int CountStack[BASH_DELIM_STACK_MAX]; + int UpStack [BASH_DELIM_STACK_MAX]; + int StyleStack[BASH_DELIM_STACK_MAX]; + QuoteStackCls() { + Count = 0; + Up = '\0'; + Down = '\0'; + Style = 0; + Depth = 0; + } + void Start(int u, int s) { + Count = 1; + Up = u; + Down = opposite(Up); + Style = s; + } + void Push(int u, int s) { + if (Depth >= BASH_DELIM_STACK_MAX) + return; + CountStack[Depth] = Count; + UpStack [Depth] = Up; + StyleStack[Depth] = Style; + Depth++; + Count = 1; + Up = u; + Down = opposite(Up); + Style = s; + } + void Pop(void) { + if (Depth <= 0) + return; + Depth--; + Count = CountStack[Depth]; + Up = UpStack [Depth]; + Style = StyleStack[Depth]; + Down = opposite(Up); + } + ~QuoteStackCls() { + } + }; + QuoteStackCls QuoteStack; + + int numBase = 0; + int digit; + Sci_PositionU endPos = startPos + length; + int cmdState = BASH_CMD_START; + int testExprType = 0; + + // Always backtracks to the start of a line that is not a continuation + // of the previous line (i.e. start of a bash command segment) + Sci_Position ln = styler.GetLine(startPos); + if (ln > 0 && startPos == static_cast(styler.LineStart(ln))) + ln--; + for (;;) { + startPos = styler.LineStart(ln); + if (ln == 0 || styler.GetLineState(ln) == BASH_CMD_START) + break; + ln--; + } + initStyle = SCE_SH_DEFAULT; + + StyleContext sc(startPos, endPos - startPos, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + // handle line continuation, updates per-line stored state + if (sc.atLineStart) { + ln = styler.GetLine(sc.currentPos); + if (sc.state == SCE_SH_STRING + || sc.state == SCE_SH_BACKTICKS + || sc.state == SCE_SH_CHARACTER + || sc.state == SCE_SH_HERE_Q + || sc.state == SCE_SH_COMMENTLINE + || sc.state == SCE_SH_PARAM) { + // force backtrack while retaining cmdState + styler.SetLineState(ln, BASH_CMD_BODY); + } else { + if (ln > 0) { + if ((sc.GetRelative(-3) == '\\' && sc.GetRelative(-2) == '\r' && sc.chPrev == '\n') + || sc.GetRelative(-2) == '\\') { // handle '\' line continuation + // retain last line's state + } else + cmdState = BASH_CMD_START; + } + styler.SetLineState(ln, cmdState); + } + } + + // controls change of cmdState at the end of a non-whitespace element + // states BODY|TEST|ARITH persist until the end of a command segment + // state WORD persist, but ends with 'in' or 'do' construct keywords + int cmdStateNew = BASH_CMD_BODY; + if (cmdState == BASH_CMD_TEST || cmdState == BASH_CMD_ARITH || cmdState == BASH_CMD_WORD) + cmdStateNew = cmdState; + int stylePrev = sc.state; + + // Determine if the current state should terminate. + switch (sc.state) { + case SCE_SH_OPERATOR: + sc.SetState(SCE_SH_DEFAULT); + if (cmdState == BASH_CMD_DELIM) // if command delimiter, start new command + cmdStateNew = BASH_CMD_START; + else if (sc.chPrev == '\\') // propagate command state if line continued + cmdStateNew = cmdState; + break; + case SCE_SH_WORD: + // "." never used in Bash variable names but used in file names + if (!setWord.Contains(sc.ch)) { + char s[500]; + char s2[10]; + sc.GetCurrent(s, sizeof(s)); + // allow keywords ending in a whitespace or command delimiter + s2[0] = static_cast(sc.ch); + s2[1] = '\0'; + bool keywordEnds = IsASpace(sc.ch) || cmdDelimiter.InList(s2); + // 'in' or 'do' may be construct keywords + if (cmdState == BASH_CMD_WORD) { + if (strcmp(s, "in") == 0 && keywordEnds) + cmdStateNew = BASH_CMD_BODY; + else if (strcmp(s, "do") == 0 && keywordEnds) + cmdStateNew = BASH_CMD_START; + else + sc.ChangeState(SCE_SH_IDENTIFIER); + sc.SetState(SCE_SH_DEFAULT); + break; + } + // a 'test' keyword starts a test expression + if (strcmp(s, "test") == 0) { + if (cmdState == BASH_CMD_START && keywordEnds) { + cmdStateNew = BASH_CMD_TEST; + testExprType = 0; + } else + sc.ChangeState(SCE_SH_IDENTIFIER); + } + // detect bash construct keywords + else if (bashStruct.InList(s)) { + if (cmdState == BASH_CMD_START && keywordEnds) + cmdStateNew = BASH_CMD_START; + else + sc.ChangeState(SCE_SH_IDENTIFIER); + } + // 'for'|'case'|'select' needs 'in'|'do' to be highlighted later + else if (bashStruct_in.InList(s)) { + if (cmdState == BASH_CMD_START && keywordEnds) + cmdStateNew = BASH_CMD_WORD; + else + sc.ChangeState(SCE_SH_IDENTIFIER); + } + // disambiguate option items and file test operators + else if (s[0] == '-') { + if (cmdState != BASH_CMD_TEST) + sc.ChangeState(SCE_SH_IDENTIFIER); + } + // disambiguate keywords and identifiers + else if (cmdState != BASH_CMD_START + || !(keywords.InList(s) && keywordEnds)) { + sc.ChangeState(SCE_SH_IDENTIFIER); + } + sc.SetState(SCE_SH_DEFAULT); + } + break; + case SCE_SH_IDENTIFIER: + if (sc.chPrev == '\\') { // for escaped chars + sc.ForwardSetState(SCE_SH_DEFAULT); + } else if (!setWord.Contains(sc.ch)) { + sc.SetState(SCE_SH_DEFAULT); + } else if (cmdState == BASH_CMD_ARITH && !setWordStart.Contains(sc.ch)) { + sc.SetState(SCE_SH_DEFAULT); + } + break; + case SCE_SH_NUMBER: + digit = translateBashDigit(sc.ch); + if (numBase == BASH_BASE_DECIMAL) { + if (sc.ch == '#') { + char s[10]; + sc.GetCurrent(s, sizeof(s)); + numBase = getBashNumberBase(s); + if (numBase != BASH_BASE_ERROR) + break; + } else if (IsADigit(sc.ch)) + break; + } else if (numBase == BASH_BASE_HEX) { + if (IsADigit(sc.ch, 16)) + break; +#ifdef PEDANTIC_OCTAL + } else if (numBase == BASH_BASE_OCTAL || + numBase == BASH_BASE_OCTAL_ERROR) { + if (digit <= 7) + break; + if (digit <= 9) { + numBase = BASH_BASE_OCTAL_ERROR; + break; + } +#endif + } else if (numBase == BASH_BASE_ERROR) { + if (digit <= 9) + break; + } else { // DD#DDDD number style handling + if (digit != BASH_BASE_ERROR) { + if (numBase <= 36) { + // case-insensitive if base<=36 + if (digit >= 36) digit -= 26; + } + if (digit < numBase) + break; + if (digit <= 9) { + numBase = BASH_BASE_ERROR; + break; + } + } + } + // fallthrough when number is at an end or error + if (numBase == BASH_BASE_ERROR +#ifdef PEDANTIC_OCTAL + || numBase == BASH_BASE_OCTAL_ERROR +#endif + ) { + sc.ChangeState(SCE_SH_ERROR); + } + sc.SetState(SCE_SH_DEFAULT); + break; + case SCE_SH_COMMENTLINE: + if (sc.atLineEnd && sc.chPrev != '\\') { + sc.SetState(SCE_SH_DEFAULT); + } + break; + case SCE_SH_HERE_DELIM: + // From Bash info: + // --------------- + // Specifier format is: <<[-]WORD + // Optional '-' is for removal of leading tabs from here-doc. + // Whitespace acceptable after <<[-] operator + // + if (HereDoc.State == 0) { // '<<' encountered + HereDoc.Quote = sc.chNext; + HereDoc.Quoted = false; + HereDoc.DelimiterLength = 0; + HereDoc.Delimiter[HereDoc.DelimiterLength] = '\0'; + if (sc.chNext == '\'' || sc.chNext == '\"') { // a quoted here-doc delimiter (' or ") + sc.Forward(); + HereDoc.Quoted = true; + HereDoc.State = 1; + } else if (setHereDoc.Contains(sc.chNext) || + (sc.chNext == '=' && cmdState != BASH_CMD_ARITH)) { + // an unquoted here-doc delimiter, no special handling + HereDoc.State = 1; + } else if (sc.chNext == '<') { // HERE string <<< + sc.Forward(); + sc.ForwardSetState(SCE_SH_DEFAULT); + } else if (IsASpace(sc.chNext)) { + // eat whitespace + } else if (setLeftShift.Contains(sc.chNext) || + (sc.chNext == '=' && cmdState == BASH_CMD_ARITH)) { + // left shift <<$var or <<= cases + sc.ChangeState(SCE_SH_OPERATOR); + sc.ForwardSetState(SCE_SH_DEFAULT); + } else { + // symbols terminates; deprecated zero-length delimiter + HereDoc.State = 1; + } + } else if (HereDoc.State == 1) { // collect the delimiter + // * if single quoted, there's no escape + // * if double quoted, there are \\ and \" escapes + if ((HereDoc.Quote == '\'' && sc.ch != HereDoc.Quote) || + (HereDoc.Quoted && sc.ch != HereDoc.Quote && sc.ch != '\\') || + (HereDoc.Quote != '\'' && sc.chPrev == '\\') || + (setHereDoc2.Contains(sc.ch))) { + HereDoc.Append(sc.ch); + } else if (HereDoc.Quoted && sc.ch == HereDoc.Quote) { // closing quote => end of delimiter + sc.ForwardSetState(SCE_SH_DEFAULT); + } else if (sc.ch == '\\') { + if (HereDoc.Quoted && sc.chNext != HereDoc.Quote && sc.chNext != '\\') { + // in quoted prefixes only \ and the quote eat the escape + HereDoc.Append(sc.ch); + } else { + // skip escape prefix + } + } else if (!HereDoc.Quoted) { + sc.SetState(SCE_SH_DEFAULT); + } + if (HereDoc.DelimiterLength >= HERE_DELIM_MAX - 1) { // force blowup + sc.SetState(SCE_SH_ERROR); + HereDoc.State = 0; + } + } + break; + case SCE_SH_HERE_Q: + // HereDoc.State == 2 + if (sc.atLineStart) { + sc.SetState(SCE_SH_HERE_Q); + int prefixws = 0; + while (sc.ch == '\t' && !sc.atLineEnd) { // tabulation prefix + sc.Forward(); + prefixws++; + } + if (prefixws > 0) + sc.SetState(SCE_SH_HERE_Q); + while (!sc.atLineEnd) { + sc.Forward(); + } + char s[HERE_DELIM_MAX]; + sc.GetCurrent(s, sizeof(s)); + if (sc.LengthCurrent() == 0) { // '' or "" delimiters + if ((prefixws == 0 || HereDoc.Indent) && + HereDoc.Quoted && HereDoc.DelimiterLength == 0) + sc.SetState(SCE_SH_DEFAULT); + break; + } + if (s[strlen(s) - 1] == '\r') + s[strlen(s) - 1] = '\0'; + if (strcmp(HereDoc.Delimiter, s) == 0) { + if ((prefixws == 0) || // indentation rule + (prefixws > 0 && HereDoc.Indent)) { + sc.SetState(SCE_SH_DEFAULT); + break; + } + } + } + break; + case SCE_SH_SCALAR: // variable names + if (!setParam.Contains(sc.ch)) { + if (sc.LengthCurrent() == 1) { + // Special variable: $(, $_ etc. + sc.ForwardSetState(SCE_SH_DEFAULT); + } else { + sc.SetState(SCE_SH_DEFAULT); + } + } + break; + case SCE_SH_STRING: // delimited styles, can nest + case SCE_SH_BACKTICKS: + if (sc.ch == '\\' && QuoteStack.Up != '\\') { + if (QuoteStack.Style != BASH_DELIM_LITERAL) + sc.Forward(); + } else if (sc.ch == QuoteStack.Down) { + QuoteStack.Count--; + if (QuoteStack.Count == 0) { + if (QuoteStack.Depth > 0) { + QuoteStack.Pop(); + } else + sc.ForwardSetState(SCE_SH_DEFAULT); + } + } else if (sc.ch == QuoteStack.Up) { + QuoteStack.Count++; + } else { + if (QuoteStack.Style == BASH_DELIM_STRING || + QuoteStack.Style == BASH_DELIM_LSTRING + ) { // do nesting for "string", $"locale-string" + if (sc.ch == '`') { + QuoteStack.Push(sc.ch, BASH_DELIM_BACKTICK); + } else if (sc.ch == '$' && sc.chNext == '(') { + sc.Forward(); + QuoteStack.Push(sc.ch, BASH_DELIM_COMMAND); + } + } else if (QuoteStack.Style == BASH_DELIM_COMMAND || + QuoteStack.Style == BASH_DELIM_BACKTICK + ) { // do nesting for $(command), `command` + if (sc.ch == '\'') { + QuoteStack.Push(sc.ch, BASH_DELIM_LITERAL); + } else if (sc.ch == '\"') { + QuoteStack.Push(sc.ch, BASH_DELIM_STRING); + } else if (sc.ch == '`') { + QuoteStack.Push(sc.ch, BASH_DELIM_BACKTICK); + } else if (sc.ch == '$') { + if (sc.chNext == '\'') { + sc.Forward(); + QuoteStack.Push(sc.ch, BASH_DELIM_CSTRING); + } else if (sc.chNext == '\"') { + sc.Forward(); + QuoteStack.Push(sc.ch, BASH_DELIM_LSTRING); + } else if (sc.chNext == '(') { + sc.Forward(); + QuoteStack.Push(sc.ch, BASH_DELIM_COMMAND); + } + } + } + } + break; + case SCE_SH_PARAM: // ${parameter} + if (sc.ch == '\\' && Quote.Up != '\\') { + sc.Forward(); + } else if (sc.ch == Quote.Down) { + Quote.Count--; + if (Quote.Count == 0) { + sc.ForwardSetState(SCE_SH_DEFAULT); + } + } else if (sc.ch == Quote.Up) { + Quote.Count++; + } + break; + case SCE_SH_CHARACTER: // singly-quoted strings + if (sc.ch == Quote.Down) { + Quote.Count--; + if (Quote.Count == 0) { + sc.ForwardSetState(SCE_SH_DEFAULT); + } + } + break; + } + + // Must check end of HereDoc state 1 before default state is handled + if (HereDoc.State == 1 && sc.atLineEnd) { + // Begin of here-doc (the line after the here-doc delimiter): + // Lexically, the here-doc starts from the next line after the >>, but the + // first line of here-doc seem to follow the style of the last EOL sequence + HereDoc.State = 2; + if (HereDoc.Quoted) { + if (sc.state == SCE_SH_HERE_DELIM) { + // Missing quote at end of string! Syntax error in bash 4.3 + // Mark this bit as an error, do not colour any here-doc + sc.ChangeState(SCE_SH_ERROR); + sc.SetState(SCE_SH_DEFAULT); + } else { + // HereDoc.Quote always == '\'' + sc.SetState(SCE_SH_HERE_Q); + } + } else if (HereDoc.DelimiterLength == 0) { + // no delimiter, illegal (but '' and "" are legal) + sc.ChangeState(SCE_SH_ERROR); + sc.SetState(SCE_SH_DEFAULT); + } else { + sc.SetState(SCE_SH_HERE_Q); + } + } + + // update cmdState about the current command segment + if (stylePrev != SCE_SH_DEFAULT && sc.state == SCE_SH_DEFAULT) { + cmdState = cmdStateNew; + } + // Determine if a new state should be entered. + if (sc.state == SCE_SH_DEFAULT) { + if (sc.ch == '\\') { + // Bash can escape any non-newline as a literal + sc.SetState(SCE_SH_IDENTIFIER); + if (sc.chNext == '\r' || sc.chNext == '\n') + sc.SetState(SCE_SH_OPERATOR); + } else if (IsADigit(sc.ch)) { + sc.SetState(SCE_SH_NUMBER); + numBase = BASH_BASE_DECIMAL; + if (sc.ch == '0') { // hex,octal + if (sc.chNext == 'x' || sc.chNext == 'X') { + numBase = BASH_BASE_HEX; + sc.Forward(); + } else if (IsADigit(sc.chNext)) { +#ifdef PEDANTIC_OCTAL + numBase = BASH_BASE_OCTAL; +#else + numBase = BASH_BASE_HEX; +#endif + } + } + } else if (setWordStart.Contains(sc.ch)) { + sc.SetState(SCE_SH_WORD); + } else if (sc.ch == '#') { + if (stylePrev != SCE_SH_WORD && stylePrev != SCE_SH_IDENTIFIER && + (sc.currentPos == 0 || setMetaCharacter.Contains(sc.chPrev))) { + sc.SetState(SCE_SH_COMMENTLINE); + } else { + sc.SetState(SCE_SH_WORD); + } + // handle some zsh features within arithmetic expressions only + if (cmdState == BASH_CMD_ARITH) { + if (sc.chPrev == '[') { // [#8] [##8] output digit setting + sc.SetState(SCE_SH_WORD); + if (sc.chNext == '#') { + sc.Forward(); + } + } else if (sc.Match("##^") && IsUpperCase(sc.GetRelative(3))) { // ##^A + sc.SetState(SCE_SH_IDENTIFIER); + sc.Forward(3); + } else if (sc.chNext == '#' && !IsASpace(sc.GetRelative(2))) { // ##a + sc.SetState(SCE_SH_IDENTIFIER); + sc.Forward(2); + } else if (setWordStart.Contains(sc.chNext)) { // #name + sc.SetState(SCE_SH_IDENTIFIER); + } + } + } else if (sc.ch == '\"') { + sc.SetState(SCE_SH_STRING); + QuoteStack.Start(sc.ch, BASH_DELIM_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_SH_CHARACTER); + Quote.Start(sc.ch); + } else if (sc.ch == '`') { + sc.SetState(SCE_SH_BACKTICKS); + QuoteStack.Start(sc.ch, BASH_DELIM_BACKTICK); + } else if (sc.ch == '$') { + if (sc.Match("$((")) { + sc.SetState(SCE_SH_OPERATOR); // handle '((' later + continue; + } + sc.SetState(SCE_SH_SCALAR); + sc.Forward(); + if (sc.ch == '{') { + sc.ChangeState(SCE_SH_PARAM); + Quote.Start(sc.ch); + } else if (sc.ch == '\'') { + sc.ChangeState(SCE_SH_STRING); + QuoteStack.Start(sc.ch, BASH_DELIM_CSTRING); + } else if (sc.ch == '"') { + sc.ChangeState(SCE_SH_STRING); + QuoteStack.Start(sc.ch, BASH_DELIM_LSTRING); + } else if (sc.ch == '(') { + sc.ChangeState(SCE_SH_BACKTICKS); + QuoteStack.Start(sc.ch, BASH_DELIM_COMMAND); + } else if (sc.ch == '`') { // $` seen in a configure script, valid? + sc.ChangeState(SCE_SH_BACKTICKS); + QuoteStack.Start(sc.ch, BASH_DELIM_BACKTICK); + } else { + continue; // scalar has no delimiter pair + } + } else if (sc.Match('<', '<')) { + sc.SetState(SCE_SH_HERE_DELIM); + HereDoc.State = 0; + if (sc.GetRelative(2) == '-') { // <<- indent case + HereDoc.Indent = true; + sc.Forward(); + } else { + HereDoc.Indent = false; + } + } else if (sc.ch == '-' && // one-char file test operators + setSingleCharOp.Contains(sc.chNext) && + !setWord.Contains(sc.GetRelative(2)) && + IsASpace(sc.chPrev)) { + sc.SetState(SCE_SH_WORD); + sc.Forward(); + } else if (setBashOperator.Contains(sc.ch)) { + char s[10]; + bool isCmdDelim = false; + sc.SetState(SCE_SH_OPERATOR); + // globs have no whitespace, do not appear in arithmetic expressions + if (cmdState != BASH_CMD_ARITH && sc.ch == '(' && sc.chNext != '(') { + int i = GlobScan(sc); + if (i > 1) { + sc.SetState(SCE_SH_IDENTIFIER); + sc.Forward(i); + continue; + } + } + // handle opening delimiters for test/arithmetic expressions - ((,[[,[ + if (cmdState == BASH_CMD_START + || cmdState == BASH_CMD_BODY) { + if (sc.Match('(', '(')) { + cmdState = BASH_CMD_ARITH; + sc.Forward(); + } else if (sc.Match('[', '[') && IsASpace(sc.GetRelative(2))) { + cmdState = BASH_CMD_TEST; + testExprType = 1; + sc.Forward(); + } else if (sc.ch == '[' && IsASpace(sc.chNext)) { + cmdState = BASH_CMD_TEST; + testExprType = 2; + } + } + // special state -- for ((x;y;z)) in ... looping + if (cmdState == BASH_CMD_WORD && sc.Match('(', '(')) { + cmdState = BASH_CMD_ARITH; + sc.Forward(); + continue; + } + // handle command delimiters in command START|BODY|WORD state, also TEST if 'test' + if (cmdState == BASH_CMD_START + || cmdState == BASH_CMD_BODY + || cmdState == BASH_CMD_WORD + || (cmdState == BASH_CMD_TEST && testExprType == 0)) { + s[0] = static_cast(sc.ch); + if (setBashOperator.Contains(sc.chNext)) { + s[1] = static_cast(sc.chNext); + s[2] = '\0'; + isCmdDelim = cmdDelimiter.InList(s); + if (isCmdDelim) + sc.Forward(); + } + if (!isCmdDelim) { + s[1] = '\0'; + isCmdDelim = cmdDelimiter.InList(s); + } + if (isCmdDelim) { + cmdState = BASH_CMD_DELIM; + continue; + } + } + // handle closing delimiters for test/arithmetic expressions - )),]],] + if (cmdState == BASH_CMD_ARITH && sc.Match(')', ')')) { + cmdState = BASH_CMD_BODY; + sc.Forward(); + } else if (cmdState == BASH_CMD_TEST && IsASpace(sc.chPrev)) { + if (sc.Match(']', ']') && testExprType == 1) { + sc.Forward(); + cmdState = BASH_CMD_BODY; + } else if (sc.ch == ']' && testExprType == 2) { + cmdState = BASH_CMD_BODY; + } + } + } + }// sc.state + } + sc.Complete(); + if (sc.state == SCE_SH_HERE_Q) { + styler.ChangeLexerState(sc.currentPos, styler.Length()); + } + sc.Complete(); +} + +static bool IsCommentLine(Sci_Position line, Accessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + if (ch == '#') + return true; + else if (ch != ' ' && ch != '\t') + return false; + } + return false; +} + +static void FoldBashDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], + Accessor &styler) { + bool foldComment = styler.GetPropertyInt("fold.comment") != 0; + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + int skipHereCh = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + char word[8] = { '\0' }; // we're not interested in long words anyway + unsigned int wordlen = 0; + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + // Comment folding + if (foldComment && atEOL && IsCommentLine(lineCurrent, styler)) + { + if (!IsCommentLine(lineCurrent - 1, styler) + && IsCommentLine(lineCurrent + 1, styler)) + levelCurrent++; + else if (IsCommentLine(lineCurrent - 1, styler) + && !IsCommentLine(lineCurrent + 1, styler)) + levelCurrent--; + } + if (style == SCE_SH_WORD) { + if ((wordlen + 1) < sizeof(word)) + word[wordlen++] = ch; + if (styleNext != style) { + word[wordlen] = '\0'; + wordlen = 0; + if (strcmp(word, "if") == 0 || strcmp(word, "case") == 0 || strcmp(word, "do") == 0) { + levelCurrent++; + } else if (strcmp(word, "fi") == 0 || strcmp(word, "esac") == 0 || strcmp(word, "done") == 0) { + levelCurrent--; + } + } + } + if (style == SCE_SH_OPERATOR) { + if (ch == '{') { + levelCurrent++; + } else if (ch == '}') { + levelCurrent--; + } + } + // Here Document folding + if (style == SCE_SH_HERE_DELIM) { + if (ch == '<' && chNext == '<') { + if (styler.SafeGetCharAt(i + 2) == '<') { + skipHereCh = 1; + } else { + if (skipHereCh == 0) { + levelCurrent++; + } else { + skipHereCh = 0; + } + } + } + } else if (style == SCE_SH_HERE_Q && styler.StyleAt(i+1) == SCE_SH_DEFAULT) { + levelCurrent--; + } + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) + visibleChars++; + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const bashWordListDesc[] = { + "Keywords", + 0 +}; + +LexerModule lmBash(SCLEX_BASH, ColouriseBashDoc, "bash", FoldBashDoc, bashWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexBasic.cpp b/third_party/qscintilla/scintilla/lexers/LexBasic.cpp new file mode 100644 index 0000000..4ec58dc --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexBasic.cpp @@ -0,0 +1,565 @@ +// Scintilla source code edit control +/** @file LexBasic.cxx + ** Lexer for BlitzBasic and PureBasic. + ** Converted to lexer object and added further folding features/properties by "Udo Lechner" + **/ +// Copyright 1998-2003 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +// This tries to be a unified Lexer/Folder for all the BlitzBasic/BlitzMax/PurBasic basics +// and derivatives. Once they diverge enough, might want to split it into multiple +// lexers for more code clearity. +// +// Mail me (elias users sf net) for any bugs. + +// Folding only works for simple things like functions or types. + +// You may want to have a look at my ctags lexer as well, if you additionally to coloring +// and folding need to extract things like label tags in your editor. + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +/* Bits: + * 1 - whitespace + * 2 - operator + * 4 - identifier + * 8 - decimal digit + * 16 - hex digit + * 32 - bin digit + * 64 - letter + */ +static int character_classification[128] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 10, 2, + 60, 60, 28, 28, 28, 28, 28, 28, 28, 28, 2, 2, 2, 2, 2, 2, + 2, 84, 84, 84, 84, 84, 84, 68, 68, 68, 68, 68, 68, 68, 68, 68, + 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 2, 2, 2, 2, 68, + 2, 84, 84, 84, 84, 84, 84, 68, 68, 68, 68, 68, 68, 68, 68, 68, + 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 2, 2, 2, 2, 0 +}; + +static bool IsSpace(int c) { + return c < 128 && (character_classification[c] & 1); +} + +static bool IsOperator(int c) { + return c < 128 && (character_classification[c] & 2); +} + +static bool IsIdentifier(int c) { + return c < 128 && (character_classification[c] & 4); +} + +static bool IsDigit(int c) { + return c < 128 && (character_classification[c] & 8); +} + +static bool IsHexDigit(int c) { + return c < 128 && (character_classification[c] & 16); +} + +static bool IsBinDigit(int c) { + return c < 128 && (character_classification[c] & 32); +} + +static bool IsLetter(int c) { + return c < 128 && (character_classification[c] & 64); +} + +static int LowerCase(int c) +{ + if (c >= 'A' && c <= 'Z') + return 'a' + c - 'A'; + return c; +} + +static int CheckBlitzFoldPoint(char const *token, int &level) { + if (!strcmp(token, "function") || + !strcmp(token, "type")) { + level |= SC_FOLDLEVELHEADERFLAG; + return 1; + } + if (!strcmp(token, "end function") || + !strcmp(token, "end type")) { + return -1; + } + return 0; +} + +static int CheckPureFoldPoint(char const *token, int &level) { + if (!strcmp(token, "procedure") || + !strcmp(token, "enumeration") || + !strcmp(token, "interface") || + !strcmp(token, "structure")) { + level |= SC_FOLDLEVELHEADERFLAG; + return 1; + } + if (!strcmp(token, "endprocedure") || + !strcmp(token, "endenumeration") || + !strcmp(token, "endinterface") || + !strcmp(token, "endstructure")) { + return -1; + } + return 0; +} + +static int CheckFreeFoldPoint(char const *token, int &level) { + if (!strcmp(token, "function") || + !strcmp(token, "sub") || + !strcmp(token, "enum") || + !strcmp(token, "type") || + !strcmp(token, "union") || + !strcmp(token, "property") || + !strcmp(token, "destructor") || + !strcmp(token, "constructor")) { + level |= SC_FOLDLEVELHEADERFLAG; + return 1; + } + if (!strcmp(token, "end function") || + !strcmp(token, "end sub") || + !strcmp(token, "end enum") || + !strcmp(token, "end type") || + !strcmp(token, "end union") || + !strcmp(token, "end property") || + !strcmp(token, "end destructor") || + !strcmp(token, "end constructor")) { + return -1; + } + return 0; +} + +// An individual named option for use in an OptionSet + +// Options used for LexerBasic +struct OptionsBasic { + bool fold; + bool foldSyntaxBased; + bool foldCommentExplicit; + std::string foldExplicitStart; + std::string foldExplicitEnd; + bool foldExplicitAnywhere; + bool foldCompact; + OptionsBasic() { + fold = false; + foldSyntaxBased = true; + foldCommentExplicit = false; + foldExplicitStart = ""; + foldExplicitEnd = ""; + foldExplicitAnywhere = false; + foldCompact = true; + } +}; + +static const char * const blitzbasicWordListDesc[] = { + "BlitzBasic Keywords", + "user1", + "user2", + "user3", + 0 +}; + +static const char * const purebasicWordListDesc[] = { + "PureBasic Keywords", + "PureBasic PreProcessor Keywords", + "user defined 1", + "user defined 2", + 0 +}; + +static const char * const freebasicWordListDesc[] = { + "FreeBasic Keywords", + "FreeBasic PreProcessor Keywords", + "user defined 1", + "user defined 2", + 0 +}; + +struct OptionSetBasic : public OptionSet { + OptionSetBasic(const char * const wordListDescriptions[]) { + DefineProperty("fold", &OptionsBasic::fold); + + DefineProperty("fold.basic.syntax.based", &OptionsBasic::foldSyntaxBased, + "Set this property to 0 to disable syntax based folding."); + + DefineProperty("fold.basic.comment.explicit", &OptionsBasic::foldCommentExplicit, + "This option enables folding explicit fold points when using the Basic lexer. " + "Explicit fold points allows adding extra folding by placing a ;{ (BB/PB) or '{ (FB) comment at the start " + "and a ;} (BB/PB) or '} (FB) at the end of a section that should be folded."); + + DefineProperty("fold.basic.explicit.start", &OptionsBasic::foldExplicitStart, + "The string to use for explicit fold start points, replacing the standard ;{ (BB/PB) or '{ (FB)."); + + DefineProperty("fold.basic.explicit.end", &OptionsBasic::foldExplicitEnd, + "The string to use for explicit fold end points, replacing the standard ;} (BB/PB) or '} (FB)."); + + DefineProperty("fold.basic.explicit.anywhere", &OptionsBasic::foldExplicitAnywhere, + "Set this property to 1 to enable explicit fold points anywhere, not just in line comments."); + + DefineProperty("fold.compact", &OptionsBasic::foldCompact); + + DefineWordListSets(wordListDescriptions); + } +}; + +class LexerBasic : public DefaultLexer { + char comment_char; + int (*CheckFoldPoint)(char const *, int &); + WordList keywordlists[4]; + OptionsBasic options; + OptionSetBasic osBasic; +public: + LexerBasic(char comment_char_, int (*CheckFoldPoint_)(char const *, int &), const char * const wordListDescriptions[]) : + comment_char(comment_char_), + CheckFoldPoint(CheckFoldPoint_), + osBasic(wordListDescriptions) { + } + virtual ~LexerBasic() { + } + void SCI_METHOD Release() override { + delete this; + } + int SCI_METHOD Version() const override { + return lvOriginal; + } + const char * SCI_METHOD PropertyNames() override { + return osBasic.PropertyNames(); + } + int SCI_METHOD PropertyType(const char *name) override { + return osBasic.PropertyType(name); + } + const char * SCI_METHOD DescribeProperty(const char *name) override { + return osBasic.DescribeProperty(name); + } + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override; + const char * SCI_METHOD DescribeWordListSets() override { + return osBasic.DescribeWordListSets(); + } + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void * SCI_METHOD PrivateCall(int, void *) override { + return 0; + } + static ILexer *LexerFactoryBlitzBasic() { + return new LexerBasic(';', CheckBlitzFoldPoint, blitzbasicWordListDesc); + } + static ILexer *LexerFactoryPureBasic() { + return new LexerBasic(';', CheckPureFoldPoint, purebasicWordListDesc); + } + static ILexer *LexerFactoryFreeBasic() { + return new LexerBasic('\'', CheckFreeFoldPoint, freebasicWordListDesc ); + } +}; + +Sci_Position SCI_METHOD LexerBasic::PropertySet(const char *key, const char *val) { + if (osBasic.PropertySet(&options, key, val)) { + return 0; + } + return -1; +} + +Sci_Position SCI_METHOD LexerBasic::WordListSet(int n, const char *wl) { + WordList *wordListN = 0; + switch (n) { + case 0: + wordListN = &keywordlists[0]; + break; + case 1: + wordListN = &keywordlists[1]; + break; + case 2: + wordListN = &keywordlists[2]; + break; + case 3: + wordListN = &keywordlists[3]; + break; + } + Sci_Position firstModification = -1; + if (wordListN) { + WordList wlNew; + wlNew.Set(wl); + if (*wordListN != wlNew) { + wordListN->Set(wl); + firstModification = 0; + } + } + return firstModification; +} + +void SCI_METHOD LexerBasic::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + LexAccessor styler(pAccess); + + bool wasfirst = true, isfirst = true; // true if first token in a line + styler.StartAt(startPos); + int styleBeforeKeyword = SCE_B_DEFAULT; + + StyleContext sc(startPos, length, initStyle, styler); + + // Can't use sc.More() here else we miss the last character + for (; ; sc.Forward()) { + if (sc.state == SCE_B_IDENTIFIER) { + if (!IsIdentifier(sc.ch)) { + // Labels + if (wasfirst && sc.Match(':')) { + sc.ChangeState(SCE_B_LABEL); + sc.ForwardSetState(SCE_B_DEFAULT); + } else { + char s[100]; + int kstates[4] = { + SCE_B_KEYWORD, + SCE_B_KEYWORD2, + SCE_B_KEYWORD3, + SCE_B_KEYWORD4, + }; + sc.GetCurrentLowered(s, sizeof(s)); + for (int i = 0; i < 4; i++) { + if (keywordlists[i].InList(s)) { + sc.ChangeState(kstates[i]); + } + } + // Types, must set them as operator else they will be + // matched as number/constant + if (sc.Match('.') || sc.Match('$') || sc.Match('%') || + sc.Match('#')) { + sc.SetState(SCE_B_OPERATOR); + } else { + sc.SetState(SCE_B_DEFAULT); + } + } + } + } else if (sc.state == SCE_B_OPERATOR) { + if (!IsOperator(sc.ch) || sc.Match('#')) + sc.SetState(SCE_B_DEFAULT); + } else if (sc.state == SCE_B_LABEL) { + if (!IsIdentifier(sc.ch)) + sc.SetState(SCE_B_DEFAULT); + } else if (sc.state == SCE_B_CONSTANT) { + if (!IsIdentifier(sc.ch)) + sc.SetState(SCE_B_DEFAULT); + } else if (sc.state == SCE_B_NUMBER) { + if (!IsDigit(sc.ch)) + sc.SetState(SCE_B_DEFAULT); + } else if (sc.state == SCE_B_HEXNUMBER) { + if (!IsHexDigit(sc.ch)) + sc.SetState(SCE_B_DEFAULT); + } else if (sc.state == SCE_B_BINNUMBER) { + if (!IsBinDigit(sc.ch)) + sc.SetState(SCE_B_DEFAULT); + } else if (sc.state == SCE_B_STRING) { + if (sc.ch == '"') { + sc.ForwardSetState(SCE_B_DEFAULT); + } + if (sc.atLineEnd) { + sc.ChangeState(SCE_B_ERROR); + sc.SetState(SCE_B_DEFAULT); + } + } else if (sc.state == SCE_B_COMMENT || sc.state == SCE_B_PREPROCESSOR) { + if (sc.atLineEnd) { + sc.SetState(SCE_B_DEFAULT); + } + } else if (sc.state == SCE_B_DOCLINE) { + if (sc.atLineEnd) { + sc.SetState(SCE_B_DEFAULT); + } else if (sc.ch == '\\' || sc.ch == '@') { + if (IsLetter(sc.chNext) && sc.chPrev != '\\') { + styleBeforeKeyword = sc.state; + sc.SetState(SCE_B_DOCKEYWORD); + }; + } + } else if (sc.state == SCE_B_DOCKEYWORD) { + if (IsSpace(sc.ch)) { + sc.SetState(styleBeforeKeyword); + } else if (sc.atLineEnd && styleBeforeKeyword == SCE_B_DOCLINE) { + sc.SetState(SCE_B_DEFAULT); + } + } else if (sc.state == SCE_B_COMMENTBLOCK) { + if (sc.Match("\'/")) { + sc.Forward(); + sc.ForwardSetState(SCE_B_DEFAULT); + } + } else if (sc.state == SCE_B_DOCBLOCK) { + if (sc.Match("\'/")) { + sc.Forward(); + sc.ForwardSetState(SCE_B_DEFAULT); + } else if (sc.ch == '\\' || sc.ch == '@') { + if (IsLetter(sc.chNext) && sc.chPrev != '\\') { + styleBeforeKeyword = sc.state; + sc.SetState(SCE_B_DOCKEYWORD); + }; + } + } + + if (sc.atLineStart) + isfirst = true; + + if (sc.state == SCE_B_DEFAULT || sc.state == SCE_B_ERROR) { + if (isfirst && sc.Match('.') && comment_char != '\'') { + sc.SetState(SCE_B_LABEL); + } else if (isfirst && sc.Match('#')) { + wasfirst = isfirst; + sc.SetState(SCE_B_IDENTIFIER); + } else if (sc.Match(comment_char)) { + // Hack to make deprecated QBASIC '$Include show + // up in freebasic with SCE_B_PREPROCESSOR. + if (comment_char == '\'' && sc.Match(comment_char, '$')) + sc.SetState(SCE_B_PREPROCESSOR); + else if (sc.Match("\'*") || sc.Match("\'!")) { + sc.SetState(SCE_B_DOCLINE); + } else { + sc.SetState(SCE_B_COMMENT); + } + } else if (sc.Match("/\'")) { + if (sc.Match("/\'*") || sc.Match("/\'!")) { // Support of gtk-doc/Doxygen doc. style + sc.SetState(SCE_B_DOCBLOCK); + } else { + sc.SetState(SCE_B_COMMENTBLOCK); + } + sc.Forward(); // Eat the ' so it isn't used for the end of the comment + } else if (sc.Match('"')) { + sc.SetState(SCE_B_STRING); + } else if (IsDigit(sc.ch)) { + sc.SetState(SCE_B_NUMBER); + } else if (sc.Match('$') || sc.Match("&h") || sc.Match("&H") || sc.Match("&o") || sc.Match("&O")) { + sc.SetState(SCE_B_HEXNUMBER); + } else if (sc.Match('%') || sc.Match("&b") || sc.Match("&B")) { + sc.SetState(SCE_B_BINNUMBER); + } else if (sc.Match('#')) { + sc.SetState(SCE_B_CONSTANT); + } else if (IsOperator(sc.ch)) { + sc.SetState(SCE_B_OPERATOR); + } else if (IsIdentifier(sc.ch)) { + wasfirst = isfirst; + sc.SetState(SCE_B_IDENTIFIER); + } else if (!IsSpace(sc.ch)) { + sc.SetState(SCE_B_ERROR); + } + } + + if (!IsSpace(sc.ch)) + isfirst = false; + + if (!sc.More()) + break; + } + sc.Complete(); +} + + +void SCI_METHOD LexerBasic::Fold(Sci_PositionU startPos, Sci_Position length, int /* initStyle */, IDocument *pAccess) { + + if (!options.fold) + return; + + LexAccessor styler(pAccess); + + Sci_Position line = styler.GetLine(startPos); + int level = styler.LevelAt(line); + int go = 0, done = 0; + Sci_Position endPos = startPos + length; + char word[256]; + int wordlen = 0; + const bool userDefinedFoldMarkers = !options.foldExplicitStart.empty() && !options.foldExplicitEnd.empty(); + int cNext = styler[startPos]; + + // Scan for tokens at the start of the line (they may include + // whitespace, for tokens like "End Function" + for (Sci_Position i = startPos; i < endPos; i++) { + int c = cNext; + cNext = styler.SafeGetCharAt(i + 1); + bool atEOL = (c == '\r' && cNext != '\n') || (c == '\n'); + if (options.foldSyntaxBased && !done && !go) { + if (wordlen) { // are we scanning a token already? + word[wordlen] = static_cast(LowerCase(c)); + if (!IsIdentifier(c)) { // done with token + word[wordlen] = '\0'; + go = CheckFoldPoint(word, level); + if (!go) { + // Treat any whitespace as single blank, for + // things like "End Function". + if (IsSpace(c) && IsIdentifier(word[wordlen - 1])) { + word[wordlen] = ' '; + if (wordlen < 255) + wordlen++; + } + else // done with this line + done = 1; + } + } else if (wordlen < 255) { + wordlen++; + } + } else { // start scanning at first non-whitespace character + if (!IsSpace(c)) { + if (IsIdentifier(c)) { + word[0] = static_cast(LowerCase(c)); + wordlen = 1; + } else // done with this line + done = 1; + } + } + } + if (options.foldCommentExplicit && ((styler.StyleAt(i) == SCE_B_COMMENT) || options.foldExplicitAnywhere)) { + if (userDefinedFoldMarkers) { + if (styler.Match(i, options.foldExplicitStart.c_str())) { + level |= SC_FOLDLEVELHEADERFLAG; + go = 1; + } else if (styler.Match(i, options.foldExplicitEnd.c_str())) { + go = -1; + } + } else { + if (c == comment_char) { + if (cNext == '{') { + level |= SC_FOLDLEVELHEADERFLAG; + go = 1; + } else if (cNext == '}') { + go = -1; + } + } + } + } + if (atEOL) { // line end + if (!done && wordlen == 0 && options.foldCompact) // line was only space + level |= SC_FOLDLEVELWHITEFLAG; + if (level != styler.LevelAt(line)) + styler.SetLevel(line, level); + level += go; + line++; + // reset state + wordlen = 0; + level &= ~SC_FOLDLEVELHEADERFLAG; + level &= ~SC_FOLDLEVELWHITEFLAG; + go = 0; + done = 0; + } + } +} + +LexerModule lmBlitzBasic(SCLEX_BLITZBASIC, LexerBasic::LexerFactoryBlitzBasic, "blitzbasic", blitzbasicWordListDesc); + +LexerModule lmPureBasic(SCLEX_PUREBASIC, LexerBasic::LexerFactoryPureBasic, "purebasic", purebasicWordListDesc); + +LexerModule lmFreeBasic(SCLEX_FREEBASIC, LexerBasic::LexerFactoryFreeBasic, "freebasic", freebasicWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexBatch.cpp b/third_party/qscintilla/scintilla/lexers/LexBatch.cpp new file mode 100644 index 0000000..db7e376 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexBatch.cpp @@ -0,0 +1,498 @@ +// Scintilla source code edit control +/** @file LexBatch.cxx + ** Lexer for batch files. + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static bool Is0To9(char ch) { + return (ch >= '0') && (ch <= '9'); +} + +static bool IsAlphabetic(int ch) { + return IsASCII(ch) && isalpha(ch); +} + +static inline bool AtEOL(Accessor &styler, Sci_PositionU i) { + return (styler[i] == '\n') || + ((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n')); +} + +// Tests for BATCH Operators +static bool IsBOperator(char ch) { + return (ch == '=') || (ch == '+') || (ch == '>') || (ch == '<') || + (ch == '|') || (ch == '?') || (ch == '*'); +} + +// Tests for BATCH Separators +static bool IsBSeparator(char ch) { + return (ch == '\\') || (ch == '.') || (ch == ';') || + (ch == '\"') || (ch == '\'') || (ch == '/'); +} + +static void ColouriseBatchLine( + char *lineBuffer, + Sci_PositionU lengthLine, + Sci_PositionU startLine, + Sci_PositionU endPos, + WordList *keywordlists[], + Accessor &styler) { + + Sci_PositionU offset = 0; // Line Buffer Offset + Sci_PositionU cmdLoc; // External Command / Program Location + char wordBuffer[81]; // Word Buffer - large to catch long paths + Sci_PositionU wbl; // Word Buffer Length + Sci_PositionU wbo; // Word Buffer Offset - also Special Keyword Buffer Length + WordList &keywords = *keywordlists[0]; // Internal Commands + WordList &keywords2 = *keywordlists[1]; // External Commands (optional) + + // CHOICE, ECHO, GOTO, PROMPT and SET have Default Text that may contain Regular Keywords + // Toggling Regular Keyword Checking off improves readability + // Other Regular Keywords and External Commands / Programs might also benefit from toggling + // Need a more robust algorithm to properly toggle Regular Keyword Checking + bool continueProcessing = true; // Used to toggle Regular Keyword Checking + // Special Keywords are those that allow certain characters without whitespace after the command + // Examples are: cd. cd\ md. rd. dir| dir> echo: echo. path= + // Special Keyword Buffer used to determine if the first n characters is a Keyword + char sKeywordBuffer[10]; // Special Keyword Buffer + bool sKeywordFound; // Exit Special Keyword for-loop if found + + // Skip initial spaces + while ((offset < lengthLine) && (isspacechar(lineBuffer[offset]))) { + offset++; + } + // Colorize Default Text + styler.ColourTo(startLine + offset - 1, SCE_BAT_DEFAULT); + // Set External Command / Program Location + cmdLoc = offset; + + // Check for Fake Label (Comment) or Real Label - return if found + if (lineBuffer[offset] == ':') { + if (lineBuffer[offset + 1] == ':') { + // Colorize Fake Label (Comment) - :: is similar to REM, see http://content.techweb.com/winmag/columns/explorer/2000/21.htm + styler.ColourTo(endPos, SCE_BAT_COMMENT); + } else { + // Colorize Real Label + styler.ColourTo(endPos, SCE_BAT_LABEL); + } + return; + // Check for Drive Change (Drive Change is internal command) - return if found + } else if ((IsAlphabetic(lineBuffer[offset])) && + (lineBuffer[offset + 1] == ':') && + ((isspacechar(lineBuffer[offset + 2])) || + (((lineBuffer[offset + 2] == '\\')) && + (isspacechar(lineBuffer[offset + 3]))))) { + // Colorize Regular Keyword + styler.ColourTo(endPos, SCE_BAT_WORD); + return; + } + + // Check for Hide Command (@ECHO OFF/ON) + if (lineBuffer[offset] == '@') { + styler.ColourTo(startLine + offset, SCE_BAT_HIDE); + offset++; + } + // Skip next spaces + while ((offset < lengthLine) && (isspacechar(lineBuffer[offset]))) { + offset++; + } + + // Read remainder of line word-at-a-time or remainder-of-word-at-a-time + while (offset < lengthLine) { + if (offset > startLine) { + // Colorize Default Text + styler.ColourTo(startLine + offset - 1, SCE_BAT_DEFAULT); + } + // Copy word from Line Buffer into Word Buffer + wbl = 0; + for (; offset < lengthLine && wbl < 80 && + !isspacechar(lineBuffer[offset]); wbl++, offset++) { + wordBuffer[wbl] = static_cast(tolower(lineBuffer[offset])); + } + wordBuffer[wbl] = '\0'; + wbo = 0; + + // Check for Comment - return if found + if (CompareCaseInsensitive(wordBuffer, "rem") == 0) { + styler.ColourTo(endPos, SCE_BAT_COMMENT); + return; + } + // Check for Separator + if (IsBSeparator(wordBuffer[0])) { + // Check for External Command / Program + if ((cmdLoc == offset - wbl) && + ((wordBuffer[0] == ':') || + (wordBuffer[0] == '\\') || + (wordBuffer[0] == '.'))) { + // Reset Offset to re-process remainder of word + offset -= (wbl - 1); + // Colorize External Command / Program + if (!keywords2) { + styler.ColourTo(startLine + offset - 1, SCE_BAT_COMMAND); + } else if (keywords2.InList(wordBuffer)) { + styler.ColourTo(startLine + offset - 1, SCE_BAT_COMMAND); + } else { + styler.ColourTo(startLine + offset - 1, SCE_BAT_DEFAULT); + } + // Reset External Command / Program Location + cmdLoc = offset; + } else { + // Reset Offset to re-process remainder of word + offset -= (wbl - 1); + // Colorize Default Text + styler.ColourTo(startLine + offset - 1, SCE_BAT_DEFAULT); + } + // Check for Regular Keyword in list + } else if ((keywords.InList(wordBuffer)) && + (continueProcessing)) { + // ECHO, GOTO, PROMPT and SET require no further Regular Keyword Checking + if ((CompareCaseInsensitive(wordBuffer, "echo") == 0) || + (CompareCaseInsensitive(wordBuffer, "goto") == 0) || + (CompareCaseInsensitive(wordBuffer, "prompt") == 0) || + (CompareCaseInsensitive(wordBuffer, "set") == 0)) { + continueProcessing = false; + } + // Identify External Command / Program Location for ERRORLEVEL, and EXIST + if ((CompareCaseInsensitive(wordBuffer, "errorlevel") == 0) || + (CompareCaseInsensitive(wordBuffer, "exist") == 0)) { + // Reset External Command / Program Location + cmdLoc = offset; + // Skip next spaces + while ((cmdLoc < lengthLine) && + (isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + // Skip comparison + while ((cmdLoc < lengthLine) && + (!isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + // Skip next spaces + while ((cmdLoc < lengthLine) && + (isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + // Identify External Command / Program Location for CALL, DO, LOADHIGH and LH + } else if ((CompareCaseInsensitive(wordBuffer, "call") == 0) || + (CompareCaseInsensitive(wordBuffer, "do") == 0) || + (CompareCaseInsensitive(wordBuffer, "loadhigh") == 0) || + (CompareCaseInsensitive(wordBuffer, "lh") == 0)) { + // Reset External Command / Program Location + cmdLoc = offset; + // Skip next spaces + while ((cmdLoc < lengthLine) && + (isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + } + // Colorize Regular keyword + styler.ColourTo(startLine + offset - 1, SCE_BAT_WORD); + // No need to Reset Offset + // Check for Special Keyword in list, External Command / Program, or Default Text + } else if ((wordBuffer[0] != '%') && + (wordBuffer[0] != '!') && + (!IsBOperator(wordBuffer[0])) && + (continueProcessing)) { + // Check for Special Keyword + // Affected Commands are in Length range 2-6 + // Good that ERRORLEVEL, EXIST, CALL, DO, LOADHIGH, and LH are unaffected + sKeywordFound = false; + for (Sci_PositionU keywordLength = 2; keywordLength < wbl && keywordLength < 7 && !sKeywordFound; keywordLength++) { + wbo = 0; + // Copy Keyword Length from Word Buffer into Special Keyword Buffer + for (; wbo < keywordLength; wbo++) { + sKeywordBuffer[wbo] = static_cast(wordBuffer[wbo]); + } + sKeywordBuffer[wbo] = '\0'; + // Check for Special Keyword in list + if ((keywords.InList(sKeywordBuffer)) && + ((IsBOperator(wordBuffer[wbo])) || + (IsBSeparator(wordBuffer[wbo])))) { + sKeywordFound = true; + // ECHO requires no further Regular Keyword Checking + if (CompareCaseInsensitive(sKeywordBuffer, "echo") == 0) { + continueProcessing = false; + } + // Colorize Special Keyword as Regular Keyword + styler.ColourTo(startLine + offset - 1 - (wbl - wbo), SCE_BAT_WORD); + // Reset Offset to re-process remainder of word + offset -= (wbl - wbo); + } + } + // Check for External Command / Program or Default Text + if (!sKeywordFound) { + wbo = 0; + // Check for External Command / Program + if (cmdLoc == offset - wbl) { + // Read up to %, Operator or Separator + while ((wbo < wbl) && + (wordBuffer[wbo] != '%') && + (wordBuffer[wbo] != '!') && + (!IsBOperator(wordBuffer[wbo])) && + (!IsBSeparator(wordBuffer[wbo]))) { + wbo++; + } + // Reset External Command / Program Location + cmdLoc = offset - (wbl - wbo); + // Reset Offset to re-process remainder of word + offset -= (wbl - wbo); + // CHOICE requires no further Regular Keyword Checking + if (CompareCaseInsensitive(wordBuffer, "choice") == 0) { + continueProcessing = false; + } + // Check for START (and its switches) - What follows is External Command \ Program + if (CompareCaseInsensitive(wordBuffer, "start") == 0) { + // Reset External Command / Program Location + cmdLoc = offset; + // Skip next spaces + while ((cmdLoc < lengthLine) && + (isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + // Reset External Command / Program Location if command switch detected + if (lineBuffer[cmdLoc] == '/') { + // Skip command switch + while ((cmdLoc < lengthLine) && + (!isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + // Skip next spaces + while ((cmdLoc < lengthLine) && + (isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + } + } + // Colorize External Command / Program + if (!keywords2) { + styler.ColourTo(startLine + offset - 1, SCE_BAT_COMMAND); + } else if (keywords2.InList(wordBuffer)) { + styler.ColourTo(startLine + offset - 1, SCE_BAT_COMMAND); + } else { + styler.ColourTo(startLine + offset - 1, SCE_BAT_DEFAULT); + } + // No need to Reset Offset + // Check for Default Text + } else { + // Read up to %, Operator or Separator + while ((wbo < wbl) && + (wordBuffer[wbo] != '%') && + (wordBuffer[wbo] != '!') && + (!IsBOperator(wordBuffer[wbo])) && + (!IsBSeparator(wordBuffer[wbo]))) { + wbo++; + } + // Colorize Default Text + styler.ColourTo(startLine + offset - 1 - (wbl - wbo), SCE_BAT_DEFAULT); + // Reset Offset to re-process remainder of word + offset -= (wbl - wbo); + } + } + // Check for Argument (%n), Environment Variable (%x...%) or Local Variable (%%a) + } else if (wordBuffer[0] == '%') { + // Colorize Default Text + styler.ColourTo(startLine + offset - 1 - wbl, SCE_BAT_DEFAULT); + wbo++; + // Search to end of word for second % (can be a long path) + while ((wbo < wbl) && + (wordBuffer[wbo] != '%') && + (!IsBOperator(wordBuffer[wbo])) && + (!IsBSeparator(wordBuffer[wbo]))) { + wbo++; + } + // Check for Argument (%n) or (%*) + if (((Is0To9(wordBuffer[1])) || (wordBuffer[1] == '*')) && + (wordBuffer[wbo] != '%')) { + // Check for External Command / Program + if (cmdLoc == offset - wbl) { + cmdLoc = offset - (wbl - 2); + } + // Colorize Argument + styler.ColourTo(startLine + offset - 1 - (wbl - 2), SCE_BAT_IDENTIFIER); + // Reset Offset to re-process remainder of word + offset -= (wbl - 2); + // Check for Expanded Argument (%~...) / Variable (%%~...) + } else if (((wbl > 1) && (wordBuffer[1] == '~')) || + ((wbl > 2) && (wordBuffer[1] == '%') && (wordBuffer[2] == '~'))) { + // Check for External Command / Program + if (cmdLoc == offset - wbl) { + cmdLoc = offset - (wbl - wbo); + } + // Colorize Expanded Argument / Variable + styler.ColourTo(startLine + offset - 1 - (wbl - wbo), SCE_BAT_IDENTIFIER); + // Reset Offset to re-process remainder of word + offset -= (wbl - wbo); + // Check for Environment Variable (%x...%) + } else if ((wordBuffer[1] != '%') && + (wordBuffer[wbo] == '%')) { + wbo++; + // Check for External Command / Program + if (cmdLoc == offset - wbl) { + cmdLoc = offset - (wbl - wbo); + } + // Colorize Environment Variable + styler.ColourTo(startLine + offset - 1 - (wbl - wbo), SCE_BAT_IDENTIFIER); + // Reset Offset to re-process remainder of word + offset -= (wbl - wbo); + // Check for Local Variable (%%a) + } else if ( + (wbl > 2) && + (wordBuffer[1] == '%') && + (wordBuffer[2] != '%') && + (!IsBOperator(wordBuffer[2])) && + (!IsBSeparator(wordBuffer[2]))) { + // Check for External Command / Program + if (cmdLoc == offset - wbl) { + cmdLoc = offset - (wbl - 3); + } + // Colorize Local Variable + styler.ColourTo(startLine + offset - 1 - (wbl - 3), SCE_BAT_IDENTIFIER); + // Reset Offset to re-process remainder of word + offset -= (wbl - 3); + } + // Check for Environment Variable (!x...!) + } else if (wordBuffer[0] == '!') { + // Colorize Default Text + styler.ColourTo(startLine + offset - 1 - wbl, SCE_BAT_DEFAULT); + wbo++; + // Search to end of word for second ! (can be a long path) + while ((wbo < wbl) && + (wordBuffer[wbo] != '!') && + (!IsBOperator(wordBuffer[wbo])) && + (!IsBSeparator(wordBuffer[wbo]))) { + wbo++; + } + if (wordBuffer[wbo] == '!') { + wbo++; + // Check for External Command / Program + if (cmdLoc == offset - wbl) { + cmdLoc = offset - (wbl - wbo); + } + // Colorize Environment Variable + styler.ColourTo(startLine + offset - 1 - (wbl - wbo), SCE_BAT_IDENTIFIER); + // Reset Offset to re-process remainder of word + offset -= (wbl - wbo); + } + // Check for Operator + } else if (IsBOperator(wordBuffer[0])) { + // Colorize Default Text + styler.ColourTo(startLine + offset - 1 - wbl, SCE_BAT_DEFAULT); + // Check for Comparison Operator + if ((wordBuffer[0] == '=') && (wordBuffer[1] == '=')) { + // Identify External Command / Program Location for IF + cmdLoc = offset; + // Skip next spaces + while ((cmdLoc < lengthLine) && + (isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + // Colorize Comparison Operator + styler.ColourTo(startLine + offset - 1 - (wbl - 2), SCE_BAT_OPERATOR); + // Reset Offset to re-process remainder of word + offset -= (wbl - 2); + // Check for Pipe Operator + } else if (wordBuffer[0] == '|') { + // Reset External Command / Program Location + cmdLoc = offset - wbl + 1; + // Skip next spaces + while ((cmdLoc < lengthLine) && + (isspacechar(lineBuffer[cmdLoc]))) { + cmdLoc++; + } + // Colorize Pipe Operator + styler.ColourTo(startLine + offset - 1 - (wbl - 1), SCE_BAT_OPERATOR); + // Reset Offset to re-process remainder of word + offset -= (wbl - 1); + // Check for Other Operator + } else { + // Check for > Operator + if (wordBuffer[0] == '>') { + // Turn Keyword and External Command / Program checking back on + continueProcessing = true; + } + // Colorize Other Operator + styler.ColourTo(startLine + offset - 1 - (wbl - 1), SCE_BAT_OPERATOR); + // Reset Offset to re-process remainder of word + offset -= (wbl - 1); + } + // Check for Default Text + } else { + // Read up to %, Operator or Separator + while ((wbo < wbl) && + (wordBuffer[wbo] != '%') && + (wordBuffer[wbo] != '!') && + (!IsBOperator(wordBuffer[wbo])) && + (!IsBSeparator(wordBuffer[wbo]))) { + wbo++; + } + // Colorize Default Text + styler.ColourTo(startLine + offset - 1 - (wbl - wbo), SCE_BAT_DEFAULT); + // Reset Offset to re-process remainder of word + offset -= (wbl - wbo); + } + // Skip next spaces - nothing happens if Offset was Reset + while ((offset < lengthLine) && (isspacechar(lineBuffer[offset]))) { + offset++; + } + } + // Colorize Default Text for remainder of line - currently not lexed + styler.ColourTo(endPos, SCE_BAT_DEFAULT); +} + +static void ColouriseBatchDoc( + Sci_PositionU startPos, + Sci_Position length, + int /*initStyle*/, + WordList *keywordlists[], + Accessor &styler) { + + char lineBuffer[1024]; + + styler.StartAt(startPos); + styler.StartSegment(startPos); + Sci_PositionU linePos = 0; + Sci_PositionU startLine = startPos; + for (Sci_PositionU i = startPos; i < startPos + length; i++) { + lineBuffer[linePos++] = styler[i]; + if (AtEOL(styler, i) || (linePos >= sizeof(lineBuffer) - 1)) { + // End of line (or of line buffer) met, colourise it + lineBuffer[linePos] = '\0'; + ColouriseBatchLine(lineBuffer, linePos, startLine, i, keywordlists, styler); + linePos = 0; + startLine = i + 1; + } + } + if (linePos > 0) { // Last line does not have ending characters + lineBuffer[linePos] = '\0'; + ColouriseBatchLine(lineBuffer, linePos, startLine, startPos + length - 1, + keywordlists, styler); + } +} + +static const char *const batchWordListDesc[] = { + "Internal Commands", + "External Commands", + 0 +}; + +LexerModule lmBatch(SCLEX_BATCH, ColouriseBatchDoc, "batch", 0, batchWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexBibTeX.cpp b/third_party/qscintilla/scintilla/lexers/LexBibTeX.cpp new file mode 100644 index 0000000..7e4cb9f --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexBibTeX.cpp @@ -0,0 +1,308 @@ +// Copyright 2008-2010 Sergiu Dotenco. The License.txt file describes the +// conditions under which this software may be distributed. + +/** + * @file LexBibTeX.cxx + * @brief General BibTeX coloring scheme. + * @author Sergiu Dotenco + * @date April 18, 2009 + */ + +#include +#include + +#include +#include + +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +namespace { + bool IsAlphabetic(unsigned int ch) + { + return IsASCII(ch) && std::isalpha(ch) != 0; + } + bool IsAlphaNumeric(char ch) + { + return IsASCII(ch) && std::isalnum(ch); + } + + bool EqualCaseInsensitive(const char* a, const char* b) + { + return CompareCaseInsensitive(a, b) == 0; + } + + bool EntryWithoutKey(const char* name) + { + return EqualCaseInsensitive(name,"string"); + } + + char GetClosingBrace(char openbrace) + { + char result = openbrace; + + switch (openbrace) { + case '(': result = ')'; break; + case '{': result = '}'; break; + } + + return result; + } + + bool IsEntryStart(char prev, char ch) + { + return prev != '\\' && ch == '@'; + } + + bool IsEntryStart(const StyleContext& sc) + { + return IsEntryStart(sc.chPrev, sc.ch); + } + + void ColorizeBibTeX(Sci_PositionU start_pos, Sci_Position length, int /*init_style*/, WordList* keywordlists[], Accessor& styler) + { + WordList &EntryNames = *keywordlists[0]; + bool fold_compact = styler.GetPropertyInt("fold.compact", 1) != 0; + + std::string buffer; + buffer.reserve(25); + + // We always colorize a section from the beginning, so let's + // search for the @ character which isn't escaped, i.e. \@ + while (start_pos > 0 && !IsEntryStart(styler.SafeGetCharAt(start_pos - 1), + styler.SafeGetCharAt(start_pos))) { + --start_pos; ++length; + } + + styler.StartAt(start_pos); + styler.StartSegment(start_pos); + + Sci_Position current_line = styler.GetLine(start_pos); + int prev_level = styler.LevelAt(current_line) & SC_FOLDLEVELNUMBERMASK; + int current_level = prev_level; + int visible_chars = 0; + + bool in_comment = false ; + StyleContext sc(start_pos, length, SCE_BIBTEX_DEFAULT, styler); + + bool going = sc.More(); // needed because of a fuzzy end of file state + char closing_brace = 0; + bool collect_entry_name = false; + + for (; going; sc.Forward()) { + if (!sc.More()) + going = false; // we need to go one behind the end of text + + if (in_comment) { + if (sc.atLineEnd) { + sc.SetState(SCE_BIBTEX_DEFAULT); + in_comment = false; + } + } + else { + // Found @entry + if (IsEntryStart(sc)) { + sc.SetState(SCE_BIBTEX_UNKNOWN_ENTRY); + sc.Forward(); + ++current_level; + + buffer.clear(); + collect_entry_name = true; + } + else if ((sc.state == SCE_BIBTEX_ENTRY || sc.state == SCE_BIBTEX_UNKNOWN_ENTRY) + && (sc.ch == '{' || sc.ch == '(')) { + // Entry name colorization done + // Found either a { or a ( after entry's name, e.g. @entry(...) @entry{...} + // Closing counterpart needs to be stored. + closing_brace = GetClosingBrace(sc.ch); + + sc.SetState(SCE_BIBTEX_DEFAULT); // Don't colorize { ( + + // @string doesn't have any key + if (EntryWithoutKey(buffer.c_str())) + sc.ForwardSetState(SCE_BIBTEX_PARAMETER); + else + sc.ForwardSetState(SCE_BIBTEX_KEY); // Key/label colorization + } + + // Need to handle the case where entry's key is empty + // e.g. @book{,...} + if (sc.state == SCE_BIBTEX_KEY && sc.ch == ',') { + // Key/label colorization done + sc.SetState(SCE_BIBTEX_DEFAULT); // Don't colorize the , + sc.ForwardSetState(SCE_BIBTEX_PARAMETER); // Parameter colorization + } + else if (sc.state == SCE_BIBTEX_PARAMETER && sc.ch == '=') { + sc.SetState(SCE_BIBTEX_DEFAULT); // Don't colorize the = + sc.ForwardSetState(SCE_BIBTEX_VALUE); // Parameter value colorization + + Sci_Position start = sc.currentPos; + + // We need to handle multiple situations: + // 1. name"one two {three}" + // 2. name={one {one two {two}} three} + // 3. year=2005 + + // Skip ", { until we encounter the first alphanumerical character + while (sc.More() && !(IsAlphaNumeric(sc.ch) || sc.ch == '"' || sc.ch == '{')) + sc.Forward(); + + if (sc.More()) { + // Store " or { + char ch = sc.ch; + + // Not interested in alphanumerical characters + if (IsAlphaNumeric(ch)) + ch = 0; + + int skipped = 0; + + if (ch) { + // Skip preceding " or { such as in name={{test}}. + // Remember how many characters have been skipped + // Make sure that empty values, i.e. "" are also handled correctly + while (sc.More() && (sc.ch == ch && (ch != '"' || skipped < 1))) { + sc.Forward(); + ++skipped; + } + } + + // Closing counterpart for " is the same character + if (ch == '{') + ch = '}'; + + // We have reached the parameter value + // In case the open character was a alnum char, skip until , is found + // otherwise until skipped == 0 + while (sc.More() && (skipped > 0 || (!ch && !(sc.ch == ',' || sc.ch == closing_brace)))) { + // Make sure the character isn't escaped + if (sc.chPrev != '\\') { + // Parameter value contains a { which is the 2nd case described above + if (sc.ch == '{') + ++skipped; // Remember it + else if (sc.ch == '}') + --skipped; + else if (skipped == 1 && sc.ch == ch && ch == '"') // Don't ignore cases like {"o} + skipped = 0; + } + + sc.Forward(); + } + } + + // Don't colorize the , + sc.SetState(SCE_BIBTEX_DEFAULT); + + // Skip until the , or entry's closing closing_brace is found + // since this parameter might be the last one + while (sc.More() && !(sc.ch == ',' || sc.ch == closing_brace)) + sc.Forward(); + + int state = SCE_BIBTEX_PARAMETER; // The might be more parameters + + // We've reached the closing closing_brace for the bib entry + // in case no " or {} has been used to enclose the value, + // as in 3rd case described above + if (sc.ch == closing_brace) { + --current_level; + // Make sure the text between entries is not colored + // using parameter's style + state = SCE_BIBTEX_DEFAULT; + } + + Sci_Position end = sc.currentPos; + current_line = styler.GetLine(end); + + // We have possibly skipped some lines, so the folding levels + // have to be adjusted separately + for (Sci_Position i = styler.GetLine(start); i <= styler.GetLine(end); ++i) + styler.SetLevel(i, prev_level); + + sc.ForwardSetState(state); + } + + if (sc.state == SCE_BIBTEX_PARAMETER && sc.ch == closing_brace) { + sc.SetState(SCE_BIBTEX_DEFAULT); + --current_level; + } + + // Non escaped % found which represents a comment until the end of the line + if (sc.chPrev != '\\' && sc.ch == '%') { + in_comment = true; + sc.SetState(SCE_BIBTEX_COMMENT); + } + } + + if (sc.state == SCE_BIBTEX_UNKNOWN_ENTRY || sc.state == SCE_BIBTEX_ENTRY) { + if (!IsAlphabetic(sc.ch) && collect_entry_name) + collect_entry_name = false; + + if (collect_entry_name) { + buffer += static_cast(tolower(sc.ch)); + if (EntryNames.InList(buffer.c_str())) + sc.ChangeState(SCE_BIBTEX_ENTRY); + else + sc.ChangeState(SCE_BIBTEX_UNKNOWN_ENTRY); + } + } + + if (sc.atLineEnd) { + int level = prev_level; + + if (visible_chars == 0 && fold_compact) + level |= SC_FOLDLEVELWHITEFLAG; + + if ((current_level > prev_level)) + level |= SC_FOLDLEVELHEADERFLAG; + // else if (current_level < prev_level) + // level |= SC_FOLDLEVELBOXFOOTERFLAG; // Deprecated + + if (level != styler.LevelAt(current_line)) { + styler.SetLevel(current_line, level); + } + + ++current_line; + prev_level = current_level; + visible_chars = 0; + } + + if (!isspacechar(sc.ch)) + ++visible_chars; + } + + sc.Complete(); + + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(current_line) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(current_line, prev_level | flagsNext); + } +} +static const char * const BibTeXWordLists[] = { + "Entry Names", + 0, +}; + + +LexerModule lmBibTeX(SCLEX_BIBTEX, ColorizeBibTeX, "bib", 0, BibTeXWordLists); + +// Entry Names +// article, book, booklet, conference, inbook, +// incollection, inproceedings, manual, mastersthesis, +// misc, phdthesis, proceedings, techreport, unpublished, +// string, url + diff --git a/third_party/qscintilla/scintilla/lexers/LexBullant.cpp b/third_party/qscintilla/scintilla/lexers/LexBullant.cpp new file mode 100644 index 0000000..2386d22 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexBullant.cpp @@ -0,0 +1,231 @@ +// SciTE - Scintilla based Text Editor +// LexBullant.cxx - lexer for Bullant + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static int classifyWordBullant(Sci_PositionU start, Sci_PositionU end, WordList &keywords, Accessor &styler) { + char s[100]; + s[0] = '\0'; + for (Sci_PositionU i = 0; i < end - start + 1 && i < 30; i++) { + s[i] = static_cast(tolower(styler[start + i])); + s[i + 1] = '\0'; + } + int lev= 0; + char chAttr = SCE_C_IDENTIFIER; + if (isdigit(s[0]) || (s[0] == '.')){ + chAttr = SCE_C_NUMBER; + } + else { + if (keywords.InList(s)) { + chAttr = SCE_C_WORD; + if (strcmp(s, "end") == 0) + lev = -1; + else if (strcmp(s, "method") == 0 || + strcmp(s, "case") == 0 || + strcmp(s, "class") == 0 || + strcmp(s, "debug") == 0 || + strcmp(s, "test") == 0 || + strcmp(s, "if") == 0 || + strcmp(s, "lock") == 0 || + strcmp(s, "transaction") == 0 || + strcmp(s, "trap") == 0 || + strcmp(s, "until") == 0 || + strcmp(s, "while") == 0) + lev = 1; + } + } + styler.ColourTo(end, chAttr); + return lev; +} + +static void ColouriseBullantDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + WordList &keywords = *keywordlists[0]; + + styler.StartAt(startPos); + + bool fold = styler.GetPropertyInt("fold") != 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + + int state = initStyle; + if (state == SCE_C_STRINGEOL) // Does not leak onto next line + state = SCE_C_DEFAULT; + char chPrev = ' '; + char chNext = styler[startPos]; + Sci_PositionU lengthDoc = startPos + length; + int visibleChars = 0; + styler.StartSegment(startPos); + int endFoundThisLine = 0; + for (Sci_PositionU i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + if ((ch == '\r' && chNext != '\n') || (ch == '\n')) { + // Trigger on CR only (Mac style) or either on LF from CR+LF (Dos/Win) or on LF alone (Unix) + // Avoid triggering two times on Dos/Win + // End of line + endFoundThisLine = 0; + if (state == SCE_C_STRINGEOL) { + styler.ColourTo(i, state); + state = SCE_C_DEFAULT; + } + if (fold) { + int lev = levelPrev; + if (visibleChars == 0) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + styler.SetLevel(lineCurrent, lev); + lineCurrent++; + levelPrev = levelCurrent; + } + visibleChars = 0; + +/* int indentBlock = GetLineIndentation(lineCurrent); + if (blockChange==1){ + lineCurrent++; + int pos=SetLineIndentation(lineCurrent, indentBlock + indentSize); + } else if (blockChange==-1) { + indentBlock -= indentSize; + if (indentBlock < 0) + indentBlock = 0; + SetLineIndentation(lineCurrent, indentBlock); + lineCurrent++; + } + blockChange=0; +*/ } + if (!(IsASCII(ch) && isspace(ch))) + visibleChars++; + + if (styler.IsLeadByte(ch)) { + chNext = styler.SafeGetCharAt(i + 2); + chPrev = ' '; + i += 1; + continue; + } + + if (state == SCE_C_DEFAULT) { + if (iswordstart(ch)) { + styler.ColourTo(i-1, state); + state = SCE_C_IDENTIFIER; + } else if (ch == '@' && chNext == 'o') { + if ((styler.SafeGetCharAt(i+2) =='f') && (styler.SafeGetCharAt(i+3) == 'f')) { + styler.ColourTo(i-1, state); + state = SCE_C_COMMENT; + } + } else if (ch == '#') { + styler.ColourTo(i-1, state); + state = SCE_C_COMMENTLINE; + } else if (ch == '\"') { + styler.ColourTo(i-1, state); + state = SCE_C_STRING; + } else if (ch == '\'') { + styler.ColourTo(i-1, state); + state = SCE_C_CHARACTER; + } else if (isoperator(ch)) { + styler.ColourTo(i-1, state); + styler.ColourTo(i, SCE_C_OPERATOR); + } + } else if (state == SCE_C_IDENTIFIER) { + if (!iswordchar(ch)) { + int levelChange = classifyWordBullant(styler.GetStartSegment(), i - 1, keywords, styler); + state = SCE_C_DEFAULT; + chNext = styler.SafeGetCharAt(i + 1); + if (ch == '#') { + state = SCE_C_COMMENTLINE; + } else if (ch == '\"') { + state = SCE_C_STRING; + } else if (ch == '\'') { + state = SCE_C_CHARACTER; + } else if (isoperator(ch)) { + styler.ColourTo(i, SCE_C_OPERATOR); + } + if (endFoundThisLine == 0) + levelCurrent+=levelChange; + if (levelChange == -1) + endFoundThisLine=1; + } + } else if (state == SCE_C_COMMENT) { + if (ch == '@' && chNext == 'o') { + if (styler.SafeGetCharAt(i+2) == 'n') { + styler.ColourTo(i+2, state); + state = SCE_C_DEFAULT; + i+=2; + } + } + } else if (state == SCE_C_COMMENTLINE) { + if (ch == '\r' || ch == '\n') { + endFoundThisLine = 0; + styler.ColourTo(i-1, state); + state = SCE_C_DEFAULT; + } + } else if (state == SCE_C_STRING) { + if (ch == '\\') { + if (chNext == '\"' || chNext == '\'' || chNext == '\\') { + i++; + ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + } + } else if (ch == '\"') { + styler.ColourTo(i, state); + state = SCE_C_DEFAULT; + } else if (chNext == '\r' || chNext == '\n') { + endFoundThisLine = 0; + styler.ColourTo(i-1, SCE_C_STRINGEOL); + state = SCE_C_STRINGEOL; + } + } else if (state == SCE_C_CHARACTER) { + if ((ch == '\r' || ch == '\n') && (chPrev != '\\')) { + endFoundThisLine = 0; + styler.ColourTo(i-1, SCE_C_STRINGEOL); + state = SCE_C_STRINGEOL; + } else if (ch == '\\') { + if (chNext == '\"' || chNext == '\'' || chNext == '\\') { + i++; + ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + } + } else if (ch == '\'') { + styler.ColourTo(i, state); + state = SCE_C_DEFAULT; + } + } + chPrev = ch; + } + styler.ColourTo(lengthDoc - 1, state); + + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + if (fold) { + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + //styler.SetLevel(lineCurrent, levelCurrent | flagsNext); + styler.SetLevel(lineCurrent, levelPrev | flagsNext); + + } +} + +static const char * const bullantWordListDesc[] = { + "Keywords", + 0 +}; + +LexerModule lmBullant(SCLEX_BULLANT, ColouriseBullantDoc, "bullant", 0, bullantWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexCLW.cpp b/third_party/qscintilla/scintilla/lexers/LexCLW.cpp new file mode 100644 index 0000000..d469d6b --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCLW.cpp @@ -0,0 +1,680 @@ +// Scintilla source code edit control +/** @file LexClw.cxx + ** Lexer for Clarion. + ** 2004/12/17 Updated Lexer + **/ +// Copyright 2003-2004 by Ron Schofield +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +// Is an end of line character +inline bool IsEOL(const int ch) { + + return(ch == '\n'); +} + +// Convert character to uppercase +static char CharacterUpper(char chChar) { + + if (chChar < 'a' || chChar > 'z') { + return(chChar); + } + else { + return(static_cast(chChar - 'a' + 'A')); + } +} + +// Convert string to uppercase +static void StringUpper(char *szString) { + + while (*szString) { + *szString = CharacterUpper(*szString); + szString++; + } +} + +// Is a label start character +inline bool IsALabelStart(const int iChar) { + + return(isalpha(iChar) || iChar == '_'); +} + +// Is a label character +inline bool IsALabelCharacter(const int iChar) { + + return(isalnum(iChar) || iChar == '_' || iChar == ':'); +} + +// Is the character is a ! and the the next character is not a ! +inline bool IsACommentStart(const int iChar) { + + return(iChar == '!'); +} + +// Is the character a Clarion hex character (ABCDEF) +inline bool IsAHexCharacter(const int iChar, bool bCaseSensitive) { + + // Case insensitive. + if (!bCaseSensitive) { + if (strchr("ABCDEFabcdef", iChar) != NULL) { + return(true); + } + } + // Case sensitive + else { + if (strchr("ABCDEF", iChar) != NULL) { + return(true); + } + } + return(false); +} + +// Is the character a Clarion base character (B=Binary, O=Octal, H=Hex) +inline bool IsANumericBaseCharacter(const int iChar, bool bCaseSensitive) { + + // Case insensitive. + if (!bCaseSensitive) { + // If character is a numeric base character + if (strchr("BOHboh", iChar) != NULL) { + return(true); + } + } + // Case sensitive + else { + // If character is a numeric base character + if (strchr("BOH", iChar) != NULL) { + return(true); + } + } + return(false); +} + +// Set the correct numeric constant state +inline bool SetNumericConstantState(StyleContext &scDoc) { + + int iPoints = 0; // Point counter + char cNumericString[512]; // Numeric string buffer + + // Buffer the current numberic string + scDoc.GetCurrent(cNumericString, sizeof(cNumericString)); + // Loop through the string until end of string (NULL termination) + for (int iIndex = 0; cNumericString[iIndex] != '\0'; iIndex++) { + // Depending on the character + switch (cNumericString[iIndex]) { + // Is a . (point) + case '.' : + // Increment point counter + iPoints++; + break; + default : + break; + } + } + // If points found (can be more than one for improper formatted number + if (iPoints > 0) { + return(true); + } + // Else no points found + else { + return(false); + } +} + +// Get the next word in uppercase from the current position (keyword lookahead) +inline bool GetNextWordUpper(Accessor &styler, Sci_PositionU uiStartPos, Sci_Position iLength, char *cWord) { + + Sci_PositionU iIndex = 0; // Buffer Index + + // Loop through the remaining string from the current position + for (Sci_Position iOffset = uiStartPos; iOffset < iLength; iOffset++) { + // Get the character from the buffer using the offset + char cCharacter = styler[iOffset]; + if (IsEOL(cCharacter)) { + break; + } + // If the character is alphabet character + if (isalpha(cCharacter)) { + // Add UPPERCASE character to the word buffer + cWord[iIndex++] = CharacterUpper(cCharacter); + } + } + // Add null termination + cWord[iIndex] = '\0'; + // If no word was found + if (iIndex == 0) { + // Return failure + return(false); + } + // Else word was found + else { + // Return success + return(true); + } +} + +// Clarion Language Colouring Procedure +static void ColouriseClarionDoc(Sci_PositionU uiStartPos, Sci_Position iLength, int iInitStyle, WordList *wlKeywords[], Accessor &accStyler, bool bCaseSensitive) { + + int iParenthesesLevel = 0; // Parenthese Level + int iColumn1Label = false; // Label starts in Column 1 + + WordList &wlClarionKeywords = *wlKeywords[0]; // Clarion Keywords + WordList &wlCompilerDirectives = *wlKeywords[1]; // Compiler Directives + WordList &wlRuntimeExpressions = *wlKeywords[2]; // Runtime Expressions + WordList &wlBuiltInProcsFuncs = *wlKeywords[3]; // Builtin Procedures and Functions + WordList &wlStructsDataTypes = *wlKeywords[4]; // Structures and Data Types + WordList &wlAttributes = *wlKeywords[5]; // Procedure Attributes + WordList &wlStandardEquates = *wlKeywords[6]; // Standard Equates + WordList &wlLabelReservedWords = *wlKeywords[7]; // Clarion Reserved Keywords (Labels) + WordList &wlProcLabelReservedWords = *wlKeywords[8]; // Clarion Reserved Keywords (Procedure Labels) + + const char wlProcReservedKeywordList[] = + "PROCEDURE FUNCTION"; + WordList wlProcReservedKeywords; + wlProcReservedKeywords.Set(wlProcReservedKeywordList); + + const char wlCompilerKeywordList[] = + "COMPILE OMIT"; + WordList wlCompilerKeywords; + wlCompilerKeywords.Set(wlCompilerKeywordList); + + const char wlLegacyStatementsList[] = + "BOF EOF FUNCTION POINTER SHARE"; + WordList wlLegacyStatements; + wlLegacyStatements.Set(wlLegacyStatementsList); + + StyleContext scDoc(uiStartPos, iLength, iInitStyle, accStyler); + + // lex source code + for (; scDoc.More(); scDoc.Forward()) + { + // + // Determine if the current state should terminate. + // + + // Label State Handling + if (scDoc.state == SCE_CLW_LABEL) { + // If the character is not a valid label + if (!IsALabelCharacter(scDoc.ch)) { + // If the character is a . (dot syntax) + if (scDoc.ch == '.') { + // Turn off column 1 label flag as label now cannot be reserved work + iColumn1Label = false; + // Uncolour the . (dot) to default state, move forward one character, + // and change back to the label state. + scDoc.SetState(SCE_CLW_DEFAULT); + scDoc.Forward(); + scDoc.SetState(SCE_CLW_LABEL); + } + // Else check label + else { + char cLabel[512]; // Label buffer + // Buffer the current label string + scDoc.GetCurrent(cLabel,sizeof(cLabel)); + // If case insensitive, convert string to UPPERCASE to match passed keywords. + if (!bCaseSensitive) { + StringUpper(cLabel); + } + // Else if UPPERCASE label string is in the Clarion compiler keyword list + if (wlCompilerKeywords.InList(cLabel) && iColumn1Label){ + // change the label to error state + scDoc.ChangeState(SCE_CLW_COMPILER_DIRECTIVE); + } + // Else if UPPERCASE label string is in the Clarion reserved keyword list + else if (wlLabelReservedWords.InList(cLabel) && iColumn1Label){ + // change the label to error state + scDoc.ChangeState(SCE_CLW_ERROR); + } + // Else if UPPERCASE label string is + else if (wlProcLabelReservedWords.InList(cLabel) && iColumn1Label) { + char cWord[512]; // Word buffer + // Get the next word from the current position + if (GetNextWordUpper(accStyler,scDoc.currentPos,uiStartPos+iLength,cWord)) { + // If the next word is a procedure reserved word + if (wlProcReservedKeywords.InList(cWord)) { + // Change the label to error state + scDoc.ChangeState(SCE_CLW_ERROR); + } + } + } + // Else if label string is in the compiler directive keyword list + else if (wlCompilerDirectives.InList(cLabel)) { + // change the state to compiler directive state + scDoc.ChangeState(SCE_CLW_COMPILER_DIRECTIVE); + } + // Terminate the label state and set to default state + scDoc.SetState(SCE_CLW_DEFAULT); + } + } + } + // Keyword State Handling + else if (scDoc.state == SCE_CLW_KEYWORD) { + // If character is : (colon) + if (scDoc.ch == ':') { + char cEquate[512]; // Equate buffer + // Move forward to include : (colon) in buffer + scDoc.Forward(); + // Buffer the equate string + scDoc.GetCurrent(cEquate,sizeof(cEquate)); + // If case insensitive, convert string to UPPERCASE to match passed keywords. + if (!bCaseSensitive) { + StringUpper(cEquate); + } + // If statement string is in the equate list + if (wlStandardEquates.InList(cEquate)) { + // Change to equate state + scDoc.ChangeState(SCE_CLW_STANDARD_EQUATE); + } + } + // If the character is not a valid label character + else if (!IsALabelCharacter(scDoc.ch)) { + char cStatement[512]; // Statement buffer + // Buffer the statement string + scDoc.GetCurrent(cStatement,sizeof(cStatement)); + // If case insensitive, convert string to UPPERCASE to match passed keywords. + if (!bCaseSensitive) { + StringUpper(cStatement); + } + // If statement string is in the Clarion keyword list + if (wlClarionKeywords.InList(cStatement)) { + // Change the statement string to the Clarion keyword state + scDoc.ChangeState(SCE_CLW_KEYWORD); + } + // Else if statement string is in the compiler directive keyword list + else if (wlCompilerDirectives.InList(cStatement)) { + // Change the statement string to the compiler directive state + scDoc.ChangeState(SCE_CLW_COMPILER_DIRECTIVE); + } + // Else if statement string is in the runtime expressions keyword list + else if (wlRuntimeExpressions.InList(cStatement)) { + // Change the statement string to the runtime expressions state + scDoc.ChangeState(SCE_CLW_RUNTIME_EXPRESSIONS); + } + // Else if statement string is in the builtin procedures and functions keyword list + else if (wlBuiltInProcsFuncs.InList(cStatement)) { + // Change the statement string to the builtin procedures and functions state + scDoc.ChangeState(SCE_CLW_BUILTIN_PROCEDURES_FUNCTION); + } + // Else if statement string is in the tructures and data types keyword list + else if (wlStructsDataTypes.InList(cStatement)) { + // Change the statement string to the structures and data types state + scDoc.ChangeState(SCE_CLW_STRUCTURE_DATA_TYPE); + } + // Else if statement string is in the procedure attribute keyword list + else if (wlAttributes.InList(cStatement)) { + // Change the statement string to the procedure attribute state + scDoc.ChangeState(SCE_CLW_ATTRIBUTE); + } + // Else if statement string is in the standard equate keyword list + else if (wlStandardEquates.InList(cStatement)) { + // Change the statement string to the standard equate state + scDoc.ChangeState(SCE_CLW_STANDARD_EQUATE); + } + // Else if statement string is in the deprecated or legacy keyword list + else if (wlLegacyStatements.InList(cStatement)) { + // Change the statement string to the standard equate state + scDoc.ChangeState(SCE_CLW_DEPRECATED); + } + // Else the statement string doesn't match any work list + else { + // Change the statement string to the default state + scDoc.ChangeState(SCE_CLW_DEFAULT); + } + // Terminate the keyword state and set to default state + scDoc.SetState(SCE_CLW_DEFAULT); + } + } + // String State Handling + else if (scDoc.state == SCE_CLW_STRING) { + // If the character is an ' (single quote) + if (scDoc.ch == '\'') { + // Set the state to default and move forward colouring + // the ' (single quote) as default state + // terminating the string state + scDoc.SetState(SCE_CLW_DEFAULT); + scDoc.Forward(); + } + // If the next character is an ' (single quote) + if (scDoc.chNext == '\'') { + // Move forward one character and set to default state + // colouring the next ' (single quote) as default state + // terminating the string state + scDoc.ForwardSetState(SCE_CLW_DEFAULT); + scDoc.Forward(); + } + } + // Picture String State Handling + else if (scDoc.state == SCE_CLW_PICTURE_STRING) { + // If the character is an ( (open parenthese) + if (scDoc.ch == '(') { + // Increment the parenthese level + iParenthesesLevel++; + } + // Else if the character is a ) (close parenthese) + else if (scDoc.ch == ')') { + // If the parenthese level is set to zero + // parentheses matched + if (!iParenthesesLevel) { + scDoc.SetState(SCE_CLW_DEFAULT); + } + // Else parenthese level is greater than zero + // still looking for matching parentheses + else { + // Decrement the parenthese level + iParenthesesLevel--; + } + } + } + // Standard Equate State Handling + else if (scDoc.state == SCE_CLW_STANDARD_EQUATE) { + if (!isalnum(scDoc.ch)) { + scDoc.SetState(SCE_CLW_DEFAULT); + } + } + // Integer Constant State Handling + else if (scDoc.state == SCE_CLW_INTEGER_CONSTANT) { + // If the character is not a digit (0-9) + // or character is not a hexidecimal character (A-F) + // or character is not a . (point) + // or character is not a numberic base character (B,O,H) + if (!(isdigit(scDoc.ch) + || IsAHexCharacter(scDoc.ch, bCaseSensitive) + || scDoc.ch == '.' + || IsANumericBaseCharacter(scDoc.ch, bCaseSensitive))) { + // If the number was a real + if (SetNumericConstantState(scDoc)) { + // Colour the matched string to the real constant state + scDoc.ChangeState(SCE_CLW_REAL_CONSTANT); + } + // Else the number was an integer + else { + // Colour the matched string to an integer constant state + scDoc.ChangeState(SCE_CLW_INTEGER_CONSTANT); + } + // Terminate the integer constant state and set to default state + scDoc.SetState(SCE_CLW_DEFAULT); + } + } + + // + // Determine if a new state should be entered. + // + + // Beginning of Line Handling + if (scDoc.atLineStart) { + // Reset the column 1 label flag + iColumn1Label = false; + // If column 1 character is a label start character + if (IsALabelStart(scDoc.ch)) { + // Label character is found in column 1 + // so set column 1 label flag and clear last column 1 label + iColumn1Label = true; + // Set the state to label + scDoc.SetState(SCE_CLW_LABEL); + } + // else if character is a space or tab + else if (IsASpace(scDoc.ch)){ + // Set to default state + scDoc.SetState(SCE_CLW_DEFAULT); + } + // else if comment start (!) or is an * (asterisk) + else if (IsACommentStart(scDoc.ch) || scDoc.ch == '*' ) { + // then set the state to comment. + scDoc.SetState(SCE_CLW_COMMENT); + } + // else the character is a ? (question mark) + else if (scDoc.ch == '?') { + // Change to the compiler directive state, move forward, + // colouring the ? (question mark), change back to default state. + scDoc.ChangeState(SCE_CLW_COMPILER_DIRECTIVE); + scDoc.Forward(); + scDoc.SetState(SCE_CLW_DEFAULT); + } + // else an invalid character in column 1 + else { + // Set to error state + scDoc.SetState(SCE_CLW_ERROR); + } + } + // End of Line Handling + else if (scDoc.atLineEnd) { + // Reset to the default state at the end of each line. + scDoc.SetState(SCE_CLW_DEFAULT); + } + // Default Handling + else { + // If in default state + if (scDoc.state == SCE_CLW_DEFAULT) { + // If is a letter could be a possible statement + if (isalpha(scDoc.ch)) { + // Set the state to Clarion Keyword and verify later + scDoc.SetState(SCE_CLW_KEYWORD); + } + // else is a number + else if (isdigit(scDoc.ch)) { + // Set the state to Integer Constant and verify later + scDoc.SetState(SCE_CLW_INTEGER_CONSTANT); + } + // else if the start of a comment or a | (line continuation) + else if (IsACommentStart(scDoc.ch) || scDoc.ch == '|') { + // then set the state to comment. + scDoc.SetState(SCE_CLW_COMMENT); + } + // else if the character is a ' (single quote) + else if (scDoc.ch == '\'') { + // If the character is also a ' (single quote) + // Embedded Apostrophe + if (scDoc.chNext == '\'') { + // Move forward colouring it as default state + scDoc.ForwardSetState(SCE_CLW_DEFAULT); + } + else { + // move to the next character and then set the state to comment. + scDoc.ForwardSetState(SCE_CLW_STRING); + } + } + // else the character is an @ (ampersand) + else if (scDoc.ch == '@') { + // Case insensitive. + if (!bCaseSensitive) { + // If character is a valid picture token character + if (strchr("DEKNPSTdeknpst", scDoc.chNext) != NULL) { + // Set to the picture string state + scDoc.SetState(SCE_CLW_PICTURE_STRING); + } + } + // Case sensitive + else { + // If character is a valid picture token character + if (strchr("DEKNPST", scDoc.chNext) != NULL) { + // Set the picture string state + scDoc.SetState(SCE_CLW_PICTURE_STRING); + } + } + } + } + } + } + // lexing complete + scDoc.Complete(); +} + +// Clarion Language Case Sensitive Colouring Procedure +static void ColouriseClarionDocSensitive(Sci_PositionU uiStartPos, Sci_Position iLength, int iInitStyle, WordList *wlKeywords[], Accessor &accStyler) { + + ColouriseClarionDoc(uiStartPos, iLength, iInitStyle, wlKeywords, accStyler, true); +} + +// Clarion Language Case Insensitive Colouring Procedure +static void ColouriseClarionDocInsensitive(Sci_PositionU uiStartPos, Sci_Position iLength, int iInitStyle, WordList *wlKeywords[], Accessor &accStyler) { + + ColouriseClarionDoc(uiStartPos, iLength, iInitStyle, wlKeywords, accStyler, false); +} + +// Fill Buffer + +static void FillBuffer(Sci_PositionU uiStart, Sci_PositionU uiEnd, Accessor &accStyler, char *szBuffer, Sci_PositionU uiLength) { + + Sci_PositionU uiPos = 0; + + while ((uiPos < uiEnd - uiStart + 1) && (uiPos < uiLength-1)) { + szBuffer[uiPos] = static_cast(toupper(accStyler[uiStart + uiPos])); + uiPos++; + } + szBuffer[uiPos] = '\0'; +} + +// Classify Clarion Fold Point + +static int ClassifyClarionFoldPoint(int iLevel, const char* szString) { + + if (!(isdigit(szString[0]) || (szString[0] == '.'))) { + if (strcmp(szString, "PROCEDURE") == 0) { + // iLevel = SC_FOLDLEVELBASE + 1; + } + else if (strcmp(szString, "MAP") == 0 || + strcmp(szString,"ACCEPT") == 0 || + strcmp(szString,"BEGIN") == 0 || + strcmp(szString,"CASE") == 0 || + strcmp(szString,"EXECUTE") == 0 || + strcmp(szString,"IF") == 0 || + strcmp(szString,"ITEMIZE") == 0 || + strcmp(szString,"INTERFACE") == 0 || + strcmp(szString,"JOIN") == 0 || + strcmp(szString,"LOOP") == 0 || + strcmp(szString,"MODULE") == 0 || + strcmp(szString,"RECORD") == 0) { + iLevel++; + } + else if (strcmp(szString, "APPLICATION") == 0 || + strcmp(szString, "CLASS") == 0 || + strcmp(szString, "DETAIL") == 0 || + strcmp(szString, "FILE") == 0 || + strcmp(szString, "FOOTER") == 0 || + strcmp(szString, "FORM") == 0 || + strcmp(szString, "GROUP") == 0 || + strcmp(szString, "HEADER") == 0 || + strcmp(szString, "INTERFACE") == 0 || + strcmp(szString, "MENU") == 0 || + strcmp(szString, "MENUBAR") == 0 || + strcmp(szString, "OLE") == 0 || + strcmp(szString, "OPTION") == 0 || + strcmp(szString, "QUEUE") == 0 || + strcmp(szString, "REPORT") == 0 || + strcmp(szString, "SHEET") == 0 || + strcmp(szString, "TAB") == 0 || + strcmp(szString, "TOOLBAR") == 0 || + strcmp(szString, "VIEW") == 0 || + strcmp(szString, "WINDOW") == 0) { + iLevel++; + } + else if (strcmp(szString, "END") == 0 || + strcmp(szString, "UNTIL") == 0 || + strcmp(szString, "WHILE") == 0) { + iLevel--; + } + } + return(iLevel); +} + +// Clarion Language Folding Procedure +static void FoldClarionDoc(Sci_PositionU uiStartPos, Sci_Position iLength, int iInitStyle, WordList *[], Accessor &accStyler) { + + Sci_PositionU uiEndPos = uiStartPos + iLength; + Sci_Position iLineCurrent = accStyler.GetLine(uiStartPos); + int iLevelPrev = accStyler.LevelAt(iLineCurrent) & SC_FOLDLEVELNUMBERMASK; + int iLevelCurrent = iLevelPrev; + char chNext = accStyler[uiStartPos]; + int iStyle = iInitStyle; + int iStyleNext = accStyler.StyleAt(uiStartPos); + int iVisibleChars = 0; + Sci_Position iLastStart = 0; + + for (Sci_PositionU uiPos = uiStartPos; uiPos < uiEndPos; uiPos++) { + + char chChar = chNext; + chNext = accStyler.SafeGetCharAt(uiPos + 1); + int iStylePrev = iStyle; + iStyle = iStyleNext; + iStyleNext = accStyler.StyleAt(uiPos + 1); + bool bEOL = (chChar == '\r' && chNext != '\n') || (chChar == '\n'); + + if (iStylePrev == SCE_CLW_DEFAULT) { + if (iStyle == SCE_CLW_KEYWORD || iStyle == SCE_CLW_STRUCTURE_DATA_TYPE) { + // Store last word start point. + iLastStart = uiPos; + } + } + + if (iStylePrev == SCE_CLW_KEYWORD || iStylePrev == SCE_CLW_STRUCTURE_DATA_TYPE) { + if(iswordchar(chChar) && !iswordchar(chNext)) { + char chBuffer[100]; + FillBuffer(iLastStart, uiPos, accStyler, chBuffer, sizeof(chBuffer)); + iLevelCurrent = ClassifyClarionFoldPoint(iLevelCurrent,chBuffer); + // if ((iLevelCurrent == SC_FOLDLEVELBASE + 1) && iLineCurrent > 1) { + // accStyler.SetLevel(iLineCurrent-1,SC_FOLDLEVELBASE); + // iLevelPrev = SC_FOLDLEVELBASE; + // } + } + } + + if (bEOL) { + int iLevel = iLevelPrev; + if ((iLevelCurrent > iLevelPrev) && (iVisibleChars > 0)) + iLevel |= SC_FOLDLEVELHEADERFLAG; + if (iLevel != accStyler.LevelAt(iLineCurrent)) { + accStyler.SetLevel(iLineCurrent,iLevel); + } + iLineCurrent++; + iLevelPrev = iLevelCurrent; + iVisibleChars = 0; + } + + if (!isspacechar(chChar)) + iVisibleChars++; + } + + // Fill in the real level of the next line, keeping the current flags + // as they will be filled in later. + int iFlagsNext = accStyler.LevelAt(iLineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + accStyler.SetLevel(iLineCurrent, iLevelPrev | iFlagsNext); +} + +// Word List Descriptions +static const char * const rgWordListDescriptions[] = { + "Clarion Keywords", + "Compiler Directives", + "Built-in Procedures and Functions", + "Runtime Expressions", + "Structure and Data Types", + "Attributes", + "Standard Equates", + "Reserved Words (Labels)", + "Reserved Words (Procedure Labels)", + 0, +}; + +// Case Sensitive Clarion Language Lexer +LexerModule lmClw(SCLEX_CLW, ColouriseClarionDocSensitive, "clarion", FoldClarionDoc, rgWordListDescriptions); + +// Case Insensitive Clarion Language Lexer +LexerModule lmClwNoCase(SCLEX_CLWNOCASE, ColouriseClarionDocInsensitive, "clarionnocase", FoldClarionDoc, rgWordListDescriptions); diff --git a/third_party/qscintilla/scintilla/lexers/LexCOBOL.cpp b/third_party/qscintilla/scintilla/lexers/LexCOBOL.cpp new file mode 100644 index 0000000..f037482 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCOBOL.cpp @@ -0,0 +1,379 @@ +// Scintilla source code edit control +/** @file LexCOBOL.cxx + ** Lexer for COBOL + ** Based on LexPascal.cxx + ** Written by Laurent le Tynevez + ** Updated by Simon Steele September 2002 + ** Updated by Mathias Rauen May 2003 (Delphi adjustments) + ** Updated by Rod Falck, Aug 2006 Converted to COBOL + **/ + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +#define IN_DIVISION 0x01 +#define IN_DECLARATIVES 0x02 +#define IN_SECTION 0x04 +#define IN_PARAGRAPH 0x08 +#define IN_FLAGS 0xF +#define NOT_HEADER 0x10 + +inline bool isCOBOLoperator(char ch) + { + return isoperator(ch); + } + +inline bool isCOBOLwordchar(char ch) + { + return IsASCII(ch) && (isalnum(ch) || ch == '-'); + + } + +inline bool isCOBOLwordstart(char ch) + { + return IsASCII(ch) && isalnum(ch); + } + +static int CountBits(int nBits) + { + int count = 0; + for (int i = 0; i < 32; ++i) + { + count += nBits & 1; + nBits >>= 1; + } + return count; + } + +static void getRange(Sci_PositionU start, + Sci_PositionU end, + Accessor &styler, + char *s, + Sci_PositionU len) { + Sci_PositionU i = 0; + while ((i < end - start + 1) && (i < len-1)) { + s[i] = static_cast(tolower(styler[start + i])); + i++; + } + s[i] = '\0'; +} + +static void ColourTo(Accessor &styler, Sci_PositionU end, unsigned int attr) { + styler.ColourTo(end, attr); +} + + +static int classifyWordCOBOL(Sci_PositionU start, Sci_PositionU end, /*WordList &keywords*/WordList *keywordlists[], Accessor &styler, int nContainment, bool *bAarea) { + int ret = 0; + + WordList& a_keywords = *keywordlists[0]; + WordList& b_keywords = *keywordlists[1]; + WordList& c_keywords = *keywordlists[2]; + + char s[100]; + s[0] = '\0'; + s[1] = '\0'; + getRange(start, end, styler, s, sizeof(s)); + + char chAttr = SCE_C_IDENTIFIER; + if (isdigit(s[0]) || (s[0] == '.') || (s[0] == 'v')) { + chAttr = SCE_C_NUMBER; + char *p = s + 1; + while (*p) { + if ((!isdigit(*p) && (*p) != 'v') && isCOBOLwordchar(*p)) { + chAttr = SCE_C_IDENTIFIER; + break; + } + ++p; + } + } + else { + if (a_keywords.InList(s)) { + chAttr = SCE_C_WORD; + } + else if (b_keywords.InList(s)) { + chAttr = SCE_C_WORD2; + } + else if (c_keywords.InList(s)) { + chAttr = SCE_C_UUID; + } + } + if (*bAarea) { + if (strcmp(s, "division") == 0) { + ret = IN_DIVISION; + // we've determined the containment, anything else is just ignored for those purposes + *bAarea = false; + } else if (strcmp(s, "declaratives") == 0) { + ret = IN_DIVISION | IN_DECLARATIVES; + if (nContainment & IN_DECLARATIVES) + ret |= NOT_HEADER | IN_SECTION; + // we've determined the containment, anything else is just ignored for those purposes + *bAarea = false; + } else if (strcmp(s, "section") == 0) { + ret = (nContainment &~ IN_PARAGRAPH) | IN_SECTION; + // we've determined the containment, anything else is just ignored for those purposes + *bAarea = false; + } else if (strcmp(s, "end") == 0 && (nContainment & IN_DECLARATIVES)) { + ret = IN_DIVISION | IN_DECLARATIVES | IN_SECTION | NOT_HEADER; + } else { + ret = nContainment | IN_PARAGRAPH; + } + } + ColourTo(styler, end, chAttr); + return ret; +} + +static void ColouriseCOBOLDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + + styler.StartAt(startPos); + + int state = initStyle; + if (state == SCE_C_CHARACTER) // Does not leak onto next line + state = SCE_C_DEFAULT; + char chPrev = ' '; + char chNext = styler[startPos]; + Sci_PositionU lengthDoc = startPos + length; + + int nContainment; + + Sci_Position currentLine = styler.GetLine(startPos); + if (currentLine > 0) { + styler.SetLineState(currentLine, styler.GetLineState(currentLine-1)); + nContainment = styler.GetLineState(currentLine); + nContainment &= ~NOT_HEADER; + } else { + styler.SetLineState(currentLine, 0); + nContainment = 0; + } + + styler.StartSegment(startPos); + bool bNewLine = true; + bool bAarea = !isspacechar(chNext); + int column = 0; + for (Sci_PositionU i = startPos; i < lengthDoc; i++) { + char ch = chNext; + + chNext = styler.SafeGetCharAt(i + 1); + + ++column; + + if (bNewLine) { + column = 0; + } + if (column <= 1 && !bAarea) { + bAarea = !isspacechar(ch); + } + bool bSetNewLine = false; + if ((ch == '\r' && chNext != '\n') || (ch == '\n')) { + // Trigger on CR only (Mac style) or either on LF from CR+LF (Dos/Win) or on LF alone (Unix) + // Avoid triggering two times on Dos/Win + // End of line + if (state == SCE_C_CHARACTER) { + ColourTo(styler, i, state); + state = SCE_C_DEFAULT; + } + styler.SetLineState(currentLine, nContainment); + currentLine++; + bSetNewLine = true; + if (nContainment & NOT_HEADER) + nContainment &= ~(NOT_HEADER | IN_DECLARATIVES | IN_SECTION); + } + + if (styler.IsLeadByte(ch)) { + chNext = styler.SafeGetCharAt(i + 2); + chPrev = ' '; + i += 1; + continue; + } + + if (state == SCE_C_DEFAULT) { + if (isCOBOLwordstart(ch) || (ch == '$' && IsASCII(chNext) && isalpha(chNext))) { + ColourTo(styler, i-1, state); + state = SCE_C_IDENTIFIER; + } else if (column == 6 && ch == '*') { + // Cobol comment line: asterisk in column 7. + ColourTo(styler, i-1, state); + state = SCE_C_COMMENTLINE; + } else if (ch == '*' && chNext == '>') { + // Cobol inline comment: asterisk, followed by greater than. + ColourTo(styler, i-1, state); + state = SCE_C_COMMENTLINE; + } else if (column == 0 && ch == '*' && chNext != '*') { + ColourTo(styler, i-1, state); + state = SCE_C_COMMENTLINE; + } else if (column == 0 && ch == '/' && chNext != '*') { + ColourTo(styler, i-1, state); + state = SCE_C_COMMENTLINE; + } else if (column == 0 && ch == '*' && chNext == '*') { + ColourTo(styler, i-1, state); + state = SCE_C_COMMENTDOC; + } else if (column == 0 && ch == '/' && chNext == '*') { + ColourTo(styler, i-1, state); + state = SCE_C_COMMENTDOC; + } else if (ch == '"') { + ColourTo(styler, i-1, state); + state = SCE_C_STRING; + } else if (ch == '\'') { + ColourTo(styler, i-1, state); + state = SCE_C_CHARACTER; + } else if (ch == '?' && column == 0) { + ColourTo(styler, i-1, state); + state = SCE_C_PREPROCESSOR; + } else if (isCOBOLoperator(ch)) { + ColourTo(styler, i-1, state); + ColourTo(styler, i, SCE_C_OPERATOR); + } + } else if (state == SCE_C_IDENTIFIER) { + if (!isCOBOLwordchar(ch)) { + int lStateChange = classifyWordCOBOL(styler.GetStartSegment(), i - 1, keywordlists, styler, nContainment, &bAarea); + + if(lStateChange != 0) { + styler.SetLineState(currentLine, lStateChange); + nContainment = lStateChange; + } + + state = SCE_C_DEFAULT; + chNext = styler.SafeGetCharAt(i + 1); + if (ch == '"') { + state = SCE_C_STRING; + } else if (ch == '\'') { + state = SCE_C_CHARACTER; + } else if (isCOBOLoperator(ch)) { + ColourTo(styler, i, SCE_C_OPERATOR); + } + } + } else { + if (state == SCE_C_PREPROCESSOR) { + if ((ch == '\r' || ch == '\n') && !(chPrev == '\\' || chPrev == '\r')) { + ColourTo(styler, i-1, state); + state = SCE_C_DEFAULT; + } + } else if (state == SCE_C_COMMENT) { + if (ch == '\r' || ch == '\n') { + ColourTo(styler, i, state); + state = SCE_C_DEFAULT; + } + } else if (state == SCE_C_COMMENTDOC) { + if (ch == '\r' || ch == '\n') { + if (((i > styler.GetStartSegment() + 2) || ( + (initStyle == SCE_C_COMMENTDOC) && + (styler.GetStartSegment() == static_cast(startPos))))) { + ColourTo(styler, i, state); + state = SCE_C_DEFAULT; + } + } + } else if (state == SCE_C_COMMENTLINE) { + if (ch == '\r' || ch == '\n') { + ColourTo(styler, i-1, state); + state = SCE_C_DEFAULT; + } + } else if (state == SCE_C_STRING) { + if (ch == '"') { + ColourTo(styler, i, state); + state = SCE_C_DEFAULT; + } + } else if (state == SCE_C_CHARACTER) { + if (ch == '\'') { + ColourTo(styler, i, state); + state = SCE_C_DEFAULT; + } + } + } + chPrev = ch; + bNewLine = bSetNewLine; + if (bNewLine) + { + bAarea = false; + } + } + ColourTo(styler, lengthDoc - 1, state); +} + +static void FoldCOBOLDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], + Accessor &styler) { + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = lineCurrent > 0 ? styler.LevelAt(lineCurrent - 1) & SC_FOLDLEVELNUMBERMASK : 0xFFF; + char chNext = styler[startPos]; + + bool bNewLine = true; + bool bAarea = !isspacechar(chNext); + int column = 0; + bool bComment = false; + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + ++column; + + if (bNewLine) { + column = 0; + bComment = (ch == '*' || ch == '/' || ch == '?'); + } + if (column <= 1 && !bAarea) { + bAarea = !isspacechar(ch); + } + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (atEOL) { + int nContainment = styler.GetLineState(lineCurrent); + int lev = CountBits(nContainment & IN_FLAGS) | SC_FOLDLEVELBASE; + if (bAarea && !bComment) + --lev; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((bAarea) && (visibleChars > 0) && !(nContainment & NOT_HEADER) && !bComment) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + if ((lev & SC_FOLDLEVELNUMBERMASK) <= (levelPrev & SC_FOLDLEVELNUMBERMASK)) { + // this level is at the same level or less than the previous line + // therefore these is nothing for the previous header to collapse, so remove the header + styler.SetLevel(lineCurrent - 1, levelPrev & ~SC_FOLDLEVELHEADERFLAG); + } + levelPrev = lev; + visibleChars = 0; + bAarea = false; + bNewLine = true; + lineCurrent++; + } else { + bNewLine = false; + } + + + if (!isspacechar(ch)) + visibleChars++; + } + + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const COBOLWordListDesc[] = { + "A Keywords", + "B Keywords", + "Extended Keywords", + 0 +}; + +LexerModule lmCOBOL(SCLEX_COBOL, ColouriseCOBOLDoc, "COBOL", FoldCOBOLDoc, COBOLWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexCPP.cpp b/third_party/qscintilla/scintilla/lexers/LexCPP.cpp new file mode 100644 index 0000000..3dac142 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCPP.cpp @@ -0,0 +1,1725 @@ +// Scintilla source code edit control +/** @file LexCPP.cxx + ** Lexer for C++, C, Java, and JavaScript. + ** Further folding features and configuration properties added by "Udo Lechner" + **/ +// Copyright 1998-2005 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "StringCopy.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "SparseState.h" +#include "SubStyles.h" + +using namespace Scintilla; + +namespace { + // Use an unnamed namespace to protect the functions and classes from name conflicts + +bool IsSpaceEquiv(int state) noexcept { + return (state <= SCE_C_COMMENTDOC) || + // including SCE_C_DEFAULT, SCE_C_COMMENT, SCE_C_COMMENTLINE + (state == SCE_C_COMMENTLINEDOC) || (state == SCE_C_COMMENTDOCKEYWORD) || + (state == SCE_C_COMMENTDOCKEYWORDERROR); +} + +// Preconditions: sc.currentPos points to a character after '+' or '-'. +// The test for pos reaching 0 should be redundant, +// and is in only for safety measures. +// Limitation: this code will give the incorrect answer for code like +// a = b+++/ptn/... +// Putting a space between the '++' post-inc operator and the '+' binary op +// fixes this, and is highly recommended for readability anyway. +bool FollowsPostfixOperator(const StyleContext &sc, LexAccessor &styler) { + Sci_Position pos = sc.currentPos; + while (--pos > 0) { + const char ch = styler[pos]; + if (ch == '+' || ch == '-') { + return styler[pos - 1] == ch; + } + } + return false; +} + +bool followsReturnKeyword(const StyleContext &sc, LexAccessor &styler) { + // Don't look at styles, so no need to flush. + Sci_Position pos = sc.currentPos; + const Sci_Position currentLine = styler.GetLine(pos); + const Sci_Position lineStartPos = styler.LineStart(currentLine); + while (--pos > lineStartPos) { + const char ch = styler.SafeGetCharAt(pos); + if (ch != ' ' && ch != '\t') { + break; + } + } + const char *retBack = "nruter"; + const char *s = retBack; + while (*s + && pos >= lineStartPos + && styler.SafeGetCharAt(pos) == *s) { + s++; + pos--; + } + return !*s; +} + +bool IsSpaceOrTab(int ch) noexcept { + return ch == ' ' || ch == '\t'; +} + +bool OnlySpaceOrTab(const std::string &s) noexcept { + for (const char ch : s) { + if (!IsSpaceOrTab(ch)) + return false; + } + return true; +} + +std::vector StringSplit(const std::string &text, int separator) { + std::vector vs(text.empty() ? 0 : 1); + for (const char ch : text) { + if (ch == separator) { + vs.emplace_back(); + } else { + vs.back() += ch; + } + } + return vs; +} + +struct BracketPair { + std::vector::iterator itBracket; + std::vector::iterator itEndBracket; +}; + +BracketPair FindBracketPair(std::vector &tokens) { + BracketPair bp; + std::vector::iterator itTok = std::find(tokens.begin(), tokens.end(), "("); + bp.itBracket = tokens.end(); + bp.itEndBracket = tokens.end(); + if (itTok != tokens.end()) { + bp.itBracket = itTok; + size_t nest = 0; + while (itTok != tokens.end()) { + if (*itTok == "(") { + nest++; + } else if (*itTok == ")") { + nest--; + if (nest == 0) { + bp.itEndBracket = itTok; + return bp; + } + } + ++itTok; + } + } + bp.itBracket = tokens.end(); + return bp; +} + +void highlightTaskMarker(StyleContext &sc, LexAccessor &styler, + int activity, const WordList &markerList, bool caseSensitive){ + if ((isoperator(sc.chPrev) || IsASpace(sc.chPrev)) && markerList.Length()) { + const int lengthMarker = 50; + char marker[lengthMarker+1] = ""; + const Sci_Position currPos = static_cast(sc.currentPos); + int i = 0; + while (i < lengthMarker) { + const char ch = styler.SafeGetCharAt(currPos + i); + if (IsASpace(ch) || isoperator(ch)) { + break; + } + if (caseSensitive) + marker[i] = ch; + else + marker[i] = MakeLowerCase(ch); + i++; + } + marker[i] = '\0'; + if (markerList.InList(marker)) { + sc.SetState(SCE_C_TASKMARKER|activity); + } + } +} + +struct EscapeSequence { + int digitsLeft; + CharacterSet setHexDigits; + CharacterSet setOctDigits; + CharacterSet setNoneNumeric; + CharacterSet *escapeSetValid; + EscapeSequence() { + digitsLeft = 0; + escapeSetValid = 0; + setHexDigits = CharacterSet(CharacterSet::setDigits, "ABCDEFabcdef"); + setOctDigits = CharacterSet(CharacterSet::setNone, "01234567"); + } + void resetEscapeState(int nextChar) { + digitsLeft = 0; + escapeSetValid = &setNoneNumeric; + if (nextChar == 'U') { + digitsLeft = 9; + escapeSetValid = &setHexDigits; + } else if (nextChar == 'u') { + digitsLeft = 5; + escapeSetValid = &setHexDigits; + } else if (nextChar == 'x') { + digitsLeft = 5; + escapeSetValid = &setHexDigits; + } else if (setOctDigits.Contains(nextChar)) { + digitsLeft = 3; + escapeSetValid = &setOctDigits; + } + } + bool atEscapeEnd(int currChar) const { + return (digitsLeft <= 0) || !escapeSetValid->Contains(currChar); + } +}; + +std::string GetRestOfLine(LexAccessor &styler, Sci_Position start, bool allowSpace) { + std::string restOfLine; + Sci_Position i =0; + char ch = styler.SafeGetCharAt(start, '\n'); + const Sci_Position endLine = styler.LineEnd(styler.GetLine(start)); + while (((start+i) < endLine) && (ch != '\r')) { + const char chNext = styler.SafeGetCharAt(start + i + 1, '\n'); + if (ch == '/' && (chNext == '/' || chNext == '*')) + break; + if (allowSpace || (ch != ' ')) + restOfLine += ch; + i++; + ch = chNext; + } + return restOfLine; +} + +bool IsStreamCommentStyle(int style) noexcept { + return style == SCE_C_COMMENT || + style == SCE_C_COMMENTDOC || + style == SCE_C_COMMENTDOCKEYWORD || + style == SCE_C_COMMENTDOCKEYWORDERROR; +} + +struct PPDefinition { + Sci_Position line; + std::string key; + std::string value; + bool isUndef; + std::string arguments; + PPDefinition(Sci_Position line_, const std::string &key_, const std::string &value_, bool isUndef_ = false, const std::string &arguments_="") : + line(line_), key(key_), value(value_), isUndef(isUndef_), arguments(arguments_) { + } +}; + +class LinePPState { + int state; + int ifTaken; + int level; + bool ValidLevel() const noexcept { + return level >= 0 && level < 32; + } + int maskLevel() const noexcept { + if (level >= 0) { + return 1 << level; + } else { + return 1; + } + } +public: + LinePPState() : state(0), ifTaken(0), level(-1) { + } + bool IsInactive() const noexcept { + return state != 0; + } + bool CurrentIfTaken() const noexcept { + return (ifTaken & maskLevel()) != 0; + } + void StartSection(bool on) noexcept { + level++; + if (ValidLevel()) { + if (on) { + state &= ~maskLevel(); + ifTaken |= maskLevel(); + } else { + state |= maskLevel(); + ifTaken &= ~maskLevel(); + } + } + } + void EndSection() noexcept { + if (ValidLevel()) { + state &= ~maskLevel(); + ifTaken &= ~maskLevel(); + } + level--; + } + void InvertCurrentLevel() noexcept { + if (ValidLevel()) { + state ^= maskLevel(); + ifTaken |= maskLevel(); + } + } +}; + +// Hold the preprocessor state for each line seen. +// Currently one entry per line but could become sparse with just one entry per preprocessor line. +class PPStates { + std::vector vlls; +public: + LinePPState ForLine(Sci_Position line) const { + if ((line > 0) && (vlls.size() > static_cast(line))) { + return vlls[line]; + } else { + return LinePPState(); + } + } + void Add(Sci_Position line, LinePPState lls) { + vlls.resize(line+1); + vlls[line] = lls; + } +}; + +// An individual named option for use in an OptionSet + +// Options used for LexerCPP +struct OptionsCPP { + bool stylingWithinPreprocessor; + bool identifiersAllowDollars; + bool trackPreprocessor; + bool updatePreprocessor; + bool verbatimStringsAllowEscapes; + bool triplequotedStrings; + bool hashquotedStrings; + bool backQuotedStrings; + bool escapeSequence; + bool fold; + bool foldSyntaxBased; + bool foldComment; + bool foldCommentMultiline; + bool foldCommentExplicit; + std::string foldExplicitStart; + std::string foldExplicitEnd; + bool foldExplicitAnywhere; + bool foldPreprocessor; + bool foldPreprocessorAtElse; + bool foldCompact; + bool foldAtElse; + OptionsCPP() { + stylingWithinPreprocessor = false; + identifiersAllowDollars = true; + trackPreprocessor = true; + updatePreprocessor = true; + verbatimStringsAllowEscapes = false; + triplequotedStrings = false; + hashquotedStrings = false; + backQuotedStrings = false; + escapeSequence = false; + fold = false; + foldSyntaxBased = true; + foldComment = false; + foldCommentMultiline = true; + foldCommentExplicit = true; + foldExplicitStart = ""; + foldExplicitEnd = ""; + foldExplicitAnywhere = false; + foldPreprocessor = false; + foldPreprocessorAtElse = false; + foldCompact = false; + foldAtElse = false; + } +}; + +const char *const cppWordLists[] = { + "Primary keywords and identifiers", + "Secondary keywords and identifiers", + "Documentation comment keywords", + "Global classes and typedefs", + "Preprocessor definitions", + "Task marker and error marker keywords", + 0, +}; + +struct OptionSetCPP : public OptionSet { + OptionSetCPP() { + DefineProperty("styling.within.preprocessor", &OptionsCPP::stylingWithinPreprocessor, + "For C++ code, determines whether all preprocessor code is styled in the " + "preprocessor style (0, the default) or only from the initial # to the end " + "of the command word(1)."); + + DefineProperty("lexer.cpp.allow.dollars", &OptionsCPP::identifiersAllowDollars, + "Set to 0 to disallow the '$' character in identifiers with the cpp lexer."); + + DefineProperty("lexer.cpp.track.preprocessor", &OptionsCPP::trackPreprocessor, + "Set to 1 to interpret #if/#else/#endif to grey out code that is not active."); + + DefineProperty("lexer.cpp.update.preprocessor", &OptionsCPP::updatePreprocessor, + "Set to 1 to update preprocessor definitions when #define found."); + + DefineProperty("lexer.cpp.verbatim.strings.allow.escapes", &OptionsCPP::verbatimStringsAllowEscapes, + "Set to 1 to allow verbatim strings to contain escape sequences."); + + DefineProperty("lexer.cpp.triplequoted.strings", &OptionsCPP::triplequotedStrings, + "Set to 1 to enable highlighting of triple-quoted strings."); + + DefineProperty("lexer.cpp.hashquoted.strings", &OptionsCPP::hashquotedStrings, + "Set to 1 to enable highlighting of hash-quoted strings."); + + DefineProperty("lexer.cpp.backquoted.strings", &OptionsCPP::backQuotedStrings, + "Set to 1 to enable highlighting of back-quoted raw strings ."); + + DefineProperty("lexer.cpp.escape.sequence", &OptionsCPP::escapeSequence, + "Set to 1 to enable highlighting of escape sequences in strings"); + + DefineProperty("fold", &OptionsCPP::fold); + + DefineProperty("fold.cpp.syntax.based", &OptionsCPP::foldSyntaxBased, + "Set this property to 0 to disable syntax based folding."); + + DefineProperty("fold.comment", &OptionsCPP::foldComment, + "This option enables folding multi-line comments and explicit fold points when using the C++ lexer. " + "Explicit fold points allows adding extra folding by placing a //{ comment at the start and a //} " + "at the end of a section that should fold."); + + DefineProperty("fold.cpp.comment.multiline", &OptionsCPP::foldCommentMultiline, + "Set this property to 0 to disable folding multi-line comments when fold.comment=1."); + + DefineProperty("fold.cpp.comment.explicit", &OptionsCPP::foldCommentExplicit, + "Set this property to 0 to disable folding explicit fold points when fold.comment=1."); + + DefineProperty("fold.cpp.explicit.start", &OptionsCPP::foldExplicitStart, + "The string to use for explicit fold start points, replacing the standard //{."); + + DefineProperty("fold.cpp.explicit.end", &OptionsCPP::foldExplicitEnd, + "The string to use for explicit fold end points, replacing the standard //}."); + + DefineProperty("fold.cpp.explicit.anywhere", &OptionsCPP::foldExplicitAnywhere, + "Set this property to 1 to enable explicit fold points anywhere, not just in line comments."); + + DefineProperty("fold.cpp.preprocessor.at.else", &OptionsCPP::foldPreprocessorAtElse, + "This option enables folding on a preprocessor #else or #endif line of an #if statement."); + + DefineProperty("fold.preprocessor", &OptionsCPP::foldPreprocessor, + "This option enables folding preprocessor directives when using the C++ lexer. " + "Includes C#'s explicit #region and #endregion folding directives."); + + DefineProperty("fold.compact", &OptionsCPP::foldCompact); + + DefineProperty("fold.at.else", &OptionsCPP::foldAtElse, + "This option enables C++ folding on a \"} else {\" line of an if statement."); + + DefineWordListSets(cppWordLists); + } +}; + +const char styleSubable[] = {SCE_C_IDENTIFIER, SCE_C_COMMENTDOCKEYWORD, 0}; + +LexicalClass lexicalClasses[] = { + // Lexer Cpp SCLEX_CPP SCE_C_: + 0, "SCE_C_DEFAULT", "default", "White space", + 1, "SCE_C_COMMENT", "comment", "Comment: /* */.", + 2, "SCE_C_COMMENTLINE", "comment line", "Line Comment: //.", + 3, "SCE_C_COMMENTDOC", "comment documentation", "Doc comment: block comments beginning with /** or /*!", + 4, "SCE_C_NUMBER", "literal numeric", "Number", + 5, "SCE_C_WORD", "keyword", "Keyword", + 6, "SCE_C_STRING", "literal string", "Double quoted string", + 7, "SCE_C_CHARACTER", "literal string character", "Single quoted string", + 8, "SCE_C_UUID", "literal uuid", "UUIDs (only in IDL)", + 9, "SCE_C_PREPROCESSOR", "preprocessor", "Preprocessor", + 10, "SCE_C_OPERATOR", "operator", "Operators", + 11, "SCE_C_IDENTIFIER", "identifier", "Identifiers", + 12, "SCE_C_STRINGEOL", "error literal string", "End of line where string is not closed", + 13, "SCE_C_VERBATIM", "literal string multiline raw", "Verbatim strings for C#", + 14, "SCE_C_REGEX", "literal regex", "Regular expressions for JavaScript", + 15, "SCE_C_COMMENTLINEDOC", "comment documentation line", "Doc Comment Line: line comments beginning with /// or //!.", + 16, "SCE_C_WORD2", "identifier", "Keywords2", + 17, "SCE_C_COMMENTDOCKEYWORD", "comment documentation keyword", "Comment keyword", + 18, "SCE_C_COMMENTDOCKEYWORDERROR", "error comment documentation keyword", "Comment keyword error", + 19, "SCE_C_GLOBALCLASS", "identifier", "Global class", + 20, "SCE_C_STRINGRAW", "literal string multiline raw", "Raw strings for C++0x", + 21, "SCE_C_TRIPLEVERBATIM", "literal string multiline raw", "Triple-quoted strings for Vala", + 22, "SCE_C_HASHQUOTEDSTRING", "literal string", "Hash-quoted strings for Pike", + 23, "SCE_C_PREPROCESSORCOMMENT", "comment preprocessor", "Preprocessor stream comment", + 24, "SCE_C_PREPROCESSORCOMMENTDOC", "comment preprocessor documentation", "Preprocessor stream doc comment", + 25, "SCE_C_USERLITERAL", "literal", "User defined literals", + 26, "SCE_C_TASKMARKER", "comment taskmarker", "Task Marker", + 27, "SCE_C_ESCAPESEQUENCE", "literal string escapesequence", "Escape sequence", +}; + +} + +class LexerCPP : public ILexerWithMetaData { + bool caseSensitive; + CharacterSet setWord; + CharacterSet setNegationOp; + CharacterSet setArithmethicOp; + CharacterSet setRelOp; + CharacterSet setLogicalOp; + CharacterSet setWordStart; + PPStates vlls; + std::vector ppDefineHistory; + WordList keywords; + WordList keywords2; + WordList keywords3; + WordList keywords4; + WordList ppDefinitions; + WordList markerList; + struct SymbolValue { + std::string value; + std::string arguments; + SymbolValue(const std::string &value_="", const std::string &arguments_="") : value(value_), arguments(arguments_) { + } + SymbolValue &operator = (const std::string &value_) { + value = value_; + arguments.clear(); + return *this; + } + bool IsMacro() const noexcept { + return !arguments.empty(); + } + }; + typedef std::map SymbolTable; + SymbolTable preprocessorDefinitionsStart; + OptionsCPP options; + OptionSetCPP osCPP; + EscapeSequence escapeSeq; + SparseState rawStringTerminators; + enum { activeFlag = 0x40 }; + enum { ssIdentifier, ssDocKeyword }; + SubStyles subStyles; + std::string returnBuffer; +public: + explicit LexerCPP(bool caseSensitive_) : + caseSensitive(caseSensitive_), + setWord(CharacterSet::setAlphaNum, "._", 0x80, true), + setNegationOp(CharacterSet::setNone, "!"), + setArithmethicOp(CharacterSet::setNone, "+-/*%"), + setRelOp(CharacterSet::setNone, "=!<>"), + setLogicalOp(CharacterSet::setNone, "|&"), + subStyles(styleSubable, 0x80, 0x40, activeFlag) { + } + virtual ~LexerCPP() { + } + void SCI_METHOD Release() override { + delete this; + } + int SCI_METHOD Version() const override { + return lvMetaData; + } + const char * SCI_METHOD PropertyNames() override { + return osCPP.PropertyNames(); + } + int SCI_METHOD PropertyType(const char *name) override { + return osCPP.PropertyType(name); + } + const char * SCI_METHOD DescribeProperty(const char *name) override { + return osCPP.DescribeProperty(name); + } + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override; + const char * SCI_METHOD DescribeWordListSets() override { + return osCPP.DescribeWordListSets(); + } + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void * SCI_METHOD PrivateCall(int, void *) override { + return 0; + } + + int SCI_METHOD LineEndTypesSupported() override { + return SC_LINE_END_TYPE_UNICODE; + } + + int SCI_METHOD AllocateSubStyles(int styleBase, int numberStyles) override { + return subStyles.Allocate(styleBase, numberStyles); + } + int SCI_METHOD SubStylesStart(int styleBase) override { + return subStyles.Start(styleBase); + } + int SCI_METHOD SubStylesLength(int styleBase) override { + return subStyles.Length(styleBase); + } + int SCI_METHOD StyleFromSubStyle(int subStyle) override { + const int styleBase = subStyles.BaseStyle(MaskActive(subStyle)); + const int active = subStyle & activeFlag; + return styleBase | active; + } + int SCI_METHOD PrimaryStyleFromStyle(int style) override { + return MaskActive(style); + } + void SCI_METHOD FreeSubStyles() override { + subStyles.Free(); + } + void SCI_METHOD SetIdentifiers(int style, const char *identifiers) override { + subStyles.SetIdentifiers(style, identifiers); + } + int SCI_METHOD DistanceToSecondaryStyles() override { + return activeFlag; + } + const char * SCI_METHOD GetSubStyleBases() override { + return styleSubable; + } + int SCI_METHOD NamedStyles() override { + return std::max(subStyles.LastAllocated() + 1, + static_cast(ELEMENTS(lexicalClasses))) + + activeFlag; + } + const char * SCI_METHOD NameOfStyle(int style) override { + if (style >= NamedStyles()) + return ""; + if (style < static_cast(ELEMENTS(lexicalClasses))) + return lexicalClasses[style].name; + // TODO: inactive and substyles + return ""; + } + const char * SCI_METHOD TagsOfStyle(int style) override { + if (style >= NamedStyles()) + return "Excess"; + returnBuffer.clear(); + const int firstSubStyle = subStyles.FirstAllocated(); + if (firstSubStyle >= 0) { + const int lastSubStyle = subStyles.LastAllocated(); + if (((style >= firstSubStyle) && (style <= (lastSubStyle))) || + ((style >= firstSubStyle + activeFlag) && (style <= (lastSubStyle + activeFlag)))) { + int styleActive = style; + if (style > lastSubStyle) { + returnBuffer = "inactive "; + styleActive -= activeFlag; + } + const int styleMain = StyleFromSubStyle(styleActive); + returnBuffer += lexicalClasses[styleMain].tags; + return returnBuffer.c_str(); + } + } + if (style < static_cast(ELEMENTS(lexicalClasses))) + return lexicalClasses[style].tags; + if (style >= activeFlag) { + returnBuffer = "inactive "; + const int styleActive = style - activeFlag; + if (styleActive < static_cast(ELEMENTS(lexicalClasses))) + returnBuffer += lexicalClasses[styleActive].tags; + else + returnBuffer = ""; + return returnBuffer.c_str(); + } + return ""; + } + const char * SCI_METHOD DescriptionOfStyle(int style) override { + if (style >= NamedStyles()) + return ""; + if (style < static_cast(ELEMENTS(lexicalClasses))) + return lexicalClasses[style].description; + // TODO: inactive and substyles + return ""; + } + + static ILexer *LexerFactoryCPP() { + return new LexerCPP(true); + } + static ILexer *LexerFactoryCPPInsensitive() { + return new LexerCPP(false); + } + static int MaskActive(int style) noexcept { + return style & ~activeFlag; + } + void EvaluateTokens(std::vector &tokens, const SymbolTable &preprocessorDefinitions); + std::vector Tokenize(const std::string &expr) const; + bool EvaluateExpression(const std::string &expr, const SymbolTable &preprocessorDefinitions); +}; + +Sci_Position SCI_METHOD LexerCPP::PropertySet(const char *key, const char *val) { + if (osCPP.PropertySet(&options, key, val)) { + if (strcmp(key, "lexer.cpp.allow.dollars") == 0) { + setWord = CharacterSet(CharacterSet::setAlphaNum, "._", 0x80, true); + if (options.identifiersAllowDollars) { + setWord.Add('$'); + } + } + return 0; + } + return -1; +} + +Sci_Position SCI_METHOD LexerCPP::WordListSet(int n, const char *wl) { + WordList *wordListN = 0; + switch (n) { + case 0: + wordListN = &keywords; + break; + case 1: + wordListN = &keywords2; + break; + case 2: + wordListN = &keywords3; + break; + case 3: + wordListN = &keywords4; + break; + case 4: + wordListN = &ppDefinitions; + break; + case 5: + wordListN = &markerList; + break; + } + Sci_Position firstModification = -1; + if (wordListN) { + WordList wlNew; + wlNew.Set(wl); + if (*wordListN != wlNew) { + wordListN->Set(wl); + firstModification = 0; + if (n == 4) { + // Rebuild preprocessorDefinitions + preprocessorDefinitionsStart.clear(); + for (int nDefinition = 0; nDefinition < ppDefinitions.Length(); nDefinition++) { + const char *cpDefinition = ppDefinitions.WordAt(nDefinition); + const char *cpEquals = strchr(cpDefinition, '='); + if (cpEquals) { + std::string name(cpDefinition, cpEquals - cpDefinition); + std::string val(cpEquals+1); + const size_t bracket = name.find('('); + const size_t bracketEnd = name.find(')'); + if ((bracket != std::string::npos) && (bracketEnd != std::string::npos)) { + // Macro + std::string args = name.substr(bracket + 1, bracketEnd - bracket - 1); + name = name.substr(0, bracket); + preprocessorDefinitionsStart[name] = SymbolValue(val, args); + } else { + preprocessorDefinitionsStart[name] = val; + } + } else { + std::string name(cpDefinition); + std::string val("1"); + preprocessorDefinitionsStart[name] = val; + } + } + } + } + } + return firstModification; +} + +void SCI_METHOD LexerCPP::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + LexAccessor styler(pAccess); + + CharacterSet setOKBeforeRE(CharacterSet::setNone, "([{=,:;!%^&*|?~+-"); + CharacterSet setCouldBePostOp(CharacterSet::setNone, "+-"); + + CharacterSet setDoxygen(CharacterSet::setAlpha, "$@\\&<>#{}[]"); + + setWordStart = CharacterSet(CharacterSet::setAlpha, "_", 0x80, true); + + CharacterSet setInvalidRawFirst(CharacterSet::setNone, " )\\\t\v\f\n"); + + if (options.identifiersAllowDollars) { + setWordStart.Add('$'); + } + + int chPrevNonWhite = ' '; + int visibleChars = 0; + bool lastWordWasUUID = false; + int styleBeforeDCKeyword = SCE_C_DEFAULT; + int styleBeforeTaskMarker = SCE_C_DEFAULT; + bool continuationLine = false; + bool isIncludePreprocessor = false; + bool isStringInPreprocessor = false; + bool inRERange = false; + bool seenDocKeyBrace = false; + + Sci_Position lineCurrent = styler.GetLine(startPos); + if ((MaskActive(initStyle) == SCE_C_PREPROCESSOR) || + (MaskActive(initStyle) == SCE_C_COMMENTLINE) || + (MaskActive(initStyle) == SCE_C_COMMENTLINEDOC)) { + // Set continuationLine if last character of previous line is '\' + if (lineCurrent > 0) { + const Sci_Position endLinePrevious = styler.LineEnd(lineCurrent - 1); + if (endLinePrevious > 0) { + continuationLine = styler.SafeGetCharAt(endLinePrevious-1) == '\\'; + } + } + } + + // look back to set chPrevNonWhite properly for better regex colouring + if (startPos > 0) { + Sci_Position back = startPos; + while (--back && IsSpaceEquiv(MaskActive(styler.StyleAt(back)))) + ; + if (MaskActive(styler.StyleAt(back)) == SCE_C_OPERATOR) { + chPrevNonWhite = styler.SafeGetCharAt(back); + } + } + + StyleContext sc(startPos, length, initStyle, styler); + LinePPState preproc = vlls.ForLine(lineCurrent); + + bool definitionsChanged = false; + + // Truncate ppDefineHistory before current line + + if (!options.updatePreprocessor) + ppDefineHistory.clear(); + + std::vector::iterator itInvalid = std::find_if(ppDefineHistory.begin(), ppDefineHistory.end(), + [lineCurrent](const PPDefinition &p) { return p.line >= lineCurrent; }); + if (itInvalid != ppDefineHistory.end()) { + ppDefineHistory.erase(itInvalid, ppDefineHistory.end()); + definitionsChanged = true; + } + + SymbolTable preprocessorDefinitions = preprocessorDefinitionsStart; + for (const PPDefinition &ppDef : ppDefineHistory) { + if (ppDef.isUndef) + preprocessorDefinitions.erase(ppDef.key); + else + preprocessorDefinitions[ppDef.key] = SymbolValue(ppDef.value, ppDef.arguments); + } + + std::string rawStringTerminator = rawStringTerminators.ValueAt(lineCurrent-1); + SparseState rawSTNew(lineCurrent); + + int activitySet = preproc.IsInactive() ? activeFlag : 0; + + const WordClassifier &classifierIdentifiers = subStyles.Classifier(SCE_C_IDENTIFIER); + const WordClassifier &classifierDocKeyWords = subStyles.Classifier(SCE_C_COMMENTDOCKEYWORD); + + Sci_Position lineEndNext = styler.LineEnd(lineCurrent); + + for (; sc.More();) { + + if (sc.atLineStart) { + // Using MaskActive() is not needed in the following statement. + // Inside inactive preprocessor declaration, state will be reset anyway at the end of this block. + if ((sc.state == SCE_C_STRING) || (sc.state == SCE_C_CHARACTER)) { + // Prevent SCE_C_STRINGEOL from leaking back to previous line which + // ends with a line continuation by locking in the state up to this position. + sc.SetState(sc.state); + } + if ((MaskActive(sc.state) == SCE_C_PREPROCESSOR) && (!continuationLine)) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } + // Reset states to beginning of colourise so no surprises + // if different sets of lines lexed. + visibleChars = 0; + lastWordWasUUID = false; + isIncludePreprocessor = false; + inRERange = false; + if (preproc.IsInactive()) { + activitySet = activeFlag; + sc.SetState(sc.state | activitySet); + } + } + + if (sc.atLineEnd) { + lineCurrent++; + lineEndNext = styler.LineEnd(lineCurrent); + vlls.Add(lineCurrent, preproc); + if (rawStringTerminator != "") { + rawSTNew.Set(lineCurrent-1, rawStringTerminator); + } + } + + // Handle line continuation generically. + if (sc.ch == '\\') { + if (static_cast((sc.currentPos+1)) >= lineEndNext) { + lineCurrent++; + lineEndNext = styler.LineEnd(lineCurrent); + vlls.Add(lineCurrent, preproc); + if (rawStringTerminator != "") { + rawSTNew.Set(lineCurrent-1, rawStringTerminator); + } + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + // Even in UTF-8, \r and \n are separate + sc.Forward(); + } + continuationLine = true; + sc.Forward(); + continue; + } + } + + const bool atLineEndBeforeSwitch = sc.atLineEnd; + + // Determine if the current state should terminate. + switch (MaskActive(sc.state)) { + case SCE_C_OPERATOR: + sc.SetState(SCE_C_DEFAULT|activitySet); + break; + case SCE_C_NUMBER: + // We accept almost anything because of hex. and number suffixes + if (sc.ch == '_') { + sc.ChangeState(SCE_C_USERLITERAL|activitySet); + } else if (!(setWord.Contains(sc.ch) + || (sc.ch == '\'') + || ((sc.ch == '+' || sc.ch == '-') && (sc.chPrev == 'e' || sc.chPrev == 'E' || + sc.chPrev == 'p' || sc.chPrev == 'P')))) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } + break; + case SCE_C_USERLITERAL: + if (!(setWord.Contains(sc.ch))) + sc.SetState(SCE_C_DEFAULT|activitySet); + break; + case SCE_C_IDENTIFIER: + if (sc.atLineStart || sc.atLineEnd || !setWord.Contains(sc.ch) || (sc.ch == '.')) { + char s[1000]; + if (caseSensitive) { + sc.GetCurrent(s, sizeof(s)); + } else { + sc.GetCurrentLowered(s, sizeof(s)); + } + if (keywords.InList(s)) { + lastWordWasUUID = strcmp(s, "uuid") == 0; + sc.ChangeState(SCE_C_WORD|activitySet); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_C_WORD2|activitySet); + } else if (keywords4.InList(s)) { + sc.ChangeState(SCE_C_GLOBALCLASS|activitySet); + } else { + int subStyle = classifierIdentifiers.ValueFor(s); + if (subStyle >= 0) { + sc.ChangeState(subStyle|activitySet); + } + } + const bool literalString = sc.ch == '\"'; + if (literalString || sc.ch == '\'') { + size_t lenS = strlen(s); + const bool raw = literalString && sc.chPrev == 'R' && !setInvalidRawFirst.Contains(sc.chNext); + if (raw) + s[lenS--] = '\0'; + const bool valid = + (lenS == 0) || + ((lenS == 1) && ((s[0] == 'L') || (s[0] == 'u') || (s[0] == 'U'))) || + ((lenS == 2) && literalString && (s[0] == 'u') && (s[1] == '8')); + if (valid) { + if (literalString) { + if (raw) { + // Set the style of the string prefix to SCE_C_STRINGRAW but then change to + // SCE_C_DEFAULT as that allows the raw string start code to run. + sc.ChangeState(SCE_C_STRINGRAW|activitySet); + sc.SetState(SCE_C_DEFAULT|activitySet); + } else { + sc.ChangeState(SCE_C_STRING|activitySet); + } + } else { + sc.ChangeState(SCE_C_CHARACTER|activitySet); + } + } else { + sc.SetState(SCE_C_DEFAULT | activitySet); + } + } else { + sc.SetState(SCE_C_DEFAULT|activitySet); + } + } + break; + case SCE_C_PREPROCESSOR: + if (options.stylingWithinPreprocessor) { + if (IsASpace(sc.ch)) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } + } else if (isStringInPreprocessor && (sc.Match('>') || sc.Match('\"') || sc.atLineEnd)) { + isStringInPreprocessor = false; + } else if (!isStringInPreprocessor) { + if ((isIncludePreprocessor && sc.Match('<')) || sc.Match('\"')) { + isStringInPreprocessor = true; + } else if (sc.Match('/', '*')) { + if (sc.Match("/**") || sc.Match("/*!")) { + sc.SetState(SCE_C_PREPROCESSORCOMMENTDOC|activitySet); + } else { + sc.SetState(SCE_C_PREPROCESSORCOMMENT|activitySet); + } + sc.Forward(); // Eat the * + } else if (sc.Match('/', '/')) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } + } + break; + case SCE_C_PREPROCESSORCOMMENT: + case SCE_C_PREPROCESSORCOMMENTDOC: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_C_PREPROCESSOR|activitySet); + continue; // Without advancing in case of '\'. + } + break; + case SCE_C_COMMENT: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + } else { + styleBeforeTaskMarker = SCE_C_COMMENT; + highlightTaskMarker(sc, styler, activitySet, markerList, caseSensitive); + } + break; + case SCE_C_COMMENTDOC: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '*') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = SCE_C_COMMENTDOC; + sc.SetState(SCE_C_COMMENTDOCKEYWORD|activitySet); + } + } + break; + case SCE_C_COMMENTLINE: + if (sc.atLineStart && !continuationLine) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } else { + styleBeforeTaskMarker = SCE_C_COMMENTLINE; + highlightTaskMarker(sc, styler, activitySet, markerList, caseSensitive); + } + break; + case SCE_C_COMMENTLINEDOC: + if (sc.atLineStart && !continuationLine) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '/' || sc.chPrev == '!') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = SCE_C_COMMENTLINEDOC; + sc.SetState(SCE_C_COMMENTDOCKEYWORD|activitySet); + } + } + break; + case SCE_C_COMMENTDOCKEYWORD: + if ((styleBeforeDCKeyword == SCE_C_COMMENTDOC) && sc.Match('*', '/')) { + sc.ChangeState(SCE_C_COMMENTDOCKEYWORDERROR); + sc.Forward(); + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + seenDocKeyBrace = false; + } else if (sc.ch == '[' || sc.ch == '{') { + seenDocKeyBrace = true; + } else if (!setDoxygen.Contains(sc.ch) + && !(seenDocKeyBrace && (sc.ch == ',' || sc.ch == '.'))) { + char s[100]; + if (caseSensitive) { + sc.GetCurrent(s, sizeof(s)); + } else { + sc.GetCurrentLowered(s, sizeof(s)); + } + if (!(IsASpace(sc.ch) || (sc.ch == 0))) { + sc.ChangeState(SCE_C_COMMENTDOCKEYWORDERROR|activitySet); + } else if (!keywords3.InList(s + 1)) { + int subStyleCDKW = classifierDocKeyWords.ValueFor(s+1); + if (subStyleCDKW >= 0) { + sc.ChangeState(subStyleCDKW|activitySet); + } else { + sc.ChangeState(SCE_C_COMMENTDOCKEYWORDERROR|activitySet); + } + } + sc.SetState(styleBeforeDCKeyword|activitySet); + seenDocKeyBrace = false; + } + break; + case SCE_C_STRING: + if (sc.atLineEnd) { + sc.ChangeState(SCE_C_STRINGEOL|activitySet); + } else if (isIncludePreprocessor) { + if (sc.ch == '>') { + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + isIncludePreprocessor = false; + } + } else if (sc.ch == '\\') { + if (options.escapeSequence) { + sc.SetState(SCE_C_ESCAPESEQUENCE|activitySet); + escapeSeq.resetEscapeState(sc.chNext); + } + sc.Forward(); // Skip all characters after the backslash + } else if (sc.ch == '\"') { + if (sc.chNext == '_') { + sc.ChangeState(SCE_C_USERLITERAL|activitySet); + } else { + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + } + } + break; + case SCE_C_ESCAPESEQUENCE: + escapeSeq.digitsLeft--; + if (!escapeSeq.atEscapeEnd(sc.ch)) { + break; + } + if (sc.ch == '"') { + sc.SetState(SCE_C_STRING|activitySet); + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + } else if (sc.ch == '\\') { + escapeSeq.resetEscapeState(sc.chNext); + sc.Forward(); + } else { + sc.SetState(SCE_C_STRING|activitySet); + if (sc.atLineEnd) { + sc.ChangeState(SCE_C_STRINGEOL|activitySet); + } + } + break; + case SCE_C_HASHQUOTEDSTRING: + if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + } + break; + case SCE_C_STRINGRAW: + if (sc.Match(rawStringTerminator.c_str())) { + for (size_t termPos=rawStringTerminator.size(); termPos; termPos--) + sc.Forward(); + sc.SetState(SCE_C_DEFAULT|activitySet); + rawStringTerminator = ""; + } + break; + case SCE_C_CHARACTER: + if (sc.atLineEnd) { + sc.ChangeState(SCE_C_STRINGEOL|activitySet); + } else if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\'') { + if (sc.chNext == '_') { + sc.ChangeState(SCE_C_USERLITERAL|activitySet); + } else { + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + } + } + break; + case SCE_C_REGEX: + if (sc.atLineStart) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } else if (! inRERange && sc.ch == '/') { + sc.Forward(); + while ((sc.ch < 0x80) && islower(sc.ch)) + sc.Forward(); // gobble regex flags + sc.SetState(SCE_C_DEFAULT|activitySet); + } else if (sc.ch == '\\' && (static_cast(sc.currentPos+1) < lineEndNext)) { + // Gobble up the escaped character + sc.Forward(); + } else if (sc.ch == '[') { + inRERange = true; + } else if (sc.ch == ']') { + inRERange = false; + } + break; + case SCE_C_STRINGEOL: + if (sc.atLineStart) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } + break; + case SCE_C_VERBATIM: + if (options.verbatimStringsAllowEscapes && (sc.ch == '\\')) { + sc.Forward(); // Skip all characters after the backslash + } else if (sc.ch == '\"') { + if (sc.chNext == '\"') { + sc.Forward(); + } else { + sc.ForwardSetState(SCE_C_DEFAULT|activitySet); + } + } + break; + case SCE_C_TRIPLEVERBATIM: + if (sc.Match(R"(""")")) { + while (sc.Match('"')) { + sc.Forward(); + } + sc.SetState(SCE_C_DEFAULT|activitySet); + } + break; + case SCE_C_UUID: + if (sc.atLineEnd || sc.ch == ')') { + sc.SetState(SCE_C_DEFAULT|activitySet); + } + break; + case SCE_C_TASKMARKER: + if (isoperator(sc.ch) || IsASpace(sc.ch)) { + sc.SetState(styleBeforeTaskMarker|activitySet); + styleBeforeTaskMarker = SCE_C_DEFAULT; + } + } + + if (sc.atLineEnd && !atLineEndBeforeSwitch) { + // State exit processing consumed characters up to end of line. + lineCurrent++; + lineEndNext = styler.LineEnd(lineCurrent); + vlls.Add(lineCurrent, preproc); + } + + // Determine if a new state should be entered. + if (MaskActive(sc.state) == SCE_C_DEFAULT) { + if (sc.Match('@', '\"')) { + sc.SetState(SCE_C_VERBATIM|activitySet); + sc.Forward(); + } else if (options.triplequotedStrings && sc.Match(R"(""")")) { + sc.SetState(SCE_C_TRIPLEVERBATIM|activitySet); + sc.Forward(2); + } else if (options.hashquotedStrings && sc.Match('#', '\"')) { + sc.SetState(SCE_C_HASHQUOTEDSTRING|activitySet); + sc.Forward(); + } else if (options.backQuotedStrings && sc.Match('`')) { + sc.SetState(SCE_C_STRINGRAW|activitySet); + rawStringTerminator = "`"; + } else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + if (lastWordWasUUID) { + sc.SetState(SCE_C_UUID|activitySet); + lastWordWasUUID = false; + } else { + sc.SetState(SCE_C_NUMBER|activitySet); + } + } else if (!sc.atLineEnd && (setWordStart.Contains(sc.ch) || (sc.ch == '@'))) { + if (lastWordWasUUID) { + sc.SetState(SCE_C_UUID|activitySet); + lastWordWasUUID = false; + } else { + sc.SetState(SCE_C_IDENTIFIER|activitySet); + } + } else if (sc.Match('/', '*')) { + if (sc.Match("/**") || sc.Match("/*!")) { // Support of Qt/Doxygen doc. style + sc.SetState(SCE_C_COMMENTDOC|activitySet); + } else { + sc.SetState(SCE_C_COMMENT|activitySet); + } + sc.Forward(); // Eat the * so it isn't used for the end of the comment + } else if (sc.Match('/', '/')) { + if ((sc.Match("///") && !sc.Match("////")) || sc.Match("//!")) + // Support of Qt/Doxygen doc. style + sc.SetState(SCE_C_COMMENTLINEDOC|activitySet); + else + sc.SetState(SCE_C_COMMENTLINE|activitySet); + } else if (sc.ch == '/' + && (setOKBeforeRE.Contains(chPrevNonWhite) + || followsReturnKeyword(sc, styler)) + && (!setCouldBePostOp.Contains(chPrevNonWhite) + || !FollowsPostfixOperator(sc, styler))) { + sc.SetState(SCE_C_REGEX|activitySet); // JavaScript's RegEx + inRERange = false; + } else if (sc.ch == '\"') { + if (sc.chPrev == 'R') { + styler.Flush(); + if (MaskActive(styler.StyleAt(sc.currentPos - 1)) == SCE_C_STRINGRAW) { + sc.SetState(SCE_C_STRINGRAW|activitySet); + rawStringTerminator = ")"; + for (Sci_Position termPos = sc.currentPos + 1;; termPos++) { + const char chTerminator = styler.SafeGetCharAt(termPos, '('); + if (chTerminator == '(') + break; + rawStringTerminator += chTerminator; + } + rawStringTerminator += '\"'; + } else { + sc.SetState(SCE_C_STRING|activitySet); + } + } else { + sc.SetState(SCE_C_STRING|activitySet); + } + isIncludePreprocessor = false; // ensure that '>' won't end the string + } else if (isIncludePreprocessor && sc.ch == '<') { + sc.SetState(SCE_C_STRING|activitySet); + } else if (sc.ch == '\'') { + sc.SetState(SCE_C_CHARACTER|activitySet); + } else if (sc.ch == '#' && visibleChars == 0) { + // Preprocessor commands are alone on their line + sc.SetState(SCE_C_PREPROCESSOR|activitySet); + // Skip whitespace between # and preprocessor word + do { + sc.Forward(); + } while ((sc.ch == ' ' || sc.ch == '\t') && sc.More()); + if (sc.atLineEnd) { + sc.SetState(SCE_C_DEFAULT|activitySet); + } else if (sc.Match("include")) { + isIncludePreprocessor = true; + } else { + if (options.trackPreprocessor) { + if (sc.Match("ifdef") || sc.Match("ifndef")) { + const bool isIfDef = sc.Match("ifdef"); + const int startRest = isIfDef ? 5 : 6; + std::string restOfLine = GetRestOfLine(styler, sc.currentPos + startRest + 1, false); + bool foundDef = preprocessorDefinitions.find(restOfLine) != preprocessorDefinitions.end(); + preproc.StartSection(isIfDef == foundDef); + } else if (sc.Match("if")) { + std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 2, true); + const bool ifGood = EvaluateExpression(restOfLine, preprocessorDefinitions); + preproc.StartSection(ifGood); + } else if (sc.Match("else")) { + if (!preproc.CurrentIfTaken()) { + preproc.InvertCurrentLevel(); + activitySet = preproc.IsInactive() ? activeFlag : 0; + if (!activitySet) + sc.ChangeState(SCE_C_PREPROCESSOR|activitySet); + } else if (!preproc.IsInactive()) { + preproc.InvertCurrentLevel(); + activitySet = preproc.IsInactive() ? activeFlag : 0; + if (!activitySet) + sc.ChangeState(SCE_C_PREPROCESSOR|activitySet); + } + } else if (sc.Match("elif")) { + // Ensure only one chosen out of #if .. #elif .. #elif .. #else .. #endif + if (!preproc.CurrentIfTaken()) { + // Similar to #if + std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 4, true); + const bool ifGood = EvaluateExpression(restOfLine, preprocessorDefinitions); + if (ifGood) { + preproc.InvertCurrentLevel(); + activitySet = preproc.IsInactive() ? activeFlag : 0; + if (!activitySet) + sc.ChangeState(SCE_C_PREPROCESSOR|activitySet); + } + } else if (!preproc.IsInactive()) { + preproc.InvertCurrentLevel(); + activitySet = preproc.IsInactive() ? activeFlag : 0; + if (!activitySet) + sc.ChangeState(SCE_C_PREPROCESSOR|activitySet); + } + } else if (sc.Match("endif")) { + preproc.EndSection(); + activitySet = preproc.IsInactive() ? activeFlag : 0; + sc.ChangeState(SCE_C_PREPROCESSOR|activitySet); + } else if (sc.Match("define")) { + if (options.updatePreprocessor && !preproc.IsInactive()) { + std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 6, true); + size_t startName = 0; + while ((startName < restOfLine.length()) && IsSpaceOrTab(restOfLine[startName])) + startName++; + size_t endName = startName; + while ((endName < restOfLine.length()) && setWord.Contains(static_cast(restOfLine[endName]))) + endName++; + std::string key = restOfLine.substr(startName, endName-startName); + if ((endName < restOfLine.length()) && (restOfLine.at(endName) == '(')) { + // Macro + size_t endArgs = endName; + while ((endArgs < restOfLine.length()) && (restOfLine[endArgs] != ')')) + endArgs++; + std::string args = restOfLine.substr(endName + 1, endArgs - endName - 1); + size_t startValue = endArgs+1; + while ((startValue < restOfLine.length()) && IsSpaceOrTab(restOfLine[startValue])) + startValue++; + std::string value; + if (startValue < restOfLine.length()) + value = restOfLine.substr(startValue); + preprocessorDefinitions[key] = SymbolValue(value, args); + ppDefineHistory.push_back(PPDefinition(lineCurrent, key, value, false, args)); + definitionsChanged = true; + } else { + // Value + size_t startValue = endName; + while ((startValue < restOfLine.length()) && IsSpaceOrTab(restOfLine[startValue])) + startValue++; + std::string value = restOfLine.substr(startValue); + if (OnlySpaceOrTab(value)) + value = "1"; // No value defaults to 1 + preprocessorDefinitions[key] = value; + ppDefineHistory.push_back(PPDefinition(lineCurrent, key, value)); + definitionsChanged = true; + } + } + } else if (sc.Match("undef")) { + if (options.updatePreprocessor && !preproc.IsInactive()) { + const std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 5, false); + std::vector tokens = Tokenize(restOfLine); + if (tokens.size() >= 1) { + const std::string key = tokens[0]; + preprocessorDefinitions.erase(key); + ppDefineHistory.push_back(PPDefinition(lineCurrent, key, "", true)); + definitionsChanged = true; + } + } + } + } + } + } else if (isoperator(sc.ch)) { + sc.SetState(SCE_C_OPERATOR|activitySet); + } + } + + if (!IsASpace(sc.ch) && !IsSpaceEquiv(MaskActive(sc.state))) { + chPrevNonWhite = sc.ch; + visibleChars++; + } + continuationLine = false; + sc.Forward(); + } + const bool rawStringsChanged = rawStringTerminators.Merge(rawSTNew, lineCurrent); + if (definitionsChanged || rawStringsChanged) + styler.ChangeLexerState(startPos, startPos + length); + sc.Complete(); +} + +// Store both the current line's fold level and the next lines in the +// level store to make it easy to pick up with each increment +// and to make it possible to fiddle the current level for "} else {". + +void SCI_METHOD LexerCPP::Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + + if (!options.fold) + return; + + LexAccessor styler(pAccess); + + const Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + bool inLineComment = false; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelCurrent = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelCurrent = styler.LevelAt(lineCurrent-1) >> 16; + Sci_PositionU lineStartNext = styler.LineStart(lineCurrent+1); + int levelMinCurrent = levelCurrent; + int levelNext = levelCurrent; + char chNext = styler[startPos]; + int styleNext = MaskActive(styler.StyleAt(startPos)); + int style = MaskActive(initStyle); + const bool userDefinedFoldMarkers = !options.foldExplicitStart.empty() && !options.foldExplicitEnd.empty(); + for (Sci_PositionU i = startPos; i < endPos; i++) { + const char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + const int stylePrev = style; + style = styleNext; + styleNext = MaskActive(styler.StyleAt(i + 1)); + const bool atEOL = i == (lineStartNext-1); + if ((style == SCE_C_COMMENTLINE) || (style == SCE_C_COMMENTLINEDOC)) + inLineComment = true; + if (options.foldComment && options.foldCommentMultiline && IsStreamCommentStyle(style) && !inLineComment) { + if (!IsStreamCommentStyle(stylePrev)) { + levelNext++; + } else if (!IsStreamCommentStyle(styleNext) && !atEOL) { + // Comments don't end at end of line and the next character may be unstyled. + levelNext--; + } + } + if (options.foldComment && options.foldCommentExplicit && ((style == SCE_C_COMMENTLINE) || options.foldExplicitAnywhere)) { + if (userDefinedFoldMarkers) { + if (styler.Match(i, options.foldExplicitStart.c_str())) { + levelNext++; + } else if (styler.Match(i, options.foldExplicitEnd.c_str())) { + levelNext--; + } + } else { + if ((ch == '/') && (chNext == '/')) { + const char chNext2 = styler.SafeGetCharAt(i + 2); + if (chNext2 == '{') { + levelNext++; + } else if (chNext2 == '}') { + levelNext--; + } + } + } + } + if (options.foldPreprocessor && (style == SCE_C_PREPROCESSOR)) { + if (ch == '#') { + Sci_PositionU j = i + 1; + while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) { + j++; + } + if (styler.Match(j, "region") || styler.Match(j, "if")) { + levelNext++; + } else if (styler.Match(j, "end")) { + levelNext--; + } + + if (options.foldPreprocessorAtElse && (styler.Match(j, "else") || styler.Match(j, "elif"))) { + levelMinCurrent--; + } + } + } + if (options.foldSyntaxBased && (style == SCE_C_OPERATOR)) { + if (ch == '{' || ch == '[' || ch == '(') { + // Measure the minimum before a '{' to allow + // folding on "} else {" + if (options.foldAtElse && levelMinCurrent > levelNext) { + levelMinCurrent = levelNext; + } + levelNext++; + } else if (ch == '}' || ch == ']' || ch == ')') { + levelNext--; + } + } + if (!IsASpace(ch)) + visibleChars++; + if (atEOL || (i == endPos-1)) { + int levelUse = levelCurrent; + if ((options.foldSyntaxBased && options.foldAtElse) || + (options.foldPreprocessor && options.foldPreprocessorAtElse) + ) { + levelUse = levelMinCurrent; + } + int lev = levelUse | levelNext << 16; + if (visibleChars == 0 && options.foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if (levelUse < levelNext) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + lineStartNext = styler.LineStart(lineCurrent+1); + levelCurrent = levelNext; + levelMinCurrent = levelCurrent; + if (atEOL && (i == static_cast(styler.Length()-1))) { + // There is an empty line at end of file so give it same level and empty + styler.SetLevel(lineCurrent, (levelCurrent | levelCurrent << 16) | SC_FOLDLEVELWHITEFLAG); + } + visibleChars = 0; + inLineComment = false; + } + } +} + +void LexerCPP::EvaluateTokens(std::vector &tokens, const SymbolTable &preprocessorDefinitions) { + + // Remove whitespace tokens + tokens.erase(std::remove_if(tokens.begin(), tokens.end(), OnlySpaceOrTab), tokens.end()); + + // Evaluate defined statements to either 0 or 1 + for (size_t i=0; (i+1)) + SymbolTable::const_iterator it = preprocessorDefinitions.find(tokens[i+2]); + if (it != preprocessorDefinitions.end()) { + val = "1"; + } + tokens.erase(tokens.begin() + i + 1, tokens.begin() + i + 4); + } else { + // Spurious '(' so erase as more likely to result in false + tokens.erase(tokens.begin() + i + 1, tokens.begin() + i + 2); + } + } else { + // defined + SymbolTable::const_iterator it = preprocessorDefinitions.find(tokens[i+1]); + if (it != preprocessorDefinitions.end()) { + val = "1"; + } + tokens.erase(tokens.begin() + i + 1, tokens.begin() + i + 2); + } + tokens[i] = val; + } else { + i++; + } + } + + // Evaluate identifiers + const size_t maxIterations = 100; + size_t iterations = 0; // Limit number of iterations in case there is a recursive macro. + for (size_t i = 0; (i(tokens[i][0]))) { + SymbolTable::const_iterator it = preprocessorDefinitions.find(tokens[i]); + if (it != preprocessorDefinitions.end()) { + // Tokenize value + std::vector macroTokens = Tokenize(it->second.value); + if (it->second.IsMacro()) { + if ((i + 1 < tokens.size()) && (tokens.at(i + 1) == "(")) { + // Create map of argument name to value + std::vector argumentNames = StringSplit(it->second.arguments, ','); + std::map arguments; + size_t arg = 0; + size_t tok = i+2; + while ((tok < tokens.size()) && (arg < argumentNames.size()) && (tokens.at(tok) != ")")) { + if (tokens.at(tok) != ",") { + arguments[argumentNames.at(arg)] = tokens.at(tok); + arg++; + } + tok++; + } + + // Remove invocation + tokens.erase(tokens.begin() + i, tokens.begin() + tok + 1); + + // Substitute values into macro + macroTokens.erase(std::remove_if(macroTokens.begin(), macroTokens.end(), OnlySpaceOrTab), macroTokens.end()); + + for (size_t iMacro = 0; iMacro < macroTokens.size();) { + if (setWordStart.Contains(static_cast(macroTokens[iMacro][0]))) { + std::map::const_iterator itFind = arguments.find(macroTokens[iMacro]); + if (itFind != arguments.end()) { + // TODO: Possible that value will be expression so should insert tokenized form + macroTokens[iMacro] = itFind->second; + } + } + iMacro++; + } + + // Insert results back into tokens + tokens.insert(tokens.begin() + i, macroTokens.begin(), macroTokens.end()); + + } else { + i++; + } + } else { + // Remove invocation + tokens.erase(tokens.begin() + i); + // Insert results back into tokens + tokens.insert(tokens.begin() + i, macroTokens.begin(), macroTokens.end()); + } + } else { + // Identifier not found and value defaults to zero + tokens[i] = "0"; + } + } else { + i++; + } + } + + // Find bracketed subexpressions and recurse on them + BracketPair bracketPair = FindBracketPair(tokens); + while (bracketPair.itBracket != tokens.end()) { + std::vector inBracket(bracketPair.itBracket + 1, bracketPair.itEndBracket); + EvaluateTokens(inBracket, preprocessorDefinitions); + + // The insertion is done before the removal because there were failures with the opposite approach + tokens.insert(bracketPair.itBracket, inBracket.begin(), inBracket.end()); + + bracketPair = FindBracketPair(tokens); + tokens.erase(bracketPair.itBracket, bracketPair.itEndBracket + 1); + + bracketPair = FindBracketPair(tokens); + } + + // Evaluate logical negations + for (size_t j=0; (j+1)::iterator itInsert = + tokens.erase(tokens.begin() + j, tokens.begin() + j + 2); + tokens.insert(itInsert, isTrue ? "1" : "0"); + } else { + j++; + } + } + + // Evaluate expressions in precedence order + enum precedence { precArithmetic, precRelative, precLogical }; + for (int prec=precArithmetic; prec <= precLogical; prec++) { + // Looking at 3 tokens at a time so end at 2 before end + for (size_t k=0; (k+2)") + result = valA > valB; + else if (tokens[k+1] == ">=") + result = valA >= valB; + else if (tokens[k+1] == "==") + result = valA == valB; + else if (tokens[k+1] == "!=") + result = valA != valB; + else if (tokens[k+1] == "||") + result = valA || valB; + else if (tokens[k+1] == "&&") + result = valA && valB; + char sResult[30]; + sprintf(sResult, "%d", result); + std::vector::iterator itInsert = + tokens.erase(tokens.begin() + k, tokens.begin() + k + 3); + tokens.insert(itInsert, sResult); + } else { + k++; + } + } + } +} + +std::vector LexerCPP::Tokenize(const std::string &expr) const { + // Break into tokens + std::vector tokens; + const char *cp = expr.c_str(); + while (*cp) { + std::string word; + if (setWord.Contains(static_cast(*cp))) { + // Identifiers and numbers + while (setWord.Contains(static_cast(*cp))) { + word += *cp; + cp++; + } + } else if (IsSpaceOrTab(*cp)) { + while (IsSpaceOrTab(*cp)) { + word += *cp; + cp++; + } + } else if (setRelOp.Contains(static_cast(*cp))) { + word += *cp; + cp++; + if (setRelOp.Contains(static_cast(*cp))) { + word += *cp; + cp++; + } + } else if (setLogicalOp.Contains(static_cast(*cp))) { + word += *cp; + cp++; + if (setLogicalOp.Contains(static_cast(*cp))) { + word += *cp; + cp++; + } + } else { + // Should handle strings, characters, and comments here + word += *cp; + cp++; + } + tokens.push_back(word); + } + return tokens; +} + +bool LexerCPP::EvaluateExpression(const std::string &expr, const SymbolTable &preprocessorDefinitions) { + std::vector tokens = Tokenize(expr); + + EvaluateTokens(tokens, preprocessorDefinitions); + + // "0" or "" -> false else true + const bool isFalse = tokens.empty() || + ((tokens.size() == 1) && ((tokens[0] == "") || tokens[0] == "0")); + return !isFalse; +} + +LexerModule lmCPP(SCLEX_CPP, LexerCPP::LexerFactoryCPP, "cpp", cppWordLists); +LexerModule lmCPPNoCase(SCLEX_CPPNOCASE, LexerCPP::LexerFactoryCPPInsensitive, "cppnocase", cppWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexCSS.cpp b/third_party/qscintilla/scintilla/lexers/LexCSS.cpp new file mode 100644 index 0000000..c1a86f5 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCSS.cpp @@ -0,0 +1,567 @@ +// Scintilla source code edit control +// Encoding: UTF-8 +/** @file LexCSS.cxx + ** Lexer for Cascading Style Sheets + ** Written by Jakub Vrána + ** Improved by Philippe Lhoste (CSS2) + ** Improved by Ross McKay (SCSS mode; see http://sass-lang.com/ ) + **/ +// Copyright 1998-2002 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +// TODO: handle SCSS nested properties like font: { weight: bold; size: 1em; } +// TODO: handle SCSS interpolation: #{} +// TODO: add features for Less if somebody feels like contributing; http://lesscss.org/ +// TODO: refactor this monster so that the next poor slob can read it! + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + + +static inline bool IsAWordChar(const unsigned int ch) { + /* FIXME: + * The CSS spec allows "ISO 10646 characters U+00A1 and higher" to be treated as word chars. + * Unfortunately, we are only getting string bytes here, and not full unicode characters. We cannot guarantee + * that our byte is between U+0080 - U+00A0 (to return false), so we have to allow all characters U+0080 and higher + */ + return ch >= 0x80 || isalnum(ch) || ch == '-' || ch == '_'; +} + +inline bool IsCssOperator(const int ch) { + if (!((ch < 0x80) && isalnum(ch)) && + (ch == '{' || ch == '}' || ch == ':' || ch == ',' || ch == ';' || + ch == '.' || ch == '#' || ch == '!' || ch == '@' || + /* CSS2 */ + ch == '*' || ch == '>' || ch == '+' || ch == '=' || ch == '~' || ch == '|' || + ch == '[' || ch == ']' || ch == '(' || ch == ')')) { + return true; + } + return false; +} + +// look behind (from start of document to our start position) to determine current nesting level +inline int NestingLevelLookBehind(Sci_PositionU startPos, Accessor &styler) { + int ch; + int nestingLevel = 0; + + for (Sci_PositionU i = 0; i < startPos; i++) { + ch = styler.SafeGetCharAt(i); + if (ch == '{') + nestingLevel++; + else if (ch == '}') + nestingLevel--; + } + + return nestingLevel; +} + +static void ColouriseCssDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], Accessor &styler) { + WordList &css1Props = *keywordlists[0]; + WordList &pseudoClasses = *keywordlists[1]; + WordList &css2Props = *keywordlists[2]; + WordList &css3Props = *keywordlists[3]; + WordList &pseudoElements = *keywordlists[4]; + WordList &exProps = *keywordlists[5]; + WordList &exPseudoClasses = *keywordlists[6]; + WordList &exPseudoElements = *keywordlists[7]; + + StyleContext sc(startPos, length, initStyle, styler); + + int lastState = -1; // before operator + int lastStateC = -1; // before comment + int lastStateS = -1; // before single-quoted/double-quoted string + int lastStateVar = -1; // before variable (SCSS) + int lastStateVal = -1; // before value (SCSS) + int op = ' '; // last operator + int opPrev = ' '; // last operator + bool insideParentheses = false; // true if currently in a CSS url() or similar construct + + // property lexer.css.scss.language + // Set to 1 for Sassy CSS (.scss) + bool isScssDocument = styler.GetPropertyInt("lexer.css.scss.language") != 0; + + // property lexer.css.less.language + // Set to 1 for Less CSS (.less) + bool isLessDocument = styler.GetPropertyInt("lexer.css.less.language") != 0; + + // property lexer.css.hss.language + // Set to 1 for HSS (.hss) + bool isHssDocument = styler.GetPropertyInt("lexer.css.hss.language") != 0; + + // SCSS/LESS/HSS have the concept of variable + bool hasVariables = isScssDocument || isLessDocument || isHssDocument; + char varPrefix = 0; + if (hasVariables) + varPrefix = isLessDocument ? '@' : '$'; + + // SCSS/LESS/HSS support single-line comments + typedef enum _CommentModes { eCommentBlock = 0, eCommentLine = 1} CommentMode; + CommentMode comment_mode = eCommentBlock; + bool hasSingleLineComments = isScssDocument || isLessDocument || isHssDocument; + + // must keep track of nesting level in document types that support it (SCSS/LESS/HSS) + bool hasNesting = false; + int nestingLevel = 0; + if (isScssDocument || isLessDocument || isHssDocument) { + hasNesting = true; + nestingLevel = NestingLevelLookBehind(startPos, styler); + } + + // "the loop" + for (; sc.More(); sc.Forward()) { + if (sc.state == SCE_CSS_COMMENT && ((comment_mode == eCommentBlock && sc.Match('*', '/')) || (comment_mode == eCommentLine && sc.atLineEnd))) { + if (lastStateC == -1) { + // backtrack to get last state: + // comments are like whitespace, so we must return to the previous state + Sci_PositionU i = startPos; + for (; i > 0; i--) { + if ((lastStateC = styler.StyleAt(i-1)) != SCE_CSS_COMMENT) { + if (lastStateC == SCE_CSS_OPERATOR) { + op = styler.SafeGetCharAt(i-1); + opPrev = styler.SafeGetCharAt(i-2); + while (--i) { + lastState = styler.StyleAt(i-1); + if (lastState != SCE_CSS_OPERATOR && lastState != SCE_CSS_COMMENT) + break; + } + if (i == 0) + lastState = SCE_CSS_DEFAULT; + } + break; + } + } + if (i == 0) + lastStateC = SCE_CSS_DEFAULT; + } + if (comment_mode == eCommentBlock) { + sc.Forward(); + sc.ForwardSetState(lastStateC); + } else /* eCommentLine */ { + sc.SetState(lastStateC); + } + } + + if (sc.state == SCE_CSS_COMMENT) + continue; + + if (sc.state == SCE_CSS_DOUBLESTRING || sc.state == SCE_CSS_SINGLESTRING) { + if (sc.ch != (sc.state == SCE_CSS_DOUBLESTRING ? '\"' : '\'')) + continue; + Sci_PositionU i = sc.currentPos; + while (i && styler[i-1] == '\\') + i--; + if ((sc.currentPos - i) % 2 == 1) + continue; + sc.ForwardSetState(lastStateS); + } + + if (sc.state == SCE_CSS_OPERATOR) { + if (op == ' ') { + Sci_PositionU i = startPos; + op = styler.SafeGetCharAt(i-1); + opPrev = styler.SafeGetCharAt(i-2); + while (--i) { + lastState = styler.StyleAt(i-1); + if (lastState != SCE_CSS_OPERATOR && lastState != SCE_CSS_COMMENT) + break; + } + } + switch (op) { + case '@': + if (lastState == SCE_CSS_DEFAULT || hasNesting) + sc.SetState(SCE_CSS_DIRECTIVE); + break; + case '>': + case '+': + if (lastState == SCE_CSS_TAG || lastState == SCE_CSS_CLASS || lastState == SCE_CSS_ID || + lastState == SCE_CSS_PSEUDOCLASS || lastState == SCE_CSS_EXTENDED_PSEUDOCLASS || lastState == SCE_CSS_UNKNOWN_PSEUDOCLASS) + sc.SetState(SCE_CSS_DEFAULT); + break; + case '[': + if (lastState == SCE_CSS_TAG || lastState == SCE_CSS_DEFAULT || lastState == SCE_CSS_CLASS || lastState == SCE_CSS_ID || + lastState == SCE_CSS_PSEUDOCLASS || lastState == SCE_CSS_EXTENDED_PSEUDOCLASS || lastState == SCE_CSS_UNKNOWN_PSEUDOCLASS) + sc.SetState(SCE_CSS_ATTRIBUTE); + break; + case ']': + if (lastState == SCE_CSS_ATTRIBUTE) + sc.SetState(SCE_CSS_TAG); + break; + case '{': + nestingLevel++; + switch (lastState) { + case SCE_CSS_MEDIA: + sc.SetState(SCE_CSS_DEFAULT); + break; + case SCE_CSS_TAG: + case SCE_CSS_DIRECTIVE: + sc.SetState(SCE_CSS_IDENTIFIER); + break; + } + break; + case '}': + if (--nestingLevel < 0) + nestingLevel = 0; + switch (lastState) { + case SCE_CSS_DEFAULT: + case SCE_CSS_VALUE: + case SCE_CSS_IMPORTANT: + case SCE_CSS_IDENTIFIER: + case SCE_CSS_IDENTIFIER2: + case SCE_CSS_IDENTIFIER3: + if (hasNesting) + sc.SetState(nestingLevel > 0 ? SCE_CSS_IDENTIFIER : SCE_CSS_DEFAULT); + else + sc.SetState(SCE_CSS_DEFAULT); + break; + } + break; + case '(': + if (lastState == SCE_CSS_PSEUDOCLASS) + sc.SetState(SCE_CSS_TAG); + else if (lastState == SCE_CSS_EXTENDED_PSEUDOCLASS) + sc.SetState(SCE_CSS_EXTENDED_PSEUDOCLASS); + break; + case ')': + if (lastState == SCE_CSS_TAG || lastState == SCE_CSS_DEFAULT || lastState == SCE_CSS_CLASS || lastState == SCE_CSS_ID || + lastState == SCE_CSS_PSEUDOCLASS || lastState == SCE_CSS_EXTENDED_PSEUDOCLASS || lastState == SCE_CSS_UNKNOWN_PSEUDOCLASS || + lastState == SCE_CSS_PSEUDOELEMENT || lastState == SCE_CSS_EXTENDED_PSEUDOELEMENT) + sc.SetState(SCE_CSS_TAG); + break; + case ':': + switch (lastState) { + case SCE_CSS_TAG: + case SCE_CSS_DEFAULT: + case SCE_CSS_CLASS: + case SCE_CSS_ID: + case SCE_CSS_PSEUDOCLASS: + case SCE_CSS_EXTENDED_PSEUDOCLASS: + case SCE_CSS_UNKNOWN_PSEUDOCLASS: + case SCE_CSS_PSEUDOELEMENT: + case SCE_CSS_EXTENDED_PSEUDOELEMENT: + sc.SetState(SCE_CSS_PSEUDOCLASS); + break; + case SCE_CSS_IDENTIFIER: + case SCE_CSS_IDENTIFIER2: + case SCE_CSS_IDENTIFIER3: + case SCE_CSS_EXTENDED_IDENTIFIER: + case SCE_CSS_UNKNOWN_IDENTIFIER: + case SCE_CSS_VARIABLE: + sc.SetState(SCE_CSS_VALUE); + lastStateVal = lastState; + break; + } + break; + case '.': + if (lastState == SCE_CSS_TAG || lastState == SCE_CSS_DEFAULT || lastState == SCE_CSS_CLASS || lastState == SCE_CSS_ID || + lastState == SCE_CSS_PSEUDOCLASS || lastState == SCE_CSS_EXTENDED_PSEUDOCLASS || lastState == SCE_CSS_UNKNOWN_PSEUDOCLASS) + sc.SetState(SCE_CSS_CLASS); + break; + case '#': + if (lastState == SCE_CSS_TAG || lastState == SCE_CSS_DEFAULT || lastState == SCE_CSS_CLASS || lastState == SCE_CSS_ID || + lastState == SCE_CSS_PSEUDOCLASS || lastState == SCE_CSS_EXTENDED_PSEUDOCLASS || lastState == SCE_CSS_UNKNOWN_PSEUDOCLASS) + sc.SetState(SCE_CSS_ID); + break; + case ',': + case '|': + case '~': + if (lastState == SCE_CSS_TAG) + sc.SetState(SCE_CSS_DEFAULT); + break; + case ';': + switch (lastState) { + case SCE_CSS_DIRECTIVE: + if (hasNesting) { + sc.SetState(nestingLevel > 0 ? SCE_CSS_IDENTIFIER : SCE_CSS_DEFAULT); + } else { + sc.SetState(SCE_CSS_DEFAULT); + } + break; + case SCE_CSS_VALUE: + case SCE_CSS_IMPORTANT: + // data URLs can have semicolons; simplistically check for wrapping parentheses and move along + if (insideParentheses) { + sc.SetState(lastState); + } else { + if (lastStateVal == SCE_CSS_VARIABLE) { + sc.SetState(SCE_CSS_DEFAULT); + } else { + sc.SetState(SCE_CSS_IDENTIFIER); + } + } + break; + case SCE_CSS_VARIABLE: + if (lastStateVar == SCE_CSS_VALUE) { + // data URLs can have semicolons; simplistically check for wrapping parentheses and move along + if (insideParentheses) { + sc.SetState(SCE_CSS_VALUE); + } else { + sc.SetState(SCE_CSS_IDENTIFIER); + } + } else { + sc.SetState(SCE_CSS_DEFAULT); + } + break; + } + break; + case '!': + if (lastState == SCE_CSS_VALUE) + sc.SetState(SCE_CSS_IMPORTANT); + break; + } + } + + if (sc.ch == '*' && sc.state == SCE_CSS_DEFAULT) { + sc.SetState(SCE_CSS_TAG); + continue; + } + + // check for inside parentheses (whether part of an "operator" or not) + if (sc.ch == '(') + insideParentheses = true; + else if (sc.ch == ')') + insideParentheses = false; + + // SCSS special modes + if (hasVariables) { + // variable name + if (sc.ch == varPrefix) { + switch (sc.state) { + case SCE_CSS_DEFAULT: + if (isLessDocument) // give priority to pseudo elements + break; + // Falls through. + case SCE_CSS_VALUE: + lastStateVar = sc.state; + sc.SetState(SCE_CSS_VARIABLE); + continue; + } + } + if (sc.state == SCE_CSS_VARIABLE) { + if (IsAWordChar(sc.ch)) { + // still looking at the variable name + continue; + } + if (lastStateVar == SCE_CSS_VALUE) { + // not looking at the variable name any more, and it was part of a value + sc.SetState(SCE_CSS_VALUE); + } + } + + // nested rule parent selector + if (sc.ch == '&') { + switch (sc.state) { + case SCE_CSS_DEFAULT: + case SCE_CSS_IDENTIFIER: + sc.SetState(SCE_CSS_TAG); + continue; + } + } + } + + // nesting rules that apply to SCSS and Less + if (hasNesting) { + // check for nested rule selector + if (sc.state == SCE_CSS_IDENTIFIER && (IsAWordChar(sc.ch) || sc.ch == ':' || sc.ch == '.' || sc.ch == '#')) { + // look ahead to see whether { comes before next ; and } + Sci_PositionU endPos = startPos + length; + int ch; + + for (Sci_PositionU i = sc.currentPos; i < endPos; i++) { + ch = styler.SafeGetCharAt(i); + if (ch == ';' || ch == '}') + break; + if (ch == '{') { + sc.SetState(SCE_CSS_DEFAULT); + continue; + } + } + } + + } + + if (IsAWordChar(sc.ch)) { + if (sc.state == SCE_CSS_DEFAULT) + sc.SetState(SCE_CSS_TAG); + continue; + } + + if (IsAWordChar(sc.chPrev) && ( + sc.state == SCE_CSS_IDENTIFIER || sc.state == SCE_CSS_IDENTIFIER2 || + sc.state == SCE_CSS_IDENTIFIER3 || sc.state == SCE_CSS_EXTENDED_IDENTIFIER || + sc.state == SCE_CSS_UNKNOWN_IDENTIFIER || + sc.state == SCE_CSS_PSEUDOCLASS || sc.state == SCE_CSS_PSEUDOELEMENT || + sc.state == SCE_CSS_EXTENDED_PSEUDOCLASS || sc.state == SCE_CSS_EXTENDED_PSEUDOELEMENT || + sc.state == SCE_CSS_UNKNOWN_PSEUDOCLASS || + sc.state == SCE_CSS_IMPORTANT || + sc.state == SCE_CSS_DIRECTIVE + )) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + char *s2 = s; + while (*s2 && !IsAWordChar(*s2)) + s2++; + switch (sc.state) { + case SCE_CSS_IDENTIFIER: + case SCE_CSS_IDENTIFIER2: + case SCE_CSS_IDENTIFIER3: + case SCE_CSS_EXTENDED_IDENTIFIER: + case SCE_CSS_UNKNOWN_IDENTIFIER: + if (css1Props.InList(s2)) + sc.ChangeState(SCE_CSS_IDENTIFIER); + else if (css2Props.InList(s2)) + sc.ChangeState(SCE_CSS_IDENTIFIER2); + else if (css3Props.InList(s2)) + sc.ChangeState(SCE_CSS_IDENTIFIER3); + else if (exProps.InList(s2)) + sc.ChangeState(SCE_CSS_EXTENDED_IDENTIFIER); + else + sc.ChangeState(SCE_CSS_UNKNOWN_IDENTIFIER); + break; + case SCE_CSS_PSEUDOCLASS: + case SCE_CSS_PSEUDOELEMENT: + case SCE_CSS_EXTENDED_PSEUDOCLASS: + case SCE_CSS_EXTENDED_PSEUDOELEMENT: + case SCE_CSS_UNKNOWN_PSEUDOCLASS: + if (op == ':' && opPrev != ':' && pseudoClasses.InList(s2)) + sc.ChangeState(SCE_CSS_PSEUDOCLASS); + else if (opPrev == ':' && pseudoElements.InList(s2)) + sc.ChangeState(SCE_CSS_PSEUDOELEMENT); + else if ((op == ':' || (op == '(' && lastState == SCE_CSS_EXTENDED_PSEUDOCLASS)) && opPrev != ':' && exPseudoClasses.InList(s2)) + sc.ChangeState(SCE_CSS_EXTENDED_PSEUDOCLASS); + else if (opPrev == ':' && exPseudoElements.InList(s2)) + sc.ChangeState(SCE_CSS_EXTENDED_PSEUDOELEMENT); + else + sc.ChangeState(SCE_CSS_UNKNOWN_PSEUDOCLASS); + break; + case SCE_CSS_IMPORTANT: + if (strcmp(s2, "important") != 0) + sc.ChangeState(SCE_CSS_VALUE); + break; + case SCE_CSS_DIRECTIVE: + if (op == '@' && strcmp(s2, "media") == 0) + sc.ChangeState(SCE_CSS_MEDIA); + break; + } + } + + if (sc.ch != '.' && sc.ch != ':' && sc.ch != '#' && ( + sc.state == SCE_CSS_CLASS || sc.state == SCE_CSS_ID || + (sc.ch != '(' && sc.ch != ')' && ( /* This line of the condition makes it possible to extend pseudo-classes with parentheses */ + sc.state == SCE_CSS_PSEUDOCLASS || sc.state == SCE_CSS_PSEUDOELEMENT || + sc.state == SCE_CSS_EXTENDED_PSEUDOCLASS || sc.state == SCE_CSS_EXTENDED_PSEUDOELEMENT || + sc.state == SCE_CSS_UNKNOWN_PSEUDOCLASS + )) + )) + sc.SetState(SCE_CSS_TAG); + + if (sc.Match('/', '*')) { + lastStateC = sc.state; + comment_mode = eCommentBlock; + sc.SetState(SCE_CSS_COMMENT); + sc.Forward(); + } else if (hasSingleLineComments && sc.Match('/', '/') && !insideParentheses) { + // note that we've had to treat ([...]// as the start of a URL not a comment, e.g. url(http://example.com), url(//example.com) + lastStateC = sc.state; + comment_mode = eCommentLine; + sc.SetState(SCE_CSS_COMMENT); + sc.Forward(); + } else if ((sc.state == SCE_CSS_VALUE || sc.state == SCE_CSS_ATTRIBUTE) + && (sc.ch == '\"' || sc.ch == '\'')) { + lastStateS = sc.state; + sc.SetState((sc.ch == '\"' ? SCE_CSS_DOUBLESTRING : SCE_CSS_SINGLESTRING)); + } else if (IsCssOperator(sc.ch) + && (sc.state != SCE_CSS_ATTRIBUTE || sc.ch == ']') + && (sc.state != SCE_CSS_VALUE || sc.ch == ';' || sc.ch == '}' || sc.ch == '!') + && ((sc.state != SCE_CSS_DIRECTIVE && sc.state != SCE_CSS_MEDIA) || sc.ch == ';' || sc.ch == '{') + ) { + if (sc.state != SCE_CSS_OPERATOR) + lastState = sc.state; + sc.SetState(SCE_CSS_OPERATOR); + op = sc.ch; + opPrev = sc.chPrev; + } + } + + sc.Complete(); +} + +static void FoldCSSDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) { + bool foldComment = styler.GetPropertyInt("fold.comment") != 0; + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + bool inComment = (styler.StyleAt(startPos-1) == SCE_CSS_COMMENT); + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int style = styler.StyleAt(i); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (foldComment) { + if (!inComment && (style == SCE_CSS_COMMENT)) + levelCurrent++; + else if (inComment && (style != SCE_CSS_COMMENT)) + levelCurrent--; + inComment = (style == SCE_CSS_COMMENT); + } + if (style == SCE_CSS_OPERATOR) { + if (ch == '{') { + levelCurrent++; + } else if (ch == '}') { + levelCurrent--; + } + } + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) + visibleChars++; + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const cssWordListDesc[] = { + "CSS1 Properties", + "Pseudo-classes", + "CSS2 Properties", + "CSS3 Properties", + "Pseudo-elements", + "Browser-Specific CSS Properties", + "Browser-Specific Pseudo-classes", + "Browser-Specific Pseudo-elements", + 0 +}; + +LexerModule lmCss(SCLEX_CSS, ColouriseCssDoc, "css", FoldCSSDoc, cssWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexCaml.cpp b/third_party/qscintilla/scintilla/lexers/LexCaml.cpp new file mode 100644 index 0000000..1339b5d --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCaml.cpp @@ -0,0 +1,460 @@ +// Scintilla source code edit control +/** @file LexCaml.cxx + ** Lexer for Objective Caml. + **/ +// Copyright 2005-2009 by Robert Roessler +// The License.txt file describes the conditions under which this software may be distributed. +/* Release History + 20050204 Initial release. + 20050205 Quick compiler standards/"cleanliness" adjustment. + 20050206 Added cast for IsLeadByte(). + 20050209 Changes to "external" build support. + 20050306 Fix for 1st-char-in-doc "corner" case. + 20050502 Fix for [harmless] one-past-the-end coloring. + 20050515 Refined numeric token recognition logic. + 20051125 Added 2nd "optional" keywords class. + 20051129 Support "magic" (read-only) comments for RCaml. + 20051204 Swtich to using StyleContext infrastructure. + 20090629 Add full Standard ML '97 support. +*/ + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wcomma" +#endif + +// Since the Microsoft __iscsym[f] funcs are not ANSI... +inline int iscaml(int c) {return isalnum(c) || c == '_';} +inline int iscamlf(int c) {return isalpha(c) || c == '_';} + +static const int baseT[24] = { + 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* A - L */ + 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0,16 /* M - X */ +}; + +using namespace Scintilla; + +#ifdef BUILD_AS_EXTERNAL_LEXER +/* + (actually seems to work!) +*/ +#include +#include "WindowAccessor.h" +#include "ExternalLexer.h" + +#undef EXT_LEXER_DECL +#define EXT_LEXER_DECL __declspec( dllexport ) __stdcall + +#if PLAT_WIN +#include +#endif + +static void ColouriseCamlDoc( + Sci_PositionU startPos, Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler); + +static void FoldCamlDoc( + Sci_PositionU startPos, Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler); + +static void InternalLexOrFold(int lexOrFold, Sci_PositionU startPos, Sci_Position length, + int initStyle, char *words[], WindowID window, char *props); + +static const char* LexerName = "caml"; + +#ifdef TRACE +void Platform::DebugPrintf(const char *format, ...) { + char buffer[2000]; + va_list pArguments; + va_start(pArguments, format); + vsprintf(buffer,format,pArguments); + va_end(pArguments); + Platform::DebugDisplay(buffer); +} +#else +void Platform::DebugPrintf(const char *, ...) { +} +#endif + +bool Platform::IsDBCSLeadByte(int codePage, char ch) { + return ::IsDBCSLeadByteEx(codePage, ch) != 0; +} + +long Platform::SendScintilla(WindowID w, unsigned int msg, unsigned long wParam, long lParam) { + return ::SendMessage(reinterpret_cast(w), msg, wParam, lParam); +} + +long Platform::SendScintillaPointer(WindowID w, unsigned int msg, unsigned long wParam, void *lParam) { + return ::SendMessage(reinterpret_cast(w), msg, wParam, + reinterpret_cast(lParam)); +} + +void EXT_LEXER_DECL Fold(unsigned int lexer, Sci_PositionU startPos, Sci_Position length, + int initStyle, char *words[], WindowID window, char *props) +{ + // below useless evaluation(s) to supress "not used" warnings + lexer; + // build expected data structures and do the Fold + InternalLexOrFold(1, startPos, length, initStyle, words, window, props); + +} + +int EXT_LEXER_DECL GetLexerCount() +{ + return 1; // just us [Objective] Caml lexers here! +} + +void EXT_LEXER_DECL GetLexerName(unsigned int Index, char *name, int buflength) +{ + // below useless evaluation(s) to supress "not used" warnings + Index; + // return as much of our lexer name as will fit (what's up with Index?) + if (buflength > 0) { + buflength--; + int n = strlen(LexerName); + if (n > buflength) + n = buflength; + memcpy(name, LexerName, n), name[n] = '\0'; + } +} + +void EXT_LEXER_DECL Lex(unsigned int lexer, Sci_PositionU startPos, Sci_Position length, + int initStyle, char *words[], WindowID window, char *props) +{ + // below useless evaluation(s) to supress "not used" warnings + lexer; + // build expected data structures and do the Lex + InternalLexOrFold(0, startPos, length, initStyle, words, window, props); +} + +static void InternalLexOrFold(int foldOrLex, Sci_PositionU startPos, Sci_Position length, + int initStyle, char *words[], WindowID window, char *props) +{ + // create and initialize a WindowAccessor (including contained PropSet) + PropSetSimple ps; + ps.SetMultiple(props); + WindowAccessor wa(window, ps); + // create and initialize WordList(s) + int nWL = 0; + for (; words[nWL]; nWL++) ; // count # of WordList PTRs needed + WordList** wl = new WordList* [nWL + 1];// alloc WordList PTRs + int i = 0; + for (; i < nWL; i++) { + wl[i] = new WordList(); // (works or THROWS bad_alloc EXCEPTION) + wl[i]->Set(words[i]); + } + wl[i] = 0; + // call our "internal" folder/lexer (... then do Flush!) + if (foldOrLex) + FoldCamlDoc(startPos, length, initStyle, wl, wa); + else + ColouriseCamlDoc(startPos, length, initStyle, wl, wa); + wa.Flush(); + // clean up before leaving + for (i = nWL - 1; i >= 0; i--) + delete wl[i]; + delete [] wl; +} + +static +#endif /* BUILD_AS_EXTERNAL_LEXER */ + +void ColouriseCamlDoc( + Sci_PositionU startPos, Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler) +{ + // initialize styler + StyleContext sc(startPos, length, initStyle, styler); + + Sci_PositionU chToken = 0; + int chBase = 0, chLit = 0; + WordList& keywords = *keywordlists[0]; + WordList& keywords2 = *keywordlists[1]; + WordList& keywords3 = *keywordlists[2]; + const bool isSML = keywords.InList("andalso"); + const int useMagic = styler.GetPropertyInt("lexer.caml.magic", 0); + + // set up [initial] state info (terminating states that shouldn't "bleed") + const int state_ = sc.state & 0x0f; + if (state_ <= SCE_CAML_CHAR + || (isSML && state_ == SCE_CAML_STRING)) + sc.state = SCE_CAML_DEFAULT; + int nesting = (state_ >= SCE_CAML_COMMENT)? (state_ - SCE_CAML_COMMENT): 0; + + // foreach char in range... + while (sc.More()) { + // set up [per-char] state info + int state2 = -1; // (ASSUME no state change) + Sci_Position chColor = sc.currentPos - 1;// (ASSUME standard coloring range) + bool advance = true; // (ASSUME scanner "eats" 1 char) + + // step state machine + switch (sc.state & 0x0f) { + case SCE_CAML_DEFAULT: + chToken = sc.currentPos; // save [possible] token start (JIC) + // it's wide open; what do we have? + if (iscamlf(sc.ch)) + state2 = SCE_CAML_IDENTIFIER; + else if (!isSML && sc.Match('`') && iscamlf(sc.chNext)) + state2 = SCE_CAML_TAGNAME; + else if (!isSML && sc.Match('#') && isdigit(sc.chNext)) + state2 = SCE_CAML_LINENUM; + else if (isdigit(sc.ch)) { + // it's a number, assume base 10 + state2 = SCE_CAML_NUMBER, chBase = 10; + if (sc.Match('0')) { + // there MAY be a base specified... + const char* baseC = "bBoOxX"; + if (isSML) { + if (sc.chNext == 'w') + sc.Forward(); // (consume SML "word" indicator) + baseC = "x"; + } + // ... change to specified base AS REQUIRED + if (strchr(baseC, sc.chNext)) + chBase = baseT[tolower(sc.chNext) - 'a'], sc.Forward(); + } + } else if (!isSML && sc.Match('\'')) // (Caml char literal?) + state2 = SCE_CAML_CHAR, chLit = 0; + else if (isSML && sc.Match('#', '"')) // (SML char literal?) + state2 = SCE_CAML_CHAR, sc.Forward(); + else if (sc.Match('"')) + state2 = SCE_CAML_STRING; + else if (sc.Match('(', '*')) + state2 = SCE_CAML_COMMENT, sc.Forward(), sc.ch = ' '; // (*)... + else if (strchr("!?~" /* Caml "prefix-symbol" */ + "=<>@^|&+-*/$%" /* Caml "infix-symbol" */ + "()[]{};,:.#", sc.ch) // Caml "bracket" or ;,:.# + // SML "extra" ident chars + || (isSML && (sc.Match('\\') || sc.Match('`')))) + state2 = SCE_CAML_OPERATOR; + break; + + case SCE_CAML_IDENTIFIER: + // [try to] interpret as [additional] identifier char + if (!(iscaml(sc.ch) || sc.Match('\''))) { + const Sci_Position n = sc.currentPos - chToken; + if (n < 24) { + // length is believable as keyword, [re-]construct token + char t[24]; + for (Sci_Position i = -n; i < 0; i++) + t[n + i] = static_cast(sc.GetRelative(i)); + t[n] = '\0'; + // special-case "_" token as KEYWORD + if ((n == 1 && sc.chPrev == '_') || keywords.InList(t)) + sc.ChangeState(SCE_CAML_KEYWORD); + else if (keywords2.InList(t)) + sc.ChangeState(SCE_CAML_KEYWORD2); + else if (keywords3.InList(t)) + sc.ChangeState(SCE_CAML_KEYWORD3); + } + state2 = SCE_CAML_DEFAULT, advance = false; + } + break; + + case SCE_CAML_TAGNAME: + // [try to] interpret as [additional] tagname char + if (!(iscaml(sc.ch) || sc.Match('\''))) + state2 = SCE_CAML_DEFAULT, advance = false; + break; + + /*case SCE_CAML_KEYWORD: + case SCE_CAML_KEYWORD2: + case SCE_CAML_KEYWORD3: + // [try to] interpret as [additional] keyword char + if (!iscaml(ch)) + state2 = SCE_CAML_DEFAULT, advance = false; + break;*/ + + case SCE_CAML_LINENUM: + // [try to] interpret as [additional] linenum directive char + if (!isdigit(sc.ch)) + state2 = SCE_CAML_DEFAULT, advance = false; + break; + + case SCE_CAML_OPERATOR: { + // [try to] interpret as [additional] operator char + const char* o = 0; + if (iscaml(sc.ch) || isspace(sc.ch) // ident or whitespace + || (o = strchr(")]};,\'\"#", sc.ch),o) // "termination" chars + || (!isSML && sc.Match('`')) // Caml extra term char + || (!strchr("!$%&*+-./:<=>?@^|~", sc.ch)// "operator" chars + // SML extra ident chars + && !(isSML && (sc.Match('\\') || sc.Match('`'))))) { + // check for INCLUSIVE termination + if (o && strchr(")]};,", sc.ch)) { + if ((sc.Match(')') && sc.chPrev == '(') + || (sc.Match(']') && sc.chPrev == '[')) + // special-case "()" and "[]" tokens as KEYWORDS + sc.ChangeState(SCE_CAML_KEYWORD); + chColor++; + } else + advance = false; + state2 = SCE_CAML_DEFAULT; + } + break; + } + + case SCE_CAML_NUMBER: + // [try to] interpret as [additional] numeric literal char + if ((!isSML && sc.Match('_')) || IsADigit(sc.ch, chBase)) + break; + // how about an integer suffix? + if (!isSML && (sc.Match('l') || sc.Match('L') || sc.Match('n')) + && (sc.chPrev == '_' || IsADigit(sc.chPrev, chBase))) + break; + // or a floating-point literal? + if (chBase == 10) { + // with a decimal point? + if (sc.Match('.') + && ((!isSML && sc.chPrev == '_') + || IsADigit(sc.chPrev, chBase))) + break; + // with an exponent? (I) + if ((sc.Match('e') || sc.Match('E')) + && ((!isSML && (sc.chPrev == '.' || sc.chPrev == '_')) + || IsADigit(sc.chPrev, chBase))) + break; + // with an exponent? (II) + if (((!isSML && (sc.Match('+') || sc.Match('-'))) + || (isSML && sc.Match('~'))) + && (sc.chPrev == 'e' || sc.chPrev == 'E')) + break; + } + // it looks like we have run out of number + state2 = SCE_CAML_DEFAULT, advance = false; + break; + + case SCE_CAML_CHAR: + if (!isSML) { + // [try to] interpret as [additional] char literal char + if (sc.Match('\\')) { + chLit = 1; // (definitely IS a char literal) + if (sc.chPrev == '\\') + sc.ch = ' '; // (...\\') + // should we be terminating - one way or another? + } else if ((sc.Match('\'') && sc.chPrev != '\\') + || sc.atLineEnd) { + state2 = SCE_CAML_DEFAULT; + if (sc.Match('\'')) + chColor++; + else + sc.ChangeState(SCE_CAML_IDENTIFIER); + // ... maybe a char literal, maybe not + } else if (chLit < 1 && sc.currentPos - chToken >= 2) + sc.ChangeState(SCE_CAML_IDENTIFIER), advance = false; + break; + }/* else + // fall through for SML char literal (handle like string) */ + // Falls through. + + case SCE_CAML_STRING: + // [try to] interpret as [additional] [SML char/] string literal char + if (isSML && sc.Match('\\') && sc.chPrev != '\\' && isspace(sc.chNext)) + state2 = SCE_CAML_WHITE; + else if (sc.Match('\\') && sc.chPrev == '\\') + sc.ch = ' '; // (...\\") + // should we be terminating - one way or another? + else if ((sc.Match('"') && sc.chPrev != '\\') + || (isSML && sc.atLineEnd)) { + state2 = SCE_CAML_DEFAULT; + if (sc.Match('"')) + chColor++; + } + break; + + case SCE_CAML_WHITE: + // [try to] interpret as [additional] SML embedded whitespace char + if (sc.Match('\\')) { + // style this puppy NOW... + state2 = SCE_CAML_STRING, sc.ch = ' ' /* (...\") */, chColor++, + styler.ColourTo(chColor, SCE_CAML_WHITE), styler.Flush(); + // ... then backtrack to determine original SML literal type + Sci_Position p = chColor - 2; + for (; p >= 0 && styler.StyleAt(p) == SCE_CAML_WHITE; p--) ; + if (p >= 0) + state2 = static_cast(styler.StyleAt(p)); + // take care of state change NOW + sc.ChangeState(state2), state2 = -1; + } + break; + + case SCE_CAML_COMMENT: + case SCE_CAML_COMMENT1: + case SCE_CAML_COMMENT2: + case SCE_CAML_COMMENT3: + // we're IN a comment - does this start a NESTED comment? + if (sc.Match('(', '*')) + state2 = sc.state + 1, chToken = sc.currentPos, + sc.Forward(), sc.ch = ' ' /* (*)... */, nesting++; + // [try to] interpret as [additional] comment char + else if (sc.Match(')') && sc.chPrev == '*') { + if (nesting) + state2 = (sc.state & 0x0f) - 1, chToken = 0, nesting--; + else + state2 = SCE_CAML_DEFAULT; + chColor++; + // enable "magic" (read-only) comment AS REQUIRED + } else if (useMagic && sc.currentPos - chToken == 4 + && sc.Match('c') && sc.chPrev == 'r' && sc.GetRelative(-2) == '@') + sc.state |= 0x10; // (switch to read-only comment style) + break; + } + + // handle state change and char coloring AS REQUIRED + if (state2 >= 0) + styler.ColourTo(chColor, sc.state), sc.ChangeState(state2); + // move to next char UNLESS re-scanning current char + if (advance) + sc.Forward(); + } + + // do any required terminal char coloring (JIC) + sc.Complete(); +} + +#ifdef BUILD_AS_EXTERNAL_LEXER +static +#endif /* BUILD_AS_EXTERNAL_LEXER */ +void FoldCamlDoc( + Sci_PositionU, Sci_Position, + int, + WordList *[], + Accessor &) +{ +} + +static const char * const camlWordListDesc[] = { + "Keywords", // primary Objective Caml keywords + "Keywords2", // "optional" keywords (typically from Pervasives) + "Keywords3", // "optional" keywords (typically typenames) + 0 +}; + +#ifndef BUILD_AS_EXTERNAL_LEXER +LexerModule lmCaml(SCLEX_CAML, ColouriseCamlDoc, "caml", FoldCamlDoc, camlWordListDesc); +#endif /* BUILD_AS_EXTERNAL_LEXER */ diff --git a/third_party/qscintilla/scintilla/lexers/LexCmake.cpp b/third_party/qscintilla/scintilla/lexers/LexCmake.cpp new file mode 100644 index 0000000..b8fe154 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCmake.cpp @@ -0,0 +1,455 @@ +// Scintilla source code edit control +/** @file LexCmake.cxx + ** Lexer for Cmake + **/ +// Copyright 2007 by Cristian Adam +// based on the NSIS lexer +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static bool isCmakeNumber(char ch) +{ + return(ch >= '0' && ch <= '9'); +} + +static bool isCmakeChar(char ch) +{ + return(ch == '.' ) || (ch == '_' ) || isCmakeNumber(ch) || (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'); +} + +static bool isCmakeLetter(char ch) +{ + return(ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'); +} + +static bool CmakeNextLineHasElse(Sci_PositionU start, Sci_PositionU end, Accessor &styler) +{ + Sci_Position nNextLine = -1; + for ( Sci_PositionU i = start; i < end; i++ ) { + char cNext = styler.SafeGetCharAt( i ); + if ( cNext == '\n' ) { + nNextLine = i+1; + break; + } + } + + if ( nNextLine == -1 ) // We never foudn the next line... + return false; + + for ( Sci_PositionU firstChar = nNextLine; firstChar < end; firstChar++ ) { + char cNext = styler.SafeGetCharAt( firstChar ); + if ( cNext == ' ' ) + continue; + if ( cNext == '\t' ) + continue; + if ( styler.Match(firstChar, "ELSE") || styler.Match(firstChar, "else")) + return true; + break; + } + + return false; +} + +static int calculateFoldCmake(Sci_PositionU start, Sci_PositionU end, int foldlevel, Accessor &styler, bool bElse) +{ + // If the word is too long, it is not what we are looking for + if ( end - start > 20 ) + return foldlevel; + + int newFoldlevel = foldlevel; + + char s[20]; // The key word we are looking for has atmost 13 characters + for (unsigned int i = 0; i < end - start + 1 && i < 19; i++) { + s[i] = static_cast( styler[ start + i ] ); + s[i + 1] = '\0'; + } + + if ( CompareCaseInsensitive(s, "IF") == 0 || CompareCaseInsensitive(s, "WHILE") == 0 + || CompareCaseInsensitive(s, "MACRO") == 0 || CompareCaseInsensitive(s, "FOREACH") == 0 + || CompareCaseInsensitive(s, "ELSEIF") == 0 ) + newFoldlevel++; + else if ( CompareCaseInsensitive(s, "ENDIF") == 0 || CompareCaseInsensitive(s, "ENDWHILE") == 0 + || CompareCaseInsensitive(s, "ENDMACRO") == 0 || CompareCaseInsensitive(s, "ENDFOREACH") == 0) + newFoldlevel--; + else if ( bElse && CompareCaseInsensitive(s, "ELSEIF") == 0 ) + newFoldlevel++; + else if ( bElse && CompareCaseInsensitive(s, "ELSE") == 0 ) + newFoldlevel++; + + return newFoldlevel; +} + +static int classifyWordCmake(Sci_PositionU start, Sci_PositionU end, WordList *keywordLists[], Accessor &styler ) +{ + char word[100] = {0}; + char lowercaseWord[100] = {0}; + + WordList &Commands = *keywordLists[0]; + WordList &Parameters = *keywordLists[1]; + WordList &UserDefined = *keywordLists[2]; + + for (Sci_PositionU i = 0; i < end - start + 1 && i < 99; i++) { + word[i] = static_cast( styler[ start + i ] ); + lowercaseWord[i] = static_cast(tolower(word[i])); + } + + // Check for special words... + if ( CompareCaseInsensitive(word, "MACRO") == 0 || CompareCaseInsensitive(word, "ENDMACRO") == 0 ) + return SCE_CMAKE_MACRODEF; + + if ( CompareCaseInsensitive(word, "IF") == 0 || CompareCaseInsensitive(word, "ENDIF") == 0 ) + return SCE_CMAKE_IFDEFINEDEF; + + if ( CompareCaseInsensitive(word, "ELSEIF") == 0 || CompareCaseInsensitive(word, "ELSE") == 0 ) + return SCE_CMAKE_IFDEFINEDEF; + + if ( CompareCaseInsensitive(word, "WHILE") == 0 || CompareCaseInsensitive(word, "ENDWHILE") == 0) + return SCE_CMAKE_WHILEDEF; + + if ( CompareCaseInsensitive(word, "FOREACH") == 0 || CompareCaseInsensitive(word, "ENDFOREACH") == 0) + return SCE_CMAKE_FOREACHDEF; + + if ( Commands.InList(lowercaseWord) ) + return SCE_CMAKE_COMMANDS; + + if ( Parameters.InList(word) ) + return SCE_CMAKE_PARAMETERS; + + + if ( UserDefined.InList(word) ) + return SCE_CMAKE_USERDEFINED; + + if ( strlen(word) > 3 ) { + if ( word[1] == '{' && word[strlen(word)-1] == '}' ) + return SCE_CMAKE_VARIABLE; + } + + // To check for numbers + if ( isCmakeNumber( word[0] ) ) { + bool bHasSimpleCmakeNumber = true; + for (unsigned int j = 1; j < end - start + 1 && j < 99; j++) { + if ( !isCmakeNumber( word[j] ) ) { + bHasSimpleCmakeNumber = false; + break; + } + } + + if ( bHasSimpleCmakeNumber ) + return SCE_CMAKE_NUMBER; + } + + return SCE_CMAKE_DEFAULT; +} + +static void ColouriseCmakeDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *keywordLists[], Accessor &styler) +{ + int state = SCE_CMAKE_DEFAULT; + if ( startPos > 0 ) + state = styler.StyleAt(startPos-1); // Use the style from the previous line, usually default, but could be commentbox + + styler.StartAt( startPos ); + styler.GetLine( startPos ); + + Sci_PositionU nLengthDoc = startPos + length; + styler.StartSegment( startPos ); + + char cCurrChar; + bool bVarInString = false; + bool bClassicVarInString = false; + + Sci_PositionU i; + for ( i = startPos; i < nLengthDoc; i++ ) { + cCurrChar = styler.SafeGetCharAt( i ); + char cNextChar = styler.SafeGetCharAt(i+1); + + switch (state) { + case SCE_CMAKE_DEFAULT: + if ( cCurrChar == '#' ) { // we have a comment line + styler.ColourTo(i-1, state ); + state = SCE_CMAKE_COMMENT; + break; + } + if ( cCurrChar == '"' ) { + styler.ColourTo(i-1, state ); + state = SCE_CMAKE_STRINGDQ; + bVarInString = false; + bClassicVarInString = false; + break; + } + if ( cCurrChar == '\'' ) { + styler.ColourTo(i-1, state ); + state = SCE_CMAKE_STRINGRQ; + bVarInString = false; + bClassicVarInString = false; + break; + } + if ( cCurrChar == '`' ) { + styler.ColourTo(i-1, state ); + state = SCE_CMAKE_STRINGLQ; + bVarInString = false; + bClassicVarInString = false; + break; + } + + // CMake Variable + if ( cCurrChar == '$' || isCmakeChar(cCurrChar)) { + styler.ColourTo(i-1,state); + state = SCE_CMAKE_VARIABLE; + + // If it is a number, we must check and set style here first... + if ( isCmakeNumber(cCurrChar) && (cNextChar == '\t' || cNextChar == ' ' || cNextChar == '\r' || cNextChar == '\n' ) ) + styler.ColourTo( i, SCE_CMAKE_NUMBER); + + break; + } + + break; + case SCE_CMAKE_COMMENT: + if ( cCurrChar == '\n' || cCurrChar == '\r' ) { + if ( styler.SafeGetCharAt(i-1) == '\\' ) { + styler.ColourTo(i-2,state); + styler.ColourTo(i-1,SCE_CMAKE_DEFAULT); + } + else { + styler.ColourTo(i-1,state); + state = SCE_CMAKE_DEFAULT; + } + } + break; + case SCE_CMAKE_STRINGDQ: + case SCE_CMAKE_STRINGLQ: + case SCE_CMAKE_STRINGRQ: + + if ( styler.SafeGetCharAt(i-1) == '\\' && styler.SafeGetCharAt(i-2) == '$' ) + break; // Ignore the next character, even if it is a quote of some sort + + if ( cCurrChar == '"' && state == SCE_CMAKE_STRINGDQ ) { + styler.ColourTo(i,state); + state = SCE_CMAKE_DEFAULT; + break; + } + + if ( cCurrChar == '`' && state == SCE_CMAKE_STRINGLQ ) { + styler.ColourTo(i,state); + state = SCE_CMAKE_DEFAULT; + break; + } + + if ( cCurrChar == '\'' && state == SCE_CMAKE_STRINGRQ ) { + styler.ColourTo(i,state); + state = SCE_CMAKE_DEFAULT; + break; + } + + if ( cNextChar == '\r' || cNextChar == '\n' ) { + Sci_Position nCurLine = styler.GetLine(i+1); + Sci_Position nBack = i; + // We need to check if the previous line has a \ in it... + bool bNextLine = false; + + while ( nBack > 0 ) { + if ( styler.GetLine(nBack) != nCurLine ) + break; + + char cTemp = styler.SafeGetCharAt(nBack, 'a'); // Letter 'a' is safe here + + if ( cTemp == '\\' ) { + bNextLine = true; + break; + } + if ( cTemp != '\r' && cTemp != '\n' && cTemp != '\t' && cTemp != ' ' ) + break; + + nBack--; + } + + if ( bNextLine ) { + styler.ColourTo(i+1,state); + } + if ( bNextLine == false ) { + styler.ColourTo(i,state); + state = SCE_CMAKE_DEFAULT; + } + } + break; + + case SCE_CMAKE_VARIABLE: + + // CMake Variable: + if ( cCurrChar == '$' ) + state = SCE_CMAKE_DEFAULT; + else if ( cCurrChar == '\\' && (cNextChar == 'n' || cNextChar == 'r' || cNextChar == 't' ) ) + state = SCE_CMAKE_DEFAULT; + else if ( (isCmakeChar(cCurrChar) && !isCmakeChar( cNextChar) && cNextChar != '}') || cCurrChar == '}' ) { + state = classifyWordCmake( styler.GetStartSegment(), i, keywordLists, styler ); + styler.ColourTo( i, state); + state = SCE_CMAKE_DEFAULT; + } + else if ( !isCmakeChar( cCurrChar ) && cCurrChar != '{' && cCurrChar != '}' ) { + if ( classifyWordCmake( styler.GetStartSegment(), i-1, keywordLists, styler) == SCE_CMAKE_NUMBER ) + styler.ColourTo( i-1, SCE_CMAKE_NUMBER ); + + state = SCE_CMAKE_DEFAULT; + + if ( cCurrChar == '"' ) { + state = SCE_CMAKE_STRINGDQ; + bVarInString = false; + bClassicVarInString = false; + } + else if ( cCurrChar == '`' ) { + state = SCE_CMAKE_STRINGLQ; + bVarInString = false; + bClassicVarInString = false; + } + else if ( cCurrChar == '\'' ) { + state = SCE_CMAKE_STRINGRQ; + bVarInString = false; + bClassicVarInString = false; + } + else if ( cCurrChar == '#' ) { + state = SCE_CMAKE_COMMENT; + } + } + break; + } + + if ( state == SCE_CMAKE_STRINGDQ || state == SCE_CMAKE_STRINGLQ || state == SCE_CMAKE_STRINGRQ ) { + bool bIngoreNextDollarSign = false; + + if ( bVarInString && cCurrChar == '$' ) { + bVarInString = false; + bIngoreNextDollarSign = true; + } + else if ( bVarInString && cCurrChar == '\\' && (cNextChar == 'n' || cNextChar == 'r' || cNextChar == 't' || cNextChar == '"' || cNextChar == '`' || cNextChar == '\'' ) ) { + styler.ColourTo( i+1, SCE_CMAKE_STRINGVAR); + bVarInString = false; + bIngoreNextDollarSign = false; + } + + else if ( bVarInString && !isCmakeChar(cNextChar) ) { + int nWordState = classifyWordCmake( styler.GetStartSegment(), i, keywordLists, styler); + if ( nWordState == SCE_CMAKE_VARIABLE ) + styler.ColourTo( i, SCE_CMAKE_STRINGVAR); + bVarInString = false; + } + // Covers "${TEST}..." + else if ( bClassicVarInString && cNextChar == '}' ) { + styler.ColourTo( i+1, SCE_CMAKE_STRINGVAR); + bClassicVarInString = false; + } + + // Start of var in string + if ( !bIngoreNextDollarSign && cCurrChar == '$' && cNextChar == '{' ) { + styler.ColourTo( i-1, state); + bClassicVarInString = true; + bVarInString = false; + } + else if ( !bIngoreNextDollarSign && cCurrChar == '$' ) { + styler.ColourTo( i-1, state); + bVarInString = true; + bClassicVarInString = false; + } + } + } + + // Colourise remaining document + styler.ColourTo(nLengthDoc-1,state); +} + +static void FoldCmakeDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) +{ + // No folding enabled, no reason to continue... + if ( styler.GetPropertyInt("fold") == 0 ) + return; + + bool foldAtElse = styler.GetPropertyInt("fold.at.else", 0) == 1; + + Sci_Position lineCurrent = styler.GetLine(startPos); + Sci_PositionU safeStartPos = styler.LineStart( lineCurrent ); + + bool bArg1 = true; + Sci_Position nWordStart = -1; + + int levelCurrent = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelCurrent = styler.LevelAt(lineCurrent-1) >> 16; + int levelNext = levelCurrent; + + for (Sci_PositionU i = safeStartPos; i < startPos + length; i++) { + char chCurr = styler.SafeGetCharAt(i); + + if ( bArg1 ) { + if ( nWordStart == -1 && (isCmakeLetter(chCurr)) ) { + nWordStart = i; + } + else if ( isCmakeLetter(chCurr) == false && nWordStart > -1 ) { + int newLevel = calculateFoldCmake( nWordStart, i-1, levelNext, styler, foldAtElse); + + if ( newLevel == levelNext ) { + if ( foldAtElse ) { + if ( CmakeNextLineHasElse(i, startPos + length, styler) ) + levelNext--; + } + } + else + levelNext = newLevel; + bArg1 = false; + } + } + + if ( chCurr == '\n' ) { + if ( bArg1 && foldAtElse) { + if ( CmakeNextLineHasElse(i, startPos + length, styler) ) + levelNext--; + } + + // If we are on a new line... + int levelUse = levelCurrent; + int lev = levelUse | levelNext << 16; + if (levelUse < levelNext ) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) + styler.SetLevel(lineCurrent, lev); + + lineCurrent++; + levelCurrent = levelNext; + bArg1 = true; // New line, lets look at first argument again + nWordStart = -1; + } + } + + int levelUse = levelCurrent; + int lev = levelUse | levelNext << 16; + if (levelUse < levelNext) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) + styler.SetLevel(lineCurrent, lev); +} + +static const char * const cmakeWordLists[] = { + "Commands", + "Parameters", + "UserDefined", + 0, + 0,}; + +LexerModule lmCmake(SCLEX_CMAKE, ColouriseCmakeDoc, "cmake", FoldCmakeDoc, cmakeWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexCoffeeScript.cpp b/third_party/qscintilla/scintilla/lexers/LexCoffeeScript.cpp new file mode 100644 index 0000000..a001623 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCoffeeScript.cpp @@ -0,0 +1,483 @@ +// Scintilla source code edit control +/** @file LexCoffeeScript.cxx + ** Lexer for CoffeeScript. + **/ +// Copyright 1998-2011 by Neil Hodgson +// Based on the Scintilla C++ Lexer +// Written by Eric Promislow in 2011 for the Komodo IDE +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static bool IsSpaceEquiv(int state) { + return (state == SCE_COFFEESCRIPT_DEFAULT + || state == SCE_COFFEESCRIPT_COMMENTLINE + || state == SCE_COFFEESCRIPT_COMMENTBLOCK + || state == SCE_COFFEESCRIPT_VERBOSE_REGEX + || state == SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT + || state == SCE_COFFEESCRIPT_WORD + || state == SCE_COFFEESCRIPT_REGEX); +} + +// Store the current lexer state and brace count prior to starting a new +// `#{}` interpolation level. +// Based on LexRuby.cxx. +static void enterInnerExpression(int *p_inner_string_types, + int *p_inner_expn_brace_counts, + int& inner_string_count, + int state, + int& brace_counts + ) { + p_inner_string_types[inner_string_count] = state; + p_inner_expn_brace_counts[inner_string_count] = brace_counts; + brace_counts = 0; + ++inner_string_count; +} + +// Restore the lexer state and brace count for the previous `#{}` interpolation +// level upon returning to it. +// Note the previous lexer state is the return value and needs to be restored +// manually by the StyleContext. +// Based on LexRuby.cxx. +static int exitInnerExpression(int *p_inner_string_types, + int *p_inner_expn_brace_counts, + int& inner_string_count, + int& brace_counts + ) { + --inner_string_count; + brace_counts = p_inner_expn_brace_counts[inner_string_count]; + return p_inner_string_types[inner_string_count]; +} + +// Preconditions: sc.currentPos points to a character after '+' or '-'. +// The test for pos reaching 0 should be redundant, +// and is in only for safety measures. +// Limitation: this code will give the incorrect answer for code like +// a = b+++/ptn/... +// Putting a space between the '++' post-inc operator and the '+' binary op +// fixes this, and is highly recommended for readability anyway. +static bool FollowsPostfixOperator(StyleContext &sc, Accessor &styler) { + Sci_Position pos = (Sci_Position) sc.currentPos; + while (--pos > 0) { + char ch = styler[pos]; + if (ch == '+' || ch == '-') { + return styler[pos - 1] == ch; + } + } + return false; +} + +static bool followsKeyword(StyleContext &sc, Accessor &styler) { + Sci_Position pos = (Sci_Position) sc.currentPos; + Sci_Position currentLine = styler.GetLine(pos); + Sci_Position lineStartPos = styler.LineStart(currentLine); + while (--pos > lineStartPos) { + char ch = styler.SafeGetCharAt(pos); + if (ch != ' ' && ch != '\t') { + break; + } + } + styler.Flush(); + return styler.StyleAt(pos) == SCE_COFFEESCRIPT_WORD; +} + +static void ColouriseCoffeeScriptDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords4 = *keywordlists[3]; + + CharacterSet setOKBeforeRE(CharacterSet::setNone, "([{=,:;!%^&*|?~+-"); + CharacterSet setCouldBePostOp(CharacterSet::setNone, "+-"); + + CharacterSet setWordStart(CharacterSet::setAlpha, "_$@", 0x80, true); + CharacterSet setWord(CharacterSet::setAlphaNum, "._$", 0x80, true); + + int chPrevNonWhite = ' '; + int visibleChars = 0; + + // String/Regex interpolation variables, based on LexRuby.cxx. + // In most cases a value of 2 should be ample for the code the user is + // likely to enter. For example, + // "Filling the #{container} with #{liquid}..." + // from the CoffeeScript homepage nests to a level of 2 + // If the user actually hits a 6th occurrence of '#{' in a double-quoted + // string (including regexes), it will stay as a string. The problem with + // this is that quotes might flip, a 7th '#{' will look like a comment, + // and code-folding might be wrong. +#define INNER_STRINGS_MAX_COUNT 5 + // These vars track our instances of "...#{,,,'..#{,,,}...',,,}..." + int inner_string_types[INNER_STRINGS_MAX_COUNT]; + // Track # braces when we push a new #{ thing + int inner_expn_brace_counts[INNER_STRINGS_MAX_COUNT]; + int inner_string_count = 0; + int brace_counts = 0; // Number of #{ ... } things within an expression + for (int i = 0; i < INNER_STRINGS_MAX_COUNT; i++) { + inner_string_types[i] = 0; + inner_expn_brace_counts[i] = 0; + } + + // look back to set chPrevNonWhite properly for better regex colouring + Sci_Position endPos = startPos + length; + if (startPos > 0 && IsSpaceEquiv(initStyle)) { + Sci_PositionU back = startPos; + styler.Flush(); + while (back > 0 && IsSpaceEquiv(styler.StyleAt(--back))) + ; + if (styler.StyleAt(back) == SCE_COFFEESCRIPT_OPERATOR) { + chPrevNonWhite = styler.SafeGetCharAt(back); + } + if (startPos != back) { + initStyle = styler.StyleAt(back); + if (IsSpaceEquiv(initStyle)) { + initStyle = SCE_COFFEESCRIPT_DEFAULT; + } + } + startPos = back; + } + + StyleContext sc(startPos, endPos - startPos, initStyle, styler); + + for (; sc.More();) { + + if (sc.atLineStart) { + // Reset states to beginning of colourise so no surprises + // if different sets of lines lexed. + visibleChars = 0; + } + + // Determine if the current state should terminate. + switch (sc.state) { + case SCE_COFFEESCRIPT_OPERATOR: + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + break; + case SCE_COFFEESCRIPT_NUMBER: + // We accept almost anything because of hex. and number suffixes + if (!setWord.Contains(sc.ch) || sc.Match('.', '.')) { + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + } + break; + case SCE_COFFEESCRIPT_IDENTIFIER: + if (!setWord.Contains(sc.ch) || (sc.ch == '.') || (sc.ch == '$')) { + char s[1000]; + sc.GetCurrent(s, sizeof(s)); + if (keywords.InList(s)) { + sc.ChangeState(SCE_COFFEESCRIPT_WORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_COFFEESCRIPT_WORD2); + } else if (keywords4.InList(s)) { + sc.ChangeState(SCE_COFFEESCRIPT_GLOBALCLASS); + } else if (sc.LengthCurrent() > 0 && s[0] == '@') { + sc.ChangeState(SCE_COFFEESCRIPT_INSTANCEPROPERTY); + } + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + } + break; + case SCE_COFFEESCRIPT_WORD: + case SCE_COFFEESCRIPT_WORD2: + case SCE_COFFEESCRIPT_GLOBALCLASS: + case SCE_COFFEESCRIPT_INSTANCEPROPERTY: + if (!setWord.Contains(sc.ch)) { + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + } + break; + case SCE_COFFEESCRIPT_COMMENTLINE: + if (sc.atLineStart) { + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + } + break; + case SCE_COFFEESCRIPT_STRING: + if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_COFFEESCRIPT_DEFAULT); + } else if (sc.ch == '#' && sc.chNext == '{' && inner_string_count < INNER_STRINGS_MAX_COUNT) { + // process interpolated code #{ ... } + enterInnerExpression(inner_string_types, + inner_expn_brace_counts, + inner_string_count, + sc.state, + brace_counts); + sc.SetState(SCE_COFFEESCRIPT_OPERATOR); + sc.ForwardSetState(SCE_COFFEESCRIPT_DEFAULT); + } + break; + case SCE_COFFEESCRIPT_CHARACTER: + if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\'') { + sc.ForwardSetState(SCE_COFFEESCRIPT_DEFAULT); + } + break; + case SCE_COFFEESCRIPT_REGEX: + if (sc.atLineStart) { + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + } else if (sc.ch == '/') { + sc.Forward(); + while ((sc.ch < 0x80) && islower(sc.ch)) + sc.Forward(); // gobble regex flags + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + } else if (sc.ch == '\\') { + // Gobble up the quoted character + if (sc.chNext == '\\' || sc.chNext == '/') { + sc.Forward(); + } + } + break; + case SCE_COFFEESCRIPT_STRINGEOL: + if (sc.atLineStart) { + sc.SetState(SCE_COFFEESCRIPT_DEFAULT); + } + break; + case SCE_COFFEESCRIPT_COMMENTBLOCK: + if (sc.Match("###")) { + sc.Forward(); + sc.Forward(); + sc.ForwardSetState(SCE_COFFEESCRIPT_DEFAULT); + } else if (sc.ch == '\\') { + sc.Forward(); + } + break; + case SCE_COFFEESCRIPT_VERBOSE_REGEX: + if (sc.Match("///")) { + sc.Forward(); + sc.Forward(); + sc.ForwardSetState(SCE_COFFEESCRIPT_DEFAULT); + } else if (sc.Match('#')) { + sc.SetState(SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT); + } else if (sc.ch == '\\') { + sc.Forward(); + } + break; + case SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT: + if (sc.atLineStart) { + sc.SetState(SCE_COFFEESCRIPT_VERBOSE_REGEX); + } + break; + } + + // Determine if a new state should be entered. + if (sc.state == SCE_COFFEESCRIPT_DEFAULT) { + if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_COFFEESCRIPT_NUMBER); + } else if (setWordStart.Contains(sc.ch)) { + sc.SetState(SCE_COFFEESCRIPT_IDENTIFIER); + } else if (sc.Match("///")) { + sc.SetState(SCE_COFFEESCRIPT_VERBOSE_REGEX); + sc.Forward(); + sc.Forward(); + } else if (sc.ch == '/' + && (setOKBeforeRE.Contains(chPrevNonWhite) + || followsKeyword(sc, styler)) + && (!setCouldBePostOp.Contains(chPrevNonWhite) + || !FollowsPostfixOperator(sc, styler))) { + sc.SetState(SCE_COFFEESCRIPT_REGEX); // JavaScript's RegEx + } else if (sc.ch == '\"') { + sc.SetState(SCE_COFFEESCRIPT_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_COFFEESCRIPT_CHARACTER); + } else if (sc.ch == '#') { + if (sc.Match("###")) { + sc.SetState(SCE_COFFEESCRIPT_COMMENTBLOCK); + sc.Forward(); + sc.Forward(); + } else { + sc.SetState(SCE_COFFEESCRIPT_COMMENTLINE); + } + } else if (isoperator(static_cast(sc.ch))) { + sc.SetState(SCE_COFFEESCRIPT_OPERATOR); + // Handle '..' and '...' operators correctly. + if (sc.ch == '.') { + for (int i = 0; i < 2 && sc.chNext == '.'; i++, sc.Forward()) ; + } else if (sc.ch == '{') { + ++brace_counts; + } else if (sc.ch == '}' && --brace_counts <= 0 && inner_string_count > 0) { + // Return to previous state before #{ ... } + sc.ForwardSetState(exitInnerExpression(inner_string_types, + inner_expn_brace_counts, + inner_string_count, + brace_counts)); + continue; // skip sc.Forward() at loop end + } + } + } + + if (!IsASpace(sc.ch) && !IsSpaceEquiv(sc.state)) { + chPrevNonWhite = sc.ch; + visibleChars++; + } + sc.Forward(); + } + sc.Complete(); +} + +static bool IsCommentLine(Sci_Position line, Accessor &styler) { + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + for (Sci_Position i = pos; i < eol_pos; i++) { + char ch = styler[i]; + if (ch == '#') + return true; + else if (ch != ' ' && ch != '\t') + return false; + } + return false; +} + +static void FoldCoffeeScriptDoc(Sci_PositionU startPos, Sci_Position length, int, + WordList *[], Accessor &styler) { + // A simplified version of FoldPyDoc + const Sci_Position maxPos = startPos + length; + const Sci_Position maxLines = styler.GetLine(maxPos - 1); // Requested last line + const Sci_Position docLines = styler.GetLine(styler.Length() - 1); // Available last line + + // property fold.coffeescript.comment + const bool foldComment = styler.GetPropertyInt("fold.coffeescript.comment") != 0; + + const bool foldCompact = styler.GetPropertyInt("fold.compact") != 0; + + // Backtrack to previous non-blank line so we can determine indent level + // for any white space lines + // and so we can fix any preceding fold level (which is why we go back + // at least one line in all cases) + int spaceFlags = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, NULL); + while (lineCurrent > 0) { + lineCurrent--; + indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, NULL); + if (!(indentCurrent & SC_FOLDLEVELWHITEFLAG) + && !IsCommentLine(lineCurrent, styler)) + break; + } + int indentCurrentLevel = indentCurrent & SC_FOLDLEVELNUMBERMASK; + + // Set up initial loop state + int prevComment = 0; + if (lineCurrent >= 1) + prevComment = foldComment && IsCommentLine(lineCurrent - 1, styler); + + // Process all characters to end of requested range + // or comment that hangs over the end of the range. Cap processing in all cases + // to end of document (in case of comment at end). + while ((lineCurrent <= docLines) && ((lineCurrent <= maxLines) || prevComment)) { + + // Gather info + int lev = indentCurrent; + Sci_Position lineNext = lineCurrent + 1; + int indentNext = indentCurrent; + if (lineNext <= docLines) { + // Information about next line is only available if not at end of document + indentNext = styler.IndentAmount(lineNext, &spaceFlags, NULL); + } + const int comment = foldComment && IsCommentLine(lineCurrent, styler); + const int comment_start = (comment && !prevComment && (lineNext <= docLines) && + IsCommentLine(lineNext, styler) && (lev > SC_FOLDLEVELBASE)); + const int comment_continue = (comment && prevComment); + if (!comment) + indentCurrentLevel = indentCurrent & SC_FOLDLEVELNUMBERMASK; + if (indentNext & SC_FOLDLEVELWHITEFLAG) + indentNext = SC_FOLDLEVELWHITEFLAG | indentCurrentLevel; + + if (comment_start) { + // Place fold point at start of a block of comments + lev |= SC_FOLDLEVELHEADERFLAG; + } else if (comment_continue) { + // Add level to rest of lines in the block + lev = lev + 1; + } + + // Skip past any blank lines for next indent level info; we skip also + // comments (all comments, not just those starting in column 0) + // which effectively folds them into surrounding code rather + // than screwing up folding. + + while ((lineNext < docLines) && + ((indentNext & SC_FOLDLEVELWHITEFLAG) || + (lineNext <= docLines && IsCommentLine(lineNext, styler)))) { + + lineNext++; + indentNext = styler.IndentAmount(lineNext, &spaceFlags, NULL); + } + + const int levelAfterComments = indentNext & SC_FOLDLEVELNUMBERMASK; + const int levelBeforeComments = std::max(indentCurrentLevel,levelAfterComments); + + // Now set all the indent levels on the lines we skipped + // Do this from end to start. Once we encounter one line + // which is indented more than the line after the end of + // the comment-block, use the level of the block before + + Sci_Position skipLine = lineNext; + int skipLevel = levelAfterComments; + + while (--skipLine > lineCurrent) { + int skipLineIndent = styler.IndentAmount(skipLine, &spaceFlags, NULL); + + if (foldCompact) { + if ((skipLineIndent & SC_FOLDLEVELNUMBERMASK) > levelAfterComments) + skipLevel = levelBeforeComments; + + int whiteFlag = skipLineIndent & SC_FOLDLEVELWHITEFLAG; + + styler.SetLevel(skipLine, skipLevel | whiteFlag); + } else { + if ((skipLineIndent & SC_FOLDLEVELNUMBERMASK) > levelAfterComments && + !(skipLineIndent & SC_FOLDLEVELWHITEFLAG) && + !IsCommentLine(skipLine, styler)) + skipLevel = levelBeforeComments; + + styler.SetLevel(skipLine, skipLevel); + } + } + + // Set fold header on non-comment line + if (!comment && !(indentCurrent & SC_FOLDLEVELWHITEFLAG)) { + if ((indentCurrent & SC_FOLDLEVELNUMBERMASK) < (indentNext & SC_FOLDLEVELNUMBERMASK)) + lev |= SC_FOLDLEVELHEADERFLAG; + } + + // Keep track of block comment state of previous line + prevComment = comment_start || comment_continue; + + // Set fold level for this line and move to next line + styler.SetLevel(lineCurrent, lev); + indentCurrent = indentNext; + lineCurrent = lineNext; + } +} + +static const char *const csWordLists[] = { + "Keywords", + "Secondary keywords", + "Unused", + "Global classes", + 0, +}; + +LexerModule lmCoffeeScript(SCLEX_COFFEESCRIPT, ColouriseCoffeeScriptDoc, "coffeescript", FoldCoffeeScriptDoc, csWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexConf.cpp b/third_party/qscintilla/scintilla/lexers/LexConf.cpp new file mode 100644 index 0000000..73fbe46 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexConf.cpp @@ -0,0 +1,190 @@ +// Scintilla source code edit control +/** @file LexConf.cxx + ** Lexer for Apache Configuration Files. + ** + ** First working version contributed by Ahmad Zawawi on October 28, 2000. + ** i created this lexer because i needed something pretty when dealing + ** when Apache Configuration files... + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static void ColouriseConfDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *keywordLists[], Accessor &styler) +{ + int state = SCE_CONF_DEFAULT; + char chNext = styler[startPos]; + Sci_Position lengthDoc = startPos + length; + // create a buffer large enough to take the largest chunk... + char *buffer = new char[length+1]; + Sci_Position bufferCount = 0; + + // this assumes that we have 2 keyword list in conf.properties + WordList &directives = *keywordLists[0]; + WordList ¶ms = *keywordLists[1]; + + // go through all provided text segment + // using the hand-written state machine shown below + styler.StartAt(startPos); + styler.StartSegment(startPos); + for (Sci_Position i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + if (styler.IsLeadByte(ch)) { + chNext = styler.SafeGetCharAt(i + 2); + i++; + continue; + } + switch(state) { + case SCE_CONF_DEFAULT: + if( ch == '\n' || ch == '\r' || ch == '\t' || ch == ' ') { + // whitespace is simply ignored here... + styler.ColourTo(i,SCE_CONF_DEFAULT); + break; + } else if( ch == '#' ) { + // signals the start of a comment... + state = SCE_CONF_COMMENT; + styler.ColourTo(i,SCE_CONF_COMMENT); + } else if( ch == '.' /*|| ch == '/'*/) { + // signals the start of a file... + state = SCE_CONF_EXTENSION; + styler.ColourTo(i,SCE_CONF_EXTENSION); + } else if( ch == '"') { + state = SCE_CONF_STRING; + styler.ColourTo(i,SCE_CONF_STRING); + } else if( IsASCII(ch) && ispunct(ch) ) { + // signals an operator... + // no state jump necessary for this + // simple case... + styler.ColourTo(i,SCE_CONF_OPERATOR); + } else if( IsASCII(ch) && isalpha(ch) ) { + // signals the start of an identifier + bufferCount = 0; + buffer[bufferCount++] = static_cast(tolower(ch)); + state = SCE_CONF_IDENTIFIER; + } else if( IsASCII(ch) && isdigit(ch) ) { + // signals the start of a number + bufferCount = 0; + buffer[bufferCount++] = ch; + //styler.ColourTo(i,SCE_CONF_NUMBER); + state = SCE_CONF_NUMBER; + } else { + // style it the default style.. + styler.ColourTo(i,SCE_CONF_DEFAULT); + } + break; + + case SCE_CONF_COMMENT: + // if we find a newline here, + // we simply go to default state + // else continue to work on it... + if( ch == '\n' || ch == '\r' ) { + state = SCE_CONF_DEFAULT; + } else { + styler.ColourTo(i,SCE_CONF_COMMENT); + } + break; + + case SCE_CONF_EXTENSION: + // if we find a non-alphanumeric char, + // we simply go to default state + // else we're still dealing with an extension... + if( (IsASCII(ch) && isalnum(ch)) || (ch == '_') || + (ch == '-') || (ch == '$') || + (ch == '/') || (ch == '.') || (ch == '*') ) + { + styler.ColourTo(i,SCE_CONF_EXTENSION); + } else { + state = SCE_CONF_DEFAULT; + chNext = styler[i--]; + } + break; + + case SCE_CONF_STRING: + // if we find the end of a string char, we simply go to default state + // else we're still dealing with an string... + if( (ch == '"' && styler.SafeGetCharAt(i-1)!='\\') || (ch == '\n') || (ch == '\r') ) { + state = SCE_CONF_DEFAULT; + } + styler.ColourTo(i,SCE_CONF_STRING); + break; + + case SCE_CONF_IDENTIFIER: + // stay in CONF_IDENTIFIER state until we find a non-alphanumeric + if( (IsASCII(ch) && isalnum(ch)) || (ch == '_') || (ch == '-') || (ch == '/') || (ch == '$') || (ch == '.') || (ch == '*')) { + buffer[bufferCount++] = static_cast(tolower(ch)); + } else { + state = SCE_CONF_DEFAULT; + buffer[bufferCount] = '\0'; + + // check if the buffer contains a keyword, and highlight it if it is a keyword... + if(directives.InList(buffer)) { + styler.ColourTo(i-1,SCE_CONF_DIRECTIVE ); + } else if(params.InList(buffer)) { + styler.ColourTo(i-1,SCE_CONF_PARAMETER ); + } else if(strchr(buffer,'/') || strchr(buffer,'.')) { + styler.ColourTo(i-1,SCE_CONF_EXTENSION); + } else { + styler.ColourTo(i-1,SCE_CONF_DEFAULT); + } + + // push back the faulty character + chNext = styler[i--]; + + } + break; + + case SCE_CONF_NUMBER: + // stay in CONF_NUMBER state until we find a non-numeric + if( (IsASCII(ch) && isdigit(ch)) || ch == '.') { + buffer[bufferCount++] = ch; + } else { + state = SCE_CONF_DEFAULT; + buffer[bufferCount] = '\0'; + + // Colourize here... + if( strchr(buffer,'.') ) { + // it is an IP address... + styler.ColourTo(i-1,SCE_CONF_IP); + } else { + // normal number + styler.ColourTo(i-1,SCE_CONF_NUMBER); + } + + // push back a character + chNext = styler[i--]; + } + break; + + } + } + delete []buffer; +} + +static const char * const confWordListDesc[] = { + "Directives", + "Parameters", + 0 +}; + +LexerModule lmConf(SCLEX_CONF, ColouriseConfDoc, "conf", 0, confWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexCrontab.cpp b/third_party/qscintilla/scintilla/lexers/LexCrontab.cpp new file mode 100644 index 0000000..7f6d5fb --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCrontab.cpp @@ -0,0 +1,224 @@ +// Scintilla source code edit control +/** @file LexCrontab.cxx + ** Lexer to use with extended crontab files used by a powerful + ** Windows scheduler/event monitor/automation manager nnCron. + ** (http://nemtsev.eserv.ru/) + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static void ColouriseNncrontabDoc(Sci_PositionU startPos, Sci_Position length, int, WordList +*keywordLists[], Accessor &styler) +{ + int state = SCE_NNCRONTAB_DEFAULT; + char chNext = styler[startPos]; + Sci_Position lengthDoc = startPos + length; + // create a buffer large enough to take the largest chunk... + char *buffer = new char[length+1]; + Sci_Position bufferCount = 0; + // used when highliting environment variables inside quoted string: + bool insideString = false; + + // this assumes that we have 3 keyword list in conf.properties + WordList §ion = *keywordLists[0]; + WordList &keyword = *keywordLists[1]; + WordList &modifier = *keywordLists[2]; + + // go through all provided text segment + // using the hand-written state machine shown below + styler.StartAt(startPos); + styler.StartSegment(startPos); + for (Sci_Position i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + if (styler.IsLeadByte(ch)) { + chNext = styler.SafeGetCharAt(i + 2); + i++; + continue; + } + switch(state) { + case SCE_NNCRONTAB_DEFAULT: + if( ch == '\n' || ch == '\r' || ch == '\t' || ch == ' ') { + // whitespace is simply ignored here... + styler.ColourTo(i,SCE_NNCRONTAB_DEFAULT); + break; + } else if( ch == '#' && styler.SafeGetCharAt(i+1) == '(') { + // signals the start of a task... + state = SCE_NNCRONTAB_TASK; + styler.ColourTo(i,SCE_NNCRONTAB_TASK); + } + else if( ch == '\\' && (styler.SafeGetCharAt(i+1) == ' ' || + styler.SafeGetCharAt(i+1) == '\t')) { + // signals the start of an extended comment... + state = SCE_NNCRONTAB_COMMENT; + styler.ColourTo(i,SCE_NNCRONTAB_COMMENT); + } else if( ch == '#' ) { + // signals the start of a plain comment... + state = SCE_NNCRONTAB_COMMENT; + styler.ColourTo(i,SCE_NNCRONTAB_COMMENT); + } else if( ch == ')' && styler.SafeGetCharAt(i+1) == '#') { + // signals the end of a task... + state = SCE_NNCRONTAB_TASK; + styler.ColourTo(i,SCE_NNCRONTAB_TASK); + } else if( ch == '"') { + state = SCE_NNCRONTAB_STRING; + styler.ColourTo(i,SCE_NNCRONTAB_STRING); + } else if( ch == '%') { + // signals environment variables + state = SCE_NNCRONTAB_ENVIRONMENT; + styler.ColourTo(i,SCE_NNCRONTAB_ENVIRONMENT); + } else if( ch == '<' && styler.SafeGetCharAt(i+1) == '%') { + // signals environment variables + state = SCE_NNCRONTAB_ENVIRONMENT; + styler.ColourTo(i,SCE_NNCRONTAB_ENVIRONMENT); + } else if( ch == '*' ) { + // signals an asterisk + // no state jump necessary for this simple case... + styler.ColourTo(i,SCE_NNCRONTAB_ASTERISK); + } else if( (IsASCII(ch) && isalpha(ch)) || ch == '<' ) { + // signals the start of an identifier + bufferCount = 0; + buffer[bufferCount++] = ch; + state = SCE_NNCRONTAB_IDENTIFIER; + } else if( IsASCII(ch) && isdigit(ch) ) { + // signals the start of a number + bufferCount = 0; + buffer[bufferCount++] = ch; + state = SCE_NNCRONTAB_NUMBER; + } else { + // style it the default style.. + styler.ColourTo(i,SCE_NNCRONTAB_DEFAULT); + } + break; + + case SCE_NNCRONTAB_COMMENT: + // if we find a newline here, + // we simply go to default state + // else continue to work on it... + if( ch == '\n' || ch == '\r' ) { + state = SCE_NNCRONTAB_DEFAULT; + } else { + styler.ColourTo(i,SCE_NNCRONTAB_COMMENT); + } + break; + + case SCE_NNCRONTAB_TASK: + // if we find a newline here, + // we simply go to default state + // else continue to work on it... + if( ch == '\n' || ch == '\r' ) { + state = SCE_NNCRONTAB_DEFAULT; + } else { + styler.ColourTo(i,SCE_NNCRONTAB_TASK); + } + break; + + case SCE_NNCRONTAB_STRING: + if( ch == '%' ) { + state = SCE_NNCRONTAB_ENVIRONMENT; + insideString = true; + styler.ColourTo(i-1,SCE_NNCRONTAB_STRING); + break; + } + // if we find the end of a string char, we simply go to default state + // else we're still dealing with an string... + if( (ch == '"' && styler.SafeGetCharAt(i-1)!='\\') || + (ch == '\n') || (ch == '\r') ) { + state = SCE_NNCRONTAB_DEFAULT; + } + styler.ColourTo(i,SCE_NNCRONTAB_STRING); + break; + + case SCE_NNCRONTAB_ENVIRONMENT: + // if we find the end of a string char, we simply go to default state + // else we're still dealing with an string... + if( ch == '%' && insideString ) { + state = SCE_NNCRONTAB_STRING; + insideString = false; + break; + } + if( (ch == '%' && styler.SafeGetCharAt(i-1)!='\\') + || (ch == '\n') || (ch == '\r') || (ch == '>') ) { + state = SCE_NNCRONTAB_DEFAULT; + styler.ColourTo(i,SCE_NNCRONTAB_ENVIRONMENT); + break; + } + styler.ColourTo(i+1,SCE_NNCRONTAB_ENVIRONMENT); + break; + + case SCE_NNCRONTAB_IDENTIFIER: + // stay in CONF_IDENTIFIER state until we find a non-alphanumeric + if( (IsASCII(ch) && isalnum(ch)) || (ch == '_') || (ch == '-') || (ch == '/') || + (ch == '$') || (ch == '.') || (ch == '<') || (ch == '>') || + (ch == '@') ) { + buffer[bufferCount++] = ch; + } else { + state = SCE_NNCRONTAB_DEFAULT; + buffer[bufferCount] = '\0'; + + // check if the buffer contains a keyword, + // and highlight it if it is a keyword... + if(section.InList(buffer)) { + styler.ColourTo(i,SCE_NNCRONTAB_SECTION ); + } else if(keyword.InList(buffer)) { + styler.ColourTo(i-1,SCE_NNCRONTAB_KEYWORD ); + } // else if(strchr(buffer,'/') || strchr(buffer,'.')) { + // styler.ColourTo(i-1,SCE_NNCRONTAB_EXTENSION); + // } + else if(modifier.InList(buffer)) { + styler.ColourTo(i-1,SCE_NNCRONTAB_MODIFIER ); + } else { + styler.ColourTo(i-1,SCE_NNCRONTAB_DEFAULT); + } + // push back the faulty character + chNext = styler[i--]; + } + break; + + case SCE_NNCRONTAB_NUMBER: + // stay in CONF_NUMBER state until we find a non-numeric + if( IsASCII(ch) && isdigit(ch) /* || ch == '.' */ ) { + buffer[bufferCount++] = ch; + } else { + state = SCE_NNCRONTAB_DEFAULT; + buffer[bufferCount] = '\0'; + // Colourize here... (normal number) + styler.ColourTo(i-1,SCE_NNCRONTAB_NUMBER); + // push back a character + chNext = styler[i--]; + } + break; + } + } + delete []buffer; +} + +static const char * const cronWordListDesc[] = { + "Section keywords and Forth words", + "nnCrontab keywords", + "Modifiers", + 0 +}; + +LexerModule lmNncrontab(SCLEX_NNCRONTAB, ColouriseNncrontabDoc, "nncrontab", 0, cronWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexCsound.cpp b/third_party/qscintilla/scintilla/lexers/LexCsound.cpp new file mode 100644 index 0000000..2460380 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexCsound.cpp @@ -0,0 +1,212 @@ +// Scintilla source code edit control +/** @file LexCsound.cxx + ** Lexer for Csound (Orchestra & Score) + ** Written by Georg Ritter - + **/ +// Copyright 1998-2003 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' || + ch == '_' || ch == '?'); +} + +static inline bool IsAWordStart(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.' || + ch == '%' || ch == '@' || ch == '$' || ch == '?'); +} + +static inline bool IsCsoundOperator(char ch) { + if (IsASCII(ch) && isalnum(ch)) + return false; + // '.' left out as it is used to make up numbers + if (ch == '*' || ch == '/' || ch == '-' || ch == '+' || + ch == '(' || ch == ')' || ch == '=' || ch == '^' || + ch == '[' || ch == ']' || ch == '<' || ch == '&' || + ch == '>' || ch == ',' || ch == '|' || ch == '~' || + ch == '%' || ch == ':') + return true; + return false; +} + +static void ColouriseCsoundDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + + WordList &opcode = *keywordlists[0]; + WordList &headerStmt = *keywordlists[1]; + WordList &otherKeyword = *keywordlists[2]; + + // Do not leak onto next line + if (initStyle == SCE_CSOUND_STRINGEOL) + initStyle = SCE_CSOUND_DEFAULT; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) + { + // Handle line continuation generically. + if (sc.ch == '\\') { + if (sc.chNext == '\n' || sc.chNext == '\r') { + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } + continue; + } + } + + // Determine if the current state should terminate. + if (sc.state == SCE_CSOUND_OPERATOR) { + if (!IsCsoundOperator(static_cast(sc.ch))) { + sc.SetState(SCE_CSOUND_DEFAULT); + } + }else if (sc.state == SCE_CSOUND_NUMBER) { + if (!IsAWordChar(sc.ch)) { + sc.SetState(SCE_CSOUND_DEFAULT); + } + } else if (sc.state == SCE_CSOUND_IDENTIFIER) { + if (!IsAWordChar(sc.ch) ) { + char s[100]; + sc.GetCurrent(s, sizeof(s)); + + if (opcode.InList(s)) { + sc.ChangeState(SCE_CSOUND_OPCODE); + } else if (headerStmt.InList(s)) { + sc.ChangeState(SCE_CSOUND_HEADERSTMT); + } else if (otherKeyword.InList(s)) { + sc.ChangeState(SCE_CSOUND_USERKEYWORD); + } else if (s[0] == 'p') { + sc.ChangeState(SCE_CSOUND_PARAM); + } else if (s[0] == 'a') { + sc.ChangeState(SCE_CSOUND_ARATE_VAR); + } else if (s[0] == 'k') { + sc.ChangeState(SCE_CSOUND_KRATE_VAR); + } else if (s[0] == 'i') { // covers both i-rate variables and i-statements + sc.ChangeState(SCE_CSOUND_IRATE_VAR); + } else if (s[0] == 'g') { + sc.ChangeState(SCE_CSOUND_GLOBAL_VAR); + } + sc.SetState(SCE_CSOUND_DEFAULT); + } + } + else if (sc.state == SCE_CSOUND_COMMENT ) { + if (sc.atLineEnd) { + sc.SetState(SCE_CSOUND_DEFAULT); + } + } + else if ((sc.state == SCE_CSOUND_ARATE_VAR) || + (sc.state == SCE_CSOUND_KRATE_VAR) || + (sc.state == SCE_CSOUND_IRATE_VAR)) { + if (!IsAWordChar(sc.ch)) { + sc.SetState(SCE_CSOUND_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_CSOUND_DEFAULT) { + if (sc.ch == ';'){ + sc.SetState(SCE_CSOUND_COMMENT); + } else if (isdigit(sc.ch) || (sc.ch == '.' && isdigit(sc.chNext))) { + sc.SetState(SCE_CSOUND_NUMBER); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_CSOUND_IDENTIFIER); + } else if (IsCsoundOperator(static_cast(sc.ch))) { + sc.SetState(SCE_CSOUND_OPERATOR); + } else if (sc.ch == 'p') { + sc.SetState(SCE_CSOUND_PARAM); + } else if (sc.ch == 'a') { + sc.SetState(SCE_CSOUND_ARATE_VAR); + } else if (sc.ch == 'k') { + sc.SetState(SCE_CSOUND_KRATE_VAR); + } else if (sc.ch == 'i') { // covers both i-rate variables and i-statements + sc.SetState(SCE_CSOUND_IRATE_VAR); + } else if (sc.ch == 'g') { + sc.SetState(SCE_CSOUND_GLOBAL_VAR); + } + } + } + sc.Complete(); +} + +static void FoldCsoundInstruments(Sci_PositionU startPos, Sci_Position length, int /* initStyle */, WordList *[], + Accessor &styler) { + Sci_PositionU lengthDoc = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int stylePrev = 0; + int styleNext = styler.StyleAt(startPos); + for (Sci_PositionU i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if ((stylePrev != SCE_CSOUND_OPCODE) && (style == SCE_CSOUND_OPCODE)) { + char s[20]; + unsigned int j = 0; + while ((j < (sizeof(s) - 1)) && (iswordchar(styler[i + j]))) { + s[j] = styler[i + j]; + j++; + } + s[j] = '\0'; + + if (strcmp(s, "instr") == 0) + levelCurrent++; + if (strcmp(s, "endin") == 0) + levelCurrent--; + } + + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) + visibleChars++; + stylePrev = style; + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + + +static const char * const csoundWordListDesc[] = { + "Opcodes", + "Header Statements", + "User keywords", + 0 +}; + +LexerModule lmCsound(SCLEX_CSOUND, ColouriseCsoundDoc, "csound", FoldCsoundInstruments, csoundWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexD.cpp b/third_party/qscintilla/scintilla/lexers/LexD.cpp new file mode 100644 index 0000000..acbf462 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexD.cpp @@ -0,0 +1,567 @@ +/** @file LexD.cxx + ** Lexer for D. + ** + ** Copyright (c) 2006 by Waldemar Augustyn + ** Converted to lexer object and added further folding features/properties by "Udo Lechner" + **/ +// Copyright 1998-2005 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +/* Nested comments require keeping the value of the nesting level for every + position in the document. But since scintilla always styles line by line, + we only need to store one value per line. The non-negative number indicates + nesting level at the end of the line. +*/ + +// Underscore, letter, digit and universal alphas from C99 Appendix D. + +static bool IsWordStart(int ch) { + return (IsASCII(ch) && (isalpha(ch) || ch == '_')) || !IsASCII(ch); +} + +static bool IsWord(int ch) { + return (IsASCII(ch) && (isalnum(ch) || ch == '_')) || !IsASCII(ch); +} + +static bool IsDoxygen(int ch) { + if (IsASCII(ch) && islower(ch)) + return true; + if (ch == '$' || ch == '@' || ch == '\\' || + ch == '&' || ch == '#' || ch == '<' || ch == '>' || + ch == '{' || ch == '}' || ch == '[' || ch == ']') + return true; + return false; +} + +static bool IsStringSuffix(int ch) { + return ch == 'c' || ch == 'w' || ch == 'd'; +} + +static bool IsStreamCommentStyle(int style) { + return style == SCE_D_COMMENT || + style == SCE_D_COMMENTDOC || + style == SCE_D_COMMENTDOCKEYWORD || + style == SCE_D_COMMENTDOCKEYWORDERROR; +} + +// An individual named option for use in an OptionSet + +// Options used for LexerD +struct OptionsD { + bool fold; + bool foldSyntaxBased; + bool foldComment; + bool foldCommentMultiline; + bool foldCommentExplicit; + std::string foldExplicitStart; + std::string foldExplicitEnd; + bool foldExplicitAnywhere; + bool foldCompact; + int foldAtElseInt; + bool foldAtElse; + OptionsD() { + fold = false; + foldSyntaxBased = true; + foldComment = false; + foldCommentMultiline = true; + foldCommentExplicit = true; + foldExplicitStart = ""; + foldExplicitEnd = ""; + foldExplicitAnywhere = false; + foldCompact = true; + foldAtElseInt = -1; + foldAtElse = false; + } +}; + +static const char * const dWordLists[] = { + "Primary keywords and identifiers", + "Secondary keywords and identifiers", + "Documentation comment keywords", + "Type definitions and aliases", + "Keywords 5", + "Keywords 6", + "Keywords 7", + 0, + }; + +struct OptionSetD : public OptionSet { + OptionSetD() { + DefineProperty("fold", &OptionsD::fold); + + DefineProperty("fold.d.syntax.based", &OptionsD::foldSyntaxBased, + "Set this property to 0 to disable syntax based folding."); + + DefineProperty("fold.comment", &OptionsD::foldComment); + + DefineProperty("fold.d.comment.multiline", &OptionsD::foldCommentMultiline, + "Set this property to 0 to disable folding multi-line comments when fold.comment=1."); + + DefineProperty("fold.d.comment.explicit", &OptionsD::foldCommentExplicit, + "Set this property to 0 to disable folding explicit fold points when fold.comment=1."); + + DefineProperty("fold.d.explicit.start", &OptionsD::foldExplicitStart, + "The string to use for explicit fold start points, replacing the standard //{."); + + DefineProperty("fold.d.explicit.end", &OptionsD::foldExplicitEnd, + "The string to use for explicit fold end points, replacing the standard //}."); + + DefineProperty("fold.d.explicit.anywhere", &OptionsD::foldExplicitAnywhere, + "Set this property to 1 to enable explicit fold points anywhere, not just in line comments."); + + DefineProperty("fold.compact", &OptionsD::foldCompact); + + DefineProperty("lexer.d.fold.at.else", &OptionsD::foldAtElseInt, + "This option enables D folding on a \"} else {\" line of an if statement."); + + DefineProperty("fold.at.else", &OptionsD::foldAtElse); + + DefineWordListSets(dWordLists); + } +}; + +class LexerD : public DefaultLexer { + bool caseSensitive; + WordList keywords; + WordList keywords2; + WordList keywords3; + WordList keywords4; + WordList keywords5; + WordList keywords6; + WordList keywords7; + OptionsD options; + OptionSetD osD; +public: + LexerD(bool caseSensitive_) : + caseSensitive(caseSensitive_) { + } + virtual ~LexerD() { + } + void SCI_METHOD Release() override { + delete this; + } + int SCI_METHOD Version() const override { + return lvOriginal; + } + const char * SCI_METHOD PropertyNames() override { + return osD.PropertyNames(); + } + int SCI_METHOD PropertyType(const char *name) override { + return osD.PropertyType(name); + } + const char * SCI_METHOD DescribeProperty(const char *name) override { + return osD.DescribeProperty(name); + } + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override; + const char * SCI_METHOD DescribeWordListSets() override { + return osD.DescribeWordListSets(); + } + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void * SCI_METHOD PrivateCall(int, void *) override { + return 0; + } + + static ILexer *LexerFactoryD() { + return new LexerD(true); + } + static ILexer *LexerFactoryDInsensitive() { + return new LexerD(false); + } +}; + +Sci_Position SCI_METHOD LexerD::PropertySet(const char *key, const char *val) { + if (osD.PropertySet(&options, key, val)) { + return 0; + } + return -1; +} + +Sci_Position SCI_METHOD LexerD::WordListSet(int n, const char *wl) { + WordList *wordListN = 0; + switch (n) { + case 0: + wordListN = &keywords; + break; + case 1: + wordListN = &keywords2; + break; + case 2: + wordListN = &keywords3; + break; + case 3: + wordListN = &keywords4; + break; + case 4: + wordListN = &keywords5; + break; + case 5: + wordListN = &keywords6; + break; + case 6: + wordListN = &keywords7; + break; + } + Sci_Position firstModification = -1; + if (wordListN) { + WordList wlNew; + wlNew.Set(wl); + if (*wordListN != wlNew) { + wordListN->Set(wl); + firstModification = 0; + } + } + return firstModification; +} + +void SCI_METHOD LexerD::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + LexAccessor styler(pAccess); + + int styleBeforeDCKeyword = SCE_D_DEFAULT; + + StyleContext sc(startPos, length, initStyle, styler); + + Sci_Position curLine = styler.GetLine(startPos); + int curNcLevel = curLine > 0? styler.GetLineState(curLine-1): 0; + bool numFloat = false; // Float literals have '+' and '-' signs + bool numHex = false; + + for (; sc.More(); sc.Forward()) { + + if (sc.atLineStart) { + curLine = styler.GetLine(sc.currentPos); + styler.SetLineState(curLine, curNcLevel); + } + + // Determine if the current state should terminate. + switch (sc.state) { + case SCE_D_OPERATOR: + sc.SetState(SCE_D_DEFAULT); + break; + case SCE_D_NUMBER: + // We accept almost anything because of hex. and number suffixes + if (IsASCII(sc.ch) && (isalnum(sc.ch) || sc.ch == '_')) { + continue; + } else if (sc.ch == '.' && sc.chNext != '.' && !numFloat) { + // Don't parse 0..2 as number. + numFloat=true; + continue; + } else if ( ( sc.ch == '-' || sc.ch == '+' ) && ( /*sign and*/ + ( !numHex && ( sc.chPrev == 'e' || sc.chPrev == 'E' ) ) || /*decimal or*/ + ( sc.chPrev == 'p' || sc.chPrev == 'P' ) ) ) { /*hex*/ + // Parse exponent sign in float literals: 2e+10 0x2e+10 + continue; + } else { + sc.SetState(SCE_D_DEFAULT); + } + break; + case SCE_D_IDENTIFIER: + if (!IsWord(sc.ch)) { + char s[1000]; + if (caseSensitive) { + sc.GetCurrent(s, sizeof(s)); + } else { + sc.GetCurrentLowered(s, sizeof(s)); + } + if (keywords.InList(s)) { + sc.ChangeState(SCE_D_WORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_D_WORD2); + } else if (keywords4.InList(s)) { + sc.ChangeState(SCE_D_TYPEDEF); + } else if (keywords5.InList(s)) { + sc.ChangeState(SCE_D_WORD5); + } else if (keywords6.InList(s)) { + sc.ChangeState(SCE_D_WORD6); + } else if (keywords7.InList(s)) { + sc.ChangeState(SCE_D_WORD7); + } + sc.SetState(SCE_D_DEFAULT); + } + break; + case SCE_D_COMMENT: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_D_DEFAULT); + } + break; + case SCE_D_COMMENTDOC: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_D_DEFAULT); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '*') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = SCE_D_COMMENTDOC; + sc.SetState(SCE_D_COMMENTDOCKEYWORD); + } + } + break; + case SCE_D_COMMENTLINE: + if (sc.atLineStart) { + sc.SetState(SCE_D_DEFAULT); + } + break; + case SCE_D_COMMENTLINEDOC: + if (sc.atLineStart) { + sc.SetState(SCE_D_DEFAULT); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '/' || sc.chPrev == '!') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = SCE_D_COMMENTLINEDOC; + sc.SetState(SCE_D_COMMENTDOCKEYWORD); + } + } + break; + case SCE_D_COMMENTDOCKEYWORD: + if ((styleBeforeDCKeyword == SCE_D_COMMENTDOC) && sc.Match('*', '/')) { + sc.ChangeState(SCE_D_COMMENTDOCKEYWORDERROR); + sc.Forward(); + sc.ForwardSetState(SCE_D_DEFAULT); + } else if (!IsDoxygen(sc.ch)) { + char s[100]; + if (caseSensitive) { + sc.GetCurrent(s, sizeof(s)); + } else { + sc.GetCurrentLowered(s, sizeof(s)); + } + if (!IsASpace(sc.ch) || !keywords3.InList(s + 1)) { + sc.ChangeState(SCE_D_COMMENTDOCKEYWORDERROR); + } + sc.SetState(styleBeforeDCKeyword); + } + break; + case SCE_D_COMMENTNESTED: + if (sc.Match('+', '/')) { + if (curNcLevel > 0) + curNcLevel -= 1; + curLine = styler.GetLine(sc.currentPos); + styler.SetLineState(curLine, curNcLevel); + sc.Forward(); + if (curNcLevel == 0) { + sc.ForwardSetState(SCE_D_DEFAULT); + } + } else if (sc.Match('/','+')) { + curNcLevel += 1; + curLine = styler.GetLine(sc.currentPos); + styler.SetLineState(curLine, curNcLevel); + sc.Forward(); + } + break; + case SCE_D_STRING: + if (sc.ch == '\\') { + if (sc.chNext == '"' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '"') { + if(IsStringSuffix(sc.chNext)) + sc.Forward(); + sc.ForwardSetState(SCE_D_DEFAULT); + } + break; + case SCE_D_CHARACTER: + if (sc.atLineEnd) { + sc.ChangeState(SCE_D_STRINGEOL); + } else if (sc.ch == '\\') { + if (sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\'') { + // Char has no suffixes + sc.ForwardSetState(SCE_D_DEFAULT); + } + break; + case SCE_D_STRINGEOL: + if (sc.atLineStart) { + sc.SetState(SCE_D_DEFAULT); + } + break; + case SCE_D_STRINGB: + if (sc.ch == '`') { + if(IsStringSuffix(sc.chNext)) + sc.Forward(); + sc.ForwardSetState(SCE_D_DEFAULT); + } + break; + case SCE_D_STRINGR: + if (sc.ch == '"') { + if(IsStringSuffix(sc.chNext)) + sc.Forward(); + sc.ForwardSetState(SCE_D_DEFAULT); + } + break; + } + + // Determine if a new state should be entered. + if (sc.state == SCE_D_DEFAULT) { + if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_D_NUMBER); + numFloat = sc.ch == '.'; + // Remember hex literal + numHex = sc.ch == '0' && ( sc.chNext == 'x' || sc.chNext == 'X' ); + } else if ( (sc.ch == 'r' || sc.ch == 'x' || sc.ch == 'q') + && sc.chNext == '"' ) { + // Limited support for hex and delimited strings: parse as r"" + sc.SetState(SCE_D_STRINGR); + sc.Forward(); + } else if (IsWordStart(sc.ch) || sc.ch == '$') { + sc.SetState(SCE_D_IDENTIFIER); + } else if (sc.Match('/','+')) { + curNcLevel += 1; + curLine = styler.GetLine(sc.currentPos); + styler.SetLineState(curLine, curNcLevel); + sc.SetState(SCE_D_COMMENTNESTED); + sc.Forward(); + } else if (sc.Match('/', '*')) { + if (sc.Match("/**") || sc.Match("/*!")) { // Support of Qt/Doxygen doc. style + sc.SetState(SCE_D_COMMENTDOC); + } else { + sc.SetState(SCE_D_COMMENT); + } + sc.Forward(); // Eat the * so it isn't used for the end of the comment + } else if (sc.Match('/', '/')) { + if ((sc.Match("///") && !sc.Match("////")) || sc.Match("//!")) + // Support of Qt/Doxygen doc. style + sc.SetState(SCE_D_COMMENTLINEDOC); + else + sc.SetState(SCE_D_COMMENTLINE); + } else if (sc.ch == '"') { + sc.SetState(SCE_D_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_D_CHARACTER); + } else if (sc.ch == '`') { + sc.SetState(SCE_D_STRINGB); + } else if (isoperator(static_cast(sc.ch))) { + sc.SetState(SCE_D_OPERATOR); + if (sc.ch == '.' && sc.chNext == '.') sc.Forward(); // Range operator + } + } + } + sc.Complete(); +} + +// Store both the current line's fold level and the next lines in the +// level store to make it easy to pick up with each increment +// and to make it possible to fiddle the current level for "} else {". + +void SCI_METHOD LexerD::Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + + if (!options.fold) + return; + + LexAccessor styler(pAccess); + + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelCurrent = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelCurrent = styler.LevelAt(lineCurrent-1) >> 16; + int levelMinCurrent = levelCurrent; + int levelNext = levelCurrent; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + bool foldAtElse = options.foldAtElseInt >= 0 ? options.foldAtElseInt != 0 : options.foldAtElse; + const bool userDefinedFoldMarkers = !options.foldExplicitStart.empty() && !options.foldExplicitEnd.empty(); + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (options.foldComment && options.foldCommentMultiline && IsStreamCommentStyle(style)) { + if (!IsStreamCommentStyle(stylePrev)) { + levelNext++; + } else if (!IsStreamCommentStyle(styleNext) && !atEOL) { + // Comments don't end at end of line and the next character may be unstyled. + levelNext--; + } + } + if (options.foldComment && options.foldCommentExplicit && ((style == SCE_D_COMMENTLINE) || options.foldExplicitAnywhere)) { + if (userDefinedFoldMarkers) { + if (styler.Match(i, options.foldExplicitStart.c_str())) { + levelNext++; + } else if (styler.Match(i, options.foldExplicitEnd.c_str())) { + levelNext--; + } + } else { + if ((ch == '/') && (chNext == '/')) { + char chNext2 = styler.SafeGetCharAt(i + 2); + if (chNext2 == '{') { + levelNext++; + } else if (chNext2 == '}') { + levelNext--; + } + } + } + } + if (options.foldSyntaxBased && (style == SCE_D_OPERATOR)) { + if (ch == '{') { + // Measure the minimum before a '{' to allow + // folding on "} else {" + if (levelMinCurrent > levelNext) { + levelMinCurrent = levelNext; + } + levelNext++; + } else if (ch == '}') { + levelNext--; + } + } + if (atEOL || (i == endPos-1)) { + if (options.foldComment && options.foldCommentMultiline) { // Handle nested comments + int nc; + nc = styler.GetLineState(lineCurrent); + nc -= lineCurrent>0? styler.GetLineState(lineCurrent-1): 0; + levelNext += nc; + } + int levelUse = levelCurrent; + if (options.foldSyntaxBased && foldAtElse) { + levelUse = levelMinCurrent; + } + int lev = levelUse | levelNext << 16; + if (visibleChars == 0 && options.foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if (levelUse < levelNext) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelCurrent = levelNext; + levelMinCurrent = levelCurrent; + visibleChars = 0; + } + if (!IsASpace(ch)) + visibleChars++; + } +} + +LexerModule lmD(SCLEX_D, LexerD::LexerFactoryD, "d", dWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexDMAP.cpp b/third_party/qscintilla/scintilla/lexers/LexDMAP.cpp new file mode 100644 index 0000000..91b10c2 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexDMAP.cpp @@ -0,0 +1,226 @@ +// Scintilla source code edit control +/** @file LexDMAP.cxx + ** Lexer for MSC Nastran DMAP. + ** Written by Mark Robinson, based on the Fortran lexer by Chuan-jian Shen, Last changed Aug. 2013 + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. +/***************************************/ +#include +#include +#include +#include +#include +#include +/***************************************/ +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +/***************************************/ + +using namespace Scintilla; + +/***********************************************/ +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '%'); +} +/**********************************************/ +static inline bool IsAWordStart(const int ch) { + return (ch < 0x80) && (isalnum(ch)); +} +/***************************************/ +static void ColouriseDMAPDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) { + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + /***************************************/ + Sci_Position posLineStart = 0, numNonBlank = 0; + Sci_Position endPos = startPos + length; + /***************************************/ + // backtrack to the nearest keyword + while ((startPos > 1) && (styler.StyleAt(startPos) != SCE_DMAP_WORD)) { + startPos--; + } + startPos = styler.LineStart(styler.GetLine(startPos)); + initStyle = styler.StyleAt(startPos - 1); + StyleContext sc(startPos, endPos-startPos, initStyle, styler); + /***************************************/ + for (; sc.More(); sc.Forward()) { + // remember the start position of the line + if (sc.atLineStart) { + posLineStart = sc.currentPos; + numNonBlank = 0; + sc.SetState(SCE_DMAP_DEFAULT); + } + if (!IsASpaceOrTab(sc.ch)) numNonBlank ++; + /***********************************************/ + // Handle data appearing after column 72; it is ignored + Sci_Position toLineStart = sc.currentPos - posLineStart; + if (toLineStart >= 72 || sc.ch == '$') { + sc.SetState(SCE_DMAP_COMMENT); + while (!sc.atLineEnd && sc.More()) sc.Forward(); // Until line end + continue; + } + /***************************************/ + // Determine if the current state should terminate. + if (sc.state == SCE_DMAP_OPERATOR) { + sc.SetState(SCE_DMAP_DEFAULT); + } else if (sc.state == SCE_DMAP_NUMBER) { + if (!(IsAWordChar(sc.ch) || sc.ch=='\'' || sc.ch=='\"' || sc.ch=='.')) { + sc.SetState(SCE_DMAP_DEFAULT); + } + } else if (sc.state == SCE_DMAP_IDENTIFIER) { + if (!IsAWordChar(sc.ch) || (sc.ch == '%')) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + if (keywords.InList(s)) { + sc.ChangeState(SCE_DMAP_WORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_DMAP_WORD2); + } else if (keywords3.InList(s)) { + sc.ChangeState(SCE_DMAP_WORD3); + } + sc.SetState(SCE_DMAP_DEFAULT); + } + } else if (sc.state == SCE_DMAP_COMMENT) { + if (sc.ch == '\r' || sc.ch == '\n') { + sc.SetState(SCE_DMAP_DEFAULT); + } + } else if (sc.state == SCE_DMAP_STRING1) { + if (sc.ch == '\'') { + if (sc.chNext == '\'') { + sc.Forward(); + } else { + sc.ForwardSetState(SCE_DMAP_DEFAULT); + } + } else if (sc.atLineEnd) { + sc.ChangeState(SCE_DMAP_STRINGEOL); + sc.ForwardSetState(SCE_DMAP_DEFAULT); + } + } else if (sc.state == SCE_DMAP_STRING2) { + if (sc.atLineEnd) { + sc.ChangeState(SCE_DMAP_STRINGEOL); + sc.ForwardSetState(SCE_DMAP_DEFAULT); + } else if (sc.ch == '\"') { + if (sc.chNext == '\"') { + sc.Forward(); + } else { + sc.ForwardSetState(SCE_DMAP_DEFAULT); + } + } + } + /***************************************/ + // Determine if a new state should be entered. + if (sc.state == SCE_DMAP_DEFAULT) { + if (sc.ch == '$') { + sc.SetState(SCE_DMAP_COMMENT); + } else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext)) || (sc.ch == '-' && IsADigit(sc.chNext))) { + sc.SetState(SCE_F_NUMBER); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_DMAP_IDENTIFIER); + } else if (sc.ch == '\"') { + sc.SetState(SCE_DMAP_STRING2); + } else if (sc.ch == '\'') { + sc.SetState(SCE_DMAP_STRING1); + } else if (isoperator(static_cast(sc.ch))) { + sc.SetState(SCE_DMAP_OPERATOR); + } + } + } + sc.Complete(); +} +/***************************************/ +// To determine the folding level depending on keywords +static int classifyFoldPointDMAP(const char* s, const char* prevWord) { + int lev = 0; + if ((strcmp(prevWord, "else") == 0 && strcmp(s, "if") == 0) || strcmp(s, "enddo") == 0 || strcmp(s, "endif") == 0) { + lev = -1; + } else if ((strcmp(prevWord, "do") == 0 && strcmp(s, "while") == 0) || strcmp(s, "then") == 0) { + lev = 1; + } + return lev; +} +// Folding the code +static void FoldDMAPDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *[], Accessor &styler) { + // + // bool foldComment = styler.GetPropertyInt("fold.comment") != 0; + // Do not know how to fold the comment at the moment. + // + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + /***************************************/ + Sci_Position lastStart = 0; + char prevWord[32] = ""; + /***************************************/ + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + // + if ((stylePrev == SCE_DMAP_DEFAULT || stylePrev == SCE_DMAP_OPERATOR || stylePrev == SCE_DMAP_COMMENT) && (style == SCE_DMAP_WORD)) { + // Store last word and label start point. + lastStart = i; + } + /***************************************/ + if (style == SCE_DMAP_WORD) { + if(iswordchar(ch) && !iswordchar(chNext)) { + char s[32]; + Sci_PositionU k; + for(k=0; (k<31 ) && (k(tolower(styler[lastStart+k])); + } + s[k] = '\0'; + levelCurrent += classifyFoldPointDMAP(s, prevWord); + strcpy(prevWord, s); + } + } + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + strcpy(prevWord, ""); + } + /***************************************/ + if (!isspacechar(ch)) visibleChars++; + } + /***************************************/ + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} +/***************************************/ +static const char * const DMAPWordLists[] = { + "Primary keywords and identifiers", + "Intrinsic functions", + "Extended and user defined functions", + 0, +}; +/***************************************/ +LexerModule lmDMAP(SCLEX_DMAP, ColouriseDMAPDoc, "DMAP", FoldDMAPDoc, DMAPWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexDMIS.cpp b/third_party/qscintilla/scintilla/lexers/LexDMIS.cpp new file mode 100644 index 0000000..fa024e9 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexDMIS.cpp @@ -0,0 +1,354 @@ +// Scintilla source code edit control +/** @file LexDMIS.cxx + ** Lexer for DMIS. + **/ +// Copyright 1998-2005 by Neil Hodgson +// Copyright 2013-2014 by Andreas Tscharner +// The License.txt file describes the conditions under which this software may be distributed. + + +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + + +static const char *const DMISWordListDesc[] = { + "DMIS Major Words", + "DMIS Minor Words", + "Unsupported DMIS Major Words", + "Unsupported DMIS Minor Words", + "Keywords for code folding start", + "Corresponding keywords for code folding end", + 0 +}; + + +class LexerDMIS : public DefaultLexer +{ + private: + char *m_wordListSets; + WordList m_majorWords; + WordList m_minorWords; + WordList m_unsupportedMajor; + WordList m_unsupportedMinor; + WordList m_codeFoldingStart; + WordList m_codeFoldingEnd; + + char * SCI_METHOD UpperCase(char *item); + void SCI_METHOD InitWordListSets(void); + + public: + LexerDMIS(void); + virtual ~LexerDMIS(void); + + int SCI_METHOD Version() const override { + return lvOriginal; + } + + void SCI_METHOD Release() override { + delete this; + } + + const char * SCI_METHOD PropertyNames() override { + return NULL; + } + + int SCI_METHOD PropertyType(const char *) override { + return -1; + } + + const char * SCI_METHOD DescribeProperty(const char *) override { + return NULL; + } + + Sci_Position SCI_METHOD PropertySet(const char *, const char *) override { + return -1; + } + + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + + void * SCI_METHOD PrivateCall(int, void *) override { + return NULL; + } + + static ILexer *LexerFactoryDMIS() { + return new LexerDMIS; + } + + const char * SCI_METHOD DescribeWordListSets() override; + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) override; +}; + + +char * SCI_METHOD LexerDMIS::UpperCase(char *item) +{ + char *itemStart; + + + itemStart = item; + while (item && *item) { + *item = toupper(*item); + item++; + }; + return itemStart; +} + +void SCI_METHOD LexerDMIS::InitWordListSets(void) +{ + size_t totalLen = 0; + + + for (int i=0; DMISWordListDesc[i]; i++) { + totalLen += strlen(DMISWordListDesc[i]); + totalLen++; + }; + + totalLen++; + this->m_wordListSets = new char[totalLen]; + memset(this->m_wordListSets, 0, totalLen); + + for (int i=0; DMISWordListDesc[i]; i++) { + strcat(this->m_wordListSets, DMISWordListDesc[i]); + strcat(this->m_wordListSets, "\n"); + }; +} + + +LexerDMIS::LexerDMIS(void) { + this->InitWordListSets(); + + this->m_majorWords.Clear(); + this->m_minorWords.Clear(); + this->m_unsupportedMajor.Clear(); + this->m_unsupportedMinor.Clear(); + this->m_codeFoldingStart.Clear(); + this->m_codeFoldingEnd.Clear(); +} + +LexerDMIS::~LexerDMIS(void) { + delete[] this->m_wordListSets; +} + +Sci_Position SCI_METHOD LexerDMIS::WordListSet(int n, const char *wl) +{ + switch (n) { + case 0: + this->m_majorWords.Clear(); + this->m_majorWords.Set(wl); + break; + case 1: + this->m_minorWords.Clear(); + this->m_minorWords.Set(wl); + break; + case 2: + this->m_unsupportedMajor.Clear(); + this->m_unsupportedMajor.Set(wl); + break; + case 3: + this->m_unsupportedMinor.Clear(); + this->m_unsupportedMinor.Set(wl); + break; + case 4: + this->m_codeFoldingStart.Clear(); + this->m_codeFoldingStart.Set(wl); + break; + case 5: + this->m_codeFoldingEnd.Clear(); + this->m_codeFoldingEnd.Set(wl); + break; + default: + return -1; + break; + } + + return 0; +} + +const char * SCI_METHOD LexerDMIS::DescribeWordListSets() +{ + return this->m_wordListSets; +} + +void SCI_METHOD LexerDMIS::Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) +{ + const Sci_PositionU MAX_STR_LEN = 100; + + LexAccessor styler(pAccess); + StyleContext scCTX(startPos, lengthDoc, initStyle, styler); + CharacterSet setDMISNumber(CharacterSet::setDigits, ".-+eE"); + CharacterSet setDMISWordStart(CharacterSet::setAlpha, "-234", 0x80, true); + CharacterSet setDMISWord(CharacterSet::setAlpha); + + + bool isIFLine = false; + + for (; scCTX.More(); scCTX.Forward()) { + if (scCTX.atLineEnd) { + isIFLine = false; + }; + + switch (scCTX.state) { + case SCE_DMIS_DEFAULT: + if (scCTX.Match('$', '$')) { + scCTX.SetState(SCE_DMIS_COMMENT); + scCTX.Forward(); + }; + if (scCTX.Match('\'')) { + scCTX.SetState(SCE_DMIS_STRING); + }; + if (IsADigit(scCTX.ch) || ((scCTX.Match('-') || scCTX.Match('+')) && IsADigit(scCTX.chNext))) { + scCTX.SetState(SCE_DMIS_NUMBER); + break; + }; + if (setDMISWordStart.Contains(scCTX.ch)) { + scCTX.SetState(SCE_DMIS_KEYWORD); + }; + if (scCTX.Match('(') && (!isIFLine)) { + scCTX.SetState(SCE_DMIS_LABEL); + }; + break; + + case SCE_DMIS_COMMENT: + if (scCTX.atLineEnd) { + scCTX.SetState(SCE_DMIS_DEFAULT); + }; + break; + + case SCE_DMIS_STRING: + if (scCTX.Match('\'')) { + scCTX.SetState(SCE_DMIS_DEFAULT); + }; + break; + + case SCE_DMIS_NUMBER: + if (!setDMISNumber.Contains(scCTX.ch)) { + scCTX.SetState(SCE_DMIS_DEFAULT); + }; + break; + + case SCE_DMIS_KEYWORD: + if (!setDMISWord.Contains(scCTX.ch)) { + char tmpStr[MAX_STR_LEN]; + memset(tmpStr, 0, MAX_STR_LEN*sizeof(char)); + scCTX.GetCurrent(tmpStr, (MAX_STR_LEN-1)); + strncpy(tmpStr, this->UpperCase(tmpStr), (MAX_STR_LEN-1)); + + if (this->m_minorWords.InList(tmpStr)) { + scCTX.ChangeState(SCE_DMIS_MINORWORD); + }; + if (this->m_majorWords.InList(tmpStr)) { + isIFLine = (strcmp(tmpStr, "IF") == 0); + scCTX.ChangeState(SCE_DMIS_MAJORWORD); + }; + if (this->m_unsupportedMajor.InList(tmpStr)) { + scCTX.ChangeState(SCE_DMIS_UNSUPPORTED_MAJOR); + }; + if (this->m_unsupportedMinor.InList(tmpStr)) { + scCTX.ChangeState(SCE_DMIS_UNSUPPORTED_MINOR); + }; + + if (scCTX.Match('(') && (!isIFLine)) { + scCTX.SetState(SCE_DMIS_LABEL); + } else { + scCTX.SetState(SCE_DMIS_DEFAULT); + }; + }; + break; + + case SCE_DMIS_LABEL: + if (scCTX.Match(')')) { + scCTX.SetState(SCE_DMIS_DEFAULT); + }; + break; + }; + }; + scCTX.Complete(); +} + +void SCI_METHOD LexerDMIS::Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int, IDocument *pAccess) +{ + const int MAX_STR_LEN = 100; + + LexAccessor styler(pAccess); + Sci_PositionU endPos = startPos + lengthDoc; + char chNext = styler[startPos]; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + int strPos = 0; + bool foldWordPossible = false; + CharacterSet setDMISFoldWord(CharacterSet::setAlpha); + char *tmpStr; + + + tmpStr = new char[MAX_STR_LEN]; + memset(tmpStr, 0, MAX_STR_LEN*sizeof(char)); + + for (Sci_PositionU i=startPos; i= (MAX_STR_LEN-1)) { + strPos = MAX_STR_LEN-1; + }; + + int style = styler.StyleAt(i); + bool noFoldPos = ((style == SCE_DMIS_COMMENT) || (style == SCE_DMIS_STRING)); + + if (foldWordPossible) { + if (setDMISFoldWord.Contains(ch)) { + tmpStr[strPos++] = ch; + } else { + tmpStr = this->UpperCase(tmpStr); + if (this->m_codeFoldingStart.InList(tmpStr) && (!noFoldPos)) { + levelCurrent++; + }; + if (this->m_codeFoldingEnd.InList(tmpStr) && (!noFoldPos)) { + levelCurrent--; + }; + memset(tmpStr, 0, MAX_STR_LEN*sizeof(char)); + strPos = 0; + foldWordPossible = false; + }; + } else { + if (setDMISFoldWord.Contains(ch)) { + tmpStr[strPos++] = ch; + foldWordPossible = true; + }; + }; + + if (atEOL || (i == (endPos-1))) { + int lev = levelPrev; + + if (levelCurrent > levelPrev) { + lev |= SC_FOLDLEVELHEADERFLAG; + }; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + }; + lineCurrent++; + levelPrev = levelCurrent; + }; + }; + delete[] tmpStr; +} + + +LexerModule lmDMIS(SCLEX_DMIS, LexerDMIS::LexerFactoryDMIS, "DMIS", DMISWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexDiff.cpp b/third_party/qscintilla/scintilla/lexers/LexDiff.cpp new file mode 100644 index 0000000..dd008c5 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexDiff.cpp @@ -0,0 +1,161 @@ +// Scintilla source code edit control +/** @file LexDiff.cxx + ** Lexer for diff results. + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool AtEOL(Accessor &styler, Sci_PositionU i) { + return (styler[i] == '\n') || + ((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n')); +} + +#define DIFF_BUFFER_START_SIZE 16 +// Note that ColouriseDiffLine analyzes only the first DIFF_BUFFER_START_SIZE +// characters of each line to classify the line. + +static void ColouriseDiffLine(char *lineBuffer, Sci_Position endLine, Accessor &styler) { + // It is needed to remember the current state to recognize starting + // comment lines before the first "diff " or "--- ". If a real + // difference starts then each line starting with ' ' is a whitespace + // otherwise it is considered a comment (Only in..., Binary file...) + if (0 == strncmp(lineBuffer, "diff ", 5)) { + styler.ColourTo(endLine, SCE_DIFF_COMMAND); + } else if (0 == strncmp(lineBuffer, "Index: ", 7)) { // For subversion's diff + styler.ColourTo(endLine, SCE_DIFF_COMMAND); + } else if (0 == strncmp(lineBuffer, "---", 3) && lineBuffer[3] != '-') { + // In a context diff, --- appears in both the header and the position markers + if (lineBuffer[3] == ' ' && atoi(lineBuffer + 4) && !strchr(lineBuffer, '/')) + styler.ColourTo(endLine, SCE_DIFF_POSITION); + else if (lineBuffer[3] == '\r' || lineBuffer[3] == '\n') + styler.ColourTo(endLine, SCE_DIFF_POSITION); + else if (lineBuffer[3] == ' ') + styler.ColourTo(endLine, SCE_DIFF_HEADER); + else + styler.ColourTo(endLine, SCE_DIFF_DELETED); + } else if (0 == strncmp(lineBuffer, "+++ ", 4)) { + // I don't know of any diff where "+++ " is a position marker, but for + // consistency, do the same as with "--- " and "*** ". + if (atoi(lineBuffer+4) && !strchr(lineBuffer, '/')) + styler.ColourTo(endLine, SCE_DIFF_POSITION); + else + styler.ColourTo(endLine, SCE_DIFF_HEADER); + } else if (0 == strncmp(lineBuffer, "====", 4)) { // For p4's diff + styler.ColourTo(endLine, SCE_DIFF_HEADER); + } else if (0 == strncmp(lineBuffer, "***", 3)) { + // In a context diff, *** appears in both the header and the position markers. + // Also ******** is a chunk header, but here it's treated as part of the + // position marker since there is no separate style for a chunk header. + if (lineBuffer[3] == ' ' && atoi(lineBuffer+4) && !strchr(lineBuffer, '/')) + styler.ColourTo(endLine, SCE_DIFF_POSITION); + else if (lineBuffer[3] == '*') + styler.ColourTo(endLine, SCE_DIFF_POSITION); + else + styler.ColourTo(endLine, SCE_DIFF_HEADER); + } else if (0 == strncmp(lineBuffer, "? ", 2)) { // For difflib + styler.ColourTo(endLine, SCE_DIFF_HEADER); + } else if (lineBuffer[0] == '@') { + styler.ColourTo(endLine, SCE_DIFF_POSITION); + } else if (lineBuffer[0] >= '0' && lineBuffer[0] <= '9') { + styler.ColourTo(endLine, SCE_DIFF_POSITION); + } else if (0 == strncmp(lineBuffer, "++", 2)) { + styler.ColourTo(endLine, SCE_DIFF_PATCH_ADD); + } else if (0 == strncmp(lineBuffer, "+-", 2)) { + styler.ColourTo(endLine, SCE_DIFF_PATCH_DELETE); + } else if (0 == strncmp(lineBuffer, "-+", 2)) { + styler.ColourTo(endLine, SCE_DIFF_REMOVED_PATCH_ADD); + } else if (0 == strncmp(lineBuffer, "--", 2)) { + styler.ColourTo(endLine, SCE_DIFF_REMOVED_PATCH_DELETE); + } else if (lineBuffer[0] == '-' || lineBuffer[0] == '<') { + styler.ColourTo(endLine, SCE_DIFF_DELETED); + } else if (lineBuffer[0] == '+' || lineBuffer[0] == '>') { + styler.ColourTo(endLine, SCE_DIFF_ADDED); + } else if (lineBuffer[0] == '!') { + styler.ColourTo(endLine, SCE_DIFF_CHANGED); + } else if (lineBuffer[0] != ' ') { + styler.ColourTo(endLine, SCE_DIFF_COMMENT); + } else { + styler.ColourTo(endLine, SCE_DIFF_DEFAULT); + } +} + +static void ColouriseDiffDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) { + char lineBuffer[DIFF_BUFFER_START_SIZE] = ""; + styler.StartAt(startPos); + styler.StartSegment(startPos); + Sci_PositionU linePos = 0; + for (Sci_PositionU i = startPos; i < startPos + length; i++) { + if (AtEOL(styler, i)) { + if (linePos < DIFF_BUFFER_START_SIZE) { + lineBuffer[linePos] = 0; + } + ColouriseDiffLine(lineBuffer, i, styler); + linePos = 0; + } else if (linePos < DIFF_BUFFER_START_SIZE - 1) { + lineBuffer[linePos++] = styler[i]; + } else if (linePos == DIFF_BUFFER_START_SIZE - 1) { + lineBuffer[linePos++] = 0; + } + } + if (linePos > 0) { // Last line does not have ending characters + if (linePos < DIFF_BUFFER_START_SIZE) { + lineBuffer[linePos] = 0; + } + ColouriseDiffLine(lineBuffer, startPos + length - 1, styler); + } +} + +static void FoldDiffDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) { + Sci_Position curLine = styler.GetLine(startPos); + Sci_Position curLineStart = styler.LineStart(curLine); + int prevLevel = curLine > 0 ? styler.LevelAt(curLine - 1) : SC_FOLDLEVELBASE; + int nextLevel; + + do { + const int lineType = styler.StyleAt(curLineStart); + if (lineType == SCE_DIFF_COMMAND) + nextLevel = SC_FOLDLEVELBASE | SC_FOLDLEVELHEADERFLAG; + else if (lineType == SCE_DIFF_HEADER) + nextLevel = (SC_FOLDLEVELBASE + 1) | SC_FOLDLEVELHEADERFLAG; + else if (lineType == SCE_DIFF_POSITION && styler[curLineStart] != '-') + nextLevel = (SC_FOLDLEVELBASE + 2) | SC_FOLDLEVELHEADERFLAG; + else if (prevLevel & SC_FOLDLEVELHEADERFLAG) + nextLevel = (prevLevel & SC_FOLDLEVELNUMBERMASK) + 1; + else + nextLevel = prevLevel; + + if ((nextLevel & SC_FOLDLEVELHEADERFLAG) && (nextLevel == prevLevel)) + styler.SetLevel(curLine-1, prevLevel & ~SC_FOLDLEVELHEADERFLAG); + + styler.SetLevel(curLine, nextLevel); + prevLevel = nextLevel; + + curLineStart = styler.LineStart(++curLine); + } while (static_cast(startPos)+length > curLineStart); +} + +static const char *const emptyWordListDesc[] = { + 0 +}; + +LexerModule lmDiff(SCLEX_DIFF, ColouriseDiffDoc, "diff", FoldDiffDoc, emptyWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexECL.cpp b/third_party/qscintilla/scintilla/lexers/LexECL.cpp new file mode 100644 index 0000000..6c916bc --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexECL.cpp @@ -0,0 +1,519 @@ +// Scintilla source code edit control +/** @file LexECL.cxx + ** Lexer for ECL. + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable: 4786) +#endif +#ifdef __BORLANDC__ +// Borland C++ displays warnings in vector header without this +#pragma option -w-ccc -w-rch +#endif + +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" + +#define SET_LOWER "abcdefghijklmnopqrstuvwxyz" +#define SET_UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ" +#define SET_DIGITS "0123456789" + +using namespace Scintilla; + +static bool IsSpaceEquiv(int state) { + switch (state) { + case SCE_ECL_DEFAULT: + case SCE_ECL_COMMENT: + case SCE_ECL_COMMENTLINE: + case SCE_ECL_COMMENTLINEDOC: + case SCE_ECL_COMMENTDOCKEYWORD: + case SCE_ECL_COMMENTDOCKEYWORDERROR: + case SCE_ECL_COMMENTDOC: + return true; + + default: + return false; + } +} + +static void ColouriseEclDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + WordList &keywords0 = *keywordlists[0]; + WordList &keywords1 = *keywordlists[1]; + WordList &keywords2 = *keywordlists[2]; + WordList &keywords3 = *keywordlists[3]; //Value Types + WordList &keywords4 = *keywordlists[4]; + WordList &keywords5 = *keywordlists[5]; + WordList &keywords6 = *keywordlists[6]; //Javadoc Tags + WordList cplusplus; + cplusplus.Set("beginc endc"); + + bool stylingWithinPreprocessor = false; + + CharacterSet setOKBeforeRE(CharacterSet::setNone, "(=,"); + CharacterSet setDoxygen(CharacterSet::setLower, "$@\\&<>#{}[]"); + CharacterSet setWordStart(CharacterSet::setAlpha, "_", 0x80, true); + CharacterSet setWord(CharacterSet::setAlphaNum, "._", 0x80, true); + CharacterSet setQualified(CharacterSet::setNone, "uUxX"); + + int chPrevNonWhite = ' '; + int visibleChars = 0; + bool lastWordWasUUID = false; + int styleBeforeDCKeyword = SCE_ECL_DEFAULT; + bool continuationLine = false; + + if (initStyle == SCE_ECL_PREPROCESSOR) { + // Set continuationLine if last character of previous line is '\' + Sci_Position lineCurrent = styler.GetLine(startPos); + if (lineCurrent > 0) { + int chBack = styler.SafeGetCharAt(startPos-1, 0); + int chBack2 = styler.SafeGetCharAt(startPos-2, 0); + int lineEndChar = '!'; + if (chBack2 == '\r' && chBack == '\n') { + lineEndChar = styler.SafeGetCharAt(startPos-3, 0); + } else if (chBack == '\n' || chBack == '\r') { + lineEndChar = chBack2; + } + continuationLine = lineEndChar == '\\'; + } + } + + // look back to set chPrevNonWhite properly for better regex colouring + if (startPos > 0) { + Sci_Position back = startPos; + while (--back && IsSpaceEquiv(styler.StyleAt(back))) + ; + if (styler.StyleAt(back) == SCE_ECL_OPERATOR) { + chPrevNonWhite = styler.SafeGetCharAt(back); + } + } + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + if (sc.atLineStart) { + if (sc.state == SCE_ECL_STRING) { + // Prevent SCE_ECL_STRINGEOL from leaking back to previous line which + // ends with a line continuation by locking in the state upto this position. + sc.SetState(SCE_ECL_STRING); + } + // Reset states to begining of colourise so no surprises + // if different sets of lines lexed. + visibleChars = 0; + lastWordWasUUID = false; + } + + // Handle line continuation generically. + if (sc.ch == '\\') { + if (sc.chNext == '\n' || sc.chNext == '\r') { + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } + continuationLine = true; + continue; + } + } + + // Determine if the current state should terminate. + switch (sc.state) { + case SCE_ECL_ADDED: + case SCE_ECL_DELETED: + case SCE_ECL_CHANGED: + case SCE_ECL_MOVED: + if (sc.atLineStart) + sc.SetState(SCE_ECL_DEFAULT); + break; + case SCE_ECL_OPERATOR: + sc.SetState(SCE_ECL_DEFAULT); + break; + case SCE_ECL_NUMBER: + // We accept almost anything because of hex. and number suffixes + if (!setWord.Contains(sc.ch)) { + sc.SetState(SCE_ECL_DEFAULT); + } + break; + case SCE_ECL_IDENTIFIER: + if (!setWord.Contains(sc.ch) || (sc.ch == '.')) { + char s[1000]; + sc.GetCurrentLowered(s, sizeof(s)); + if (keywords0.InList(s)) { + lastWordWasUUID = strcmp(s, "uuid") == 0; + sc.ChangeState(SCE_ECL_WORD0); + } else if (keywords1.InList(s)) { + sc.ChangeState(SCE_ECL_WORD1); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_ECL_WORD2); + } else if (keywords4.InList(s)) { + sc.ChangeState(SCE_ECL_WORD4); + } else if (keywords5.InList(s)) { + sc.ChangeState(SCE_ECL_WORD5); + } + else //Data types are of from KEYWORD## + { + int i = static_cast(strlen(s)) - 1; + while(i >= 0 && (isdigit(s[i]) || s[i] == '_')) + --i; + + char s2[1000]; + strncpy(s2, s, i + 1); + s2[i + 1] = 0; + if (keywords3.InList(s2)) { + sc.ChangeState(SCE_ECL_WORD3); + } + } + sc.SetState(SCE_ECL_DEFAULT); + } + break; + case SCE_ECL_PREPROCESSOR: + if (sc.atLineStart && !continuationLine) { + sc.SetState(SCE_ECL_DEFAULT); + } else if (stylingWithinPreprocessor) { + if (IsASpace(sc.ch)) { + sc.SetState(SCE_ECL_DEFAULT); + } + } else { + if (sc.Match('/', '*') || sc.Match('/', '/')) { + sc.SetState(SCE_ECL_DEFAULT); + } + } + break; + case SCE_ECL_COMMENT: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_ECL_DEFAULT); + } + break; + case SCE_ECL_COMMENTDOC: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_ECL_DEFAULT); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '*') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = SCE_ECL_COMMENTDOC; + sc.SetState(SCE_ECL_COMMENTDOCKEYWORD); + } + } + break; + case SCE_ECL_COMMENTLINE: + if (sc.atLineStart) { + sc.SetState(SCE_ECL_DEFAULT); + } + break; + case SCE_ECL_COMMENTLINEDOC: + if (sc.atLineStart) { + sc.SetState(SCE_ECL_DEFAULT); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '/' || sc.chPrev == '!') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = SCE_ECL_COMMENTLINEDOC; + sc.SetState(SCE_ECL_COMMENTDOCKEYWORD); + } + } + break; + case SCE_ECL_COMMENTDOCKEYWORD: + if ((styleBeforeDCKeyword == SCE_ECL_COMMENTDOC) && sc.Match('*', '/')) { + sc.ChangeState(SCE_ECL_COMMENTDOCKEYWORDERROR); + sc.Forward(); + sc.ForwardSetState(SCE_ECL_DEFAULT); + } else if (!setDoxygen.Contains(sc.ch)) { + char s[1000]; + sc.GetCurrentLowered(s, sizeof(s)); + if (!IsASpace(sc.ch) || !keywords6.InList(s+1)) { + sc.ChangeState(SCE_ECL_COMMENTDOCKEYWORDERROR); + } + sc.SetState(styleBeforeDCKeyword); + } + break; + case SCE_ECL_STRING: + if (sc.atLineEnd) { + sc.ChangeState(SCE_ECL_STRINGEOL); + } else if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_ECL_DEFAULT); + } + break; + case SCE_ECL_CHARACTER: + if (sc.atLineEnd) { + sc.ChangeState(SCE_ECL_STRINGEOL); + } else if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\'') { + sc.ForwardSetState(SCE_ECL_DEFAULT); + } + break; + case SCE_ECL_REGEX: + if (sc.atLineStart) { + sc.SetState(SCE_ECL_DEFAULT); + } else if (sc.ch == '/') { + sc.Forward(); + while ((sc.ch < 0x80) && islower(sc.ch)) + sc.Forward(); // gobble regex flags + sc.SetState(SCE_ECL_DEFAULT); + } else if (sc.ch == '\\') { + // Gobble up the quoted character + if (sc.chNext == '\\' || sc.chNext == '/') { + sc.Forward(); + } + } + break; + case SCE_ECL_STRINGEOL: + if (sc.atLineStart) { + sc.SetState(SCE_ECL_DEFAULT); + } + break; + case SCE_ECL_VERBATIM: + if (sc.ch == '\"') { + if (sc.chNext == '\"') { + sc.Forward(); + } else { + sc.ForwardSetState(SCE_ECL_DEFAULT); + } + } + break; + case SCE_ECL_UUID: + if (sc.ch == '\r' || sc.ch == '\n' || sc.ch == ')') { + sc.SetState(SCE_ECL_DEFAULT); + } + break; + } + + // Determine if a new state should be entered. + Sci_Position lineCurrent = styler.GetLine(sc.currentPos); + int lineState = styler.GetLineState(lineCurrent); + if (sc.state == SCE_ECL_DEFAULT) { + if (lineState) { + sc.SetState(lineState); + } + else if (sc.Match('@', '\"')) { + sc.SetState(SCE_ECL_VERBATIM); + sc.Forward(); + } else if (setQualified.Contains(sc.ch) && sc.chNext == '\'') { + sc.SetState(SCE_ECL_CHARACTER); + sc.Forward(); + } else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + if (lastWordWasUUID) { + sc.SetState(SCE_ECL_UUID); + lastWordWasUUID = false; + } else { + sc.SetState(SCE_ECL_NUMBER); + } + } else if (setWordStart.Contains(sc.ch) || (sc.ch == '@')) { + if (lastWordWasUUID) { + sc.SetState(SCE_ECL_UUID); + lastWordWasUUID = false; + } else { + sc.SetState(SCE_ECL_IDENTIFIER); + } + } else if (sc.Match('/', '*')) { + if (sc.Match("/**") || sc.Match("/*!")) { // Support of Qt/Doxygen doc. style + sc.SetState(SCE_ECL_COMMENTDOC); + } else { + sc.SetState(SCE_ECL_COMMENT); + } + sc.Forward(); // Eat the * so it isn't used for the end of the comment + } else if (sc.Match('/', '/')) { + if ((sc.Match("///") && !sc.Match("////")) || sc.Match("//!")) + // Support of Qt/Doxygen doc. style + sc.SetState(SCE_ECL_COMMENTLINEDOC); + else + sc.SetState(SCE_ECL_COMMENTLINE); + } else if (sc.ch == '/' && setOKBeforeRE.Contains(chPrevNonWhite)) { + sc.SetState(SCE_ECL_REGEX); // JavaScript's RegEx +// } else if (sc.ch == '\"') { +// sc.SetState(SCE_ECL_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_ECL_CHARACTER); + } else if (sc.ch == '#' && visibleChars == 0) { + // Preprocessor commands are alone on their line + sc.SetState(SCE_ECL_PREPROCESSOR); + // Skip whitespace between # and preprocessor word + do { + sc.Forward(); + } while ((sc.ch == ' ' || sc.ch == '\t') && sc.More()); + if (sc.atLineEnd) { + sc.SetState(SCE_ECL_DEFAULT); + } + } else if (isoperator(static_cast(sc.ch))) { + sc.SetState(SCE_ECL_OPERATOR); + } + } + + if (!IsASpace(sc.ch) && !IsSpaceEquiv(sc.state)) { + chPrevNonWhite = sc.ch; + visibleChars++; + } + continuationLine = false; + } + sc.Complete(); + +} + +static bool IsStreamCommentStyle(int style) { + return style == SCE_ECL_COMMENT || + style == SCE_ECL_COMMENTDOC || + style == SCE_ECL_COMMENTDOCKEYWORD || + style == SCE_ECL_COMMENTDOCKEYWORDERROR; +} + +static bool MatchNoCase(Accessor & styler, Sci_PositionU & pos, const char *s) { + Sci_Position i=0; + for (; *s; i++) { + char compare_char = tolower(*s); + char styler_char = tolower(styler.SafeGetCharAt(pos+i)); + if (compare_char != styler_char) + return false; + s++; + } + pos+=i-1; + return true; +} + + +// Store both the current line's fold level and the next lines in the +// level store to make it easy to pick up with each increment +// and to make it possible to fiddle the current level for "} else {". +static void FoldEclDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *[], Accessor &styler) { + bool foldComment = true; + bool foldPreprocessor = true; + bool foldCompact = true; + bool foldAtElse = true; + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelCurrent = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelCurrent = styler.LevelAt(lineCurrent-1) >> 16; + int levelMinCurrent = levelCurrent; + int levelNext = levelCurrent; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (foldComment && IsStreamCommentStyle(style)) { + if (!IsStreamCommentStyle(stylePrev) && (stylePrev != SCE_ECL_COMMENTLINEDOC)) { + levelNext++; + } else if (!IsStreamCommentStyle(styleNext) && (styleNext != SCE_ECL_COMMENTLINEDOC) && !atEOL) { + // Comments don't end at end of line and the next character may be unstyled. + levelNext--; + } + } + if (foldComment && (style == SCE_ECL_COMMENTLINE)) { + if ((ch == '/') && (chNext == '/')) { + char chNext2 = styler.SafeGetCharAt(i + 2); + if (chNext2 == '{') { + levelNext++; + } else if (chNext2 == '}') { + levelNext--; + } + } + } + if (foldPreprocessor && (style == SCE_ECL_PREPROCESSOR)) { + if (ch == '#') { + Sci_PositionU j = i + 1; + while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) { + j++; + } + if (MatchNoCase(styler, j, "region") || MatchNoCase(styler, j, "if")) { + levelNext++; + } else if (MatchNoCase(styler, j, "endregion") || MatchNoCase(styler, j, "end")) { + levelNext--; + } + } + } + if (style == SCE_ECL_OPERATOR) { + if (ch == '{') { + // Measure the minimum before a '{' to allow + // folding on "} else {" + if (levelMinCurrent > levelNext) { + levelMinCurrent = levelNext; + } + levelNext++; + } else if (ch == '}') { + levelNext--; + } + } + if (style == SCE_ECL_WORD2) { + if (MatchNoCase(styler, i, "record") || MatchNoCase(styler, i, "transform") || MatchNoCase(styler, i, "type") || MatchNoCase(styler, i, "function") || + MatchNoCase(styler, i, "module") || MatchNoCase(styler, i, "service") || MatchNoCase(styler, i, "interface") || MatchNoCase(styler, i, "ifblock") || + MatchNoCase(styler, i, "macro") || MatchNoCase(styler, i, "beginc++")) { + levelNext++; + } else if (MatchNoCase(styler, i, "endmacro") || MatchNoCase(styler, i, "endc++") || MatchNoCase(styler, i, "end")) { + levelNext--; + } + } + if (atEOL || (i == endPos-1)) { + int levelUse = levelCurrent; + if (foldAtElse) { + levelUse = levelMinCurrent; + } + int lev = levelUse | levelNext << 16; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if (levelUse < levelNext) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelCurrent = levelNext; + levelMinCurrent = levelCurrent; + if (atEOL && (i == static_cast(styler.Length()-1))) { + // There is an empty line at end of file so give it same level and empty + styler.SetLevel(lineCurrent, (levelCurrent | levelCurrent << 16) | SC_FOLDLEVELWHITEFLAG); + } + visibleChars = 0; + } + if (!IsASpace(ch)) + visibleChars++; + } +} + +static const char * const EclWordListDesc[] = { + "Keywords", + 0 +}; + +LexerModule lmECL( + SCLEX_ECL, + ColouriseEclDoc, + "ecl", + FoldEclDoc, + EclWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexEDIFACT.cpp b/third_party/qscintilla/scintilla/lexers/LexEDIFACT.cpp new file mode 100644 index 0000000..6da0759 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexEDIFACT.cpp @@ -0,0 +1,336 @@ +// Scintilla Lexer for EDIFACT +// Written by Iain Clarke, IMCSoft & Inobiz AB. +// EDIFACT documented here: https://www.unece.org/cefact/edifact/welcome.html +// and more readably here: https://en.wikipedia.org/wiki/EDIFACT +// This code is subject to the same license terms as the rest of the scintilla project: +// The License.txt file describes the conditions under which this software may be distributed. +// + +// Header order must match order in scripts/HeaderOrder.txt +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "LexAccessor.h" +#include "LexerModule.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +class LexerEDIFACT : public DefaultLexer +{ +public: + LexerEDIFACT(); + virtual ~LexerEDIFACT() {} // virtual destructor, as we inherit from ILexer + + static ILexer *Factory() { + return new LexerEDIFACT; + } + + int SCI_METHOD Version() const override + { + return lvOriginal; + } + void SCI_METHOD Release() override + { + delete this; + } + + const char * SCI_METHOD PropertyNames() override + { + return "fold\nlexer.edifact.highlight.un.all"; + } + int SCI_METHOD PropertyType(const char *) override + { + return SC_TYPE_BOOLEAN; // Only one property! + } + const char * SCI_METHOD DescribeProperty(const char *name) override + { + if (!strcmp(name, "fold")) + return "Whether to apply folding to document or not"; + if (!strcmp(name, "lexer.edifact.highlight.un.all")) + return "Whether to apply UN* highlighting to all UN segments, or just to UNH"; + return NULL; + } + + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override + { + if (!strcmp(key, "fold")) + { + m_bFold = strcmp(val, "0") ? true : false; + return 0; + } + if (!strcmp(key, "lexer.edifact.highlight.un.all")) // GetProperty + { + m_bHighlightAllUN = strcmp(val, "0") ? true : false; + return 0; + } + return -1; + } + const char * SCI_METHOD DescribeWordListSets() override + { + return NULL; + } + Sci_Position SCI_METHOD WordListSet(int, const char *) override + { + return -1; + } + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, IDocument *pAccess) override; + void * SCI_METHOD PrivateCall(int, void *) override + { + return NULL; + } + +protected: + Sci_Position InitialiseFromUNA(IDocument *pAccess, Sci_PositionU MaxLength); + Sci_Position FindPreviousEnd(IDocument *pAccess, Sci_Position startPos) const; + Sci_Position ForwardPastWhitespace(IDocument *pAccess, Sci_Position startPos, Sci_Position MaxLength) const; + int DetectSegmentHeader(char SegmentHeader[3]) const; + + bool m_bFold; + + // property lexer.edifact.highlight.un.all + // Set to 0 to highlight only UNA segments, or 1 to highlight all UNx segments. + bool m_bHighlightAllUN; + + char m_chComponent; + char m_chData; + char m_chDecimal; + char m_chRelease; + char m_chSegment; +}; + +LexerModule lmEDIFACT(SCLEX_EDIFACT, LexerEDIFACT::Factory, "edifact"); + +/////////////////////////////////////////////////////////////////////////////// + + + +/////////////////////////////////////////////////////////////////////////////// + +LexerEDIFACT::LexerEDIFACT() +{ + m_bFold = false; + m_bHighlightAllUN = false; + m_chComponent = ':'; + m_chData = '+'; + m_chDecimal = '.'; + m_chRelease = '?'; + m_chSegment = '\''; +} + +void LexerEDIFACT::Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int, IDocument *pAccess) +{ + Sci_PositionU posFinish = startPos + lengthDoc; + InitialiseFromUNA(pAccess, posFinish); + + // Look backwards for a ' or a document beginning + Sci_PositionU posCurrent = FindPreviousEnd(pAccess, startPos); + // And jump past the ' if this was not the beginning of the document + if (posCurrent != 0) + posCurrent++; + + // Style buffer, so we're not issuing loads of notifications + LexAccessor styler (pAccess); + pAccess->StartStyling(posCurrent, '\377'); + styler.StartSegment(posCurrent); + Sci_Position posSegmentStart = -1; + + while ((posCurrent < posFinish) && (posSegmentStart == -1)) + { + posCurrent = ForwardPastWhitespace(pAccess, posCurrent, posFinish); + // Mark whitespace as default + styler.ColourTo(posCurrent - 1, SCE_EDI_DEFAULT); + if (posCurrent >= posFinish) + break; + + // Does is start with 3 charaters? ie, UNH + char SegmentHeader[4] = { 0 }; + pAccess->GetCharRange(SegmentHeader, posCurrent, 3); + + int SegmentStyle = DetectSegmentHeader(SegmentHeader); + if (SegmentStyle == SCE_EDI_BADSEGMENT) + break; + if (SegmentStyle == SCE_EDI_UNA) + { + posCurrent += 9; + styler.ColourTo(posCurrent - 1, SCE_EDI_UNA); // UNA + continue; + } + posSegmentStart = posCurrent; + posCurrent += 3; + + styler.ColourTo(posCurrent - 1, SegmentStyle); // UNH etc + + // Colour in the rest of the segment + for (char c; posCurrent < posFinish; posCurrent++) + { + pAccess->GetCharRange(&c, posCurrent, 1); + + if (c == m_chRelease) // ? escape character, check first, in case of ?' + posCurrent++; + else if (c == m_chSegment) // ' + { + // Make sure the whole segment is on one line. styler won't let us go back in time, so we'll settle for marking the ' as bad. + Sci_Position lineSegmentStart = pAccess->LineFromPosition(posSegmentStart); + Sci_Position lineSegmentEnd = pAccess->LineFromPosition(posCurrent); + if (lineSegmentStart == lineSegmentEnd) + styler.ColourTo(posCurrent, SCE_EDI_SEGMENTEND); + else + styler.ColourTo(posCurrent, SCE_EDI_BADSEGMENT); + posSegmentStart = -1; + posCurrent++; + break; + } + else if (c == m_chComponent) // : + styler.ColourTo(posCurrent, SCE_EDI_SEP_COMPOSITE); + else if (c == m_chData) // + + styler.ColourTo(posCurrent, SCE_EDI_SEP_ELEMENT); + else + styler.ColourTo(posCurrent, SCE_EDI_DEFAULT); + } + } + styler.Flush(); + + if (posSegmentStart == -1) + return; + + pAccess->StartStyling(posSegmentStart, -1); + pAccess->SetStyleFor(posFinish - posSegmentStart, SCE_EDI_BADSEGMENT); +} + +void LexerEDIFACT::Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int, IDocument *pAccess) +{ + if (!m_bFold) + return; + + // Fold at UNx lines. ie, UNx segments = 0, other segments = 1. + // There's no sub folding, so we can be quite simple. + Sci_Position endPos = startPos + lengthDoc; + char SegmentHeader[4] = { 0 }; + + int iIndentPrevious = 0; + Sci_Position lineLast = pAccess->LineFromPosition(endPos); + + for (Sci_Position lineCurrent = pAccess->LineFromPosition(startPos); lineCurrent <= lineLast; lineCurrent++) + { + Sci_Position posLineStart = pAccess->LineStart(lineCurrent); + posLineStart = ForwardPastWhitespace(pAccess, posLineStart, endPos); + Sci_Position lineDataStart = pAccess->LineFromPosition(posLineStart); + // Fill in whitespace lines? + for (; lineCurrent < lineDataStart; lineCurrent++) + pAccess->SetLevel(lineCurrent, SC_FOLDLEVELBASE | SC_FOLDLEVELWHITEFLAG | iIndentPrevious); + pAccess->GetCharRange(SegmentHeader, posLineStart, 3); + //if (DetectSegmentHeader(SegmentHeader) == SCE_EDI_BADSEGMENT) // Abort if this is not a proper segment header + + int level = 0; + if (memcmp(SegmentHeader, "UNH", 3) == 0) // UNH starts blocks + level = SC_FOLDLEVELBASE | SC_FOLDLEVELHEADERFLAG; + // Check for UNA,B and Z. All others are inside messages + else if (!memcmp(SegmentHeader, "UNA", 3) || !memcmp(SegmentHeader, "UNB", 3) || !memcmp(SegmentHeader, "UNZ", 3)) + level = SC_FOLDLEVELBASE; + else + level = SC_FOLDLEVELBASE | 1; + pAccess->SetLevel(lineCurrent, level); + iIndentPrevious = level & SC_FOLDLEVELNUMBERMASK; + } +} + +Sci_Position LexerEDIFACT::InitialiseFromUNA(IDocument *pAccess, Sci_PositionU MaxLength) +{ + MaxLength -= 9; // drop 9 chars, to give us room for UNA:+.? ' + + Sci_PositionU startPos = 0; + startPos += ForwardPastWhitespace(pAccess, 0, MaxLength); + if (startPos < MaxLength) + { + char bufUNA[9]; + pAccess->GetCharRange(bufUNA, startPos, 9); + + // Check it's UNA segment + if (!memcmp(bufUNA, "UNA", 3)) + { + m_chComponent = bufUNA[3]; + m_chData = bufUNA[4]; + m_chDecimal = bufUNA[5]; + m_chRelease = bufUNA[6]; + // bufUNA [7] should be space - reserved. + m_chSegment = bufUNA[8]; + + return 0; // success! + } + } + + // We failed to find a UNA, so drop to defaults + m_chComponent = ':'; + m_chData = '+'; + m_chDecimal = '.'; + m_chRelease = '?'; + m_chSegment = '\''; + + return -1; +} + +Sci_Position LexerEDIFACT::ForwardPastWhitespace(IDocument *pAccess, Sci_Position startPos, Sci_Position MaxLength) const +{ + char c; + + while (startPos < MaxLength) + { + pAccess->GetCharRange(&c, startPos, 1); + switch (c) + { + case '\t': + case '\r': + case '\n': + case ' ': + break; + default: + return startPos; + } + + startPos++; + } + + return MaxLength; +} + +int LexerEDIFACT::DetectSegmentHeader(char SegmentHeader[3]) const +{ + if ( + SegmentHeader[0] < 'A' || SegmentHeader[0] > 'Z' || + SegmentHeader[1] < 'A' || SegmentHeader[1] > 'Z' || + SegmentHeader[2] < 'A' || SegmentHeader[2] > 'Z') + return SCE_EDI_BADSEGMENT; + + if (!memcmp(SegmentHeader, "UNA", 3)) + return SCE_EDI_UNA; + + if (m_bHighlightAllUN && !memcmp(SegmentHeader, "UN", 2)) + return SCE_EDI_UNH; + else if (memcmp(SegmentHeader, "UNH", 3) == 0) + return SCE_EDI_UNH; + + return SCE_EDI_SEGMENTSTART; +} + +// Look backwards for a ' or a document beginning +Sci_Position LexerEDIFACT::FindPreviousEnd(IDocument *pAccess, Sci_Position startPos) const +{ + for (char c; startPos > 0; startPos--) + { + pAccess->GetCharRange(&c, startPos, 1); + if (c == m_chSegment) + return startPos; + } + // We didn't find a ', so just go with the beginning + return 0; +} + + diff --git a/third_party/qscintilla/scintilla/lexers/LexEScript.cpp b/third_party/qscintilla/scintilla/lexers/LexEScript.cpp new file mode 100644 index 0000000..0cba298 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexEScript.cpp @@ -0,0 +1,274 @@ +// Scintilla source code edit control +/** @file LexESCRIPT.cxx + ** Lexer for ESCRIPT + **/ +// Copyright 2003 by Patrizio Bekerle (patrizio@bekerle.com) + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_'); +} + +static inline bool IsAWordStart(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_'); +} + + + +static void ColouriseESCRIPTDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + + // Do not leak onto next line + /*if (initStyle == SCE_ESCRIPT_STRINGEOL) + initStyle = SCE_ESCRIPT_DEFAULT;*/ + + StyleContext sc(startPos, length, initStyle, styler); + + bool caseSensitive = styler.GetPropertyInt("escript.case.sensitive", 0) != 0; + + for (; sc.More(); sc.Forward()) { + + /*if (sc.atLineStart && (sc.state == SCE_ESCRIPT_STRING)) { + // Prevent SCE_ESCRIPT_STRINGEOL from leaking back to previous line + sc.SetState(SCE_ESCRIPT_STRING); + }*/ + + // Handle line continuation generically. + if (sc.ch == '\\') { + if (sc.chNext == '\n' || sc.chNext == '\r') { + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } + continue; + } + } + + // Determine if the current state should terminate. + if (sc.state == SCE_ESCRIPT_OPERATOR || sc.state == SCE_ESCRIPT_BRACE) { + sc.SetState(SCE_ESCRIPT_DEFAULT); + } else if (sc.state == SCE_ESCRIPT_NUMBER) { + if (!IsADigit(sc.ch) || sc.ch != '.') { + sc.SetState(SCE_ESCRIPT_DEFAULT); + } + } else if (sc.state == SCE_ESCRIPT_IDENTIFIER) { + if (!IsAWordChar(sc.ch) || (sc.ch == '.')) { + char s[100]; + if (caseSensitive) { + sc.GetCurrent(s, sizeof(s)); + } else { + sc.GetCurrentLowered(s, sizeof(s)); + } + +// sc.GetCurrentLowered(s, sizeof(s)); + + if (keywords.InList(s)) { + sc.ChangeState(SCE_ESCRIPT_WORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_ESCRIPT_WORD2); + } else if (keywords3.InList(s)) { + sc.ChangeState(SCE_ESCRIPT_WORD3); + // sc.state = SCE_ESCRIPT_IDENTIFIER; + } + sc.SetState(SCE_ESCRIPT_DEFAULT); + } + } else if (sc.state == SCE_ESCRIPT_COMMENT) { + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_ESCRIPT_DEFAULT); + } + } else if (sc.state == SCE_ESCRIPT_COMMENTDOC) { + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(SCE_ESCRIPT_DEFAULT); + } + } else if (sc.state == SCE_ESCRIPT_COMMENTLINE) { + if (sc.atLineEnd) { + sc.SetState(SCE_ESCRIPT_DEFAULT); + } + } else if (sc.state == SCE_ESCRIPT_STRING) { + if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_ESCRIPT_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_ESCRIPT_DEFAULT) { + if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_ESCRIPT_NUMBER); + } else if (IsAWordStart(sc.ch) || (sc.ch == '#')) { + sc.SetState(SCE_ESCRIPT_IDENTIFIER); + } else if (sc.Match('/', '*')) { + sc.SetState(SCE_ESCRIPT_COMMENT); + sc.Forward(); // Eat the * so it isn't used for the end of the comment + } else if (sc.Match('/', '/')) { + sc.SetState(SCE_ESCRIPT_COMMENTLINE); + } else if (sc.ch == '\"') { + sc.SetState(SCE_ESCRIPT_STRING); + //} else if (isoperator(static_cast(sc.ch))) { + } else if (sc.ch == '+' || sc.ch == '-' || sc.ch == '*' || sc.ch == '/' || sc.ch == '=' || sc.ch == '<' || sc.ch == '>' || sc.ch == '&' || sc.ch == '|' || sc.ch == '!' || sc.ch == '?' || sc.ch == ':') { + sc.SetState(SCE_ESCRIPT_OPERATOR); + } else if (sc.ch == '{' || sc.ch == '}') { + sc.SetState(SCE_ESCRIPT_BRACE); + } + } + + } + sc.Complete(); +} + + +static int classifyFoldPointESCRIPT(const char* s, const char* prevWord) { + int lev = 0; + if (strcmp(prevWord, "end") == 0) return lev; + if ((strcmp(prevWord, "else") == 0 && strcmp(s, "if") == 0) || strcmp(s, "elseif") == 0) + return -1; + + if (strcmp(s, "for") == 0 || strcmp(s, "foreach") == 0 + || strcmp(s, "program") == 0 || strcmp(s, "function") == 0 + || strcmp(s, "while") == 0 || strcmp(s, "case") == 0 + || strcmp(s, "if") == 0 ) { + lev = 1; + } else if ( strcmp(s, "endfor") == 0 || strcmp(s, "endforeach") == 0 + || strcmp(s, "endprogram") == 0 || strcmp(s, "endfunction") == 0 + || strcmp(s, "endwhile") == 0 || strcmp(s, "endcase") == 0 + || strcmp(s, "endif") == 0 ) { + lev = -1; + } + + return lev; +} + + +static bool IsStreamCommentStyle(int style) { + return style == SCE_ESCRIPT_COMMENT || + style == SCE_ESCRIPT_COMMENTDOC || + style == SCE_ESCRIPT_COMMENTLINE; +} + +static void FoldESCRIPTDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *[], Accessor &styler) { + //~ bool foldComment = styler.GetPropertyInt("fold.comment") != 0; + // Do not know how to fold the comment at the moment. + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + bool foldComment = true; + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + + Sci_Position lastStart = 0; + char prevWord[32] = ""; + + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + + + if (foldComment && IsStreamCommentStyle(style)) { + if (!IsStreamCommentStyle(stylePrev)) { + levelCurrent++; + } else if (!IsStreamCommentStyle(styleNext) && !atEOL) { + // Comments don't end at end of line and the next character may be unstyled. + levelCurrent--; + } + } + + if (foldComment && (style == SCE_ESCRIPT_COMMENTLINE)) { + if ((ch == '/') && (chNext == '/')) { + char chNext2 = styler.SafeGetCharAt(i + 2); + if (chNext2 == '{') { + levelCurrent++; + } else if (chNext2 == '}') { + levelCurrent--; + } + } + } + + if (stylePrev == SCE_ESCRIPT_DEFAULT && style == SCE_ESCRIPT_WORD3) + { + // Store last word start point. + lastStart = i; + } + + if (style == SCE_ESCRIPT_WORD3) { + if(iswordchar(ch) && !iswordchar(chNext)) { + char s[32]; + Sci_PositionU j; + for(j = 0; ( j < 31 ) && ( j < i-lastStart+1 ); j++) { + s[j] = static_cast(tolower(styler[lastStart + j])); + } + s[j] = '\0'; + levelCurrent += classifyFoldPointESCRIPT(s, prevWord); + strcpy(prevWord, s); + } + } + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + strcpy(prevWord, ""); + } + + if (!isspacechar(ch)) + visibleChars++; + } + + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + + + +static const char * const ESCRIPTWordLists[] = { + "Primary keywords and identifiers", + "Intrinsic functions", + "Extended and user defined functions", + 0, +}; + +LexerModule lmESCRIPT(SCLEX_ESCRIPT, ColouriseESCRIPTDoc, "escript", FoldESCRIPTDoc, ESCRIPTWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexEiffel.cpp b/third_party/qscintilla/scintilla/lexers/LexEiffel.cpp new file mode 100644 index 0000000..d1d42a9 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexEiffel.cpp @@ -0,0 +1,239 @@ +// Scintilla source code edit control +/** @file LexEiffel.cxx + ** Lexer for Eiffel. + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool isEiffelOperator(unsigned int ch) { + // '.' left out as it is used to make up numbers + return ch == '*' || ch == '/' || ch == '\\' || ch == '-' || ch == '+' || + ch == '(' || ch == ')' || ch == '=' || + ch == '{' || ch == '}' || ch == '~' || + ch == '[' || ch == ']' || ch == ';' || + ch == '<' || ch == '>' || ch == ',' || + ch == '.' || ch == '^' || ch == '%' || ch == ':' || + ch == '!' || ch == '@' || ch == '?'; +} + +static inline bool IsAWordChar(unsigned int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_'); +} + +static inline bool IsAWordStart(unsigned int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_'); +} + +static void ColouriseEiffelDoc(Sci_PositionU startPos, + Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + if (sc.state == SCE_EIFFEL_STRINGEOL) { + if (sc.ch != '\r' && sc.ch != '\n') { + sc.SetState(SCE_EIFFEL_DEFAULT); + } + } else if (sc.state == SCE_EIFFEL_OPERATOR) { + sc.SetState(SCE_EIFFEL_DEFAULT); + } else if (sc.state == SCE_EIFFEL_WORD) { + if (!IsAWordChar(sc.ch)) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + if (!keywords.InList(s)) { + sc.ChangeState(SCE_EIFFEL_IDENTIFIER); + } + sc.SetState(SCE_EIFFEL_DEFAULT); + } + } else if (sc.state == SCE_EIFFEL_NUMBER) { + if (!IsAWordChar(sc.ch)) { + sc.SetState(SCE_EIFFEL_DEFAULT); + } + } else if (sc.state == SCE_EIFFEL_COMMENTLINE) { + if (sc.ch == '\r' || sc.ch == '\n') { + sc.SetState(SCE_EIFFEL_DEFAULT); + } + } else if (sc.state == SCE_EIFFEL_STRING) { + if (sc.ch == '%') { + sc.Forward(); + } else if (sc.ch == '\"') { + sc.Forward(); + sc.SetState(SCE_EIFFEL_DEFAULT); + } + } else if (sc.state == SCE_EIFFEL_CHARACTER) { + if (sc.ch == '\r' || sc.ch == '\n') { + sc.SetState(SCE_EIFFEL_STRINGEOL); + } else if (sc.ch == '%') { + sc.Forward(); + } else if (sc.ch == '\'') { + sc.Forward(); + sc.SetState(SCE_EIFFEL_DEFAULT); + } + } + + if (sc.state == SCE_EIFFEL_DEFAULT) { + if (sc.ch == '-' && sc.chNext == '-') { + sc.SetState(SCE_EIFFEL_COMMENTLINE); + } else if (sc.ch == '\"') { + sc.SetState(SCE_EIFFEL_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_EIFFEL_CHARACTER); + } else if (IsADigit(sc.ch) || (sc.ch == '.')) { + sc.SetState(SCE_EIFFEL_NUMBER); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_EIFFEL_WORD); + } else if (isEiffelOperator(sc.ch)) { + sc.SetState(SCE_EIFFEL_OPERATOR); + } + } + } + sc.Complete(); +} + +static bool IsEiffelComment(Accessor &styler, Sci_Position pos, Sci_Position len) { + return len>1 && styler[pos]=='-' && styler[pos+1]=='-'; +} + +static void FoldEiffelDocIndent(Sci_PositionU startPos, Sci_Position length, int, + WordList *[], Accessor &styler) { + Sci_Position lengthDoc = startPos + length; + + // Backtrack to previous line in case need to fix its fold status + Sci_Position lineCurrent = styler.GetLine(startPos); + if (startPos > 0) { + if (lineCurrent > 0) { + lineCurrent--; + startPos = styler.LineStart(lineCurrent); + } + } + int spaceFlags = 0; + int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, IsEiffelComment); + char chNext = styler[startPos]; + for (Sci_Position i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + if ((ch == '\r' && chNext != '\n') || (ch == '\n') || (i == lengthDoc)) { + int lev = indentCurrent; + int indentNext = styler.IndentAmount(lineCurrent + 1, &spaceFlags, IsEiffelComment); + if (!(indentCurrent & SC_FOLDLEVELWHITEFLAG)) { + // Only non whitespace lines can be headers + if ((indentCurrent & SC_FOLDLEVELNUMBERMASK) < (indentNext & SC_FOLDLEVELNUMBERMASK)) { + lev |= SC_FOLDLEVELHEADERFLAG; + } else if (indentNext & SC_FOLDLEVELWHITEFLAG) { + // Line after is blank so check the next - maybe should continue further? + int spaceFlags2 = 0; + int indentNext2 = styler.IndentAmount(lineCurrent + 2, &spaceFlags2, IsEiffelComment); + if ((indentCurrent & SC_FOLDLEVELNUMBERMASK) < (indentNext2 & SC_FOLDLEVELNUMBERMASK)) { + lev |= SC_FOLDLEVELHEADERFLAG; + } + } + } + indentCurrent = indentNext; + styler.SetLevel(lineCurrent, lev); + lineCurrent++; + } + } +} + +static void FoldEiffelDocKeyWords(Sci_PositionU startPos, Sci_Position length, int /* initStyle */, WordList *[], + Accessor &styler) { + Sci_PositionU lengthDoc = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int stylePrev = 0; + int styleNext = styler.StyleAt(startPos); + // lastDeferred should be determined by looking back to last keyword in case + // the "deferred" is on a line before "class" + bool lastDeferred = false; + for (Sci_PositionU i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if ((stylePrev != SCE_EIFFEL_WORD) && (style == SCE_EIFFEL_WORD)) { + char s[20]; + Sci_PositionU j = 0; + while ((j < (sizeof(s) - 1)) && (iswordchar(styler[i + j]))) { + s[j] = styler[i + j]; + j++; + } + s[j] = '\0'; + + if ( + (strcmp(s, "check") == 0) || + (strcmp(s, "debug") == 0) || + (strcmp(s, "deferred") == 0) || + (strcmp(s, "do") == 0) || + (strcmp(s, "from") == 0) || + (strcmp(s, "if") == 0) || + (strcmp(s, "inspect") == 0) || + (strcmp(s, "once") == 0) + ) + levelCurrent++; + if (!lastDeferred && (strcmp(s, "class") == 0)) + levelCurrent++; + if (strcmp(s, "end") == 0) + levelCurrent--; + lastDeferred = strcmp(s, "deferred") == 0; + } + + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) + visibleChars++; + stylePrev = style; + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const eiffelWordListDesc[] = { + "Keywords", + 0 +}; + +LexerModule lmEiffel(SCLEX_EIFFEL, ColouriseEiffelDoc, "eiffel", FoldEiffelDocIndent, eiffelWordListDesc); +LexerModule lmEiffelkw(SCLEX_EIFFELKW, ColouriseEiffelDoc, "eiffelkw", FoldEiffelDocKeyWords, eiffelWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexErlang.cpp b/third_party/qscintilla/scintilla/lexers/LexErlang.cpp new file mode 100644 index 0000000..4ca5962 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexErlang.cpp @@ -0,0 +1,624 @@ +// Scintilla source code edit control +// Encoding: UTF-8 +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. +/** @file LexErlang.cxx + ** Lexer for Erlang. + ** Enhanced by Etienne 'Lenain' Girondel (lenaing@gmail.com) + ** Originally wrote by Peter-Henry Mander, + ** based on Matlab lexer by José Fonseca. + **/ + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static int is_radix(int radix, int ch) { + int digit; + + if (36 < radix || 2 > radix) + return 0; + + if (isdigit(ch)) { + digit = ch - '0'; + } else if (isalnum(ch)) { + digit = toupper(ch) - 'A' + 10; + } else { + return 0; + } + + return (digit < radix); +} + +typedef enum { + STATE_NULL, + COMMENT, + COMMENT_FUNCTION, + COMMENT_MODULE, + COMMENT_DOC, + COMMENT_DOC_MACRO, + ATOM_UNQUOTED, + ATOM_QUOTED, + NODE_NAME_UNQUOTED, + NODE_NAME_QUOTED, + MACRO_START, + MACRO_UNQUOTED, + MACRO_QUOTED, + RECORD_START, + RECORD_UNQUOTED, + RECORD_QUOTED, + NUMERAL_START, + NUMERAL_BASE_VALUE, + NUMERAL_FLOAT, + NUMERAL_EXPONENT, + PREPROCESSOR +} atom_parse_state_t; + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (ch != ' ') && (isalnum(ch) || ch == '_'); +} + +static void ColouriseErlangDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) { + + StyleContext sc(startPos, length, initStyle, styler); + WordList &reservedWords = *keywordlists[0]; + WordList &erlangBIFs = *keywordlists[1]; + WordList &erlangPreproc = *keywordlists[2]; + WordList &erlangModulesAtt = *keywordlists[3]; + WordList &erlangDoc = *keywordlists[4]; + WordList &erlangDocMacro = *keywordlists[5]; + int radix_digits = 0; + int exponent_digits = 0; + atom_parse_state_t parse_state = STATE_NULL; + atom_parse_state_t old_parse_state = STATE_NULL; + bool to_late_to_comment = false; + char cur[100]; + int old_style = SCE_ERLANG_DEFAULT; + + styler.StartAt(startPos); + + for (; sc.More(); sc.Forward()) { + int style = SCE_ERLANG_DEFAULT; + if (STATE_NULL != parse_state) { + + switch (parse_state) { + + case STATE_NULL : sc.SetState(SCE_ERLANG_DEFAULT); break; + + /* COMMENTS ------------------------------------------------------*/ + case COMMENT : { + if (sc.ch != '%') { + to_late_to_comment = true; + } else if (!to_late_to_comment && sc.ch == '%') { + // Switch to comment level 2 (Function) + sc.ChangeState(SCE_ERLANG_COMMENT_FUNCTION); + old_style = SCE_ERLANG_COMMENT_FUNCTION; + parse_state = COMMENT_FUNCTION; + sc.Forward(); + } + } + // V--- Falling through! + // Falls through. + case COMMENT_FUNCTION : { + if (sc.ch != '%') { + to_late_to_comment = true; + } else if (!to_late_to_comment && sc.ch == '%') { + // Switch to comment level 3 (Module) + sc.ChangeState(SCE_ERLANG_COMMENT_MODULE); + old_style = SCE_ERLANG_COMMENT_MODULE; + parse_state = COMMENT_MODULE; + sc.Forward(); + } + } + // V--- Falling through! + // Falls through. + case COMMENT_MODULE : { + if (parse_state != COMMENT) { + // Search for comment documentation + if (sc.chNext == '@') { + old_parse_state = parse_state; + parse_state = ('{' == sc.ch) + ? COMMENT_DOC_MACRO + : COMMENT_DOC; + sc.ForwardSetState(sc.state); + } + } + + // All comments types fall here. + if (sc.atLineEnd) { + to_late_to_comment = false; + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + case COMMENT_DOC : + // V--- Falling through! + case COMMENT_DOC_MACRO : { + + if (!isalnum(sc.ch)) { + // Try to match documentation comment + sc.GetCurrent(cur, sizeof(cur)); + + if (parse_state == COMMENT_DOC_MACRO + && erlangDocMacro.InList(cur)) { + sc.ChangeState(SCE_ERLANG_COMMENT_DOC_MACRO); + while (sc.ch != '}' && !sc.atLineEnd) + sc.Forward(); + } else if (erlangDoc.InList(cur)) { + sc.ChangeState(SCE_ERLANG_COMMENT_DOC); + } else { + sc.ChangeState(old_style); + } + + // Switch back to old state + sc.SetState(old_style); + parse_state = old_parse_state; + } + + if (sc.atLineEnd) { + to_late_to_comment = false; + sc.ChangeState(old_style); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* -------------------------------------------------------------- */ + /* Atoms ---------------------------------------------------------*/ + case ATOM_UNQUOTED : { + if ('@' == sc.ch){ + parse_state = NODE_NAME_UNQUOTED; + } else if (sc.ch == ':') { + // Searching for module name + if (sc.chNext == ' ') { + // error + sc.ChangeState(SCE_ERLANG_UNKNOWN); + parse_state = STATE_NULL; + } else { + sc.Forward(); + if (isalnum(sc.ch)) { + sc.GetCurrent(cur, sizeof(cur)); + sc.ChangeState(SCE_ERLANG_MODULES); + sc.SetState(SCE_ERLANG_MODULES); + } + } + } else if (!IsAWordChar(sc.ch)) { + + sc.GetCurrent(cur, sizeof(cur)); + if (reservedWords.InList(cur)) { + style = SCE_ERLANG_KEYWORD; + } else if (erlangBIFs.InList(cur) + && strcmp(cur,"erlang:")){ + style = SCE_ERLANG_BIFS; + } else if (sc.ch == '(' || '/' == sc.ch){ + style = SCE_ERLANG_FUNCTION_NAME; + } else { + style = SCE_ERLANG_ATOM; + } + + sc.ChangeState(style); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + + } break; + + case ATOM_QUOTED : { + if ( '@' == sc.ch ){ + parse_state = NODE_NAME_QUOTED; + } else if ('\'' == sc.ch && '\\' != sc.chPrev) { + sc.ChangeState(SCE_ERLANG_ATOM); + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* -------------------------------------------------------------- */ + /* Node names ----------------------------------------------------*/ + case NODE_NAME_UNQUOTED : { + if ('@' == sc.ch) { + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } else if (!IsAWordChar(sc.ch)) { + sc.ChangeState(SCE_ERLANG_NODE_NAME); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + case NODE_NAME_QUOTED : { + if ('@' == sc.ch) { + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } else if ('\'' == sc.ch && '\\' != sc.chPrev) { + sc.ChangeState(SCE_ERLANG_NODE_NAME_QUOTED); + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* -------------------------------------------------------------- */ + /* Records -------------------------------------------------------*/ + case RECORD_START : { + if ('\'' == sc.ch) { + parse_state = RECORD_QUOTED; + } else if (isalpha(sc.ch) && islower(sc.ch)) { + parse_state = RECORD_UNQUOTED; + } else { // error + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + case RECORD_UNQUOTED : { + if (!IsAWordChar(sc.ch)) { + sc.ChangeState(SCE_ERLANG_RECORD); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + case RECORD_QUOTED : { + if ('\'' == sc.ch && '\\' != sc.chPrev) { + sc.ChangeState(SCE_ERLANG_RECORD_QUOTED); + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* -------------------------------------------------------------- */ + /* Macros --------------------------------------------------------*/ + case MACRO_START : { + if ('\'' == sc.ch) { + parse_state = MACRO_QUOTED; + } else if (isalpha(sc.ch)) { + parse_state = MACRO_UNQUOTED; + } else { // error + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + case MACRO_UNQUOTED : { + if (!IsAWordChar(sc.ch)) { + sc.ChangeState(SCE_ERLANG_MACRO); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + case MACRO_QUOTED : { + if ('\'' == sc.ch && '\\' != sc.chPrev) { + sc.ChangeState(SCE_ERLANG_MACRO_QUOTED); + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* -------------------------------------------------------------- */ + /* Numerics ------------------------------------------------------*/ + /* Simple integer */ + case NUMERAL_START : { + if (isdigit(sc.ch)) { + radix_digits *= 10; + radix_digits += sc.ch - '0'; // Assuming ASCII here! + } else if ('#' == sc.ch) { + if (2 > radix_digits || 36 < radix_digits) { + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } else { + parse_state = NUMERAL_BASE_VALUE; + } + } else if ('.' == sc.ch && isdigit(sc.chNext)) { + radix_digits = 0; + parse_state = NUMERAL_FLOAT; + } else if ('e' == sc.ch || 'E' == sc.ch) { + exponent_digits = 0; + parse_state = NUMERAL_EXPONENT; + } else { + radix_digits = 0; + sc.ChangeState(SCE_ERLANG_NUMBER); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* Integer in other base than 10 (x#yyy) */ + case NUMERAL_BASE_VALUE : { + if (!is_radix(radix_digits,sc.ch)) { + radix_digits = 0; + + if (!isalnum(sc.ch)) + sc.ChangeState(SCE_ERLANG_NUMBER); + + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* Float (x.yyy) */ + case NUMERAL_FLOAT : { + if ('e' == sc.ch || 'E' == sc.ch) { + exponent_digits = 0; + parse_state = NUMERAL_EXPONENT; + } else if (!isdigit(sc.ch)) { + sc.ChangeState(SCE_ERLANG_NUMBER); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + /* Exponent, either integer or float (xEyy, x.yyEzzz) */ + case NUMERAL_EXPONENT : { + if (('-' == sc.ch || '+' == sc.ch) + && (isdigit(sc.chNext))) { + sc.Forward(); + } else if (!isdigit(sc.ch)) { + if (0 < exponent_digits) + sc.ChangeState(SCE_ERLANG_NUMBER); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } else { + ++exponent_digits; + } + } break; + + /* -------------------------------------------------------------- */ + /* Preprocessor --------------------------------------------------*/ + case PREPROCESSOR : { + if (!IsAWordChar(sc.ch)) { + + sc.GetCurrent(cur, sizeof(cur)); + if (erlangPreproc.InList(cur)) { + style = SCE_ERLANG_PREPROC; + } else if (erlangModulesAtt.InList(cur)) { + style = SCE_ERLANG_MODULES_ATT; + } + + sc.ChangeState(style); + sc.SetState(SCE_ERLANG_DEFAULT); + parse_state = STATE_NULL; + } + } break; + + } + + } /* End of : STATE_NULL != parse_state */ + else + { + switch (sc.state) { + case SCE_ERLANG_VARIABLE : { + if (!IsAWordChar(sc.ch)) + sc.SetState(SCE_ERLANG_DEFAULT); + } break; + case SCE_ERLANG_STRING : { + if (sc.ch == '\"' && sc.chPrev != '\\') + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + } break; + case SCE_ERLANG_COMMENT : { + if (sc.atLineEnd) + sc.SetState(SCE_ERLANG_DEFAULT); + } break; + case SCE_ERLANG_CHARACTER : { + if (sc.chPrev == '\\') { + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + } else if (sc.ch != '\\') { + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + } + } break; + case SCE_ERLANG_OPERATOR : { + if (sc.chPrev == '.') { + if (sc.ch == '*' || sc.ch == '/' || sc.ch == '\\' + || sc.ch == '^') { + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + } else if (sc.ch == '\'') { + sc.ForwardSetState(SCE_ERLANG_DEFAULT); + } else { + sc.SetState(SCE_ERLANG_DEFAULT); + } + } else { + sc.SetState(SCE_ERLANG_DEFAULT); + } + } break; + } + } + + if (sc.state == SCE_ERLANG_DEFAULT) { + bool no_new_state = false; + + switch (sc.ch) { + case '\"' : sc.SetState(SCE_ERLANG_STRING); break; + case '$' : sc.SetState(SCE_ERLANG_CHARACTER); break; + case '%' : { + parse_state = COMMENT; + sc.SetState(SCE_ERLANG_COMMENT); + } break; + case '#' : { + parse_state = RECORD_START; + sc.SetState(SCE_ERLANG_UNKNOWN); + } break; + case '?' : { + parse_state = MACRO_START; + sc.SetState(SCE_ERLANG_UNKNOWN); + } break; + case '\'' : { + parse_state = ATOM_QUOTED; + sc.SetState(SCE_ERLANG_UNKNOWN); + } break; + case '+' : + case '-' : { + if (IsADigit(sc.chNext)) { + parse_state = NUMERAL_START; + radix_digits = 0; + sc.SetState(SCE_ERLANG_UNKNOWN); + } else if (sc.ch != '+') { + parse_state = PREPROCESSOR; + sc.SetState(SCE_ERLANG_UNKNOWN); + } + } break; + default : no_new_state = true; + } + + if (no_new_state) { + if (isdigit(sc.ch)) { + parse_state = NUMERAL_START; + radix_digits = sc.ch - '0'; + sc.SetState(SCE_ERLANG_UNKNOWN); + } else if (isupper(sc.ch) || '_' == sc.ch) { + sc.SetState(SCE_ERLANG_VARIABLE); + } else if (isalpha(sc.ch)) { + parse_state = ATOM_UNQUOTED; + sc.SetState(SCE_ERLANG_UNKNOWN); + } else if (isoperator(static_cast(sc.ch)) + || sc.ch == '\\') { + sc.SetState(SCE_ERLANG_OPERATOR); + } + } + } + + } + sc.Complete(); +} + +static int ClassifyErlangFoldPoint( + Accessor &styler, + int styleNext, + Sci_Position keyword_start +) { + int lev = 0; + if (styler.Match(keyword_start,"case") + || ( + styler.Match(keyword_start,"fun") + && (SCE_ERLANG_FUNCTION_NAME != styleNext) + ) + || styler.Match(keyword_start,"if") + || styler.Match(keyword_start,"query") + || styler.Match(keyword_start,"receive") + ) { + ++lev; + } else if (styler.Match(keyword_start,"end")) { + --lev; + } + + return lev; +} + +static void FoldErlangDoc( + Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList** /*keywordlists*/, Accessor &styler +) { + Sci_PositionU endPos = startPos + length; + Sci_Position currentLine = styler.GetLine(startPos); + int lev; + int previousLevel = styler.LevelAt(currentLine) & SC_FOLDLEVELNUMBERMASK; + int currentLevel = previousLevel; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + int stylePrev; + Sci_Position keyword_start = 0; + char ch; + char chNext = styler.SafeGetCharAt(startPos); + bool atEOL; + + for (Sci_PositionU i = startPos; i < endPos; i++) { + ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + // Get styles + stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + atEOL = ((ch == '\r') && (chNext != '\n')) || (ch == '\n'); + + if (stylePrev != SCE_ERLANG_KEYWORD + && style == SCE_ERLANG_KEYWORD) { + keyword_start = i; + } + + // Fold on keywords + if (stylePrev == SCE_ERLANG_KEYWORD + && style != SCE_ERLANG_KEYWORD + && style != SCE_ERLANG_ATOM + ) { + currentLevel += ClassifyErlangFoldPoint(styler, + styleNext, + keyword_start); + } + + // Fold on comments + if (style == SCE_ERLANG_COMMENT + || style == SCE_ERLANG_COMMENT_MODULE + || style == SCE_ERLANG_COMMENT_FUNCTION) { + + if (ch == '%' && chNext == '{') { + currentLevel++; + } else if (ch == '%' && chNext == '}') { + currentLevel--; + } + } + + // Fold on braces + if (style == SCE_ERLANG_OPERATOR) { + if (ch == '{' || ch == '(' || ch == '[') { + currentLevel++; + } else if (ch == '}' || ch == ')' || ch == ']') { + currentLevel--; + } + } + + + if (atEOL) { + lev = previousLevel; + + if (currentLevel > previousLevel) + lev |= SC_FOLDLEVELHEADERFLAG; + + if (lev != styler.LevelAt(currentLine)) + styler.SetLevel(currentLine, lev); + + currentLine++; + previousLevel = currentLevel; + } + + } + + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + styler.SetLevel(currentLine, + previousLevel + | (styler.LevelAt(currentLine) & ~SC_FOLDLEVELNUMBERMASK)); +} + +static const char * const erlangWordListDesc[] = { + "Erlang Reserved words", + "Erlang BIFs", + "Erlang Preprocessor", + "Erlang Module Attributes", + "Erlang Documentation", + "Erlang Documentation Macro", + 0 +}; + +LexerModule lmErlang( + SCLEX_ERLANG, + ColouriseErlangDoc, + "erlang", + FoldErlangDoc, + erlangWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexErrorList.cpp b/third_party/qscintilla/scintilla/lexers/LexErrorList.cpp new file mode 100644 index 0000000..b3dcd2a --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexErrorList.cpp @@ -0,0 +1,393 @@ +// Scintilla source code edit control +/** @file LexErrorList.cxx + ** Lexer for error lists. Used for the output pane in SciTE. + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static bool strstart(const char *haystack, const char *needle) { + return strncmp(haystack, needle, strlen(needle)) == 0; +} + +static bool Is0To9(char ch) { + return (ch >= '0') && (ch <= '9'); +} + +static bool Is1To9(char ch) { + return (ch >= '1') && (ch <= '9'); +} + +static bool IsAlphabetic(int ch) { + return IsASCII(ch) && isalpha(ch); +} + +static inline bool AtEOL(Accessor &styler, Sci_PositionU i) { + return (styler[i] == '\n') || + ((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n')); +} + +static int RecogniseErrorListLine(const char *lineBuffer, Sci_PositionU lengthLine, Sci_Position &startValue) { + if (lineBuffer[0] == '>') { + // Command or return status + return SCE_ERR_CMD; + } else if (lineBuffer[0] == '<') { + // Diff removal. + return SCE_ERR_DIFF_DELETION; + } else if (lineBuffer[0] == '!') { + return SCE_ERR_DIFF_CHANGED; + } else if (lineBuffer[0] == '+') { + if (strstart(lineBuffer, "+++ ")) { + return SCE_ERR_DIFF_MESSAGE; + } else { + return SCE_ERR_DIFF_ADDITION; + } + } else if (lineBuffer[0] == '-') { + if (strstart(lineBuffer, "--- ")) { + return SCE_ERR_DIFF_MESSAGE; + } else { + return SCE_ERR_DIFF_DELETION; + } + } else if (strstart(lineBuffer, "cf90-")) { + // Absoft Pro Fortran 90/95 v8.2 error and/or warning message + return SCE_ERR_ABSF; + } else if (strstart(lineBuffer, "fortcom:")) { + // Intel Fortran Compiler v8.0 error/warning message + return SCE_ERR_IFORT; + } else if (strstr(lineBuffer, "File \"") && strstr(lineBuffer, ", line ")) { + return SCE_ERR_PYTHON; + } else if (strstr(lineBuffer, " in ") && strstr(lineBuffer, " on line ")) { + return SCE_ERR_PHP; + } else if ((strstart(lineBuffer, "Error ") || + strstart(lineBuffer, "Warning ")) && + strstr(lineBuffer, " at (") && + strstr(lineBuffer, ") : ") && + (strstr(lineBuffer, " at (") < strstr(lineBuffer, ") : "))) { + // Intel Fortran Compiler error/warning message + return SCE_ERR_IFC; + } else if (strstart(lineBuffer, "Error ")) { + // Borland error message + return SCE_ERR_BORLAND; + } else if (strstart(lineBuffer, "Warning ")) { + // Borland warning message + return SCE_ERR_BORLAND; + } else if (strstr(lineBuffer, "at line ") && + (strstr(lineBuffer, "at line ") < (lineBuffer + lengthLine)) && + strstr(lineBuffer, "file ") && + (strstr(lineBuffer, "file ") < (lineBuffer + lengthLine))) { + // Lua 4 error message + return SCE_ERR_LUA; + } else if (strstr(lineBuffer, " at ") && + (strstr(lineBuffer, " at ") < (lineBuffer + lengthLine)) && + strstr(lineBuffer, " line ") && + (strstr(lineBuffer, " line ") < (lineBuffer + lengthLine)) && + (strstr(lineBuffer, " at ") + 4 < (strstr(lineBuffer, " line ")))) { + // perl error message: + // at line + return SCE_ERR_PERL; + } else if ((lengthLine >= 6) && + (memcmp(lineBuffer, " at ", 6) == 0) && + strstr(lineBuffer, ":line ")) { + // A .NET traceback + return SCE_ERR_NET; + } else if (strstart(lineBuffer, "Line ") && + strstr(lineBuffer, ", file ")) { + // Essential Lahey Fortran error message + return SCE_ERR_ELF; + } else if (strstart(lineBuffer, "line ") && + strstr(lineBuffer, " column ")) { + // HTML tidy style: line 42 column 1 + return SCE_ERR_TIDY; + } else if (strstart(lineBuffer, "\tat ") && + strstr(lineBuffer, "(") && + strstr(lineBuffer, ".java:")) { + // Java stack back trace + return SCE_ERR_JAVA_STACK; + } else if (strstart(lineBuffer, "In file included from ") || + strstart(lineBuffer, " from ")) { + // GCC showing include path to following error + return SCE_ERR_GCC_INCLUDED_FROM; + } else if (strstr(lineBuffer, "warning LNK")) { + // Microsoft linker warning: + // { : } warning LNK9999 + return SCE_ERR_MS; + } else { + // Look for one of the following formats: + // GCC: :: + // Microsoft: () : + // Common: (): warning|error|note|remark|catastrophic|fatal + // Common: () warning|error|note|remark|catastrophic|fatal + // Microsoft: (,) + // CTags: \t\t + // Lua 5 traceback: \t:: + // Lua 5.1: : :: + const bool initialTab = (lineBuffer[0] == '\t'); + bool initialColonPart = false; + bool canBeCtags = !initialTab; // For ctags must have an identifier with no spaces then a tab + enum { stInitial, + stGccStart, stGccDigit, stGccColumn, stGcc, + stMsStart, stMsDigit, stMsBracket, stMsVc, stMsDigitComma, stMsDotNet, + stCtagsStart, stCtagsFile, stCtagsStartString, stCtagsStringDollar, stCtags, + stUnrecognized + } state = stInitial; + for (Sci_PositionU i = 0; i < lengthLine; i++) { + const char ch = lineBuffer[i]; + char chNext = ' '; + if ((i + 1) < lengthLine) + chNext = lineBuffer[i + 1]; + if (state == stInitial) { + if (ch == ':') { + // May be GCC, or might be Lua 5 (Lua traceback same but with tab prefix) + if ((chNext != '\\') && (chNext != '/') && (chNext != ' ')) { + // This check is not completely accurate as may be on + // GTK+ with a file name that includes ':'. + state = stGccStart; + } else if (chNext == ' ') { // indicates a Lua 5.1 error message + initialColonPart = true; + } + } else if ((ch == '(') && Is1To9(chNext) && (!initialTab)) { + // May be Microsoft + // Check against '0' often removes phone numbers + state = stMsStart; + } else if ((ch == '\t') && canBeCtags) { + // May be CTags + state = stCtagsStart; + } else if (ch == ' ') { + canBeCtags = false; + } + } else if (state == stGccStart) { // : + state = Is0To9(ch) ? stGccDigit : stUnrecognized; + } else if (state == stGccDigit) { // : + if (ch == ':') { + state = stGccColumn; // :9.*: is GCC + startValue = i + 1; + } else if (!Is0To9(ch)) { + state = stUnrecognized; + } + } else if (state == stGccColumn) { // :: + if (!Is0To9(ch)) { + state = stGcc; + if (ch == ':') + startValue = i + 1; + break; + } + } else if (state == stMsStart) { // ( + state = Is0To9(ch) ? stMsDigit : stUnrecognized; + } else if (state == stMsDigit) { // ( + if (ch == ',') { + state = stMsDigitComma; + } else if (ch == ')') { + state = stMsBracket; + } else if ((ch != ' ') && !Is0To9(ch)) { + state = stUnrecognized; + } + } else if (state == stMsBracket) { // () + if ((ch == ' ') && (chNext == ':')) { + state = stMsVc; + } else if ((ch == ':' && chNext == ' ') || (ch == ' ')) { + // Possibly Delphi.. don't test against chNext as it's one of the strings below. + char word[512]; + Sci_PositionU j, chPos; + unsigned numstep; + chPos = 0; + if (ch == ' ') + numstep = 1; // ch was ' ', handle as if it's a delphi errorline, only add 1 to i. + else + numstep = 2; // otherwise add 2. + for (j = i + numstep; j < lengthLine && IsAlphabetic(lineBuffer[j]) && chPos < sizeof(word) - 1; j++) + word[chPos++] = lineBuffer[j]; + word[chPos] = 0; + if (!CompareCaseInsensitive(word, "error") || !CompareCaseInsensitive(word, "warning") || + !CompareCaseInsensitive(word, "fatal") || !CompareCaseInsensitive(word, "catastrophic") || + !CompareCaseInsensitive(word, "note") || !CompareCaseInsensitive(word, "remark")) { + state = stMsVc; + } else { + state = stUnrecognized; + } + } else { + state = stUnrecognized; + } + } else if (state == stMsDigitComma) { // (, + if (ch == ')') { + state = stMsDotNet; + break; + } else if ((ch != ' ') && !Is0To9(ch)) { + state = stUnrecognized; + } + } else if (state == stCtagsStart) { + if (ch == '\t') { + state = stCtagsFile; + } + } else if (state == stCtagsFile) { + if ((lineBuffer[i - 1] == '\t') && + ((ch == '/' && chNext == '^') || Is0To9(ch))) { + state = stCtags; + break; + } else if ((ch == '/') && (chNext == '^')) { + state = stCtagsStartString; + } + } else if ((state == stCtagsStartString) && ((lineBuffer[i] == '$') && (lineBuffer[i + 1] == '/'))) { + state = stCtagsStringDollar; + break; + } + } + if (state == stGcc) { + return initialColonPart ? SCE_ERR_LUA : SCE_ERR_GCC; + } else if ((state == stMsVc) || (state == stMsDotNet)) { + return SCE_ERR_MS; + } else if ((state == stCtagsStringDollar) || (state == stCtags)) { + return SCE_ERR_CTAG; + } else if (initialColonPart && strstr(lineBuffer, ": warning C")) { + // Microsoft warning without line number + // : warning C9999 + return SCE_ERR_MS; + } else { + return SCE_ERR_DEFAULT; + } + } +} + +#define CSI "\033[" + +namespace { + +bool SequenceEnd(int ch) { + return (ch == 0) || ((ch >= '@') && (ch <= '~')); +} + +int StyleFromSequence(const char *seq) { + int bold = 0; + int colour = 0; + while (!SequenceEnd(*seq)) { + if (Is0To9(*seq)) { + int base = *seq - '0'; + if (Is0To9(seq[1])) { + base = base * 10; + base += seq[1] - '0'; + seq++; + } + if (base == 0) { + colour = 0; + bold = 0; + } + else if (base == 1) { + bold = 1; + } + else if (base >= 30 && base <= 37) { + colour = base - 30; + } + } + seq++; + } + return SCE_ERR_ES_BLACK + bold * 8 + colour; +} + +} + +static void ColouriseErrorListLine( + char *lineBuffer, + Sci_PositionU lengthLine, + Sci_PositionU endPos, + Accessor &styler, + bool valueSeparate, + bool escapeSequences) { + Sci_Position startValue = -1; + int style = RecogniseErrorListLine(lineBuffer, lengthLine, startValue); + if (escapeSequences && strstr(lineBuffer, CSI)) { + const Sci_Position startPos = endPos - lengthLine; + const char *linePortion = lineBuffer; + Sci_Position startPortion = startPos; + int portionStyle = style; + while (const char *startSeq = strstr(linePortion, CSI)) { + if (startSeq > linePortion) { + styler.ColourTo(startPortion + static_cast(startSeq - linePortion), portionStyle); + } + const char *endSeq = startSeq + 2; + while (!SequenceEnd(*endSeq)) + endSeq++; + const Sci_Position endSeqPosition = startPortion + static_cast(endSeq - linePortion) + 1; + switch (*endSeq) { + case 0: + styler.ColourTo(endPos, SCE_ERR_ESCSEQ_UNKNOWN); + return; + case 'm': // Colour command + styler.ColourTo(endSeqPosition, SCE_ERR_ESCSEQ); + portionStyle = StyleFromSequence(startSeq+2); + break; + case 'K': // Erase to end of line -> ignore + styler.ColourTo(endSeqPosition, SCE_ERR_ESCSEQ); + break; + default: + styler.ColourTo(endSeqPosition, SCE_ERR_ESCSEQ_UNKNOWN); + portionStyle = style; + } + startPortion = endSeqPosition; + linePortion = endSeq + 1; + } + styler.ColourTo(endPos, portionStyle); + } else { + if (valueSeparate && (startValue >= 0)) { + styler.ColourTo(endPos - (lengthLine - startValue), style); + styler.ColourTo(endPos, SCE_ERR_VALUE); + } else { + styler.ColourTo(endPos, style); + } + } +} + +static void ColouriseErrorListDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) { + char lineBuffer[10000]; + styler.StartAt(startPos); + styler.StartSegment(startPos); + Sci_PositionU linePos = 0; + + // property lexer.errorlist.value.separate + // For lines in the output pane that are matches from Find in Files or GCC-style + // diagnostics, style the path and line number separately from the rest of the + // line with style 21 used for the rest of the line. + // This allows matched text to be more easily distinguished from its location. + const bool valueSeparate = styler.GetPropertyInt("lexer.errorlist.value.separate", 0) != 0; + + // property lexer.errorlist.escape.sequences + // Set to 1 to interpret escape sequences. + const bool escapeSequences = styler.GetPropertyInt("lexer.errorlist.escape.sequences") != 0; + + for (Sci_PositionU i = startPos; i < startPos + length; i++) { + lineBuffer[linePos++] = styler[i]; + if (AtEOL(styler, i) || (linePos >= sizeof(lineBuffer) - 1)) { + // End of line (or of line buffer) met, colourise it + lineBuffer[linePos] = '\0'; + ColouriseErrorListLine(lineBuffer, linePos, i, styler, valueSeparate, escapeSequences); + linePos = 0; + } + } + if (linePos > 0) { // Last line does not have ending characters + lineBuffer[linePos] = '\0'; + ColouriseErrorListLine(lineBuffer, linePos, startPos + length - 1, styler, valueSeparate, escapeSequences); + } +} + +static const char *const emptyWordListDesc[] = { + 0 +}; + +LexerModule lmErrorList(SCLEX_ERRORLIST, ColouriseErrorListDoc, "errorlist", 0, emptyWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexFlagship.cpp b/third_party/qscintilla/scintilla/lexers/LexFlagship.cpp new file mode 100644 index 0000000..b73c1aa --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexFlagship.cpp @@ -0,0 +1,352 @@ +// Scintilla source code edit control +/** @file LexFlagShip.cxx + ** Lexer for Harbour and FlagShip. + ** (Syntactically compatible to other xBase dialects, like Clipper, dBase, Clip, FoxPro etc.) + **/ +// Copyright 2005 by Randy Butler +// Copyright 2010 by Xavi (Harbour) +// Copyright 1998-2003 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +// Extended to accept accented characters +static inline bool IsAWordChar(int ch) +{ + return ch >= 0x80 || + (isalnum(ch) || ch == '_'); +} + +static void ColouriseFlagShipDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) +{ + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + WordList &keywords4 = *keywordlists[3]; + WordList &keywords5 = *keywordlists[4]; + + // property lexer.flagship.styling.within.preprocessor + // For Harbour code, determines whether all preprocessor code is styled in the preprocessor style (0) or only from the + // initial # to the end of the command word(1, the default). It also determines how to present text, dump, and disabled code. + bool stylingWithinPreprocessor = styler.GetPropertyInt("lexer.flagship.styling.within.preprocessor", 1) != 0; + + CharacterSet setDoxygen(CharacterSet::setAlpha, "$@\\&<>#{}[]"); + + int visibleChars = 0; + int closeStringChar = 0; + int styleBeforeDCKeyword = SCE_FS_DEFAULT; + bool bEnableCode = initStyle < SCE_FS_DISABLEDCODE; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + // Determine if the current state should terminate. + switch (sc.state) { + case SCE_FS_OPERATOR: + case SCE_FS_OPERATOR_C: + case SCE_FS_WORDOPERATOR: + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + break; + case SCE_FS_IDENTIFIER: + case SCE_FS_IDENTIFIER_C: + if (!IsAWordChar(sc.ch)) { + char s[64]; + sc.GetCurrentLowered(s, sizeof(s)); + if (keywords.InList(s)) { + sc.ChangeState(bEnableCode ? SCE_FS_KEYWORD : SCE_FS_KEYWORD_C); + } else if (keywords2.InList(s)) { + sc.ChangeState(bEnableCode ? SCE_FS_KEYWORD2 : SCE_FS_KEYWORD2_C); + } else if (bEnableCode && keywords3.InList(s)) { + sc.ChangeState(SCE_FS_KEYWORD3); + } else if (bEnableCode && keywords4.InList(s)) { + sc.ChangeState(SCE_FS_KEYWORD4); + }// Else, it is really an identifier... + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } + break; + case SCE_FS_NUMBER: + if (!IsAWordChar(sc.ch) && !(sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_FS_DEFAULT); + } + break; + case SCE_FS_NUMBER_C: + if (!IsAWordChar(sc.ch) && sc.ch != '.') { + sc.SetState(SCE_FS_DEFAULT_C); + } + break; + case SCE_FS_CONSTANT: + if (!IsAWordChar(sc.ch)) { + sc.SetState(SCE_FS_DEFAULT); + } + break; + case SCE_FS_STRING: + case SCE_FS_STRING_C: + if (sc.ch == closeStringChar) { + sc.ForwardSetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } else if (sc.atLineEnd) { + sc.ChangeState(bEnableCode ? SCE_FS_STRINGEOL : SCE_FS_STRINGEOL_C); + } + break; + case SCE_FS_STRINGEOL: + case SCE_FS_STRINGEOL_C: + if (sc.atLineStart) { + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } + break; + case SCE_FS_COMMENTDOC: + case SCE_FS_COMMENTDOC_C: + if (sc.Match('*', '/')) { + sc.Forward(); + sc.ForwardSetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '*') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = bEnableCode ? SCE_FS_COMMENTDOC : SCE_FS_COMMENTDOC_C; + sc.SetState(SCE_FS_COMMENTDOCKEYWORD); + } + } + break; + case SCE_FS_COMMENT: + case SCE_FS_COMMENTLINE: + if (sc.atLineStart) { + sc.SetState(SCE_FS_DEFAULT); + } + break; + case SCE_FS_COMMENTLINEDOC: + case SCE_FS_COMMENTLINEDOC_C: + if (sc.atLineStart) { + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support + // Verify that we have the conditions to mark a comment-doc-keyword + if ((IsASpace(sc.chPrev) || sc.chPrev == '/' || sc.chPrev == '!') && (!IsASpace(sc.chNext))) { + styleBeforeDCKeyword = bEnableCode ? SCE_FS_COMMENTLINEDOC : SCE_FS_COMMENTLINEDOC_C; + sc.SetState(SCE_FS_COMMENTDOCKEYWORD); + } + } + break; + case SCE_FS_COMMENTDOCKEYWORD: + if ((styleBeforeDCKeyword == SCE_FS_COMMENTDOC || styleBeforeDCKeyword == SCE_FS_COMMENTDOC_C) && + sc.Match('*', '/')) { + sc.ChangeState(SCE_FS_COMMENTDOCKEYWORDERROR); + sc.Forward(); + sc.ForwardSetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } else if (!setDoxygen.Contains(sc.ch)) { + char s[64]; + sc.GetCurrentLowered(s, sizeof(s)); + if (!IsASpace(sc.ch) || !keywords5.InList(s + 1)) { + sc.ChangeState(SCE_FS_COMMENTDOCKEYWORDERROR); + } + sc.SetState(styleBeforeDCKeyword); + } + break; + case SCE_FS_PREPROCESSOR: + case SCE_FS_PREPROCESSOR_C: + if (sc.atLineEnd) { + if (!(sc.chPrev == ';' || sc.GetRelative(-2) == ';')) { + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } + } else if (stylingWithinPreprocessor) { + if (IsASpaceOrTab(sc.ch)) { + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } + } else if (sc.Match('/', '*') || sc.Match('/', '/') || sc.Match('&', '&')) { + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } + break; + case SCE_FS_DISABLEDCODE: + if (sc.ch == '#' && visibleChars == 0) { + sc.SetState(bEnableCode ? SCE_FS_PREPROCESSOR : SCE_FS_PREPROCESSOR_C); + do { // Skip whitespace between # and preprocessor word + sc.Forward(); + } while (IsASpaceOrTab(sc.ch) && sc.More()); + if (sc.MatchIgnoreCase("pragma")) { + sc.Forward(6); + do { // Skip more whitespace until keyword + sc.Forward(); + } while (IsASpaceOrTab(sc.ch) && sc.More()); + if (sc.MatchIgnoreCase("enddump") || sc.MatchIgnoreCase("__endtext")) { + bEnableCode = true; + sc.SetState(SCE_FS_DISABLEDCODE); + sc.Forward(sc.ch == '_' ? 8 : 6); + sc.ForwardSetState(SCE_FS_DEFAULT); + } else { + sc.ChangeState(SCE_FS_DISABLEDCODE); + } + } else { + sc.ChangeState(SCE_FS_DISABLEDCODE); + } + } + break; + case SCE_FS_DATE: + if (sc.ch == '}') { + sc.ForwardSetState(SCE_FS_DEFAULT); + } else if (sc.atLineEnd) { + sc.ChangeState(SCE_FS_STRINGEOL); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_FS_DEFAULT || sc.state == SCE_FS_DEFAULT_C) { + if (bEnableCode && + (sc.MatchIgnoreCase(".and.") || sc.MatchIgnoreCase(".not."))) { + sc.SetState(SCE_FS_WORDOPERATOR); + sc.Forward(4); + } else if (bEnableCode && sc.MatchIgnoreCase(".or.")) { + sc.SetState(SCE_FS_WORDOPERATOR); + sc.Forward(3); + } else if (bEnableCode && + (sc.MatchIgnoreCase(".t.") || sc.MatchIgnoreCase(".f.") || + (!IsAWordChar(sc.GetRelative(3)) && sc.MatchIgnoreCase("nil")))) { + sc.SetState(SCE_FS_CONSTANT); + sc.Forward(2); + } else if (sc.Match('/', '*')) { + sc.SetState(bEnableCode ? SCE_FS_COMMENTDOC : SCE_FS_COMMENTDOC_C); + sc.Forward(); + } else if (bEnableCode && sc.Match('&', '&')) { + sc.SetState(SCE_FS_COMMENTLINE); + sc.Forward(); + } else if (sc.Match('/', '/')) { + sc.SetState(bEnableCode ? SCE_FS_COMMENTLINEDOC : SCE_FS_COMMENTLINEDOC_C); + sc.Forward(); + } else if (bEnableCode && sc.ch == '*' && visibleChars == 0) { + sc.SetState(SCE_FS_COMMENT); + } else if (sc.ch == '\"' || sc.ch == '\'') { + sc.SetState(bEnableCode ? SCE_FS_STRING : SCE_FS_STRING_C); + closeStringChar = sc.ch; + } else if (closeStringChar == '>' && sc.ch == '<') { + sc.SetState(bEnableCode ? SCE_FS_STRING : SCE_FS_STRING_C); + } else if (sc.ch == '#' && visibleChars == 0) { + sc.SetState(bEnableCode ? SCE_FS_PREPROCESSOR : SCE_FS_PREPROCESSOR_C); + do { // Skip whitespace between # and preprocessor word + sc.Forward(); + } while (IsASpaceOrTab(sc.ch) && sc.More()); + if (sc.atLineEnd) { + sc.SetState(bEnableCode ? SCE_FS_DEFAULT : SCE_FS_DEFAULT_C); + } else if (sc.MatchIgnoreCase("include")) { + if (stylingWithinPreprocessor) { + closeStringChar = '>'; + } + } else if (sc.MatchIgnoreCase("pragma")) { + sc.Forward(6); + do { // Skip more whitespace until keyword + sc.Forward(); + } while (IsASpaceOrTab(sc.ch) && sc.More()); + if (sc.MatchIgnoreCase("begindump") || sc.MatchIgnoreCase("__cstream")) { + bEnableCode = false; + if (stylingWithinPreprocessor) { + sc.SetState(SCE_FS_DISABLEDCODE); + sc.Forward(8); + sc.ForwardSetState(SCE_FS_DEFAULT_C); + } else { + sc.SetState(SCE_FS_DISABLEDCODE); + } + } else if (sc.MatchIgnoreCase("enddump") || sc.MatchIgnoreCase("__endtext")) { + bEnableCode = true; + sc.SetState(SCE_FS_DISABLEDCODE); + sc.Forward(sc.ch == '_' ? 8 : 6); + sc.ForwardSetState(SCE_FS_DEFAULT); + } + } + } else if (bEnableCode && sc.ch == '{') { + Sci_Position p = 0; + int chSeek; + Sci_PositionU endPos(startPos + length); + do { // Skip whitespace + chSeek = sc.GetRelative(++p); + } while (IsASpaceOrTab(chSeek) && (sc.currentPos + p < endPos)); + if (chSeek == '^') { + sc.SetState(SCE_FS_DATE); + } else { + sc.SetState(SCE_FS_OPERATOR); + } + } else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(bEnableCode ? SCE_FS_NUMBER : SCE_FS_NUMBER_C); + } else if (IsAWordChar(sc.ch)) { + sc.SetState(bEnableCode ? SCE_FS_IDENTIFIER : SCE_FS_IDENTIFIER_C); + } else if (isoperator(static_cast(sc.ch)) || (bEnableCode && sc.ch == '@')) { + sc.SetState(bEnableCode ? SCE_FS_OPERATOR : SCE_FS_OPERATOR_C); + } + } + + if (sc.atLineEnd) { + visibleChars = 0; + closeStringChar = 0; + } + if (!IsASpace(sc.ch)) { + visibleChars++; + } + } + sc.Complete(); +} + +static void FoldFlagShipDoc(Sci_PositionU startPos, Sci_Position length, int, + WordList *[], Accessor &styler) +{ + + Sci_Position endPos = startPos + length; + + // Backtrack to previous line in case need to fix its fold status + Sci_Position lineCurrent = styler.GetLine(startPos); + if (startPos > 0 && lineCurrent > 0) { + lineCurrent--; + startPos = styler.LineStart(lineCurrent); + } + int spaceFlags = 0; + int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags); + char chNext = styler[startPos]; + for (Sci_Position i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + if ((ch == '\r' && chNext != '\n') || (ch == '\n') || (i == endPos-1)) { + int lev = indentCurrent; + int indentNext = styler.IndentAmount(lineCurrent + 1, &spaceFlags); + if (!(indentCurrent & SC_FOLDLEVELWHITEFLAG)) { + if ((indentCurrent & SC_FOLDLEVELNUMBERMASK) < (indentNext & SC_FOLDLEVELNUMBERMASK)) { + lev |= SC_FOLDLEVELHEADERFLAG; + } else if (indentNext & SC_FOLDLEVELWHITEFLAG) { + int spaceFlags2 = 0; + int indentNext2 = styler.IndentAmount(lineCurrent + 2, &spaceFlags2); + if ((indentCurrent & SC_FOLDLEVELNUMBERMASK) < (indentNext2 & SC_FOLDLEVELNUMBERMASK)) { + lev |= SC_FOLDLEVELHEADERFLAG; + } + } + } + indentCurrent = indentNext; + styler.SetLevel(lineCurrent, lev); + lineCurrent++; + } + } +} + +static const char * const FSWordListDesc[] = { + "Keywords Commands", + "Std Library Functions", + "Procedure, return, exit", + "Class (oop)", + "Doxygen keywords", + 0 +}; + +LexerModule lmFlagShip(SCLEX_FLAGSHIP, ColouriseFlagShipDoc, "flagship", FoldFlagShipDoc, FSWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexForth.cpp b/third_party/qscintilla/scintilla/lexers/LexForth.cpp new file mode 100644 index 0000000..8084209 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexForth.cpp @@ -0,0 +1,168 @@ +// Scintilla source code edit control +/** @file LexForth.cxx + ** Lexer for FORTH + **/ +// Copyright 1998-2003 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsAWordStart(int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.'); +} + +static inline bool IsANumChar(int ch) { + return (ch < 0x80) && (isxdigit(ch) || ch == '.' || ch == 'e' || ch == 'E' ); +} + +static inline bool IsASpaceChar(int ch) { + return (ch < 0x80) && isspace(ch); +} + +static void ColouriseForthDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordLists[], + Accessor &styler) { + + WordList &control = *keywordLists[0]; + WordList &keyword = *keywordLists[1]; + WordList &defword = *keywordLists[2]; + WordList &preword1 = *keywordLists[3]; + WordList &preword2 = *keywordLists[4]; + WordList &strings = *keywordLists[5]; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) + { + // Determine if the current state should terminate. + if (sc.state == SCE_FORTH_COMMENT) { + if (sc.atLineEnd) { + sc.SetState(SCE_FORTH_DEFAULT); + } + }else if (sc.state == SCE_FORTH_COMMENT_ML) { + if (sc.ch == ')') { + sc.ForwardSetState(SCE_FORTH_DEFAULT); + } + }else if (sc.state == SCE_FORTH_IDENTIFIER || sc.state == SCE_FORTH_NUMBER) { + // handle numbers here too, because what we thought was a number might + // turn out to be a keyword e.g. 2DUP + if (IsASpaceChar(sc.ch) ) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + int newState = sc.state == SCE_FORTH_NUMBER ? SCE_FORTH_NUMBER : SCE_FORTH_DEFAULT; + if (control.InList(s)) { + sc.ChangeState(SCE_FORTH_CONTROL); + } else if (keyword.InList(s)) { + sc.ChangeState(SCE_FORTH_KEYWORD); + } else if (defword.InList(s)) { + sc.ChangeState(SCE_FORTH_DEFWORD); + } else if (preword1.InList(s)) { + sc.ChangeState(SCE_FORTH_PREWORD1); + } else if (preword2.InList(s)) { + sc.ChangeState(SCE_FORTH_PREWORD2); + } else if (strings.InList(s)) { + sc.ChangeState(SCE_FORTH_STRING); + newState = SCE_FORTH_STRING; + } + sc.SetState(newState); + } + if (sc.state == SCE_FORTH_NUMBER) { + if (IsASpaceChar(sc.ch)) { + sc.SetState(SCE_FORTH_DEFAULT); + } else if (!IsANumChar(sc.ch)) { + sc.ChangeState(SCE_FORTH_IDENTIFIER); + } + } + }else if (sc.state == SCE_FORTH_STRING) { + if (sc.ch == '\"') { + sc.ForwardSetState(SCE_FORTH_DEFAULT); + } + }else if (sc.state == SCE_FORTH_LOCALE) { + if (sc.ch == '}') { + sc.ForwardSetState(SCE_FORTH_DEFAULT); + } + }else if (sc.state == SCE_FORTH_DEFWORD) { + if (IsASpaceChar(sc.ch)) { + sc.SetState(SCE_FORTH_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_FORTH_DEFAULT) { + if (sc.ch == '\\'){ + sc.SetState(SCE_FORTH_COMMENT); + } else if (sc.ch == '(' && + (sc.atLineStart || IsASpaceChar(sc.chPrev)) && + (sc.atLineEnd || IsASpaceChar(sc.chNext))) { + sc.SetState(SCE_FORTH_COMMENT_ML); + } else if ( (sc.ch == '$' && (IsASCII(sc.chNext) && isxdigit(sc.chNext))) ) { + // number starting with $ is a hex number + sc.SetState(SCE_FORTH_NUMBER); + while(sc.More() && IsASCII(sc.chNext) && isxdigit(sc.chNext)) + sc.Forward(); + } else if ( (sc.ch == '%' && (IsASCII(sc.chNext) && (sc.chNext == '0' || sc.chNext == '1'))) ) { + // number starting with % is binary + sc.SetState(SCE_FORTH_NUMBER); + while(sc.More() && IsASCII(sc.chNext) && (sc.chNext == '0' || sc.chNext == '1')) + sc.Forward(); + } else if ( IsASCII(sc.ch) && + (isxdigit(sc.ch) || ((sc.ch == '.' || sc.ch == '-') && IsASCII(sc.chNext) && isxdigit(sc.chNext)) ) + ){ + sc.SetState(SCE_FORTH_NUMBER); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_FORTH_IDENTIFIER); + } else if (sc.ch == '{') { + sc.SetState(SCE_FORTH_LOCALE); + } else if (sc.ch == ':' && IsASCII(sc.chNext) && isspace(sc.chNext)) { + // highlight word definitions e.g. : GCD ( n n -- n ) ..... ; + // ^ ^^^ + sc.SetState(SCE_FORTH_DEFWORD); + while(sc.More() && IsASCII(sc.chNext) && isspace(sc.chNext)) + sc.Forward(); + } else if (sc.ch == ';' && + (sc.atLineStart || IsASpaceChar(sc.chPrev)) && + (sc.atLineEnd || IsASpaceChar(sc.chNext)) ) { + // mark the ';' that ends a word + sc.SetState(SCE_FORTH_DEFWORD); + sc.ForwardSetState(SCE_FORTH_DEFAULT); + } + } + + } + sc.Complete(); +} + +static void FoldForthDoc(Sci_PositionU, Sci_Position, int, WordList *[], + Accessor &) { +} + +static const char * const forthWordLists[] = { + "control keywords", + "keywords", + "definition words", + "prewords with one argument", + "prewords with two arguments", + "string definition keywords", + 0, + }; + +LexerModule lmForth(SCLEX_FORTH, ColouriseForthDoc, "forth", FoldForthDoc, forthWordLists); + + diff --git a/third_party/qscintilla/scintilla/lexers/LexFortran.cpp b/third_party/qscintilla/scintilla/lexers/LexFortran.cpp new file mode 100644 index 0000000..28298b3 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexFortran.cpp @@ -0,0 +1,721 @@ +// Scintilla source code edit control +/** @file LexFortran.cxx + ** Lexer for Fortran. + ** Written by Chuan-jian Shen, Last changed Sep. 2003 + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. +/***************************************/ +#include +#include +#include +#include +#include +#include +/***************************************/ +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +/***************************************/ + +using namespace Scintilla; + +/***********************************************/ +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '%'); +} +/**********************************************/ +static inline bool IsAWordStart(const int ch) { + return (ch < 0x80) && (isalnum(ch)); +} +/***************************************/ +static inline bool IsABlank(unsigned int ch) { + return (ch == ' ') || (ch == 0x09) || (ch == 0x0b) ; +} +/***************************************/ +static inline bool IsALineEnd(char ch) { + return ((ch == '\n') || (ch == '\r')) ; +} +/***************************************/ +static Sci_PositionU GetContinuedPos(Sci_PositionU pos, Accessor &styler) { + while (!IsALineEnd(styler.SafeGetCharAt(pos++))) continue; + if (styler.SafeGetCharAt(pos) == '\n') pos++; + while (IsABlank(styler.SafeGetCharAt(pos++))) continue; + char chCur = styler.SafeGetCharAt(pos); + if (chCur == '&') { + while (IsABlank(styler.SafeGetCharAt(++pos))) continue; + return pos; + } else { + return pos; + } +} +/***************************************/ +static void ColouriseFortranDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler, bool isFixFormat) { + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + /***************************************/ + Sci_Position posLineStart = 0; + int numNonBlank = 0, prevState = 0; + Sci_Position endPos = startPos + length; + /***************************************/ + // backtrack to the nearest keyword + while ((startPos > 1) && (styler.StyleAt(startPos) != SCE_F_WORD)) { + startPos--; + } + startPos = styler.LineStart(styler.GetLine(startPos)); + initStyle = styler.StyleAt(startPos - 1); + StyleContext sc(startPos, endPos-startPos, initStyle, styler); + /***************************************/ + for (; sc.More(); sc.Forward()) { + // remember the start position of the line + if (sc.atLineStart) { + posLineStart = sc.currentPos; + numNonBlank = 0; + sc.SetState(SCE_F_DEFAULT); + } + if (!IsASpaceOrTab(sc.ch)) numNonBlank ++; + /***********************************************/ + // Handle the fix format generically + Sci_Position toLineStart = sc.currentPos - posLineStart; + if (isFixFormat && (toLineStart < 6 || toLineStart >= 72)) { + if ((toLineStart == 0 && (tolower(sc.ch) == 'c' || sc.ch == '*')) || sc.ch == '!') { + if (sc.MatchIgnoreCase("cdec$") || sc.MatchIgnoreCase("*dec$") || sc.MatchIgnoreCase("!dec$") || + sc.MatchIgnoreCase("cdir$") || sc.MatchIgnoreCase("*dir$") || sc.MatchIgnoreCase("!dir$") || + sc.MatchIgnoreCase("cms$") || sc.MatchIgnoreCase("*ms$") || sc.MatchIgnoreCase("!ms$") || + sc.chNext == '$') { + sc.SetState(SCE_F_PREPROCESSOR); + } else { + sc.SetState(SCE_F_COMMENT); + } + + while (!sc.atLineEnd && sc.More()) sc.Forward(); // Until line end + } else if (toLineStart >= 72) { + sc.SetState(SCE_F_COMMENT); + while (!sc.atLineEnd && sc.More()) sc.Forward(); // Until line end + } else if (toLineStart < 5) { + if (IsADigit(sc.ch)) + sc.SetState(SCE_F_LABEL); + else + sc.SetState(SCE_F_DEFAULT); + } else if (toLineStart == 5) { + //if (!IsASpace(sc.ch) && sc.ch != '0') { + if (sc.ch != '\r' && sc.ch != '\n') { + sc.SetState(SCE_F_CONTINUATION); + if (!IsASpace(sc.ch) && sc.ch != '0') + sc.ForwardSetState(prevState); + } else + sc.SetState(SCE_F_DEFAULT); + } + continue; + } + /***************************************/ + // Handle line continuation generically. + if (!isFixFormat && sc.ch == '&' && sc.state != SCE_F_COMMENT) { + char chTemp = ' '; + Sci_Position j = 1; + while (IsABlank(chTemp) && j<132) { + chTemp = static_cast(sc.GetRelative(j)); + j++; + } + if (chTemp == '!') { + sc.SetState(SCE_F_CONTINUATION); + if (sc.chNext == '!') sc.ForwardSetState(SCE_F_COMMENT); + } else if (chTemp == '\r' || chTemp == '\n') { + int currentState = sc.state; + sc.SetState(SCE_F_CONTINUATION); + sc.ForwardSetState(SCE_F_DEFAULT); + while (IsASpace(sc.ch) && sc.More()) { + sc.Forward(); + if (sc.atLineStart) numNonBlank = 0; + if (!IsASpaceOrTab(sc.ch)) numNonBlank ++; + } + if (sc.ch == '&') { + sc.SetState(SCE_F_CONTINUATION); + sc.Forward(); + } + sc.SetState(currentState); + } + } + /***************************************/ + // Hanndle preprocessor directives + if (sc.ch == '#' && numNonBlank == 1) + { + sc.SetState(SCE_F_PREPROCESSOR); + while (!sc.atLineEnd && sc.More()) + sc.Forward(); // Until line end + } + /***************************************/ + // Determine if the current state should terminate. + if (sc.state == SCE_F_OPERATOR) { + sc.SetState(SCE_F_DEFAULT); + } else if (sc.state == SCE_F_NUMBER) { + if (!(IsAWordChar(sc.ch) || sc.ch=='\'' || sc.ch=='\"' || sc.ch=='.')) { + sc.SetState(SCE_F_DEFAULT); + } + } else if (sc.state == SCE_F_IDENTIFIER) { + if (!IsAWordChar(sc.ch) || (sc.ch == '%')) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + if (keywords.InList(s)) { + sc.ChangeState(SCE_F_WORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_F_WORD2); + } else if (keywords3.InList(s)) { + sc.ChangeState(SCE_F_WORD3); + } + sc.SetState(SCE_F_DEFAULT); + } + } else if (sc.state == SCE_F_COMMENT || sc.state == SCE_F_PREPROCESSOR) { + if (sc.ch == '\r' || sc.ch == '\n') { + sc.SetState(SCE_F_DEFAULT); + } + } else if (sc.state == SCE_F_STRING1) { + prevState = sc.state; + if (sc.ch == '\'') { + if (sc.chNext == '\'') { + sc.Forward(); + } else { + sc.ForwardSetState(SCE_F_DEFAULT); + prevState = SCE_F_DEFAULT; + } + } else if (sc.atLineEnd) { + sc.ChangeState(SCE_F_STRINGEOL); + sc.ForwardSetState(SCE_F_DEFAULT); + } + } else if (sc.state == SCE_F_STRING2) { + prevState = sc.state; + if (sc.atLineEnd) { + sc.ChangeState(SCE_F_STRINGEOL); + sc.ForwardSetState(SCE_F_DEFAULT); + } else if (sc.ch == '\"') { + if (sc.chNext == '\"') { + sc.Forward(); + } else { + sc.ForwardSetState(SCE_F_DEFAULT); + prevState = SCE_F_DEFAULT; + } + } + } else if (sc.state == SCE_F_OPERATOR2) { + if (sc.ch == '.') { + sc.ForwardSetState(SCE_F_DEFAULT); + } + } else if (sc.state == SCE_F_CONTINUATION) { + sc.SetState(SCE_F_DEFAULT); + } else if (sc.state == SCE_F_LABEL) { + if (!IsADigit(sc.ch)) { + sc.SetState(SCE_F_DEFAULT); + } else { + if (isFixFormat && sc.currentPos-posLineStart > 4) + sc.SetState(SCE_F_DEFAULT); + else if (numNonBlank > 5) + sc.SetState(SCE_F_DEFAULT); + } + } + /***************************************/ + // Determine if a new state should be entered. + if (sc.state == SCE_F_DEFAULT) { + if (sc.ch == '!') { + if (sc.MatchIgnoreCase("!dec$") || sc.MatchIgnoreCase("!dir$") || + sc.MatchIgnoreCase("!ms$") || sc.chNext == '$') { + sc.SetState(SCE_F_PREPROCESSOR); + } else { + sc.SetState(SCE_F_COMMENT); + } + } else if ((!isFixFormat) && IsADigit(sc.ch) && numNonBlank == 1) { + sc.SetState(SCE_F_LABEL); + } else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_F_NUMBER); + } else if ((tolower(sc.ch) == 'b' || tolower(sc.ch) == 'o' || + tolower(sc.ch) == 'z') && (sc.chNext == '\"' || sc.chNext == '\'')) { + sc.SetState(SCE_F_NUMBER); + sc.Forward(); + } else if (sc.ch == '.' && isalpha(sc.chNext)) { + sc.SetState(SCE_F_OPERATOR2); + } else if (IsAWordStart(sc.ch)) { + sc.SetState(SCE_F_IDENTIFIER); + } else if (sc.ch == '\"') { + sc.SetState(SCE_F_STRING2); + } else if (sc.ch == '\'') { + sc.SetState(SCE_F_STRING1); + } else if (isoperator(static_cast(sc.ch))) { + sc.SetState(SCE_F_OPERATOR); + } + } + } + sc.Complete(); +} +/***************************************/ +static void CheckLevelCommentLine(const unsigned int nComL, + Sci_Position nComColB[], Sci_Position nComColF[], Sci_Position &nComCur, + bool comLineB[], bool comLineF[], bool &comLineCur, + int &levelDeltaNext) { + levelDeltaNext = 0; + if (!comLineCur) { + return; + } + + if (!comLineF[0] || nComColF[0] != nComCur) { + unsigned int i=0; + for (; i= nLineTotal) { + return; + } + + for (int i=nComL-2; i>=0; i--) { + nComColB[i+1] = nComColB[i]; + comLineB[i+1] = comLineB[i]; + } + nComColB[0] = nComCur; + comLineB[0] = comLineCur; + nComCur = nComColF[0]; + comLineCur = comLineF[0]; + for (unsigned int i=0; i+1 0) { + lineCurrent--; + startPos = styler.LineStart(lineCurrent); + isPrevLine = true; + } else { + isPrevLine = false; + } + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + int levelDeltaNext = 0; + + const unsigned int nComL = 3; // defines how many comment lines should be before they are folded + Sci_Position nComColB[nComL] = {}; + Sci_Position nComColF[nComL] = {}; + Sci_Position nComCur = 0; + bool comLineB[nComL] = {}; + bool comLineF[nComL] = {}; + bool comLineCur; + Sci_Position nLineTotal = styler.GetLine(styler.Length()-1) + 1; + if (foldComment) { + for (unsigned int i=0; i= nLineTotal) { + comLineF[i] = false; + break; + } + GetIfLineComment(styler, isFixFormat, chL, comLineF[i], nComColF[i]); + } + GetIfLineComment(styler, isFixFormat, lineCurrent, comLineCur, nComCur); + CheckBackComLines(styler, isFixFormat, lineCurrent, nComL, nComColB, nComColF, nComCur, + comLineB, comLineF, comLineCur); + } + int levelCurrent = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + + /***************************************/ + Sci_Position lastStart = 0; + char prevWord[32] = ""; + /***************************************/ + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + char chNextNonBlank = chNext; + bool nextEOL = false; + if (IsALineEnd(chNextNonBlank)) { + nextEOL = true; + } + Sci_PositionU j=i+1; + while(IsABlank(chNextNonBlank) && j(tolower(styler[lastStart+k])); + } + s[k] = '\0'; + // Handle the forall and where statement and structure. + if (strcmp(s, "forall") == 0 || (strcmp(s, "where") == 0 && strcmp(prevWord, "else") != 0)) { + if (strcmp(prevWord, "end") != 0) { + j = i + 1; + char chBrace = '(', chSeek = ')', ch1 = styler.SafeGetCharAt(j); + // Find the position of the first ( + while (ch1 != chBrace && j 0) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) + styler.SetLevel(lineCurrent, lev); + + lineCurrent++; + levelCurrent += levelDeltaNext; + levelDeltaNext = 0; + visibleChars = 0; + strcpy(prevWord, ""); + isPrevLine = false; + + if (foldComment) { + StepCommentLine(styler, isFixFormat, lineCurrent, nComL, nComColB, nComColF, nComCur, + comLineB, comLineF, comLineCur); + } + } + /***************************************/ + if (!isspacechar(ch)) visibleChars++; + } + /***************************************/ +} +/***************************************/ +static const char * const FortranWordLists[] = { + "Primary keywords and identifiers", + "Intrinsic functions", + "Extended and user defined functions", + 0, +}; +/***************************************/ +static void ColouriseFortranDocFreeFormat(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + ColouriseFortranDoc(startPos, length, initStyle, keywordlists, styler, false); +} +/***************************************/ +static void ColouriseFortranDocFixFormat(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + ColouriseFortranDoc(startPos, length, initStyle, keywordlists, styler, true); +} +/***************************************/ +static void FoldFortranDocFreeFormat(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *[], Accessor &styler) { + FoldFortranDoc(startPos, length, initStyle,styler, false); +} +/***************************************/ +static void FoldFortranDocFixFormat(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *[], Accessor &styler) { + FoldFortranDoc(startPos, length, initStyle,styler, true); +} +/***************************************/ +LexerModule lmFortran(SCLEX_FORTRAN, ColouriseFortranDocFreeFormat, "fortran", FoldFortranDocFreeFormat, FortranWordLists); +LexerModule lmF77(SCLEX_F77, ColouriseFortranDocFixFormat, "f77", FoldFortranDocFixFormat, FortranWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexGAP.cpp b/third_party/qscintilla/scintilla/lexers/LexGAP.cpp new file mode 100644 index 0000000..a2eca95 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexGAP.cpp @@ -0,0 +1,264 @@ +// Scintilla source code edit control +/** @file LexGAP.cxx + ** Lexer for the GAP language. (The GAP System for Computational Discrete Algebra) + ** http://www.gap-system.org + **/ +// Copyright 2007 by Istvan Szollosi ( szteven gmail com ) +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsGAPOperator(char ch) { + if (IsASCII(ch) && isalnum(ch)) return false; + if (ch == '+' || ch == '-' || ch == '*' || ch == '/' || + ch == '^' || ch == ',' || ch == '!' || ch == '.' || + ch == '=' || ch == '<' || ch == '>' || ch == '(' || + ch == ')' || ch == ';' || ch == '[' || ch == ']' || + ch == '{' || ch == '}' || ch == ':' ) + return true; + return false; +} + +static void GetRange(Sci_PositionU start, Sci_PositionU end, Accessor &styler, char *s, Sci_PositionU len) { + Sci_PositionU i = 0; + while ((i < end - start + 1) && (i < len-1)) { + s[i] = static_cast(styler[start + i]); + i++; + } + s[i] = '\0'; +} + +static void ColouriseGAPDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], Accessor &styler) { + + WordList &keywords1 = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + WordList &keywords4 = *keywordlists[3]; + + // Do not leak onto next line + if (initStyle == SCE_GAP_STRINGEOL) initStyle = SCE_GAP_DEFAULT; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + // Prevent SCE_GAP_STRINGEOL from leaking back to previous line + if ( sc.atLineStart ) { + if (sc.state == SCE_GAP_STRING) sc.SetState(SCE_GAP_STRING); + if (sc.state == SCE_GAP_CHAR) sc.SetState(SCE_GAP_CHAR); + } + + // Handle line continuation generically + if (sc.ch == '\\' ) { + if (sc.chNext == '\n' || sc.chNext == '\r') { + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } + continue; + } + } + + // Determine if the current state should terminate + switch (sc.state) { + case SCE_GAP_OPERATOR : + sc.SetState(SCE_GAP_DEFAULT); + break; + + case SCE_GAP_NUMBER : + if (!IsADigit(sc.ch)) { + if (sc.ch == '\\') { + if (!sc.atLineEnd) { + if (!IsADigit(sc.chNext)) { + sc.Forward(); + sc.ChangeState(SCE_GAP_IDENTIFIER); + } + } + } else if (isalpha(sc.ch) || sc.ch == '_') { + sc.ChangeState(SCE_GAP_IDENTIFIER); + } + else sc.SetState(SCE_GAP_DEFAULT); + } + break; + + case SCE_GAP_IDENTIFIER : + if (!(iswordstart(static_cast(sc.ch)) || sc.ch == '$')) { + if (sc.ch == '\\') sc.Forward(); + else { + char s[1000]; + sc.GetCurrent(s, sizeof(s)); + if (keywords1.InList(s)) { + sc.ChangeState(SCE_GAP_KEYWORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_GAP_KEYWORD2); + } else if (keywords3.InList(s)) { + sc.ChangeState(SCE_GAP_KEYWORD3); + } else if (keywords4.InList(s)) { + sc.ChangeState(SCE_GAP_KEYWORD4); + } + sc.SetState(SCE_GAP_DEFAULT); + } + } + break; + + case SCE_GAP_COMMENT : + if (sc.atLineEnd) { + sc.SetState(SCE_GAP_DEFAULT); + } + break; + + case SCE_GAP_STRING: + if (sc.atLineEnd) { + sc.ChangeState(SCE_GAP_STRINGEOL); + } else if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_GAP_DEFAULT); + } + break; + + case SCE_GAP_CHAR: + if (sc.atLineEnd) { + sc.ChangeState(SCE_GAP_STRINGEOL); + } else if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\'') { + sc.ForwardSetState(SCE_GAP_DEFAULT); + } + break; + + case SCE_GAP_STRINGEOL: + if (sc.atLineStart) { + sc.SetState(SCE_GAP_DEFAULT); + } + break; + } + + // Determine if a new state should be entered + if (sc.state == SCE_GAP_DEFAULT) { + if (IsGAPOperator(static_cast(sc.ch))) { + sc.SetState(SCE_GAP_OPERATOR); + } + else if (IsADigit(sc.ch)) { + sc.SetState(SCE_GAP_NUMBER); + } else if (isalpha(sc.ch) || sc.ch == '_' || sc.ch == '\\' || sc.ch == '$' || sc.ch == '~') { + sc.SetState(SCE_GAP_IDENTIFIER); + if (sc.ch == '\\') sc.Forward(); + } else if (sc.ch == '#') { + sc.SetState(SCE_GAP_COMMENT); + } else if (sc.ch == '\"') { + sc.SetState(SCE_GAP_STRING); + } else if (sc.ch == '\'') { + sc.SetState(SCE_GAP_CHAR); + } + } + + } + sc.Complete(); +} + +static int ClassifyFoldPointGAP(const char* s) { + int level = 0; + if (strcmp(s, "function") == 0 || + strcmp(s, "do") == 0 || + strcmp(s, "if") == 0 || + strcmp(s, "repeat") == 0 ) { + level = 1; + } else if (strcmp(s, "end") == 0 || + strcmp(s, "od") == 0 || + strcmp(s, "fi") == 0 || + strcmp(s, "until") == 0 ) { + level = -1; + } + return level; +} + +static void FoldGAPDoc( Sci_PositionU startPos, Sci_Position length, int initStyle, WordList** , Accessor &styler) { + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + int style = initStyle; + + Sci_Position lastStart = 0; + + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int stylePrev = style; + style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + + if (stylePrev != SCE_GAP_KEYWORD && style == SCE_GAP_KEYWORD) { + // Store last word start point. + lastStart = i; + } + + if (stylePrev == SCE_GAP_KEYWORD) { + if(iswordchar(ch) && !iswordchar(chNext)) { + char s[100]; + GetRange(lastStart, i, styler, s, sizeof(s)); + levelCurrent += ClassifyFoldPointGAP(s); + } + } + + if (atEOL) { + int lev = levelPrev; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + + if (!isspacechar(ch)) + visibleChars++; + } + + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const GAPWordListDesc[] = { + "Keywords 1", + "Keywords 2", + "Keywords 3 (unused)", + "Keywords 4 (unused)", + 0 +}; + +LexerModule lmGAP( + SCLEX_GAP, + ColouriseGAPDoc, + "gap", + FoldGAPDoc, + GAPWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexGui4Cli.cpp b/third_party/qscintilla/scintilla/lexers/LexGui4Cli.cpp new file mode 100644 index 0000000..e321a5b --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexGui4Cli.cpp @@ -0,0 +1,311 @@ +// Scintilla source code edit control +// Copyright 1998-2002 by Neil Hodgson +/* +This is the Lexer for Gui4Cli, included in SciLexer.dll +- by d. Keletsekis, 2/10/2003 + +To add to SciLexer.dll: +1. Add the values below to INCLUDE\Scintilla.iface +2. Run the scripts/HFacer.py script +3. Run the scripts/LexGen.py script + +val SCE_GC_DEFAULT=0 +val SCE_GC_COMMENTLINE=1 +val SCE_GC_COMMENTBLOCK=2 +val SCE_GC_GLOBAL=3 +val SCE_GC_EVENT=4 +val SCE_GC_ATTRIBUTE=5 +val SCE_GC_CONTROL=6 +val SCE_GC_COMMAND=7 +val SCE_GC_STRING=8 +val SCE_GC_OPERATOR=9 +*/ + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +#define debug Platform::DebugPrintf + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_' || ch =='\\'); +} + +inline bool isGCOperator(int ch) +{ if (isalnum(ch)) + return false; + // '.' left out as it is used to make up numbers + if (ch == '*' || ch == '/' || ch == '-' || ch == '+' || + ch == '(' || ch == ')' || ch == '=' || ch == '%' || + ch == '[' || ch == ']' || ch == '<' || ch == '>' || + ch == ',' || ch == ';' || ch == ':') + return true; + return false; +} + +#define isSpace(x) ((x)==' ' || (x)=='\t') +#define isNL(x) ((x)=='\n' || (x)=='\r') +#define isSpaceOrNL(x) (isSpace(x) || isNL(x)) +#define BUFFSIZE 500 +#define isFoldPoint(x) ((styler.LevelAt(x) & SC_FOLDLEVELNUMBERMASK) == 1024) + +static void colorFirstWord(WordList *keywordlists[], Accessor &styler, + StyleContext *sc, char *buff, Sci_Position length, Sci_Position) +{ + Sci_Position c = 0; + while (sc->More() && isSpaceOrNL(sc->ch)) + { sc->Forward(); + } + styler.ColourTo(sc->currentPos - 1, sc->state); + + if (!IsAWordChar(sc->ch)) // comment, marker, etc.. + return; + + while (sc->More() && !isSpaceOrNL(sc->ch) && (c < length-1) && !isGCOperator(sc->ch)) + { buff[c] = static_cast(sc->ch); + ++c; sc->Forward(); + } + buff[c] = '\0'; + char *p = buff; + while (*p) // capitalize.. + { if (islower(*p)) *p = static_cast(toupper(*p)); + ++p; + } + + WordList &kGlobal = *keywordlists[0]; // keyword lists set by the user + WordList &kEvent = *keywordlists[1]; + WordList &kAttribute = *keywordlists[2]; + WordList &kControl = *keywordlists[3]; + WordList &kCommand = *keywordlists[4]; + + int state = 0; + // int level = styler.LevelAt(line) & SC_FOLDLEVELNUMBERMASK; + // debug ("line = %d, level = %d", line, level); + + if (kGlobal.InList(buff)) state = SCE_GC_GLOBAL; + else if (kAttribute.InList(buff)) state = SCE_GC_ATTRIBUTE; + else if (kControl.InList(buff)) state = SCE_GC_CONTROL; + else if (kCommand.InList(buff)) state = SCE_GC_COMMAND; + else if (kEvent.InList(buff)) state = SCE_GC_EVENT; + + if (state) + { sc->ChangeState(state); + styler.ColourTo(sc->currentPos - 1, sc->state); + sc->ChangeState(SCE_GC_DEFAULT); + } + else + { sc->ChangeState(SCE_GC_DEFAULT); + styler.ColourTo(sc->currentPos - 1, sc->state); + } +} + +// Main colorizing function called by Scintilla +static void +ColouriseGui4CliDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) +{ + styler.StartAt(startPos); + + Sci_Position currentline = styler.GetLine(startPos); + int quotestart = 0, oldstate; + styler.StartSegment(startPos); + bool noforward; + char buff[BUFFSIZE+1]; // buffer for command name + + StyleContext sc(startPos, length, initStyle, styler); + buff[0] = '\0'; // cbuff = 0; + + if (sc.state != SCE_GC_COMMENTBLOCK) // colorize 1st word.. + colorFirstWord(keywordlists, styler, &sc, buff, BUFFSIZE, currentline); + + while (sc.More()) + { noforward = 0; + + switch (sc.ch) + { + case '/': + if (sc.state == SCE_GC_COMMENTBLOCK || sc.state == SCE_GC_STRING) + break; + if (sc.chNext == '/') // line comment + { sc.SetState (SCE_GC_COMMENTLINE); + sc.Forward(); + styler.ColourTo(sc.currentPos, sc.state); + } + else if (sc.chNext == '*') // block comment + { sc.SetState(SCE_GC_COMMENTBLOCK); + sc.Forward(); + styler.ColourTo(sc.currentPos, sc.state); + } + else + styler.ColourTo(sc.currentPos, sc.state); + break; + + case '*': // end of comment block, or operator.. + if (sc.state == SCE_GC_STRING) + break; + if (sc.state == SCE_GC_COMMENTBLOCK && sc.chNext == '/') + { sc.Forward(); + styler.ColourTo(sc.currentPos, sc.state); + sc.ChangeState (SCE_GC_DEFAULT); + } + else + styler.ColourTo(sc.currentPos, sc.state); + break; + + case '\'': case '\"': // strings.. + if (sc.state == SCE_GC_COMMENTBLOCK || sc.state == SCE_GC_COMMENTLINE) + break; + if (sc.state == SCE_GC_STRING) + { if (sc.ch == quotestart) // match same quote char.. + { styler.ColourTo(sc.currentPos, sc.state); + sc.ChangeState(SCE_GC_DEFAULT); + quotestart = 0; + } } + else + { styler.ColourTo(sc.currentPos - 1, sc.state); + sc.ChangeState(SCE_GC_STRING); + quotestart = sc.ch; + } + break; + + case ';': // end of commandline character + if (sc.state != SCE_GC_COMMENTBLOCK && sc.state != SCE_GC_COMMENTLINE && + sc.state != SCE_GC_STRING) + { + styler.ColourTo(sc.currentPos - 1, sc.state); + styler.ColourTo(sc.currentPos, SCE_GC_OPERATOR); + sc.ChangeState(SCE_GC_DEFAULT); + sc.Forward(); + colorFirstWord(keywordlists, styler, &sc, buff, BUFFSIZE, currentline); + noforward = 1; // don't move forward - already positioned at next char.. + } + break; + + case '+': case '-': case '=': case '!': // operators.. + case '<': case '>': case '&': case '|': case '$': + if (sc.state != SCE_GC_COMMENTBLOCK && sc.state != SCE_GC_COMMENTLINE && + sc.state != SCE_GC_STRING) + { + styler.ColourTo(sc.currentPos - 1, sc.state); + styler.ColourTo(sc.currentPos, SCE_GC_OPERATOR); + sc.ChangeState(SCE_GC_DEFAULT); + } + break; + + case '\\': // escape - same as operator, but also mark in strings.. + if (sc.state != SCE_GC_COMMENTBLOCK && sc.state != SCE_GC_COMMENTLINE) + { + oldstate = sc.state; + styler.ColourTo(sc.currentPos - 1, sc.state); + sc.Forward(); // mark also the next char.. + styler.ColourTo(sc.currentPos, SCE_GC_OPERATOR); + sc.ChangeState(oldstate); + } + break; + + case '\n': case '\r': + ++currentline; + if (sc.state == SCE_GC_COMMENTLINE) + { styler.ColourTo(sc.currentPos, sc.state); + sc.ChangeState (SCE_GC_DEFAULT); + } + else if (sc.state != SCE_GC_COMMENTBLOCK) + { colorFirstWord(keywordlists, styler, &sc, buff, BUFFSIZE, currentline); + noforward = 1; // don't move forward - already positioned at next char.. + } + break; + +// case ' ': case '\t': +// default : + } + + if (!noforward) sc.Forward(); + + } + sc.Complete(); +} + +// Main folding function called by Scintilla - (based on props (.ini) files function) +static void FoldGui4Cli(Sci_PositionU startPos, Sci_Position length, int, + WordList *[], Accessor &styler) +{ + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + bool headerPoint = false; + + for (Sci_PositionU i = startPos; i < endPos; i++) + { + char ch = chNext; + chNext = styler[i+1]; + + int style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + + if (style == SCE_GC_EVENT || style == SCE_GC_GLOBAL) + { headerPoint = true; // fold at events and globals + } + + if (atEOL) + { int lev = SC_FOLDLEVELBASE+1; + + if (headerPoint) + lev = SC_FOLDLEVELBASE; + + if (visibleChars == 0 && foldCompact) + lev |= SC_FOLDLEVELWHITEFLAG; + + if (headerPoint) + lev |= SC_FOLDLEVELHEADERFLAG; + + if (lev != styler.LevelAt(lineCurrent)) // set level, if not already correct + { styler.SetLevel(lineCurrent, lev); + } + + lineCurrent++; // re-initialize our flags + visibleChars = 0; + headerPoint = false; + } + + if (!(isspacechar(ch))) // || (style == SCE_GC_COMMENTLINE) || (style != SCE_GC_COMMENTBLOCK))) + visibleChars++; + } + + int lev = headerPoint ? SC_FOLDLEVELBASE : SC_FOLDLEVELBASE+1; + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, lev | flagsNext); +} + +// I have no idea what these are for.. probably accessible by some message. +static const char * const gui4cliWordListDesc[] = { + "Globals", "Events", "Attributes", "Control", "Commands", + 0 +}; + +// Declare language & pass our function pointers to Scintilla +LexerModule lmGui4Cli(SCLEX_GUI4CLI, ColouriseGui4CliDoc, "gui4cli", FoldGui4Cli, gui4cliWordListDesc); + +#undef debug + diff --git a/third_party/qscintilla/scintilla/lexers/LexHTML.cpp b/third_party/qscintilla/scintilla/lexers/LexHTML.cpp new file mode 100644 index 0000000..6501122 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexHTML.cpp @@ -0,0 +1,2469 @@ +// Scintilla source code edit control +/** @file LexHTML.cxx + ** Lexer for HTML. + **/ +// Copyright 1998-2005 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" +#include "StringCopy.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +namespace { + +#define SCE_HA_JS (SCE_HJA_START - SCE_HJ_START) +#define SCE_HA_VBS (SCE_HBA_START - SCE_HB_START) +#define SCE_HA_PYTHON (SCE_HPA_START - SCE_HP_START) + +enum script_type { eScriptNone = 0, eScriptJS, eScriptVBS, eScriptPython, eScriptPHP, eScriptXML, eScriptSGML, eScriptSGMLblock, eScriptComment }; +enum script_mode { eHtml = 0, eNonHtmlScript, eNonHtmlPreProc, eNonHtmlScriptPreProc }; + +inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '.' || ch == '_'); +} + +inline bool IsAWordStart(const int ch) { + return (ch < 0x80) && (isalnum(ch) || ch == '_'); +} + +inline bool IsOperator(int ch) { + if (IsASCII(ch) && isalnum(ch)) + return false; + // '.' left out as it is used to make up numbers + if (ch == '%' || ch == '^' || ch == '&' || ch == '*' || + ch == '(' || ch == ')' || ch == '-' || ch == '+' || + ch == '=' || ch == '|' || ch == '{' || ch == '}' || + ch == '[' || ch == ']' || ch == ':' || ch == ';' || + ch == '<' || ch == '>' || ch == ',' || ch == '/' || + ch == '?' || ch == '!' || ch == '.' || ch == '~') + return true; + return false; +} + +void GetTextSegment(Accessor &styler, Sci_PositionU start, Sci_PositionU end, char *s, size_t len) { + Sci_PositionU i = 0; + for (; (i < end - start + 1) && (i < len-1); i++) { + s[i] = MakeLowerCase(styler[start + i]); + } + s[i] = '\0'; +} + +std::string GetStringSegment(Accessor &styler, Sci_PositionU start, Sci_PositionU end) { + std::string s; + Sci_PositionU i = 0; + for (; (i < end - start + 1); i++) { + s.push_back(MakeLowerCase(styler[start + i])); + } + return s; +} + +std::string GetNextWord(Accessor &styler, Sci_PositionU start) { + std::string ret; + Sci_PositionU i = 0; + for (; i < 200; i++) { // Put an upper limit to bound time taken for unexpected text. + const char ch = styler.SafeGetCharAt(start + i); + if ((i == 0) && !IsAWordStart(ch)) + break; + if ((i > 0) && !IsAWordChar(ch)) + break; + ret.push_back(ch); + } + return ret; +} + +script_type segIsScriptingIndicator(Accessor &styler, Sci_PositionU start, Sci_PositionU end, script_type prevValue) { + char s[100]; + GetTextSegment(styler, start, end, s, sizeof(s)); + //Platform::DebugPrintf("Scripting indicator [%s]\n", s); + if (strstr(s, "src")) // External script + return eScriptNone; + if (strstr(s, "vbs")) + return eScriptVBS; + if (strstr(s, "pyth")) + return eScriptPython; + if (strstr(s, "javas")) + return eScriptJS; + if (strstr(s, "jscr")) + return eScriptJS; + if (strstr(s, "php")) + return eScriptPHP; + if (strstr(s, "xml")) { + const char *xml = strstr(s, "xml"); + for (const char *t=s; t= SCE_HP_START) && (state <= SCE_HP_IDENTIFIER)) { + return eScriptPython; + } else if ((state >= SCE_HB_START) && (state <= SCE_HB_STRINGEOL)) { + return eScriptVBS; + } else if ((state >= SCE_HJ_START) && (state <= SCE_HJ_REGEX)) { + return eScriptJS; + } else if ((state >= SCE_HPHP_DEFAULT) && (state <= SCE_HPHP_COMMENTLINE)) { + return eScriptPHP; + } else if ((state >= SCE_H_SGML_DEFAULT) && (state < SCE_H_SGML_BLOCK_DEFAULT)) { + return eScriptSGML; + } else if (state == SCE_H_SGML_BLOCK_DEFAULT) { + return eScriptSGMLblock; + } else { + return eScriptNone; + } +} + +int statePrintForState(int state, script_mode inScriptType) { + int StateToPrint = state; + + if (state >= SCE_HJ_START) { + if ((state >= SCE_HP_START) && (state <= SCE_HP_IDENTIFIER)) { + StateToPrint = state + ((inScriptType == eNonHtmlScript) ? 0 : SCE_HA_PYTHON); + } else if ((state >= SCE_HB_START) && (state <= SCE_HB_STRINGEOL)) { + StateToPrint = state + ((inScriptType == eNonHtmlScript) ? 0 : SCE_HA_VBS); + } else if ((state >= SCE_HJ_START) && (state <= SCE_HJ_REGEX)) { + StateToPrint = state + ((inScriptType == eNonHtmlScript) ? 0 : SCE_HA_JS); + } + } + + return StateToPrint; +} + +int stateForPrintState(int StateToPrint) { + int state; + + if ((StateToPrint >= SCE_HPA_START) && (StateToPrint <= SCE_HPA_IDENTIFIER)) { + state = StateToPrint - SCE_HA_PYTHON; + } else if ((StateToPrint >= SCE_HBA_START) && (StateToPrint <= SCE_HBA_STRINGEOL)) { + state = StateToPrint - SCE_HA_VBS; + } else if ((StateToPrint >= SCE_HJA_START) && (StateToPrint <= SCE_HJA_REGEX)) { + state = StateToPrint - SCE_HA_JS; + } else { + state = StateToPrint; + } + + return state; +} + +inline bool IsNumber(Sci_PositionU start, Accessor &styler) { + return IsADigit(styler[start]) || (styler[start] == '.') || + (styler[start] == '-') || (styler[start] == '#'); +} + +inline bool isStringState(int state) { + bool bResult; + + switch (state) { + case SCE_HJ_DOUBLESTRING: + case SCE_HJ_SINGLESTRING: + case SCE_HJA_DOUBLESTRING: + case SCE_HJA_SINGLESTRING: + case SCE_HB_STRING: + case SCE_HBA_STRING: + case SCE_HP_STRING: + case SCE_HP_CHARACTER: + case SCE_HP_TRIPLE: + case SCE_HP_TRIPLEDOUBLE: + case SCE_HPA_STRING: + case SCE_HPA_CHARACTER: + case SCE_HPA_TRIPLE: + case SCE_HPA_TRIPLEDOUBLE: + case SCE_HPHP_HSTRING: + case SCE_HPHP_SIMPLESTRING: + case SCE_HPHP_HSTRING_VARIABLE: + case SCE_HPHP_COMPLEX_VARIABLE: + bResult = true; + break; + default : + bResult = false; + break; + } + return bResult; +} + +inline bool stateAllowsTermination(int state) { + bool allowTermination = !isStringState(state); + if (allowTermination) { + switch (state) { + case SCE_HB_COMMENTLINE: + case SCE_HPHP_COMMENT: + case SCE_HP_COMMENTLINE: + case SCE_HPA_COMMENTLINE: + allowTermination = false; + } + } + return allowTermination; +} + +// not really well done, since it's only comments that should lex the %> and <% +inline bool isCommentASPState(int state) { + bool bResult; + + switch (state) { + case SCE_HJ_COMMENT: + case SCE_HJ_COMMENTLINE: + case SCE_HJ_COMMENTDOC: + case SCE_HB_COMMENTLINE: + case SCE_HP_COMMENTLINE: + case SCE_HPHP_COMMENT: + case SCE_HPHP_COMMENTLINE: + bResult = true; + break; + default : + bResult = false; + break; + } + return bResult; +} + +void classifyAttribHTML(Sci_PositionU start, Sci_PositionU end, const WordList &keywords, Accessor &styler) { + const bool wordIsNumber = IsNumber(start, styler); + char chAttr = SCE_H_ATTRIBUTEUNKNOWN; + if (wordIsNumber) { + chAttr = SCE_H_NUMBER; + } else { + std::string s = GetStringSegment(styler, start, end); + if (keywords.InList(s.c_str())) + chAttr = SCE_H_ATTRIBUTE; + } + if ((chAttr == SCE_H_ATTRIBUTEUNKNOWN) && !keywords) + // No keywords -> all are known + chAttr = SCE_H_ATTRIBUTE; + styler.ColourTo(end, chAttr); +} + +int classifyTagHTML(Sci_PositionU start, Sci_PositionU end, + const WordList &keywords, Accessor &styler, bool &tagDontFold, + bool caseSensitive, bool isXml, bool allowScripts, + const std::set &nonFoldingTags) { + std::string tag; + // Copy after the '<' + for (Sci_PositionU cPos = start; cPos <= end; cPos++) { + const char ch = styler[cPos]; + if ((ch != '<') && (ch != '/')) { + tag.push_back(caseSensitive ? ch : MakeLowerCase(ch)); + } + } + // if the current language is XML, I can fold any tag + // if the current language is HTML, I don't want to fold certain tags (input, meta, etc.) + //...to find it in the list of no-container-tags + tagDontFold = (!isXml) && (nonFoldingTags.count(tag) > 0); + // No keywords -> all are known + char chAttr = SCE_H_TAGUNKNOWN; + if (!tag.empty() && (tag[0] == '!')) { + chAttr = SCE_H_SGML_DEFAULT; + } else if (!keywords || keywords.InList(tag.c_str())) { + chAttr = SCE_H_TAG; + } + styler.ColourTo(end, chAttr); + if (chAttr == SCE_H_TAG) { + if (allowScripts && (tag == "script")) { + // check to see if this is a self-closing tag by sniffing ahead + bool isSelfClose = false; + for (Sci_PositionU cPos = end; cPos <= end + 200; cPos++) { + const char ch = styler.SafeGetCharAt(cPos, '\0'); + if (ch == '\0' || ch == '>') + break; + else if (ch == '/' && styler.SafeGetCharAt(cPos + 1, '\0') == '>') { + isSelfClose = true; + break; + } + } + + // do not enter a script state if the tag self-closed + if (!isSelfClose) + chAttr = SCE_H_SCRIPT; + } else if (!isXml && (tag == "comment")) { + chAttr = SCE_H_COMMENT; + } + } + return chAttr; +} + +void classifyWordHTJS(Sci_PositionU start, Sci_PositionU end, + const WordList &keywords, Accessor &styler, script_mode inScriptType) { + char s[30 + 1]; + Sci_PositionU i = 0; + for (; i < end - start + 1 && i < 30; i++) { + s[i] = styler[start + i]; + } + s[i] = '\0'; + + char chAttr = SCE_HJ_WORD; + const bool wordIsNumber = IsADigit(s[0]) || ((s[0] == '.') && IsADigit(s[1])); + if (wordIsNumber) { + chAttr = SCE_HJ_NUMBER; + } else if (keywords.InList(s)) { + chAttr = SCE_HJ_KEYWORD; + } + styler.ColourTo(end, statePrintForState(chAttr, inScriptType)); +} + +int classifyWordHTVB(Sci_PositionU start, Sci_PositionU end, const WordList &keywords, Accessor &styler, script_mode inScriptType) { + char chAttr = SCE_HB_IDENTIFIER; + const bool wordIsNumber = IsADigit(styler[start]) || (styler[start] == '.'); + if (wordIsNumber) { + chAttr = SCE_HB_NUMBER; + } else { + std::string s = GetStringSegment(styler, start, end); + if (keywords.InList(s.c_str())) { + chAttr = SCE_HB_WORD; + if (s == "rem") + chAttr = SCE_HB_COMMENTLINE; + } + } + styler.ColourTo(end, statePrintForState(chAttr, inScriptType)); + if (chAttr == SCE_HB_COMMENTLINE) + return SCE_HB_COMMENTLINE; + else + return SCE_HB_DEFAULT; +} + +void classifyWordHTPy(Sci_PositionU start, Sci_PositionU end, const WordList &keywords, Accessor &styler, std::string &prevWord, script_mode inScriptType, bool isMako) { + const bool wordIsNumber = IsADigit(styler[start]); + std::string s; + for (Sci_PositionU i = 0; i < end - start + 1 && i < 30; i++) { + s.push_back(styler[start + i]); + } + char chAttr = SCE_HP_IDENTIFIER; + if (prevWord == "class") + chAttr = SCE_HP_CLASSNAME; + else if (prevWord == "def") + chAttr = SCE_HP_DEFNAME; + else if (wordIsNumber) + chAttr = SCE_HP_NUMBER; + else if (keywords.InList(s.c_str())) + chAttr = SCE_HP_WORD; + else if (isMako && (s == "block")) + chAttr = SCE_HP_WORD; + styler.ColourTo(end, statePrintForState(chAttr, inScriptType)); + prevWord = s; +} + +// Update the word colour to default or keyword +// Called when in a PHP word +void classifyWordHTPHP(Sci_PositionU start, Sci_PositionU end, const WordList &keywords, Accessor &styler) { + char chAttr = SCE_HPHP_DEFAULT; + const bool wordIsNumber = IsADigit(styler[start]) || (styler[start] == '.' && start+1 <= end && IsADigit(styler[start+1])); + if (wordIsNumber) { + chAttr = SCE_HPHP_NUMBER; + } else { + std::string s = GetStringSegment(styler, start, end); + if (keywords.InList(s.c_str())) + chAttr = SCE_HPHP_WORD; + } + styler.ColourTo(end, chAttr); +} + +bool isWordHSGML(Sci_PositionU start, Sci_PositionU end, const WordList &keywords, Accessor &styler) { + std::string s; + for (Sci_PositionU i = 0; i < end - start + 1 && i < 30; i++) { + s.push_back(styler[start + i]); + } + return keywords.InList(s.c_str()); +} + +bool isWordCdata(Sci_PositionU start, Sci_PositionU end, Accessor &styler) { + std::string s; + for (Sci_PositionU i = 0; i < end - start + 1 && i < 30; i++) { + s.push_back(styler[start + i]); + } + return s == "[CDATA["; +} + +// Return the first state to reach when entering a scripting language +int StateForScript(script_type scriptLanguage) { + int Result; + switch (scriptLanguage) { + case eScriptVBS: + Result = SCE_HB_START; + break; + case eScriptPython: + Result = SCE_HP_START; + break; + case eScriptPHP: + Result = SCE_HPHP_DEFAULT; + break; + case eScriptXML: + Result = SCE_H_TAGUNKNOWN; + break; + case eScriptSGML: + Result = SCE_H_SGML_DEFAULT; + break; + case eScriptComment: + Result = SCE_H_COMMENT; + break; + default : + Result = SCE_HJ_START; + break; + } + return Result; +} + +inline bool issgmlwordchar(int ch) { + return !IsASCII(ch) || + (isalnum(ch) || ch == '.' || ch == '_' || ch == ':' || ch == '!' || ch == '#' || ch == '['); +} + +inline bool IsPhpWordStart(int ch) { + return (IsASCII(ch) && (isalpha(ch) || (ch == '_'))) || (ch >= 0x7f); +} + +inline bool IsPhpWordChar(int ch) { + return IsADigit(ch) || IsPhpWordStart(ch); +} + +bool InTagState(int state) { + return state == SCE_H_TAG || state == SCE_H_TAGUNKNOWN || + state == SCE_H_SCRIPT || + state == SCE_H_ATTRIBUTE || state == SCE_H_ATTRIBUTEUNKNOWN || + state == SCE_H_NUMBER || state == SCE_H_OTHER || + state == SCE_H_DOUBLESTRING || state == SCE_H_SINGLESTRING; +} + +bool IsCommentState(const int state) { + return state == SCE_H_COMMENT || state == SCE_H_SGML_COMMENT; +} + +bool IsScriptCommentState(const int state) { + return state == SCE_HJ_COMMENT || state == SCE_HJ_COMMENTLINE || state == SCE_HJA_COMMENT || + state == SCE_HJA_COMMENTLINE || state == SCE_HB_COMMENTLINE || state == SCE_HBA_COMMENTLINE; +} + +bool isLineEnd(int ch) { + return ch == '\r' || ch == '\n'; +} + +bool isMakoBlockEnd(const int ch, const int chNext, const std::string &blockType) { + if (blockType.empty()) { + return ((ch == '%') && (chNext == '>')); + } else if ((blockType == "inherit") || + (blockType == "namespace") || + (blockType == "include") || + (blockType == "page")) { + return ((ch == '/') && (chNext == '>')); + } else if (blockType == "%") { + if (ch == '/' && isLineEnd(chNext)) + return true; + else + return isLineEnd(ch); + } else if (blockType == "{") { + return ch == '}'; + } else { + return (ch == '>'); + } +} + +bool isDjangoBlockEnd(const int ch, const int chNext, const std::string &blockType) { + if (blockType.empty()) { + return false; + } else if (blockType == "%") { + return ((ch == '%') && (chNext == '}')); + } else if (blockType == "{") { + return ((ch == '}') && (chNext == '}')); + } else { + return false; + } +} + +bool isPHPStringState(int state) { + return + (state == SCE_HPHP_HSTRING) || + (state == SCE_HPHP_SIMPLESTRING) || + (state == SCE_HPHP_HSTRING_VARIABLE) || + (state == SCE_HPHP_COMPLEX_VARIABLE); +} + +Sci_Position FindPhpStringDelimiter(std::string &phpStringDelimiter, Sci_Position i, const Sci_Position lengthDoc, Accessor &styler, bool &isSimpleString) { + Sci_Position j; + const Sci_Position beginning = i - 1; + bool isValidSimpleString = false; + + while (i < lengthDoc && (styler[i] == ' ' || styler[i] == '\t')) + i++; + char ch = styler.SafeGetCharAt(i); + const char chNext = styler.SafeGetCharAt(i + 1); + phpStringDelimiter.clear(); + if (!IsPhpWordStart(ch)) { + if (ch == '\'' && IsPhpWordStart(chNext)) { + i++; + ch = chNext; + isSimpleString = true; + } else { + return beginning; + } + } + phpStringDelimiter.push_back(ch); + i++; + for (j = i; j < lengthDoc && !isLineEnd(styler[j]); j++) { + if (!IsPhpWordChar(styler[j])) { + if (isSimpleString && (styler[j] == '\'') && isLineEnd(styler.SafeGetCharAt(j + 1))) { + isValidSimpleString = true; + j++; + break; + } else { + phpStringDelimiter.clear(); + return beginning; + } + } + phpStringDelimiter.push_back(styler[j]); + } + if (isSimpleString && !isValidSimpleString) { + phpStringDelimiter.clear(); + return beginning; + } + return j - 1; +} + +// Options used for LexerHTML +struct OptionsHTML { + int aspDefaultLanguage = eScriptJS; + bool caseSensitive = false; + bool allowScripts = true; + bool isMako = false; + bool isDjango = false; + bool fold = false; + bool foldHTML = false; + bool foldHTMLPreprocessor = true; + bool foldCompact = true; + bool foldComment = false; + bool foldHeredoc = false; + OptionsHTML() noexcept { + } +}; + +const char * const htmlWordListDesc[] = { + "HTML elements and attributes", + "JavaScript keywords", + "VBScript keywords", + "Python keywords", + "PHP keywords", + "SGML and DTD keywords", + 0, +}; + +const char * const phpscriptWordListDesc[] = { + "", //Unused + "", //Unused + "", //Unused + "", //Unused + "PHP keywords", + "", //Unused + 0, +}; + +struct OptionSetHTML : public OptionSet { + OptionSetHTML(bool isPHPScript_) { + + DefineProperty("asp.default.language", &OptionsHTML::aspDefaultLanguage, + "Script in ASP code is initially assumed to be in JavaScript. " + "To change this to VBScript set asp.default.language to 2. Python is 3."); + + DefineProperty("html.tags.case.sensitive", &OptionsHTML::caseSensitive, + "For XML and HTML, setting this property to 1 will make tags match in a case " + "sensitive way which is the expected behaviour for XML and XHTML."); + + DefineProperty("lexer.xml.allow.scripts", &OptionsHTML::allowScripts, + "Set to 0 to disable scripts in XML."); + + DefineProperty("lexer.html.mako", &OptionsHTML::isMako, + "Set to 1 to enable the mako template language."); + + DefineProperty("lexer.html.django", &OptionsHTML::isDjango, + "Set to 1 to enable the django template language."); + + DefineProperty("fold", &OptionsHTML::fold); + + DefineProperty("fold.html", &OptionsHTML::foldHTML, + "Folding is turned on or off for HTML and XML files with this option. " + "The fold option must also be on for folding to occur."); + + DefineProperty("fold.html.preprocessor", &OptionsHTML::foldHTMLPreprocessor, + "Folding is turned on or off for scripts embedded in HTML files with this option. " + "The default is on."); + + DefineProperty("fold.compact", &OptionsHTML::foldCompact); + + DefineProperty("fold.hypertext.comment", &OptionsHTML::foldComment, + "Allow folding for comments in scripts embedded in HTML. " + "The default is off."); + + DefineProperty("fold.hypertext.heredoc", &OptionsHTML::foldHeredoc, + "Allow folding for heredocs in scripts embedded in HTML. " + "The default is off."); + + DefineWordListSets(isPHPScript_ ? phpscriptWordListDesc : htmlWordListDesc); + } +}; + +LexicalClass lexicalClassesHTML[] = { + // Lexer HTML SCLEX_HTML SCE_H_ SCE_HJ_ SCE_HJA_ SCE_HB_ SCE_HBA_ SCE_HP_ SCE_HPHP_ SCE_HPA_: + 0, "SCE_H_DEFAULT", "default", "Text", + 1, "SCE_H_TAG", "tag", "Tags", + 2, "SCE_H_ERRORTAGUNKNOWN", "error tag", "Unknown Tags", + 3, "SCE_H_ATTRIBUTE", "attribute", "Attributes", + 4, "SCE_H_ATTRIBUTEUNKNOWN", "error attribute", "Unknown Attributes", + 5, "SCE_H_NUMBER", "literal numeric", "Numbers", + 6, "SCE_H_DOUBLESTRING", "literal string", "Double quoted strings", + 7, "SCE_H_SINGLESTRING", "literal string", "Single quoted strings", + 8, "SCE_H_OTHER", "tag operator", "Other inside tag, including space and '='", + 9, "SCE_H_COMMENT", "comment", "Comment", + 10, "SCE_H_ENTITY", "literal", "Entities", + 11, "SCE_H_TAGEND", "tag", "XML style tag ends '/>'", + 12, "SCE_H_XMLSTART", "identifier", "XML identifier start ''", + 14, "SCE_H_SCRIPT", "error", "Internal state which should never be visible", + 15, "SCE_H_ASP", "preprocessor", "ASP <% ... %>", + 16, "SCE_H_ASPAT", "preprocessor", "ASP <% ... %>", + 17, "SCE_H_CDATA", "literal", "CDATA", + 18, "SCE_H_QUESTION", "preprocessor", "PHP", + 19, "SCE_H_VALUE", "literal string", "Unquoted values", + 20, "SCE_H_XCCOMMENT", "comment", "JSP Comment <%-- ... --%>", + 21, "SCE_H_SGML_DEFAULT", "default", "SGML tags ", + 22, "SCE_H_SGML_COMMAND", "preprocessor", "SGML command", + 23, "SCE_H_SGML_1ST_PARAM", "preprocessor", "SGML 1st param", + 24, "SCE_H_SGML_DOUBLESTRING", "literal string", "SGML double string", + 25, "SCE_H_SGML_SIMPLESTRING", "literal string", "SGML single string", + 26, "SCE_H_SGML_ERROR", "error", "SGML error", + 27, "SCE_H_SGML_SPECIAL", "literal", "SGML special (#XXXX type)", + 28, "SCE_H_SGML_ENTITY", "literal", "SGML entity", + 29, "SCE_H_SGML_COMMENT", "comment", "SGML comment", + 30, "SCE_H_SGML_1ST_PARAM_COMMENT", "error comment", "SGML first parameter - lexer internal. It is an error if any text is in this style.", + 31, "SCE_H_SGML_BLOCK_DEFAULT", "default", "SGML block", + 32, "", "predefined", "", + 33, "", "predefined", "", + 34, "", "predefined", "", + 35, "", "predefined", "", + 36, "", "predefined", "", + 37, "", "predefined", "", + 38, "", "predefined", "", + 39, "", "predefined", "", + 40, "SCE_HJ_START", "client javascript default", "JS Start - allows eol filled background to not start on same line as SCRIPT tag", + 41, "SCE_HJ_DEFAULT", "client javascript default", "JS Default", + 42, "SCE_HJ_COMMENT", "client javascript comment", "JS Comment", + 43, "SCE_HJ_COMMENTLINE", "client javascript comment line", "JS Line Comment", + 44, "SCE_HJ_COMMENTDOC", "client javascript comment documentation", "JS Doc comment", + 45, "SCE_HJ_NUMBER", "client javascript literal numeric", "JS Number", + 46, "SCE_HJ_WORD", "client javascript identifier", "JS Word", + 47, "SCE_HJ_KEYWORD", "client javascript keyword", "JS Keyword", + 48, "SCE_HJ_DOUBLESTRING", "client javascript literal string", "JS Double quoted string", + 49, "SCE_HJ_SINGLESTRING", "client javascript literal string", "JS Single quoted string", + 50, "SCE_HJ_SYMBOLS", "client javascript operator", "JS Symbols", + 51, "SCE_HJ_STRINGEOL", "client javascript error literal string", "JavaScript EOL", + 52, "SCE_HJ_REGEX", "client javascript literal regex", "JavaScript RegEx", + 53, "", "unused", "", + 54, "", "unused", "", + 55, "SCE_HJA_START", "server javascript default", "JS Start - allows eol filled background to not start on same line as SCRIPT tag", + 56, "SCE_HJA_DEFAULT", "server javascript default", "JS Default", + 57, "SCE_HJA_COMMENT", "server javascript comment", "JS Comment", + 58, "SCE_HJA_COMMENTLINE", "server javascript comment line", "JS Line Comment", + 59, "SCE_HJA_COMMENTDOC", "server javascript comment documentation", "JS Doc comment", + 60, "SCE_HJA_NUMBER", "server javascript literal numeric", "JS Number", + 61, "SCE_HJA_WORD", "server javascript identifier", "JS Word", + 62, "SCE_HJA_KEYWORD", "server javascript keyword", "JS Keyword", + 63, "SCE_HJA_DOUBLESTRING", "server javascript literal string", "JS Double quoted string", + 64, "SCE_HJA_SINGLESTRING", "server javascript literal string", "JS Single quoted string", + 65, "SCE_HJA_SYMBOLS", "server javascript operator", "JS Symbols", + 66, "SCE_HJA_STRINGEOL", "server javascript error literal string", "JavaScript EOL", + 67, "SCE_HJA_REGEX", "server javascript literal regex", "JavaScript RegEx", + 68, "", "unused", "", + 69, "", "unused", "", + 70, "SCE_HB_START", "client basic default", "Start", + 71, "SCE_HB_DEFAULT", "client basic default", "Default", + 72, "SCE_HB_COMMENTLINE", "client basic comment line", "Comment", + 73, "SCE_HB_NUMBER", "client basic literal numeric", "Number", + 74, "SCE_HB_WORD", "client basic keyword", "KeyWord", + 75, "SCE_HB_STRING", "client basic literal string", "String", + 76, "SCE_HB_IDENTIFIER", "client basic identifier", "Identifier", + 77, "SCE_HB_STRINGEOL", "client basic literal string", "Unterminated string", + 78, "", "unused", "", + 79, "", "unused", "", + 80, "SCE_HBA_START", "server basic default", "Start", + 81, "SCE_HBA_DEFAULT", "server basic default", "Default", + 82, "SCE_HBA_COMMENTLINE", "server basic comment line", "Comment", + 83, "SCE_HBA_NUMBER", "server basic literal numeric", "Number", + 84, "SCE_HBA_WORD", "server basic keyword", "KeyWord", + 85, "SCE_HBA_STRING", "server basic literal string", "String", + 86, "SCE_HBA_IDENTIFIER", "server basic identifier", "Identifier", + 87, "SCE_HBA_STRINGEOL", "server basic literal string", "Unterminated string", + 88, "", "unused", "", + 89, "", "unused", "", + 90, "SCE_HP_START", "client python default", "Embedded Python", + 91, "SCE_HP_DEFAULT", "client python default", "Embedded Python", + 92, "SCE_HP_COMMENTLINE", "client python comment line", "Comment", + 93, "SCE_HP_NUMBER", "client python literal numeric", "Number", + 94, "SCE_HP_STRING", "client python literal string", "String", + 95, "SCE_HP_CHARACTER", "client python literal string character", "Single quoted string", + 96, "SCE_HP_WORD", "client python keyword", "Keyword", + 97, "SCE_HP_TRIPLE", "client python literal string", "Triple quotes", + 98, "SCE_HP_TRIPLEDOUBLE", "client python literal string", "Triple double quotes", + 99, "SCE_HP_CLASSNAME", "client python identifier", "Class name definition", + 100, "SCE_HP_DEFNAME", "client python identifier", "Function or method name definition", + 101, "SCE_HP_OPERATOR", "client python operator", "Operators", + 102, "SCE_HP_IDENTIFIER", "client python identifier", "Identifiers", + 103, "", "unused", "", + 104, "SCE_HPHP_COMPLEX_VARIABLE", "server php identifier", "PHP complex variable", + 105, "SCE_HPA_START", "server python default", "ASP Python", + 106, "SCE_HPA_DEFAULT", "server python default", "ASP Python", + 107, "SCE_HPA_COMMENTLINE", "server python comment line", "Comment", + 108, "SCE_HPA_NUMBER", "server python literal numeric", "Number", + 109, "SCE_HPA_STRING", "server python literal string", "String", + 110, "SCE_HPA_CHARACTER", "server python literal string character", "Single quoted string", + 111, "SCE_HPA_WORD", "server python keyword", "Keyword", + 112, "SCE_HPA_TRIPLE", "server python literal string", "Triple quotes", + 113, "SCE_HPA_TRIPLEDOUBLE", "server python literal string", "Triple double quotes", + 114, "SCE_HPA_CLASSNAME", "server python identifier", "Class name definition", + 115, "SCE_HPA_DEFNAME", "server python identifier", "Function or method name definition", + 116, "SCE_HPA_OPERATOR", "server python operator", "Operators", + 117, "SCE_HPA_IDENTIFIER", "server python identifier", "Identifiers", + 118, "SCE_HPHP_DEFAULT", "server php default", "Default", + 119, "SCE_HPHP_HSTRING", "server php literal string", "Double quoted String", + 120, "SCE_HPHP_SIMPLESTRING", "server php literal string", "Single quoted string", + 121, "SCE_HPHP_WORD", "server php keyword", "Keyword", + 122, "SCE_HPHP_NUMBER", "server php literal numeric", "Number", + 123, "SCE_HPHP_VARIABLE", "server php identifier", "Variable", + 124, "SCE_HPHP_COMMENT", "server php comment", "Comment", + 125, "SCE_HPHP_COMMENTLINE", "server php comment line", "One line comment", + 126, "SCE_HPHP_HSTRING_VARIABLE", "server php literal string identifier", "PHP variable in double quoted string", + 127, "SCE_HPHP_OPERATOR", "server php operator", "PHP operator", +}; + +LexicalClass lexicalClassesXML[] = { + // Lexer.Secondary XML SCLEX_XML SCE_H_: + 0, "SCE_H_DEFAULT", "default", "Default", + 1, "SCE_H_TAG", "tag", "Tags", + 2, "SCE_H_TAGUNKNOWN", "error tag", "Unknown Tags", + 3, "SCE_H_ATTRIBUTE", "attribute", "Attributes", + 4, "SCE_H_ERRORATTRIBUTEUNKNOWN", "error attribute", "Unknown Attributes", + 5, "SCE_H_NUMBER", "literal numeric", "Numbers", + 6, "SCE_H_DOUBLESTRING", "literal string", "Double quoted strings", + 7, "SCE_H_SINGLESTRING", "literal string", "Single quoted strings", + 8, "SCE_H_OTHER", "tag operator", "Other inside tag, including space and '='", + 9, "SCE_H_COMMENT", "comment", "Comment", + 10, "SCE_H_ENTITY", "literal", "Entities", + 11, "SCE_H_TAGEND", "tag", "XML style tag ends '/>'", + 12, "SCE_H_XMLSTART", "identifier", "XML identifier start ''", + 14, "", "unused", "", + 15, "", "unused", "", + 16, "", "unused", "", + 17, "SCE_H_CDATA", "literal", "CDATA", + 18, "SCE_H_QUESTION", "preprocessor", "Question", + 19, "SCE_H_VALUE", "literal string", "Unquoted Value", + 20, "", "unused", "", + 21, "SCE_H_SGML_DEFAULT", "default", "SGML tags ", + 22, "SCE_H_SGML_COMMAND", "preprocessor", "SGML command", + 23, "SCE_H_SGML_1ST_PARAM", "preprocessor", "SGML 1st param", + 24, "SCE_H_SGML_DOUBLESTRING", "literal string", "SGML double string", + 25, "SCE_H_SGML_SIMPLESTRING", "literal string", "SGML single string", + 26, "SCE_H_SGML_ERROR", "error", "SGML error", + 27, "SCE_H_SGML_SPECIAL", "literal", "SGML special (#XXXX type)", + 28, "SCE_H_SGML_ENTITY", "literal", "SGML entity", + 29, "SCE_H_SGML_COMMENT", "comment", "SGML comment", + 30, "", "unused", "", + 31, "SCE_H_SGML_BLOCK_DEFAULT", "default", "SGML block", +}; + +const char *tagsThatDoNotFold[] = { + "area", + "base", + "basefont", + "br", + "col", + "command", + "embed", + "frame", + "hr", + "img", + "input", + "isindex", + "keygen", + "link", + "meta", + "param", + "source", + "track", + "wbr" +}; + +} +class LexerHTML : public DefaultLexer { + bool isXml; + bool isPHPScript; + WordList keywords; + WordList keywords2; + WordList keywords3; + WordList keywords4; + WordList keywords5; + WordList keywords6; // SGML (DTD) keywords + OptionsHTML options; + OptionSetHTML osHTML; + std::set nonFoldingTags; +public: + explicit LexerHTML(bool isXml_, bool isPHPScript_) : + DefaultLexer(isXml_ ? lexicalClassesHTML : lexicalClassesXML, + isXml_ ? ELEMENTS(lexicalClassesHTML) : ELEMENTS(lexicalClassesXML)), + isXml(isXml_), + isPHPScript(isPHPScript_), + osHTML(isPHPScript_), + nonFoldingTags(std::begin(tagsThatDoNotFold), std::end(tagsThatDoNotFold)) { + } + ~LexerHTML() override { + } + void SCI_METHOD Release() override { + delete this; + } + const char *SCI_METHOD PropertyNames() override { + return osHTML.PropertyNames(); + } + int SCI_METHOD PropertyType(const char *name) override { + return osHTML.PropertyType(name); + } + const char *SCI_METHOD DescribeProperty(const char *name) override { + return osHTML.DescribeProperty(name); + } + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override; + const char *SCI_METHOD DescribeWordListSets() override { + return osHTML.DescribeWordListSets(); + } + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + // No Fold as all folding performs in Lex. + + static ILexer *LexerFactoryHTML() { + return new LexerHTML(false, false); + } + static ILexer *LexerFactoryXML() { + return new LexerHTML(true, false); + } + static ILexer *LexerFactoryPHPScript() { + return new LexerHTML(false, true); + } +}; + +Sci_Position SCI_METHOD LexerHTML::PropertySet(const char *key, const char *val) { + if (osHTML.PropertySet(&options, key, val)) { + return 0; + } + return -1; +} + +Sci_Position SCI_METHOD LexerHTML::WordListSet(int n, const char *wl) { + WordList *wordListN = 0; + switch (n) { + case 0: + wordListN = &keywords; + break; + case 1: + wordListN = &keywords2; + break; + case 2: + wordListN = &keywords3; + break; + case 3: + wordListN = &keywords4; + break; + case 4: + wordListN = &keywords5; + break; + case 5: + wordListN = &keywords6; + break; + } + Sci_Position firstModification = -1; + if (wordListN) { + WordList wlNew; + wlNew.Set(wl); + if (*wordListN != wlNew) { + wordListN->Set(wl); + firstModification = 0; + } + } + return firstModification; +} + +void SCI_METHOD LexerHTML::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + Accessor styler(pAccess, nullptr); + if (isPHPScript && (startPos == 0)) { + initStyle = SCE_HPHP_DEFAULT; + } + styler.StartAt(startPos); + std::string prevWord; + std::string phpStringDelimiter; + int StateToPrint = initStyle; + int state = stateForPrintState(StateToPrint); + std::string makoBlockType; + int makoComment = 0; + std::string djangoBlockType; + // If inside a tag, it may be a script tag, so reread from the start of line starting tag to ensure any language tags are seen + if (InTagState(state)) { + while ((startPos > 0) && (InTagState(styler.StyleAt(startPos - 1)))) { + const Sci_Position backLineStart = styler.LineStart(styler.GetLine(startPos-1)); + length += startPos - backLineStart; + startPos = backLineStart; + } + state = SCE_H_DEFAULT; + } + // String can be heredoc, must find a delimiter first. Reread from beginning of line containing the string, to get the correct lineState + if (isPHPStringState(state)) { + while (startPos > 0 && (isPHPStringState(state) || !isLineEnd(styler[startPos - 1]))) { + startPos--; + length++; + state = styler.StyleAt(startPos); + } + if (startPos == 0) + state = SCE_H_DEFAULT; + } + styler.StartAt(startPos); + + /* Nothing handles getting out of these, so we need not start in any of them. + * As we're at line start and they can't span lines, we'll re-detect them anyway */ + switch (state) { + case SCE_H_QUESTION: + case SCE_H_XMLSTART: + case SCE_H_XMLEND: + case SCE_H_ASP: + state = SCE_H_DEFAULT; + break; + } + + Sci_Position lineCurrent = styler.GetLine(startPos); + int lineState; + if (lineCurrent > 0) { + lineState = styler.GetLineState(lineCurrent-1); + } else { + // Default client and ASP scripting language is JavaScript + lineState = eScriptJS << 8; + lineState |= options.aspDefaultLanguage << 4; + } + script_mode inScriptType = static_cast((lineState >> 0) & 0x03); // 2 bits of scripting mode + + bool tagOpened = (lineState >> 2) & 0x01; // 1 bit to know if we are in an opened tag + bool tagClosing = (lineState >> 3) & 0x01; // 1 bit to know if we are in a closing tag + bool tagDontFold = false; //some HTML tags should not be folded + script_type aspScript = static_cast((lineState >> 4) & 0x0F); // 4 bits of script name + script_type clientScript = static_cast((lineState >> 8) & 0x0F); // 4 bits of script name + int beforePreProc = (lineState >> 12) & 0xFF; // 8 bits of state + + script_type scriptLanguage = ScriptOfState(state); + // If eNonHtmlScript coincides with SCE_H_COMMENT, assume eScriptComment + if (inScriptType == eNonHtmlScript && state == SCE_H_COMMENT) { + scriptLanguage = eScriptComment; + } + script_type beforeLanguage = ScriptOfState(beforePreProc); + const bool foldHTML = options.foldHTML; + const bool fold = foldHTML && options.fold; + const bool foldHTMLPreprocessor = foldHTML && options.foldHTMLPreprocessor; + const bool foldCompact = options.foldCompact; + const bool foldComment = fold && options.foldComment; + const bool foldHeredoc = fold && options.foldHeredoc; + const bool caseSensitive = options.caseSensitive; + const bool allowScripts = options.allowScripts; + const bool isMako = options.isMako; + const bool isDjango = options.isDjango; + const CharacterSet setHTMLWord(CharacterSet::setAlphaNum, ".-_:!#", 0x80, true); + const CharacterSet setTagContinue(CharacterSet::setAlphaNum, ".-_:!#[", 0x80, true); + const CharacterSet setAttributeContinue(CharacterSet::setAlphaNum, ".-_:!#/", 0x80, true); + // TODO: also handle + and - (except if they're part of ++ or --) and return keywords + const CharacterSet setOKBeforeJSRE(CharacterSet::setNone, "([{=,:;!%^&*|?~"); + + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + int visibleChars = 0; + int lineStartVisibleChars = 0; + + int chPrev = ' '; + int ch = ' '; + int chPrevNonWhite = ' '; + // look back to set chPrevNonWhite properly for better regex colouring + if (scriptLanguage == eScriptJS && startPos > 0) { + Sci_Position back = startPos; + int style = 0; + while (--back) { + style = styler.StyleAt(back); + if (style < SCE_HJ_DEFAULT || style > SCE_HJ_COMMENTDOC) + // includes SCE_HJ_COMMENT & SCE_HJ_COMMENTLINE + break; + } + if (style == SCE_HJ_SYMBOLS) { + chPrevNonWhite = static_cast(styler.SafeGetCharAt(back)); + } + } + + styler.StartSegment(startPos); + const Sci_Position lengthDoc = startPos + length; + for (Sci_Position i = startPos; i < lengthDoc; i++) { + const int chPrev2 = chPrev; + chPrev = ch; + if (!IsASpace(ch) && state != SCE_HJ_COMMENT && + state != SCE_HJ_COMMENTLINE && state != SCE_HJ_COMMENTDOC) + chPrevNonWhite = ch; + ch = static_cast(styler[i]); + int chNext = static_cast(styler.SafeGetCharAt(i + 1)); + const int chNext2 = static_cast(styler.SafeGetCharAt(i + 2)); + + // Handle DBCS codepages + if (styler.IsLeadByte(static_cast(ch))) { + chPrev = ' '; + i += 1; + continue; + } + + if ((!IsASpace(ch) || !foldCompact) && fold) + visibleChars++; + if (!IsASpace(ch)) + lineStartVisibleChars++; + + // decide what is the current state to print (depending of the script tag) + StateToPrint = statePrintForState(state, inScriptType); + + // handle script folding + if (fold) { + switch (scriptLanguage) { + case eScriptJS: + case eScriptPHP: + //not currently supported case eScriptVBS: + + if ((state != SCE_HPHP_COMMENT) && (state != SCE_HPHP_COMMENTLINE) && (state != SCE_HJ_COMMENT) && (state != SCE_HJ_COMMENTLINE) && (state != SCE_HJ_COMMENTDOC) && (!isStringState(state))) { + //Platform::DebugPrintf("state=%d, StateToPrint=%d, initStyle=%d\n", state, StateToPrint, initStyle); + //if ((state == SCE_HPHP_OPERATOR) || (state == SCE_HPHP_DEFAULT) || (state == SCE_HJ_SYMBOLS) || (state == SCE_HJ_START) || (state == SCE_HJ_DEFAULT)) { + if (ch == '#') { + Sci_Position j = i + 1; + while ((j < lengthDoc) && IsASpaceOrTab(styler.SafeGetCharAt(j))) { + j++; + } + if (styler.Match(j, "region") || styler.Match(j, "if")) { + levelCurrent++; + } else if (styler.Match(j, "end")) { + levelCurrent--; + } + } else if ((ch == '{') || (ch == '}') || (foldComment && (ch == '/') && (chNext == '*'))) { + levelCurrent += (((ch == '{') || (ch == '/')) ? 1 : -1); + } + } else if (((state == SCE_HPHP_COMMENT) || (state == SCE_HJ_COMMENT)) && foldComment && (ch == '*') && (chNext == '/')) { + levelCurrent--; + } + break; + case eScriptPython: + if (state != SCE_HP_COMMENTLINE && !isMako) { + if ((ch == ':') && ((chNext == '\n') || (chNext == '\r' && chNext2 == '\n'))) { + levelCurrent++; + } else if ((ch == '\n') && !((chNext == '\r') && (chNext2 == '\n')) && (chNext != '\n')) { + // check if the number of tabs is lower than the level + int Findlevel = (levelCurrent & ~SC_FOLDLEVELBASE) * 8; + for (Sci_Position j = 0; Findlevel > 0; j++) { + const char chTmp = styler.SafeGetCharAt(i + j + 1); + if (chTmp == '\t') { + Findlevel -= 8; + } else if (chTmp == ' ') { + Findlevel--; + } else { + break; + } + } + + if (Findlevel > 0) { + levelCurrent -= Findlevel / 8; + if (Findlevel % 8) + levelCurrent--; + } + } + } + break; + default: + break; + } + } + + if ((ch == '\r' && chNext != '\n') || (ch == '\n')) { + // Trigger on CR only (Mac style) or either on LF from CR+LF (Dos/Win) or on LF alone (Unix) + // Avoid triggering two times on Dos/Win + // New line -> record any line state onto /next/ line + if (fold) { + int lev = levelPrev; + if (visibleChars == 0) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + + styler.SetLevel(lineCurrent, lev); + visibleChars = 0; + levelPrev = levelCurrent; + } + styler.SetLineState(lineCurrent, + ((inScriptType & 0x03) << 0) | + ((tagOpened ? 1 : 0) << 2) | + ((tagClosing ? 1 : 0) << 3) | + ((aspScript & 0x0F) << 4) | + ((clientScript & 0x0F) << 8) | + ((beforePreProc & 0xFF) << 12)); + lineCurrent++; + lineStartVisibleChars = 0; + } + + // handle start of Mako comment line + if (isMako && ch == '#' && chNext == '#') { + makoComment = 1; + state = SCE_HP_COMMENTLINE; + } + + // handle end of Mako comment line + else if (isMako && makoComment && (ch == '\r' || ch == '\n')) { + makoComment = 0; + styler.ColourTo(i - 1, StateToPrint); + if (scriptLanguage == eScriptPython) { + state = SCE_HP_DEFAULT; + } else { + state = SCE_H_DEFAULT; + } + } + // Allow falling through to mako handling code if newline is going to end a block + if (((ch == '\r' && chNext != '\n') || (ch == '\n')) && + (!isMako || (makoBlockType != "%"))) { + } + // Ignore everything in mako comment until the line ends + else if (isMako && makoComment) { + } + + // generic end of script processing + else if ((inScriptType == eNonHtmlScript) && (ch == '<') && (chNext == '/')) { + // Check if it's the end of the script tag (or any other HTML tag) + switch (state) { + // in these cases, you can embed HTML tags (to confirm !!!!!!!!!!!!!!!!!!!!!!) + case SCE_H_DOUBLESTRING: + case SCE_H_SINGLESTRING: + case SCE_HJ_COMMENT: + case SCE_HJ_COMMENTDOC: + //case SCE_HJ_COMMENTLINE: // removed as this is a common thing done to hide + // the end of script marker from some JS interpreters. + case SCE_HB_COMMENTLINE: + case SCE_HBA_COMMENTLINE: + case SCE_HJ_DOUBLESTRING: + case SCE_HJ_SINGLESTRING: + case SCE_HJ_REGEX: + case SCE_HB_STRING: + case SCE_HBA_STRING: + case SCE_HP_STRING: + case SCE_HP_TRIPLE: + case SCE_HP_TRIPLEDOUBLE: + case SCE_HPHP_HSTRING: + case SCE_HPHP_SIMPLESTRING: + case SCE_HPHP_COMMENT: + case SCE_HPHP_COMMENTLINE: + break; + default : + // check if the closing tag is a script tag + if (const char *tag = + state == SCE_HJ_COMMENTLINE || isXml ? "script" : + state == SCE_H_COMMENT ? "comment" : 0) { + Sci_Position j = i + 2; + int chr; + do { + chr = static_cast(*tag++); + } while (chr != 0 && chr == MakeLowerCase(styler.SafeGetCharAt(j++))); + if (chr != 0) break; + } + // closing tag of the script (it's a closing HTML tag anyway) + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_TAGUNKNOWN; + inScriptType = eHtml; + scriptLanguage = eScriptNone; + clientScript = eScriptJS; + i += 2; + visibleChars += 2; + tagClosing = true; + continue; + } + } + + ///////////////////////////////////// + // handle the start of PHP pre-processor = Non-HTML + else if ((state != SCE_H_ASPAT) && + !isStringState(state) && + (state != SCE_HPHP_COMMENT) && + (state != SCE_HPHP_COMMENTLINE) && + (ch == '<') && + (chNext == '?') && + !IsScriptCommentState(state)) { + beforeLanguage = scriptLanguage; + scriptLanguage = segIsScriptingIndicator(styler, i + 2, i + 6, isXml ? eScriptXML : eScriptPHP); + if ((scriptLanguage != eScriptPHP) && (isStringState(state) || (state==SCE_H_COMMENT))) continue; + styler.ColourTo(i - 1, StateToPrint); + beforePreProc = state; + i++; + visibleChars++; + i += PrintScriptingIndicatorOffset(styler, styler.GetStartSegment() + 2, i + 6); + if (scriptLanguage == eScriptXML) + styler.ColourTo(i, SCE_H_XMLSTART); + else + styler.ColourTo(i, SCE_H_QUESTION); + state = StateForScript(scriptLanguage); + if (inScriptType == eNonHtmlScript) + inScriptType = eNonHtmlScriptPreProc; + else + inScriptType = eNonHtmlPreProc; + // Fold whole script, but not if the XML first tag (all XML-like tags in this case) + if (foldHTMLPreprocessor && (scriptLanguage != eScriptXML)) { + levelCurrent++; + } + // should be better + ch = static_cast(styler.SafeGetCharAt(i)); + continue; + } + + // handle the start Mako template Python code + else if (isMako && scriptLanguage == eScriptNone && ((ch == '<' && chNext == '%') || + (lineStartVisibleChars == 1 && ch == '%') || + (lineStartVisibleChars == 1 && ch == '/' && chNext == '%') || + (ch == '$' && chNext == '{') || + (ch == '<' && chNext == '/' && chNext2 == '%'))) { + if (ch == '%' || ch == '/') + makoBlockType = "%"; + else if (ch == '$') + makoBlockType = "{"; + else if (chNext == '/') + makoBlockType = GetNextWord(styler, i+3); + else + makoBlockType = GetNextWord(styler, i+2); + styler.ColourTo(i - 1, StateToPrint); + beforePreProc = state; + if (inScriptType == eNonHtmlScript) + inScriptType = eNonHtmlScriptPreProc; + else + inScriptType = eNonHtmlPreProc; + + if (chNext == '/') { + i += 2; + visibleChars += 2; + } else if (ch != '%') { + i++; + visibleChars++; + } + state = SCE_HP_START; + scriptLanguage = eScriptPython; + styler.ColourTo(i, SCE_H_ASP); + if (ch != '%' && ch != '$' && ch != '/') { + i += makoBlockType.length(); + visibleChars += static_cast(makoBlockType.length()); + if (keywords4.InList(makoBlockType.c_str())) + styler.ColourTo(i, SCE_HP_WORD); + else + styler.ColourTo(i, SCE_H_TAGUNKNOWN); + } + + ch = static_cast(styler.SafeGetCharAt(i)); + continue; + } + + // handle the start/end of Django comment + else if (isDjango && state != SCE_H_COMMENT && (ch == '{' && chNext == '#')) { + styler.ColourTo(i - 1, StateToPrint); + beforePreProc = state; + beforeLanguage = scriptLanguage; + if (inScriptType == eNonHtmlScript) + inScriptType = eNonHtmlScriptPreProc; + else + inScriptType = eNonHtmlPreProc; + i += 1; + visibleChars += 1; + scriptLanguage = eScriptComment; + state = SCE_H_COMMENT; + styler.ColourTo(i, SCE_H_ASP); + ch = static_cast(styler.SafeGetCharAt(i)); + continue; + } else if (isDjango && state == SCE_H_COMMENT && (ch == '#' && chNext == '}')) { + styler.ColourTo(i - 1, StateToPrint); + i += 1; + visibleChars += 1; + styler.ColourTo(i, SCE_H_ASP); + state = beforePreProc; + if (inScriptType == eNonHtmlScriptPreProc) + inScriptType = eNonHtmlScript; + else + inScriptType = eHtml; + scriptLanguage = beforeLanguage; + continue; + } + + // handle the start Django template code + else if (isDjango && scriptLanguage != eScriptPython && scriptLanguage != eScriptComment && (ch == '{' && (chNext == '%' || chNext == '{'))) { + if (chNext == '%') + djangoBlockType = "%"; + else + djangoBlockType = "{"; + styler.ColourTo(i - 1, StateToPrint); + beforePreProc = state; + if (inScriptType == eNonHtmlScript) + inScriptType = eNonHtmlScriptPreProc; + else + inScriptType = eNonHtmlPreProc; + + i += 1; + visibleChars += 1; + state = SCE_HP_START; + beforeLanguage = scriptLanguage; + scriptLanguage = eScriptPython; + styler.ColourTo(i, SCE_H_ASP); + + ch = static_cast(styler.SafeGetCharAt(i)); + continue; + } + + // handle the start of ASP pre-processor = Non-HTML + else if (!isMako && !isDjango && !isCommentASPState(state) && (ch == '<') && (chNext == '%') && !isPHPStringState(state)) { + styler.ColourTo(i - 1, StateToPrint); + beforePreProc = state; + if (inScriptType == eNonHtmlScript) + inScriptType = eNonHtmlScriptPreProc; + else + inScriptType = eNonHtmlPreProc; + + if (chNext2 == '@') { + i += 2; // place as if it was the second next char treated + visibleChars += 2; + state = SCE_H_ASPAT; + } else if ((chNext2 == '-') && (styler.SafeGetCharAt(i + 3) == '-')) { + styler.ColourTo(i + 3, SCE_H_ASP); + state = SCE_H_XCCOMMENT; + scriptLanguage = eScriptVBS; + continue; + } else { + if (chNext2 == '=') { + i += 2; // place as if it was the second next char treated + visibleChars += 2; + } else { + i++; // place as if it was the next char treated + visibleChars++; + } + + state = StateForScript(aspScript); + } + scriptLanguage = eScriptVBS; + styler.ColourTo(i, SCE_H_ASP); + // fold whole script + if (foldHTMLPreprocessor) + levelCurrent++; + // should be better + ch = static_cast(styler.SafeGetCharAt(i)); + continue; + } + + ///////////////////////////////////// + // handle the start of SGML language (DTD) + else if (((scriptLanguage == eScriptNone) || (scriptLanguage == eScriptXML)) && + (chPrev == '<') && + (ch == '!') && + (StateToPrint != SCE_H_CDATA) && + (!IsCommentState(StateToPrint)) && + (!IsScriptCommentState(StateToPrint))) { + beforePreProc = state; + styler.ColourTo(i - 2, StateToPrint); + if ((chNext == '-') && (chNext2 == '-')) { + state = SCE_H_COMMENT; // wait for a pending command + styler.ColourTo(i + 2, SCE_H_COMMENT); + i += 2; // follow styling after the -- + } else if (isWordCdata(i + 1, i + 7, styler)) { + state = SCE_H_CDATA; + } else { + styler.ColourTo(i, SCE_H_SGML_DEFAULT); // ') { + i++; + visibleChars++; + } + else if ((makoBlockType == "%") && ch == '/') { + i++; + visibleChars++; + } + if ((makoBlockType != "%") || ch == '/') { + styler.ColourTo(i, SCE_H_ASP); + } + state = beforePreProc; + if (inScriptType == eNonHtmlScriptPreProc) + inScriptType = eNonHtmlScript; + else + inScriptType = eHtml; + scriptLanguage = eScriptNone; + continue; + } + + // handle the end of Django template code + else if (isDjango && + ((inScriptType == eNonHtmlPreProc) || (inScriptType == eNonHtmlScriptPreProc)) && + (scriptLanguage != eScriptNone) && stateAllowsTermination(state) && + isDjangoBlockEnd(ch, chNext, djangoBlockType)) { + if (state == SCE_H_ASPAT) { + aspScript = segIsScriptingIndicator(styler, + styler.GetStartSegment(), i - 1, aspScript); + } + if (state == SCE_HP_WORD) { + classifyWordHTPy(styler.GetStartSegment(), i - 1, keywords4, styler, prevWord, inScriptType, isMako); + } else { + styler.ColourTo(i - 1, StateToPrint); + } + i += 1; + visibleChars += 1; + styler.ColourTo(i, SCE_H_ASP); + state = beforePreProc; + if (inScriptType == eNonHtmlScriptPreProc) + inScriptType = eNonHtmlScript; + else + inScriptType = eHtml; + scriptLanguage = beforeLanguage; + continue; + } + + // handle the end of a pre-processor = Non-HTML + else if ((!isMako && !isDjango && ((inScriptType == eNonHtmlPreProc) || (inScriptType == eNonHtmlScriptPreProc)) && + (((scriptLanguage != eScriptNone) && stateAllowsTermination(state))) && + (((ch == '%') || (ch == '?')) && (chNext == '>'))) || + ((scriptLanguage == eScriptSGML) && (ch == '>') && (state != SCE_H_SGML_COMMENT))) { + if (state == SCE_H_ASPAT) { + aspScript = segIsScriptingIndicator(styler, + styler.GetStartSegment(), i - 1, aspScript); + } + // Bounce out of any ASP mode + switch (state) { + case SCE_HJ_WORD: + classifyWordHTJS(styler.GetStartSegment(), i - 1, keywords2, styler, inScriptType); + break; + case SCE_HB_WORD: + classifyWordHTVB(styler.GetStartSegment(), i - 1, keywords3, styler, inScriptType); + break; + case SCE_HP_WORD: + classifyWordHTPy(styler.GetStartSegment(), i - 1, keywords4, styler, prevWord, inScriptType, isMako); + break; + case SCE_HPHP_WORD: + classifyWordHTPHP(styler.GetStartSegment(), i - 1, keywords5, styler); + break; + case SCE_H_XCCOMMENT: + styler.ColourTo(i - 1, state); + break; + default : + styler.ColourTo(i - 1, StateToPrint); + break; + } + if (scriptLanguage != eScriptSGML) { + i++; + visibleChars++; + } + if (ch == '%') + styler.ColourTo(i, SCE_H_ASP); + else if (scriptLanguage == eScriptXML) + styler.ColourTo(i, SCE_H_XMLEND); + else if (scriptLanguage == eScriptSGML) + styler.ColourTo(i, SCE_H_SGML_DEFAULT); + else + styler.ColourTo(i, SCE_H_QUESTION); + state = beforePreProc; + if (inScriptType == eNonHtmlScriptPreProc) + inScriptType = eNonHtmlScript; + else + inScriptType = eHtml; + // Unfold all scripting languages, except for XML tag + if (foldHTMLPreprocessor && (scriptLanguage != eScriptXML)) { + levelCurrent--; + } + scriptLanguage = beforeLanguage; + continue; + } + ///////////////////////////////////// + + switch (state) { + case SCE_H_DEFAULT: + if (ch == '<') { + // in HTML, fold on tag open and unfold on tag close + tagOpened = true; + tagClosing = (chNext == '/'); + styler.ColourTo(i - 1, StateToPrint); + if (chNext != '!') + state = SCE_H_TAGUNKNOWN; + } else if (ch == '&') { + styler.ColourTo(i - 1, SCE_H_DEFAULT); + state = SCE_H_ENTITY; + } + break; + case SCE_H_SGML_DEFAULT: + case SCE_H_SGML_BLOCK_DEFAULT: +// if (scriptLanguage == eScriptSGMLblock) +// StateToPrint = SCE_H_SGML_BLOCK_DEFAULT; + + if (ch == '\"') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_SGML_DOUBLESTRING; + } else if (ch == '\'') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_SGML_SIMPLESTRING; + } else if ((ch == '-') && (chPrev == '-')) { + if (static_cast(styler.GetStartSegment()) <= (i - 2)) { + styler.ColourTo(i - 2, StateToPrint); + } + state = SCE_H_SGML_COMMENT; + } else if (IsASCII(ch) && isalpha(ch) && (chPrev == '%')) { + styler.ColourTo(i - 2, StateToPrint); + state = SCE_H_SGML_ENTITY; + } else if (ch == '#') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_SGML_SPECIAL; + } else if (ch == '[') { + styler.ColourTo(i - 1, StateToPrint); + scriptLanguage = eScriptSGMLblock; + state = SCE_H_SGML_BLOCK_DEFAULT; + } else if (ch == ']') { + if (scriptLanguage == eScriptSGMLblock) { + styler.ColourTo(i, StateToPrint); + scriptLanguage = eScriptSGML; + } else { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i, SCE_H_SGML_ERROR); + } + state = SCE_H_SGML_DEFAULT; + } else if (scriptLanguage == eScriptSGMLblock) { + if ((ch == '!') && (chPrev == '<')) { + styler.ColourTo(i - 2, StateToPrint); + styler.ColourTo(i, SCE_H_SGML_DEFAULT); + state = SCE_H_SGML_COMMAND; + } else if (ch == '>') { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i, SCE_H_SGML_DEFAULT); + } + } + break; + case SCE_H_SGML_COMMAND: + if ((ch == '-') && (chPrev == '-')) { + styler.ColourTo(i - 2, StateToPrint); + state = SCE_H_SGML_COMMENT; + } else if (!issgmlwordchar(ch)) { + if (isWordHSGML(styler.GetStartSegment(), i - 1, keywords6, styler)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_SGML_1ST_PARAM; + } else { + state = SCE_H_SGML_ERROR; + } + } + break; + case SCE_H_SGML_1ST_PARAM: + // wait for the beginning of the word + if ((ch == '-') && (chPrev == '-')) { + if (scriptLanguage == eScriptSGMLblock) { + styler.ColourTo(i - 2, SCE_H_SGML_BLOCK_DEFAULT); + } else { + styler.ColourTo(i - 2, SCE_H_SGML_DEFAULT); + } + state = SCE_H_SGML_1ST_PARAM_COMMENT; + } else if (issgmlwordchar(ch)) { + if (scriptLanguage == eScriptSGMLblock) { + styler.ColourTo(i - 1, SCE_H_SGML_BLOCK_DEFAULT); + } else { + styler.ColourTo(i - 1, SCE_H_SGML_DEFAULT); + } + // find the length of the word + int size = 1; + while (setHTMLWord.Contains(static_cast(styler.SafeGetCharAt(i + size)))) + size++; + styler.ColourTo(i + size - 1, StateToPrint); + i += size - 1; + visibleChars += size - 1; + ch = static_cast(styler.SafeGetCharAt(i)); + if (scriptLanguage == eScriptSGMLblock) { + state = SCE_H_SGML_BLOCK_DEFAULT; + } else { + state = SCE_H_SGML_DEFAULT; + } + continue; + } + break; + case SCE_H_SGML_ERROR: + if ((ch == '-') && (chPrev == '-')) { + styler.ColourTo(i - 2, StateToPrint); + state = SCE_H_SGML_COMMENT; + } + break; + case SCE_H_SGML_DOUBLESTRING: + if (ch == '\"') { + styler.ColourTo(i, StateToPrint); + state = SCE_H_SGML_DEFAULT; + } + break; + case SCE_H_SGML_SIMPLESTRING: + if (ch == '\'') { + styler.ColourTo(i, StateToPrint); + state = SCE_H_SGML_DEFAULT; + } + break; + case SCE_H_SGML_COMMENT: + if ((ch == '-') && (chPrev == '-')) { + styler.ColourTo(i, StateToPrint); + state = SCE_H_SGML_DEFAULT; + } + break; + case SCE_H_CDATA: + if ((chPrev2 == ']') && (chPrev == ']') && (ch == '>')) { + styler.ColourTo(i, StateToPrint); + state = SCE_H_DEFAULT; + levelCurrent--; + } + break; + case SCE_H_COMMENT: + if ((scriptLanguage != eScriptComment) && (chPrev2 == '-') && (chPrev == '-') && (ch == '>')) { + styler.ColourTo(i, StateToPrint); + state = SCE_H_DEFAULT; + levelCurrent--; + } + break; + case SCE_H_SGML_1ST_PARAM_COMMENT: + if ((ch == '-') && (chPrev == '-')) { + styler.ColourTo(i, SCE_H_SGML_COMMENT); + state = SCE_H_SGML_1ST_PARAM; + } + break; + case SCE_H_SGML_SPECIAL: + if (!(IsASCII(ch) && isupper(ch))) { + styler.ColourTo(i - 1, StateToPrint); + if (isalnum(ch)) { + state = SCE_H_SGML_ERROR; + } else { + state = SCE_H_SGML_DEFAULT; + } + } + break; + case SCE_H_SGML_ENTITY: + if (ch == ';') { + styler.ColourTo(i, StateToPrint); + state = SCE_H_SGML_DEFAULT; + } else if (!(IsASCII(ch) && isalnum(ch)) && ch != '-' && ch != '.') { + styler.ColourTo(i, SCE_H_SGML_ERROR); + state = SCE_H_SGML_DEFAULT; + } + break; + case SCE_H_ENTITY: + if (ch == ';') { + styler.ColourTo(i, StateToPrint); + state = SCE_H_DEFAULT; + } + if (ch != '#' && !(IsASCII(ch) && isalnum(ch)) // Should check that '#' follows '&', but it is unlikely anyway... + && ch != '.' && ch != '-' && ch != '_' && ch != ':') { // valid in XML + if (!IsASCII(ch)) // Possibly start of a multibyte character so don't allow this byte to be in entity style + styler.ColourTo(i-1, SCE_H_TAGUNKNOWN); + else + styler.ColourTo(i, SCE_H_TAGUNKNOWN); + state = SCE_H_DEFAULT; + } + break; + case SCE_H_TAGUNKNOWN: + if (!setTagContinue.Contains(ch) && !((ch == '/') && (chPrev == '<'))) { + int eClass = classifyTagHTML(styler.GetStartSegment(), + i - 1, keywords, styler, tagDontFold, caseSensitive, isXml, allowScripts, nonFoldingTags); + if (eClass == SCE_H_SCRIPT || eClass == SCE_H_COMMENT) { + if (!tagClosing) { + inScriptType = eNonHtmlScript; + scriptLanguage = eClass == SCE_H_SCRIPT ? clientScript : eScriptComment; + } else { + scriptLanguage = eScriptNone; + } + eClass = SCE_H_TAG; + } + if (ch == '>') { + styler.ColourTo(i, eClass); + if (inScriptType == eNonHtmlScript) { + state = StateForScript(scriptLanguage); + } else { + state = SCE_H_DEFAULT; + } + tagOpened = false; + if (!tagDontFold) { + if (tagClosing) { + levelCurrent--; + } else { + levelCurrent++; + } + } + tagClosing = false; + } else if (ch == '/' && chNext == '>') { + if (eClass == SCE_H_TAGUNKNOWN) { + styler.ColourTo(i + 1, SCE_H_TAGUNKNOWN); + } else { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i + 1, SCE_H_TAGEND); + } + i++; + ch = chNext; + state = SCE_H_DEFAULT; + tagOpened = false; + } else { + if (eClass != SCE_H_TAGUNKNOWN) { + if (eClass == SCE_H_SGML_DEFAULT) { + state = SCE_H_SGML_DEFAULT; + } else { + state = SCE_H_OTHER; + } + } + } + } + break; + case SCE_H_ATTRIBUTE: + if (!setAttributeContinue.Contains(ch)) { + if (inScriptType == eNonHtmlScript) { + const int scriptLanguagePrev = scriptLanguage; + clientScript = segIsScriptingIndicator(styler, styler.GetStartSegment(), i - 1, scriptLanguage); + scriptLanguage = clientScript; + if ((scriptLanguagePrev != scriptLanguage) && (scriptLanguage == eScriptNone)) + inScriptType = eHtml; + } + classifyAttribHTML(styler.GetStartSegment(), i - 1, keywords, styler); + if (ch == '>') { + styler.ColourTo(i, SCE_H_TAG); + if (inScriptType == eNonHtmlScript) { + state = StateForScript(scriptLanguage); + } else { + state = SCE_H_DEFAULT; + } + tagOpened = false; + if (!tagDontFold) { + if (tagClosing) { + levelCurrent--; + } else { + levelCurrent++; + } + } + tagClosing = false; + } else if (ch == '=') { + styler.ColourTo(i, SCE_H_OTHER); + state = SCE_H_VALUE; + } else { + state = SCE_H_OTHER; + } + } + break; + case SCE_H_OTHER: + if (ch == '>') { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i, SCE_H_TAG); + if (inScriptType == eNonHtmlScript) { + state = StateForScript(scriptLanguage); + } else { + state = SCE_H_DEFAULT; + } + tagOpened = false; + if (!tagDontFold) { + if (tagClosing) { + levelCurrent--; + } else { + levelCurrent++; + } + } + tagClosing = false; + } else if (ch == '\"') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_DOUBLESTRING; + } else if (ch == '\'') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_SINGLESTRING; + } else if (ch == '=') { + styler.ColourTo(i, StateToPrint); + state = SCE_H_VALUE; + } else if (ch == '/' && chNext == '>') { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i + 1, SCE_H_TAGEND); + i++; + ch = chNext; + state = SCE_H_DEFAULT; + tagOpened = false; + } else if (ch == '?' && chNext == '>') { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i + 1, SCE_H_XMLEND); + i++; + ch = chNext; + state = SCE_H_DEFAULT; + } else if (setHTMLWord.Contains(ch)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_H_ATTRIBUTE; + } + break; + case SCE_H_DOUBLESTRING: + if (ch == '\"') { + if (inScriptType == eNonHtmlScript) { + scriptLanguage = segIsScriptingIndicator(styler, styler.GetStartSegment(), i, scriptLanguage); + } + styler.ColourTo(i, SCE_H_DOUBLESTRING); + state = SCE_H_OTHER; + } + break; + case SCE_H_SINGLESTRING: + if (ch == '\'') { + if (inScriptType == eNonHtmlScript) { + scriptLanguage = segIsScriptingIndicator(styler, styler.GetStartSegment(), i, scriptLanguage); + } + styler.ColourTo(i, SCE_H_SINGLESTRING); + state = SCE_H_OTHER; + } + break; + case SCE_H_VALUE: + if (!setHTMLWord.Contains(ch)) { + if (ch == '\"' && chPrev == '=') { + // Should really test for being first character + state = SCE_H_DOUBLESTRING; + } else if (ch == '\'' && chPrev == '=') { + state = SCE_H_SINGLESTRING; + } else { + if (IsNumber(styler.GetStartSegment(), styler)) { + styler.ColourTo(i - 1, SCE_H_NUMBER); + } else { + styler.ColourTo(i - 1, StateToPrint); + } + if (ch == '>') { + styler.ColourTo(i, SCE_H_TAG); + if (inScriptType == eNonHtmlScript) { + state = StateForScript(scriptLanguage); + } else { + state = SCE_H_DEFAULT; + } + tagOpened = false; + if (!tagDontFold) { + if (tagClosing) { + levelCurrent--; + } else { + levelCurrent++; + } + } + tagClosing = false; + } else { + state = SCE_H_OTHER; + } + } + } + break; + case SCE_HJ_DEFAULT: + case SCE_HJ_START: + case SCE_HJ_SYMBOLS: + if (IsAWordStart(ch)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_WORD; + } else if (ch == '/' && chNext == '*') { + styler.ColourTo(i - 1, StateToPrint); + if (chNext2 == '*') + state = SCE_HJ_COMMENTDOC; + else + state = SCE_HJ_COMMENT; + if (chNext2 == '/') { + // Eat the * so it isn't used for the end of the comment + i++; + } + } else if (ch == '/' && chNext == '/') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_COMMENTLINE; + } else if (ch == '/' && setOKBeforeJSRE.Contains(chPrevNonWhite)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_REGEX; + } else if (ch == '\"') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_DOUBLESTRING; + } else if (ch == '\'') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_SINGLESTRING; + } else if ((ch == '<') && (chNext == '!') && (chNext2 == '-') && + styler.SafeGetCharAt(i + 3) == '-') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_COMMENTLINE; + } else if ((ch == '-') && (chNext == '-') && (chNext2 == '>')) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_COMMENTLINE; + i += 2; + } else if (IsOperator(ch)) { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i, statePrintForState(SCE_HJ_SYMBOLS, inScriptType)); + state = SCE_HJ_DEFAULT; + } else if ((ch == ' ') || (ch == '\t')) { + if (state == SCE_HJ_START) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_DEFAULT; + } + } + break; + case SCE_HJ_WORD: + if (!IsAWordChar(ch)) { + classifyWordHTJS(styler.GetStartSegment(), i - 1, keywords2, styler, inScriptType); + //styler.ColourTo(i - 1, eHTJSKeyword); + state = SCE_HJ_DEFAULT; + if (ch == '/' && chNext == '*') { + if (chNext2 == '*') + state = SCE_HJ_COMMENTDOC; + else + state = SCE_HJ_COMMENT; + } else if (ch == '/' && chNext == '/') { + state = SCE_HJ_COMMENTLINE; + } else if (ch == '\"') { + state = SCE_HJ_DOUBLESTRING; + } else if (ch == '\'') { + state = SCE_HJ_SINGLESTRING; + } else if ((ch == '-') && (chNext == '-') && (chNext2 == '>')) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_COMMENTLINE; + i += 2; + } else if (IsOperator(ch)) { + styler.ColourTo(i, statePrintForState(SCE_HJ_SYMBOLS, inScriptType)); + state = SCE_HJ_DEFAULT; + } + } + break; + case SCE_HJ_COMMENT: + case SCE_HJ_COMMENTDOC: + if (ch == '/' && chPrev == '*') { + styler.ColourTo(i, StateToPrint); + state = SCE_HJ_DEFAULT; + ch = ' '; + } + break; + case SCE_HJ_COMMENTLINE: + if (ch == '\r' || ch == '\n') { + styler.ColourTo(i - 1, statePrintForState(SCE_HJ_COMMENTLINE, inScriptType)); + state = SCE_HJ_DEFAULT; + ch = ' '; + } + break; + case SCE_HJ_DOUBLESTRING: + if (ch == '\\') { + if (chNext == '\"' || chNext == '\'' || chNext == '\\') { + i++; + } + } else if (ch == '\"') { + styler.ColourTo(i, statePrintForState(SCE_HJ_DOUBLESTRING, inScriptType)); + state = SCE_HJ_DEFAULT; + } else if ((inScriptType == eNonHtmlScript) && (ch == '-') && (chNext == '-') && (chNext2 == '>')) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_COMMENTLINE; + i += 2; + } else if (isLineEnd(ch)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_STRINGEOL; + } + break; + case SCE_HJ_SINGLESTRING: + if (ch == '\\') { + if (chNext == '\"' || chNext == '\'' || chNext == '\\') { + i++; + } + } else if (ch == '\'') { + styler.ColourTo(i, statePrintForState(SCE_HJ_SINGLESTRING, inScriptType)); + state = SCE_HJ_DEFAULT; + } else if ((inScriptType == eNonHtmlScript) && (ch == '-') && (chNext == '-') && (chNext2 == '>')) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_COMMENTLINE; + i += 2; + } else if (isLineEnd(ch)) { + styler.ColourTo(i - 1, StateToPrint); + if (chPrev != '\\' && (chPrev2 != '\\' || chPrev != '\r' || ch != '\n')) { + state = SCE_HJ_STRINGEOL; + } + } + break; + case SCE_HJ_STRINGEOL: + if (!isLineEnd(ch)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HJ_DEFAULT; + } else if (!isLineEnd(chNext)) { + styler.ColourTo(i, StateToPrint); + state = SCE_HJ_DEFAULT; + } + break; + case SCE_HJ_REGEX: + if (ch == '\r' || ch == '\n' || ch == '/') { + if (ch == '/') { + while (IsASCII(chNext) && islower(chNext)) { // gobble regex flags + i++; + ch = chNext; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } + } + styler.ColourTo(i, StateToPrint); + state = SCE_HJ_DEFAULT; + } else if (ch == '\\') { + // Gobble up the quoted character + if (chNext == '\\' || chNext == '/') { + i++; + ch = chNext; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } + } + break; + case SCE_HB_DEFAULT: + case SCE_HB_START: + if (IsAWordStart(ch)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_WORD; + } else if (ch == '\'') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_COMMENTLINE; + } else if (ch == '\"') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_STRING; + } else if ((ch == '<') && (chNext == '!') && (chNext2 == '-') && + styler.SafeGetCharAt(i + 3) == '-') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_COMMENTLINE; + } else if (IsOperator(ch)) { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i, statePrintForState(SCE_HB_DEFAULT, inScriptType)); + state = SCE_HB_DEFAULT; + } else if ((ch == ' ') || (ch == '\t')) { + if (state == SCE_HB_START) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_DEFAULT; + } + } + break; + case SCE_HB_WORD: + if (!IsAWordChar(ch)) { + state = classifyWordHTVB(styler.GetStartSegment(), i - 1, keywords3, styler, inScriptType); + if (state == SCE_HB_DEFAULT) { + if (ch == '\"') { + state = SCE_HB_STRING; + } else if (ch == '\'') { + state = SCE_HB_COMMENTLINE; + } else if (IsOperator(ch)) { + styler.ColourTo(i, statePrintForState(SCE_HB_DEFAULT, inScriptType)); + state = SCE_HB_DEFAULT; + } + } + } + break; + case SCE_HB_STRING: + if (ch == '\"') { + styler.ColourTo(i, StateToPrint); + state = SCE_HB_DEFAULT; + } else if (ch == '\r' || ch == '\n') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_STRINGEOL; + } + break; + case SCE_HB_COMMENTLINE: + if (ch == '\r' || ch == '\n') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_DEFAULT; + } + break; + case SCE_HB_STRINGEOL: + if (!isLineEnd(ch)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HB_DEFAULT; + } else if (!isLineEnd(chNext)) { + styler.ColourTo(i, StateToPrint); + state = SCE_HB_DEFAULT; + } + break; + case SCE_HP_DEFAULT: + case SCE_HP_START: + if (IsAWordStart(ch)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HP_WORD; + } else if ((ch == '<') && (chNext == '!') && (chNext2 == '-') && + styler.SafeGetCharAt(i + 3) == '-') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HP_COMMENTLINE; + } else if (ch == '#') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HP_COMMENTLINE; + } else if (ch == '\"') { + styler.ColourTo(i - 1, StateToPrint); + if (chNext == '\"' && chNext2 == '\"') { + i += 2; + state = SCE_HP_TRIPLEDOUBLE; + ch = ' '; + chPrev = ' '; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } else { + // state = statePrintForState(SCE_HP_STRING,inScriptType); + state = SCE_HP_STRING; + } + } else if (ch == '\'') { + styler.ColourTo(i - 1, StateToPrint); + if (chNext == '\'' && chNext2 == '\'') { + i += 2; + state = SCE_HP_TRIPLE; + ch = ' '; + chPrev = ' '; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } else { + state = SCE_HP_CHARACTER; + } + } else if (IsOperator(ch)) { + styler.ColourTo(i - 1, StateToPrint); + styler.ColourTo(i, statePrintForState(SCE_HP_OPERATOR, inScriptType)); + } else if ((ch == ' ') || (ch == '\t')) { + if (state == SCE_HP_START) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HP_DEFAULT; + } + } + break; + case SCE_HP_WORD: + if (!IsAWordChar(ch)) { + classifyWordHTPy(styler.GetStartSegment(), i - 1, keywords4, styler, prevWord, inScriptType, isMako); + state = SCE_HP_DEFAULT; + if (ch == '#') { + state = SCE_HP_COMMENTLINE; + } else if (ch == '\"') { + if (chNext == '\"' && chNext2 == '\"') { + i += 2; + state = SCE_HP_TRIPLEDOUBLE; + ch = ' '; + chPrev = ' '; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } else { + state = SCE_HP_STRING; + } + } else if (ch == '\'') { + if (chNext == '\'' && chNext2 == '\'') { + i += 2; + state = SCE_HP_TRIPLE; + ch = ' '; + chPrev = ' '; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } else { + state = SCE_HP_CHARACTER; + } + } else if (IsOperator(ch)) { + styler.ColourTo(i, statePrintForState(SCE_HP_OPERATOR, inScriptType)); + } + } + break; + case SCE_HP_COMMENTLINE: + if (ch == '\r' || ch == '\n') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HP_DEFAULT; + } + break; + case SCE_HP_STRING: + if (ch == '\\') { + if (chNext == '\"' || chNext == '\'' || chNext == '\\') { + i++; + ch = chNext; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } + } else if (ch == '\"') { + styler.ColourTo(i, StateToPrint); + state = SCE_HP_DEFAULT; + } + break; + case SCE_HP_CHARACTER: + if (ch == '\\') { + if (chNext == '\"' || chNext == '\'' || chNext == '\\') { + i++; + ch = chNext; + chNext = static_cast(styler.SafeGetCharAt(i + 1)); + } + } else if (ch == '\'') { + styler.ColourTo(i, StateToPrint); + state = SCE_HP_DEFAULT; + } + break; + case SCE_HP_TRIPLE: + if (ch == '\'' && chPrev == '\'' && chPrev2 == '\'') { + styler.ColourTo(i, StateToPrint); + state = SCE_HP_DEFAULT; + } + break; + case SCE_HP_TRIPLEDOUBLE: + if (ch == '\"' && chPrev == '\"' && chPrev2 == '\"') { + styler.ColourTo(i, StateToPrint); + state = SCE_HP_DEFAULT; + } + break; + ///////////// start - PHP state handling + case SCE_HPHP_WORD: + if (!IsAWordChar(ch)) { + classifyWordHTPHP(styler.GetStartSegment(), i - 1, keywords5, styler); + if (ch == '/' && chNext == '*') { + i++; + state = SCE_HPHP_COMMENT; + } else if (ch == '/' && chNext == '/') { + i++; + state = SCE_HPHP_COMMENTLINE; + } else if (ch == '#') { + state = SCE_HPHP_COMMENTLINE; + } else if (ch == '\"') { + state = SCE_HPHP_HSTRING; + phpStringDelimiter = "\""; + } else if (styler.Match(i, "<<<")) { + bool isSimpleString = false; + i = FindPhpStringDelimiter(phpStringDelimiter, i + 3, lengthDoc, styler, isSimpleString); + if (!phpStringDelimiter.empty()) { + state = (isSimpleString ? SCE_HPHP_SIMPLESTRING : SCE_HPHP_HSTRING); + if (foldHeredoc) levelCurrent++; + } + } else if (ch == '\'') { + state = SCE_HPHP_SIMPLESTRING; + phpStringDelimiter = "\'"; + } else if (ch == '$' && IsPhpWordStart(chNext)) { + state = SCE_HPHP_VARIABLE; + } else if (IsOperator(ch)) { + state = SCE_HPHP_OPERATOR; + } else { + state = SCE_HPHP_DEFAULT; + } + } + break; + case SCE_HPHP_NUMBER: + // recognize bases 8,10 or 16 integers OR floating-point numbers + if (!IsADigit(ch) + && strchr(".xXabcdefABCDEF", ch) == NULL + && ((ch != '-' && ch != '+') || (chPrev != 'e' && chPrev != 'E'))) { + styler.ColourTo(i - 1, SCE_HPHP_NUMBER); + if (IsOperator(ch)) + state = SCE_HPHP_OPERATOR; + else + state = SCE_HPHP_DEFAULT; + } + break; + case SCE_HPHP_VARIABLE: + if (!IsPhpWordChar(chNext)) { + styler.ColourTo(i, SCE_HPHP_VARIABLE); + state = SCE_HPHP_DEFAULT; + } + break; + case SCE_HPHP_COMMENT: + if (ch == '/' && chPrev == '*') { + styler.ColourTo(i, StateToPrint); + state = SCE_HPHP_DEFAULT; + } + break; + case SCE_HPHP_COMMENTLINE: + if (ch == '\r' || ch == '\n') { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HPHP_DEFAULT; + } + break; + case SCE_HPHP_HSTRING: + if (ch == '\\' && ((phpStringDelimiter == "\"") || chNext == '$' || chNext == '{')) { + // skip the next char + i++; + } else if (((ch == '{' && chNext == '$') || (ch == '$' && chNext == '{')) + && IsPhpWordStart(chNext2)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HPHP_COMPLEX_VARIABLE; + } else if (ch == '$' && IsPhpWordStart(chNext)) { + styler.ColourTo(i - 1, StateToPrint); + state = SCE_HPHP_HSTRING_VARIABLE; + } else if (styler.Match(i, phpStringDelimiter.c_str())) { + if (phpStringDelimiter == "\"") { + styler.ColourTo(i, StateToPrint); + state = SCE_HPHP_DEFAULT; + } else if (isLineEnd(chPrev)) { + const int psdLength = static_cast(phpStringDelimiter.length()); + const char chAfterPsd = styler.SafeGetCharAt(i + psdLength); + const char chAfterPsd2 = styler.SafeGetCharAt(i + psdLength + 1); + if (isLineEnd(chAfterPsd) || + (chAfterPsd == ';' && isLineEnd(chAfterPsd2))) { + i += (((i + psdLength) < lengthDoc) ? psdLength : lengthDoc) - 1; + styler.ColourTo(i, StateToPrint); + state = SCE_HPHP_DEFAULT; + if (foldHeredoc) levelCurrent--; + } + } + } + break; + case SCE_HPHP_SIMPLESTRING: + if (phpStringDelimiter == "\'") { + if (ch == '\\') { + // skip the next char + i++; + } else if (ch == '\'') { + styler.ColourTo(i, StateToPrint); + state = SCE_HPHP_DEFAULT; + } + } else if (isLineEnd(chPrev) && styler.Match(i, phpStringDelimiter.c_str())) { + const int psdLength = static_cast(phpStringDelimiter.length()); + const char chAfterPsd = styler.SafeGetCharAt(i + psdLength); + const char chAfterPsd2 = styler.SafeGetCharAt(i + psdLength + 1); + if (isLineEnd(chAfterPsd) || + (chAfterPsd == ';' && isLineEnd(chAfterPsd2))) { + i += (((i + psdLength) < lengthDoc) ? psdLength : lengthDoc) - 1; + styler.ColourTo(i, StateToPrint); + state = SCE_HPHP_DEFAULT; + if (foldHeredoc) levelCurrent--; + } + } + break; + case SCE_HPHP_HSTRING_VARIABLE: + if (!IsPhpWordChar(chNext)) { + styler.ColourTo(i, StateToPrint); + state = SCE_HPHP_HSTRING; + } + break; + case SCE_HPHP_COMPLEX_VARIABLE: + if (ch == '}') { + styler.ColourTo(i, StateToPrint); + state = SCE_HPHP_HSTRING; + } + break; + case SCE_HPHP_OPERATOR: + case SCE_HPHP_DEFAULT: + styler.ColourTo(i - 1, StateToPrint); + if (IsADigit(ch) || (ch == '.' && IsADigit(chNext))) { + state = SCE_HPHP_NUMBER; + } else if (IsAWordStart(ch)) { + state = SCE_HPHP_WORD; + } else if (ch == '/' && chNext == '*') { + i++; + state = SCE_HPHP_COMMENT; + } else if (ch == '/' && chNext == '/') { + i++; + state = SCE_HPHP_COMMENTLINE; + } else if (ch == '#') { + state = SCE_HPHP_COMMENTLINE; + } else if (ch == '\"') { + state = SCE_HPHP_HSTRING; + phpStringDelimiter = "\""; + } else if (styler.Match(i, "<<<")) { + bool isSimpleString = false; + i = FindPhpStringDelimiter(phpStringDelimiter, i + 3, lengthDoc, styler, isSimpleString); + if (!phpStringDelimiter.empty()) { + state = (isSimpleString ? SCE_HPHP_SIMPLESTRING : SCE_HPHP_HSTRING); + if (foldHeredoc) levelCurrent++; + } + } else if (ch == '\'') { + state = SCE_HPHP_SIMPLESTRING; + phpStringDelimiter = "\'"; + } else if (ch == '$' && IsPhpWordStart(chNext)) { + state = SCE_HPHP_VARIABLE; + } else if (IsOperator(ch)) { + state = SCE_HPHP_OPERATOR; + } else if ((state == SCE_HPHP_OPERATOR) && (IsASpace(ch))) { + state = SCE_HPHP_DEFAULT; + } + break; + ///////////// end - PHP state handling + } + + // Some of the above terminated their lexeme but since the same character starts + // the same class again, only reenter if non empty segment. + + const bool nonEmptySegment = i >= static_cast(styler.GetStartSegment()); + if (state == SCE_HB_DEFAULT) { // One of the above succeeded + if ((ch == '\"') && (nonEmptySegment)) { + state = SCE_HB_STRING; + } else if (ch == '\'') { + state = SCE_HB_COMMENTLINE; + } else if (IsAWordStart(ch)) { + state = SCE_HB_WORD; + } else if (IsOperator(ch)) { + styler.ColourTo(i, SCE_HB_DEFAULT); + } + } else if (state == SCE_HBA_DEFAULT) { // One of the above succeeded + if ((ch == '\"') && (nonEmptySegment)) { + state = SCE_HBA_STRING; + } else if (ch == '\'') { + state = SCE_HBA_COMMENTLINE; + } else if (IsAWordStart(ch)) { + state = SCE_HBA_WORD; + } else if (IsOperator(ch)) { + styler.ColourTo(i, SCE_HBA_DEFAULT); + } + } else if (state == SCE_HJ_DEFAULT) { // One of the above succeeded + if (ch == '/' && chNext == '*') { + if (styler.SafeGetCharAt(i + 2) == '*') + state = SCE_HJ_COMMENTDOC; + else + state = SCE_HJ_COMMENT; + } else if (ch == '/' && chNext == '/') { + state = SCE_HJ_COMMENTLINE; + } else if ((ch == '\"') && (nonEmptySegment)) { + state = SCE_HJ_DOUBLESTRING; + } else if ((ch == '\'') && (nonEmptySegment)) { + state = SCE_HJ_SINGLESTRING; + } else if (IsAWordStart(ch)) { + state = SCE_HJ_WORD; + } else if (IsOperator(ch)) { + styler.ColourTo(i, statePrintForState(SCE_HJ_SYMBOLS, inScriptType)); + } + } + } + + switch (state) { + case SCE_HJ_WORD: + classifyWordHTJS(styler.GetStartSegment(), lengthDoc - 1, keywords2, styler, inScriptType); + break; + case SCE_HB_WORD: + classifyWordHTVB(styler.GetStartSegment(), lengthDoc - 1, keywords3, styler, inScriptType); + break; + case SCE_HP_WORD: + classifyWordHTPy(styler.GetStartSegment(), lengthDoc - 1, keywords4, styler, prevWord, inScriptType, isMako); + break; + case SCE_HPHP_WORD: + classifyWordHTPHP(styler.GetStartSegment(), lengthDoc - 1, keywords5, styler); + break; + default: + StateToPrint = statePrintForState(state, inScriptType); + if (static_cast(styler.GetStartSegment()) < lengthDoc) + styler.ColourTo(lengthDoc - 1, StateToPrint); + break; + } + + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + if (fold) { + const int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); + } + styler.Flush(); +} + +LexerModule lmHTML(SCLEX_HTML, LexerHTML::LexerFactoryHTML, "hypertext", htmlWordListDesc); +LexerModule lmXML(SCLEX_XML, LexerHTML::LexerFactoryXML, "xml", htmlWordListDesc); +LexerModule lmPHPSCRIPT(SCLEX_PHPSCRIPT, LexerHTML::LexerFactoryPHPScript, "phpscript", phpscriptWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexHaskell.cpp b/third_party/qscintilla/scintilla/lexers/LexHaskell.cpp new file mode 100644 index 0000000..680a0f2 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexHaskell.cpp @@ -0,0 +1,1110 @@ +/****************************************************************** + * LexHaskell.cxx + * + * A haskell lexer for the scintilla code control. + * Some stuff "lended" from LexPython.cxx and LexCPP.cxx. + * External lexer stuff inspired from the caml external lexer. + * Folder copied from Python's. + * + * Written by Tobias Engvall - tumm at dtek dot chalmers dot se + * + * Several bug fixes by Krasimir Angelov - kr.angelov at gmail.com + * + * Improved by kudah + * + * TODO: + * * A proper lexical folder to fold group declarations, comments, pragmas, + * #ifdefs, explicit layout, lists, tuples, quasi-quotes, splces, etc, etc, + * etc. + * + *****************************************************************/ +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "CharacterCategory.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +// See https://github.com/ghc/ghc/blob/master/compiler/parser/Lexer.x#L1682 +// Note, letter modifiers are prohibited. + +static int u_iswupper (int ch) { + CharacterCategory c = CategoriseCharacter(ch); + return c == ccLu || c == ccLt; +} + +static int u_iswalpha (int ch) { + CharacterCategory c = CategoriseCharacter(ch); + return c == ccLl || c == ccLu || c == ccLt || c == ccLo; +} + +static int u_iswalnum (int ch) { + CharacterCategory c = CategoriseCharacter(ch); + return c == ccLl || c == ccLu || c == ccLt || c == ccLo + || c == ccNd || c == ccNo; +} + +static int u_IsHaskellSymbol(int ch) { + CharacterCategory c = CategoriseCharacter(ch); + return c == ccPc || c == ccPd || c == ccPo + || c == ccSm || c == ccSc || c == ccSk || c == ccSo; +} + +static inline bool IsHaskellLetter(const int ch) { + if (IsASCII(ch)) { + return (ch >= 'a' && ch <= 'z') + || (ch >= 'A' && ch <= 'Z'); + } else { + return u_iswalpha(ch) != 0; + } +} + +static inline bool IsHaskellAlphaNumeric(const int ch) { + if (IsASCII(ch)) { + return IsAlphaNumeric(ch); + } else { + return u_iswalnum(ch) != 0; + } +} + +static inline bool IsHaskellUpperCase(const int ch) { + if (IsASCII(ch)) { + return ch >= 'A' && ch <= 'Z'; + } else { + return u_iswupper(ch) != 0; + } +} + +static inline bool IsAnHaskellOperatorChar(const int ch) { + if (IsASCII(ch)) { + return + ( ch == '!' || ch == '#' || ch == '$' || ch == '%' + || ch == '&' || ch == '*' || ch == '+' || ch == '-' + || ch == '.' || ch == '/' || ch == ':' || ch == '<' + || ch == '=' || ch == '>' || ch == '?' || ch == '@' + || ch == '^' || ch == '|' || ch == '~' || ch == '\\'); + } else { + return u_IsHaskellSymbol(ch) != 0; + } +} + +static inline bool IsAHaskellWordStart(const int ch) { + return IsHaskellLetter(ch) || ch == '_'; +} + +static inline bool IsAHaskellWordChar(const int ch) { + return ( IsHaskellAlphaNumeric(ch) + || ch == '_' + || ch == '\''); +} + +static inline bool IsCommentBlockStyle(int style) { + return (style >= SCE_HA_COMMENTBLOCK && style <= SCE_HA_COMMENTBLOCK3); +} + +static inline bool IsCommentStyle(int style) { + return (style >= SCE_HA_COMMENTLINE && style <= SCE_HA_COMMENTBLOCK3) + || ( style == SCE_HA_LITERATE_COMMENT + || style == SCE_HA_LITERATE_CODEDELIM); +} + +// styles which do not belong to Haskell, but to external tools +static inline bool IsExternalStyle(int style) { + return ( style == SCE_HA_PREPROCESSOR + || style == SCE_HA_LITERATE_COMMENT + || style == SCE_HA_LITERATE_CODEDELIM); +} + +static inline int CommentBlockStyleFromNestLevel(const unsigned int nestLevel) { + return SCE_HA_COMMENTBLOCK + (nestLevel % 3); +} + +// Mangled version of lexlib/Accessor.cxx IndentAmount. +// Modified to treat comment blocks as whitespace +// plus special case for commentline/preprocessor. +static int HaskellIndentAmount(Accessor &styler, const Sci_Position line) { + + // Determines the indentation level of the current line + // Comment blocks are treated as whitespace + + Sci_Position pos = styler.LineStart(line); + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + + char ch = styler[pos]; + int style = styler.StyleAt(pos); + + int indent = 0; + bool inPrevPrefix = line > 0; + + Sci_Position posPrev = inPrevPrefix ? styler.LineStart(line-1) : 0; + + while (( ch == ' ' || ch == '\t' + || IsCommentBlockStyle(style) + || style == SCE_HA_LITERATE_CODEDELIM) + && (pos < eol_pos)) { + if (inPrevPrefix) { + char chPrev = styler[posPrev++]; + if (chPrev != ' ' && chPrev != '\t') { + inPrevPrefix = false; + } + } + if (ch == '\t') { + indent = (indent / 8 + 1) * 8; + } else { // Space or comment block + indent++; + } + pos++; + ch = styler[pos]; + style = styler.StyleAt(pos); + } + + indent += SC_FOLDLEVELBASE; + // if completely empty line or the start of a comment or preprocessor... + if ( styler.LineStart(line) == styler.Length() + || ch == ' ' + || ch == '\t' + || ch == '\n' + || ch == '\r' + || IsCommentStyle(style) + || style == SCE_HA_PREPROCESSOR) + return indent | SC_FOLDLEVELWHITEFLAG; + else + return indent; +} + +struct OptionsHaskell { + bool magicHash; + bool allowQuotes; + bool implicitParams; + bool highlightSafe; + bool cpp; + bool stylingWithinPreprocessor; + bool fold; + bool foldComment; + bool foldCompact; + bool foldImports; + OptionsHaskell() { + magicHash = true; // Widespread use, enabled by default. + allowQuotes = true; // Widespread use, enabled by default. + implicitParams = false; // Fell out of favor, seldom used, disabled. + highlightSafe = true; // Moderately used, doesn't hurt to enable. + cpp = true; // Widespread use, enabled by default; + stylingWithinPreprocessor = false; + fold = false; + foldComment = false; + foldCompact = false; + foldImports = false; + } +}; + +static const char * const haskellWordListDesc[] = { + "Keywords", + "FFI", + "Reserved operators", + 0 +}; + +struct OptionSetHaskell : public OptionSet { + OptionSetHaskell() { + DefineProperty("lexer.haskell.allow.hash", &OptionsHaskell::magicHash, + "Set to 0 to disallow the '#' character at the end of identifiers and " + "literals with the haskell lexer " + "(GHC -XMagicHash extension)"); + + DefineProperty("lexer.haskell.allow.quotes", &OptionsHaskell::allowQuotes, + "Set to 0 to disable highlighting of Template Haskell name quotations " + "and promoted constructors " + "(GHC -XTemplateHaskell and -XDataKinds extensions)"); + + DefineProperty("lexer.haskell.allow.questionmark", &OptionsHaskell::implicitParams, + "Set to 1 to allow the '?' character at the start of identifiers " + "with the haskell lexer " + "(GHC & Hugs -XImplicitParams extension)"); + + DefineProperty("lexer.haskell.import.safe", &OptionsHaskell::highlightSafe, + "Set to 0 to disallow \"safe\" keyword in imports " + "(GHC -XSafe, -XTrustworthy, -XUnsafe extensions)"); + + DefineProperty("lexer.haskell.cpp", &OptionsHaskell::cpp, + "Set to 0 to disable C-preprocessor highlighting " + "(-XCPP extension)"); + + DefineProperty("styling.within.preprocessor", &OptionsHaskell::stylingWithinPreprocessor, + "For Haskell code, determines whether all preprocessor code is styled in the " + "preprocessor style (0, the default) or only from the initial # to the end " + "of the command word(1)." + ); + + DefineProperty("fold", &OptionsHaskell::fold); + + DefineProperty("fold.comment", &OptionsHaskell::foldComment); + + DefineProperty("fold.compact", &OptionsHaskell::foldCompact); + + DefineProperty("fold.haskell.imports", &OptionsHaskell::foldImports, + "Set to 1 to enable folding of import declarations"); + + DefineWordListSets(haskellWordListDesc); + } +}; + +class LexerHaskell : public DefaultLexer { + bool literate; + Sci_Position firstImportLine; + int firstImportIndent; + WordList keywords; + WordList ffi; + WordList reserved_operators; + OptionsHaskell options; + OptionSetHaskell osHaskell; + + enum HashCount { + oneHash + ,twoHashes + ,unlimitedHashes + }; + + enum KeywordMode { + HA_MODE_DEFAULT = 0 + ,HA_MODE_IMPORT1 = 1 // after "import", before "qualified" or "safe" or package name or module name. + ,HA_MODE_IMPORT2 = 2 // after module name, before "as" or "hiding". + ,HA_MODE_IMPORT3 = 3 // after "as", before "hiding" + ,HA_MODE_MODULE = 4 // after "module", before module name. + ,HA_MODE_FFI = 5 // after "foreign", before FFI keywords + ,HA_MODE_TYPE = 6 // after "type" or "data", before "family" + }; + + enum LiterateMode { + LITERATE_BIRD = 0 // if '>' is the first character on the line, + // color '>' as a codedelim and the rest of + // the line as code. + // else if "\begin{code}" is the only word on the + // line except whitespace, switch to LITERATE_BLOCK + // otherwise color the line as a literate comment. + ,LITERATE_BLOCK = 1 // if the string "\end{code}" is encountered at column + // 0 ignoring all later characters, color the line + // as a codedelim and switch to LITERATE_BIRD + // otherwise color the line as code. + }; + + struct HaskellLineInfo { + unsigned int nestLevel; // 22 bits ought to be enough for anybody + unsigned int nonexternalStyle; // 5 bits, widen if number of styles goes + // beyond 31. + bool pragma; + LiterateMode lmode; + KeywordMode mode; + + HaskellLineInfo(int state) : + nestLevel (state >> 10) + , nonexternalStyle ((state >> 5) & 0x1F) + , pragma ((state >> 4) & 0x1) + , lmode (static_cast((state >> 3) & 0x1)) + , mode (static_cast(state & 0x7)) + {} + + int ToLineState() { + return + (nestLevel << 10) + | (nonexternalStyle << 5) + | (pragma << 4) + | (lmode << 3) + | mode; + } + }; + + inline void skipMagicHash(StyleContext &sc, const HashCount hashes) const { + if (options.magicHash && sc.ch == '#') { + sc.Forward(); + if (hashes == twoHashes && sc.ch == '#') { + sc.Forward(); + } else if (hashes == unlimitedHashes) { + while (sc.ch == '#') { + sc.Forward(); + } + } + } + } + + bool LineContainsImport(const Sci_Position line, Accessor &styler) const { + if (options.foldImports) { + Sci_Position currentPos = styler.LineStart(line); + int style = styler.StyleAt(currentPos); + + Sci_Position eol_pos = styler.LineStart(line + 1) - 1; + + while (currentPos < eol_pos) { + int ch = styler[currentPos]; + style = styler.StyleAt(currentPos); + + if (ch == ' ' || ch == '\t' + || IsCommentBlockStyle(style) + || style == SCE_HA_LITERATE_CODEDELIM) { + currentPos++; + } else { + break; + } + } + + return (style == SCE_HA_KEYWORD + && styler.Match(currentPos, "import")); + } else { + return false; + } + } + + inline int IndentAmountWithOffset(Accessor &styler, const Sci_Position line) const { + const int indent = HaskellIndentAmount(styler, line); + const int indentLevel = indent & SC_FOLDLEVELNUMBERMASK; + return indentLevel <= ((firstImportIndent - 1) + SC_FOLDLEVELBASE) + ? indent + : (indentLevel + firstImportIndent) | (indent & ~SC_FOLDLEVELNUMBERMASK); + } + + inline int IndentLevelRemoveIndentOffset(const int indentLevel) const { + return indentLevel <= ((firstImportIndent - 1) + SC_FOLDLEVELBASE) + ? indentLevel + : indentLevel - firstImportIndent; + } + +public: + LexerHaskell(bool literate_) + : literate(literate_) + , firstImportLine(-1) + , firstImportIndent(0) + {} + virtual ~LexerHaskell() {} + + void SCI_METHOD Release() override { + delete this; + } + + int SCI_METHOD Version() const override { + return lvOriginal; + } + + const char * SCI_METHOD PropertyNames() override { + return osHaskell.PropertyNames(); + } + + int SCI_METHOD PropertyType(const char *name) override { + return osHaskell.PropertyType(name); + } + + const char * SCI_METHOD DescribeProperty(const char *name) override { + return osHaskell.DescribeProperty(name); + } + + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override; + + const char * SCI_METHOD DescribeWordListSets() override { + return osHaskell.DescribeWordListSets(); + } + + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override; + + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + + void * SCI_METHOD PrivateCall(int, void *) override { + return 0; + } + + static ILexer *LexerFactoryHaskell() { + return new LexerHaskell(false); + } + + static ILexer *LexerFactoryLiterateHaskell() { + return new LexerHaskell(true); + } +}; + +Sci_Position SCI_METHOD LexerHaskell::PropertySet(const char *key, const char *val) { + if (osHaskell.PropertySet(&options, key, val)) { + return 0; + } + return -1; +} + +Sci_Position SCI_METHOD LexerHaskell::WordListSet(int n, const char *wl) { + WordList *wordListN = 0; + switch (n) { + case 0: + wordListN = &keywords; + break; + case 1: + wordListN = &ffi; + break; + case 2: + wordListN = &reserved_operators; + break; + } + Sci_Position firstModification = -1; + if (wordListN) { + WordList wlNew; + wlNew.Set(wl); + if (*wordListN != wlNew) { + wordListN->Set(wl); + firstModification = 0; + } + } + return firstModification; +} + +void SCI_METHOD LexerHaskell::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle + ,IDocument *pAccess) { + LexAccessor styler(pAccess); + + Sci_Position lineCurrent = styler.GetLine(startPos); + + HaskellLineInfo hs = HaskellLineInfo(lineCurrent ? styler.GetLineState(lineCurrent-1) : 0); + + // Do not leak onto next line + if (initStyle == SCE_HA_STRINGEOL) + initStyle = SCE_HA_DEFAULT; + else if (initStyle == SCE_HA_LITERATE_CODEDELIM) + initStyle = hs.nonexternalStyle; + + StyleContext sc(startPos, length, initStyle, styler); + + int base = 10; + bool dot = false; + + bool inDashes = false; + bool alreadyInTheMiddleOfOperator = false; + + assert(!(IsCommentBlockStyle(initStyle) && hs.nestLevel == 0)); + + while (sc.More()) { + // Check for state end + + if (!IsExternalStyle(sc.state)) { + hs.nonexternalStyle = sc.state; + } + + // For lexer to work, states should unconditionally forward at least one + // character. + // If they don't, they should still check if they are at line end and + // forward if so. + // If a state forwards more than one character, it should check every time + // that it is not a line end and cease forwarding otherwise. + if (sc.atLineEnd) { + // Remember the line state for future incremental lexing + styler.SetLineState(lineCurrent, hs.ToLineState()); + lineCurrent++; + } + + // Handle line continuation generically. + if (sc.ch == '\\' && (sc.chNext == '\n' || sc.chNext == '\r') + && ( sc.state == SCE_HA_STRING + || sc.state == SCE_HA_PREPROCESSOR)) { + // Remember the line state for future incremental lexing + styler.SetLineState(lineCurrent, hs.ToLineState()); + lineCurrent++; + + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } + sc.Forward(); + + continue; + } + + if (sc.atLineStart) { + + if (sc.state == SCE_HA_STRING || sc.state == SCE_HA_CHARACTER) { + // Prevent SCE_HA_STRINGEOL from leaking back to previous line + sc.SetState(sc.state); + } + + if (literate && hs.lmode == LITERATE_BIRD) { + if (!IsExternalStyle(sc.state)) { + sc.SetState(SCE_HA_LITERATE_COMMENT); + } + } + } + + // External + // Literate + if ( literate && hs.lmode == LITERATE_BIRD && sc.atLineStart + && sc.ch == '>') { + sc.SetState(SCE_HA_LITERATE_CODEDELIM); + sc.ForwardSetState(hs.nonexternalStyle); + } + else if (literate && hs.lmode == LITERATE_BIRD && sc.atLineStart + && ( sc.ch == ' ' || sc.ch == '\t' + || sc.Match("\\begin{code}"))) { + sc.SetState(sc.state); + + while ((sc.ch == ' ' || sc.ch == '\t') && sc.More()) + sc.Forward(); + + if (sc.Match("\\begin{code}")) { + sc.Forward(static_cast(strlen("\\begin{code}"))); + + bool correct = true; + + while (!sc.atLineEnd && sc.More()) { + if (sc.ch != ' ' && sc.ch != '\t') { + correct = false; + } + sc.Forward(); + } + + if (correct) { + sc.ChangeState(SCE_HA_LITERATE_CODEDELIM); // color the line end + hs.lmode = LITERATE_BLOCK; + } + } + } + else if (literate && hs.lmode == LITERATE_BLOCK && sc.atLineStart + && sc.Match("\\end{code}")) { + sc.SetState(SCE_HA_LITERATE_CODEDELIM); + + sc.Forward(static_cast(strlen("\\end{code}"))); + + while (!sc.atLineEnd && sc.More()) { + sc.Forward(); + } + + sc.SetState(SCE_HA_LITERATE_COMMENT); + hs.lmode = LITERATE_BIRD; + } + // Preprocessor + else if (sc.atLineStart && sc.ch == '#' && options.cpp + && (!options.stylingWithinPreprocessor || sc.state == SCE_HA_DEFAULT)) { + sc.SetState(SCE_HA_PREPROCESSOR); + sc.Forward(); + } + // Literate + else if (sc.state == SCE_HA_LITERATE_COMMENT) { + sc.Forward(); + } + else if (sc.state == SCE_HA_LITERATE_CODEDELIM) { + sc.ForwardSetState(hs.nonexternalStyle); + } + // Preprocessor + else if (sc.state == SCE_HA_PREPROCESSOR) { + if (sc.atLineEnd) { + sc.SetState(options.stylingWithinPreprocessor + ? SCE_HA_DEFAULT + : hs.nonexternalStyle); + sc.Forward(); // prevent double counting a line + } else if (options.stylingWithinPreprocessor && !IsHaskellLetter(sc.ch)) { + sc.SetState(SCE_HA_DEFAULT); + } else { + sc.Forward(); + } + } + // Haskell + // Operator + else if (sc.state == SCE_HA_OPERATOR) { + int style = SCE_HA_OPERATOR; + + if ( sc.ch == ':' + && !alreadyInTheMiddleOfOperator + // except "::" + && !( sc.chNext == ':' + && !IsAnHaskellOperatorChar(sc.GetRelative(2)))) { + style = SCE_HA_CAPITAL; + } + + alreadyInTheMiddleOfOperator = false; + + while (IsAnHaskellOperatorChar(sc.ch)) + sc.Forward(); + + char s[100]; + sc.GetCurrent(s, sizeof(s)); + + if (reserved_operators.InList(s)) + style = SCE_HA_RESERVED_OPERATOR; + + sc.ChangeState(style); + sc.SetState(SCE_HA_DEFAULT); + } + // String + else if (sc.state == SCE_HA_STRING) { + if (sc.atLineEnd) { + sc.ChangeState(SCE_HA_STRINGEOL); + sc.ForwardSetState(SCE_HA_DEFAULT); + } else if (sc.ch == '\"') { + sc.Forward(); + skipMagicHash(sc, oneHash); + sc.SetState(SCE_HA_DEFAULT); + } else if (sc.ch == '\\') { + sc.Forward(2); + } else { + sc.Forward(); + } + } + // Char + else if (sc.state == SCE_HA_CHARACTER) { + if (sc.atLineEnd) { + sc.ChangeState(SCE_HA_STRINGEOL); + sc.ForwardSetState(SCE_HA_DEFAULT); + } else if (sc.ch == '\'') { + sc.Forward(); + skipMagicHash(sc, oneHash); + sc.SetState(SCE_HA_DEFAULT); + } else if (sc.ch == '\\') { + sc.Forward(2); + } else { + sc.Forward(); + } + } + // Number + else if (sc.state == SCE_HA_NUMBER) { + if (sc.atLineEnd) { + sc.SetState(SCE_HA_DEFAULT); + sc.Forward(); // prevent double counting a line + } else if (IsADigit(sc.ch, base)) { + sc.Forward(); + } else if (sc.ch=='.' && dot && IsADigit(sc.chNext, base)) { + sc.Forward(2); + dot = false; + } else if ((base == 10) && + (sc.ch == 'e' || sc.ch == 'E') && + (IsADigit(sc.chNext) || sc.chNext == '+' || sc.chNext == '-')) { + sc.Forward(); + if (sc.ch == '+' || sc.ch == '-') + sc.Forward(); + } else { + skipMagicHash(sc, twoHashes); + sc.SetState(SCE_HA_DEFAULT); + } + } + // Keyword or Identifier + else if (sc.state == SCE_HA_IDENTIFIER) { + int style = IsHaskellUpperCase(sc.ch) ? SCE_HA_CAPITAL : SCE_HA_IDENTIFIER; + + assert(IsAHaskellWordStart(sc.ch)); + + sc.Forward(); + + while (sc.More()) { + if (IsAHaskellWordChar(sc.ch)) { + sc.Forward(); + } else if (sc.ch == '.' && style == SCE_HA_CAPITAL) { + if (IsHaskellUpperCase(sc.chNext)) { + sc.Forward(); + style = SCE_HA_CAPITAL; + } else if (IsAHaskellWordStart(sc.chNext)) { + sc.Forward(); + style = SCE_HA_IDENTIFIER; + } else if (IsAnHaskellOperatorChar(sc.chNext)) { + sc.Forward(); + style = sc.ch == ':' ? SCE_HA_CAPITAL : SCE_HA_OPERATOR; + while (IsAnHaskellOperatorChar(sc.ch)) + sc.Forward(); + break; + } else { + break; + } + } else { + break; + } + } + + skipMagicHash(sc, unlimitedHashes); + + char s[100]; + sc.GetCurrent(s, sizeof(s)); + + KeywordMode new_mode = HA_MODE_DEFAULT; + + if (keywords.InList(s)) { + style = SCE_HA_KEYWORD; + } else if (style == SCE_HA_CAPITAL) { + if (hs.mode == HA_MODE_IMPORT1 || hs.mode == HA_MODE_IMPORT3) { + style = SCE_HA_MODULE; + new_mode = HA_MODE_IMPORT2; + } else if (hs.mode == HA_MODE_MODULE) { + style = SCE_HA_MODULE; + } + } else if (hs.mode == HA_MODE_IMPORT1 && + strcmp(s,"qualified") == 0) { + style = SCE_HA_KEYWORD; + new_mode = HA_MODE_IMPORT1; + } else if (options.highlightSafe && + hs.mode == HA_MODE_IMPORT1 && + strcmp(s,"safe") == 0) { + style = SCE_HA_KEYWORD; + new_mode = HA_MODE_IMPORT1; + } else if (hs.mode == HA_MODE_IMPORT2) { + if (strcmp(s,"as") == 0) { + style = SCE_HA_KEYWORD; + new_mode = HA_MODE_IMPORT3; + } else if (strcmp(s,"hiding") == 0) { + style = SCE_HA_KEYWORD; + } + } else if (hs.mode == HA_MODE_TYPE) { + if (strcmp(s,"family") == 0) + style = SCE_HA_KEYWORD; + } + + if (hs.mode == HA_MODE_FFI) { + if (ffi.InList(s)) { + style = SCE_HA_KEYWORD; + new_mode = HA_MODE_FFI; + } + } + + sc.ChangeState(style); + sc.SetState(SCE_HA_DEFAULT); + + if (strcmp(s,"import") == 0 && hs.mode != HA_MODE_FFI) + new_mode = HA_MODE_IMPORT1; + else if (strcmp(s,"module") == 0) + new_mode = HA_MODE_MODULE; + else if (strcmp(s,"foreign") == 0) + new_mode = HA_MODE_FFI; + else if (strcmp(s,"type") == 0 + || strcmp(s,"data") == 0) + new_mode = HA_MODE_TYPE; + + hs.mode = new_mode; + } + + // Comments + // Oneliner + else if (sc.state == SCE_HA_COMMENTLINE) { + if (sc.atLineEnd) { + sc.SetState(hs.pragma ? SCE_HA_PRAGMA : SCE_HA_DEFAULT); + sc.Forward(); // prevent double counting a line + } else if (inDashes && sc.ch != '-' && !hs.pragma) { + inDashes = false; + if (IsAnHaskellOperatorChar(sc.ch)) { + alreadyInTheMiddleOfOperator = true; + sc.ChangeState(SCE_HA_OPERATOR); + } + } else { + sc.Forward(); + } + } + // Nested + else if (IsCommentBlockStyle(sc.state)) { + if (sc.Match('{','-')) { + sc.SetState(CommentBlockStyleFromNestLevel(hs.nestLevel)); + sc.Forward(2); + hs.nestLevel++; + } else if (sc.Match('-','}')) { + sc.Forward(2); + assert(hs.nestLevel > 0); + if (hs.nestLevel > 0) + hs.nestLevel--; + sc.SetState( + hs.nestLevel == 0 + ? (hs.pragma ? SCE_HA_PRAGMA : SCE_HA_DEFAULT) + : CommentBlockStyleFromNestLevel(hs.nestLevel - 1)); + } else { + sc.Forward(); + } + } + // Pragma + else if (sc.state == SCE_HA_PRAGMA) { + if (sc.Match("#-}")) { + hs.pragma = false; + sc.Forward(3); + sc.SetState(SCE_HA_DEFAULT); + } else if (sc.Match('-','-')) { + sc.SetState(SCE_HA_COMMENTLINE); + sc.Forward(2); + inDashes = false; + } else if (sc.Match('{','-')) { + sc.SetState(CommentBlockStyleFromNestLevel(hs.nestLevel)); + sc.Forward(2); + hs.nestLevel = 1; + } else { + sc.Forward(); + } + } + // New state? + else if (sc.state == SCE_HA_DEFAULT) { + // Digit + if (IsADigit(sc.ch)) { + hs.mode = HA_MODE_DEFAULT; + + sc.SetState(SCE_HA_NUMBER); + if (sc.ch == '0' && (sc.chNext == 'X' || sc.chNext == 'x')) { + // Match anything starting with "0x" or "0X", too + sc.Forward(2); + base = 16; + dot = false; + } else if (sc.ch == '0' && (sc.chNext == 'O' || sc.chNext == 'o')) { + // Match anything starting with "0o" or "0O", too + sc.Forward(2); + base = 8; + dot = false; + } else { + sc.Forward(); + base = 10; + dot = true; + } + } + // Pragma + else if (sc.Match("{-#")) { + hs.pragma = true; + sc.SetState(SCE_HA_PRAGMA); + sc.Forward(3); + } + // Comment line + else if (sc.Match('-','-')) { + sc.SetState(SCE_HA_COMMENTLINE); + sc.Forward(2); + inDashes = true; + } + // Comment block + else if (sc.Match('{','-')) { + sc.SetState(CommentBlockStyleFromNestLevel(hs.nestLevel)); + sc.Forward(2); + hs.nestLevel = 1; + } + // String + else if (sc.ch == '\"') { + sc.SetState(SCE_HA_STRING); + sc.Forward(); + } + // Character or quoted name or promoted term + else if (sc.ch == '\'') { + hs.mode = HA_MODE_DEFAULT; + + sc.SetState(SCE_HA_CHARACTER); + sc.Forward(); + + if (options.allowQuotes) { + // Quoted type ''T + if (sc.ch=='\'' && IsAHaskellWordStart(sc.chNext)) { + sc.Forward(); + sc.ChangeState(SCE_HA_IDENTIFIER); + } else if (sc.chNext != '\'') { + // Quoted name 'n or promoted constructor 'N + if (IsAHaskellWordStart(sc.ch)) { + sc.ChangeState(SCE_HA_IDENTIFIER); + // Promoted constructor operator ':~> + } else if (sc.ch == ':') { + alreadyInTheMiddleOfOperator = false; + sc.ChangeState(SCE_HA_OPERATOR); + // Promoted list or tuple '[T] + } else if (sc.ch == '[' || sc.ch== '(') { + sc.ChangeState(SCE_HA_OPERATOR); + sc.ForwardSetState(SCE_HA_DEFAULT); + } + } + } + } + // Operator starting with '?' or an implicit parameter + else if (sc.ch == '?') { + hs.mode = HA_MODE_DEFAULT; + + alreadyInTheMiddleOfOperator = false; + sc.SetState(SCE_HA_OPERATOR); + + if ( options.implicitParams + && IsAHaskellWordStart(sc.chNext) + && !IsHaskellUpperCase(sc.chNext)) { + sc.Forward(); + sc.ChangeState(SCE_HA_IDENTIFIER); + } + } + // Operator + else if (IsAnHaskellOperatorChar(sc.ch)) { + hs.mode = HA_MODE_DEFAULT; + + sc.SetState(SCE_HA_OPERATOR); + } + // Braces and punctuation + else if (sc.ch == ',' || sc.ch == ';' + || sc.ch == '(' || sc.ch == ')' + || sc.ch == '[' || sc.ch == ']' + || sc.ch == '{' || sc.ch == '}') { + sc.SetState(SCE_HA_OPERATOR); + sc.ForwardSetState(SCE_HA_DEFAULT); + } + // Keyword or Identifier + else if (IsAHaskellWordStart(sc.ch)) { + sc.SetState(SCE_HA_IDENTIFIER); + // Something we don't care about + } else { + sc.Forward(); + } + } + // This branch should never be reached. + else { + assert(false); + sc.Forward(); + } + } + sc.Complete(); +} + +void SCI_METHOD LexerHaskell::Fold(Sci_PositionU startPos, Sci_Position length, int // initStyle + ,IDocument *pAccess) { + if (!options.fold) + return; + + Accessor styler(pAccess, NULL); + + Sci_Position lineCurrent = styler.GetLine(startPos); + + if (lineCurrent <= firstImportLine) { + firstImportLine = -1; // readjust first import position + firstImportIndent = 0; + } + + const Sci_Position maxPos = startPos + length; + const Sci_Position maxLines = + maxPos == styler.Length() + ? styler.GetLine(maxPos) + : styler.GetLine(maxPos - 1); // Requested last line + const Sci_Position docLines = styler.GetLine(styler.Length()); // Available last line + + // Backtrack to previous non-blank line so we can determine indent level + // for any white space lines + // and so we can fix any preceding fold level (which is why we go back + // at least one line in all cases) + bool importHere = LineContainsImport(lineCurrent, styler); + int indentCurrent = IndentAmountWithOffset(styler, lineCurrent); + + while (lineCurrent > 0) { + lineCurrent--; + importHere = LineContainsImport(lineCurrent, styler); + indentCurrent = IndentAmountWithOffset(styler, lineCurrent); + if (!(indentCurrent & SC_FOLDLEVELWHITEFLAG)) + break; + } + + int indentCurrentLevel = indentCurrent & SC_FOLDLEVELNUMBERMASK; + + if (importHere) { + indentCurrentLevel = IndentLevelRemoveIndentOffset(indentCurrentLevel); + if (firstImportLine == -1) { + firstImportLine = lineCurrent; + firstImportIndent = (1 + indentCurrentLevel) - SC_FOLDLEVELBASE; + } + if (firstImportLine != lineCurrent) { + indentCurrentLevel++; + } + } + + indentCurrent = indentCurrentLevel | (indentCurrent & ~SC_FOLDLEVELNUMBERMASK); + + // Process all characters to end of requested range + //that hangs over the end of the range. Cap processing in all cases + // to end of document. + while (lineCurrent <= docLines && lineCurrent <= maxLines) { + + // Gather info + Sci_Position lineNext = lineCurrent + 1; + importHere = false; + int indentNext = indentCurrent; + + if (lineNext <= docLines) { + // Information about next line is only available if not at end of document + importHere = LineContainsImport(lineNext, styler); + indentNext = IndentAmountWithOffset(styler, lineNext); + } + if (indentNext & SC_FOLDLEVELWHITEFLAG) + indentNext = SC_FOLDLEVELWHITEFLAG | indentCurrentLevel; + + // Skip past any blank lines for next indent level info; we skip also + // comments (all comments, not just those starting in column 0) + // which effectively folds them into surrounding code rather + // than screwing up folding. + + while (lineNext < docLines && (indentNext & SC_FOLDLEVELWHITEFLAG)) { + lineNext++; + importHere = LineContainsImport(lineNext, styler); + indentNext = IndentAmountWithOffset(styler, lineNext); + } + + int indentNextLevel = indentNext & SC_FOLDLEVELNUMBERMASK; + + if (importHere) { + indentNextLevel = IndentLevelRemoveIndentOffset(indentNextLevel); + if (firstImportLine == -1) { + firstImportLine = lineNext; + firstImportIndent = (1 + indentNextLevel) - SC_FOLDLEVELBASE; + } + if (firstImportLine != lineNext) { + indentNextLevel++; + } + } + + indentNext = indentNextLevel | (indentNext & ~SC_FOLDLEVELNUMBERMASK); + + const int levelBeforeComments = Maximum(indentCurrentLevel,indentNextLevel); + + // Now set all the indent levels on the lines we skipped + // Do this from end to start. Once we encounter one line + // which is indented more than the line after the end of + // the comment-block, use the level of the block before + + Sci_Position skipLine = lineNext; + int skipLevel = indentNextLevel; + + while (--skipLine > lineCurrent) { + int skipLineIndent = IndentAmountWithOffset(styler, skipLine); + + if (options.foldCompact) { + if ((skipLineIndent & SC_FOLDLEVELNUMBERMASK) > indentNextLevel) { + skipLevel = levelBeforeComments; + } + + int whiteFlag = skipLineIndent & SC_FOLDLEVELWHITEFLAG; + + styler.SetLevel(skipLine, skipLevel | whiteFlag); + } else { + if ( (skipLineIndent & SC_FOLDLEVELNUMBERMASK) > indentNextLevel + && !(skipLineIndent & SC_FOLDLEVELWHITEFLAG)) { + skipLevel = levelBeforeComments; + } + + styler.SetLevel(skipLine, skipLevel); + } + } + + int lev = indentCurrent; + + if (!(indentCurrent & SC_FOLDLEVELWHITEFLAG)) { + if ((indentCurrent & SC_FOLDLEVELNUMBERMASK) < (indentNext & SC_FOLDLEVELNUMBERMASK)) + lev |= SC_FOLDLEVELHEADERFLAG; + } + + // Set fold level for this line and move to next line + styler.SetLevel(lineCurrent, options.foldCompact ? lev : lev & ~SC_FOLDLEVELWHITEFLAG); + + indentCurrent = indentNext; + indentCurrentLevel = indentNextLevel; + lineCurrent = lineNext; + } + + // NOTE: Cannot set level of last line here because indentCurrent doesn't have + // header flag set; the loop above is crafted to take care of this case! + //styler.SetLevel(lineCurrent, indentCurrent); +} + +LexerModule lmHaskell(SCLEX_HASKELL, LexerHaskell::LexerFactoryHaskell, "haskell", haskellWordListDesc); +LexerModule lmLiterateHaskell(SCLEX_LITERATEHASKELL, LexerHaskell::LexerFactoryLiterateHaskell, "literatehaskell", haskellWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexHex.cpp b/third_party/qscintilla/scintilla/lexers/LexHex.cpp new file mode 100644 index 0000000..6e10997 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexHex.cpp @@ -0,0 +1,1045 @@ +// Scintilla source code edit control +/** @file LexHex.cxx + ** Lexers for Motorola S-Record, Intel HEX and Tektronix extended HEX. + ** + ** Written by Markus Heidelberg + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +/* + * Motorola S-Record + * =============================== + * + * Each record (line) is built as follows: + * + * field digits states + * + * +----------+ + * | start | 1 ('S') SCE_HEX_RECSTART + * +----------+ + * | type | 1 SCE_HEX_RECTYPE, (SCE_HEX_RECTYPE_UNKNOWN) + * +----------+ + * | count | 2 SCE_HEX_BYTECOUNT, SCE_HEX_BYTECOUNT_WRONG + * +----------+ + * | address | 4/6/8 SCE_HEX_NOADDRESS, SCE_HEX_DATAADDRESS, SCE_HEX_RECCOUNT, SCE_HEX_STARTADDRESS, (SCE_HEX_ADDRESSFIELD_UNKNOWN) + * +----------+ + * | data | 0..504/502/500 SCE_HEX_DATA_ODD, SCE_HEX_DATA_EVEN, SCE_HEX_DATA_EMPTY, (SCE_HEX_DATA_UNKNOWN) + * +----------+ + * | checksum | 2 SCE_HEX_CHECKSUM, SCE_HEX_CHECKSUM_WRONG + * +----------+ + * + * + * Intel HEX + * =============================== + * + * Each record (line) is built as follows: + * + * field digits states + * + * +----------+ + * | start | 1 (':') SCE_HEX_RECSTART + * +----------+ + * | count | 2 SCE_HEX_BYTECOUNT, SCE_HEX_BYTECOUNT_WRONG + * +----------+ + * | address | 4 SCE_HEX_NOADDRESS, SCE_HEX_DATAADDRESS, (SCE_HEX_ADDRESSFIELD_UNKNOWN) + * +----------+ + * | type | 2 SCE_HEX_RECTYPE, (SCE_HEX_RECTYPE_UNKNOWN) + * +----------+ + * | data | 0..510 SCE_HEX_DATA_ODD, SCE_HEX_DATA_EVEN, SCE_HEX_DATA_EMPTY, SCE_HEX_EXTENDEDADDRESS, SCE_HEX_STARTADDRESS, (SCE_HEX_DATA_UNKNOWN) + * +----------+ + * | checksum | 2 SCE_HEX_CHECKSUM, SCE_HEX_CHECKSUM_WRONG + * +----------+ + * + * + * Folding: + * + * Data records (type 0x00), which follow an extended address record (type + * 0x02 or 0x04), can be folded. The extended address record is the fold + * point at fold level 0, the corresponding data records are set to level 1. + * + * Any record, which is not a data record, sets the fold level back to 0. + * Any line, which is not a record (blank lines and lines starting with a + * character other than ':'), leaves the fold level unchanged. + * + * + * Tektronix extended HEX + * =============================== + * + * Each record (line) is built as follows: + * + * field digits states + * + * +----------+ + * | start | 1 ('%') SCE_HEX_RECSTART + * +----------+ + * | length | 2 SCE_HEX_BYTECOUNT, SCE_HEX_BYTECOUNT_WRONG + * +----------+ + * | type | 1 SCE_HEX_RECTYPE, (SCE_HEX_RECTYPE_UNKNOWN) + * +----------+ + * | checksum | 2 SCE_HEX_CHECKSUM, SCE_HEX_CHECKSUM_WRONG + * +----------+ + * | address | 9 SCE_HEX_DATAADDRESS, SCE_HEX_STARTADDRESS, (SCE_HEX_ADDRESSFIELD_UNKNOWN) + * +----------+ + * | data | 0..241 SCE_HEX_DATA_ODD, SCE_HEX_DATA_EVEN + * +----------+ + * + * + * General notes for all lexers + * =============================== + * + * - Depending on where the helper functions are invoked, some of them have to + * read beyond the current position. In case of malformed data (record too + * short), it has to be ensured that this either does not have bad influence + * or will be captured deliberately. + * + * - States in parentheses in the upper format descriptions indicate that they + * should not appear in a valid hex file. + * + * - State SCE_HEX_GARBAGE means garbage data after the intended end of the + * record, the line is too long then. This state is used in all lexers. + */ + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +// prototypes for general helper functions +static inline bool IsNewline(const int ch); +static int GetHexaNibble(char hd); +static int GetHexaChar(char hd1, char hd2); +static int GetHexaChar(Sci_PositionU pos, Accessor &styler); +static bool ForwardWithinLine(StyleContext &sc, Sci_Position nb = 1); +static bool PosInSameRecord(Sci_PositionU pos1, Sci_PositionU pos2, Accessor &styler); +static Sci_Position CountByteCount(Sci_PositionU startPos, Sci_Position uncountedDigits, Accessor &styler); +static int CalcChecksum(Sci_PositionU startPos, Sci_Position cnt, bool twosCompl, Accessor &styler); + +// prototypes for file format specific helper functions +static Sci_PositionU GetSrecRecStartPosition(Sci_PositionU pos, Accessor &styler); +static int GetSrecByteCount(Sci_PositionU recStartPos, Accessor &styler); +static Sci_Position CountSrecByteCount(Sci_PositionU recStartPos, Accessor &styler); +static int GetSrecAddressFieldSize(Sci_PositionU recStartPos, Accessor &styler); +static int GetSrecAddressFieldType(Sci_PositionU recStartPos, Accessor &styler); +static int GetSrecDataFieldType(Sci_PositionU recStartPos, Accessor &styler); +static Sci_Position GetSrecRequiredDataFieldSize(Sci_PositionU recStartPos, Accessor &styler); +static int GetSrecChecksum(Sci_PositionU recStartPos, Accessor &styler); +static int CalcSrecChecksum(Sci_PositionU recStartPos, Accessor &styler); + +static Sci_PositionU GetIHexRecStartPosition(Sci_PositionU pos, Accessor &styler); +static int GetIHexByteCount(Sci_PositionU recStartPos, Accessor &styler); +static Sci_Position CountIHexByteCount(Sci_PositionU recStartPos, Accessor &styler); +static int GetIHexAddressFieldType(Sci_PositionU recStartPos, Accessor &styler); +static int GetIHexDataFieldType(Sci_PositionU recStartPos, Accessor &styler); +static int GetIHexRequiredDataFieldSize(Sci_PositionU recStartPos, Accessor &styler); +static int GetIHexChecksum(Sci_PositionU recStartPos, Accessor &styler); +static int CalcIHexChecksum(Sci_PositionU recStartPos, Accessor &styler); + +static int GetTEHexDigitCount(Sci_PositionU recStartPos, Accessor &styler); +static Sci_Position CountTEHexDigitCount(Sci_PositionU recStartPos, Accessor &styler); +static int GetTEHexAddressFieldType(Sci_PositionU recStartPos, Accessor &styler); +static int GetTEHexChecksum(Sci_PositionU recStartPos, Accessor &styler); +static int CalcTEHexChecksum(Sci_PositionU recStartPos, Accessor &styler); + +static inline bool IsNewline(const int ch) +{ + return (ch == '\n' || ch == '\r'); +} + +static int GetHexaNibble(char hd) +{ + int hexValue = 0; + + if (hd >= '0' && hd <= '9') { + hexValue += hd - '0'; + } else if (hd >= 'A' && hd <= 'F') { + hexValue += hd - 'A' + 10; + } else if (hd >= 'a' && hd <= 'f') { + hexValue += hd - 'a' + 10; + } else { + return -1; + } + + return hexValue; +} + +static int GetHexaChar(char hd1, char hd2) +{ + int hexValue = 0; + + if (hd1 >= '0' && hd1 <= '9') { + hexValue += 16 * (hd1 - '0'); + } else if (hd1 >= 'A' && hd1 <= 'F') { + hexValue += 16 * (hd1 - 'A' + 10); + } else if (hd1 >= 'a' && hd1 <= 'f') { + hexValue += 16 * (hd1 - 'a' + 10); + } else { + return -1; + } + + if (hd2 >= '0' && hd2 <= '9') { + hexValue += hd2 - '0'; + } else if (hd2 >= 'A' && hd2 <= 'F') { + hexValue += hd2 - 'A' + 10; + } else if (hd2 >= 'a' && hd2 <= 'f') { + hexValue += hd2 - 'a' + 10; + } else { + return -1; + } + + return hexValue; +} + +static int GetHexaChar(Sci_PositionU pos, Accessor &styler) +{ + char highNibble, lowNibble; + + highNibble = styler.SafeGetCharAt(pos); + lowNibble = styler.SafeGetCharAt(pos + 1); + + return GetHexaChar(highNibble, lowNibble); +} + +// Forward characters, but abort (and return false) if hitting the line +// end. Return true if forwarding within the line was possible. +// Avoids influence on highlighting of the subsequent line if the current line +// is malformed (too short). +static bool ForwardWithinLine(StyleContext &sc, Sci_Position nb) +{ + for (Sci_Position i = 0; i < nb; i++) { + if (sc.atLineEnd) { + // line is too short + sc.SetState(SCE_HEX_DEFAULT); + sc.Forward(); + return false; + } else { + sc.Forward(); + } + } + + return true; +} + +// Checks whether the given positions are in the same record. +static bool PosInSameRecord(Sci_PositionU pos1, Sci_PositionU pos2, Accessor &styler) +{ + return styler.GetLine(pos1) == styler.GetLine(pos2); +} + +// Count the number of digit pairs from till end of record, ignoring +// digits. +// If the record is too short, a negative count may be returned. +static Sci_Position CountByteCount(Sci_PositionU startPos, Sci_Position uncountedDigits, Accessor &styler) +{ + Sci_Position cnt; + Sci_PositionU pos; + + pos = startPos; + + while (!IsNewline(styler.SafeGetCharAt(pos, '\n'))) { + pos++; + } + + // number of digits in this line minus number of digits of uncounted fields + cnt = static_cast(pos - startPos) - uncountedDigits; + + // Prepare round up if odd (digit pair incomplete), this way the byte + // count is considered to be valid if the checksum is incomplete. + if (cnt >= 0) { + cnt++; + } + + // digit pairs + cnt /= 2; + + return cnt; +} + +// Calculate the checksum of the record. +// is the position of the first character of the starting digit +// pair, is the number of digit pairs. +static int CalcChecksum(Sci_PositionU startPos, Sci_Position cnt, bool twosCompl, Accessor &styler) +{ + int cs = 0; + + for (Sci_PositionU pos = startPos; pos < startPos + cnt; pos += 2) { + int val = GetHexaChar(pos, styler); + + if (val < 0) { + return val; + } + + // overflow does not matter + cs += val; + } + + if (twosCompl) { + // low byte of two's complement + return -cs & 0xFF; + } else { + // low byte of one's complement + return ~cs & 0xFF; + } +} + +// Get the position of the record "start" field (first character in line) in +// the record around position . +static Sci_PositionU GetSrecRecStartPosition(Sci_PositionU pos, Accessor &styler) +{ + while (styler.SafeGetCharAt(pos) != 'S') { + pos--; + } + + return pos; +} + +// Get the value of the "byte count" field, it counts the number of bytes in +// the subsequent fields ("address", "data" and "checksum" fields). +static int GetSrecByteCount(Sci_PositionU recStartPos, Accessor &styler) +{ + int val; + + val = GetHexaChar(recStartPos + 2, styler); + if (val < 0) { + val = 0; + } + + return val; +} + +// Count the number of digit pairs for the "address", "data" and "checksum" +// fields in this record. Has to be equal to the "byte count" field value. +// If the record is too short, a negative count may be returned. +static Sci_Position CountSrecByteCount(Sci_PositionU recStartPos, Accessor &styler) +{ + return CountByteCount(recStartPos, 4, styler); +} + +// Get the size of the "address" field. +static int GetSrecAddressFieldSize(Sci_PositionU recStartPos, Accessor &styler) +{ + switch (styler.SafeGetCharAt(recStartPos + 1)) { + case '0': + case '1': + case '5': + case '9': + return 2; // 16 bit + + case '2': + case '6': + case '8': + return 3; // 24 bit + + case '3': + case '7': + return 4; // 32 bit + + default: + return 0; + } +} + +// Get the type of the "address" field content. +static int GetSrecAddressFieldType(Sci_PositionU recStartPos, Accessor &styler) +{ + switch (styler.SafeGetCharAt(recStartPos + 1)) { + case '0': + return SCE_HEX_NOADDRESS; + + case '1': + case '2': + case '3': + return SCE_HEX_DATAADDRESS; + + case '5': + case '6': + return SCE_HEX_RECCOUNT; + + case '7': + case '8': + case '9': + return SCE_HEX_STARTADDRESS; + + default: // handle possible format extension in the future + return SCE_HEX_ADDRESSFIELD_UNKNOWN; + } +} + +// Get the type of the "data" field content. +static int GetSrecDataFieldType(Sci_PositionU recStartPos, Accessor &styler) +{ + switch (styler.SafeGetCharAt(recStartPos + 1)) { + case '0': + case '1': + case '2': + case '3': + return SCE_HEX_DATA_ODD; + + case '5': + case '6': + case '7': + case '8': + case '9': + return SCE_HEX_DATA_EMPTY; + + default: // handle possible format extension in the future + return SCE_HEX_DATA_UNKNOWN; + } +} + +// Get the required size of the "data" field. Useless for block header and +// ordinary data records (type S0, S1, S2, S3), return the value calculated +// from the "byte count" and "address field" size in this case. +static Sci_Position GetSrecRequiredDataFieldSize(Sci_PositionU recStartPos, Accessor &styler) +{ + switch (styler.SafeGetCharAt(recStartPos + 1)) { + case '5': + case '6': + case '7': + case '8': + case '9': + return 0; + + default: + return GetSrecByteCount(recStartPos, styler) + - GetSrecAddressFieldSize(recStartPos, styler) + - 1; // -1 for checksum field + } +} + +// Get the value of the "checksum" field. +static int GetSrecChecksum(Sci_PositionU recStartPos, Accessor &styler) +{ + int byteCount; + + byteCount = GetSrecByteCount(recStartPos, styler); + + return GetHexaChar(recStartPos + 2 + byteCount * 2, styler); +} + +// Calculate the checksum of the record. +static int CalcSrecChecksum(Sci_PositionU recStartPos, Accessor &styler) +{ + Sci_Position byteCount; + + byteCount = GetSrecByteCount(recStartPos, styler); + + // sum over "byte count", "address" and "data" fields (6..510 digits) + return CalcChecksum(recStartPos + 2, byteCount * 2, false, styler); +} + +// Get the position of the record "start" field (first character in line) in +// the record around position . +static Sci_PositionU GetIHexRecStartPosition(Sci_PositionU pos, Accessor &styler) +{ + while (styler.SafeGetCharAt(pos) != ':') { + pos--; + } + + return pos; +} + +// Get the value of the "byte count" field, it counts the number of bytes in +// the "data" field. +static int GetIHexByteCount(Sci_PositionU recStartPos, Accessor &styler) +{ + int val; + + val = GetHexaChar(recStartPos + 1, styler); + if (val < 0) { + val = 0; + } + + return val; +} + +// Count the number of digit pairs for the "data" field in this record. Has to +// be equal to the "byte count" field value. +// If the record is too short, a negative count may be returned. +static Sci_Position CountIHexByteCount(Sci_PositionU recStartPos, Accessor &styler) +{ + return CountByteCount(recStartPos, 11, styler); +} + +// Get the type of the "address" field content. +static int GetIHexAddressFieldType(Sci_PositionU recStartPos, Accessor &styler) +{ + if (!PosInSameRecord(recStartPos, recStartPos + 7, styler)) { + // malformed (record too short) + // type cannot be determined + return SCE_HEX_ADDRESSFIELD_UNKNOWN; + } + + switch (GetHexaChar(recStartPos + 7, styler)) { + case 0x00: + return SCE_HEX_DATAADDRESS; + + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + return SCE_HEX_NOADDRESS; + + default: // handle possible format extension in the future + return SCE_HEX_ADDRESSFIELD_UNKNOWN; + } +} + +// Get the type of the "data" field content. +static int GetIHexDataFieldType(Sci_PositionU recStartPos, Accessor &styler) +{ + switch (GetHexaChar(recStartPos + 7, styler)) { + case 0x00: + return SCE_HEX_DATA_ODD; + + case 0x01: + return SCE_HEX_DATA_EMPTY; + + case 0x02: + case 0x04: + return SCE_HEX_EXTENDEDADDRESS; + + case 0x03: + case 0x05: + return SCE_HEX_STARTADDRESS; + + default: // handle possible format extension in the future + return SCE_HEX_DATA_UNKNOWN; + } +} + +// Get the required size of the "data" field. Useless for an ordinary data +// record (type 00), return the "byte count" in this case. +static int GetIHexRequiredDataFieldSize(Sci_PositionU recStartPos, Accessor &styler) +{ + switch (GetHexaChar(recStartPos + 7, styler)) { + case 0x01: + return 0; + + case 0x02: + case 0x04: + return 2; + + case 0x03: + case 0x05: + return 4; + + default: + return GetIHexByteCount(recStartPos, styler); + } +} + +// Get the value of the "checksum" field. +static int GetIHexChecksum(Sci_PositionU recStartPos, Accessor &styler) +{ + int byteCount; + + byteCount = GetIHexByteCount(recStartPos, styler); + + return GetHexaChar(recStartPos + 9 + byteCount * 2, styler); +} + +// Calculate the checksum of the record. +static int CalcIHexChecksum(Sci_PositionU recStartPos, Accessor &styler) +{ + int byteCount; + + byteCount = GetIHexByteCount(recStartPos, styler); + + // sum over "byte count", "address", "type" and "data" fields (8..518 digits) + return CalcChecksum(recStartPos + 1, 8 + byteCount * 2, true, styler); +} + + +// Get the value of the "record length" field, it counts the number of digits in +// the record excluding the percent. +static int GetTEHexDigitCount(Sci_PositionU recStartPos, Accessor &styler) +{ + int val = GetHexaChar(recStartPos + 1, styler); + if (val < 0) + val = 0; + + return val; +} + +// Count the number of digits in this record. Has to +// be equal to the "record length" field value. +static Sci_Position CountTEHexDigitCount(Sci_PositionU recStartPos, Accessor &styler) +{ + Sci_PositionU pos; + + pos = recStartPos+1; + + while (!IsNewline(styler.SafeGetCharAt(pos, '\n'))) { + pos++; + } + + return static_cast(pos - (recStartPos+1)); +} + +// Get the type of the "address" field content. +static int GetTEHexAddressFieldType(Sci_PositionU recStartPos, Accessor &styler) +{ + switch (styler.SafeGetCharAt(recStartPos + 3)) { + case '6': + return SCE_HEX_DATAADDRESS; + + case '8': + return SCE_HEX_STARTADDRESS; + + default: // handle possible format extension in the future + return SCE_HEX_ADDRESSFIELD_UNKNOWN; + } +} + +// Get the value of the "checksum" field. +static int GetTEHexChecksum(Sci_PositionU recStartPos, Accessor &styler) +{ + return GetHexaChar(recStartPos+4, styler); +} + +// Calculate the checksum of the record (excluding the checksum field). +static int CalcTEHexChecksum(Sci_PositionU recStartPos, Accessor &styler) +{ + Sci_PositionU pos = recStartPos +1; + Sci_PositionU length = GetTEHexDigitCount(recStartPos, styler); + + int cs = GetHexaNibble(styler.SafeGetCharAt(pos++));//length + cs += GetHexaNibble(styler.SafeGetCharAt(pos++));//length + + cs += GetHexaNibble(styler.SafeGetCharAt(pos++));//type + + pos += 2;// jump over CS field + + for (; pos <= recStartPos + length; ++pos) { + int val = GetHexaNibble(styler.SafeGetCharAt(pos)); + + if (val < 0) { + return val; + } + + // overflow does not matter + cs += val; + } + + // low byte + return cs & 0xFF; + +} + +static void ColouriseSrecDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *[], Accessor &styler) +{ + StyleContext sc(startPos, length, initStyle, styler); + + while (sc.More()) { + Sci_PositionU recStartPos; + Sci_Position reqByteCount; + Sci_Position dataFieldSize; + int byteCount, addrFieldSize, addrFieldType, dataFieldType; + int cs1, cs2; + + switch (sc.state) { + case SCE_HEX_DEFAULT: + if (sc.atLineStart && sc.Match('S')) { + sc.SetState(SCE_HEX_RECSTART); + } + ForwardWithinLine(sc); + break; + + case SCE_HEX_RECSTART: + recStartPos = sc.currentPos - 1; + addrFieldType = GetSrecAddressFieldType(recStartPos, styler); + + if (addrFieldType == SCE_HEX_ADDRESSFIELD_UNKNOWN) { + sc.SetState(SCE_HEX_RECTYPE_UNKNOWN); + } else { + sc.SetState(SCE_HEX_RECTYPE); + } + + ForwardWithinLine(sc); + break; + + case SCE_HEX_RECTYPE: + case SCE_HEX_RECTYPE_UNKNOWN: + recStartPos = sc.currentPos - 2; + byteCount = GetSrecByteCount(recStartPos, styler); + reqByteCount = GetSrecAddressFieldSize(recStartPos, styler) + + GetSrecRequiredDataFieldSize(recStartPos, styler) + + 1; // +1 for checksum field + + if (byteCount == CountSrecByteCount(recStartPos, styler) + && byteCount == reqByteCount) { + sc.SetState(SCE_HEX_BYTECOUNT); + } else { + sc.SetState(SCE_HEX_BYTECOUNT_WRONG); + } + + ForwardWithinLine(sc, 2); + break; + + case SCE_HEX_BYTECOUNT: + case SCE_HEX_BYTECOUNT_WRONG: + recStartPos = sc.currentPos - 4; + addrFieldSize = GetSrecAddressFieldSize(recStartPos, styler); + addrFieldType = GetSrecAddressFieldType(recStartPos, styler); + + sc.SetState(addrFieldType); + ForwardWithinLine(sc, addrFieldSize * 2); + break; + + case SCE_HEX_NOADDRESS: + case SCE_HEX_DATAADDRESS: + case SCE_HEX_RECCOUNT: + case SCE_HEX_STARTADDRESS: + case SCE_HEX_ADDRESSFIELD_UNKNOWN: + recStartPos = GetSrecRecStartPosition(sc.currentPos, styler); + dataFieldType = GetSrecDataFieldType(recStartPos, styler); + + // Using the required size here if possible has the effect that the + // checksum is highlighted at a fixed position after this field for + // specific record types, independent on the "byte count" value. + dataFieldSize = GetSrecRequiredDataFieldSize(recStartPos, styler); + + sc.SetState(dataFieldType); + + if (dataFieldType == SCE_HEX_DATA_ODD) { + for (int i = 0; i < dataFieldSize * 2; i++) { + if ((i & 0x3) == 0) { + sc.SetState(SCE_HEX_DATA_ODD); + } else if ((i & 0x3) == 2) { + sc.SetState(SCE_HEX_DATA_EVEN); + } + + if (!ForwardWithinLine(sc)) { + break; + } + } + } else { + ForwardWithinLine(sc, dataFieldSize * 2); + } + break; + + case SCE_HEX_DATA_ODD: + case SCE_HEX_DATA_EVEN: + case SCE_HEX_DATA_EMPTY: + case SCE_HEX_DATA_UNKNOWN: + recStartPos = GetSrecRecStartPosition(sc.currentPos, styler); + cs1 = CalcSrecChecksum(recStartPos, styler); + cs2 = GetSrecChecksum(recStartPos, styler); + + if (cs1 != cs2 || cs1 < 0 || cs2 < 0) { + sc.SetState(SCE_HEX_CHECKSUM_WRONG); + } else { + sc.SetState(SCE_HEX_CHECKSUM); + } + + ForwardWithinLine(sc, 2); + break; + + case SCE_HEX_CHECKSUM: + case SCE_HEX_CHECKSUM_WRONG: + case SCE_HEX_GARBAGE: + // record finished or line too long + sc.SetState(SCE_HEX_GARBAGE); + ForwardWithinLine(sc); + break; + + default: + // prevent endless loop in faulty state + sc.SetState(SCE_HEX_DEFAULT); + break; + } + } + sc.Complete(); +} + +static void ColouriseIHexDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *[], Accessor &styler) +{ + StyleContext sc(startPos, length, initStyle, styler); + + while (sc.More()) { + Sci_PositionU recStartPos; + int byteCount, addrFieldType, dataFieldSize, dataFieldType; + int cs1, cs2; + + switch (sc.state) { + case SCE_HEX_DEFAULT: + if (sc.atLineStart && sc.Match(':')) { + sc.SetState(SCE_HEX_RECSTART); + } + ForwardWithinLine(sc); + break; + + case SCE_HEX_RECSTART: + recStartPos = sc.currentPos - 1; + byteCount = GetIHexByteCount(recStartPos, styler); + dataFieldSize = GetIHexRequiredDataFieldSize(recStartPos, styler); + + if (byteCount == CountIHexByteCount(recStartPos, styler) + && byteCount == dataFieldSize) { + sc.SetState(SCE_HEX_BYTECOUNT); + } else { + sc.SetState(SCE_HEX_BYTECOUNT_WRONG); + } + + ForwardWithinLine(sc, 2); + break; + + case SCE_HEX_BYTECOUNT: + case SCE_HEX_BYTECOUNT_WRONG: + recStartPos = sc.currentPos - 3; + addrFieldType = GetIHexAddressFieldType(recStartPos, styler); + + sc.SetState(addrFieldType); + ForwardWithinLine(sc, 4); + break; + + case SCE_HEX_NOADDRESS: + case SCE_HEX_DATAADDRESS: + case SCE_HEX_ADDRESSFIELD_UNKNOWN: + recStartPos = sc.currentPos - 7; + addrFieldType = GetIHexAddressFieldType(recStartPos, styler); + + if (addrFieldType == SCE_HEX_ADDRESSFIELD_UNKNOWN) { + sc.SetState(SCE_HEX_RECTYPE_UNKNOWN); + } else { + sc.SetState(SCE_HEX_RECTYPE); + } + + ForwardWithinLine(sc, 2); + break; + + case SCE_HEX_RECTYPE: + case SCE_HEX_RECTYPE_UNKNOWN: + recStartPos = sc.currentPos - 9; + dataFieldType = GetIHexDataFieldType(recStartPos, styler); + + // Using the required size here if possible has the effect that the + // checksum is highlighted at a fixed position after this field for + // specific record types, independent on the "byte count" value. + dataFieldSize = GetIHexRequiredDataFieldSize(recStartPos, styler); + + sc.SetState(dataFieldType); + + if (dataFieldType == SCE_HEX_DATA_ODD) { + for (int i = 0; i < dataFieldSize * 2; i++) { + if ((i & 0x3) == 0) { + sc.SetState(SCE_HEX_DATA_ODD); + } else if ((i & 0x3) == 2) { + sc.SetState(SCE_HEX_DATA_EVEN); + } + + if (!ForwardWithinLine(sc)) { + break; + } + } + } else { + ForwardWithinLine(sc, dataFieldSize * 2); + } + break; + + case SCE_HEX_DATA_ODD: + case SCE_HEX_DATA_EVEN: + case SCE_HEX_DATA_EMPTY: + case SCE_HEX_EXTENDEDADDRESS: + case SCE_HEX_STARTADDRESS: + case SCE_HEX_DATA_UNKNOWN: + recStartPos = GetIHexRecStartPosition(sc.currentPos, styler); + cs1 = CalcIHexChecksum(recStartPos, styler); + cs2 = GetIHexChecksum(recStartPos, styler); + + if (cs1 != cs2 || cs1 < 0 || cs2 < 0) { + sc.SetState(SCE_HEX_CHECKSUM_WRONG); + } else { + sc.SetState(SCE_HEX_CHECKSUM); + } + + ForwardWithinLine(sc, 2); + break; + + case SCE_HEX_CHECKSUM: + case SCE_HEX_CHECKSUM_WRONG: + case SCE_HEX_GARBAGE: + // record finished or line too long + sc.SetState(SCE_HEX_GARBAGE); + ForwardWithinLine(sc); + break; + + default: + // prevent endless loop in faulty state + sc.SetState(SCE_HEX_DEFAULT); + break; + } + } + sc.Complete(); +} + +static void FoldIHexDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) +{ + Sci_PositionU endPos = startPos + length; + + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelCurrent = SC_FOLDLEVELBASE; + if (lineCurrent > 0) + levelCurrent = styler.LevelAt(lineCurrent - 1); + + Sci_PositionU lineStartNext = styler.LineStart(lineCurrent + 1); + int levelNext = SC_FOLDLEVELBASE; // default if no specific line found + + for (Sci_PositionU i = startPos; i < endPos; i++) { + bool atEOL = i == (lineStartNext - 1); + int style = styler.StyleAt(i); + + // search for specific lines + if (style == SCE_HEX_EXTENDEDADDRESS) { + // extended addres record + levelNext = SC_FOLDLEVELBASE | SC_FOLDLEVELHEADERFLAG; + } else if (style == SCE_HEX_DATAADDRESS + || (style == SCE_HEX_DEFAULT + && i == (Sci_PositionU)styler.LineStart(lineCurrent))) { + // data record or no record start code at all + if (levelCurrent & SC_FOLDLEVELHEADERFLAG) { + levelNext = SC_FOLDLEVELBASE + 1; + } else { + // continue level 0 or 1, no fold point + levelNext = levelCurrent; + } + } + + if (atEOL || (i == endPos - 1)) { + styler.SetLevel(lineCurrent, levelNext); + + lineCurrent++; + lineStartNext = styler.LineStart(lineCurrent + 1); + levelCurrent = levelNext; + levelNext = SC_FOLDLEVELBASE; + } + } +} + +static void ColouriseTEHexDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *[], Accessor &styler) +{ + StyleContext sc(startPos, length, initStyle, styler); + + while (sc.More()) { + Sci_PositionU recStartPos; + int digitCount, addrFieldType; + int cs1, cs2; + + switch (sc.state) { + case SCE_HEX_DEFAULT: + if (sc.atLineStart && sc.Match('%')) { + sc.SetState(SCE_HEX_RECSTART); + } + ForwardWithinLine(sc); + break; + + case SCE_HEX_RECSTART: + + recStartPos = sc.currentPos - 1; + + if (GetTEHexDigitCount(recStartPos, styler) == CountTEHexDigitCount(recStartPos, styler)) { + sc.SetState(SCE_HEX_BYTECOUNT); + } else { + sc.SetState(SCE_HEX_BYTECOUNT_WRONG); + } + + ForwardWithinLine(sc, 2); + break; + + case SCE_HEX_BYTECOUNT: + case SCE_HEX_BYTECOUNT_WRONG: + recStartPos = sc.currentPos - 3; + addrFieldType = GetTEHexAddressFieldType(recStartPos, styler); + + if (addrFieldType == SCE_HEX_ADDRESSFIELD_UNKNOWN) { + sc.SetState(SCE_HEX_RECTYPE_UNKNOWN); + } else { + sc.SetState(SCE_HEX_RECTYPE); + } + + ForwardWithinLine(sc); + break; + + case SCE_HEX_RECTYPE: + case SCE_HEX_RECTYPE_UNKNOWN: + recStartPos = sc.currentPos - 4; + cs1 = CalcTEHexChecksum(recStartPos, styler); + cs2 = GetTEHexChecksum(recStartPos, styler); + + if (cs1 != cs2 || cs1 < 0 || cs2 < 0) { + sc.SetState(SCE_HEX_CHECKSUM_WRONG); + } else { + sc.SetState(SCE_HEX_CHECKSUM); + } + + ForwardWithinLine(sc, 2); + break; + + + case SCE_HEX_CHECKSUM: + case SCE_HEX_CHECKSUM_WRONG: + recStartPos = sc.currentPos - 6; + addrFieldType = GetTEHexAddressFieldType(recStartPos, styler); + + sc.SetState(addrFieldType); + ForwardWithinLine(sc, 9); + break; + + case SCE_HEX_DATAADDRESS: + case SCE_HEX_STARTADDRESS: + case SCE_HEX_ADDRESSFIELD_UNKNOWN: + recStartPos = sc.currentPos - 15; + digitCount = GetTEHexDigitCount(recStartPos, styler) - 14; + + sc.SetState(SCE_HEX_DATA_ODD); + + for (int i = 0; i < digitCount; i++) { + if ((i & 0x3) == 0) { + sc.SetState(SCE_HEX_DATA_ODD); + } else if ((i & 0x3) == 2) { + sc.SetState(SCE_HEX_DATA_EVEN); + } + + if (!ForwardWithinLine(sc)) { + break; + } + } + break; + + case SCE_HEX_DATA_ODD: + case SCE_HEX_DATA_EVEN: + case SCE_HEX_GARBAGE: + // record finished or line too long + sc.SetState(SCE_HEX_GARBAGE); + ForwardWithinLine(sc); + break; + + default: + // prevent endless loop in faulty state + sc.SetState(SCE_HEX_DEFAULT); + break; + } + } + sc.Complete(); +} + +LexerModule lmSrec(SCLEX_SREC, ColouriseSrecDoc, "srec", 0, NULL); +LexerModule lmIHex(SCLEX_IHEX, ColouriseIHexDoc, "ihex", FoldIHexDoc, NULL); +LexerModule lmTEHex(SCLEX_TEHEX, ColouriseTEHexDoc, "tehex", 0, NULL); diff --git a/third_party/qscintilla/scintilla/lexers/LexIndent.cpp b/third_party/qscintilla/scintilla/lexers/LexIndent.cpp new file mode 100644 index 0000000..053bdd9 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexIndent.cpp @@ -0,0 +1,71 @@ +// Scintilla source code edit control +/** @file LexIndent.cxx + ** Lexer for no language. Used for indentation-based folding of files. + **/ +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static void ColouriseIndentDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], + Accessor &styler) { + // Indent language means all style bytes are 0 so just mark the end - no need to fill in. + if (length > 0) { + styler.StartAt(startPos + length - 1); + styler.StartSegment(startPos + length - 1); + styler.ColourTo(startPos + length - 1, 0); + } +} + +static void FoldIndentDoc(Sci_PositionU startPos, Sci_Position length, int /* initStyle */, WordList *[], Accessor &styler) { + int visibleCharsCurrent, visibleCharsNext; + int levelCurrent, levelNext; + Sci_PositionU i, lineEnd; + Sci_PositionU lengthDoc = startPos + length; + Sci_Position lineCurrent = styler.GetLine(startPos); + + i = styler.LineStart(lineCurrent ); + lineEnd = styler.LineStart(lineCurrent+1)-1; + if(lineEnd>=lengthDoc) lineEnd = lengthDoc-1; + while(styler[lineEnd]=='\n' || styler[lineEnd]=='\r') lineEnd--; + for(visibleCharsCurrent=0, levelCurrent=SC_FOLDLEVELBASE; !visibleCharsCurrent && i<=lineEnd; i++){ + if(isspacechar(styler[i])) levelCurrent++; + else visibleCharsCurrent=1; + } + + for(; i=lengthDoc) lineEnd = lengthDoc-1; + while(styler[lineEnd]=='\n' || styler[lineEnd]=='\r') lineEnd--; + for(visibleCharsNext=0, levelNext=SC_FOLDLEVELBASE; !visibleCharsNext && i<=lineEnd; i++){ + if(isspacechar(styler[i])) levelNext++; + else visibleCharsNext=1; + } + int lev = levelCurrent; + if(!visibleCharsCurrent) lev |= SC_FOLDLEVELWHITEFLAG; + else if(levelNext > levelCurrent) lev |= SC_FOLDLEVELHEADERFLAG; + styler.SetLevel(lineCurrent, lev); + levelCurrent = levelNext; + visibleCharsCurrent = visibleCharsNext; + } +} + +LexerModule lmIndent(SCLEX_INDENT, ColouriseIndentDoc, "indent", FoldIndentDoc); diff --git a/third_party/qscintilla/scintilla/lexers/LexInno.cpp b/third_party/qscintilla/scintilla/lexers/LexInno.cpp new file mode 100644 index 0000000..5d01c05 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexInno.cpp @@ -0,0 +1,288 @@ +// Scintilla source code edit control +/** @file LexInno.cxx + ** Lexer for Inno Setup scripts. + **/ +// Written by Friedrich Vedder , using code from LexOthers.cxx. +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static void ColouriseInnoDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *keywordLists[], Accessor &styler) { + int state = SCE_INNO_DEFAULT; + char chPrev; + char ch = 0; + char chNext = styler[startPos]; + Sci_Position lengthDoc = startPos + length; + char *buffer = new char[length+1]; + Sci_Position bufferCount = 0; + bool isBOL, isEOL, isWS, isBOLWS = 0; + bool isCStyleComment = false; + + WordList §ionKeywords = *keywordLists[0]; + WordList &standardKeywords = *keywordLists[1]; + WordList ¶meterKeywords = *keywordLists[2]; + WordList &preprocessorKeywords = *keywordLists[3]; + WordList &pascalKeywords = *keywordLists[4]; + WordList &userKeywords = *keywordLists[5]; + + Sci_Position curLine = styler.GetLine(startPos); + int curLineState = curLine > 0 ? styler.GetLineState(curLine - 1) : 0; + bool isCode = (curLineState == 1); + + // Go through all provided text segment + // using the hand-written state machine shown below + styler.StartAt(startPos); + styler.StartSegment(startPos); + for (Sci_Position i = startPos; i < lengthDoc; i++) { + chPrev = ch; + ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + if (styler.IsLeadByte(ch)) { + chNext = styler.SafeGetCharAt(i + 2); + i++; + continue; + } + + isBOL = (chPrev == 0) || (chPrev == '\n') || (chPrev == '\r' && ch != '\n'); + isBOLWS = (isBOL) ? 1 : (isBOLWS && (chPrev == ' ' || chPrev == '\t')); + isEOL = (ch == '\n' || ch == '\r'); + isWS = (ch == ' ' || ch == '\t'); + + if ((ch == '\r' && chNext != '\n') || (ch == '\n')) { + // Remember the line state for future incremental lexing + curLine = styler.GetLine(i); + styler.SetLineState(curLine, (isCode ? 1 : 0)); + } + + switch(state) { + case SCE_INNO_DEFAULT: + if (!isCode && ch == ';' && isBOLWS) { + // Start of a comment + state = SCE_INNO_COMMENT; + } else if (ch == '[' && isBOLWS) { + // Start of a section name + bufferCount = 0; + state = SCE_INNO_SECTION; + } else if (ch == '#' && isBOLWS) { + // Start of a preprocessor directive + state = SCE_INNO_PREPROC; + } else if (!isCode && ch == '{' && chNext != '{' && chPrev != '{') { + // Start of an inline expansion + state = SCE_INNO_INLINE_EXPANSION; + } else if (isCode && (ch == '{' || (ch == '(' && chNext == '*'))) { + // Start of a Pascal comment + state = SCE_INNO_COMMENT_PASCAL; + isCStyleComment = false; + } else if (isCode && ch == '/' && chNext == '/') { + // Apparently, C-style comments are legal, too + state = SCE_INNO_COMMENT_PASCAL; + isCStyleComment = true; + } else if (ch == '"') { + // Start of a double-quote string + state = SCE_INNO_STRING_DOUBLE; + } else if (ch == '\'') { + // Start of a single-quote string + state = SCE_INNO_STRING_SINGLE; + } else if (IsASCII(ch) && (isalpha(ch) || (ch == '_'))) { + // Start of an identifier + bufferCount = 0; + buffer[bufferCount++] = static_cast(tolower(ch)); + state = SCE_INNO_IDENTIFIER; + } else { + // Style it the default style + styler.ColourTo(i,SCE_INNO_DEFAULT); + } + break; + + case SCE_INNO_COMMENT: + if (isEOL) { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_COMMENT); + } + break; + + case SCE_INNO_IDENTIFIER: + if (IsASCII(ch) && (isalnum(ch) || (ch == '_'))) { + buffer[bufferCount++] = static_cast(tolower(ch)); + } else { + state = SCE_INNO_DEFAULT; + buffer[bufferCount] = '\0'; + + // Check if the buffer contains a keyword + if (!isCode && standardKeywords.InList(buffer)) { + styler.ColourTo(i-1,SCE_INNO_KEYWORD); + } else if (!isCode && parameterKeywords.InList(buffer)) { + styler.ColourTo(i-1,SCE_INNO_PARAMETER); + } else if (isCode && pascalKeywords.InList(buffer)) { + styler.ColourTo(i-1,SCE_INNO_KEYWORD_PASCAL); + } else if (!isCode && userKeywords.InList(buffer)) { + styler.ColourTo(i-1,SCE_INNO_KEYWORD_USER); + } else { + styler.ColourTo(i-1,SCE_INNO_DEFAULT); + } + + // Push back the faulty character + chNext = styler[i--]; + ch = chPrev; + } + break; + + case SCE_INNO_SECTION: + if (ch == ']') { + state = SCE_INNO_DEFAULT; + buffer[bufferCount] = '\0'; + + // Check if the buffer contains a section name + if (sectionKeywords.InList(buffer)) { + styler.ColourTo(i,SCE_INNO_SECTION); + isCode = !CompareCaseInsensitive(buffer, "code"); + } else { + styler.ColourTo(i,SCE_INNO_DEFAULT); + } + } else if (IsASCII(ch) && (isalnum(ch) || (ch == '_'))) { + buffer[bufferCount++] = static_cast(tolower(ch)); + } else { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_DEFAULT); + } + break; + + case SCE_INNO_PREPROC: + if (isWS || isEOL) { + if (IsASCII(chPrev) && isalpha(chPrev)) { + state = SCE_INNO_DEFAULT; + buffer[bufferCount] = '\0'; + + // Check if the buffer contains a preprocessor directive + if (preprocessorKeywords.InList(buffer)) { + styler.ColourTo(i-1,SCE_INNO_PREPROC); + } else { + styler.ColourTo(i-1,SCE_INNO_DEFAULT); + } + + // Push back the faulty character + chNext = styler[i--]; + ch = chPrev; + } + } else if (IsASCII(ch) && isalpha(ch)) { + if (chPrev == '#' || chPrev == ' ' || chPrev == '\t') + bufferCount = 0; + buffer[bufferCount++] = static_cast(tolower(ch)); + } + break; + + case SCE_INNO_STRING_DOUBLE: + if (ch == '"' || isEOL) { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_STRING_DOUBLE); + } + break; + + case SCE_INNO_STRING_SINGLE: + if (ch == '\'' || isEOL) { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_STRING_SINGLE); + } + break; + + case SCE_INNO_INLINE_EXPANSION: + if (ch == '}') { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_INLINE_EXPANSION); + } else if (isEOL) { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_DEFAULT); + } + break; + + case SCE_INNO_COMMENT_PASCAL: + if (isCStyleComment) { + if (isEOL) { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_COMMENT_PASCAL); + } + } else { + if (ch == '}' || (ch == ')' && chPrev == '*')) { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_COMMENT_PASCAL); + } else if (isEOL) { + state = SCE_INNO_DEFAULT; + styler.ColourTo(i,SCE_INNO_DEFAULT); + } + } + break; + + } + } + delete []buffer; +} + +static const char * const innoWordListDesc[] = { + "Sections", + "Keywords", + "Parameters", + "Preprocessor directives", + "Pascal keywords", + "User defined keywords", + 0 +}; + +static void FoldInnoDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) { + Sci_PositionU endPos = startPos + length; + char chNext = styler[startPos]; + + Sci_Position lineCurrent = styler.GetLine(startPos); + + bool sectionFlag = false; + int levelPrev = lineCurrent > 0 ? styler.LevelAt(lineCurrent - 1) : SC_FOLDLEVELBASE; + int level; + + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler[i+1]; + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + int style = styler.StyleAt(i); + + if (style == SCE_INNO_SECTION) + sectionFlag = true; + + if (atEOL || i == endPos - 1) { + if (sectionFlag) { + level = SC_FOLDLEVELBASE | SC_FOLDLEVELHEADERFLAG; + if (level == levelPrev) + styler.SetLevel(lineCurrent - 1, levelPrev & ~SC_FOLDLEVELHEADERFLAG); + } else { + level = levelPrev & SC_FOLDLEVELNUMBERMASK; + if (levelPrev & SC_FOLDLEVELHEADERFLAG) + level++; + } + + styler.SetLevel(lineCurrent, level); + + levelPrev = level; + lineCurrent++; + sectionFlag = false; + } + } +} + +LexerModule lmInno(SCLEX_INNOSETUP, ColouriseInnoDoc, "inno", FoldInnoDoc, innoWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexJSON.cpp b/third_party/qscintilla/scintilla/lexers/LexJSON.cpp new file mode 100644 index 0000000..3c754f8 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexJSON.cpp @@ -0,0 +1,498 @@ +// Scintilla source code edit control +/** + * @file LexJSON.cxx + * @date February 19, 2016 + * @brief Lexer for JSON and JSON-LD formats + * @author nkmathew + * + * The License.txt file describes the conditions under which this software may + * be distributed. + * + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "OptionSet.h" +#include "DefaultLexer.h" + +using namespace Scintilla; + +static const char *const JSONWordListDesc[] = { + "JSON Keywords", + "JSON-LD Keywords", + 0 +}; + +/** + * Used to detect compact IRI/URLs in JSON-LD without first looking ahead for the + * colon separating the prefix and suffix + * + * https://www.w3.org/TR/json-ld/#dfn-compact-iri + */ +struct CompactIRI { + int colonCount; + bool foundInvalidChar; + CharacterSet setCompactIRI; + CompactIRI() { + colonCount = 0; + foundInvalidChar = false; + setCompactIRI = CharacterSet(CharacterSet::setAlpha, "$_-"); + } + void resetState() { + colonCount = 0; + foundInvalidChar = false; + } + void checkChar(int ch) { + if (ch == ':') { + colonCount++; + } else { + foundInvalidChar |= !setCompactIRI.Contains(ch); + } + } + bool shouldHighlight() const { + return !foundInvalidChar && colonCount == 1; + } +}; + +/** + * Keeps track of escaped characters in strings as per: + * + * https://tools.ietf.org/html/rfc7159#section-7 + */ +struct EscapeSequence { + int digitsLeft; + CharacterSet setHexDigits; + CharacterSet setEscapeChars; + EscapeSequence() { + digitsLeft = 0; + setHexDigits = CharacterSet(CharacterSet::setDigits, "ABCDEFabcdef"); + setEscapeChars = CharacterSet(CharacterSet::setNone, "\\\"tnbfru/"); + } + // Returns true if the following character is a valid escaped character + bool newSequence(int nextChar) { + digitsLeft = 0; + if (nextChar == 'u') { + digitsLeft = 5; + } else if (!setEscapeChars.Contains(nextChar)) { + return false; + } + return true; + } + bool atEscapeEnd() const { + return digitsLeft <= 0; + } + bool isInvalidChar(int currChar) const { + return !setHexDigits.Contains(currChar); + } +}; + +struct OptionsJSON { + bool foldCompact; + bool fold; + bool allowComments; + bool escapeSequence; + OptionsJSON() { + foldCompact = false; + fold = false; + allowComments = false; + escapeSequence = false; + } +}; + +struct OptionSetJSON : public OptionSet { + OptionSetJSON() { + DefineProperty("lexer.json.escape.sequence", &OptionsJSON::escapeSequence, + "Set to 1 to enable highlighting of escape sequences in strings"); + + DefineProperty("lexer.json.allow.comments", &OptionsJSON::allowComments, + "Set to 1 to enable highlighting of line/block comments in JSON"); + + DefineProperty("fold.compact", &OptionsJSON::foldCompact); + DefineProperty("fold", &OptionsJSON::fold); + DefineWordListSets(JSONWordListDesc); + } +}; + +class LexerJSON : public DefaultLexer { + OptionsJSON options; + OptionSetJSON optSetJSON; + EscapeSequence escapeSeq; + WordList keywordsJSON; + WordList keywordsJSONLD; + CharacterSet setOperators; + CharacterSet setURL; + CharacterSet setKeywordJSONLD; + CharacterSet setKeywordJSON; + CompactIRI compactIRI; + + static bool IsNextNonWhitespace(LexAccessor &styler, Sci_Position start, char ch) { + Sci_Position i = 0; + while (i < 50) { + i++; + char curr = styler.SafeGetCharAt(start+i, '\0'); + char next = styler.SafeGetCharAt(start+i+1, '\0'); + bool atEOL = (curr == '\r' && next != '\n') || (curr == '\n'); + if (curr == ch) { + return true; + } else if (!isspacechar(curr) || atEOL) { + return false; + } + } + return false; + } + + /** + * Looks for the colon following the end quote + * + * Assumes property names of lengths no longer than a 100 characters. + * The colon is also expected to be less than 50 spaces after the end + * quote for the string to be considered a property name + */ + static bool AtPropertyName(LexAccessor &styler, Sci_Position start) { + Sci_Position i = 0; + bool escaped = false; + while (i < 100) { + i++; + char curr = styler.SafeGetCharAt(start+i, '\0'); + if (escaped) { + escaped = false; + continue; + } + escaped = curr == '\\'; + if (curr == '"') { + return IsNextNonWhitespace(styler, start+i, ':'); + } else if (!curr) { + return false; + } + } + return false; + } + + static bool IsNextWordInList(WordList &keywordList, CharacterSet wordSet, + StyleContext &context, LexAccessor &styler) { + char word[51]; + Sci_Position currPos = (Sci_Position) context.currentPos; + int i = 0; + while (i < 50) { + char ch = styler.SafeGetCharAt(currPos + i); + if (!wordSet.Contains(ch)) { + break; + } + word[i] = ch; + i++; + } + word[i] = '\0'; + return keywordList.InList(word); + } + + public: + LexerJSON() : + setOperators(CharacterSet::setNone, "[{}]:,"), + setURL(CharacterSet::setAlphaNum, "-._~:/?#[]@!$&'()*+,),="), + setKeywordJSONLD(CharacterSet::setAlpha, ":@"), + setKeywordJSON(CharacterSet::setAlpha, "$_") { + } + virtual ~LexerJSON() {} + int SCI_METHOD Version() const override { + return lvOriginal; + } + void SCI_METHOD Release() override { + delete this; + } + const char *SCI_METHOD PropertyNames() override { + return optSetJSON.PropertyNames(); + } + int SCI_METHOD PropertyType(const char *name) override { + return optSetJSON.PropertyType(name); + } + const char *SCI_METHOD DescribeProperty(const char *name) override { + return optSetJSON.DescribeProperty(name); + } + Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override { + if (optSetJSON.PropertySet(&options, key, val)) { + return 0; + } + return -1; + } + Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override { + WordList *wordListN = 0; + switch (n) { + case 0: + wordListN = &keywordsJSON; + break; + case 1: + wordListN = &keywordsJSONLD; + break; + } + Sci_Position firstModification = -1; + if (wordListN) { + WordList wlNew; + wlNew.Set(wl); + if (*wordListN != wlNew) { + wordListN->Set(wl); + firstModification = 0; + } + } + return firstModification; + } + void *SCI_METHOD PrivateCall(int, void *) override { + return 0; + } + static ILexer *LexerFactoryJSON() { + return new LexerJSON; + } + const char *SCI_METHOD DescribeWordListSets() override { + return optSetJSON.DescribeWordListSets(); + } + void SCI_METHOD Lex(Sci_PositionU startPos, + Sci_Position length, + int initStyle, + IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, + Sci_Position length, + int initStyle, + IDocument *pAccess) override; +}; + +void SCI_METHOD LexerJSON::Lex(Sci_PositionU startPos, + Sci_Position length, + int initStyle, + IDocument *pAccess) { + LexAccessor styler(pAccess); + StyleContext context(startPos, length, initStyle, styler); + int stringStyleBefore = SCE_JSON_STRING; + while (context.More()) { + switch (context.state) { + case SCE_JSON_BLOCKCOMMENT: + if (context.Match("*/")) { + context.Forward(); + context.ForwardSetState(SCE_JSON_DEFAULT); + } + break; + case SCE_JSON_LINECOMMENT: + if (context.atLineEnd) { + context.SetState(SCE_JSON_DEFAULT); + } + break; + case SCE_JSON_STRINGEOL: + if (context.atLineStart) { + context.SetState(SCE_JSON_DEFAULT); + } + break; + case SCE_JSON_ESCAPESEQUENCE: + escapeSeq.digitsLeft--; + if (!escapeSeq.atEscapeEnd()) { + if (escapeSeq.isInvalidChar(context.ch)) { + context.SetState(SCE_JSON_ERROR); + } + break; + } + if (context.ch == '"') { + context.SetState(stringStyleBefore); + context.ForwardSetState(SCE_C_DEFAULT); + } else if (context.ch == '\\') { + if (!escapeSeq.newSequence(context.chNext)) { + context.SetState(SCE_JSON_ERROR); + } + context.Forward(); + } else { + context.SetState(stringStyleBefore); + if (context.atLineEnd) { + context.ChangeState(SCE_JSON_STRINGEOL); + } + } + break; + case SCE_JSON_PROPERTYNAME: + case SCE_JSON_STRING: + if (context.ch == '"') { + if (compactIRI.shouldHighlight()) { + context.ChangeState(SCE_JSON_COMPACTIRI); + context.ForwardSetState(SCE_JSON_DEFAULT); + compactIRI.resetState(); + } else { + context.ForwardSetState(SCE_JSON_DEFAULT); + } + } else if (context.atLineEnd) { + context.ChangeState(SCE_JSON_STRINGEOL); + } else if (context.ch == '\\') { + stringStyleBefore = context.state; + if (options.escapeSequence) { + context.SetState(SCE_JSON_ESCAPESEQUENCE); + if (!escapeSeq.newSequence(context.chNext)) { + context.SetState(SCE_JSON_ERROR); + } + } + context.Forward(); + } else if (context.Match("https://") || + context.Match("http://") || + context.Match("ssh://") || + context.Match("git://") || + context.Match("svn://") || + context.Match("ftp://") || + context.Match("mailto:")) { + // Handle most common URI schemes only + stringStyleBefore = context.state; + context.SetState(SCE_JSON_URI); + } else if (context.ch == '@') { + // https://www.w3.org/TR/json-ld/#dfn-keyword + if (IsNextWordInList(keywordsJSONLD, setKeywordJSONLD, context, styler)) { + stringStyleBefore = context.state; + context.SetState(SCE_JSON_LDKEYWORD); + } + } else { + compactIRI.checkChar(context.ch); + } + break; + case SCE_JSON_LDKEYWORD: + case SCE_JSON_URI: + if ((!setKeywordJSONLD.Contains(context.ch) && + (context.state == SCE_JSON_LDKEYWORD)) || + (!setURL.Contains(context.ch))) { + context.SetState(stringStyleBefore); + } + if (context.ch == '"') { + context.ForwardSetState(SCE_JSON_DEFAULT); + } else if (context.atLineEnd) { + context.ChangeState(SCE_JSON_STRINGEOL); + } + break; + case SCE_JSON_OPERATOR: + case SCE_JSON_NUMBER: + context.SetState(SCE_JSON_DEFAULT); + break; + case SCE_JSON_ERROR: + if (context.atLineEnd) { + context.SetState(SCE_JSON_DEFAULT); + } + break; + case SCE_JSON_KEYWORD: + if (!setKeywordJSON.Contains(context.ch)) { + context.SetState(SCE_JSON_DEFAULT); + } + break; + } + if (context.state == SCE_JSON_DEFAULT) { + if (context.ch == '"') { + compactIRI.resetState(); + context.SetState(SCE_JSON_STRING); + Sci_Position currPos = static_cast(context.currentPos); + if (AtPropertyName(styler, currPos)) { + context.SetState(SCE_JSON_PROPERTYNAME); + } + } else if (setOperators.Contains(context.ch)) { + context.SetState(SCE_JSON_OPERATOR); + } else if (options.allowComments && context.Match("/*")) { + context.SetState(SCE_JSON_BLOCKCOMMENT); + context.Forward(); + } else if (options.allowComments && context.Match("//")) { + context.SetState(SCE_JSON_LINECOMMENT); + } else if (setKeywordJSON.Contains(context.ch)) { + if (IsNextWordInList(keywordsJSON, setKeywordJSON, context, styler)) { + context.SetState(SCE_JSON_KEYWORD); + } + } + bool numberStart = + IsADigit(context.ch) && (context.chPrev == '+'|| + context.chPrev == '-' || + context.atLineStart || + IsASpace(context.chPrev) || + setOperators.Contains(context.chPrev)); + bool exponentPart = + tolower(context.ch) == 'e' && + IsADigit(context.chPrev) && + (IsADigit(context.chNext) || + context.chNext == '+' || + context.chNext == '-'); + bool signPart = + (context.ch == '-' || context.ch == '+') && + ((tolower(context.chPrev) == 'e' && IsADigit(context.chNext)) || + ((IsASpace(context.chPrev) || setOperators.Contains(context.chPrev)) + && IsADigit(context.chNext))); + bool adjacentDigit = + IsADigit(context.ch) && IsADigit(context.chPrev); + bool afterExponent = IsADigit(context.ch) && tolower(context.chPrev) == 'e'; + bool dotPart = context.ch == '.' && + IsADigit(context.chPrev) && + IsADigit(context.chNext); + bool afterDot = IsADigit(context.ch) && context.chPrev == '.'; + if (numberStart || + exponentPart || + signPart || + adjacentDigit || + dotPart || + afterExponent || + afterDot) { + context.SetState(SCE_JSON_NUMBER); + } else if (context.state == SCE_JSON_DEFAULT && !IsASpace(context.ch)) { + context.SetState(SCE_JSON_ERROR); + } + } + context.Forward(); + } + context.Complete(); +} + +void SCI_METHOD LexerJSON::Fold(Sci_PositionU startPos, + Sci_Position length, + int, + IDocument *pAccess) { + if (!options.fold) { + return; + } + LexAccessor styler(pAccess); + Sci_PositionU currLine = styler.GetLine(startPos); + Sci_PositionU endPos = startPos + length; + int currLevel = SC_FOLDLEVELBASE; + if (currLine > 0) + currLevel = styler.LevelAt(currLine - 1) >> 16; + int nextLevel = currLevel; + int visibleChars = 0; + for (Sci_PositionU i = startPos; i < endPos; i++) { + char curr = styler.SafeGetCharAt(i); + char next = styler.SafeGetCharAt(i+1); + bool atEOL = (curr == '\r' && next != '\n') || (curr == '\n'); + if (styler.StyleAt(i) == SCE_JSON_OPERATOR) { + if (curr == '{' || curr == '[') { + nextLevel++; + } else if (curr == '}' || curr == ']') { + nextLevel--; + } + } + if (atEOL || i == (endPos-1)) { + int level = currLevel | nextLevel << 16; + if (!visibleChars && options.foldCompact) { + level |= SC_FOLDLEVELWHITEFLAG; + } else if (nextLevel > currLevel) { + level |= SC_FOLDLEVELHEADERFLAG; + } + if (level != styler.LevelAt(currLine)) { + styler.SetLevel(currLine, level); + } + currLine++; + currLevel = nextLevel; + visibleChars = 0; + } + if (!isspacechar(curr)) { + visibleChars++; + } + } +} + +LexerModule lmJSON(SCLEX_JSON, + LexerJSON::LexerFactoryJSON, + "json", + JSONWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexKVIrc.cpp b/third_party/qscintilla/scintilla/lexers/LexKVIrc.cpp new file mode 100644 index 0000000..0cae2a2 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexKVIrc.cpp @@ -0,0 +1,471 @@ +// Scintilla source code edit control +/** @file LexKVIrc.cxx + ** Lexer for KVIrc script. + **/ +// Copyright 2013 by OmegaPhil , based in +// part from LexPython Copyright 1998-2002 by Neil Hodgson +// and LexCmake Copyright 2007 by Cristian Adam + +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + + +/* KVIrc Script syntactic rules: http://www.kvirc.net/doc/doc_syntactic_rules.html */ + +/* Utility functions */ +static inline bool IsAWordChar(int ch) { + + /* Keyword list includes modules, i.e. words including '.', and + * alias namespaces include ':' */ + return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.' + || ch == ':'); +} +static inline bool IsAWordStart(int ch) { + + /* Functions (start with '$') are treated separately to keywords */ + return (ch < 0x80) && (isalnum(ch) || ch == '_' ); +} + +/* Interface function called by Scintilla to request some text to be + syntax highlighted */ +static void ColouriseKVIrcDoc(Sci_PositionU startPos, Sci_Position length, + int initStyle, WordList *keywordlists[], + Accessor &styler) +{ + /* Fetching style context */ + StyleContext sc(startPos, length, initStyle, styler); + + /* Accessing keywords and function-marking keywords */ + WordList &keywords = *keywordlists[0]; + WordList &functionKeywords = *keywordlists[1]; + + /* Looping for all characters - only automatically moving forward + * when asked for (transitions leaving strings and keywords do this + * already) */ + bool next = true; + for( ; sc.More(); next ? sc.Forward() : (void)0 ) + { + /* Resetting next */ + next = true; + + /* Dealing with different states */ + switch (sc.state) + { + case SCE_KVIRC_DEFAULT: + + /* Detecting single-line comments + * Unfortunately KVIrc script allows raw '#' to be used, and appending # to an array returns + * its length... + * Going for a compromise where single line comments not + * starting on a newline are allowed in all cases except + * when they are preceeded with an opening bracket or comma + * (this will probably be the most common style a valid + * string-less channel name will be used with), with the + * array length case included + */ + if ( + (sc.ch == '#' && sc.atLineStart) || + (sc.ch == '#' && ( + sc.chPrev != '(' && sc.chPrev != ',' && + sc.chPrev != ']') + ) + ) + { + sc.SetState(SCE_KVIRC_COMMENT); + break; + } + + /* Detecting multi-line comments */ + if (sc.Match('/', '*')) + { + sc.SetState(SCE_KVIRC_COMMENTBLOCK); + break; + } + + /* Detecting strings */ + if (sc.ch == '"') + { + sc.SetState(SCE_KVIRC_STRING); + break; + } + + /* Detecting functions */ + if (sc.ch == '$') + { + sc.SetState(SCE_KVIRC_FUNCTION); + break; + } + + /* Detecting variables */ + if (sc.ch == '%') + { + sc.SetState(SCE_KVIRC_VARIABLE); + break; + } + + /* Detecting numbers - isdigit is unsafe as it does not + * validate, use CharacterSet.h functions */ + if (IsADigit(sc.ch)) + { + sc.SetState(SCE_KVIRC_NUMBER); + break; + } + + /* Detecting words */ + if (IsAWordStart(sc.ch) && IsAWordChar(sc.chNext)) + { + sc.SetState(SCE_KVIRC_WORD); + sc.Forward(); + break; + } + + /* Detecting operators */ + if (isoperator(sc.ch)) + { + sc.SetState(SCE_KVIRC_OPERATOR); + break; + } + + break; + + case SCE_KVIRC_COMMENT: + + /* Breaking out of single line comment when a newline + * is introduced */ + if (sc.ch == '\r' || sc.ch == '\n') + { + sc.SetState(SCE_KVIRC_DEFAULT); + break; + } + + break; + + case SCE_KVIRC_COMMENTBLOCK: + + /* Detecting end of multi-line comment */ + if (sc.Match('*', '/')) + { + // Moving the current position forward two characters + // so that '*/' is included in the comment + sc.Forward(2); + sc.SetState(SCE_KVIRC_DEFAULT); + + /* Comment has been exited and the current position + * moved forward, yet the new current character + * has yet to be defined - loop without moving + * forward again */ + next = false; + break; + } + + break; + + case SCE_KVIRC_STRING: + + /* Detecting end of string - closing speechmarks */ + if (sc.ch == '"') + { + /* Allowing escaped speechmarks to pass */ + if (sc.chPrev == '\\') + break; + + /* Moving the current position forward to capture the + * terminating speechmarks, and ending string */ + sc.ForwardSetState(SCE_KVIRC_DEFAULT); + + /* String has been exited and the current position + * moved forward, yet the new current character + * has yet to be defined - loop without moving + * forward again */ + next = false; + break; + } + + /* Functions and variables are now highlighted in strings + * Detecting functions */ + if (sc.ch == '$') + { + /* Allowing escaped functions to pass */ + if (sc.chPrev == '\\') + break; + + sc.SetState(SCE_KVIRC_STRING_FUNCTION); + break; + } + + /* Detecting variables */ + if (sc.ch == '%') + { + /* Allowing escaped variables to pass */ + if (sc.chPrev == '\\') + break; + + sc.SetState(SCE_KVIRC_STRING_VARIABLE); + break; + } + + /* Breaking out of a string when a newline is introduced */ + if (sc.ch == '\r' || sc.ch == '\n') + { + /* Allowing escaped newlines */ + if (sc.chPrev == '\\') + break; + + sc.SetState(SCE_KVIRC_DEFAULT); + break; + } + + break; + + case SCE_KVIRC_FUNCTION: + case SCE_KVIRC_VARIABLE: + + /* Detecting the end of a function/variable (word) */ + if (!IsAWordChar(sc.ch)) + { + sc.SetState(SCE_KVIRC_DEFAULT); + + /* Word has been exited yet the current character + * has yet to be defined - loop without moving + * forward again */ + next = false; + break; + } + + break; + + case SCE_KVIRC_STRING_FUNCTION: + case SCE_KVIRC_STRING_VARIABLE: + + /* A function or variable in a string + * Detecting the end of a function/variable (word) */ + if (!IsAWordChar(sc.ch)) + { + sc.SetState(SCE_KVIRC_STRING); + + /* Word has been exited yet the current character + * has yet to be defined - loop without moving + * forward again */ + next = false; + break; + } + + break; + + case SCE_KVIRC_NUMBER: + + /* Detecting the end of a number */ + if (!IsADigit(sc.ch)) + { + sc.SetState(SCE_KVIRC_DEFAULT); + + /* Number has been exited yet the current character + * has yet to be defined - loop without moving + * forward */ + next = false; + break; + } + + break; + + case SCE_KVIRC_OPERATOR: + + /* Because '%' is an operator but is also the marker for + * a variable, I need to always treat operators as single + * character strings and therefore redo their detection + * after every character */ + sc.SetState(SCE_KVIRC_DEFAULT); + + /* Operator has been exited yet the current character + * has yet to be defined - loop without moving + * forward */ + next = false; + break; + + case SCE_KVIRC_WORD: + + /* Detecting the end of a word */ + if (!IsAWordChar(sc.ch)) + { + /* Checking if the word was actually a keyword - + * fetching the current word, NULL-terminated like + * the keyword list */ + char s[100]; + Sci_Position wordLen = sc.currentPos - styler.GetStartSegment(); + if (wordLen > 99) + wordLen = 99; /* Include '\0' in buffer */ + Sci_Position i; + for( i = 0; i < wordLen; ++i ) + { + s[i] = styler.SafeGetCharAt( styler.GetStartSegment() + i ); + } + s[wordLen] = '\0'; + + /* Actually detecting keywords and fixing the state */ + if (keywords.InList(s)) + { + /* The SetState call actually commits the + * previous keyword state */ + sc.ChangeState(SCE_KVIRC_KEYWORD); + } + else if (functionKeywords.InList(s)) + { + // Detecting function keywords and fixing the state + sc.ChangeState(SCE_KVIRC_FUNCTION_KEYWORD); + } + + /* Transitioning to default and committing the previous + * word state */ + sc.SetState(SCE_KVIRC_DEFAULT); + + /* Word has been exited yet the current character + * has yet to be defined - loop without moving + * forward again */ + next = false; + break; + } + + break; + } + } + + /* Indicating processing is complete */ + sc.Complete(); +} + +static void FoldKVIrcDoc(Sci_PositionU startPos, Sci_Position length, int /*initStyle - unused*/, + WordList *[], Accessor &styler) +{ + /* Based on CMake's folder */ + + /* Exiting if folding isnt enabled */ + if ( styler.GetPropertyInt("fold") == 0 ) + return; + + /* Obtaining current line number*/ + Sci_Position currentLine = styler.GetLine(startPos); + + /* Obtaining starting character - indentation is done on a line basis, + * not character */ + Sci_PositionU safeStartPos = styler.LineStart( currentLine ); + + /* Initialising current level - this is defined as indentation level + * in the low 12 bits, with flag bits in the upper four bits. + * It looks like two indentation states are maintained in the returned + * 32bit value - 'nextLevel' in the most-significant bits, 'currentLevel' + * in the least-significant bits. Since the next level is the most + * up to date, this must refer to the current state of indentation. + * So the code bitshifts the old current level out of existence to + * get at the actual current state of indentation + * Based on the LexerCPP.cxx line 958 comment */ + int currentLevel = SC_FOLDLEVELBASE; + if (currentLine > 0) + currentLevel = styler.LevelAt(currentLine - 1) >> 16; + int nextLevel = currentLevel; + + // Looping for characters in range + for (Sci_PositionU i = safeStartPos; i < startPos + length; ++i) + { + /* Folding occurs after syntax highlighting, meaning Scintilla + * already knows where the comments are + * Fetching the current state */ + int state = styler.StyleAt(i) & 31; + + switch( styler.SafeGetCharAt(i) ) + { + case '{': + + /* Indenting only when the braces are not contained in + * a comment */ + if (state != SCE_KVIRC_COMMENT && + state != SCE_KVIRC_COMMENTBLOCK) + ++nextLevel; + break; + + case '}': + + /* Outdenting only when the braces are not contained in + * a comment */ + if (state != SCE_KVIRC_COMMENT && + state != SCE_KVIRC_COMMENTBLOCK) + --nextLevel; + break; + + case '\n': + case '\r': + + /* Preparing indentation information to return - combining + * current and next level data */ + int lev = currentLevel | nextLevel << 16; + + /* If the next level increases the indent level, mark the + * current line as a fold point - current level data is + * in the least significant bits */ + if (nextLevel > currentLevel ) + lev |= SC_FOLDLEVELHEADERFLAG; + + /* Updating indentation level if needed */ + if (lev != styler.LevelAt(currentLine)) + styler.SetLevel(currentLine, lev); + + /* Updating variables */ + ++currentLine; + currentLevel = nextLevel; + + /* Dealing with problematic Windows newlines - + * incrementing to avoid the extra newline breaking the + * fold point */ + if (styler.SafeGetCharAt(i) == '\r' && + styler.SafeGetCharAt(i + 1) == '\n') + ++i; + break; + } + } + + /* At this point the data has ended, so presumably the end of the line? + * Preparing indentation information to return - combining current + * and next level data */ + int lev = currentLevel | nextLevel << 16; + + /* If the next level increases the indent level, mark the current + * line as a fold point - current level data is in the least + * significant bits */ + if (nextLevel > currentLevel ) + lev |= SC_FOLDLEVELHEADERFLAG; + + /* Updating indentation level if needed */ + if (lev != styler.LevelAt(currentLine)) + styler.SetLevel(currentLine, lev); +} + +/* Registering wordlists */ +static const char *const kvircWordListDesc[] = { + "primary", + "function_keywords", + 0 +}; + + +/* Registering functions and wordlists */ +LexerModule lmKVIrc(SCLEX_KVIRC, ColouriseKVIrcDoc, "kvirc", FoldKVIrcDoc, + kvircWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexKix.cpp b/third_party/qscintilla/scintilla/lexers/LexKix.cpp new file mode 100644 index 0000000..bcd6813 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexKix.cpp @@ -0,0 +1,134 @@ +// Scintilla source code edit control +/** @file LexKix.cxx + ** Lexer for KIX-Scripts. + **/ +// Copyright 2004 by Manfred Becker +// The License.txt file describes the conditions under which this software may be distributed. +// Edited by Lee Wilmott (24-Jun-2014) added support for block comments + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +// Extended to accept accented characters +static inline bool IsAWordChar(int ch) { + return ch >= 0x80 || isalnum(ch) || ch == '_'; +} + +static inline bool IsOperator(const int ch) { + return (ch == '+' || ch == '-' || ch == '*' || ch == '/' || ch == '&' || ch == '|' || ch == '<' || ch == '>' || ch == '='); +} + +static void ColouriseKixDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; +// WordList &keywords4 = *keywordlists[3]; + + styler.StartAt(startPos); + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + if (sc.state == SCE_KIX_COMMENT) { + if (sc.atLineEnd) { + sc.SetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_COMMENTSTREAM) { + if (sc.ch == '/' && sc.chPrev == '*') { + sc.ForwardSetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_STRING1) { + // This is a doubles quotes string + if (sc.ch == '\"') { + sc.ForwardSetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_STRING2) { + // This is a single quote string + if (sc.ch == '\'') { + sc.ForwardSetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_NUMBER) { + if (!IsADigit(sc.ch)) { + sc.SetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_VAR) { + if (!IsAWordChar(sc.ch)) { + sc.SetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_MACRO) { + if (!IsAWordChar(sc.ch) && !IsADigit(sc.ch)) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + + if (!keywords3.InList(&s[1])) { + sc.ChangeState(SCE_KIX_DEFAULT); + } + sc.SetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_OPERATOR) { + if (!IsOperator(sc.ch)) { + sc.SetState(SCE_KIX_DEFAULT); + } + } else if (sc.state == SCE_KIX_IDENTIFIER) { + if (!IsAWordChar(sc.ch)) { + char s[100]; + sc.GetCurrentLowered(s, sizeof(s)); + + if (keywords.InList(s)) { + sc.ChangeState(SCE_KIX_KEYWORD); + } else if (keywords2.InList(s)) { + sc.ChangeState(SCE_KIX_FUNCTIONS); + } + sc.SetState(SCE_KIX_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_KIX_DEFAULT) { + if (sc.ch == ';') { + sc.SetState(SCE_KIX_COMMENT); + } else if (sc.ch == '/' && sc.chNext == '*') { + sc.SetState(SCE_KIX_COMMENTSTREAM); + } else if (sc.ch == '\"') { + sc.SetState(SCE_KIX_STRING1); + } else if (sc.ch == '\'') { + sc.SetState(SCE_KIX_STRING2); + } else if (sc.ch == '$') { + sc.SetState(SCE_KIX_VAR); + } else if (sc.ch == '@') { + sc.SetState(SCE_KIX_MACRO); + } else if (IsADigit(sc.ch) || ((sc.ch == '.' || sc.ch == '&') && IsADigit(sc.chNext))) { + sc.SetState(SCE_KIX_NUMBER); + } else if (IsOperator(sc.ch)) { + sc.SetState(SCE_KIX_OPERATOR); + } else if (IsAWordChar(sc.ch)) { + sc.SetState(SCE_KIX_IDENTIFIER); + } + } + } + sc.Complete(); +} + + +LexerModule lmKix(SCLEX_KIX, ColouriseKixDoc, "kix"); + diff --git a/third_party/qscintilla/scintilla/lexers/LexLPeg.cpp b/third_party/qscintilla/scintilla/lexers/LexLPeg.cpp new file mode 100644 index 0000000..dfba761 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexLPeg.cpp @@ -0,0 +1,799 @@ +/** + * Copyright 2006-2018 Mitchell mitchell.att.foicica.com. See License.txt. + * + * Lua-powered dynamic language lexer for Scintilla. + * + * For documentation on writing lexers, see *../doc/LPegLexer.html*. + */ + +#if LPEG_LEXER + +#include +#include +#include +#include +#include +#if CURSES +#include +#endif + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "PropSetSimple.h" +#include "LexAccessor.h" +#include "LexerModule.h" + +extern "C" { +#include "lua.h" +#include "lualib.h" +#include "lauxlib.h" +LUALIB_API int luaopen_lpeg(lua_State *L); +} + +#if _WIN32 +#define strcasecmp _stricmp +#endif +#define streq(s1, s2) (strcasecmp((s1), (s2)) == 0) + +using namespace Scintilla; + +#define l_setmetatable(l, k, mtf) \ + if (luaL_newmetatable(l, k)) { \ + lua_pushcfunction(l, mtf), lua_setfield(l, -2, "__index"); \ + lua_pushcfunction(l, mtf), lua_setfield(l, -2, "__newindex"); \ + } \ + lua_setmetatable(l, -2); +#define l_pushlexerp(l, mtf) do { \ + lua_newtable(l); \ + lua_pushvalue(l, 2), lua_setfield(l, -2, "property"); \ + l_setmetatable(l, "sci_lexerp", mtf); \ +} while(0) +#define l_getlexerobj(l) \ + lua_getfield(l, LUA_REGISTRYINDEX, "sci_lexers"); \ + lua_pushlightuserdata(l, reinterpret_cast(this)); \ + lua_gettable(l, -2), lua_replace(l, -2); +#define l_getlexerfield(l, k) \ + l_getlexerobj(l); \ + lua_getfield(l, -1, k), lua_replace(l, -2); +#if LUA_VERSION_NUM < 502 +#define l_openlib(f, s) \ + (lua_pushcfunction(L, f), lua_pushstring(L, s), lua_call(L, 1, 0)) +#define LUA_BASELIBNAME "" +#define lua_rawlen lua_objlen +#define LUA_OK 0 +#define lua_compare(l, a, b, _) lua_equal(l, a, b) +#define LUA_OPEQ 0 +#else +#define l_openlib(f, s) (luaL_requiref(L, s, f, 1), lua_pop(L, 1)) +#define LUA_BASELIBNAME "_G" +#endif +#define l_setfunction(l, f, k) (lua_pushcfunction(l, f), lua_setfield(l, -2, k)) +#define l_setconstant(l, c, k) (lua_pushinteger(l, c), lua_setfield(l, -2, k)) + +#if CURSES +#define A_COLORCHAR (A_COLOR | A_CHARTEXT) +#endif + +/** The LPeg Scintilla lexer. */ +class LexerLPeg : public ILexer { + /** + * The lexer's Lua state. + * It is cleared each time the lexer language changes unless `own_lua` is + * `true`. + */ + lua_State *L; + /** + * The flag indicating whether or not an existing Lua state was supplied as + * the lexer's Lua state. + */ + bool own_lua; + /** + * The set of properties for the lexer. + * The `lexer.name`, `lexer.lpeg.home`, and `lexer.lpeg.color.theme` + * properties must be defined before running the lexer. + */ + PropSetSimple props; + /** The function to send Scintilla messages with. */ + SciFnDirect SS; + /** The Scintilla object the lexer belongs to. */ + sptr_t sci; + /** + * The flag indicating whether or not the lexer needs to be re-initialized. + * Re-initialization is required after the lexer language changes. + */ + bool reinit; + /** + * The flag indicating whether or not the lexer language has embedded lexers. + */ + bool multilang; + /** + * The list of style numbers considered to be whitespace styles. + * This is used in multi-language lexers when backtracking to whitespace to + * determine which lexer grammar to use. + */ + bool ws[STYLE_MAX + 1]; + + /** + * Logs the given error message or a Lua error message, prints it, and clears + * the stack. + * Error messages are logged to the "lexer.lpeg.error" property. + * @param str The error message to log and print. If `NULL`, logs and prints + * the Lua error message at the top of the stack. + */ + static void l_error(lua_State *L, const char *str=NULL) { + lua_getfield(L, LUA_REGISTRYINDEX, "sci_props"); + PropSetSimple *props = static_cast(lua_touserdata(L, -1)); + lua_pop(L, 1); // props + const char *key = "lexer.lpeg.error"; + const char *value = str ? str : lua_tostring(L, -1); + props->Set(key, value, strlen(key), strlen(value)); + fprintf(stderr, "Lua Error: %s.\n", str ? str : lua_tostring(L, -1)); + lua_settop(L, 0); + } + + /** The lexer's `line_from_position` Lua function. */ + static int l_line_from_position(lua_State *L) { + lua_getfield(L, LUA_REGISTRYINDEX, "sci_buffer"); + IDocument *buffer = static_cast(lua_touserdata(L, -1)); + lua_pushinteger(L, buffer->LineFromPosition(luaL_checkinteger(L, 1) - 1)); + return 1; + } + + /** The lexer's `__index` Lua metatable. */ + static int llexer_property(lua_State *L) { + int newindex = (lua_gettop(L) == 3); + luaL_getmetatable(L, "sci_lexer"); + lua_getmetatable(L, 1); // metatable can be either sci_lexer or sci_lexerp + int is_lexer = lua_compare(L, -1, -2, LUA_OPEQ); + lua_pop(L, 2); // metatable, metatable + + lua_getfield(L, LUA_REGISTRYINDEX, "sci_buffer"); + IDocument *buffer = static_cast(lua_touserdata(L, -1)); + lua_getfield(L, LUA_REGISTRYINDEX, "sci_props"); + PropSetSimple *props = static_cast(lua_touserdata(L, -1)); + lua_pop(L, 2); // sci_props and sci_buffer + + if (is_lexer) + lua_pushvalue(L, 2); // key is given + else + lua_getfield(L, 1, "property"); // indexible property + const char *key = lua_tostring(L, -1); + if (strcmp(key, "fold_level") == 0) { + luaL_argcheck(L, !newindex, 3, "read-only property"); + if (is_lexer) + l_pushlexerp(L, llexer_property); + else + lua_pushinteger(L, buffer->GetLevel(luaL_checkinteger(L, 2))); + } else if (strcmp(key, "indent_amount") == 0) { + luaL_argcheck(L, !newindex, 3, "read-only property"); + if (is_lexer) + l_pushlexerp(L, llexer_property); + else + lua_pushinteger(L, buffer->GetLineIndentation(luaL_checkinteger(L, 2))); + } else if (strcmp(key, "property") == 0) { + luaL_argcheck(L, !is_lexer || !newindex, 3, "read-only property"); + if (is_lexer) + l_pushlexerp(L, llexer_property); + else if (!newindex) + lua_pushstring(L, props->Get(luaL_checkstring(L, 2))); + else + props->Set(luaL_checkstring(L, 2), luaL_checkstring(L, 3), + lua_rawlen(L, 2), lua_rawlen(L, 3)); + } else if (strcmp(key, "property_int") == 0) { + luaL_argcheck(L, !newindex, 3, "read-only property"); + if (is_lexer) + l_pushlexerp(L, llexer_property); + else { + lua_pushstring(L, props->Get(luaL_checkstring(L, 2))); + lua_pushinteger(L, lua_tointeger(L, -1)); + } + } else if (strcmp(key, "style_at") == 0) { + luaL_argcheck(L, !newindex, 3, "read-only property"); + if (is_lexer) + l_pushlexerp(L, llexer_property); + else { + int style = buffer->StyleAt(luaL_checkinteger(L, 2) - 1); + lua_getfield(L, LUA_REGISTRYINDEX, "sci_lexer_obj"); + lua_getfield(L, -1, "_TOKENSTYLES"), lua_replace(L, -2); + lua_pushnil(L); + while (lua_next(L, -2)) { + if (luaL_checkinteger(L, -1) == style) break; + lua_pop(L, 1); // value + } + lua_pop(L, 1); // style_num + } + } else if (strcmp(key, "line_state") == 0) { + luaL_argcheck(L, !is_lexer || !newindex, 3, "read-only property"); + if (is_lexer) + l_pushlexerp(L, llexer_property); + else if (!newindex) + lua_pushinteger(L, buffer->GetLineState(luaL_checkinteger(L, 2))); + else + buffer->SetLineState(luaL_checkinteger(L, 2), + luaL_checkinteger(L, 3)); + } else return !newindex ? (lua_rawget(L, 1), 1) : (lua_rawset(L, 1), 0); + return 1; + } + + /** + * Expands value of the string property key at index *index* and pushes the + * result onto the stack. + * @param L The Lua State. + * @param index The index the string property key. + */ + void lL_getexpanded(lua_State *L, int index) { + lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED"), lua_getfield(L, -1, "lexer"); + lua_getfield(L, -1, "property_expanded"); + lua_pushvalue(L, (index > 0) ? index : index - 3), lua_gettable(L, -2); + lua_replace(L, -4), lua_pop(L, 2); // property_expanded and lexer module + } + + /** + * Parses the given style string to set the properties for the given style + * number. + * @param num The style number to set properties for. + * @param style The style string containing properties to set. + */ + void SetStyle(int num, const char *style) { + char *style_copy = static_cast(malloc(strlen(style) + 1)); + char *option = strcpy(style_copy, style), *next = NULL, *p = NULL; + while (option) { + if ((next = strchr(option, ','))) *next++ = '\0'; + if ((p = strchr(option, ':'))) *p++ = '\0'; + if (streq(option, "font") && p) + SS(sci, SCI_STYLESETFONT, num, reinterpret_cast(p)); + else if (streq(option, "size") && p) + SS(sci, SCI_STYLESETSIZE, num, static_cast(atoi(p))); + else if (streq(option, "bold") || streq(option, "notbold") || + streq(option, "weight")) { +#if !CURSES + int weight = SC_WEIGHT_NORMAL; + if (*option == 'b') + weight = SC_WEIGHT_BOLD; + else if (*option == 'w' && p) + weight = atoi(p); + SS(sci, SCI_STYLESETWEIGHT, num, weight); +#else + // Scintilla curses requires font attributes to be stored in the "font + // weight" style attribute. + // First, clear any existing SC_WEIGHT_NORMAL, SC_WEIGHT_SEMIBOLD, or + // SC_WEIGHT_BOLD values stored in the lower 16 bits. Then set the + // appropriate curses attr. + sptr_t weight = SS(sci, SCI_STYLEGETWEIGHT, num, 0) & ~A_COLORCHAR; + int bold = *option == 'b' || + (*option == 'w' && p && atoi(p) > SC_WEIGHT_NORMAL); + SS(sci, SCI_STYLESETWEIGHT, num, + bold ? weight | A_BOLD : weight & ~A_BOLD); +#endif + } else if (streq(option, "italics") || streq(option, "notitalics")) + SS(sci, SCI_STYLESETITALIC, num, *option == 'i'); + else if (streq(option, "underlined") || streq(option, "notunderlined")) { +#if !CURSES + SS(sci, SCI_STYLESETUNDERLINE, num, *option == 'u'); +#else + // Scintilla curses requires font attributes to be stored in the "font + // weight" style attribute. + // First, clear any existing SC_WEIGHT_NORMAL, SC_WEIGHT_SEMIBOLD, or + // SC_WEIGHT_BOLD values stored in the lower 16 bits. Then set the + // appropriate curses attr. + sptr_t weight = SS(sci, SCI_STYLEGETWEIGHT, num, 0) & ~A_COLORCHAR; + SS(sci, SCI_STYLESETWEIGHT, num, + (*option == 'u') ? weight | A_UNDERLINE : weight & ~A_UNDERLINE); +#endif + } else if ((streq(option, "fore") || streq(option, "back")) && p) { + int msg = (*option == 'f') ? SCI_STYLESETFORE : SCI_STYLESETBACK; + int color = static_cast(strtol(p, NULL, 0)); + if (*p == '#') { // #RRGGBB format; Scintilla format is 0xBBGGRR + color = static_cast(strtol(p + 1, NULL, 16)); + color = ((color & 0xFF0000) >> 16) | (color & 0xFF00) | + ((color & 0xFF) << 16); // convert to 0xBBGGRR + } + SS(sci, msg, num, color); + } else if (streq(option, "eolfilled") || streq(option, "noteolfilled")) + SS(sci, SCI_STYLESETEOLFILLED, num, *option == 'e'); + else if (streq(option, "characterset") && p) + SS(sci, SCI_STYLESETCHARACTERSET, num, static_cast(atoi(p))); + else if (streq(option, "case") && p) { + if (*p == 'u') + SS(sci, SCI_STYLESETCASE, num, SC_CASE_UPPER); + else if (*p == 'l') + SS(sci, SCI_STYLESETCASE, num, SC_CASE_LOWER); + } else if (streq(option, "visible") || streq(option, "notvisible")) + SS(sci, SCI_STYLESETVISIBLE, num, *option == 'v'); + else if (streq(option, "changeable") || streq(option, "notchangeable")) + SS(sci, SCI_STYLESETCHANGEABLE, num, *option == 'c'); + else if (streq(option, "hotspot") || streq(option, "nothotspot")) + SS(sci, SCI_STYLESETHOTSPOT, num, *option == 'h'); + option = next; + } + free(style_copy); + } + + /** + * Iterates through the lexer's `_TOKENSTYLES`, setting the style properties + * for all defined styles. + */ + bool SetStyles() { + // If the lexer defines additional styles, set their properties first (if + // the user has not already defined them). + l_getlexerfield(L, "_EXTRASTYLES"); + lua_pushnil(L); + while (lua_next(L, -2)) { + if (lua_isstring(L, -2) && lua_isstring(L, -1)) { + lua_pushstring(L, "style."), lua_pushvalue(L, -3), lua_concat(L, 2); + if (!*props.Get(lua_tostring(L, -1))) + props.Set(lua_tostring(L, -1), lua_tostring(L, -2), lua_rawlen(L, -1), + lua_rawlen(L, -2)); + lua_pop(L, 1); // style name + } + lua_pop(L, 1); // value + } + lua_pop(L, 1); // _EXTRASTYLES + + l_getlexerfield(L, "_TOKENSTYLES"); + if (!SS || !sci) { + lua_pop(L, 1); // _TOKENSTYLES + // Skip, but do not report an error since `reinit` would remain `false` + // and subsequent calls to `Lex()` and `Fold()` would repeatedly call this + // function and error. + return true; + } + lua_pushstring(L, "style.default"), lL_getexpanded(L, -1); + SetStyle(STYLE_DEFAULT, lua_tostring(L, -1)); + lua_pop(L, 2); // style and "style.default" + SS(sci, SCI_STYLECLEARALL, 0, 0); // set default styles + lua_pushnil(L); + while (lua_next(L, -2)) { + if (lua_isstring(L, -2) && lua_isnumber(L, -1) && + lua_tointeger(L, -1) != STYLE_DEFAULT) { + lua_pushstring(L, "style."), lua_pushvalue(L, -3), lua_concat(L, 2); + lL_getexpanded(L, -1), lua_replace(L, -2); + SetStyle(lua_tointeger(L, -2), lua_tostring(L, -1)); + lua_pop(L, 1); // style + } + lua_pop(L, 1); // value + } + lua_pop(L, 1); // _TOKENSTYLES + return true; + } + + /** + * Returns the style name for the given style number. + * @param style The style number to get the style name for. + * @return style name or NULL + */ + const char *GetStyleName(int style) { + if (!L) return NULL; + const char *name = NULL; + l_getlexerfield(L, "_TOKENSTYLES"); + lua_pushnil(L); + while (lua_next(L, -2)) + if (lua_tointeger(L, -1) == style) { + name = lua_tostring(L, -2); + lua_pop(L, 2); // value and key + break; + } else lua_pop(L, 1); // value + lua_pop(L, 1); // _TOKENSTYLES + return name; + } + + /** + * Initializes the lexer once the `lexer.lpeg.home` and `lexer.name` + * properties are set. + */ + bool Init() { + char home[FILENAME_MAX], lexer[50], theme[FILENAME_MAX]; + props.GetExpanded("lexer.lpeg.home", home); + props.GetExpanded("lexer.name", lexer); + props.GetExpanded("lexer.lpeg.color.theme", theme); + if (!*home || !*lexer || !L) return false; + + lua_pushlightuserdata(L, reinterpret_cast(&props)); + lua_setfield(L, LUA_REGISTRYINDEX, "sci_props"); + + // If necessary, load the lexer module and theme. + lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED"), lua_getfield(L, -1, "lexer"); + if (lua_isnil(L, -1)) { + lua_pop(L, 2); // nil and _LOADED + + // Modify `package.path` to find lexers. + lua_getglobal(L, "package"), lua_getfield(L, -1, "path"); + int orig_path = luaL_ref(L, LUA_REGISTRYINDEX); // restore later + lua_pushstring(L, home), lua_pushstring(L, "/?.lua"), lua_concat(L, 2); + lua_setfield(L, -2, "path"), lua_pop(L, 1); // package + + // Load the lexer module. + lua_getglobal(L, "require"); + lua_pushstring(L, "lexer"); + if (lua_pcall(L, 1, 1, 0) != LUA_OK) return (l_error(L), false); + l_setfunction(L, l_line_from_position, "line_from_position"); + l_setconstant(L, SC_FOLDLEVELBASE, "FOLD_BASE"); + l_setconstant(L, SC_FOLDLEVELWHITEFLAG, "FOLD_BLANK"); + l_setconstant(L, SC_FOLDLEVELHEADERFLAG, "FOLD_HEADER"); + l_setmetatable(L, "sci_lexer", llexer_property); + if (*theme) { + // Load the theme. + if (!(strstr(theme, "/") || strstr(theme, "\\"))) { // theme name + lua_pushstring(L, home); + lua_pushstring(L, "/themes/"); + lua_pushstring(L, theme); + lua_pushstring(L, ".lua"); + lua_concat(L, 4); + } else lua_pushstring(L, theme); // path to theme + if (luaL_loadfile(L, lua_tostring(L, -1)) != LUA_OK || + lua_pcall(L, 0, 0, 0) != LUA_OK) return (l_error(L), false); + lua_pop(L, 1); // theme + } + + // Restore `package.path`. + lua_getglobal(L, "package"); + lua_getfield(L, -1, "path"), lua_setfield(L, -3, "path"); // lexer.path = + lua_rawgeti(L, LUA_REGISTRYINDEX, orig_path), lua_setfield(L, -2, "path"); + luaL_unref(L, LUA_REGISTRYINDEX, orig_path), lua_pop(L, 1); // package + } else lua_remove(L, -2); // _LOADED + + // Load the language lexer. + lua_getfield(L, -1, "load"); + if (lua_isfunction(L, -1)) { + lua_pushstring(L, lexer), lua_pushnil(L), lua_pushboolean(L, 1); + if (lua_pcall(L, 3, 1, 0) != LUA_OK) return (l_error(L), false); + } else return (l_error(L, "'lexer.load' function not found"), false); + lua_getfield(L, LUA_REGISTRYINDEX, "sci_lexers"); + lua_pushlightuserdata(L, reinterpret_cast(this)); + lua_pushvalue(L, -3), lua_settable(L, -3), lua_pop(L, 1); // sci_lexers + lua_pushvalue(L, -1), lua_setfield(L, LUA_REGISTRYINDEX, "sci_lexer_obj"); + lua_remove(L, -2); // lexer module + if (!SetStyles()) return false; + + // If the lexer is a parent, it will have children in its _CHILDREN table. + lua_getfield(L, -1, "_CHILDREN"); + if (lua_istable(L, -1)) { + multilang = true; + // Determine which styles are language whitespace styles + // ([lang]_whitespace). This is necessary for determining which language + // to start lexing with. + char style_name[50]; + for (int i = 0; i <= STYLE_MAX; i++) { + PrivateCall(i, reinterpret_cast(style_name)); + ws[i] = strstr(style_name, "whitespace") ? true : false; + } + } + lua_pop(L, 2); // _CHILDREN and lexer object + + reinit = false; + props.Set("lexer.lpeg.error", "", strlen("lexer.lpeg.error"), 0); + return true; + } + + /** + * When *lparam* is `0`, returns the size of the buffer needed to store the + * given string *str* in; otherwise copies *str* into the buffer *lparam* and + * returns the number of bytes copied. + * @param lparam `0` to get the number of bytes needed to store *str* or a + * pointer to a buffer large enough to copy *str* into. + * @param str The string to copy. + * @return number of bytes needed to hold *str* + */ + void *StringResult(long lparam, const char *str) { + if (lparam) strcpy(reinterpret_cast(lparam), str); + return reinterpret_cast(strlen(str)); + } + +public: + /** Constructor. */ + LexerLPeg() : own_lua(true), reinit(true), multilang(false) { + // Initialize the Lua state, load libraries, and set platform variables. + if ((L = luaL_newstate())) { + l_openlib(luaopen_base, LUA_BASELIBNAME); + l_openlib(luaopen_table, LUA_TABLIBNAME); + l_openlib(luaopen_string, LUA_STRLIBNAME); +#if LUA_VERSION_NUM < 502 + l_openlib(luaopen_io, LUA_IOLIBNAME); // for `package.searchpath()` +#endif + l_openlib(luaopen_package, LUA_LOADLIBNAME); + l_openlib(luaopen_lpeg, "lpeg"); +#if _WIN32 + lua_pushboolean(L, 1), lua_setglobal(L, "WIN32"); +#endif +#if __APPLE__ + lua_pushboolean(L, 1), lua_setglobal(L, "OSX"); +#endif +#if GTK + lua_pushboolean(L, 1), lua_setglobal(L, "GTK"); +#endif +#if CURSES + lua_pushboolean(L, 1), lua_setglobal(L, "CURSES"); +#endif + lua_newtable(L), lua_setfield(L, LUA_REGISTRYINDEX, "sci_lexers"); + } else fprintf(stderr, "Lua failed to initialize.\n"); + SS = NULL, sci = 0; + } + + /** Destructor. */ + virtual ~LexerLPeg() {} + + /** Destroys the lexer object. */ + virtual void SCI_METHOD Release() { + if (own_lua && L) + lua_close(L); + else if (!own_lua) { + lua_getfield(L, LUA_REGISTRYINDEX, "sci_lexers"); + lua_pushlightuserdata(L, reinterpret_cast(this)); + lua_pushnil(L), lua_settable(L, -3), lua_pop(L, 1); // sci_lexers + } + L = NULL; + delete this; + } + + /** + * Lexes the Scintilla document. + * @param startPos The position in the document to start lexing at. + * @param lengthDoc The number of bytes in the document to lex. + * @param initStyle The initial style at position *startPos* in the document. + * @param buffer The document interface. + */ + virtual void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position lengthDoc, + int initStyle, IDocument *buffer) { + LexAccessor styler(buffer); + if ((reinit && !Init()) || !L) { + // Style everything in the default style. + styler.StartAt(startPos); + styler.StartSegment(startPos); + styler.ColourTo(startPos + lengthDoc - 1, STYLE_DEFAULT); + styler.Flush(); + return; + } + lua_pushlightuserdata(L, reinterpret_cast(&props)); + lua_setfield(L, LUA_REGISTRYINDEX, "sci_props"); + lua_pushlightuserdata(L, reinterpret_cast(buffer)); + lua_setfield(L, LUA_REGISTRYINDEX, "sci_buffer"); + + // Ensure the lexer has a grammar. + // This could be done in the lexer module's `lex()`, but for large files, + // passing string arguments from C to Lua is expensive. + l_getlexerfield(L, "_GRAMMAR"); + int has_grammar = !lua_isnil(L, -1); + lua_pop(L, 1); // _GRAMMAR + if (!has_grammar) { + // Style everything in the default style. + styler.StartAt(startPos); + styler.StartSegment(startPos); + styler.ColourTo(startPos + lengthDoc - 1, STYLE_DEFAULT); + styler.Flush(); + return; + } + + // Start from the beginning of the current style so LPeg matches it. + // For multilang lexers, start at whitespace since embedded languages have + // [lang]_whitespace styles. This is so LPeg can start matching child + // languages instead of parent ones if necessary. + if (startPos > 0) { + Sci_PositionU i = startPos; + while (i > 0 && styler.StyleAt(i - 1) == initStyle) i--; + if (multilang) + while (i > 0 && !ws[static_cast(styler.StyleAt(i))]) i--; + lengthDoc += startPos - i, startPos = i; + } + + Sci_PositionU startSeg = startPos, endSeg = startPos + lengthDoc; + int style = 0; + l_getlexerfield(L, "lex") + if (lua_isfunction(L, -1)) { + l_getlexerobj(L); + lua_pushlstring(L, buffer->BufferPointer() + startPos, lengthDoc); + lua_pushinteger(L, styler.StyleAt(startPos)); + if (lua_pcall(L, 3, 1, 0) != LUA_OK) l_error(L); + // Style the text from the token table returned. + if (lua_istable(L, -1)) { + int len = lua_rawlen(L, -1); + if (len > 0) { + styler.StartAt(startPos); + styler.StartSegment(startPos); + l_getlexerfield(L, "_TOKENSTYLES"); + // Loop through token-position pairs. + for (int i = 1; i < len; i += 2) { + style = STYLE_DEFAULT; + lua_rawgeti(L, -2, i), lua_rawget(L, -2); // _TOKENSTYLES[token] + if (!lua_isnil(L, -1)) style = lua_tointeger(L, -1); + lua_pop(L, 1); // _TOKENSTYLES[token] + lua_rawgeti(L, -2, i + 1); // pos + unsigned int position = lua_tointeger(L, -1) - 1; + lua_pop(L, 1); // pos + if (style >= 0 && style <= STYLE_MAX) + styler.ColourTo(startSeg + position - 1, style); + else + l_error(L, "Bad style number"); + if (position > endSeg) break; + } + lua_pop(L, 2); // _TOKENSTYLES and token table returned + styler.ColourTo(endSeg - 1, style); + styler.Flush(); + } + } else l_error(L, "Table of tokens expected from 'lexer.lex'"); + } else l_error(L, "'lexer.lex' function not found"); + } + + /** + * Folds the Scintilla document. + * @param startPos The position in the document to start folding at. + * @param lengthDoc The number of bytes in the document to fold. + * @param initStyle The initial style at position *startPos* in the document. + * @param buffer The document interface. + */ + virtual void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position lengthDoc, + int, IDocument *buffer) { + if ((reinit && !Init()) || !L) return; + lua_pushlightuserdata(L, reinterpret_cast(&props)); + lua_setfield(L, LUA_REGISTRYINDEX, "sci_props"); + lua_pushlightuserdata(L, reinterpret_cast(buffer)); + lua_setfield(L, LUA_REGISTRYINDEX, "sci_buffer"); + LexAccessor styler(buffer); + + l_getlexerfield(L, "fold"); + if (lua_isfunction(L, -1)) { + l_getlexerobj(L); + Sci_Position currentLine = styler.GetLine(startPos); + lua_pushlstring(L, buffer->BufferPointer() + startPos, lengthDoc); + lua_pushinteger(L, startPos); + lua_pushinteger(L, currentLine); + lua_pushinteger(L, styler.LevelAt(currentLine) & SC_FOLDLEVELNUMBERMASK); + if (lua_pcall(L, 5, 1, 0) != LUA_OK) l_error(L); + // Fold the text from the fold table returned. + if (lua_istable(L, -1)) { + lua_pushnil(L); + while (lua_next(L, -2)) { // line = level + styler.SetLevel(lua_tointeger(L, -2), lua_tointeger(L, -1)); + lua_pop(L, 1); // level + } + lua_pop(L, 1); // fold table returned + } else l_error(L, "Table of folds expected from 'lexer.fold'"); + } else l_error(L, "'lexer.fold' function not found"); + } + + /** This lexer implements the original lexer interface. */ + virtual int SCI_METHOD Version() const { return lvOriginal; } + /** Returning property names is not implemented. */ + virtual const char * SCI_METHOD PropertyNames() { return ""; } + /** Returning property types is not implemented. */ + virtual int SCI_METHOD PropertyType(const char *) { return 0; } + /** Returning property descriptions is not implemented. */ + virtual const char * SCI_METHOD DescribeProperty(const char *) { + return ""; + } + + /** + * Sets the *key* lexer property to *value*. + * If *key* starts with "style.", also set the style for the token. + * @param key The string keyword. + * @param val The string value. + */ + virtual Sci_Position SCI_METHOD PropertySet(const char *key, + const char *value) { + props.Set(key, value, strlen(key), strlen(value)); + if (reinit) + Init(); + else if (L && SS && sci && strncmp(key, "style.", 6) == 0) { + lua_pushlightuserdata(L, reinterpret_cast(&props)); + lua_setfield(L, LUA_REGISTRYINDEX, "sci_props"); + l_getlexerfield(L, "_TOKENSTYLES"); + lua_pushstring(L, key + 6), lua_rawget(L, -2); + lua_pushstring(L, key), lL_getexpanded(L, -1), lua_replace(L, -2); + if (lua_isnumber(L, -2)) { + int style_num = lua_tointeger(L, -2); + SetStyle(style_num, lua_tostring(L, -1)); + if (style_num == STYLE_DEFAULT) + // Assume a theme change, with the default style being set first. + // Subsequent style settings will be based on the default. + SS(sci, SCI_STYLECLEARALL, 0, 0); + } + lua_pop(L, 3); // style, style number, _TOKENSTYLES + } + return -1; // no need to re-lex + } + + /** Returning keyword list descriptions is not implemented. */ + virtual const char * SCI_METHOD DescribeWordListSets() { return ""; } + /** Setting keyword lists is not applicable. */ + virtual Sci_Position SCI_METHOD WordListSet(int, const char *) { + return -1; + } + + /** + * Allows for direct communication between the application and the lexer. + * The application uses this to set `SS`, `sci`, `L`, and lexer properties, + * and to retrieve style names. + * @param code The communication code. + * @param arg The argument. + * @return void *data + */ + virtual void * SCI_METHOD PrivateCall(int code, void *arg) { + sptr_t lParam = reinterpret_cast(arg); + const char *val = NULL; + switch(code) { + case SCI_GETDIRECTFUNCTION: + SS = reinterpret_cast(lParam); + return NULL; + case SCI_SETDOCPOINTER: + sci = lParam; + return NULL; + case SCI_CHANGELEXERSTATE: + if (own_lua) lua_close(L); + L = reinterpret_cast(lParam); + lua_getfield(L, LUA_REGISTRYINDEX, "sci_lexers"); + if (lua_isnil(L, -1)) + lua_newtable(L), lua_setfield(L, LUA_REGISTRYINDEX, "sci_lexers"); + lua_pop(L, 1); // sci_lexers or nil + own_lua = false; + return NULL; + case SCI_SETLEXERLANGUAGE: + char lexer_name[50]; + props.GetExpanded("lexer.name", lexer_name); + if (strcmp(lexer_name, reinterpret_cast(arg)) != 0) { + reinit = true; + props.Set("lexer.lpeg.error", "", strlen("lexer.lpeg.error"), 0); + PropertySet("lexer.name", reinterpret_cast(arg)); + } else if (L) + own_lua ? SetStyles() : Init(); + return NULL; + case SCI_GETLEXERLANGUAGE: + if (L) { + l_getlexerfield(L, "_NAME"); + if (SS && sci && multilang) { + int pos = SS(sci, SCI_GETCURRENTPOS, 0, 0); + while (pos >= 0 && !ws[SS(sci, SCI_GETSTYLEAT, pos, 0)]) pos--; + const char *name = NULL, *p = NULL; + if (pos >= 0) { + name = GetStyleName(SS(sci, SCI_GETSTYLEAT, pos, 0)); + if (name) p = strstr(name, "_whitespace"); + } + if (!name) name = lua_tostring(L, -1); // "lexer:lexer" fallback + if (!p) p = name + strlen(name); // "lexer:lexer" fallback + lua_pushstring(L, "/"); + lua_pushlstring(L, name, p - name); + lua_concat(L, 3); + } + val = lua_tostring(L, -1); + lua_pop(L, 1); // lexer_name or lexer language string + } + return StringResult(lParam, val ? val : "null"); + case SCI_GETSTATUS: + return StringResult(lParam, props.Get("lexer.lpeg.error")); + default: // style-related + if (code >= 0 && code <= STYLE_MAX) { // retrieve style names + val = GetStyleName(code); + return StringResult(lParam, val ? val : "Not Available"); + } else return NULL; + } + } + + /** Constructs a new instance of the lexer. */ + static ILexer *LexerFactoryLPeg() { return new LexerLPeg(); } +}; + +LexerModule lmLPeg(SCLEX_LPEG, LexerLPeg::LexerFactoryLPeg, "lpeg"); + +#else + +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static void LPegLex(Sci_PositionU, Sci_Position, int, WordList*[], Accessor&) { + return; +} + +LexerModule lmLPeg(SCLEX_LPEG, LPegLex, "lpeg"); + +#endif // LPEG_LEXER diff --git a/third_party/qscintilla/scintilla/lexers/LexLaTeX.cpp b/third_party/qscintilla/scintilla/lexers/LexLaTeX.cpp new file mode 100644 index 0000000..ed9e6a6 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexLaTeX.cpp @@ -0,0 +1,538 @@ +// Scintilla source code edit control +/** @file LexLaTeX.cxx + ** Lexer for LaTeX2e. + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +// Modified by G. HU in 2013. Added folding, syntax highting inside math environments, and changed some minor behaviors. + +#include +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +#include "LexerBase.h" + +using namespace Scintilla; + +using namespace std; + +struct latexFoldSave { + latexFoldSave() : structLev(0) { + for (int i = 0; i < 8; ++i) openBegins[i] = 0; + } + latexFoldSave(const latexFoldSave &save) : structLev(save.structLev) { + for (int i = 0; i < 8; ++i) openBegins[i] = save.openBegins[i]; + } + int openBegins[8]; + Sci_Position structLev; +}; + +class LexerLaTeX : public LexerBase { +private: + vector modes; + void setMode(Sci_Position line, int mode) { + if (line >= static_cast(modes.size())) modes.resize(line + 1, 0); + modes[line] = mode; + } + int getMode(Sci_Position line) { + if (line >= 0 && line < static_cast(modes.size())) return modes[line]; + return 0; + } + void truncModes(Sci_Position numLines) { + if (static_cast(modes.size()) > numLines * 2 + 256) + modes.resize(numLines + 128); + } + + vector saves; + void setSave(Sci_Position line, const latexFoldSave &save) { + if (line >= static_cast(saves.size())) saves.resize(line + 1); + saves[line] = save; + } + void getSave(Sci_Position line, latexFoldSave &save) { + if (line >= 0 && line < static_cast(saves.size())) save = saves[line]; + else { + save.structLev = 0; + for (int i = 0; i < 8; ++i) save.openBegins[i] = 0; + } + } + void truncSaves(Sci_Position numLines) { + if (static_cast(saves.size()) > numLines * 2 + 256) + saves.resize(numLines + 128); + } +public: + static ILexer *LexerFactoryLaTeX() { + return new LexerLaTeX(); + } + void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; + void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override; +}; + +static bool latexIsSpecial(int ch) { + return (ch == '#') || (ch == '$') || (ch == '%') || (ch == '&') || (ch == '_') || + (ch == '{') || (ch == '}') || (ch == ' '); +} + +static bool latexIsBlank(int ch) { + return (ch == ' ') || (ch == '\t'); +} + +static bool latexIsBlankAndNL(int ch) { + return (ch == ' ') || (ch == '\t') || (ch == '\r') || (ch == '\n'); +} + +static bool latexIsLetter(int ch) { + return IsASCII(ch) && isalpha(ch); +} + +static bool latexIsTagValid(Sci_Position &i, Sci_Position l, Accessor &styler) { + while (i < l) { + if (styler.SafeGetCharAt(i) == '{') { + while (i < l) { + i++; + if (styler.SafeGetCharAt(i) == '}') { + return true; + } else if (!latexIsLetter(styler.SafeGetCharAt(i)) && + styler.SafeGetCharAt(i)!='*') { + return false; + } + } + } else if (!latexIsBlank(styler.SafeGetCharAt(i))) { + return false; + } + i++; + } + return false; +} + +static bool latexNextNotBlankIs(Sci_Position i, Accessor &styler, char needle) { + char ch; + while (i < styler.Length()) { + ch = styler.SafeGetCharAt(i); + if (!latexIsBlankAndNL(ch) && ch != '*') { + if (ch == needle) + return true; + else + return false; + } + i++; + } + return false; +} + +static bool latexLastWordIs(Sci_Position start, Accessor &styler, const char *needle) { + Sci_PositionU i = 0; + Sci_PositionU l = static_cast(strlen(needle)); + Sci_Position ini = start-l+1; + char s[32]; + + while (i < l && i < 31) { + s[i] = styler.SafeGetCharAt(ini + i); + i++; + } + s[i] = '\0'; + + return (strcmp(s, needle) == 0); +} + +static bool latexLastWordIsMathEnv(Sci_Position pos, Accessor &styler) { + Sci_Position i, j; + char s[32]; + const char *mathEnvs[] = { "align", "alignat", "flalign", "gather", + "multiline", "displaymath", "eqnarray", "equation" }; + if (styler.SafeGetCharAt(pos) != '}') return false; + for (i = pos - 1; i >= 0; --i) { + if (styler.SafeGetCharAt(i) == '{') break; + if (pos - i >= 20) return false; + } + if (i < 0 || i == pos - 1) return false; + ++i; + for (j = 0; i + j < pos; ++j) + s[j] = styler.SafeGetCharAt(i + j); + s[j] = '\0'; + if (j == 0) return false; + if (s[j - 1] == '*') s[--j] = '\0'; + for (i = 0; i < static_cast(sizeof(mathEnvs) / sizeof(const char *)); ++i) + if (strcmp(s, mathEnvs[i]) == 0) return true; + return false; +} + +static inline void latexStateReset(int &mode, int &state) { + switch (mode) { + case 1: state = SCE_L_MATH; break; + case 2: state = SCE_L_MATH2; break; + default: state = SCE_L_DEFAULT; break; + } +} + +// There are cases not handled correctly, like $abcd\textrm{what is $x+y$}z+w$. +// But I think it's already good enough. +void SCI_METHOD LexerLaTeX::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) { + // startPos is assumed to be the first character of a line + Accessor styler(pAccess, &props); + styler.StartAt(startPos); + int mode = getMode(styler.GetLine(startPos) - 1); + int state = initStyle; + if (state == SCE_L_ERROR || state == SCE_L_SHORTCMD || state == SCE_L_SPECIAL) // should not happen + latexStateReset(mode, state); + + char chNext = styler.SafeGetCharAt(startPos); + char chVerbatimDelim = '\0'; + styler.StartSegment(startPos); + Sci_Position lengthDoc = startPos + length; + + for (Sci_Position i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + if (styler.IsLeadByte(ch)) { + i++; + chNext = styler.SafeGetCharAt(i + 1); + continue; + } + + if (ch == '\r' || ch == '\n') + setMode(styler.GetLine(i), mode); + + switch (state) { + case SCE_L_DEFAULT : + switch (ch) { + case '\\' : + styler.ColourTo(i - 1, state); + if (latexIsLetter(chNext)) { + state = SCE_L_COMMAND; + } else if (latexIsSpecial(chNext)) { + styler.ColourTo(i + 1, SCE_L_SPECIAL); + i++; + chNext = styler.SafeGetCharAt(i + 1); + } else if (chNext == '\r' || chNext == '\n') { + styler.ColourTo(i, SCE_L_ERROR); + } else if (IsASCII(chNext)) { + styler.ColourTo(i + 1, SCE_L_SHORTCMD); + if (chNext == '(') { + mode = 1; + state = SCE_L_MATH; + } else if (chNext == '[') { + mode = 2; + state = SCE_L_MATH2; + } + i++; + chNext = styler.SafeGetCharAt(i + 1); + } + break; + case '$' : + styler.ColourTo(i - 1, state); + if (chNext == '$') { + styler.ColourTo(i + 1, SCE_L_SHORTCMD); + mode = 2; + state = SCE_L_MATH2; + i++; + chNext = styler.SafeGetCharAt(i + 1); + } else { + styler.ColourTo(i, SCE_L_SHORTCMD); + mode = 1; + state = SCE_L_MATH; + } + break; + case '%' : + styler.ColourTo(i - 1, state); + state = SCE_L_COMMENT; + break; + } + break; + // These 3 will never be reached. + case SCE_L_ERROR: + case SCE_L_SPECIAL: + case SCE_L_SHORTCMD: + break; + case SCE_L_COMMAND : + if (!latexIsLetter(chNext)) { + styler.ColourTo(i, state); + if (latexNextNotBlankIs(i + 1, styler, '[' )) { + state = SCE_L_CMDOPT; + } else if (latexLastWordIs(i, styler, "\\begin")) { + state = SCE_L_TAG; + } else if (latexLastWordIs(i, styler, "\\end")) { + state = SCE_L_TAG2; + } else if (latexLastWordIs(i, styler, "\\verb") && chNext != '*' && chNext != ' ') { + chVerbatimDelim = chNext; + state = SCE_L_VERBATIM; + } else { + latexStateReset(mode, state); + } + } + break; + case SCE_L_CMDOPT : + if (ch == ']') { + styler.ColourTo(i, state); + latexStateReset(mode, state); + } + break; + case SCE_L_TAG : + if (latexIsTagValid(i, lengthDoc, styler)) { + styler.ColourTo(i, state); + latexStateReset(mode, state); + if (latexLastWordIs(i, styler, "{verbatim}")) { + state = SCE_L_VERBATIM; + } else if (latexLastWordIs(i, styler, "{comment}")) { + state = SCE_L_COMMENT2; + } else if (latexLastWordIs(i, styler, "{math}") && mode == 0) { + mode = 1; + state = SCE_L_MATH; + } else if (latexLastWordIsMathEnv(i, styler) && mode == 0) { + mode = 2; + state = SCE_L_MATH2; + } + } else { + styler.ColourTo(i, SCE_L_ERROR); + latexStateReset(mode, state); + ch = styler.SafeGetCharAt(i); + if (ch == '\r' || ch == '\n') setMode(styler.GetLine(i), mode); + } + chNext = styler.SafeGetCharAt(i+1); + break; + case SCE_L_TAG2 : + if (latexIsTagValid(i, lengthDoc, styler)) { + styler.ColourTo(i, state); + latexStateReset(mode, state); + } else { + styler.ColourTo(i, SCE_L_ERROR); + latexStateReset(mode, state); + ch = styler.SafeGetCharAt(i); + if (ch == '\r' || ch == '\n') setMode(styler.GetLine(i), mode); + } + chNext = styler.SafeGetCharAt(i+1); + break; + case SCE_L_MATH : + switch (ch) { + case '\\' : + styler.ColourTo(i - 1, state); + if (latexIsLetter(chNext)) { + Sci_Position match = i + 3; + if (latexLastWordIs(match, styler, "\\end")) { + match++; + if (latexIsTagValid(match, lengthDoc, styler)) { + if (latexLastWordIs(match, styler, "{math}")) + mode = 0; + } + } + state = SCE_L_COMMAND; + } else if (latexIsSpecial(chNext)) { + styler.ColourTo(i + 1, SCE_L_SPECIAL); + i++; + chNext = styler.SafeGetCharAt(i + 1); + } else if (chNext == '\r' || chNext == '\n') { + styler.ColourTo(i, SCE_L_ERROR); + } else if (IsASCII(chNext)) { + if (chNext == ')') { + mode = 0; + state = SCE_L_DEFAULT; + } + styler.ColourTo(i + 1, SCE_L_SHORTCMD); + i++; + chNext = styler.SafeGetCharAt(i + 1); + } + break; + case '$' : + styler.ColourTo(i - 1, state); + styler.ColourTo(i, SCE_L_SHORTCMD); + mode = 0; + state = SCE_L_DEFAULT; + break; + case '%' : + styler.ColourTo(i - 1, state); + state = SCE_L_COMMENT; + break; + } + break; + case SCE_L_MATH2 : + switch (ch) { + case '\\' : + styler.ColourTo(i - 1, state); + if (latexIsLetter(chNext)) { + Sci_Position match = i + 3; + if (latexLastWordIs(match, styler, "\\end")) { + match++; + if (latexIsTagValid(match, lengthDoc, styler)) { + if (latexLastWordIsMathEnv(match, styler)) + mode = 0; + } + } + state = SCE_L_COMMAND; + } else if (latexIsSpecial(chNext)) { + styler.ColourTo(i + 1, SCE_L_SPECIAL); + i++; + chNext = styler.SafeGetCharAt(i + 1); + } else if (chNext == '\r' || chNext == '\n') { + styler.ColourTo(i, SCE_L_ERROR); + } else if (IsASCII(chNext)) { + if (chNext == ']') { + mode = 0; + state = SCE_L_DEFAULT; + } + styler.ColourTo(i + 1, SCE_L_SHORTCMD); + i++; + chNext = styler.SafeGetCharAt(i + 1); + } + break; + case '$' : + styler.ColourTo(i - 1, state); + if (chNext == '$') { + styler.ColourTo(i + 1, SCE_L_SHORTCMD); + i++; + chNext = styler.SafeGetCharAt(i + 1); + mode = 0; + state = SCE_L_DEFAULT; + } else { // This may not be an error, e.g. \begin{equation}\text{$a$}\end{equation} + styler.ColourTo(i, SCE_L_SHORTCMD); + } + break; + case '%' : + styler.ColourTo(i - 1, state); + state = SCE_L_COMMENT; + break; + } + break; + case SCE_L_COMMENT : + if (ch == '\r' || ch == '\n') { + styler.ColourTo(i - 1, state); + latexStateReset(mode, state); + } + break; + case SCE_L_COMMENT2 : + if (ch == '\\') { + Sci_Position match = i + 3; + if (latexLastWordIs(match, styler, "\\end")) { + match++; + if (latexIsTagValid(match, lengthDoc, styler)) { + if (latexLastWordIs(match, styler, "{comment}")) { + styler.ColourTo(i - 1, state); + state = SCE_L_COMMAND; + } + } + } + } + break; + case SCE_L_VERBATIM : + if (ch == '\\') { + Sci_Position match = i + 3; + if (latexLastWordIs(match, styler, "\\end")) { + match++; + if (latexIsTagValid(match, lengthDoc, styler)) { + if (latexLastWordIs(match, styler, "{verbatim}")) { + styler.ColourTo(i - 1, state); + state = SCE_L_COMMAND; + } + } + } + } else if (chNext == chVerbatimDelim) { + styler.ColourTo(i + 1, state); + latexStateReset(mode, state); + chVerbatimDelim = '\0'; + i++; + chNext = styler.SafeGetCharAt(i + 1); + } else if (chVerbatimDelim != '\0' && (ch == '\n' || ch == '\r')) { + styler.ColourTo(i, SCE_L_ERROR); + latexStateReset(mode, state); + chVerbatimDelim = '\0'; + } + break; + } + } + if (lengthDoc == styler.Length()) truncModes(styler.GetLine(lengthDoc - 1)); + styler.ColourTo(lengthDoc - 1, state); + styler.Flush(); +} + +static int latexFoldSaveToInt(const latexFoldSave &save) { + int sum = 0; + for (int i = 0; i <= save.structLev; ++i) + sum += save.openBegins[i]; + return ((sum + save.structLev + SC_FOLDLEVELBASE) & SC_FOLDLEVELNUMBERMASK); +} + +// Change folding state while processing a line +// Return the level before the first relevant command +void SCI_METHOD LexerLaTeX::Fold(Sci_PositionU startPos, Sci_Position length, int, IDocument *pAccess) { + const char *structWords[7] = {"part", "chapter", "section", "subsection", + "subsubsection", "paragraph", "subparagraph"}; + Accessor styler(pAccess, &props); + Sci_PositionU endPos = startPos + length; + Sci_Position curLine = styler.GetLine(startPos); + latexFoldSave save; + getSave(curLine - 1, save); + do { + char ch, buf[16]; + Sci_Position i, j; + int lev = -1; + bool needFold = false; + for (i = static_cast(startPos); i < static_cast(endPos); ++i) { + ch = styler.SafeGetCharAt(i); + if (ch == '\r' || ch == '\n') break; + if (ch != '\\' || styler.StyleAt(i) != SCE_L_COMMAND) continue; + for (j = 0; j < 15 && i + 1 < static_cast(endPos); ++j, ++i) { + buf[j] = styler.SafeGetCharAt(i + 1); + if (!latexIsLetter(buf[j])) break; + } + buf[j] = '\0'; + if (strcmp(buf, "begin") == 0) { + if (lev < 0) lev = latexFoldSaveToInt(save); + ++save.openBegins[save.structLev]; + needFold = true; + } + else if (strcmp(buf, "end") == 0) { + while (save.structLev > 0 && save.openBegins[save.structLev] == 0) + --save.structLev; + if (lev < 0) lev = latexFoldSaveToInt(save); + if (save.openBegins[save.structLev] > 0) --save.openBegins[save.structLev]; + } + else { + for (j = 0; j < 7; ++j) + if (strcmp(buf, structWords[j]) == 0) break; + if (j >= 7) continue; + save.structLev = j; // level before the command + for (j = save.structLev + 1; j < 8; ++j) { + save.openBegins[save.structLev] += save.openBegins[j]; + save.openBegins[j] = 0; + } + if (lev < 0) lev = latexFoldSaveToInt(save); + ++save.structLev; // level after the command + needFold = true; + } + } + if (lev < 0) lev = latexFoldSaveToInt(save); + if (needFold) lev |= SC_FOLDLEVELHEADERFLAG; + styler.SetLevel(curLine, lev); + setSave(curLine, save); + ++curLine; + startPos = styler.LineStart(curLine); + if (static_cast(startPos) == styler.Length()) { + lev = latexFoldSaveToInt(save); + styler.SetLevel(curLine, lev); + setSave(curLine, save); + truncSaves(curLine); + } + } while (startPos < endPos); + styler.Flush(); +} + +static const char *const emptyWordListDesc[] = { + 0 +}; + +LexerModule lmLatex(SCLEX_LATEX, LexerLaTeX::LexerFactoryLaTeX, "latex", emptyWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexLisp.cpp b/third_party/qscintilla/scintilla/lexers/LexLisp.cpp new file mode 100644 index 0000000..8e75863 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexLisp.cpp @@ -0,0 +1,283 @@ +// Scintilla source code edit control +/** @file LexLisp.cxx + ** Lexer for Lisp. + ** Written by Alexey Yutkin. + **/ +// Copyright 1998-2001 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +#define SCE_LISP_CHARACTER 29 +#define SCE_LISP_MACRO 30 +#define SCE_LISP_MACRO_DISPATCH 31 + +static inline bool isLispoperator(char ch) { + if (IsASCII(ch) && isalnum(ch)) + return false; + if (ch == '\'' || ch == '`' || ch == '(' || ch == ')' || ch == '[' || ch == ']' || ch == '{' || ch == '}') + return true; + return false; +} + +static inline bool isLispwordstart(char ch) { + return IsASCII(ch) && ch != ';' && !isspacechar(ch) && !isLispoperator(ch) && + ch != '\n' && ch != '\r' && ch != '\"'; +} + + +static void classifyWordLisp(Sci_PositionU start, Sci_PositionU end, WordList &keywords, WordList &keywords_kw, Accessor &styler) { + assert(end >= start); + char s[100]; + Sci_PositionU i; + bool digit_flag = true; + for (i = 0; (i < end - start + 1) && (i < 99); i++) { + s[i] = styler[start + i]; + s[i + 1] = '\0'; + if (!isdigit(s[i]) && (s[i] != '.')) digit_flag = false; + } + char chAttr = SCE_LISP_IDENTIFIER; + + if(digit_flag) chAttr = SCE_LISP_NUMBER; + else { + if (keywords.InList(s)) { + chAttr = SCE_LISP_KEYWORD; + } else if (keywords_kw.InList(s)) { + chAttr = SCE_LISP_KEYWORD_KW; + } else if ((s[0] == '*' && s[i-1] == '*') || + (s[0] == '+' && s[i-1] == '+')) { + chAttr = SCE_LISP_SPECIAL; + } + } + styler.ColourTo(end, chAttr); + return; +} + + +static void ColouriseLispDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], + Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords_kw = *keywordlists[1]; + + styler.StartAt(startPos); + + int state = initStyle, radix = -1; + char chNext = styler[startPos]; + Sci_PositionU lengthDoc = startPos + length; + styler.StartSegment(startPos); + for (Sci_PositionU i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + + if (styler.IsLeadByte(ch)) { + chNext = styler.SafeGetCharAt(i + 2); + i += 1; + continue; + } + + if (state == SCE_LISP_DEFAULT) { + if (ch == '#') { + styler.ColourTo(i - 1, state); + radix = -1; + state = SCE_LISP_MACRO_DISPATCH; + } else if (ch == ':' && isLispwordstart(chNext)) { + styler.ColourTo(i - 1, state); + state = SCE_LISP_SYMBOL; + } else if (isLispwordstart(ch)) { + styler.ColourTo(i - 1, state); + state = SCE_LISP_IDENTIFIER; + } + else if (ch == ';') { + styler.ColourTo(i - 1, state); + state = SCE_LISP_COMMENT; + } + else if (isLispoperator(ch) || ch=='\'') { + styler.ColourTo(i - 1, state); + styler.ColourTo(i, SCE_LISP_OPERATOR); + if (ch=='\'' && isLispwordstart(chNext)) { + state = SCE_LISP_SYMBOL; + } + } + else if (ch == '\"') { + styler.ColourTo(i - 1, state); + state = SCE_LISP_STRING; + } + } else if (state == SCE_LISP_IDENTIFIER || state == SCE_LISP_SYMBOL) { + if (!isLispwordstart(ch)) { + if (state == SCE_LISP_IDENTIFIER) { + classifyWordLisp(styler.GetStartSegment(), i - 1, keywords, keywords_kw, styler); + } else { + styler.ColourTo(i - 1, state); + } + state = SCE_LISP_DEFAULT; + } /*else*/ + if (isLispoperator(ch) || ch=='\'') { + styler.ColourTo(i - 1, state); + styler.ColourTo(i, SCE_LISP_OPERATOR); + if (ch=='\'' && isLispwordstart(chNext)) { + state = SCE_LISP_SYMBOL; + } + } + } else if (state == SCE_LISP_MACRO_DISPATCH) { + if (!(IsASCII(ch) && isdigit(ch))) { + if (ch != 'r' && ch != 'R' && (i - styler.GetStartSegment()) > 1) { + state = SCE_LISP_DEFAULT; + } else { + switch (ch) { + case '|': state = SCE_LISP_MULTI_COMMENT; break; + case 'o': + case 'O': radix = 8; state = SCE_LISP_MACRO; break; + case 'x': + case 'X': radix = 16; state = SCE_LISP_MACRO; break; + case 'b': + case 'B': radix = 2; state = SCE_LISP_MACRO; break; + case '\\': state = SCE_LISP_CHARACTER; break; + case ':': + case '-': + case '+': state = SCE_LISP_MACRO; break; + case '\'': if (isLispwordstart(chNext)) { + state = SCE_LISP_SPECIAL; + } else { + styler.ColourTo(i - 1, SCE_LISP_DEFAULT); + styler.ColourTo(i, SCE_LISP_OPERATOR); + state = SCE_LISP_DEFAULT; + } + break; + default: if (isLispoperator(ch)) { + styler.ColourTo(i - 1, SCE_LISP_DEFAULT); + styler.ColourTo(i, SCE_LISP_OPERATOR); + } + state = SCE_LISP_DEFAULT; + break; + } + } + } + } else if (state == SCE_LISP_MACRO) { + if (isLispwordstart(ch) && (radix == -1 || IsADigit(ch, radix))) { + state = SCE_LISP_SPECIAL; + } else { + state = SCE_LISP_DEFAULT; + } + } else if (state == SCE_LISP_CHARACTER) { + if (isLispoperator(ch)) { + styler.ColourTo(i, SCE_LISP_SPECIAL); + state = SCE_LISP_DEFAULT; + } else if (isLispwordstart(ch)) { + styler.ColourTo(i, SCE_LISP_SPECIAL); + state = SCE_LISP_SPECIAL; + } else { + state = SCE_LISP_DEFAULT; + } + } else if (state == SCE_LISP_SPECIAL) { + if (!isLispwordstart(ch) || (radix != -1 && !IsADigit(ch, radix))) { + styler.ColourTo(i - 1, state); + state = SCE_LISP_DEFAULT; + } + if (isLispoperator(ch) || ch=='\'') { + styler.ColourTo(i - 1, state); + styler.ColourTo(i, SCE_LISP_OPERATOR); + if (ch=='\'' && isLispwordstart(chNext)) { + state = SCE_LISP_SYMBOL; + } + } + } else { + if (state == SCE_LISP_COMMENT) { + if (atEOL) { + styler.ColourTo(i - 1, state); + state = SCE_LISP_DEFAULT; + } + } else if (state == SCE_LISP_MULTI_COMMENT) { + if (ch == '|' && chNext == '#') { + i++; + chNext = styler.SafeGetCharAt(i + 1); + styler.ColourTo(i, state); + state = SCE_LISP_DEFAULT; + } + } else if (state == SCE_LISP_STRING) { + if (ch == '\\') { + if (chNext == '\"' || chNext == '\'' || chNext == '\\') { + i++; + chNext = styler.SafeGetCharAt(i + 1); + } + } else if (ch == '\"') { + styler.ColourTo(i, state); + state = SCE_LISP_DEFAULT; + } + } + } + + } + styler.ColourTo(lengthDoc - 1, state); +} + +static void FoldLispDoc(Sci_PositionU startPos, Sci_Position length, int /* initStyle */, WordList *[], + Accessor &styler) { + Sci_PositionU lengthDoc = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + int styleNext = styler.StyleAt(startPos); + for (Sci_PositionU i = startPos; i < lengthDoc; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + if (style == SCE_LISP_OPERATOR) { + if (ch == '(' || ch == '[' || ch == '{') { + levelCurrent++; + } else if (ch == ')' || ch == ']' || ch == '}') { + levelCurrent--; + } + } + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0) + lev |= SC_FOLDLEVELWHITEFLAG; + if ((levelCurrent > levelPrev) && (visibleChars > 0)) + lev |= SC_FOLDLEVELHEADERFLAG; + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) + visibleChars++; + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const lispWordListDesc[] = { + "Functions and special operators", + "Keywords", + 0 +}; + +LexerModule lmLISP(SCLEX_LISP, ColouriseLispDoc, "lisp", FoldLispDoc, lispWordListDesc); diff --git a/third_party/qscintilla/scintilla/lexers/LexLout.cpp b/third_party/qscintilla/scintilla/lexers/LexLout.cpp new file mode 100644 index 0000000..abba91a --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexLout.cpp @@ -0,0 +1,213 @@ +// Scintilla source code edit control +/** @file LexLout.cxx + ** Lexer for the Basser Lout (>= version 3) typesetting language + **/ +// Copyright 2003 by Kein-Hong Man +// The License.txt file describes the conditions under which this software may be distributed. + +#include +#include +#include +#include +#include +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +static inline bool IsAWordChar(const int ch) { + return (ch < 0x80) && (isalpha(ch) || ch == '@' || ch == '_'); +} + +static inline bool IsAnOther(const int ch) { + return (ch < 0x80) && (ch == '{' || ch == '}' || + ch == '!' || ch == '$' || ch == '%' || ch == '&' || ch == '\'' || + ch == '(' || ch == ')' || ch == '*' || ch == '+' || ch == ',' || + ch == '-' || ch == '.' || ch == '/' || ch == ':' || ch == ';' || + ch == '<' || ch == '=' || ch == '>' || ch == '?' || ch == '[' || + ch == ']' || ch == '^' || ch == '`' || ch == '|' || ch == '~'); +} + +static void ColouriseLoutDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, + WordList *keywordlists[], Accessor &styler) { + + WordList &keywords = *keywordlists[0]; + WordList &keywords2 = *keywordlists[1]; + WordList &keywords3 = *keywordlists[2]; + + int visibleChars = 0; + int firstWordInLine = 0; + int leadingAtSign = 0; + + StyleContext sc(startPos, length, initStyle, styler); + + for (; sc.More(); sc.Forward()) { + + if (sc.atLineStart && (sc.state == SCE_LOUT_STRING)) { + // Prevent SCE_LOUT_STRINGEOL from leaking back to previous line + sc.SetState(SCE_LOUT_STRING); + } + + // Determine if the current state should terminate. + if (sc.state == SCE_LOUT_COMMENT) { + if (sc.atLineEnd) { + sc.SetState(SCE_LOUT_DEFAULT); + visibleChars = 0; + } + } else if (sc.state == SCE_LOUT_NUMBER) { + if (!IsADigit(sc.ch) && sc.ch != '.') { + sc.SetState(SCE_LOUT_DEFAULT); + } + } else if (sc.state == SCE_LOUT_STRING) { + if (sc.ch == '\\') { + if (sc.chNext == '\"' || sc.chNext == '\\') { + sc.Forward(); + } + } else if (sc.ch == '\"') { + sc.ForwardSetState(SCE_LOUT_DEFAULT); + } else if (sc.atLineEnd) { + sc.ChangeState(SCE_LOUT_STRINGEOL); + sc.ForwardSetState(SCE_LOUT_DEFAULT); + visibleChars = 0; + } + } else if (sc.state == SCE_LOUT_IDENTIFIER) { + if (!IsAWordChar(sc.ch)) { + char s[100]; + sc.GetCurrent(s, sizeof(s)); + + if (leadingAtSign) { + if (keywords.InList(s)) { + sc.ChangeState(SCE_LOUT_WORD); + } else { + sc.ChangeState(SCE_LOUT_WORD4); + } + } else if (firstWordInLine && keywords3.InList(s)) { + sc.ChangeState(SCE_LOUT_WORD3); + } + sc.SetState(SCE_LOUT_DEFAULT); + } + } else if (sc.state == SCE_LOUT_OPERATOR) { + if (!IsAnOther(sc.ch)) { + char s[100]; + sc.GetCurrent(s, sizeof(s)); + + if (keywords2.InList(s)) { + sc.ChangeState(SCE_LOUT_WORD2); + } + sc.SetState(SCE_LOUT_DEFAULT); + } + } + + // Determine if a new state should be entered. + if (sc.state == SCE_LOUT_DEFAULT) { + if (sc.ch == '#') { + sc.SetState(SCE_LOUT_COMMENT); + } else if (sc.ch == '\"') { + sc.SetState(SCE_LOUT_STRING); + } else if (IsADigit(sc.ch) || + (sc.ch == '.' && IsADigit(sc.chNext))) { + sc.SetState(SCE_LOUT_NUMBER); + } else if (IsAWordChar(sc.ch)) { + firstWordInLine = (visibleChars == 0); + leadingAtSign = (sc.ch == '@'); + sc.SetState(SCE_LOUT_IDENTIFIER); + } else if (IsAnOther(sc.ch)) { + sc.SetState(SCE_LOUT_OPERATOR); + } + } + + if (sc.atLineEnd) { + // Reset states to begining of colourise so no surprises + // if different sets of lines lexed. + visibleChars = 0; + } + if (!IsASpace(sc.ch)) { + visibleChars++; + } + } + sc.Complete(); +} + +static void FoldLoutDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], + Accessor &styler) { + + Sci_PositionU endPos = startPos + length; + int visibleChars = 0; + Sci_Position lineCurrent = styler.GetLine(startPos); + int levelPrev = styler.LevelAt(lineCurrent) & SC_FOLDLEVELNUMBERMASK; + int levelCurrent = levelPrev; + char chNext = styler[startPos]; + bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; + int styleNext = styler.StyleAt(startPos); + char s[10] = ""; + + for (Sci_PositionU i = startPos; i < endPos; i++) { + char ch = chNext; + chNext = styler.SafeGetCharAt(i + 1); + int style = styleNext; + styleNext = styler.StyleAt(i + 1); + bool atEOL = (ch == '\r' && chNext != '\n') || (ch == '\n'); + + if (style == SCE_LOUT_WORD) { + if (ch == '@') { + for (Sci_PositionU j = 0; j < 8; j++) { + if (!IsAWordChar(styler[i + j])) { + break; + } + s[j] = styler[i + j]; + s[j + 1] = '\0'; + } + if (strcmp(s, "@Begin") == 0) { + levelCurrent++; + } else if (strcmp(s, "@End") == 0) { + levelCurrent--; + } + } + } else if (style == SCE_LOUT_OPERATOR) { + if (ch == '{') { + levelCurrent++; + } else if (ch == '}') { + levelCurrent--; + } + } + if (atEOL) { + int lev = levelPrev; + if (visibleChars == 0 && foldCompact) { + lev |= SC_FOLDLEVELWHITEFLAG; + } + if ((levelCurrent > levelPrev) && (visibleChars > 0)) { + lev |= SC_FOLDLEVELHEADERFLAG; + } + if (lev != styler.LevelAt(lineCurrent)) { + styler.SetLevel(lineCurrent, lev); + } + lineCurrent++; + levelPrev = levelCurrent; + visibleChars = 0; + } + if (!isspacechar(ch)) + visibleChars++; + } + // Fill in the real level of the next line, keeping the current flags as they will be filled in later + int flagsNext = styler.LevelAt(lineCurrent) & ~SC_FOLDLEVELNUMBERMASK; + styler.SetLevel(lineCurrent, levelPrev | flagsNext); +} + +static const char * const loutWordLists[] = { + "Predefined identifiers", + "Predefined delimiters", + "Predefined keywords", + 0, + }; + +LexerModule lmLout(SCLEX_LOUT, ColouriseLoutDoc, "lout", FoldLoutDoc, loutWordLists); diff --git a/third_party/qscintilla/scintilla/lexers/LexLua.cpp b/third_party/qscintilla/scintilla/lexers/LexLua.cpp new file mode 100644 index 0000000..9e6e8a7 --- /dev/null +++ b/third_party/qscintilla/scintilla/lexers/LexLua.cpp @@ -0,0 +1,502 @@ +// Scintilla source code edit control +/** @file LexLua.cxx + ** Lexer for Lua language. + ** + ** Written by Paul Winwood. + ** Folder by Alexey Yutkin. + ** Modified by Marcos E. Wurzius & Philippe Lhoste + **/ + +#include +#include +#include +#include +#include +#include + +#include + +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" + +#include "StringCopy.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + +using namespace Scintilla; + +// Test for [=[ ... ]=] delimiters, returns 0 if it's only a [ or ], +// return 1 for [[ or ]], returns >=2 for [=[ or ]=] and so on. +// The maximum number of '=' characters allowed is 254. +static int LongDelimCheck(StyleContext &sc) { + int sep = 1; + while (sc.GetRelative(sep) == '=' && sep < 0xFF) + sep++; + if (sc.GetRelative(sep) == sc.ch) + return sep; + return 0; +} + +static void ColouriseLuaDoc( + Sci_PositionU startPos, + Sci_Position length, + int initStyle, + WordList *keywordlists[], + Accessor &styler) { + + const WordList &keywords = *keywordlists[0]; + const WordList &keywords2 = *keywordlists[1]; + const WordList &keywords3 = *keywordlists[2]; + const WordList &keywords4 = *keywordlists[3]; + const WordList &keywords5 = *keywordlists[4]; + const WordList &keywords6 = *keywordlists[5]; + const WordList &keywords7 = *keywordlists[6]; + const WordList &keywords8 = *keywordlists[7]; + + // Accepts accented characters + CharacterSet setWordStart(CharacterSet::setAlpha, "_", 0x80, true); + CharacterSet setWord(CharacterSet::setAlphaNum, "_", 0x80, true); + // Not exactly following number definition (several dots are seen as OK, etc.) + // but probably enough in most cases. [pP] is for hex floats. + CharacterSet setNumber(CharacterSet::setDigits, ".-+abcdefpABCDEFP"); + CharacterSet setExponent(CharacterSet::setNone, "eEpP"); + CharacterSet setLuaOperator(CharacterSet::setNone, "*/-+()={}~[];<>,.^%:#&|"); + CharacterSet setEscapeSkip(CharacterSet::setNone, "\"'\\"); + + Sci_Position currentLine = styler.GetLine(startPos); + // Initialize long string [[ ... ]] or block comment --[[ ... ]] nesting level, + // if we are inside such a string. Block comment was introduced in Lua 5.0, + // blocks with separators [=[ ... ]=] in Lua 5.1. + // Continuation of a string (\z whitespace escaping) is controlled by stringWs. + int nestLevel = 0; + int sepCount = 0; + int stringWs = 0; + if (initStyle == SCE_LUA_LITERALSTRING || initStyle == SCE_LUA_COMMENT || + initStyle == SCE_LUA_STRING || initStyle == SCE_LUA_CHARACTER) { + const int lineState = styler.GetLineState(currentLine - 1); + nestLevel = lineState >> 9; + sepCount = lineState & 0xFF; + stringWs = lineState & 0x100; + } + + // results of identifier/keyword matching + Sci_Position idenPos = 0; + Sci_Position idenWordPos = 0; + int idenStyle = SCE_LUA_IDENTIFIER; + bool foundGoto = false; + + // Do not leak onto next line + if (initStyle == SCE_LUA_STRINGEOL || initStyle == SCE_LUA_COMMENTLINE || initStyle == SCE_LUA_PREPROCESSOR) { + initStyle = SCE_LUA_DEFAULT; + } + + StyleContext sc(startPos, length, initStyle, styler); + if (startPos == 0 && sc.ch == '#' && sc.chNext == '!') { + // shbang line: "#!" is a comment only if located at the start of the script + sc.SetState(SCE_LUA_COMMENTLINE); + } + for (; sc.More(); sc.Forward()) { + if (sc.atLineEnd) { + // Update the line state, so it can be seen by next line + currentLine = styler.GetLine(sc.currentPos); + switch (sc.state) { + case SCE_LUA_LITERALSTRING: + case SCE_LUA_COMMENT: + case SCE_LUA_STRING: + case SCE_LUA_CHARACTER: + // Inside a literal string, block comment or string, we set the line state + styler.SetLineState(currentLine, (nestLevel << 9) | stringWs | sepCount); + break; + default: + // Reset the line state + styler.SetLineState(currentLine, 0); + break; + } + } + if (sc.atLineStart && (sc.state == SCE_LUA_STRING)) { + // Prevent SCE_LUA_STRINGEOL from leaking back to previous line + sc.SetState(SCE_LUA_STRING); + } + + // Handle string line continuation + if ((sc.state == SCE_LUA_STRING || sc.state == SCE_LUA_CHARACTER) && + sc.ch == '\\') { + if (sc.chNext == '\n' || sc.chNext == '\r') { + sc.Forward(); + if (sc.ch == '\r' && sc.chNext == '\n') { + sc.Forward(); + } + continue; + } + } + + // Determine if the current state should terminate. + if (sc.state == SCE_LUA_OPERATOR) { + if (sc.ch == ':' && sc.chPrev == ':') { // ::

    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 z A(_6g97on?MawA1okmn*fhyku*b*17%El+p&Utd7?$TX%Y=u+wsdcO}8RoNNsO z(9(EH?J4ahTlCi7kIkw;cX!{B?aZ#PP0&WY^rNGvm3Mo2huN>r_N+@FPdi7g<(c=b zo70lmiPrrEguYdXPB*);Yk2q8i{2jmKRf}}m73~u6X(+=TFvyWX}pE1X+Njor6c;j z%;;-`fK6-Cwi1BHagJhmXL9B<I#F(^xdv-9+!1wm7?6{8ORoWtZye3x*ttrS{uA$z{!rpEEN}ga0#8? z0XW`GMklRsnbWx5r>=SJ06m0?7EphuWNFto+ae?da+Iaf*L0P#<0}7c!v%cTUFow?gzxKAUYm zi-x_x_S30gWDorM$kGw@F*RT2f%wF(x|2e&qw$lllvwhFcVU_3fwgyI6!%ThtnuBhc;4k2JAN+!5JPna%_Ci{yd%qj$)beel0lv!{6&h6Tu{;-uIG-X(eZM-uO zdo@yOMUd=*z@QrM?e9~$UZTP=Q_IwQzj>!6oR12U;d7q7+EsoDlkKw7(sW9HYPLfr znYIT|r#dzSTWsT#uY_~uu;EnqJwo3y&39>u(0sSl%0>yQnoE^C(6GA2vNbp1Wp%-3 zL9t3pXO27vzUKOmQA~Fipw%5bH|clktM$z9!$TW-Q(B>Z+uRJfyx=1VPw1h3X|!pW zx#aDcHr$p1g6JkUmj-nV!MUl_X}L~tvkEV_QNM@x&)_X^#IRTII8H zs8Vb-iD-clS!Rvca(S>{`{u562=G^$@>2a$kIpTb1i@vXEPM+V+&R8@aJ< zM%9~_@|j8O)GEBmmORWBY4Sy`hX$H~b2nD5A*`qudad#NP`8zet&?F}C$Ha$3VMOd z!w9Zd&LCpVt^BY3szv7vLycerWX9K18{EX6;>gyME%Vvul>fI>Q{NG5q?V zAyYWyrZmoKorMdleqj98bSyrB&Bf(B4*m6Na5Xt=?uek(ukRE zQOnJOC=so5PuFg(St3faANiG;lIS65s;IM=5%-{!h4Mhv0t+k|#Fk9V5`6{lc)dz} zr-@+8p7M|I7}*Py0cw5=I=X%?jP|rx$yK1e$y_O5-q_=80;fqGFgH8o{DNjaAE4s_ zJB_cJfgkU#ZT7Ub`&WWsq|nOo9_fr8^Y5cH8Bx5c18dm(=SV?AaC))GyrLM-y*bLe$V(pg^$15@>l7v z`5R|mc7vA5ed%sR1Nk|sB$6Z>c#?U(*h-A6AN$)h8fsuSrX**OU?z70?O*V~63ui7_9+pQ$kHJ?VEt6Z8A`{0H6b6>#gR-(}(Ia0Q~uJfW;N zmuw{>*FnvCl5h5p+zW6%1oLfSTKr5aNcT$wJXkNQO8|D20v^I!Ym4WpEsa3;lrU2u zDKwu2Gif3a7|m3r&8EdG2fg)BE$^py$7J0yr0V2RyQ#Pvf~F1S*#n7KFQ7dv*VXSA3Xd=#|@!KPHSa z->m%6eUUq4>uvh8`ui38JdHPfj25?3yq#l`nh~HK*NMJ(F%IZ1#ut5HBoZ$(PA~U&HRd00?MPVXSMXoWYj$h zsZ9%dwQ(>bd`s0hfF*yBXJBU7OB5Ub@Z~O{8|nnZqR~ zZm*Bop08h&tg7?t7oMtbF7jkJ_{watZfogmiU0IVU0sokD?QWhdrpT$+$*L`-1^!Z>Qw%nur?S z*2W(N(9vSd60=MAAUZg)bUFVxL74+|FB(-y@@jd~hWu4#RgpS5d?_R;bVm7KDKLaUl~g3m?{lKnP)DT5s3XkN+nWqqN45>x)$uaXI_;4D@B{ zpBi&beu!q|;}#hjPLqWlDcV_huRPVk$+kR3m1JOGJ@Jf2&h0nJHs&?~oU)^FxUngL z+zYV|I`!*ZOA=YJVq4-VW)M0@qaScW$sdb4T^BcuKzd}&FKy2;>AXF0 zzJ7Xh2RLuB(n>eOeoORV$FDsn`NBY)Oy5+ob8{E`N!Y}UBO6|ohg_=tBW%1Bo zgs3(}U6lF%L=a;vj8-ENEd=B9j^`flgugyXJR6)G3+Ijei5XNPq>@-^C&!DK?lq}4 zn8rwZdG_qU5F%Vx#H-VRu7>-Lqa+Cf0fDEp6kVHnVve|5H9v2(rB7Gg*88Dn9$3}z zw6|xU*&W?Tju;OJ%okzi4)@X?IC0jsI%yI}X!Jq&D^2-ppkgN<(~ogml$vf)sz>U$ zl=515bkdMH2wHA8=(++%e-FH_ahGjO=PvkZk4!pFbx_^NC}KVaS^?ag)3cP`!wA)B zE>FoB*GXC6<8jZlMWktDu4tpSn?~L|`kg|~UgGbh;8#8C^EsI0Q%eH-5Z`C=bTYe_ zua#wA=s37!D?E!P4AS<)gl!VR71l8-)EDD~N8+7OiP1^mAwaD)e}()EasE1a1O1MV zEUhJJ($KZzM5ilz1el#uH6LFpI|ZvbjwT-7IgCVXo+2coBr%VQ=p!>YSQKUcHwYx8 zBcEPI5x)>n!Yr$tz-P9<8~b_(L(dt0pzMv`e;2$0AOx)gWIsf(!uszT)TTwr#imQ< zqb(#Pa`}C^9|~s--A?XCtuuZ&5*6v2d_Ou`S4)(2ni3ychjPS)^3DT3z z@m?wEnm46*l$29A#Ud^e3)Q_D`#Dyp`-4Q_zy3P)@O~aEymo(g@pSck==@Pn2^=M+ zUUR<+4gDB50L3Qvz4LA{*p%C5xxJmCxf7zQH*b2soE7{c#szzG!cFLs`*zGoy(2== zKyD?rec#)k1-`jpXTCtmR)Dz%FOUcWr6-1_W*f5nzt4_?3yg)8{9HhnfEwAp>A`<# zhN$xXVl<-tP{10#>xA2+_%_ITbkIfIz}WxX|Hka~`XsE~`hNc9&=B(PBCYr9;eK61 z>w4$p#NlCacJ})I`UT86LZZE(czC7GlH77=YY5RnidC@?BebioUhfQ=`cg&iO` zEivYso5YpIUwOBsl4esUb6-o?Et#We)f-UG&E=XTg*XWS<}C2?`=iX)sZz6FfBnSV#GTj2ef0=5E(rWPEDoJ^TrX1&4o(|ScnPMx;g77 zGLryCk&pK&OY`pmLaqLQ%ju7{V#+)yNeK_~37vhW+uz%}zt=x(EYb*=Pj{EUC!5xH z^WieQLg%0OM~rwpq_S#jedv*I5Dmb``W zQE@Rvo?FV;2S^*OC?saN=kcw#RIr$sRNPny(Cu4qdoZ_d$!mJ}ac*Sua=#J3Zvv$w zO0x2BlnyZZK3(UQj_e5VHO_ynvS1>YN{f*cApkpJM8c<9im*L}NTkN;2AU*M(!K27 zo(=&uQF3Sb<(T`w93BV9lfCbr%=Yq?&n4#YPJMy@ljr@SOutMTiT95&XM{fdCR7MG z*jU{iS{>RaB(w9k_h?sEx`y)-8#nMduQ3M^bBdEhA-*&-i0EWv9 zax5N8^yz<`rkb>QG(^;u)>r>iXYZJi4wqF2=nu>vFVjk*JAL0zKvC*Ztoa$HW_Zt=LvplW92!JwE=n^vDmO^7cG9dWODRsG0|4iF zml!&sW9ccHeu)ri$adAsFFtQRCx}J{8m-wPH9-0ak2c`1Ij^S$0LLiMo1{;t)nvav zD8>%@?|Ez!KFDa!5t~DtPj4*MXCsER2EsHOCr26|_4Lt!5B2&iV7^vd4RaCtt%h91 zb-MUd!#2nwNW3`KB*wFv>5!&4or?wfT9^Ry4eP3%US)Zs5>+F*ZVw$#u8*ta5bKVfPu;bvGGKEYgv#%mBHHzLQL- z%LWRgE8ZT1zTH+@R(#+&;61MI8~G>de(9#kP)Oy8ja2pd5k4?DSgx^qOm;OP40OqzxE1RqSMGMJmz@~V9cqv` z5{YY!#!<*aZv%$v=E_fsH-j)@~*Xv_r4RnX@*}c=dRM5AM_Oa_cDk|3QXwmWLDScbjHAHObkO)RVvZWUG2&gqTS`EX^(`C!Bz#FIMEC0B%H6$y zT;>8VHRq-}8PO5VD}f}T-wox!C?~j&0ME=>du4VNe+MT?R1XF=Oi+};uevOL+!~G* zjAM9l(*aPBR%94LMFa@DjPTPP6hy%Z3k)!W#$YCiPG^Z}-pDj>`X~sXcFAB33F(mm zT`X&~;as~}RHi^6i|sevQj^xu$Z&Xo1T`VeAVIU;fMkmpVl+BW#0rgM?e$#V=Ir8G zN9rz02FVhzq#OI{Ix-@cVnSSy5<~3k*Q*!D^ zZu^Nv&&h*lW!+WPW<&8(-_%QeDJL#Ybix&A7Pr2UH|P*nnuZ7(;+IaweUcXRQGwtM zlXu6n6$=EZ8K{c3O^u0bDililQ=m#Qcqa|K2XshhZWVM-BRNKUL?0;Y^pK}2}etoj*5lQ43J8A;bW^X zQvAL|R=#A0pkI`7ht)zk)K`vB{fsv>An`ysQt3S(hjvoDHxDvA8F8@_zsv=S_J9Fr>7$NJcA7dT@SV_-4^T%l%hNVOt{3YPKCzAYm`|N>C z046b<04_L#+LE##S%IGhejhi93|m8%4Md!H3@_shoeCXe!p@Ja;75}+^&^|}LaTx% z7_3QMW3i|&(hinyRfUiS)z*FHwRoD&`yPir{+Z!h2|0|TN$8xUczvf5Mjecl`uO&> z54h0Jayb+?(!j`LtuPX2s}~1l^Z`6(%FS*$B{I;kRFro<6Pi08_LcQek?(6lR3&Mv zX&Y9$la*IAN4K_X%|{Oz<-A-Jo>?TqgJci2b#|-!F|t^Vs~mT-oK5Lw7b|L0>bFlU zi%*)|{wkK1NBxDaN&sxIWDDP?!e#{Di_d;eK{bRVSOWjaLm(#xF_GtM0chJJ$>YO0 zpL{Ij%75Vr>b*H&n@j*xGH@=zT!=|W7RfVB)?pdEdC8$9c7*;x zdob?SS@~wG`rIELl&VTu9R2;(wN7YZY-M3KGPUXpVAHvygx0v=2)dKt)%1b$nf z_YkEt0#KDc_j5B>PGH*DKKlck8M{Gc2vyJ(7vVJ2L+on989EQpY+9Js>nL*YRJ ze93T`RTPXRq+-EE@#kJJX*H*#EG(c&Hj83z5OQOd;aZe@=YmJzO?;vrSo0-2;&61)YkHiY7U}QKldHUDAn`m|F-mf`g5)F zGdC5du1oqOBZ~#6cOxJV#BeIP&3*mi{{y{VoOxsM~s{|u4dgCXD*)&+PBcs7r!s2WlXO@|NN=fMdGi9 zk7Rtg(!%?#vEBwu_pAk_+Z(#UyJi>$LW`4;i&>4TU;bIUdJ2a3!W$#lQb{LREV$XJ zeA6d2yA4z2dHXS!-Z(m0om|r|^g9*<1DzuoD{PkR3}S9sV|p`2(R3;MKVwnvmMK)O z>4zGlCL=wd1gFll1|2k+5U(8_!G&Qj8pdA@HZQgv;fO9P?R}eFqF9qbn;>EAa&G}v zw|bx!_c)r2(VH?Gu{QDmx&!(=%X?`BMy6($8(Up1X!Cj(r%tD9?7HKB^gEW(>Ozbx zx>L08+mAI9MQ0lw?f1+!Z)-Zv4H$eWhkA$WH(TaguLa-kivqPChi3|(4!h%a`$KLz z6-1pa>HzrU25MUzm2n*21xiiZK*#_q7)ds4-bAGg##y$fmQnJtoCOmb6{r?~y02Xu z#)>tgXaABhf%-DldKHF#OID{R=rnt%32xS+M(sL?MQdaT{P;E7NMDJfRdC>&c`N-7 zW7>(dc^j}gUb7m=>6uDwrUqIks_dCs!x*KB^LL94nBo~UTUJ%*1jfwlFGb&9aA&m{ z;Cu|G9F{5-;5p8s=WewN?2rSjLbyG4FKOr10Cu3=UWu1#oLZe!+Ub#6sTtRaYIaf%`z7n(eS(T5SWkj(=EHv#wHauthO6DcCbAw zX#CZts&@Ic^p3Yq3(wgyWtTL`Y|x;#FiGq;wY7y#61%->zzG-9;0d_@>ZmQ(^74Du zmoY5c;C(#q+0CYWhvWhqz(L-`8s-Hmcn4+P3_t8aN_~s$b+6&b+UdWP^C48Uf3&=;RGFQ zlh#Y^QR}^juVUo79HLH;jCO~gRuW`N8!)2f`&rsJDn})bx|-5FEdM&x7v0Wj6g!k_ zIwQvxf%~+a?st94G z@?fKoU>SR?rM)e~pHC6JqQ@&i6Uok*dFMYpM#dzs%pN+Ew{Gx5OHcEDwm6%uV z%3CC|k_uKSsi-tIZIbXq4riP6-lZPrsn?=2&@$f!%(lb7&%zaO&(=4CyWqirRs&&c zOp57$CI7Q2x-ml)4svS~I+r)Bw{=|Nl9#$3wo; zpz*Vz&EY>uO!6pYuuNO_8M0+Y_>n5*$%5&YvrdlWGxZjVl%9IjMxVT9^ zF&h8Gz_w#F+O#HEDnX(-8cdicWE%E>Dz^RsuvI7XG{$gGByN>RxIUS3L<-=O-7Z{1 zcm(vTw`j@f>~t5GRlng|aJY7Lk14P7A?ajy)t)+awQ_Ejc)7UyJ|AVqon8}!R6E;S zcW_+Oi?>?Kbd#sK0}ZO{;-EpG8#}2gt*S1`k=kN8EnzbxpK_aOJ%6Pn94`GVkVSNg zdvP$5@-RW;MucqcSEkTXk}Cy*6B&+>HY!QwCzejqMzvi`qFwwZtgtsattz;U)|+o| zx0^rP?A;9RSe#aqL*4g{cXe1SYHycW{<+JSw95|_T^x~u>#T>iaf=9jD`&Eza@Ql> zDbqTv&6DoSi+3f#NS)y?o0X#NE0hIgqFy465pTxHE5^AfBq_-|oz~@L?9Pnr#q7bm2nZ+f5K|e*=H1HqOt9(fG5^AA%k@q zYwHG|H^N%_u{g4*z%`6wDm(d0a`BfI7YH-?#0QzSLd!Q*a-nY4lZU=2FUIZ zeLdrKyG=~YcB=BR*IHqSGxev)F?G5aw(#VZV=b@2IH0%ed?K5K-qZc(9Phc!q|?~d zV7mF3S%pjLv3z5jVtiOVAHprC7DZ|l3U@?M#TH+DD161`e4d&{`h4`cBsbgX64CNJ zLkYyovJxrP?pHPpaoD+ct5Z+T*3V!aMOME+d7JU(4rWr!EM&>A5zi5H9CwJk@WY;? zUd|@r6e{5hGb7)uf}t^m zenE`&K>3k|Twz63qwpbvA{W~Nku(bbr9wkEjX@9N3VPX)3Hc%0oC$4l63dzB@PFt% zV29N)#8mkWrN}hUN<^|;DcF=1x)+3uce)3EaQV22EDw4o4}>W#!()^bK_bUa5aVTb z9Tu%!+aG-#vF9Wi8w_wxdUu^?9GzT34RA#$R5|s8|&h}fn&VKcqFrTN7FwK^bWNV@{uTGd<<0Kq?2z0ELf3*BW61u2d>;5dQLFdl{d1=@Aw7~p^+UO6Ece=K-2fXJ1P>G)w6yxaR-je)}V z?Pp1eIRm@T1@B`VR=AsXKWi2=dFaJ-O0Js9oafQtjc)1B9Wd;;+#lRhPe=1pm+cG6t-9DWC|J zoB14y{zwO-(1CF~4d~!wOWs_DT8y)K06`QBU$ZDqOgsjlsiJY&p3?Y{J|+uZ+A4HO$F)W{6KsHdLLrlE(NQA1$oUmhr%do8sZYY;=%}u06ja zDNF5;bMiBMtNv?dSVeZyYQ<57xX+R0?C-jSOdq1%JtA9hAdM|vb+z9^})Ng zh<6@EAi6MPAP<_1bRiv=nw%i476Lh;a4n& z%|y%XqK%nf9Ve3H^Y^AovU4<9ZfRIGhaoI_YoPafq!Zt7i!;@ESgEV@^xBBCXyL@i zAxfH-bVp9;fR7_>2szcX>r!_&-gawYj~SFbNS11`ruDMM8!co4KMq&yzh1_Y*f1>= znN3{yKb;fBtKYup6DHshQ&e%M6{7e9f5q+0TyXmAit}gX{rpG2jyf41xTR&W!H>*Q z!shHU@FygD?t-;6r48WvPtL&*wCyn%Il~UF-M-w6XRvIT&+{>DB%6WSH>e z>_NqSgj*qCI$=y^u;PAKhz8El@Ya8unu*PyIb{UT8MSE(bVw3qk?<3HNJY{rsQqZZ z`IGXwjyp7E(Es4fOJ^#q?b^Jkc4gX)o1Nw#JnQV`#DqiHu8O1Wc-{x6@N3E{eR72Y zo@;**UghboAW3jg+n5|Qf0%|KbQ#YChpnX?vtL`UgQAlQMk8eriqUC(2sbOK^aPsc>pQ!`EZ~Im4PiQ&X`ZFdxM+p`b1*9 zuXhvW9aaaI2uZptAe}PcS^Q;r$^^*#LwpE%c_@{PR~}K_-;Y#^jha(}}Va98Y`MA=HJpd8=UNuzM~-!k@U-o!v$T9XRna;6jzE@>d# zEpN(5c{YX2iKI74Wm>PF?1S5#DN}&k_U|7TcPqVY{{wNypPvW0o2jCMZ4a}~8 zRaYVo5H18fds4qJ%0&7*0nNsU%zA9~=Zkcpp8V^J{ z97Z^^4Zg55l0=s&PPmq72g0oI6z;G~2Pg+Tlo*(^8Slh7@dxhAQz+mN!!yH+ zApTUb7iZ`2Qnm`n_Nvt9CsYKt^KfLYncQXtr-@BG#YFK~Z39|VJAL`Z7%`YiuM$2c_{jVfwu z=(rLN@tMA;g=0jv+yW4Fri)Y>Hljp@7RVW^b)L$;w&HU_$Eskz@R+Vt*O| zT#rIP;ZaM(nlbD^*|)|sDPIGS5t$W_*p03hZgfS@3RHh)y+Yat)yiEz!`=uTW{=OC zWhM{(Jj0!d&4n?ItrwkvTv}Ay!YPfYS2pEiPYyn4Xsusa^W}KXV!p-N)$?d$YGkXW#ONK=5 zwi2&)@iS0t@rf}bqws6TfU@w+KA4pDz|{W7o?~+8t*1Lwb#?DfhAdwVCkh3AA3(e4 zX`4EqKnyQtWzfJ<9#t^qLa)E6IE9wAzy^V)QM)UVb{~rKYS3%=$pww^}G*Iz9J$-5iuY&?d{r}~6$Xn!R;(V}}0<l@Oo(HZQclm#O?{UXSMC3q`Wps@QI zo;eQQH625u2?uDO@11_=|5La*=amJx2KgY)4R4R^Z&mi&^LXa+rjJL_N{^!>3Mfb! z8s-yxKYm^#qNNMkK)k*K3=9amaIy{3tpw0d{>I-wP1WZJs3Ze;=qK9?0`$GM&-?pn zj!n@TCD}{vV?yIaZ%-!f5&&cN;CrAQ>V#~nyGviFAoE}R`#{R5WF~l<&2xF(B@Xo<2bLYLLhr+Vni^=3-`>8SX{ZY|=5j8q#tazN9B$YOx>)>2vWHuv-W_>}3Tdgh|Z|7lX}pX~oT zzY|r7BXQ3dNl1{Z4=3nTFmQTo^%QR4$NwVPKp02xxt^q%1NZxm^&L}?=k_JnutkAD z;EQRyg8uv46NKz|8sXP81Ht#pi{97n?fh~47v`5v`k7FFAEE^8M3v(R&>1_rO|-6SZA#m>e5 zf^duT`dCdtvDm?}rISb%P;BaWFur=UzwjBzM>wQ3Iof1pQ%jpBC&o3zr~Y=t_6Q)H z20W+HXma^{OWc%UBIXV_&*@E}%EuDRYnPTkDXTajw=5Zvmkn){sye&O&hUKGxB6^8 z#oCDwrq<$<@A5hrYS~N*+LmG3Qe1ztpwTbBQ3XnJsi6H z)h=~lk4?iv3WC81!l;GTbek?s7IC{_l+o}U^q**tjy^+S)lMg3f;A{!Iewz36D?A4 zoQt)UY|3=Ve!p@B%ubbSulL=9P2JculrZ>BcQBi>G+gCSe_PYUH6sXyF;0V06 zI%fJbkME}<7ShQVN>Bq44ihq`WF>jOJdzD)^omI&CjPKL7wafhH{SN?Edcn5T^!r2D_zchibD! zry2jJwP0t1-YPa1*KrISM&?dNo|4r*7OB3CY`Zi%URFkk2Qea~FWmD+h!c~u89a)n zOC`33xZy8Q&A~t1875LINhH znwLZNiIQPGUt>P(#b%CdzW=tcK+q~7m9#l8(U^4auZfP+aYXU7*F_wTv%ljd3lR|~ zr{tykqG{tYCfOcBpuVnsr5I6!B6JSXVo;HB$8%pDCKpwmu5 ztYtWl`IUiNN>Az4vpoA!!!-U%jsuw33AFavZZaabw1z>_iz_^o(Wtsn(Hfm??L9z- zBX%Mkv4UeF4VzVd2JOUFnnNZq`(co_F1GV4tu3|JeD|S=5#>fO^O96(MRgE?e!@(Q zFPK%&he;zmyCs{W8Mt27X;+N>Le|G1z|+RsS|b@nTS3?1LU)`@!T&;?=6!(`E3<)e zr%k;Q*fwY==_!$o7z!xzCPmhWA`usxHrwu93y0?s=|3=>97l;Fi_EZ`{@DdG_M<^F z7^eLm5-5t=eWrS0U*`mw?dKvDQaMH01hbH;t8+$AIfyLxRfGLRO!FoDswCv!^e^P} z1e-vFgOX?~OMwVV0M?4Ngc+^y3QuTXfSwOGLY&DzV2fVzMjDC;=qByMdr~j9x8&6% zHNGyY0Cx{>QZ02INO0dM>jQ5|59Y99lv))O{^4=bZcf_s&0)$z(EnGJB%g@B6H0tveiED)F@M)L8I$MCukKF4uY_ zEPT|Td?^7JduP}?1uRs;9LC2INh=};)$T_bVJp7A{Qhcq1_km$5wrBPgUKW%i9@L1 zTB%Y5wTQ-0Zm{7RacA5_{CbE%ENJ(6hMUCU8i3yM6Ole@y@}gWFJjH^?QPAkz_+DU6l^4LG33 z=~AGt(kAUwS}^gxjewYz!C)n5PB_KBq{6$rU|t}Ks;s@8RvCJnX!-N!R)4bPMJRx z^pabCPvpUd`1j^MBB(yFTR+j9lu6I$(bagjt>Y9IW_;Wf-7#;mL&t}gdcQeVJ853d z3@l(ON-K~VA|cC2BO(kWHOC?1wBh3`VdU-S5r|uupmODB01yKT1DM6Javf#+GmT?W za-9pwMLTRY6zl?f-zI*~_#C|p+Fr%DrY)gTT7=Qs#Z%enV+roA*+baDMjDxyzszStFQ+YRWn$SEh5BEpK z$V8-y!fRJT0lYM}kWl-#z@be_D4*t0rAPAVn|*;!l=2QsLBD9^f;=U|aF8>vG@ z$O~z>BGO5bjq_COPyK^UC0H2OtFvP;e-8QG!3Y_q&ib|uD9{BG5`Fg%D5D}T9f>|s zHxySRq}q^QrOdhsmy*=UxL_`j^@G}iyjlRl5wWvtaK?ei(Qc!-wiCL*2%Ku1Y#Rm@ z@uLpTTne8(+>=mN2G;LxG#$yAXeFe?sqb@~#8xs7NkZ2It4N|_d?;1x7SaGvfv{Yn z-%%TIU?nO&DS0ZDQGnhWjch%9xR3>zh```n;r_a?-8YtIA1cgbBow+K9L7Wdj05H8 zVHME8YwR7QGi`lZ^zL+X2ozl3^|6f6u$Si>LM#U(Esf$U7RZ)+S)dZvNu zmTptV#kM%RB5nlqbW7~3s$yvY@qiyt{9FQ>pp3h8)r1sGeDL+&_ks(oD}kgdDEp-M z9XL(2ta@N395xW`4h3`X+wp83;Gg(b&u8?y1gA)>&dG+vT!^g8>r7B`0bBFGu==WsfmL8XK=Go5#{vO=_>8_xJ#tvp$3o;YF_Bt(=MuJDN6Yn5 z)g+?!8B@PK`KUgWT%Pf%DVJVra=qB@pLNaqe5ibMe0y`fqA7VApx->{s#-MEtR85% z-}IYD?x(rmgf`vNe0#LL-vm6iOXK5P3D9lX&zxo5Qi8`#m|hFo;iFtantJdIZudMbCn^K&2eRTbIS}6we zgDA>|6zf84ZM0^2o?FW4a!$HaHurXEt9urdudAT;*^{nyo8u5Ey6C7EL(X1$?w+fz zYG1ooS>5M1b7XS5I7cqi*%mxCl^S!but#-NA-jO$5$SDLTaco~%YdkqMT|tmX%S*P zOVnT56_3rifwYmAA|&YOW92tioYImfh7=+V-+OBpkLp%Bq6!I-|MD{TXybo)nO43Z zbWyK{l?*r1(LozYsv%FKH;OK-S6cTa@|_NB}=Q*C4q zNd>dGq?G)^CZY|K6HEDSZDqat+RAsWd5l^cT&Bfy{pz!oSv?N9kssCOQdE{#a$WY- z-~^=@TksIFMoKndPEj3n4`Q_x_e(2i{?^sXx`uh+jW}@G)eX&EOKcDG*@y3cLk z2Y|1`sJh4M8dW!LnQ6M1DAWS%oZ(*we{vEbvTk3~q&{C}WxZU6Yga?%wX&7hS$dAq zOzGI#D$+NA?%uQ&A^nFqDOzai?jMxjbd3t7i&^Dh`pyv~j{CHjgVdIPwRvKu>9Vi3 z2yeE8#(K``slB~QHx;|E(vi1OZ(!>0QD?>K6wvu%x0XS%#hVc=BMbRmO3Ur$>DM;F7dk}by)ZuEi-qm}t9o8MyD1*( zqHp6inkq89PqfjZhw2%Ibc>@w=_@gRH}PHW8fna0)^#>6fEPt-=kT*nU}BWV8s4u| z9(nvVvq>ybhK_*RD`-p8xp%eo+k|vWKc=Z*I7;(7{dyVz8{s#|{4ZSQSwB`Jr4{|d z8xUyt=>XRw2<{Iath5->T2mAeDUP`xQ&hlnem`8}B{Xb~ye|mWtg9I~4Mc>hotne2 zB0rAU)ZTEI_UV|~EyJ`Q-;KkvoVx@Svyv;bRH+ZsK#&4r&kB@S&Tk9^f3NUYwAc9} zOAY7cMhzKhmajYB#V&@e4sjX8#*?f2bDFSjX%k~sO_nhK}2zdTRNWZYwu1F{ATqJmsYX@2!+(4 zqmyC;ECm_=Z=D7Q(tn%=CQq+#V{kTS85aa*6%!BzbDu1*1*VsMK_BB4VzDGfhggNR zHM@Q<{Cl^FetQe7%=I?py8t?>IMclZDMUf;;cE0}LaTP&5Xx^!^3F-JTAwjldNsCT zVPpU1irA`$B%HGH+nqy5sS;06{f-eX8cyKrJp0qydd**AM;YjUA^9 znX~2liY43H4Ohfo7njZP^~Fbwe9eZW&3H*3AOjkDc$ff~8qU(s;1BPXmD3Af3zR0@GFcUOJOnlxg-4=(Pb>3}@QPAL<7iH`f^2 zU+dNzfIE(9*Di>>A0;vwT#hIuGB>AwOmB@&$i$KAdKi)ncOYa?VSUdMB81jXx^++N_98qY}T; zJu2C^5%*8yr;m`oe8^>Mhwoz>6GCG-r5JjPE0mTa+R_mD z#}nb&6}VQj3aXbgSWU#7#wVNK!-@v<0}Ygxe3fwp>IcLycH-?lK{Fd2;oD*`7ig=N zC;*~~FZO!eX}U)2n5$jz6ML6f=@rapASA5!Nmq#?Jy`uBJjjXpc=8PjewH6{noaF^ z4IGzqi4N>v;5>X!|8OiTVG$GV)f^Rnj|RyDV&E)(0Z*HbcMEh3qL&IMM)LCxXe3(8 zXmvc0CT%3Y!tE<6u2l5Pipd9H4%PRD)bg%74I53|jqy)Un|9enE-JT|sj&w&i=ds; zOVLDoVX((OOR_2d6QNN}%|Y2CYSdqZX4FJo>L#=u7&FlPGO%CGyf5i)hO#wBOQWv1UCeu>;<*;0Vm|od z$iO`U(`2@Ia)G|5#oX*}nidc#n!AHc&>^s?y3Ode@$6VSKacFr?fj_m zAnkv>^;czF>K}foi)GuCJT;zuN3%ND@vypHHSnc{%W6s0LKtI}s-;?ESrwg}k#;XU z?qkEx<#6Nnw0DZ@2B&GoK-%w|$=Kd^$2v@c_=i~mpVCi3AVEsmMk!mZMh}wj`{?0n8b)U!ev?&bnlRl-rjl@K(;_g>(vvXcv=_IM zhG?U<64be%P!QuXMvTEC1>kY19z;Q+*_JvFl5}-4i;`2X4O|5h545t_ShH_S{!lvQ@KgrYsjUHzh2K;3?Rm{=PW69#SWa zWEA#?UHa~DdWR^E#+q(P&&r)v5F4=V|ZZhkYSYE z38G|DL;G2DoQqUOHRf8QNpcbrP2tknBHPJl#6fczB zO*0XgC_~GAyn&#$X1^j}rW|f6|E1_=MpyotR%U;>jx51Y9dA8b`vm(1ZNpW4?&f|DEAEb;+rW%fPlMgd{I}c?=x5g`ki9XOS>^1&;i^lLiH=eZ-yZ? zD`wzo>`rg$1Ic?#=lzB~BU%MRz2Lad;nh5qpppk|3bH!mJ8WU586~QULWT_*s2Gop z(iVv3ScyGEf|BkRUyTQuxJHBA-*e%w(XZ!EK0&vT1Hrs)h6A?|?K)nbjAA;62*QJF z_b)`67$ncVjR~I$DVyWwF;VPoOrEURL)f+`Uv2({Ff=+V{zVwjWp737|6y)O1DG4I z_Y240{=?iLsi#Cy8lnlgm86?K%a~RpjpHy-hHFE=N2ZKbt5-sa4aKH%P05Qjmnsrv zO}*7x|7O>mtST97Ii=DG-!~5!>h^u3ER~hLAemIQw9Iczi3wp@0DHI@9w%I;LUQ!r%tPk0fj)v(p_V< z{oB6>{y;k42s%a~(}KT421Ayu1QT;Fe)_R_yu?3b=t>`S{oAf!2GyRGafWLYVJ50D z2q#jJKT<^L_nnG!%M5ASikLi8HMDfDC{^r~txrnWMy`~mjEv-aVQMkJJ;4MF8rio8 zpgE0wf`nIyHR8}zRTi_LI}gX+M}ScM4)Eb>Be?2e*lE72QJx4vA4e*5sIFVM(!~)q z_x2~N)1f6+SHZ zaoI#-;Ozy^Mm8E<0B9e>3tnaWtuly5U9RfJ;4iA=OClLnc&C;H6C~|ze(bjRVt?lS zyu56kw91>$`+6&1fa*hdBeQlipKXr+ZRl@hNgjnXu7?8C>$MGe8?{gT$}&9Z{Cqsz zhU8m8L6W+IM*kFrz)Xys#$Uo6C`T!#4-d1EhlTZeihsEup+U;1r{SgulKx3+lbG;zS7YCZ_ZkTi6z_-Plr((;uTUW(?FvpTK`5ArO|+2F@dYHrIPeHNnD zMST__Rnz*bEaU4cfcL9{^LiO9=7X)}Dr8#dZ&7L}yb|=#s;O>IImTj!C)M(6sD@nD zr=fs9hydyrV_pY+=9bycr4c+^&B7pkjYT@@h9FG(GB#CyLi=H1V01lHmSIIS^8C>n z*kvdie4i898`DlSIA?CWsIK_3A5rqa&<6IQaU#fcG8E37jdd2_uo;(f#M_Tm24*-dPBh|-nnZgGCj zV-qa*6TN|WUk|o~HDcN$xn2kgxGYVACbR`0P&bl8AfTA?xDV6yu2C@=>NeuvcXbG$USe4%P%Kt>$D6ei1lM)2)>Myo92(A-B6>3 z-SC8qmX&|Ytx24N^4}}>Sl6e@KRgz94?U-iyp8CS#~9e1b`v#+$sV4I4kFP{twXSk z(}#QILQ5~ z9VD@}8!v`P1a(C7of(%+5Bs4zwIeau;XFtolbokd`$Vn`r+Bc>z%_?JGfPY56rrhy#yzEW8 zZh8~+PHs(D4!kR7eBRJa0n!hf5g+@RYxH*tDX|CbV4H*whKXMs^bj@?*YDRK5u5GrF{+mz zFDV@Ay(SN%x<0?2&&$eP?VRp7ew`d0-M=g@Z+<+z%YF&i_XRjuSTYm)Z)5%{SX9Oe zSPl86*Zkc-Qt~Iw88fr#KX_B=c|DGb_?8=<|%Yy*bafdn%FVg zn*f1ueIk3jkv-7*Rc?`ZGG6 zc=OkttEC-|+w|JPn&(MfhQ6oK?Ju|ChW#Al1b4c@#@(K^zwUayXfzwA6YKKV1n5G) zv#KRbCiYSaOGX=Yy&yN^DPo;@-7%q=u56J5*>!$aN$ilOFc|?r9E_KLAP!4o30c0sHvr;5OtFaGL%;U;196=FC&Ur0ry>-0LDdnl zhN|7p_62l_hYHN|IOxC-!+UCshz{TMN%qeG*AN?0)4 z|NkW{?R@`d35x_T0OC;l|AIJF-rW8h;+XtQ{eKH_^!tl2kl{h4ZVL$~~`l5EIK~kxCOma7gs{nGZoQTEVa?r>|I0o$OdR z1o+V2(kM=mWR+#8wp2=Guo>@p`QRy_7cnRwIj~2>Z0Ry2C;1B(ws9Z5bgq4KSmmgs zoBZZn?T%bdth4yn!ooc?_`g|L7W~u|koW&uSU5NS+rm=N%ZnhnO9ih`?tf&PUz3B5 zwhk%Q031CREtc1e9;z_N)xhd-Q2u*2PZ>Bf$%I!n+Z&#J8JoZOAD5Wr7{4zu2{DnX zk!A_eZz8Wa`r0?FH{6awdgH%7rXVGPPlx{Z9v-FN&A(JENF#ELOk%`&m>P^JFr--H ze=aK}rrITI&LM@E*Z~`N;Rb&;?idf@NY-eKuoeuEX+NrpL+ebZma)P6u^7>@SQwyG z#F6z6BIU89bg@61ne(vI(?Tu1h_WTEr{YLT!qadp$O)1W0Y~JzfQx^_bmWv8qOz^TPvO$$=-I740dda zB)%WdD@-O$B*5dyn#hK0Ogujqo*!);tLB%|w6*ahiXe;q9MY?S&W6TGVvlCpX&6W> zQ)-<^6L-VBQCl9oBD`CKpdI924(Q7*0hbjoyiN8qjLuBdBFVz3=;VgI=p#)c>mtEh z4A#(!)KU)sTUfIgK>s>43Z#=*AoC;2MwN})i`iD~nlW+y06saL?bj0w5{<;M7a5(2 zSM>^aVHixhJ|kw2swfdN5iKze>5L@{8$$%EUt9j5jp9jlqAGqAsXQm5P_o2lurS`b zK(#=@D(aoCO#xGcxS?_fdKkL-kI9WTmnM6>)86NDT_(TDTGB4^<;Mt82hrp#p;KqP z{$$tMFUI$U=|XTQtiU5P!z1tKMIL~Eaa+bfaKXf4%r#Px4!jesvC=Ci$PGae#6-X!q%4o%1+g{L=u8~(@mFXOciF~{D%cP!a!-=vIHD7~% z3?VWF{nTb0qV`i`HjXi0o(<{yL<>=0%%(3Pagy{kC~yEtTVSp|T6JU|HnlOGpBxIx z=pWr|dpcw#OT%K=K%x|>mR%iBLlgF!PP>WFpGo(mxrIgX{mzg?QxMMRN+a=?<0dK_ zXI|zja_s@7;zCh6j@X$lac-Cui^GLj?MOhO#+SL&uJ#marrYfY2Vh}}NNF&Mc@FV^ zE&MlmhDIYV;8#dVi5TG4xTni}tf1TlSn^=lT77^vHoPgIjScGiyN%rua2YGJ9O|9A zPnViu;%Ia!eh*9j~l{UkxUkIsZ$;6yG0m$KE!nMLA4< z%D6JUn29VBIn6YM)12NXQEj3gqIXI+%fb(=vBfGL_6k&*>A|OZDZgJkFUXBgZOxel zfEOdX<9>Q0y z89}Cl7bVc=hfI;x-2=s1;ne7>xz~KlsH;|~IA#e@M_)+l`e;q<@OM1rQ`bl+_RIj0 z)KLo+qQGgF8bCEgN5U6JgZ<{sPKTkL#JWK-+4K!p!oI97G|oSNO1>CL6lO)uq97tN zY;?vhfzT^k*-R!XK?I60SZ%y~znPF}h(~q-rK-?jN8+1h0#&Jf8Vc+#=$Fbkk$?e1F4|04a(c&=Qf#4{Rz#eft@Y^s{hGwDrT-PfSu=>r*N=Bfdi$Fy@emiM%i}!>N&>ufTT4ioY`iQh6`G)>k#~c4w>J z%)AZ++yUw8PvhS@t%5} z#d9d!X2go-c_a?d(*n7UyA6E6D4Ku(=UgZ42_u(aWXR*QWtV<*J!%A5p^jy@%mh+_ zAjo>;7nM_j!67MZj-E#8v&958tMYYdn|xKs2t71&7c&Q6$${Rl3+;ssIDwC`!U#6! z-P>QEK2H$cvd0#wv6NTm&kwMOZcNR~-rf1>Hx~UuJaIV@>ystu%$a+60z|7@L8Exy z@l*;k?$J3vc+|?0?*>ymaPp^;2ZekCOjrq4$|bWDuW1r6c^X@oD42W^Qog=bVoy@g zpd)Ns%(0d?Q!aoej&hh*=-l6ADLlSAgPxC=e680au0m-MDp)44rvSH-kF24r-z;wS zxpwd5Ap=PY9HAEyI6J5S1eN}YGHciD;{icp_d!QEkqJ;o0HBU2MDmFe1SOC;g7D@D zPgGn-8Sid)pj!s5=o#gw<(XV5i>LAk7C7U0qB*xL2bu&idA5X&^OSb%#6|KHWP47l zD4AbZr?2#C`F?fE5WG{k9-M~8h8#*0^P^I!E3sl>CtY!ywmZbhC)8nl2Y+%@razLg zR&|XIm(VHEg95vnv3rd!5d&2;I~Pv>QM|^lx;k)2gZUMEtC-|#?XksgI8$&HIyN9&dL%Wz78-f>R&bg^yg7-Bt>~hrA0P z%`RLT&K6pl9|1c?hfd$$Ax)*eEPS|?e_X45>^i)~^n<4SpQRk|0-eR5#*ex~WH;yvUH){U-h zz1!b@+Ar(488CmFZBibNlb;^oa8OQ*hpC48US7kyi#F27FR$9c z6JpwTI}453o=&UlSWizQuPb>)!hWdU?B=OW_NyOdknZ4=<4?kRJ~u*v`QowEqr*J_ zkg%3`O7rha$$7Vb2mXQ=69VYQNEI|cWDXJY<%?6r%p<3(03VOXIb$SPmQ0^bYXsmV z)E-E(W~Y_70Ng9^fVnRqVQt<>9bI9z;KtVlKc0>|$(pf_(hT2QkrSZJ!?FCfY3bx@yr6zAzuq)+?${+o1Zf=~u8jzk3cLNwXd{wUa5@mVJ zXs)vIaiuP(E>lL8+&)nXtcuz;!_1G;8TyO0mb2;`;;PC1SM+9j*3nc|g`Ummz9$IBl$HuJ9Hg-0G&p&8io4!6D2mq1omzf<@LU(y6`?Dq2*?hI_ zgOE1gv-N{dXIWOYik$>^8V9E_o!1S3ZuM)2M`b08xQvCiF?FcQhWCMQbqO#?!8s3} zUtV1_u0nKcOJ2-yxS{1Q|rT=L-=>^a%JLv*@wHMzsO|N@wyk~X+ln!_a?_m~|nKr|`^lqtG zYwU^{c2XH=_sY~HP#sA7tcKzllrsGjP_s7@8e#8EWzkW^@a7M{2ZUEWEbr$FQXNi+ z&Qju|p<2f}P)5z^g?#d_X?eLF^MMfk?T~S11?eF2tCcbwQB~x}kA2$=8$r4%33d3s zixUBo-DFczg~jD4e$7Ynx2n+1dgN;v?klWQ>BX4t6pQI4_}$C&l>yA*lK)n)mi}F^ zehhAv2F)tG_|Tn~R?iv2&s`ZwN%D0NE(r~nPq^ox_IC^>KX4Au(iD-t)UA$eP2Lz^ zzcx$jD|cu(dtW{9vk`to5}1$?#TWYS#=HPdq&6l@S+L#c*virF<9ER|t=<%9dnRi~ z@&r9n$M;F4@a>?-M(`yzo^=CRxZ+MlY!@vGXNqr;H&74t!cLrp2($2h`LEY{1vUYRdh_KLNt_kE-!)&!prOHxA z@VpY;buwGIa|B0ao~1S3jf$r%{5;lW6j6i5^6<_`YXXNgwKc&YyOFSY9#s>SdBC@L zW;6Z<_Tbj9Sg!i3pVg&zGeqbs^x>U-wQ&{L=L_2)ajszs9~aad0naDNFrIwm?`eWR ziBRkm1yhGRU~B>Xv#npWv|t;xnwvS~-hsYlgU#=Rwb}n9tmgm;>-E)=tW`E?(9D^e zHkAWuNX|xwFGsPg;u?OF7%FHQ8he$5?M%H16CkCn9G2-KF2YccGxQ1xsxZwfLjr9mGHJZrn67zLC%O<@n zJWvf*(aXoaffY&@!2+t9qwP(1C zOMuiWTc<**C3t0ByGHhKBWXS&9y6m@!aL!)$-Q`0uCv6+Ve!3T0yBusQjh`Aum*Oi z5P-n3D7JplnbTm~Q4#BCaDUPOzhj+KY30BjI7N%o$S%bPC`gbD1gG;Vw9OWa2b8QT z@n)qd5IJI=X5bi0KF>NMteWqHYm9s28)iiT8rI|H*D2z)+m^FSI&sY;6bTzf#I2Sq znrzOZGNC?YEr&QGz!OZ<nb;|)6N-J zr#mI>>aV^Jj~qM_iZ3BimkO4EmKTS7+hd}>-w`FVH?Z?<+eOe18U4NG~!5%$&kU~ zwzne7<<=wZXyP zrz1sUgds!VU>C+tC?w^!g=2=1IlknJ-Ud6*evY1s8s)_V*`~%B$zzd0y@HPVL3k^V z@sHDxIh)>DkF^-@+)+M9kC_GF2+D=Y#JucM$IlsE*5mqV%cxNmH^r$;RboKLN^42{ zlE}kE-a*LPR|F(p;w&RMSuK3d-4Sd%W%~KL0QLl9C}5PR2n-Vtv8MQ+h_!5stnih= zBRjq60?ljGXC_oY#F|#$)k?>BO^Ug5T90!>jk>c8M^icDgR04%X8EyxU(6Vz1vW7@ z5zg5R9E9{T6C?H@)B#k+b#8H)wVnEEyY!BbE1U5UzGUKe#9Gn_ZkaK?0z{afQHe1u zCX<2;Y~r60Yoae(4{?p=Ze-@R2%m@8mH-j!H~bZ;jVO{8>UvV}`eUana;jml%KwR2 z@9$aT=!kE$Ky95()99t5=%^>v;zHJGgCLX0Ip4v|bDY38HJbn;)*6He^H{CtiPl&; z;>#I3k}BjEKd!CN{~57kr5o_}Qh*wFar@asl>`JkxIO>kOqvlgEHN+TvcWS(s5&49Y?s78(w^$B3St7c2(CuL#*n z{I=&LGW$Y7HsNs9cUs5tXg*$tZTQ6L{duG!vUC<(6$ucrc9M7=-(8>%Q1VhxS0nYeWi$)|XEfAl%tJUKY&m%O*SW!l?Eo0m!IIB1gv+(CkQwNYTr zDWXUR%It6mO3UdEZ5N%bK+x9evVX5A9B$MbVuC2MVG5UjP0eh;qo`cD(p0l*Y+}T09P{)%WKQ`y7TUN3&zhORr z65>fGVarUDnH6&V6K~i~n%;{C?r<<6(uU0iwUQk~xPeH8#gfZ0n|~r&j}FE*EK|Yp ze#|oNl}zPHn*4Q-xsrNtXp*8Uk>!W~O9WZ^#|>;5tNZhQ*r%+{^2DaKGh&bDuVNRE zc+-~4Q#@+z;hDSyJNtRBEoi`*>h`~^-`~%61mCe3*4w5sFc~o13ygj}iy&lc+uOrn zPUP(3x%pblj?|1x<=_&Oa^Jy3BbMG+S3O)!8g#j#2O}d40ZuEALN{|o+ZZ0~J{9R@ zvt6gynl-DumG)T7OGTJxD$Q+N)83~sG2t+|2Eb+O{jkEHHgAvXKdtFqm3Zw^AL3v_ zI!&)yaK346kWF?X8#o8Xe>%?s_VVpn?7zN(%fY^c`_eYpn6ETh zuwhK2)QTEf_Rbbc^Hy>n>F&e+7xww2FUSLjrW8rJX#(%S63&HUoc9u};R&}6onw7< zn(fm20rQ{V&N_!Av}r%#ecBH4IX|)p<4pDU0J!g;^oxSYS=o82}U@uafT1`MY60he0 z0n_q?l8C%!6q3WG3XKbWqib_{7>=2qY;yuZXHr#!O9gWqJNj1dW^-RvRI$I|S7}oS zaUM*8_7eyfNYK#M)^N@im>guk-!IwO*kKD_(cSCgh>ng;?-y$hgfHIQfeGu|%iB5# zRq1&ARBuYRbgDLG!=U+yAsw_XgQ72=CBO_I)8rpLGZ)^=e@(2-(}o;ZE*pc1>fR$( zDZfqnKIy+E`W(7`;(cE4ds<#!U4QB0dAy$7kDndq5xaL>x2;#~@85jpE;O43M5Ens zfig`^1{ZBTVl{92r2H&^aK0&F3zO{zUNQ%_b}1to!|)#EbV=XO`Q#a`>$fSL&3x8! zlVob<=z@8B%;|dbF5=EqH~yvJZ9yqNZeL--^TGhhv428 z4*`&}e#`i%^8Ps2-E9BJaot2u%kFQ>>3V)Y&&X@4YkG8jH?h53ecZ(Oc)ES*@`|CM zpxVf3sjZgeV{dDETu1E4)9M$!XMV?JP`!Hma`9~}YWmgb?Qp{FV0xW1TD^*9^Xb~n zjyZi6;>3hQF^C`F(Txt+4>>$s2(Du#qT52Dkr`#!hq)KJ;(YnxN?pOZ~ z>Ze~xG`C5UUlvhxi1+hTvU9%y#p>(rZ#l*9SzX|1zk>O@YnNd(iTJ z+f!y=vgm+8Kbf|{it;F~M|kioT;Smb>25ML%pV}%j9smAI$pM=XGga*KGp5Y?prQe z_erAfKFQc8h|G}@k+a68=leXn8AjivlyW;Pu^#)c4)u#JVw zL*VTz(Lb1hv}M1rR`yv|Ni5>md{@=nsyPp~qAP^Wz*8WPPGdjczEn7HRI&7+0bpRo2)n5C1C8l$Y zx3!;?S&V>?^+Khjq}9X14Cx8Jl7B~I?+7~$kDf*BJUh{Q`caQ#vbr%=Zoi@wdwG!w z|GR<8B*OuPpz|!snLoy~yOUuPMA5#es>j*Z@P=ytCkW2xSm6jmS2vJd%#VBf_8657 z*e@5KI-tVDY^HJ*RzQ%bPy{6-)CcLJq{!ny`L(tRKXGKAeac3#yC-eijoICiz3kk4 z?hdbd$bQW+EpgfS-Lb}v6t; z%UDkbYyVLi`*i1CIU(XQM=h&kggQHQepwDtxyG0hV#$h0O1Q!y5yG>sB9o^P%PzLc z7?crqnUQny7Vf;SM~bvhsG?-;$&o&PY0~r}*ffV+r^p?bIK1#ML?W$cZmw zwAHqq8En_V5YtmI$<-?BQM%+R$WbSc|4?yaKFxtY;wzhUpkf4zHYW%W}l@_E?>II7`BXQUd5tFaG&(~XR7Qft!g?ymwJ zT9q@t;6s`kzSgO9+=|~c(jk#qDg$?Qo}9fI2eO4*Y#IXBTCkmj3^7?QIBgIYYtS&n z(O~4;M=~oZfPBxj0m$^{y1g3nJerrBHPIh zH$_(XC|JSOj6u)#VISbm68h>&n7Ke%@G3W#h8~WhtGIWpLuXi)!=ZJtHfjn~!Ywt8 z{ZVe<05QPJoHS}$cO#@E?lH(KE}=lKHP+)XI4GCH)rAXTdYB8vNG|5DE0#-dIuKE8 zb(>i(C%XNLmS|h6U{@t|t*loYJ8#t=8Y|C|mk7rVYrjQ~d8VY8+BukXNpy`Ee*XHo z0Zg7yhsruolxc#BDAMvv&gBh3ZFD$aGb!D5tYa9NMPkFujh?X_#@v2sLWX9Kji{}a zaV*=yUM620$ti~KuSkTcsGHDX^Eqc2fI=vL^q54Ql?%H~ncmz%nQauZhl~YlyVuHi zW<^{SPt4{sg+%VJ!44wwUy|s=P4KznRHIQ1tPGPSRA!p(McsJDT;HorndOcRdi#e4 zGgsnr*^H0(ZxRrbh0|%Abxh)5=NbWd#>x@z%kk5+<-VloG4X+@>o_VS_#PDcKBhf* zu|bbI{TD=OY4yU$c~jH$_u*Vt=2mnf8Q@y+TvqY8e+=Hj0fRSO*r}je2iGj-Q&KpK zF-)hb&&*srCU!$i#Z`=n6DWxWI93mNo)Q8RLoA_HgPYy@AA5CNGaTiGP~Z>_GUhq{ z#uCf1#fg~~P&#DQ3H&}BSUuXoA$1?49=B<)g6SpNAtn2t?*q5(aTdmHl#m8d&;Bt3ppittHXZ?SRkxv86E5 zjSE4JO;;y^M)=T6>N&9Gp2N$yqWE+wEydN9_=Pr-c+>K9@be(G|OLrC&Piqtqp zcCTJwCj~@{(ATsJ7 z%`xZr`l_*;6!D?QdEpzNQkLHA+f7!tuY=d72+o~ao*sZjs zp?Scw($A5wj!;Wzc^&;mmk-13Uc6h&q7K3TX1>)S4*s!>n)l>cCFiY;jKzCC@5eZs z^rwLxHe8x)DJSw1uwsr`q@V^Vcf%yn>%Pd+vXF^Ej3mZ`tpJ`Pyp3PAY;A%jAaM&2 zz&a5}%61c!QSDDzW3;A{(K3~ySq5%ZkS#oiyB$|*kfs-6M&bSYs=ZVt1g>5*z+gdaoE5PEbFidj4)!`I)VBo*6 z@gVKP`wRGH_|lrwr&*@AILIOdz8~RJf^b8cVHmV^$HQ0S83DIL{~#f2hn1q-xMOd= z5(VAOmX^jA$8g|8;Aj{MQe6D|z}Y=(v1up*($aJ;q5JW;Q64=zb`KzXSFk)*D*GrA zmX*m!2|KFq!e+FB9c#Mk4lZxub*mjYT`h^7b0BI2b~DU$WLH+tq;iz6Ve`lqa~w@= zU0FqU2_w{gP17(U`9#HE)cHyHagl}7nL7eLvSQdg-jQSuc^C{PD9G}Yo?r3yX7d)n z+Kr4!y)lx^X=m`G9a0lf+{(FJ9xb9jFMN2Ee>k_iV|wcy)VwbmzExSOgwGcN*2=qz znFJ0BSk93Ca+aI*LZ@UE>XNJPngW-BH=sg59fGuX?rK8uUrKE-` z`jeiV?3XM!lAV`}HAC5OS|3Rc5fdJA9s0G*CSeAfcPgLOcay|S(LOhOPi-TsT3Pq? z1k=7W3X0C$eF7Uw#}%HZ&Pt(V%i#IVMEG&3^!tcn?f7kLn39gaLq6k)e-8O7c+Fn7 zDG^*^I(hNByc$$D*y$wR8%qP&HD=GfmFMeWen1hahWaq?k_`8KEm3I`4_1%NK6}LS z<}*m}M3@XdEJ6+TVpA72U83*0ALhNpui+}{>xZqOcw@rrGQ0ae>27mX()2X@hqy={xGB;(2co$AlHuOr~keXUMsX-H9J_+)adXBVL^ zrYxUn_S>7kO*>?nspTev+J*4qPxa&O7w;a9=rM`5+LxduH%JxU=}z6D)!fk$s^kaQ z279xGmGM=Ey8)hBjg{QD-ZhA@1-Q*+hO>cd^#&KR@MeU9GmjpfB}@;RJq?;bD9=Im z=s6r-DCl*WfrKYwr+L`k$2ajns zf`}D#>FS^B*)7xWrw)c5*zTr0UMij#&jy|6rY{WtAG+Q#NVcup)-Km7tF7t;u`0ntB|r55($6uAA14y{W8=F)5$cPL=Sc!xm`-rL3dei(T8lMTCo&`?1h^E- zZaQ0gd1e0CDN_9Os9LgjQ$f+7d?g`kOMCNBt*Efn1F}xkWMDsEs&(PfKOYZqxDZi_ zb(3kyD$TU86>ok-ir#46v>BdVN{qibv$5ikmn@k(-x=7ACE66@j@bxr#s023-7wE| zs@@jZh~>92#Tav@_NMb#wLNQ#>XYM@)Zb0U>?*~+;D9C#>5auH7#l%y8_Zdb)AsbM z_-XbU>gxoS_quckSJEur(*l(Uu|wvW7yt8<6OQsQ9yld_Ia!P4SNZ%!!`=V0?P6qyjDNd z3ZR8x)Jdmf4aqDb^l1f>^~EfO>NXmt!z0PBB(tBGY}J!)uUcB8^Bg>QyvB4G0=iHo z%iq7wXPXF7CTmH?4$mG;QCVuF`aNKW%0dlU`OAtWUsvJ1N8L2a5jp|?tZ#16RtL19 zrLv=3p{Js$_V=pT>ktXh{4m|JlCNiKqBI|mqeQ^rm_YH}Jwdf&(PXF`plPlG!-Ar6 zpR6-#^MI*>pYjk+6+TfpzpPIE0Ue|j$;sl8eR&*%q9T9JJf@*e^--&+cg(0cg`~GU zw=uk5K^MRZ?_8l)k_-bODPAG#(-z`llZe-0dY->>x&EalT#Uj(>lZfWE*)Xkd6I-I zdCv5RH=xWYRyM#SmrTU0mW0L$h5uYI0K}xo%@#lRK(1(E{AyvT=mINP{H7KV<1?og z)^rmknsSgaL!aiO@M>{?TeY?IqHpzJRJ%slrFl67YYUw_fu)NcgKZaoh=mo9Gk_)q z{Cuo!6$QJrr_?0GcKf!tCd2avJ+c7!O>>^J!slsqDHjC%sbz^_*4x@R4Kr5n(ip8> zG-#tUWs9lL-AThMPO0360vgh_?Uc4m@G8AO!};jNA;LpVJIscqZ?Q`(6lS&Qoh9~_ zvU(d~e_0|z3bkC4XSgzkK^W~U14&2niqv&Z%8JnQ)=b#c_DT(=eOA=gKTh@aLuO9( z2o#p@_832yc&$XXuTz}8)E@^quyU;f%pis3yUwTTBSX?na$}f%&BDv=aff=QYKr() zU`dV3ht*z2hPfZ3npa`_o)8rMosWFl%>+_?S;A?)l{{XXoxN^?Ei4Ln$vg!s6=^4H zDP3Qr)V>eA_c0(B06y7;OUOp*iy5ZTW#|6&=307h@M%~@iI7^&J;Li=w>iIRnj5E> z)YOJ4kB{z}j}X1An0KMMVqR*$LhS9+_9epQarV3D&=P#7i364I|7}(C96qd{PcQu5 zu|z8yC8gd~q^*gk=hv|H7h@dF%2nRPIAex!Om1&*b6>)@2QO{DGYX1j2tPEGW3%Ky zJNJj9RF`OD+;F}cH+TK^H(JOd@ZOs-|1a~IvlB;oBlHa5g1HfvOl%)ZZb958h*5gB z6!4O961bW=OM@RvSa)qBLHc%t2PMyu*nf5#k2YvWdpmA3}y zS*5&2$oL;d5gbC3{|35KPd9!x>m4^^tEYC(*@}e8rDW`3r{3mF=J@m1_h!hpvZf6S ztXl=Gaom05YGPv^w-{Put~!Q*7H(um?Pame{7Z4(ltpIiDL@BvVdBD&p;T>d!61`> z!)_~}36~&MU&+aRVRQ9~8vL^$J zNoQd-;g)C}Y^)uZtQ>q;qXJQ9^z%QmxQJ0n>cisQ6bEC-rDl&fZ;RwB*u^CEwdW7} zML#&jSWwMy$_P^_uEhee>eigroAcY>HQgnE16Pk?Gt#Xbpc0ysq~kaHk>#8JkSJMP zq&1ZY6HMhnsSOR8iAtfVI{xv}5uc@if;r;t1_DhHQrzD}!cfvqS|E@ZOAE6###*)X ztwe>Yw0tbyl`F?C7dSadRjYzuKkg2d%7Q~wI7DpKk7nCzOy=%@-$b-$%MAPfGPs@9 zn7e%XjM|tfUg%wnsytqc2R$H|>JgJ{A>wM?+?(hR8;!w0aDl=9_mRn@T=)20Rtk80 zxJZkdo&G8ZbLnkon;3^e@8&L@yau`IF z;1-Snl42+(P2!Y?-I5TIP1$gkahZRyl^U6vv3c8{g^g`ktxScsyuWE$Q~8|>oht>8 zyLwVel1XeM5H5U!``85mVvcTljXV6+*%zG~2UYTP450B`eg-#!)RxdW*j+m;Y)W z1|zJNgvoD02En*_=m{ppH7(w+&!1%RTFcEWuT{Nb7Z%V!k-uEs$(Kk>RGk*?OM#lS zBd_n5AATP2=)(FaVlXY?Hyf@vo}Hlq{}%>xmIuT7A@r+hlFCQ$Tiwr&qvXNt4}u>F zK6!L8Ym9$MDPBD9uN?rEF@)L{2?_FGAFHsy3QqL2iP5o~*0u0- z?oJ945i>dE!!|3nYa$!*2a$>Lx{@(S8EWn>k;WqcSf)BK$6#cwF~ z+|(J&?`v88nX1B{x1OcWM}=>~0I!-S3llU-60%nZ*3yy6%-%W7os?$nuCqyCfCVvD zL7&U0#5(PHVPsFe@7JjJzZLY z87d0qbcX+9DAv0vV@nMVNyBd8@YVTm7yN4|QuDApJ1q+Sx1l&0svpTBwV5sCrjmwi z{#?#4Q^BdzxyCV>x?5W0<8_X4^>d47CJ(G!}l9gRxLiNiXJVM0|C^E#gjns!aO(bo+c>Cyjnwt9{=60?t zLW}RH%hmIG?-feB`WNGN6)SXGP1@s|l7vv;0#Dhg7xY!(Lkx_;?$l&Kn;ENKbf*e8cX_eClTM~Z0s41+r+Vp^Re@(oB@e~W+7k=yQ2|)WVw~raD$yy{ zxLXd9QE8{*XBDCt&FuE_FMBr|lCGxMdo@zwz{qs?BEy+iLq^*K*pJe-E$^7fCh-`k z%=Q_n7A}Y_v8={Pc#cwDRp41Qfx9fWSPqx>kbBCeRw+#R8nLI{)U-^pHx{|rRE}Z}0XM4~@ z+tDB0vs&)!weXIHY7$MYzE5nTe=A9$<^`sSq8Aov_)n`~CbXPi#fGw0WaL4ravJZh zP9otL1W`I@ja#BGLoT{nR=)w6aSfE8ds^BR zVS7U>Cql0f zrz!F*daQbU;1i&2o&ymJ*$d}ULR85jt<0msCT*1Hn0sO(GCtFSA$7lr{DHjMC`#&4 z7F18GfNIru$)Z4(V-6IgH2E;vep@ibO6UZQlWZ?nlzsR6HBVOc$}=7JY*b;&0#Ji* zdpI;a08^i-Y`LtaTvn)|bmIqzL07nIS!=lzlR74qQ+DFSA0~~;$8UFggPjffTdq_Xtgg<3gJiN-6Ido}ewWhnv(vT{ zFtCe}P{ZI#XKyMVFD7+5|3QZj7PVhJ`dyqlpZKTMGu9M@1qRQoT|K;%5vzURf5ZbLS^6DO+c$9S7I0uRF;2_fEjKV$yCEsQL5){c|rnNbCG2%6GzX}+gUy=i1Q>&pvHOmlaaIfTbOI-QBm7M(KOrJ(H@F(O=e}n#Kq)b z!1_e%&vrBH8pPO|UG^5&?V%j3oh_}Fu3rtXC8{BH`c<-eNccS+`*u`A3WyTSt^w3^MSFp_RV?L2P~d3V7I@SIH}QS?)U>@65Tbdny+ zSWRi<;*1_-9{yTTHQvo(u^*>fNe zmC*DwAQZXnYH8}SP{=WghCDe>)#{Qhhl5PTV$KfdrcJ)GCZ~`}{7JMXkW0_#ktC?;WFxe%W!i9#Fd1HVFNg_I~zl`aEY@4Ll z1;0*RZ?NQOf;iOP&(ElYhlGI(FAmjXCvN1Mp~kC_yd)Y+Xh~c9Da;y5$^GbNRh81| zdQExcVgru_Bx@6Q8N6><54iM&fIX`s3B~7!d%0jtKU9l8Uld~PAkTF%KLNfi44?FD zoqmp~vEK(>NA%ofmWI$I@FpLwsn4=wF9ly>Us~rIPpazpoBpVveh;i@+ zVGLF3UA$J<4Z$-}+f39eAn>FOa{GQVAk!Gv%d+{Y!?E49_7R{TrCcnx?~TqXYEp-U zq}GoC6-z5KYD3#BjzAAZXs~G4>6mQeZuM(um$JXfg_cyBW~Tf|ElR&h(L{M<*f^u> zyDC4_BB>kla#Fny?ZbVGCqp>9aS@0Y0kQQSA3zGT#D&@x)gT@KT{cZytj{FQuU?ZV zi{LT-aY!Dev{$$Z)`~zmBcsRK`PhH|aq8@Z;Tkac*cRFN*z)f&Sqa%z~bgRJIO{24oj;j6B+q84odduh1 ztWSAiz`c0ea_bd)K zEVe5=Z4H!~PuAzID=A%Hn39zVVN-%xy|(-Ue~^pN%k#zxFpY&LX>Sv6B<$?M!FoNQ z*bLS48dD~Sg@p2l=whv~On){tF?c;TQ$m3HDB_ZwV)EANh3N%KgF+pWlc^n9ZgCVH z&M=TBiT_`oK&ha}beD^Ja2v{t9viaF!pwS|tHJ$p-HX3oZIgFS+CyIigP~ri)y5!H z*+lXkib=3`zt+dAmWawGJv#I-h8(9Xp2KFZ z{S6Z+caok7{D@GpYh>yYLKE*jA5+m(E(>Jp25V4*P2g?D0LdG)^la(vj+VYbJu6DE3; zEH$x8bn14XMHWjwXnrYhzF(H&M28p9qxzi1y0t$)xY4nrXPZn*V0me5$#Jo>#l>(Y z#{l^bAfGK?E@5z^&~+I#ilyn4OHwHHuC6kU%dO9JlR8!>lZV;kzwlP=;lp2M5{3CI zR0KXz$;}if!72Vc!LW^>c;aV?BWma?xfAQGnNLd++^hJLNlVTt>dW1LxGwHMTwmEe zr>PRrtS9=Bzg_^wM0paUTaee=*B6G==qVU292~A(I%rXwYTQ}jirnL4U#)Lvrs=%x z{}567%tH*QQOMoA(Y$<-;!i(FRQbMw<0u7p9-F(aRU~{slE} zAz-L)!1MLXFhn2&?iU zzja0R;=WVKgNl8nXjCP9XkUAGl4#zK8R}D5YH6g%Jg+!Mg@ z9xod-#x89v_=WQZ=sX77b_WG?0LD?U14bG49TD5fc^?1&f>9zK$qV`vVu_!|yAh z;+izbk#k(B^Z70wlii#^CxkIH=?bA6JI;jrKR^^#(^q8h{C|Kber1v#hq#`~$8OR> z_Rp7kmb&{piW$|hRgUp?#;(yzr+}iAT_HYaB1{z-r1|Q_X(@RS$yEGpg^JsvQ5Fvi zH^D9!S%{~#4T|+j=;*RT6^+sti+tPZG~Xo9_=G~4@EYmMn2*6qKDh~*;Im?)70{^a z`;#GS80qnt>W7uSgsz%!9%$P;ya?pss~eCZny>SHSDdQ9DBc@9?(hh48>xR2n`7rQ zNRIj#&RdJ%&SkP>F4rZUN{S3pQiMgXF>2#V6C|?|; zmZaR!Hu8|6$1*hFhHgOP4%YXbG;ZitW*ftVl&}<6^3tG$P}7+rK3;Z`)N-ah2-rqB zBqkY~L`u@s|Aw|#K9E7=*=@wZnMux?T!|bQbD_#f9b`jpgiT&ArHbJuVS`v8y()`j zJC5hLOc~6`nM4xMdX7?A8tvRz5t2V0V_DJ<{3n#fZASf{P*xT55Q1L53EO@*2M+AE zqT}#ue8o>-Ve2b43Wz4qq+<9OIlMh2j!BVtFX(vODiI@(5zig)9%>G00jW@#t~QYo zh`FOQEgFoSzd93?gcg{=_>9>!UjsT~IYA&)A}hbGW?c}!S%ieb16yCd(nN0UqX~6y zWTq8_OhbP&U+ssU8lXqdvk?BPj|#qX8UH5&=vjmb!=mice%NtN)ByD*wlh(Y{I9l7 zo$APBs3Rf+EjWK63$hgAV_sNm5FWl$nm2%F%^HaRTj5?boD7)i2qtQf29;Mrf6=Qn zsYt2UsV=-T;jI)uY7+ZOOIZnXg^!HVB!<{{+i{A`7Apa&k8}C$bbL~JB<5kr0=Zf%vs#aP2F}77GL1XOp}m2gw>L)u%TAmk1r_mJJ`%>bBg+quS0d{b z;OTO_(+(4ud6b+ALJ2m|h0w1dQv|HYs-#FS1)nZgg3T-gvDYRRN#D4w7#Ybf-8It> zIvQwF%%Va5#CNBdKiXDW%1?pP1Ptu<2u#b{7)jbgdJrQWlH0Gz!w@56qG} zmrj^o1NmE(`dDYulUxR zU*%173!we2PzuzmnZWPA*-?*8q-AG|Q&pXf1j!j^c{%wM*9HG#^p2>(sY#f21A&@^Ey^zV0fEM=Kz&S*XfG6CP*_qeR^uFg@(t|41;3F0} zz$oe6z#J(wNAMOzn@p{YCEG~E4ON^r=U`I&#CgC+J#?VK(UU!piXQ0wSKafOH2_}p zO5=EYFh23%npw1IqL^Loe9a zjC|r*w4E>tiiQG-bJ5g$X1MGYFLKYVtiID#+FsMfJW!tsR&xYlLrz zAYpW&Crs!sW5PL!$((}Ks4oi~t{DWJ?`1ks57utSDUp=!9{&B!-+;v&SKiK;6vFUK z&tI=vg2izS)P0JV%{;uN$^0hm^Iszp61hs3^*ncTK_THkYFUt{0s2i83TY!{|oTlOG`CtYidLM55lMS7w3n8LAwEvr|aWHTCgZm z+zV?v;8m!d;cz7l3A2X*ElP719x*JMk%lLblvlhZ{d0-+A&*DbzG4}0+XZW*`PeEF zDlHE5ckQns_uCIZ&Nf(7ARfzlSTY9LdCXZvb(4q+Y?S{80`Mk|s4A|lv4AaUq&EvQ zyJO&zW4Z^>(Q}8?`qw-JBYiSooB=>9z*Hmt7(P2<-rEJAuz-5mec2#@I%*K-ejj>y z8o&(s3;+|a&Hlc=GS>4!ro9cDQsgdAJjY=sF{kKfCGdy#HdSca?S>a+vl;~r`qkj;-$KTQ{KK^#5$3 zu|1!_d80Up7k-fvZGn@4RJ%>75&VK!!_|kH^?ep54KfW(4ig+sf@20dBx70ucik zUNK$f247VVx5e$&T_mE-rt<3BxXX-?Aj{*3C*~(waYc9NX@N!+5YPTQ)LfOdNS*PXY?M?H0_UJ70)v9 z4HaUav(dWOy#rX^bA2sRKf!;3l$>S(&e;SFP&6f#j1ZnIQH3B`3B+5t#?*_r+x*GnV zh)3?No+F0ihw!f8@J6+Z%;7s^>UGE{9@9*=zYUQCBM8Al2<=C9`!B~VGVw!)^vn* z;oAt#fgPhmz@;{}zA=Evfs+9p?5~CH;T+3YrtlsW#6Qm@OUNUNVcz$xixM!zt4kC` zMZ1=mqdg1{Dy+Id#7P~%&Mr}u13gElYKHO&X{M8=zmcJzP5udNOIUtRqbe01#ZMK$ zz*EmeHC1H82G+w1Ix)=@GIVc$%eDg@Qy-IKYj|BKJ{}^*o%L%8C&Pk~q-%BbfAh8* zY6J*?4-Hb8J!b2pa?lPUMF@wTrmWg+RaWunm6-X<0`FBD2|g}W&oB2+f-x6JvMEJ8 z<=0l}3D=s;`K4-sa@4j5N~Yb!4y7^afuHcl@QZIH2SjS82nKdGT{7n#W;$9rolx09 zocoP-d!{FwY}_b8=7fxGEtCL6#ZZmPirCz#>QPI>*x|~5{35zdSlSLI zIzd}>%mT0=6j35KIOY}Kqlg7)l&QhiE06Bk90RT(Tz?3>%shUDp#};m;5tamb1Xx` ze|n8{hcwIzM0zx?L75W@5Dbwbg@r1MTf03~gJpr}Cr0QuuNHSI_*&~W*gK2@mx0!D zx{9SGvz9ekj4S73gq^zs4Fy^`Ab+wr4Gbjp&0Vz_N5}Kmf@+Y2ReO!Aw z4&H<3r=0#_E9Ff9p5fC75GD!01-f0c2XE+|5Z2jv)!Gm{JWT@{N)Ycu0WA?}Q`LzJ zX3a6Nki(JEtL{F#+-=q8445_Dg}PX%!+`#sJ&{~p9bwwx{=y)1N}@F8VD#2G_*y5t ztMvV1n|Ij$;`Z5lGN4yeTHf_c3Lk2zhUEDp9@N+d+&=sysyc~Plp5fJ%6(j`&V0a( z<{5nY3=K9)r|4CFe1^VQ#to36uH{r z4XA4OKPf6zuH!OeQitPXo_+rCZKMO{+NnbcMcB^pJSV+r*5xrtJ@f!p6~JJR?4`&&oqh%``OAFiCNXp>Y;P7FVd$GEh%BF+)N*n{b) zr(Cap|ERd%{}BzqIDTv(ew%!fi|2ZpV)qv#%uqgLhdo)@r{5Godale4+bxUe+B91cGM*;`HYEcMw-dlg!f?9+JiXGd zc<)v4xGXDZpe($8n$7fAF>*-lsYNv5gR82YqYjNP@CccGVk60(uM-I>0bipuO~e7{ zi>54*!d-jNVDDXX6>LATD(WcsHuPFg0dF%UaNVa2pElU)cJ&ID@3%+HDelWJi^QhS z|BhBI$_32s%`<#vnaW5wwXIM%<%bKHBS9z)=i}TK@0!)j;qBM5qD9x$?eBt<4vBoq z`LW=g?dRtt4P5Z>Bh{AvqbKBL{^$u#COh;D$!})xy0pBTNMsJJ+v8-vZtls*Egnr2 z-*uuYwi3^Lnh0hq7J5*E6iaY)p2*j6lWTbQ8AF6R_`Yun|H)a|ngBrH;CCQISCoXC zEuS6JS3DZC5^XD-Hx#{b{fG)rl`gVk@9Mxb>y%1Y8zq&|JY?qgpgvNJ)8b4%^4qFF zP$YG%2E=42A7x5YBAD3I9LZf-wI7))u}$E)Iflo@2BF1qoS*>567u zN#qIt6&K=03Ge8LP+ZNjh7&#q<^ie83|&6#G(S!^pE+<;Zx^=`zV9isauOAGR`2(= zL!GlDM955NdYzrEP`lc7X9N<>Ozdc5BhUUyILQ)IpZz9$`>NECJ|y3+Kd zRrgmOWt^oqLbmz>by1j+{t*~zs8YitkyNHMv9oY+IxI)H($a->GXF1n*k6K0=wEs` z^6thImB#uT%8;1yOI5(`zo_A>p8#FAyj$PWT|vQ`_j@-FI?6y`@=9)L57~Np8f3~1 znGv52cH5hJgY8t6v_=oE$l@J77qK%<_r++%e1M7`>h4a&ml$fM2x&KFq|R434Q0%h zcj}3;4tBIo_Zr2uXOoLM*UQtvuO8udH!hM9>(v>-i$!Bk2<1Rp)Fk{{OJssX)usr8 zRH1`W@0i_V0_L{k8%tMjcD-hm1S9+4qC1V8iTg$P3dxu*Ae}McUFfsypoT>zoK{t4U(A6Y+P?t*RHI|VdlRN9vGMy zsJ69(Mf*<;^u&6*^|ZFyW@I)hOa6*B)?@3&N89nH^QmLduSBZz6R3@{bP@vN!Cc%J zygI1<=h!a_HQ?|lXCrsUz95UVT z%Wv5FH&+mhrwWTl0VEe4MN6@@rW7fb>H2kiGj8~xC>HUL8mkmxgtDJ#tKi-lDV4#z z-$e0Qjc`Bu>(v?M_x!Au=C!4381Zp_ek(5+%ogtqTl74@EPehiolMEN!NIb^dAl5y zr(4DNDf_6FZKA%OP*-Li+VVnM#9=A10r{6h6CSs}f=abcMaCYF6!zt08?^D|)$5Ay z`i+p}r*y+s=y-OC@vxvnb|e!f;`s}qHA$a{omFrQ2CK1BW7WX{VQQD_Ofq(Y!r1hDBwedZa~k1=Z#}b%*^l^M+aH7XJ36IcMbi+X|LhD?5HyxGFS175L*a0WdjhT_EwwftL7k2jM2 z^;{(fn~yXo+DWZ?&OT+(y2VDbNF5u#S|aps%suO@)K8@1_3+TD{voVwW+{O$o znKF`1Ij4&~4_=u=mp8J~T^Z77mvFbsW1I1EfTy!&qeai+Vf^4}*qY#^Ldg#jYpF(B z1ozWC5BV0dwc8^ULDh3R)yU^PO9E zHI;EkxL_2TUik!)Gg|EhXnJ{9hRad7EvDi)z_@#&KJ8bDRy@XgQ14%;A*Co!We;I0 ze#dmtd|L0bK24f@BmKIQ?!;8M@QS1ArWo%I+p0q(l23jnD@iejgol^`DLveB*xvps zHwME6h)4Gg$P??6q(tbQ$n99tQF2k)G{D}-_g&f%=gW*SvS}uiMiIV2{rPno6BSWl zYvD7EOA}L!qTPsxcL@qy2iI9@tu5nPOQy{F5U@C{@~DJrDaU9|Vz!jXmNtgyL`s(c z6tnP?iw-tzfDJo4$Yi?uWxD*XdEFa7vt)oqKUf3B8{f?>k;pId2EvFaLjx2uS6&^Z0ud~n(i ziSmbBYhn&;7+QgN~)j$&($<{2a4Znsr0P-0_D6O&UNk)(@}19CcBG$ zs;1t?h|Bs6Go^)3ClhuL(ME?GMsIH+7>`H0Up|h8y}pbTFpJnD)ND$<9GSVT!?Q7= zVKel$YirDBpfT@qGi9W~wZ@(|I>ndg+RV5^o$EJ4x-?oWM4T!%)w$rR6RK>;5EfBz zjwwVhh05Qy@14fo)iMab+;MGCtXr50E+f`q-od)84BDg`HYc;BU=7b3@gM~93=Qt) zOwNs>BZpI48R&no>kBy(8{+|cjuIlD`VVKJhZ=VzU*`R zaWeUkeyK1}0;6M21!@s^$8F?}%Xby3r`+$wNjIgDB|EtUDsk~lfL+419y`0{BFYEe z4{47gUj|Hh!ySR6IeG&ArLgtbBEkKI7A~7)@v=XHJ-wAi+2@^~B2J1GdFRQLSANBt zPu2#NF?7a^l4FHUk@coY`C^W5nonReZ_bNW_vLEsOB6N*QI8!YswKa$16AMxnv(Z< zTOr7ZdB6K+d`W5Em1j8`daMw!um=;w-0ufib*v3v%BvUuGDp9;$V^CgMumd3(qdXZ zB;OheM&?3JZ`kV|0SECCVooB0I+;&7&iP4fnVowQaG=AK%d8 z7V)Mae&$`2ZmUd0XzDrutf#MM#fg{4_n0nno_o$7H-G(V8Y%5z{NT)6WY7Lne1lMa zmv7S|+560UAK1&T|+*%@!wFWxS02(=8S(tFqCBn~TU7mdnZk~pJN!a}v7mxjG z<#fg0k5Y0Ev(BTAQ?$4NM3)|;MB;m<+~v?RW9Q}EHQPw@ zwa$H`*Ra^-0Gg6pByU?8k7gwOhZo3o^FvDqi5m(8Z`}agMv6XGjL^9uQp*w>HUc7j zVF>nH^Q4WP<0-O9o=2`$32^qt@t)S5Zi7gUUJ+z`xtj2Za@h?8Z%H%R@0cm}Oy2XK ztaZn7>5B+lQ02DV#I)2jpP({C<*nYOH^*9pCstz1DeUSX;a~H zHdSdB;2+XKqF*B5)Ll!;Rp2j5-k^DcYoRR11}biRtLwJLTxXQ6t=|+}^dLMrTi-X@ zv6)c2uC|DZTab3MWRis6GUs9DnuzQNQ42mk+Z;ya;0V#WDK6oGt4~4&Iy@UBsI6&7 z7naMp&lmOwF=-motAujB+lR`?%|b5pZ$A$D1=4!vGZ<|>ifF5!*a}wp8mv0pO`n^yM%IlQAY*TM~_IRG$k$tEQ3xH=`9_ZtNEiDc%~l}or0D#fxy z2)fvQ2LX%w&0#PxTeE4sSmbxb8b>ZNx9=+V-fheJTK8WBFevNeTj1CX0rI^3$OwXw z^5RHUPO|w*yV^MKRydq)iI4c|EaCbNL%H4^$s^7<^;CcySmh0Jb|pc-*3c5t#EFJfjic2n<3-^CVJLbqZyBEF>4O@8^z6&?lv6QsCDXZH?HL@TG zu%snXuJRj)(Y0Mvu9LcS;Fev!A3y%g3ZM-rIX>PUpb{WF)A?`|mq}aVn`7#iShm!T zaXWTAZ_JOOr7#(gM3?~2f(Da;gm&lypZb~59c8u6V`31(pK(iy@SH8JgO`!)rb>`< zCU6GDgCQyM-SjH{bp_#aT|3qv&8X>`PDd^R6_7V{9~Aa#wl(uATxl=m6nQ#o*xay& zy3A#{K88wjisquvT9uO9H9}7~rAnsQ5rua}wa}r$rv})DlQ)0K|M%-Ym}vV!c?U?rEQb zIV!7aDjM^~`ROV%KTG*QT%2v~j~1OesVG`Lr4Tw2Z^5h2&V^Nm_TW~MHJB0+Won}T zwdMF~7GlGC7pkxsWUV5U^ET!P?tH814_(M9s2@B1*)#QfOe8YTkCT0Q( zz1t~i&R;AjO%p+jwDr;`ubqj17Tt)cnXww*%2H_b@Z=WS3rfi19XrQqqRaJE+x8|= zony!jPnifOWk{3ZZTW?#j?(Mub&Aa+p6$_mx4~R?bhFm5tmnz8qyN$>+amE04Y6vr z+DAA9C84c06g4KUVg6*Gh(}Af5^!L)UWhERqTIT+6M@)|65FDG5?!`pW`V0op=$`bG7VeVly6xnVIw0S-*WRoZxGwnm+jqmlf`ynEBp z0Fz}F&4u)oa*DehBZld@^=O-w`9p)yZ-xQNNa^AM@=Z=3xgrJ|aUX9Tt-#jH_rqZE z8c=S=n5`+Byi6Y@9AF%0=Z7;U=w=NWjNiruXnU7)k@vkw5q&UO`Ly)y`+RfQP`)2M@3V5f7lSQ4tQ62@ zNAhG!Q-`vnlsx9DtgNpD?asb+l)^SZbaRz@R~PPxognAT9UrIAoEUZ6U%tu8CezsP zbasBrH(G#I{icvXh)N=~Q{*v=&5Im@8JEF}tYBIZE7LxP=hrM3(9}3P-2oa%tnez$dRYO zwN;EZ0k-cIE?8ZCY19}l1bqUE0)dZIcgS~FS_vrzg%qTLb{Rveff0q;gzS#hyig}t z+Xhm;c6_UTrc-jNNR=XanxyB0Vy!NuiQ)Vg>b8$HuO7uXMWPo3 zLmiA01`6-GE{ctm-je7TFDH5|V5MCDDJW3quYgk_&eE;E^?p{^sa;*cCV4Sfu+K-> zBJ-?JRpW#{Ggsh)XmgdIsmeRqF1YQ&K(KU_ih#K^2P?_iAdec#QpF?xJH2qx9i`On zRY}$I@t?Zu#&G}_9oCFz%xpkSP!?xn#M&YoinpqKuzydD3ib+))ZU;gjkV$_79_HY zklC;+0kK+VW^etAAmD?YRvz+w+L#drVgy8KDE9 z=^t4pfy@Vnz@uQk9KKaMO{4JT zKPAlCh{4{}=B31uWNxp_ZPvhz(5}m9&?fMluk+6)W3cHfq?}1AAn;?25xAk4+I@Yw z(0|gm=U$(opE(R*==6@Q09Ukg;^DLfVI>q8h!EzBxPU43=LMk)ed4c_+@D5is5+u6 ztM17N`=iZ2Qi?}R2sI0sga=~VTRDa5t#vru+)&nP@0#Ke&!!PTZ>-O!G|QK(A9{fb zX42coM8t0fHch-wr>Nn>a{s{i*4TQS-Z#wvBUP?c96GAer;S~dC z^tYIqs$e9w*H4o{Koe0R3dFV;Af2P=)x4+S?L;i~mI*^spFZf>H(P9;?sytaDGa3; zwzs`>7L-2%qg+{DtOX_07z$Jn(<0X9g{aaoXTr+c*n2qvBmp+_gah#JPqlAcD1Ao{ zM{6VOByGqDAtU==MOxcY#x>wfPGA;+?u}nyZpH@#q(KP@?C;H!cpHzSn!g*fM}dNJ zS#UbBu?SQL@_K?2YQRen|62K^VP!^c^)3gL&}1W0t7chxfuWQn#OOVpv?KNq7z&`4 zxH&fGb*XaH+|VJy(@oF?LumBo4>|%?0>?rY)&`?(&k8p3d=VqcLG)f;^rs84Lco_( ztwU+lS^}TRz)G8vnS~G^+H)OO^eNrTOIjqb1q`BA$-1X~8-TV)qnXne<#e<*5On{j zqd#!^E{5B?@hsh+!zvSgBz|81YqEbzAEHt3wodzE0Fp-F_#YcO5vM{f_>u9 zgCu%2^lH|Fg97Q=C@r%b36hSvuNUNwdfeR-GnMkwPji*4p=#NLf_F=mwXB==hRrIi zx?F+AAn`gkYIsW$vRDGPBg3GQey@!6q^C%;|9m{-V$44ONg)#P=)S|E0I0!>kt}go zgrFXm9Sz>y$1O=ejWfVOG-3bN)XYQ%YXx)+Y^M}~t6@zgM5VIQ&SlYh$fz-FcrS|{ zHO4klGPAZ#SJYn*a$UFsap*^_=F4EGS4mduB~d*OH&CmnR_p&M^GI~$bzmG?Q`0k4 z%@B0t`FAA7ji_K6(XZxFvc}!OzI$}Vg=NJE&qftimS({1)MK=h`dfe!|2>xXT2dW9 zl}r`j+{HEXrkmiT{@GUTA2g7v(T;W&yWiKpKC{==JI#7y?3Gc9&dNOUx#8c_Ir--aIP#n&OVyPGoV-WCSzQmto5 zT{BJ3=X3zP`equ49Kn4jA)#-TsL5Q(qEwZ`G9HXPbD^7j#%$at;PTw-B@kw6_c&tq zRsUUBg%TjWjZi=l!ZogRcL9OxI3JKwG^tt679)#%Nyu8wpRh3mK`3sBI4VY^uE4+L zr@BCEretysN*Zvai*KN4P_}aOC;-G@ zkI_wa_U86uxT?&K%Sz}C71?+7F_%*N=-V9_C9SB#$#}A>PEWn|bis=&-+hKc+KVQ?%#29l6@L zy5-2n)w#QE&M$p()Mk#)`=>MB>fP1kJ%RB<#4q{oN-%X6H>}TPbm_1JfyW6C412NNyDw+w)C0IZiYKo z3m-ggI@Te3C7iu|US3lJPtV6eO`9^jYnM?UtM7sDD2$un@qzgAUpvI3b$d2twN2+L z)+JOWivY87R3|ft{JHWBBe7Wog9Dk`=uX42ayI$m8)Z{1yZlMS~RtYj!^L_A8Eb95Pa0?rn ze8nkQY=&3Rn^)dd`35j9n;jW;zyH&I?8cj!&CAE*^?bEe$m9OKhcOaMc03xo)PCc= zI8u6s+VpnN@q6wg`Ep$0uB24Ki4-=utq;FlJYetQ{C3at z@g_Z;dYRt+ z)J510XhQ1sSxxjJ;2(fRNXi-b*~`pdpON7k@NH5*QrF!I%%l|G1B>^?5_o z<-zXag5S4XG<(0f3FU_cN8LJ}=~%1c|M*^YZmz z%Bkr~Ibz)O)Zfw7jr@Z2%^ra9htu;EAP3yx!{n<}T zTMC~A0AWAjw2&nm4sjuuK&dvPtP8Bqt~9PbA68djwpRW(y|3e%cY|Q?_tz`X3_s7C z>vCqT4{Tkd;mL z+E@m3sE!gy;0iyN*M&3tubVQq3t0wj-bOeLGzS}G-~C!n1AR#QbBGYADt292`hD~_ z15N_WDk@>`d9c3$f*Yc6jrP!zh1#thmnV&bwP4>40TZD_TpX~Y#%a7?JJ;s&3}8Mu z=7p=V%7$88>Ou8*ewL~tK@?tbIp+D11!ney<5Y(Uqw+Dca&w*y;*HOZ{rGwxZZ~Q$ zJzO6bzTS!%N(K5}oG*4oY^N{s9P9La-yi2zx*f02_mmMj9-k){k88*JzF!REmvB7u(zD6IQRLz#VcdbbaaVqI$6whKv>y2EGB zDgAvFv<0==W6OuFtMWSEKi@c>s{JQ-Z*VE)BFNwyW{j*|V@kt$ftU(M5l@!beJwln zNIS)}x8IHYNlIkSBcBbhS2#;Li}F;lGyWB#zG>wA=sVwN`#XnPD;&5TR`*gYgkk^F zlPI52;lP%)+@;`7#cb5}-EaQ%tmV6C_~Vj&**X1;Xp~kv;fUA8FpowZEWd!Bn05o2 zaF37#k(X#5C;c$R0fA7pSZ}|?Zpm5tRVlCE^D}ubIi5(hrtllV6I+gMcjZAN$}XJj zVH?f)ln!hIfzp1sNtVcxVg?goI3kG|lcYu{95wz6e!Vp{S=VA__D7O@lp_?sESG}J zl1?r{M5>M%rxM#Yaa1w7<%06&m-M7oo*`*sLOLV|qZE=uqX!3`03+?5SyjFmwb~f_ z8cU|10Z+A=!UD0Onn&PmhK%SZH(zC~wY+I<6-q8_nDLJj1Ko#_wkS)IRs$)nPBzQd zNrZlA_H9p_I;!@0l58nLV%(+PHRwj;k^-CA8^(c&+^$8ev}A2;Z78myC=0>6R8u7M z-+!)%E2&QgM39V z@ON~ZfQNp9smyIwwwytGp|O96w3TFsR26)wgJXmI0tzoitfR8mTuP{gF(nVtGScF} z`tP{9b!dCLVJaygH90J6lAcI_B2pfeBWbpxR;rbd_gbb@6U z?fa1Rrjq`9?{Kw>notO8Y}+*@Gd-i8ki}y5Ec{FM8`ALzk;?kQ=55CP)p1t6#=HU$ zHRao|BcmM}APND7ZKKHrQlFOL3insW{D3_Zo;IZnd}#9&0Qne`kR)HEZhk`3MNJxP zXQ?(Z&(yrh3O)kKBxM||V%|7{$pF9u)U<}-0`EC|5}VqZ3|-PV1x{-OHwT0wSAb>6 z$4KQ*^uG~`5)+tB5ime@)kMd@z8llYXC500rm^#`s|f@}MoWm~x7RE%l2e))%|BMT zE(7!mmVL}&fjFcq8HnzUqJd$jfMdy&Zvld!CWF?`qXcP2(51!es%c^J6CE@QKaWZv z@GhD1^$dTx0=-8Umq~Qa1LEqk7-X>}2#%SwDZqBCtB?JzUA~DyOh#X0&~|))NnR|> zVr(*@VTvJ?Gw!;|WP6H*?P|)}HS2e!9bw?(BBmHd3V^H`0rUO7>Zz&OsfLiGzA+|G zJ`Qm*#mTN^M~f)MJqr< z2y_gC6mUl+hQMbm2eWZe8)2R;s?(EBDNjA2^1jkN zacpfE0wN;o`y<*`B=f-3S%6^A1p?c*MOFPYGcAf6vB)@*lm!sSh#dzioR$DXk-k#a zxGFHtRE$$yZ!#AD!zEfQb56#j$EE26gFL&0SNQJBUZMaZMXo>`GD4{-=m=3<0g0Da zj6KYnzsIC2-I3-AH_A|$({k}3dIyv8xJhdpW`Ko z#OfRMe$0RjD1zY|)vY*Y(Tdk1BM%KB{wo@sXDekvc7N8Ot zgtbIVbCo9{L!&DL$5AKBFv@C37G4S45BR%HlW0oW;w7-OmJX5(q@yGTUPyj5hUkzi zWZwk=!lp@FJ|i4J3hdc?iWIweVB+{?^3pkQ;=77OjyDX?oW_^k6Y$KD==LydYW&)- zzHIJn`-?3t<_kIl6250lL2SQcw(qj!^^jhyiJCRe1GzLwsSd&2uPUm@2}P1JzWZ2- z`!rOXQf7}-<#=FcpcKk5W%s9>(vV`j8BWk_RCq>>5YBAf5`@_>ny7Z*_A_9>TGZHg zp7oCjrVqy4G-hqmXdTsCR>jGtXJpvT+OxbqulGs)l8*gdSz=HKF)*DH4!U zE_?FF2(QC7s@`UDy~vc>|9A-_pr9;?2nD|}d_30Me<%`5O5OM}%8ciz?ON-j;*k+` z=l5X>HTI6H@t3At@TpDaqqJ!r62-Kikc#y1YSt7+6ih7N@N~?#4uV7m5$~iTiJenk zSYl#*jG#s>NP1F9$w%YX`TBI|$~AaI3XWkD;)G?Yku%{@kvD~sDDIr=TCoGak5{lv z@9yoRE>zevR&=De)QN#I3LC1e?!zw0K37Sw-vTpbnIH z>tG7S5R*jmBNDbmP7|pCbemY#=znjCvie`~CPVYGXa2QS=P8E$h+AMu2|gNMwX8iQ z8$-zmp!f4>#8s54_UkR2sUoz`=b{K?;`bIh_|iTG>41rdbp=zEHPARKA>=4YqMzvq zkD{A+;__=CSu&zrE4f@7;}((ybhPk|ezPs-1DT#TQR!_^WX*>>WgPh$gZuzMrRL;@ zV4kR&vy(gA^i@lgf8sP@){Getq~sJS{SXlLgz%<)0Owj*CEs?)(vc?d_H-Sg>hVVS z5t*d3%7JLyquP8iX2lxeb5&?q=!b0xpc6Uh%Y;(E$DLCEKvc8nn#O><0XE+|Lktu+ z-130{Qyc;b)U~rubd(J9K$6R>AR4kv$~w?@-$8dmy}s|EJEwOz2OA~U6|Vcj<{OVr zwivzcFz6dB)H_u8ailksX$r=EH5YjSDdm$K(LNI>&jl39_m<3_<{bGd`dQ>=%)$s0 z&$LS=ORlWEV5CE^=Bu?B%Rh@p0lnF#BDL~Jnqn-MPLW}b1f)nwHOpl44{#nxu8X%J zGyi@bKk0FH9v6$gNw-$+>eB$W5be6)fp_rD)-a+nu}5TBj~NLu!U2a>a(b}UOV7Ys zEgGl1S1=!+>~XJWOB!o5qgx0O2ZNh86cBWhv62Rmx@Y1kD7`cU1(k%nNq37)^J8pyh=yjYL~Oi5IDXZ1Fu#usnxsqe+ts z@q}aohtreLhLJ$cFPW@8eou*zPmX#scZ8Y|T#08!CuxO=CzCE`l=Q6)zmueiNiC>a z(t^BMAiJ~pH+P`GiY;p&$QA-775%wql(ctE?AB@rIrMZE5tIr=!8J}E31Swg^3v`+ zVPQRdV^Mn!?P)`RF^)*hX~=nl6lP1(#+Eod-$CPZ~&JH}vhlIA|R%A9D4 zk|SWDv|h>bm!Mrf6oF)#e1x?z3Np@2AeBx;Rq8E3v+4st{kU#5pZX z*eQW07t!OVPNKMdASROOQ-(ygbrZ4mQlS_p&45J@+?9X{ElxHAq+O22G)hx( zjx@?DB&l+u5;mq1L{MlUxfIE4{3}E6Z(VeI0BmUb4@-!~i$1M!hu?@B>Ks|d(<<)S z6pitm-Vf_t%0HAzb3&5@IErb0*j~4xLit5llUYFA^IZ3*(}@gQXlSMo6j!0~ao}Q6 ztU$u3Vip`M-k9;bX4@nmkM{9#e<1I;swC@|}P?mQkap0?I}dw-D!qn<(dnWG*=&g9frU zy*?_acj~#@GH8{WB?d^_;8JjTOT)I$MH4=`-;Scc>t&HE<4%jUk zR7XTjimbQNu&#z>Fjn2om;dduAHSoZ=_eEkb*6%|Y`i|TJQRVUVuDslm?eZV(lU-C zWOf~4Rz(^=*upqBsPiUZN9% zGG`qlVqpj+%(!hnx-{gJ2}DA1Tq?5*K$`fT8^UF2CSE&5msD zEYwklL&8Own;4#@UO9~>8Vtvjl`TKlHN~d`JAXDI_3*kHc<36(^^R3+Ifq%uLSMK? z2tqX^NXk(ZyQWb&Ui`V7vbNs1M8CUsaj^z)? ze0_qOP`VTr&i$}?F51%Cv#ceBaFcH?_4*qiW|whX!Y&jEvk(o6-8Wm2B^mVcPi-R` zZ!5$=A@w$7JWdBU-BHroJJ@d>hCqj~2%IkG8EI3F*(DD#H1JeB+ur8_Q(V^O@dq5^ zw16I2%BbUjpxuIF6~=?r73Tme3G=8sB?M7R-Cso}N(X2(=9`DXG@t9KHC)6ANr$3Z zHVjtCnv$l8OH$0p#m$vXZ$phT_dQ@e1|-<19ZVD5#bIsSOwRUwzs#HwOi0bX|I+)$ ze21`Ld;Lb6x$VrUqsNyatRz(wG(qlLz~iRE3;&{G!sdOeA<{HZ>H3B;cHzADRMSKj z6+ow`;Q$WK$HIJ2q$5mDaPn8XUuEaLOu*Q%t6q0d9f~u$)15g+?2$PruL zK{Z(D6xF1+^xB}{PB1Go!)m(*Ib<{;ya=E zz6uo%fg1Z^7xeVJ>XycM?3!eeZFMLI`FX!6hny;WMBe9{8SBgrPQL_k#Fm^q-{^z@uH{^JgLXR}Qg+G4n=FgY$uh*62c z21P2pgv9UI)=kB(=*yW+(G!`8K8AaaM`AF_hzeSTLHd-CDoiaEKTGWp^PawmvZeJA z4v^=-FJ5Ji)9|Dm8Jt0oa5bNck}Y^`5q%arGQgETdU4HNVmULgc3{oo?NGRK%(5Hg zQZ$9oVMHoFqDSRd*$_fifRg-M#)x#&c?=fQ^6{1L-lwaz+5Y-)ZsPa_-A^cmlOu|o z)|ihPAviSX)*VW-D50wi;_YG`4MCN)owDci(7STKom8+Bf}~PT?7uQN7R8Bxp@e9O zF-DLDI|Uanqpm@GoV)MTN%sv`M2^Cf7LrE@mBfM}*27LmS(g3O0Y1HYGoM%;d>k7i z-iC@EXw6Sh`*TVxWmN@^P)Sop?njXe8|u(TyccLrXhwcfK2zFF;*^fmh}c+o#h{e_ zw8(o6Jr99q-wCWMIUQZZ`;E7B+I4*-Bo*zrK@BA>WIOuGENwLxoF(13uc^`Vwa#r; zsL>LMZ~5hS*w$qYVU}R}%a6XjUURTD9v1!CLp1EZ z7FK;|6@c%R=j~dJnUcZ=T1FVbhABdjPn5T5B9a8Bn>-8m{HsvIYAnTXDW2g$De^hP z2F)@sZj$}OMsab!AIV0NOVo~GA8VEpKTRaslr5KZ7-vvIZo@`tmnj8k`k-k`+mrfe zPTXbJ*7U;)I&1RjgBBpdg9N;j0J0WC3~39&@fmeA3;U!j*WLyFab1*uODQ)8G2(z94m<}H$_?Y#*-;vLpqemt>Vg^fkygI_vR=0KOXj7m)>8# zY#=UuLt$nyITll5P!^X78vf#4qGC}LY02U`-Wp~-x7Dbs_=!>Z#cNT~E8G@ElYvk( z6=I1vQC+U7S??#vN00cqrvRd~cXCxk_?g=R3k_snCl(wvP|-*5u_{vLz!d+W92 zvLwa6UAv|ghB^$6;0r@(Yff>G3dhtyb%)?1QCmDgzF=)i?hv&TmW0vAW)WCgWv8(A zmzqT=unKeb>CrdGMErECji981!jwwc1X6<3FD`1IWYyFQy0?dFB7MF?Z2d8$l?@yw496jUF@$eTSw z_8X+k=yet8{e0Lhz&>75S0vwxhtjQr++22H?XRyz*p>S4%F1);ReH)F3*qAQp%Y&9 zi;QjoeUcmXG(ijn@8R!4a(7Ix^D+yF$OJlSGo2`TEiO9Z;2#T-gD`+EHXr7kE^Pj6 zLi)eMziOq>6(w_sWDVIk9=@4CC(g|G0%&Ly#3Mtvo@LIj+ME%E0~kKQW&Xl#`55(! zQZgdcM^wG-^logF;B$c^LkYW06JYmy2>~j}X^XO22NlRTCvNsJRq+rZRDaxRgSy%+YJc>DyNi>?oKE2Nsz?Yd1XyG$A@Vup+!&KHm>@++z-BfR_tzCe>&wvxKM(fqbx2IiYWRMsnjS%4KSclI`L%) zrY2fH7g)V{bM>0Ff!{ERP6scm+|E-g_t^s+(OQ~|-f!U=bPhgDWvAkxa*d+6A?lGN znK}ch@G^0W4#!2}<9#Nks6C-up#~w$=MN{2Qwib@7NyXkhB7(=?Nb3=>N@a?WJVR! zBp~n@%#jBRVqitb03o^QDjxovAeTtY#6cV3FR?{nF!HBUwXTa;|xl1jlJ^!!bvJU^IQUwj=YK# z6UaW{{)!v<4&bRjRauCdN6yo*-1_FO%ZKo&D;v_--4ZiQk z{M7Y+@DN;i`#CSokRLmx$*uDB31){RCKk?q0T@#$fw&{^e|))a*4f1YJvQmjnwiJK z!|!x^K2ykV`*MWb7LLE(65^J4?I`SS%%9$_CxS2DKbUaz8ooWbak#NhG_J~rWKkAT zM8)XO=D?8R!wro8a`rqhyAeHY)esHc6I-F(qO+6b~oYIhz<@W*270vFd#P;%_| zVOE8hUL_z#tG-m{pZAXGBi(NFPXyqGh->g}2YDouoB6x8L3e~$qm-8I{_)v_SbGsw zsah(&g(xb0nGIaazs+mK@w3tO)Fw(xzjwZ#-ud}GAAR*d7zjq-^gb>-@pJiq>IdQA zzX@}3@qE6|-uw9>gNXzT0@aW6E2J4PLlXxF@xNGbR18el^O9W~fT(J}JYI6}MozDe zW&_t2s$=hH;33)O*?ahTG3C_-~djpmoYAP zmqVE`W)L?L32oTR?7l)02$a)!UpFehdF&xvYuv~9;lG|9^0%@gm}7GPP~CU0DlcJn+0!Fl2Y_6`g(1|YEx z&L|t_VFXW$Q~2;`toQS%AoyOWQ8+>!3ILiqz8dZ1#eSjyIU+jT-bp2kd%HMtIWU#7 zT#Ks!99fu3)r4re0{R;24w_#FJ9{=|J2nDGy}mtu_wcb_yu}nv|FPa~Q7WwZ7au!Q zN4Q7puwmWpH3%2AxUljf0DKrG+~yB{X%N5iU`CNMd;K{*poKB36<-9@3qr|-6$6?7 z84?rln)7JG%H}ALJsMTvq>iXDHj$i5>!80luOwfrsy)!P=vkQ zcOt;vlSaGQm>$_g81Y{0=*4l-kp63Vvz?D9eYHm!QP-D~$Lm=09WPG}-N(y4P4C6~ zTWb#d>5@R(^dj+P;A6F_@o1Hyi8#5EqmY%3ArLwD{L1zGK|6xPw*hJ!{SW)|Oep4WlW9r(3JjO%9@TOt##g?ui|?Dz#7 zrMPx?)rXKV-l~%L^p>w~H=&%_PwmJKD?Kd5W&Xc(c#C+9+YruxdSo& z`n`ASF7QH9)iN18IiuB`tGClNTKRN8`sL<&NWXBY6YL(O{j zb^!3B;8&034&OtU+PICqu>NW6jgj`7^Iq`t$$AsL&i`Mel|%a#7@7!LxB%EK9K4dx z5~WQ=`x|=2MtX*>3Ym&}Rz&XP56Lp@a+p*=1RM_X#G72z#_rxwM+J`bPM0;lv>q*y z8}x{c^b}pxBAZ_U^E%C)Nz?%uQ>hnaj)QesaDR8R@1^jpbuo-xf27UnVletV7kzaL z*|Zx_K2MU?=k|3J|MfL>dZdtQ zP>()?hYK5@9XkRpBy{@5PT~3;mw0A2g9ZPG#u7|(tGFR_vLIIW8n-4nI( z;heBP!*5MC6BmiK_b-Ls#une@6EW{9><-tw@g2%OQv!%Qh6tI(s_Evz5DW)N91;Nd z*8%S~#%+yD$BvY{D~yWVaO->aKqirtk@gO3TTHO4@VA{~!W(PVopGU0_r|XD@U5JS zE$svkB9C+d21UYs)KHT|=BWLYhd9sM#WypTd#fWqYkMb`K(> zbXBriWKxXQxB*i!p;_g0!Q%dllo@m6*6+~LDKG16{dO5NpA$|ES;&eB9`BQ5vPHx9ehiWhH?=H&7dFf-FO;j6ZKH zm*GCy1wVUbXp-2M-4Rk6)2OJn>qf-+pMC)67Mal4ZL2R=1Yw6b-UzA{NAVYHR6{Xm6!|NGyHzBV}8G90$kVi)o z7B=suke9=-PMfZg3}V=5B`WcHMcbtBHjLCTxfn-Zh6ZJ~EVVQ-d)#1ocKXO}j8yT) z*KZ62+^*Nt2ue`~#3n4(j2LClb=8I9?>7BBlCwv0b!IKhgHSi$>X>U6pU<=PKKtrS zySr@G3|>+h4*?VvkEpJWNk6s$TVq$aXt((J-hJ~;iez>CiOczJC%I1PFB$3JlAf0~ zjc?m(gyrwIXWB?ro2IL7&pVfOyI@AC86tnx8HG{on;7kUfKT(kkZ*ro2KlVG|4>73 z9IfJDy7yd$RBa_zL!)c<*)NV96wj_q;$X%yI+&XraAB_%&TLPGlsa$~qVE1gi{(>4 z#_u*z=X=jo0oEm$d7#V-X%Qvi53UBhL9;Mn6fytHA7mY2Bb0{3rmb{Y*fR^ykdt^m zkJ3JB?}0zWPrUES`wu6X%|@}PNwMer;}r%W$_=%N6~2#YOhjUZ9XeZ1hWj}}m5mRql&>EbF`Te_?e63LDtz_S zuf_-gO2bf!ZM$qpC?@Pl2CzIxIyWk(MYhTC%+&oz+tLdD;KKQ!+P;52*y&$fQhV8C z1tSD>xck+lZG&yz^oq_ks2w%YGta8@Lllq>_LvIWUy$`LdyNuA3_7CCc*paH=;U+l z5xqz2_T^wWMsz<@+q(1l_!Z<<_%&s*0pT5hCZ=W<{C_)zp2wa)x8HX6c70^sR_|-B zy|j~FyUJh4b-GFa%T@kwzi%R_tl$}#9rDeD5^9PA3Rj0oAzHA5h`%00ah|WnmT`Ry z=U=OI!b^>|-{CQMW2>-+l>ZZ}yuc->iuL`@Ca!APi>mlg&C5E#rxU~c;tO!yFsjZ@ z?9v9rGi`q;))+OO=h7UmE{;hIhs0bEmUnNOwo|+~M5}8DU;n+acJ6db=U%r~I9sO# zdP?vDu||c;2Y9l?HoP~lnVP}dNp4UIgEnfv32|7~uIGHho$!<|f%@B?;+OaBJ>1J5 zw&ruGIh(BV^&burl!Xm-GJ+KWveDGEdDM{PKS(9be<78m(`^4IQprU(TBsQDKafi5 zke2@-m8gLB{})op`t>Q=qDCWiOMh9Z(d7!BNwpppuxE`o-O}988`qHti`FL$hxge& zGj6n-#o-4zQ3lg-upOsp=UIPD)@Ew7%y%*Tltu5-I9?hG%YE4i;9+1${)>!=9YBvf zUASmM+@MX3$9yIo?W14n2TDAL12Be+0+K)EYof;x;iI@i9S%+hj`G-k7)o-J^sR^9OWkJav zM_1xtX_ANxG0B{VBHjpUy=~5QqT%v=RVk$vEm(r)Bfnp-e%jp*fY{SN2s%LN% z!o1o(4*-g+k>1Ies$-c1kVg#JFYneoN_?Qvox zh54gp{++z{`_+i){m7nB?(rOU;_K=MM^&o{LLfcDna|TCggMqS!y^>K#V{HV%{jHr z#D4>k3i0_@{jiv8jtYzEWpVgkJ-2DpbH!LPz=mHp-R5Hs_A zsSwXj``Y3eVMhaSpL5>bN~~?mt=>xfE^*!d6k|eEq|p^C!FJUEpM&O+2)@U&F06WG z1AFo0pUAFB59(Wp!FDWl)@p6J+2{L9vP-Uv2~~^k=jW)TxOAYIDPvcdQjD?unznEq zTrWLRE^ECBZ!Lvov%miGeq1irX6L1C`sZpvcXf2YHY){PlRhD4G)C5#K&m}P!$_8z z?TmeBi;mOm{oS=cmX>?uZDTh?v8vLS7c{QisZY>;CNTu{$0mQng$rUoab28mfieO!fkqqmn+OsIiuY1pHSpaG;f?OkK_ShO*A(eUWOJG5`u!9TGhn%@5O2*j zxy8dSJw}Fb4el>yu}06FaEpG^{yAkwdcmW(r`u9r673Caj zFjLoATtuWPysdPcrph9b*pT^-B~W!D-Gx5?n*C1it)BOhE+O?vis2yeVhof~2}D@9 zpd>dKe+^9{y3+BXMg?y=cjd2qe((h6N`x%3P)45VX3aBnm{M;r_g zY3mgQ)eAK+2d}DWNg|2s1oPGJBDk6>PMiuR6#G4`!apwFOKWpxzzwbgxL5vh@;InY z#}A;y?g|0(g;x%!^gkSu>1>ak=OLHb-2#QqaZGSIN34*=HOrSN)7_ZlA;tOfX|vu2Y=Oo`NwYx`Hv>Q$xJQKX2C_7bV=BT9 zgrxck{HY7*8ouhMA05NuSX_}B`fy_nt7;SXGrs|rcw`6@Ff=?Ex|*(f-1JnHaZr?C z`JkXsK%f<=SePm|MTFf49l5~Rp})zFbM2=rk{7vc9ykV2>Ex#dumY+oUI~XgQ_Jdr z+zsCnHjG`*{!xSrw1r%=f#HTQQ7q7#lwlWbMcj;@Q~rq90W-nq8+RE1W8k9<)3Axq z>z0c@48Fda^m99*cR68&7paU$R4B|R5Rp=4=i#s&SS6~6mj5FeGvTjYA=U{cmoSq9 z#e;-EOgWMLqi+kCk*&m;V;+ZZWttEoUQpG>aYGa(p(9?#Mw1!DWoka8cJ!FQeCpOw zx(Pf_7bE~0+V92dl^8H(j3Ci!D}OH&PHYhy4eKUZeCmWR)KL`69V{iw^>J|M#vXH5 z%-37xA70V2jBH52HU+4NN@6!nPT8C23oH@yT(*Al|0p($yAAT{u75{RIv8D=JI;vO*Re@a$$FYH@W+fqevD_gvDLyFunZ#K%W1&zjN$}2RzVDr)ax*h zT$5Y!4Q+9=)yW+hN%SC={RQ79tX86I_bYel(T_1FT`Y9DUMMP!fF@)BkerscBxXjr zY_`|wFi07_i*@(M!x_(hVJ-I-xm7|zF+ZL^FRUKg1)c^vjwn6sr$t8?_yJow>veeE z;E@ZCM2`i=qx$A1neqeGsI6Ro+EBe;IujUR`d@%81AK{u1{|#ZO+y4rum_O-CWk|) z+Uv_|JplzQH-oll!sWvvZzEgnVp;mhpE7|{dpys?K7nbE$~vDo{S$u(pQqId@jH>L zi8{2~_sBL6Ht~2)(JceAfc;-NjAjEVEC^lN*wb2jnCoNV_Cy))`E|)%%E_UM8JjV# zf5Wc}0aR06+tTM-*mUyCJ`69hn#K&|3`v0}&9r<4%tD?WY#FMxRj#>&kUEB5=^zai z9OeQj)N`mm#!;oh%4p+R+G93}%p8*mF)185SU947gBvFXls?Lvzt<;1>SptH_oJf> znJ(12(-NO01I>&CLtwlr0K8<$uKCzX^j;%KN5%oGJg$X;UO%8%I&!#0QUGr78QwG&X)p&Q)q2(J1A z)Lq#rtV~mibFoJlii`F^%ghy3ELC@M@k-YR&THN&5e{5a`%b7lc` z$U7t?vL8jj8cj<>TdBE!)XKHF0%>77otL(vN3v(B9I-M(RTc$NrZHM;j;Hf9N`#)w1#W`L5E>VXxS$X2a;fb1V>m^~y5ycEnbSIl66(vRil!|a^ zzhGb7ts@0>&*+tps$Ag83N>9~6rO+JzNT_C!IjaSK=AxAu_o*JlU&NNSD!=v*?C;@ zw9Y(WZ5pwWB8!SpUxNuf{pa;I8>rSzDq4Q7S((AWS{8sa5>*KiMIsyixKl+xD^;O% z&0`%akVXlsF3X~tvN*ai4>Q}Lg@~GaINd6iq$jyS5~vhXJfXcLW>U>X#K6sVaDZS) zW%uOol<~`LCP^+76vnUnEUIy=QKP&It=kZ5!Nb3)BMnwrIM;@S0Zll8f?7`$C){PP z?T8?EKv)W?>SB#nQJdKy0sa3(YRSZNQ76!P@{q!3JdSvBj0cCne0d~b=%Aub-@0b=icon) z(HKPDG$@)1ak>qO3Iy^*A7MS8)A!c!$%9FcP5R50h(EKC1_u}{5#ZJiNygI@1^1`3 zLvKdB#j3~){+tzUi(V>W2CEE4j14rKfCxmYvKZqCSaUU6FL^yKSJHo?B8ZmQ#BKv^qAz|>==TAd?7?|H&tMVIAqmkygZ2#(Af%u{mi-qE>Z~1;(VeC{a=nF6s1q??p$(TFu+roAc|6N-5|d zt{9`5L-I;%B+Uy`B9@n4ziQ|Bviqi0&if^XhTXQQ4*`x;#szU#yjSI0J6@+g(S?h$=xRHxES{$~g!Jo~VE8w1J z!k9j%@M5r(*Au|4rVC1oqehOy&jCZ)-%3r z??W!Jlv>mPq>2zgwl3yp#%BQ-l$mTB(0Bg9cHG&jDM}R2LZpNXoA=3-kRSbw1DVnI zY-Pzn8_|j&$)R|8E?93ea-e$N4)(O1B4jHKy4cC1%Yd}hgodWz}r=|n{kELY?os? zMDTL1;GoxO;DI`)U=q4H`{MV!-rgLEKZu;!`9k4+2(PbV828{ei8MErYH=4&U`66( z#%8zWIFmGj1!4g>t0#Z*ddghea*Hql1`&uSIH{9h>8Px1U}|J)Z1B-EyO^y?vX)p! z581PnC}5O}7?bmt7^mGw6j?-4{Jn35+0;rLn66c)V)#W;m4ubzFqM(2RTqT0wtN~w zy^NvV9SxOJh%gc##Wa>aA67Wn_rW9tZCbgOIsa%qcBtN_jnW+iX_AJT*c5~G;aeDn zE_m92y@&>4-0HN_&so@H3WU=LU>zSlVp1ok2^OoZ`s-1C)q0QcU2%2AA!Av|z86I3 zPe43zvn0@@;T{|ZdVk7i8YAFpTo3+jSps@E_f;S3bcu{#i9i8`=#ftYHZmt!(v}nf zN>h`ppd;8ONiS{KMF{3a%86Idm{mb(F2c9r==oFhN< z8_Umuf|o??mVX*lX9Wed`&^c*p&!O~o%fqeOO?+6qYr#uL2c<_EH~8p8F| zK>7+IPu0^JGq*ccWhcx>(TT=i;V)zEVDhnn($iH8LVpP>PGBEHw2!)=6ip;?a`@V>nKu}^)-$>~9!3WeJFPtER9~n)7+l;0 z+yJR3E-9%B>xh&tix-}~95X}I<*pu81<9XAj}Nt9 zk|K-~Xjx82oMz33Ad^Opde|T8>zoi{ouQ>QPE0h$_PomMP7e`~ z?JAbQ!7qMpVUoxdA}C6eex3@L(S%}Ghgoc}R>uUYA;U{mD^H@>mysyw8FQ%04&`@& zB7PA}5E~-h3v|?hj8=4%4~R?0-C1)bf|ocZ4ES`3^OMsNoKgTaDN)jzC~HF^tcz|L z8%Su*0IdFf8k_zjdC!hwnP95ut9s?@x{QRW2@5}k_30wubYcH&&00dHdzR9Cs~%uP`7%e9sKulUkP{HNJ?9fksGNQbb*?M{fme0yTi z5cC|^LC`DiPRP5ZN8n#@Oyo2#B}!!JO2as;{ox2v4rP*32XEo412Cy5{&x1Zp{f4N zvwn}&HXd|7pidqg6MSU zhqLAc-(yyVcDL`_FTg%gxm(<8$>j1SZh0ohr=#$Ax{eMaq$1pd*=81x>fid5FeMRU z`u7UU$@mMHWlwtP69B$w@{#yL>?Oc=gFdgGWtnGIzRbLtJ!+DBC)ZkN)O49878hV7 z_pfP_P_E!2C&JeDS}IEvW)O|+p7|Dni@7t}{mmP>6R9*xMGh_i`*3Q+7TMXY$Wj{k z5Kd6gfNt%V4}8tN)H5BtZf12Gwx97m)H&UpRA5`_f@-W-h8(vfuupWA5NkjUopKV* zRAuIt59d(X49crVT&!_n&uP5V1<`28OI-p@KIH8X5Y6>PSQfTlRICbeU(*M^Vs{%e zr43D^5=Z2w-ES_f(Pn*6s-teSJ~}d$@s0-Ui}=k{ZE8#86?HoFH^XJ{sd0r&L4HYz z$~*-Jr0U}JO&)J&`pER@ns2qL>~@R01*<=)F}RMCqq}PlO|Mnn%I_=m&&d0GTlhz% z(y8DAdoj}hbNK)0ddJ{Q+ArFBV%xTD+qP}np4iF6wrx8zNhY?POl;oq{pR_< z-%g$Lwd<;`tE*AH*KhB&T+UNTcCICys3)y+4m;BDcvE+5bTv>P#q1OFGHfL-GCU>@ z_Vx^9_j;dt=88b{qu?-(Q#L4q*Jl4L7NS>7ppn_nq$}6m&Y9&_&VF|w$+7mrAXKjz z#v6)=yD5oO{K`yL8Px_+%mOV^P=!9gTBe&e)0J&t=h`jQk}Tcg?^8u|sL^tiYVgMT z>a6iC^SR42FxP6(DmEGBE-IB!_mOGxEmk9~$o#gf<8I0{yxY*OFVhT$nr2^-ZjM8> zF<{=1=_xg|`M%!1dnpgpl7Z;{VQ2e}I`xG;l4^8pPTC}td6nqBr#I2pPja6aL)h&U z#Tq2gbD?;G)L|3$AHEok)2x)RUXPP*a&(W<fij+QzKEO%-*1@v0o%TGvlbMu2{2g~|>W1sk3hBwUc~8mWv;hvDD=?cFb85w_fP z1l+L#h!gEPVjo!AAh(AripxzYqW{8Z^Yrj+bu0qAYK zkWxy)rE|8)r2K0^rlcI@F^!|A{I~Ir-*+#s(;)0-9orAJqN>vPZ=tpH7Z+Dh+OJU6 zy1|Awi*}cf;Ub_MxJP^BB>e=N#mNcR(;+_G!@~SmiGIBsvGq366W%1V?+s~@ba0mb ze35gXde-{jJvM2>^v3?Q9cN3OYm%jyLNdB}I<<(n`LI>|PcDnmfAmt*8|xVp(r!JI z4)GkEL1l4UBp@`4ftKLrK4;oCVSb8}NL}4&OowMr%}y=#z4BBuBSTXnVk^FrV4yl= zmWXQxoGfO+v*Ly;sdn~XwrVpY3XO-1`(I~83~eGGjA_Sm0~>Qj?s+dQMz)tXF*OqZ zx>?fef+t(t=6c)pIYM}kDno2L*QsZMS9OUdlk}gh7p)nuK9*~au$mK+%0w#maP`*5 zE;x%4BL&a7K4tK5JqYieEDBfpokv2@@HKAg5~<3)ANN}^6k`_`_6Z*KYvLb1r@y#% zF+UftCHRVM0)xL?e59UEor&~xGZi(Ps_5Z}u|_?fO&33NAn0W8<#C2cJ9>6q$a|bmK0QY}K_N{%soRNDxclV_P@Y8)Z3399FD`q=( z@z%2Y7XrV`q1c8YE0nybQH1-#^grDr7vIp;0;oJO`ars^p0R`HwLU}bG=NFO{dhwA zPX2%)t)TTU`^VXxubr=;UKgSun#CWh4~VLt`cFB?jH5w^9_eX(~Av$-#NX~AczmL22<>mDaFqY{0Mo1{o@B@#5ni)shWy_7iUZvx3Y`w^Z{ejDE>4O^vSgsxpp#iXA} zK!}l*&5sDQt)AFT%bS90d`->GYnC?_F}!--KWYLW0>{!n^WGji4huXHu!S?&?{Btu z^RLpSZ9_3L57Dmh`@C((X4Rn*6=}`td7IUD0lm!)w!dwkqXBh~AZQ6xgq5{znL8b# z8w^5wue`*+>~5Yz?LtKv^=P&~LYqZUxuduuR&}l zp>3Mq3!jUrdsnBI%dJCrji0n30HQ?H=s zv*<6x__eO?IPC=EY|SZUz3NkT6Z|rMA1&PLCOE;dAGmxM{bSoyw<3F##Liul>I8RV z0=sX^L3NjJDtyvvw{=_Mx1?=%_PFxHR@z-U?4TSuOYb z71lI|lS0+YHay*S9Uft_#MbBB{na^;OjiZEL~0LH7Vvl6SFx9o(oi*dI5Ce!{7cZ8 zJqdR(FEGX5Qdqv1do`b9BSEbqFFz$>*}N8HLaBi7hkG>M4N4z{9&hC4q+KjHnp8Qc zNu+Fv5U~Uu?5tT3gjOEG8AHiyKEAFy5z8r;2!e<)1-rdl0kbh+^fV7t~k5={e)f;NfSq z38K#7R2y#(0f5kk`C=o)JWi+AlRWYyu)liU?%b6?KUWY-#~_ClvOEo?-|3I`;i{Ix zOn=a+AcF&&0p#V`dOfdrVibhN6>LSST)v9tlL=9q0t0> zS0hBhdudN|N5P0n=;!W!{W^i!S5ULCkS9i^5T;a0_DFJ7K-biPQ}6lfGknmuNIsmr zTw=Be2v(g$mNKJcXIr2f_W70UmtO{L2vNm9Mq6|3_IF5XHxPzJ2S*H>9xVj9URMp9 zL4)z-moO7DGD$E6*W|+)6Yo*g7pmc%i-p*)X$$Z}5f0UI>xCU#(NNPJswA7zY|3KW z;@(S7;2=9NvQ)T}c>Jg|YeGeb0(1z}TC+O0)0lFp6i36~ml*$$%>uoZ8e^)aHg1k0 zp(ieaTcj?Vd{W#d!cROe%|&@8+LitW52FMUig44T4}5=) zMY(DTm~3lOgC08jS0$%HogeQZ0*%>ZUCX|8jUOfhe~G|lB096+Ers5;phps~#(oZt z*>nt|*^K+_Sn5X`RTf#~jTs4^ik@33TM5-q}x z?_g1-VSPbOm2~bYEmDL*LajzS5R0#|+eUz8kVD7LaSxU{h)Ypan_x)7i6e%6EMin7 zqBW?4>>j@zC`C~i(pQ(qo=STdeZ?;I$RdM?hfj&LEEgfUws5x$k%FFH=N)#BN#d(@ z!3*E>7M@d^!}tF~h6cTllqg3Doqk80W<_HyRsv0loKlruXvy$$?jqkva{C-mvZ6Yg z@csJCFZ_c^9F*17MJ^!jWf}f9T*Hn(eS|2pF2gT2gWj_`|3#{ytuBL%H;AyT{Zr$X zIUePHPCLw`O`#q}O;xp_v6U;Hr2BGEaOF-_;XBH#?>LDBB5bY^J#^Wmau!t+OQem{ zI1YTc6YpUxz@;+-16wMjggnZey>^H^xsrb};aFUNei$5v6=eN&5UWs9O$)ivm12#- z7$`9W4$ywcjlkxR)5m7^uyY?csoEa?_}mHL@|A+7{9lwIBkE1@6K@ZGC>ANjiSa*- zz=OPBRhktBE6@53CKu{4@R}sqLl5&yE~I2iFj`h*Y>+dHyzo6ec!^yw<^g1;p9XN; zwd(tSE_tl>a7Z?^;ls>rSgAPO=!)YZS@tJYQz@#?WX&(&E>MVg8pXhMl6JtaC?*Tl zF!FUE6hic9eU3&y1z^@0^ofn@-+mx58e@TxtyAIV%JV=}lXE1{7&F@Nulk%AmtTIA z|GAXZQv}7drO|HIhx%85K3Me}L6H)l-pM~o@^w3lRhRj-E=xrClVR&G&mU+iwnc5@ z;G9&PCw3{gmF6Z{9p@%0xM?TjN-oLKR4pFAjO2sh{WTfz4nCHu_%)pUo_Gv*T>C~d z0i0<#9`Z&{4j2{~Tk(Y$>myJs79LA4#0cRrBm1nc;hmI74%iiUWrgkge5}SaH$-kxF%J)UlqSve>kc9zNjtA4(=!&vVyKEA64;3hT({@QSOhF-umwexb~38GFw-Zw(eeua!`Cn` zZ%sT!QWdWSVmX=JTSDH35ubi;<_*0Kxt_80QTgL?i<0O+>QSwxzc7+#=#~-UQdn9HyoN$PanOfg{@ecfYBBCuP=X1%pqJo@U26L zsXO!r@STiaJ-fRzrXM2-22)G=OZ6h2Gt3!LF)HSJ-c?@}4JzisVFD(MtyJM@2TZNE z)^I=BO$B;(Ff?)Hz!TxA2z?XB{g7hTeJivU#uy1o{|97AoCqBmn1T!s2%{uuAgu{O zK_5@`2yA}f@q1`K+|kGZOFnAPu9aac1kzCRUxUIhbM0AuQqHo=yhYNZ7|;y-Cy@)} z#2*^-!%X&6GtPg@I8}Q1w85bES1>aECyQMqsab`}{ug~G5(|CGHKUc&q508QvVVRL zl2t)VK?eqfa0T|#_+Ri{X{xlOT!>)7G+1v~{q9Z&S0ne!!P2CSWT+CYX;@jaU za&Pk#GNLlafc`PJ*(a5IMv1v0%}wf%iflc&^28Hfm;ArvD5K*tUKVdB0zbgayj4!b zUTh6;u(JL2EoA-u8WMZAH1C}eLG1hX5MB)BOOeqCEq`$BP{8cijx(gZws`Q0jJk(R zEBDI1xA3f;ep?>H*;Z0y%hZdqhG-AFQp>z7+GmT%NXZL!x~=SE>2(Mz$l3M9>?k{R zTFlfSOQiqtv9wVbqg#FkJ06{XE=C#*A978pQ(i)rvOsUd{7;ypfM{5L)l;+O&5B@2 z7x;yNsWF{dtnTXklnhuviRpZys0y@4cxynT?{?{#bRr-vg@81|{-DxRBoN!Q|*EguN zw1X>Z+(o<-Jyn&&Uxi*dK2wp_%Y3*044E|%lgt5P}68H2@1pZwr zWI3oY=JPs(6k$tSh>fNN=m>zUJ zt)+5vpW9?s28#o0?;q19F65eKj3P2m%MhzKRGI3UB+@qyts(Q)QL-zrxG4Y`iEuz$7TbWIIo91yciAB@Q;r|-wZVoI<}0~Y$A>j}{}R*s_% z5qHx!w~NbMp~w7Jqjy&ve_xb1w(EVHSM$7GvA42r_9IxS_@J2V$X)-yHw@6=Wg}|C3zKm@PdhO`uUIDSSMl;A10j%ij4+3C~nyR z#dURblaJwU@uQT{$`^HN$b8R(q2WlnLJZiRrrT~UYb-kz z5Jo%}n7l*Jt;lpYgT?D}N^m}SY;I~VxfS8MJkgHrN`Tfmx|?wYuF?X`V@^tkp^``? zIKE4@JE06Fyib$(@DZ#86`zQ_DhNl{v`j>g-O&l1P2&_gD~BkKhTQ3O9WHI23xb~q z0Ua1l%|Gjf25MjEhc0m`by6kW*v4NRJi4-XBMDc-fql8lyA_e2IHBkU%uss!NY2|* zgtI9kfPbZVwv#vWTv{B@(;ZKYQfFEk_4hkG&L(YsO+76}UOvecl&}|5I$MBqgbuo_ z=Ci56Ml=QYZae*+e@RgX*=#7QjW-ijK44#j3J!}d5q^Sgv3V=h$1^Owmj4O&7Udl@ zMsN8_H^par5^jPo9Be(Vri>gd2xnt}086a#dd6dghJHs^ErnSN$_^T~@1@tK(Yti> z6Lb})d5`>(ChIc0hYy37_>R(Kr$Y!YcAxcQ2g(Q|Y1#;@Jj8ISRyZ1Sx$d5!SwE@| zMo0ML$;g&tOs*chQowr-R37{pWPg{zpG)d@QXJbQjJotwE~>2xez$w=V=UTiuddI- zp}Ja&nx{+h32`t+Pkv5*bmH&~BjEG>D?zfd@WI&i~;+cBBCo?O)z> zAG`cBWzQEd43fW(7%M!{pfP zS_@R&Aj6y=CwD`-GN#=p(UdfXsSWi`Oh7xNpvi~GU4ysTnpuADA*F@S2l-wyr5CcA z5o2;9+Et<|Dn=#r84qKKM~v-(cdX4%QsJiHE^ei+FQ?~lh)pSFbh&r)Uk%lx>I0$Z z-~{MW88!OsXg4wV^_VgvLWf-eAObKu_5Sv37=gCCRrgFcU3(%2~FX zQoz&IM?%ELqP%+p&zP4%nfC*7!smNev>_5h1X}XgHX#7Wl?39tNqi+#Y~yy1=@W)2v&A_^ zK35j6QrjnUy@{fE61(I!Swe?)>ekk|`2SU5ZDrQAyUMn>>l82_ZhR~?R2!=CEUU_^3b@AT0MVmiR% zC%uzRB^Gp~)|u+CqWt`_CT@|P2^|$%#lZ|8& zuVq+%`7UC_50TB4fpQ<8*5v7-EtRg~zn^d8J>r(zb!!Wmf26pIrG_~)ozDT4<-z-B z(pXe-WSEo7lJ=fJO{McP&wAVmx?O-YAbvuM=_h52?>$3X!0TzVfh6FNgRKskeaf8zK!(y~+4WDAiOEMAnAHadzKOXiN+JAqdM6?#8qR159M@%WLmF9;g{ z`LII7cjcl>iOb!mX=AHJuzjH+cSkN0>n7{{a`*hKT|ELabDD*=7?f;fyl@Z)QwHU* zwj{ONL&!apYGv~E@*ip>HP(-4q$o{amd7GO8?&4*L z2UU}fAKI)hm(Pd!=zy!9$AwsLd}4mOZIsw2i1d6f3)7YAR0&#?1y09aB>U5Jm6f?c zd^DRNZfo-UE3`!I=WnZd!HVrbADVO^iq>sP%h*Pz1YSvfh{l|ywP9glJshSD8vxGq zXsBqtSXg~|H);NOe~#sL8P|{=Hz~4-L%;a9l^wtPcL*Y4&8O**(H!=p;mr5a^W4R> z>TL`(R~njlN$cpjLVXyMA)LolT;}1pgbkcPp|VyJW#)=Bv(K|+8v@DQ?vuqk?$c@f zg>GF}M%$4<4puHR+)hmGhB7PW4`tnaEuHGw$(%t)KS3C8*oag2Gt0*JNwV>|wb!9L z8(PdLze{wBqmv50mo4|Flly2=j}X2aqgH}Wl#w5fxZwh^_w}fV_BYM4B(eNP>K@rO zF$-GCB?(}?r~0`jee#78Ec9OIl+D~*nD+g=@VYi&(+Aw&z{vqnLZk)r5G3f9_-j&f_W;m$ z2lat1)Z^7oH`seP1{j-7^y$hjJaZgz9PB5(Xsb?-$#ktzn+52&=CKN{Odp-BO<0_5 z>2d&K;cks!fmI*(Zt0o07LH|}^bP8Q#D9;^Qn3-UzyK3a6=~F(fRQTB>bu!VI=9rC zQJDHgA;#5`BRe_OWl>$L*97e#)p&-@-Q$CmwOw2;&x9{QFwzV_eObqJcwKNh~8dryM$4GpCyB4L6T=wVm$teon02(f$Nj=h@}$ zo!jfS$IdQBuPQ=IJGa^82W=sUx8gv11~F^KlX$UAnlpjbA9MUPvhStbbOpMJ+?<#o zV_!j<(Ejx(kCPQKVTpBa@Y89-F7Ur?_aAJA90LFp1cZ#|Pt}5N9^tPZQ4wA@r0@}l zn7U=Z;a0It-Oz*dMv?y`zGC(hrV`q{OxDo~Pe8)#du(_$RI%UeQW6W${OURu0$Kajs$ntu^JPwtB4*SMir`L?&>@R+s^Z=)z3 zi@{Az#gLA`yF6Pmp&NsNUH!-8(-eB7anCNXM-6I6=S2NyP%nw1++YQHxW)gUMBYSG zr<6I@I~me1KaRaeWQ2R6kGDw z6jY;tp3TvyDOilZ-1PUInJSb=e;v!kZ3CR^dX?;{4Vj+)L+^7Xu(BWwR43lz6LR$l zs9+bbH9-o!=9KVmbu&IWkXU_+Wth%$VpeUQ61yI==L7E&z=Mz8O|c{O^+E58MpLsO za;~+1(%M*CK6FTLAsCh%9K0;oy-7L}bTmins);XZYJP5h8L$_~4&7adJFKXyTOS&z zTt0grU$BM*uK7t_<4p`Lfl3w3vu&;bI&FlPi{NpG2nghiGR3ahoxW3q@Xkl!y-nIZ zcJ$3}#!mVlV<-E&th>VG=I}qp9&QKt{~7y5Eg<6HM-59a>{Zp8p<#(RLlbHNmpTt- zEi$bugr-}}kT1>xDXv9Av+JaF>hUoi`$SY2UZu)JlLN=Zl{I>pd4CJ8MH6Xv%_=po z%!$Y7;_r0VI_W+5aZ@4XaoaH&o+lkE*Bn?z(6_W@%I>bAU)g2>X_;xCp*C3(&KeEhN#d)y8{E zyD(6wun;=a%mf^NL+3RB4-KaV-hXS3iUSoHk56Vm!V=D z7KIFSYuYb^{}?@PNWLC_8#nSsYMf#zNSYbH-VR3o%AGX10mW?9&kcT9-v}R<{ry-( zi&SU?o~fKDXO5R%?ZG#}3Wb*!o$exn&?e3{t|2XnET@e~;XbRx=FfaVXEd=q&A`;r zw!QYDp)bHz=+|SYApABZJ357&!Qy6>fHiAzLV7V{avb1N zYe3~qF4n{Fm5FkJq$wP}Ie(=NBReC`A1&>>FZta4Ic-Q4u~ zL6OmN@&uj+j*&N&?FLw zV?@mB{~f>6V?8yEHc*SOmh06svqd01?iO4cb6)N}o*`0zR;K^TDY$ml4YgVFGS!;@ zs_?T+M8OVN7V6Y|B7!;SxkLLJ^&;|r%D9?!74m!cdk5Z)27HuFu^7(sNk6$QJBfB; z1LId|Fp@vZUcB+ZJB3+7RvUbO0scj1fyTAAJf_l?RGR1B3XCF@2RnpcfP8$Ixijy3 z&8_#?C&mbLBgy$z83Ux~HtDcr8^=-0s?hO7{J%rjEM#26=6vzGkY>^W5oIX4GR?< z{9wfZ0kG9>aJaKHDd^_w*&fj7=Xnju!2c-dcycSIog%+@lHCO72SYgP<17l+sL1@<=Kw%0iNzL~AJ&#@7nj-TdlzP#14+DN6{ zliTmoQWCX2fwpbKH}8~=bQu;ts5H}t&z|P#iQm{=zHM@_0}+_dsk2&L_*H1JB&lbA z_Xn9M1)@xKv8!{Ajj?W<8H@2c@tko5yXVZHjIM+jze*5>q3CsUyHXT!`CoU5pp=Ff z{12e&7O6}4+dQzYQT2|B5lUp>%4;epoeX)n+c>{|MyQV zAQ(`|-2=;N@9yglb7ZZ{v2NaWf?pzg<`aPk>nOco@JUqMoyN4GTE<1=Hv5-?hl4r1 zJRPb3YE;!|Lw$Bm0AMa-yQ=rnL=~g^swfr_K#bvFjY;sb@sE13t^TQRQc*#eHoagz zPkaP-1B+VELUSCu!o_+jN|HPv;*s-E3>NtWPe&nl z1}M*n9uuq>^{`;k0lXnW<}6UsuFeOFvG!UC1K=bMn5Bfd<<+}5vCc&$xZ+P zN1NS4$3MW=le?hqc;K$=hmjE`a5dZUH*oU>X#Wv3)Cu&z3o_;rzyn&PCOdot;Q@C? zfkKJEL@?(_3e9!sBDWsA#%+YPYe;)9FwIW9xdCoIHw$?G+^S8PfXwyn`vh=t!P+ls z0&HVG%Kn1R*N@?w;s-cDU)Sy2)d4|Z_uH`w&*aa-^}#$ogd`UEHtVuVwwd#!x`Dmp zhi1hYCCHc$rM(I%Bb&)IpOc*Y8h-rlc^E_gH217KgY0mR7Lu)wp+oi$3>nVfJzg;zoS{%;AIfw&Fp9qXPU`tKPJ%q?8{`YpWPx-@ChBXDGfn?wgO3P_N=v))nNk3~J) z(NfNp=E$sDRe>ArCbW0$I&gRxi#gIcu{NUVUpyG~3(_ zVmTU!Tiivy>eMErkY73CIl2aUboZvH@zSvAMrBi9oyf(&#~$g@0#7UK_OO~pKuh(4 zn2JyPu9AjV&FvMf_Cd!DhUEJdOLSzk@?uy#x3CSOr=t>FuBV<#_L%BsJRr-R-^a(# zo2{Y0Xzv+dQt_lNoc&u-N0NnuE64(ZoO$RP7TmNhvr*1VoT{$tbX^YLMu)KjJuav5 z!H@-RP@6>B-x&=Vl}=JaZ>v2QPsRbU#kHziB7WKkrd~VoK(2lpt#P-l(zxLoM${T6 z+Lb|X)q=BHVf3JKDw4bF=Zq&LOq~|HKo0>kr`6_AE-n_NHzVBDHf(5_nh;74miI{k z*0xA??*mxvjs>M;{6@1PN!BcyBWAJ#;XP)MMJ%v+B*;hmg((DA^i{L7<8`-WDcqZfr*2K}&E0VD=ZTsu)=Esf07XTAzk#pBK{jy`}zf1Fxv4P!b2hHr!LCJ}5 zPUi&ZC_9s#@!y4JG|ooI92~vJ0#&1nuRR^E!EF~N~QmFAy zHTq93ToeWZU|_^os~|M$<5XBe@T=t}xQEe7*OqahTrTvC3mtAI zed8aVMbWU--jc2Rt}`DXbcblYyW)YSAbl&#QLb6S%rE=0Nm{CcE2|Q3b>L?;p2>7X zP<}sLUn;MY+Q4SN@OZz#L|tk@v1)d-ajrZo%Wy4+AnlZ-JdV0Ht(;Zgn|wIQZ+V*b z$YE|x+;TLiI!te385wP^l+<+<%GTb}x)#R$4^4pj>JvQ}|%v_4Gy>70l$8@$2Zs_$DWg6pQo z_JHd4ccIPCg0ySkPqXfA;QBT2(x^M34ihM)Ou0<|l{lyO0lfN}^#q>4eiWGe@QnS@ zx{b7P4dnm`b;JU(_Q}nkY?fIGS#m2Y)(6v^eVr5UCaklvmf0rMpPe8k$tG);%hk;< zxoZ;^rN>ESJWh}`a%*=}8D!^C_xiUfgRYTk`JXl?*tnO|YX3oFCVg9pbb! z-8zdlVox$3K?_>MF-$$5thy~1xXj6_c_>EmzhY-$Kh4d0WThi2J5hun3g?`$9I~|L zS7Z{FZ3qa~HjfPYlJHfjW}^5Ve}?bnmt@FIU_nAYMDglGJ95OEWax}~EzmuuZaPYD zKgw*c4r0|RI~WINWMYVR}L?Fd~_HU z;iSxbrEHw_yhwDMhr|U}KETic zsR`rFT*W~Ju|J-2cbX0Yo7K*aHFjHdbOdLHHNE#Ty$s;>yc>BJMB&xJE-uU1!ny&r zDhN_-8XKP`hzP|$uQQ@uOcV|Y)XbuSyt|b{r4LXVvbJCw!4ci7(Of_ifu_DAdfgtY zJvrNjBv$E@MZ_w$k?tqZNefr}INBKwx0cL}j0`%r>-@JwO>)GF9xRR(z&xdUgkg{J z?hG0+V?*~?^GqpGYwrX1(n$%1b%JL`g5CZLQL&{ z-QWiX#wTsAaMxiZT6mjz=&A!Zz6G}?e*(_>lpq}SDqL6ePZq7z!zay(zh0`MXnJCw zjkm@z52D&k3<8aC2^ZI7T7Iw51zuDnUETkKSsM~EXx&`K-e~#*|Hoo5U^S}w4T>&RzB(h^)pwq4{_?>EK>{o61D20e9(@AiK$Or z>b{oiKKc^OT$j3knQ$<71MZg1dgsfQx3ybXT}IO1?^FE|>oFJ4IkuQeaKSM;giJq} zVjQF0gT86b127`IaiKeXoV&)GN)P7EdkY#$VVBJa_wLLQg zlmn~-xelV<>(B)C8ppu3C2?wPH_cVz@2z%&d@_Q_LKwM}PdeK))~}UfX|0?xR(yN_ z_T-`07>8?+?8iE%vKFe`&W|ebgRGI9u0e5Me28fsgSKAKu>v%`dp|Se2)EV;xP_cb zQUp+|b#SWi$5<|w9nFpi5B$dNeBFf!yw9l8_&#^qnD!9rTt8(C1R@Bn&HzfR;@iCN zuaNPH1-NYnBl2@&Qkw&?l=`4f{(VZDy?ni?N}FpRs&+J+^<|rF?me&$T19-_uw5$h zo}J(hTDd&U8tJj?>>NSMF>LbvT?0+odQ<9Iy44Y>n-SJ0@bl@a;p%j=h3bBiizw@^ zIi{8T!UvkXZHzt;sv@;+N%z8GZuxV@U?mg5Ntlv6oJ?|ckrrT$9Vgm6#>)Pu&!+o5 zSb3+uh4jyiN2x(W3V&(r5LplZL|z>6KbDm$_Xpss8hy?(u| z2TX|@j)g_wE?A5P*LjzTwXb}p$Bo2vPDl>}S97@Y#(|K-UBNZ)*LTF#WBQuxCMNLA z4etaJL%9BTP;oYN{fPZ1($F|2&?XkxIuf+80$e)~aJb8F_x^75_!{%BI7ra=VMC7} z2vz-aN-{P?nbr-{dr3ysAzCYc+&FbE;(lhLOMEbev7|yZ3+4^yR3ymA-|u4@Vp=Hp488iec9pO zYtM!9W<^zaG|TWN8a_e+06BC74#$!eT34(-Oq$0W36)(bv$*xg9~iIoa@BqPpQEpP zf=^sgZn$Tp@n#!7!~V(%+B4x+VNSx%ap`E`l->$oS$MWoz4%Q4b!L?qlt&5PfD3tnG7rP zfM1NB4pKlt$t_2iS?&RypyyNQYL;1^L?46pyTl_##mTgg9aJFsAS)bMO;TgaH{3?} z7FbT3D@hv68ZrRQZJn=@jSx#)ip~u|G@~|k?!WT(#P7iw>s1VgqQ6LtcB-q$3L|L6 z=zL-H^I*QvnK$qHNA7)6{ZQXxQne4)X%UwCc{c1Em=lc|N=}KFJnSAG_Y7O69}c`x zPB^F@GsOjV=W{Gt)feb)cxiS2+r7G8x^ljqB$|g#$ZR1^@to{fnU?X|&m5X;XpT}T z{!z1kWWElFRN;elAbN?g7xB+q=95)vJ1OGOe+|%rnZ-k-=L?d~!RxmXd>Q0Ok4jf^ zU6}(0c@jlj%*-kIanR;Hu#>Ete-fbDL=T(M9byEb&OQ5fKX_2S>?)E0UP7%JjDWr$ zmoKNQs{_E7ivc5kpvkUMJ>v+OcCns?qFsfy!pev1$NbV;yv?$7zEMKHP|)4m(1I0< zA+Ik&EALM8;xf9g*T?14gOw8ze7I)UFBb$jtTIA=x?B0KQV~70)My%B0vYEmyQ{%b z$XP*S>*e38q^L+8I7QJAZoZ|XL6?E@E}?Pfln3$&pFTA~JDvrjC1Va<@l9UbC<{KY z-2kzK~G+URi*Mu;nF3Ok9!d))3p_ZcM|lg2`s}H-hjPk zS@oThlPWdWg%UbZ0mmek03&8%ONGIZHwG1 z>XWmWIDcQ+o5^gi+13_;BlpE=nNoxRo2>m7&~3#P7yjyGe}K;#<^qh|nR#d(W7?Rq zo^!Pe3?NhBrW%APv`rL4vWTEx<6xc8UU*3mkV+i!wf;>7BZSQi^IIuD%Hs?t%T|pVq%0^G1{7m0M2v!{6VrzMf;J1rE|V}F){&s^2=g%! zGK)lE>4&D9a@h+UIS;ix^hx0Nrc<9mNeLm3UH4TA-*0*3iFkgi*!JudBJW;)EYjJ3 zLs;2Q^6bL9Z=;9Nzb6)zk@!XNJ5!ur8zt}G5_g_WwnY{Vs{NL)S?2hX90j=+q`CsQ zqqL@;IMeOU@=~R#7?M;SGFhskPDrCOsr;j^3$ZMwJPk>$>jbpbPYdxA5JVBQ#~2H zo;4#bn_fcM&>R7D;p)rf*f+>txwk8c*7$F8De6oA0*+lPI=>_%IY^=ui(?Y4HV6V- zErF+B9$#8X&%w_aPGL}E^cj4rPNpIX6wEl(A`eo=9%T5#LY+*7Xj)k{`H0ZjxGZx) z(kj977qm533&B}2Q!+aL8F@Y{H&JxOBCz-{*khcw@#t*M2Hm{ac!7{bd2*}fWo)&g zCD>6^74S>JbNWe1a3Pt}-;Nb2!dHC-w!xRTKWa)4z^ij~*H^d2Tmli<&(Xt$MLNutVP&rU0NLZG}%2R1B zo^)m`7%VN-Y{y3yOy$j~yD-CoJ*h}35ok@})j(kXMVE$DrOHy@kP%}e8_lT&+sdt` zK+tEPFPPgdUE~@6X$UjqHimx-wI-yljibOhjxr~}d`svJ)38OH>u61kgai+U)@fY^ z&VmY`f*7Z?fO?C=P%9ZI9`aWD=eKj4LtzB2Blld$;-CNuNk}oos)*!B5_17$mCyut z=3fTsJZ~enj7b)O3!;oJ^uSDrpT;yJhxa{i{L&W#k!S08DF!|`-Lc3$!E3T6r*#e z>W_x1VxZ&bQ?@kmFnc-5j^Uc?KYtKuwq6N6Yy-|Z6^S-d%j%-}1=pnALc(V)YvSex7a8pjkmaYRk&Hm|JSz>}wX@DgnOSvCpNtn3)=!jE;gXF@_fcbhH(smrA zhs~ywgN~OCJ*skRG}Bf1SL6Uq#(_$OYlWek_E&Gz1}!gj_~aBr0Y~AA#Kq97g3INa zu*or_&i;o&Y5alC2sT0lc*tP{s+=0SrjqJ42&-m{_vJ5^ik5l8%orPGW&Hgbkqk5; znf&RIqefvQY(Z$$Heo!hAwP(=ZwLLoGUFIk2hzt~cRK36NV5_y23Ir0tkP-9ax?b7 z3z^7lNeS=$Huc<-%!V;OJhFON1k)hu5lcfjp_@D=o_k2lJ;VR7;ZZonr%crHlLuW} z)z?b1nmy&qg4*ArJYJpEqlj5aQdKxfWxy_)8bj2Qgb!n+^~Z(ter*V~o%g;>uhUs@ zChdth@;ln%?1LeEPg_s?rMWiO5Nk00=zpBcNQCl75L7b7)yG$W$q)%v0fGIk0%2&P z*qnb^qA2tPnMwOu?UA0}6P&}3#L}zDf1N?&P=lP@CP|MeWa(NmIKSW0!ITgbbT4vIHb|66%th#@Lttz(Q4}|^n-@ZKslafx57E?f zvbwf9w+VAs)cu%BS2*!TL#9c1Fxya6C5RVD`nf*0+?pVQ91dpuh*9-Dh)O%yseiM! z(OcPsr)JIt;~7V`-Am+gy$Q4c8IsH@as%6{f-z&a7@ zNX8^BX)@WX*PEI}Ag66mrL%W`i0DkXWu-|WOtY&xM6gHW6%Z}`71WtWw%_{$F~M#T zYnFzcnCgId$ESYb$p@`#e`rlDw#QysbiD;gPm5NTpxW8LveF;nrHK{jpF;0TniYuk{Mg+Yj6Uq`o?q!N^@)@70lV}g&7&>;hn zTFq7kytgS{FK^bF(>(~SXmbn#?c9klX^30xY8b8vt#c)lWWnt+0B#(I&P~g-q6L-) zXJhrG@zC)dD5bD`d1REROH!B&jqjPsxF=6mA@aHCoa=97n4i2QL5W-f zk}s6mDpoBND|A<(W-I10DTl)-xB&tiNs+IZ0rfNyV*$TtPg-i9`M#oz2)(HKvtN`s zp1bK;+j(kJ^dBc&Gg>ktOkqO)#_iGL{vr@@RhZJM_gXl|S1L|&2sz&CDVWTSwN$B; ziPDj2gJ?&QN+G!|D}}%i->2T-MYmlI8vc0Iji~^2xj_|ExQfX$30{L^)LN;zBnEtO zuzrX%1~bUI=byHig2*x!JaQJaNL(QhbU-ta;RaX?JcV45>e+kOYP(^oo$q$r#i!K& z^0e!>PCB=Ug532I`Ffl3#mkp}40OKy;c_{I~<-u-vXg2R0Vm5GfW zjA!skqXd1D3HYa8a@;7r==Hn3Vczm#xf>Q|ipY$7uZP4p#7QMp3RbvCJ*SDg04tF* zD*0@JK+%o@8S;h?e5w03~I?n zVHMU23)VZQ6v5b`;6w{h>d#y5qzfXjiM#b4Sb}GTfwB}-Mg&YMD5$F_85bn(9KVctzko8%yn@9pM!B zopU6jB+lk5p~g)@%{^9*AYfP~rI?{Y$!x6T#DNL!N;-Y$9QRso8X5Eca?nKXe$?Iw zLzJOOcoC&CHj<>GVGQi*KtKoe+{p{D5qlG{lIK&`mX4I%wM_k$u-^ocl@0=yIp8!B zly%J89KqnCj)0ywxDAa&ewp0+G(+U^wM`@PD(IRK&eb}TL?U4GD-dkyB_Ya5(1Ouc zbbZzRjI5(eTh?tLG3Qt(I$8^c8s%CB5_Mq0Cl`{pvSi)v`4oBUj~hqYIpe4=p8x#f z_aC1f{{82-zy9|6`8FH;>TK|mR1YW*d?6Nk_1nwiqX$i#c{%9yuiKLZbDzugCIzk& zSbUzs5*Z9nNq{}ftRtAu47xsBsdJJZ3}Cbiy-Oi*@2Ipk}oE!3vrLwZ;k?q~zKu&v5kpi(Wb`HzTLOVIKJ2nokj%XOLkd|cSQkGUx8c@K- zJb2T1a9JWPJMpJhuSQa=!35t8 zdace$b-X5hJnwy1l!?H-RR0nB^&cO)!#{fNy#6zHdmmgcJ{|Nf(wOc~cj*M-%TMLq z{nPG;`quLEdAHyC_%yqAfAq4CA1SS_+&SlD)vV8TlqLjlDU2bB3kjYZ=F$Y>xkuQB z(R3Yk-lcXL`~Ekcx#{WJyg6B|r3W?-r94XQ!QRnca+)bDRG_M`BvGg)Xjqh{EYefX zPP;ptl(K5gcg6TZcW|0un#KivzWfP|r4Nt=28`>Z%vw7tII|I~U`#1@;2~jf6RGri zcoOwNagZ|LJ%atGu<{_RaZLD-bM#hbrX^Z68O6H}%?x)!?)ADpkqpBE=Qc-65)7Oe z^pZHijX@)V^LPd&cf&>hs56ld^Ald#<{HhFi>R`f&H`_#vSLpT))Jd7IBJ0~%4_nX zWM(dOiZi-@BH2h=|sdL=nVc3$Szg`TsEW4;K z%*ioj49(VR>!?=NJ0k;zlOzo(A#L07S-U;v(SR)5OPxDvd)#ucpClo*iiSt6i14tM zM9O`#l;Apxn?y*!dsQB9wI|t?lpwDpIB5js$wZ#C@>a0Sq|>>g&uEd|ls%Aj!(8ng zTmoIS8A1LD%`Y=0(%TfM4iT(<5~3p1!D^5UixI8ZIkEU_r>Qjed!T?_=j5X8dK(DQ zzxE?J$;$v9u}m!Uq$o&qmI6M5SEj&(rofsP?e-l#uynhpa=512dLSMJQC1>k#ypc0 z3s{j@X5ApE-d6m$Q6O}Nlg#i4TZ*1=%Y^_E1*BEf!DKLlPtxFU>KyY(|34m|V18U3 zVcxKyvJ#9N%(@FK>*xr|7byJ9G6^PVS`ueEwlt#4IF$N$Cbar^GPe4-4z6xMFuGA8 z=`1`|(xpgaBo@|3lBf!n2Md-NF*^r$87_Op)|MwECgNpwV9V#MK2?1atn> z^()RwafCzmAgVbvvXKA_K3bEh7a)<@Wa8i}O`MiO20SJ7ODo3I*?1<(niyl4#sl4! z2&H(mLK5w$wUJtf6BUP!_SRsp4R)5w!pts5gL{NTdBcEki6-!^V;mCAO{w&favQd~ z1q^{jE*Vh-oV{c$_b!0V?ma?Eq$x`Le9?+&V<4fx8YGkjN0X!p92UuF(2Ovyy>=i$ zQ$z3n)=$UI_cwCioOlXrP7dI=3h&YXr<|r#9=Ws*i#SYB;$N*eIK6MUh)1uVA03k4 zUp;&G_wC`fs}Hx8WTFq7OxI9`Z5e1D2KxQSU;n*jpG)X+`0J}TzrH&)c6$Eo-7i}nx{NSK&wl>(^|O~-7HVXnUyrxT z+m)o*md0&lpr3ww`Etuam(%9wx6hs*y?DK?kK4#aLrNXO|8KWwHkXm;m!s#;A8-}( zxmoGx)s}y*pbPl>|K2iC69YYDB3(z9H!q(ZZS_wh`@H$}=mD?zjg&e3<=NY3hsRs@ zzL}Fs_`|JjeK~R7{o}WzpMQS21@~)YqameU{`#*iCtX9IH%I?|_3X`-pBnk;`0cZ! zpMTlLjjpE8(ciavsgaM4U;O*{r(d_;{^i7ZFec6BEB-Nf^5pO7lkd7-d^M~wSzsB)bjQmYEnil}NEI{(a_ST< zi^ka`jA2G;DQ%jd;`5RxOCpX^6U&1kKq&b4Qh0?gU2%4`=!FT`Dse`#HJn+Mv8IZn zoJJQ!P->D^J@?@^;H}<>=Voyy?tc=ROOfcD1K|R}k7*2+Rbqn3$g=_V>mRyy`?z(E*w*jUMxIgNU=mYCb)wD(gq0E@WJ86FS$G!k zoKyd0t3S9~Bv>Bc%$K;-(NZR)qd9`NZ^d3d^JX1aM0zI3iKFteujYN3hj|BqAk7%7G8E z+02SKiRo++7CXsIjmTVc!>lA$@n|^3!T+n7SeT>6c#~ z#HBCNKXHK8@Afc*W!&&Ul2$Zp&{{a3rPSU=a6Zcf;Wp(D&v6FGNokm4i3Dr7R#EXB zRF2-MGQ?AQqm|i9GrWnZFKgOT9De@s&4-&4I?I7FwyfO+gaU)hI|i9DI5Xwy$}+{E zFp0+Q77?d9m)VdVdi|K@Y7a8 zOXgyr&e&Xb5ha?+H~-)1+3fK%@L%bz4`3$Y(k8|N_=zbAc9hTvRkJMfv(-vi4~Iol07ZJnEs0WR=_28K zA)d|L4I3RH+<;HdBrkL5Ahv~wm%CDXV41o3cEQ7c`@?NkV@9u+L=X5#QOTsIQ3Gs3czP?s%Dw-u^nT@j`LC}}gU@YmJYy#5%x#j+YNja|o0zS4Hr?Bs z?&sYcq-W!^QU$JuX2Jmc;FFQyO%ftV_}(FIx%;;JH$VLC1DcqLs#4-2M0kRiMLK~h zLpj8OD#nt)hG^(k)n|iIpn^g$pTS$>+B5L=AEOWX5|Z9F0U$ znH&Sxp2u4bZolhi3;?4p%PcIo_)bdZq)(nmP(jmD6YFlJxF00l?d_R zRm7+jRSq21pqR5v?7n?)Evoo&CFk4s`}<`7+2^)cO-Efn)X!!Ma7@t80-X~j4H{geCoCa?Gmkx7gyZBo$6 z1#qdr#6+t|_ECXHYXm>6O!JfbA?<~E^V2iuheW5#g`8+$U|bjpG5X9&1iQm*boVO# zm_DSFX82o&1}5tq4?+QqWpGJY(_?f#%=O^9O<;#%QI)+vIszMBLL zv2P^cxrAgsmgLgCjXyr{+y1uu^Eb^zHUZ)mXP9+DYs0Cv;I}6lGlXrVtfk)zaQ<-f z;KM`m_qQdiOc5CQ<-eX?NJ|Fk zX9k=UrWoZ^I^uaQ7mzn_Vwhvjdv+_zNBf~}&&qQvM=i6ll@WnB&Jz(LgycE6{1mJR zc(}J({8D}RWL?(V=g_!zs`_CU=HL16&u#71)DjRCoD0TNR^p#PDIfygtc8!U7@Z8D z(wnz?)A3B|K3K|z5UHpmrG_mKMhK__XC$a3WrBmTOOJ-#F!}1khxF6WA7=Q>M~!D5 zLOvCfOhFjNvXEt~t0E~fZ$H-Q;bZ7-H`-6nyrnu=YdAMXMBxdQnP@{3cqdYLO?asr zAfB)YW;ce!MRtZbswg2WMX=2Y^jp1Kzk8dWYxUVlfug2~7!Ft|0XLO~P}-;%W!V$s zd?D0 zgKFAU`4raEPFnlugkwPpr6Tnr>!_09GBC-5r<#)+omcPvk!B(A=g?F|l_>{vR@TBp zxNc}x+?1YnLWIidM$=!{fFrfj6)pvf!V<~@H!M&uGZz$syAZk7yXW5`=FQ9n1b0$4 z+cJoO4EQq!E@k6{kDU1uLI=&`&fxwdjqg_OL-^a9w?CY{hY;#3@%z4_F4$z4)**Nf zL3JkJ$v7&kj3%4ph-BQw6tm1OE93i;Ym?vN&zW?+3-A>z`(9fx){KT4N zmvvS&1ZxDR3<7i)vjf?rp@C*CRZ-@VP0Y{BF+BDD4xUir5Rn>i0+nSh5l_7eaA!LU z|A2-FZJ+PmKhr-WeuALZX`50srI#FzjF(b*ZWT?|lKB0f!9KnJzwh6C0B~d z=|gL8o6-(V8GLS+nAOIEskI?Q8*M5@yA~v3git55kdOS|{L^2q-^3ph_(DIs_weuh zKjh!O^<=4Fk_!>wsF0{EXpl36^4Ux+7M|Csa7^vhRdjQ+@H9b=OyC0Kz{ z0ymatNpoH%IVtdXATay>&+n6qH3DK7FOp1{ann%mB z2s}r)vWo)YqlP}X9p1yq+S}mtHh%FstS=u`opf|kN?^H@V3ZX*on#_fNk_r4_AZr) z%U|P+j?W5`Vys+J1}-hjtPC+JK?G$&h3t8G-+G_oI}E;x3uJtj&L~47Fr_r`!mQ09 zcpo%1v`F>C8wge3?}}va$4$ro`0mlV;^$+IXymeV;Ah4~^f76olvBoo6P@CXK|UeP zM}@`Tc5!ul;DATk51 zERrG8>%=ULGUkF?QSs*=Z{L0%nU;FcR zH?jnGzl}7;JDol`ojBI`AbggP#2sML$o5=CYzu;>4+>Vn1zncf;Gs&?ySePd@8=Z@i+UjEq$oR8&NQ zyJd3O^TARCAA2`e`0U+(&+=tIJ0^1(tEz~Q@KGicgudQTCX9f{+e2%c=uBo zEWCL4{_WQ_efhVnJ{=aXtHtX@w^~)}C2l@_M4M%|J!|Vl+bmw-4&75Aoi}Z}-5^Jg zNVBf5+h&b>m`^e^R%Zy%C%Uwo%j)&I+x?0R9cO5#Rkx}Bvc+ZI2hcr8o*?~c=ftFKSz>Ikn}*UHPUoUpXh;i!%~gF?UshL5x9wjy z7wfLC%cqg9$)fde`_+qa)~Ze9?y~BKdVFn+w6Cc|#tsQo0c6P1B$leaI%^h)(jk4$ zs&<^QK2L*baoMcvp+0La&^R3y=~dsfEiyHcsbzg$ZClK19u%mqhOyrE-3HyKX+&L| zF-{o*bx@zauJH+P8cXF(c#8?C!}`=`eSM8EO@iq^yGty9IxNqsLZ4|GNL{@`jE;z7 zltPjwk<@R8p{ei*@1Q`#Wph6MXEPvAlXx0lt8_ZC)?W76X#>h%npn+#o*3@!9r6*H?Xyb-ahfS$F-aYLTM}9QE~8 z4dxqhI-=2a)nHZlahPuF!Mn}abZdM?nW)n+zG~|MtHqxT*jT?DU$<3{#p9n!RiB@~ z{>!#%oAK4_YCSgayK0zm1>!Wo9;$}sYl2AaV)?q9##QrIgzE`#t*YS#l66cWxDL^9 zO=qiXUoUzj>Tz9KY@Rxe&x}Pns7q;m(b!#F zv>5fBMrzp%o3?tji}=nuY^9nY(`B<<)@x+zNo)-xn5?QtydG8Rysa)?xAj%suD7eR zy2lEH({$}MYu0sjKGyx68-W&Vl3aTq0>i(jfOb}&cYTedk*Dc}s68DuxGqObzCWtb z?wUNq2IDC_?XEMr(+8n!nbsSKD@MHf@7r zI8I>I0956@zFA+q-g&53&Cr~+cn2O=s>M32>0Hga5M+`kC>H<7AU{kmDtdJgbYjB;zGUG<7FV4F0@^h{f`l{Bw zK1DRemE{Tk5FMjZaFUI;LU9tji#(8rqMeso@bW_R)#>&{q>6@$ObwG%FqOGw!kQeJ zRW?x?mAsW|@5Lfp&KXa%&O92InT^S0mxPS)WyVNm&8=X4UAk4iKEbA6fNeF5!&q;c z^%nf9zFu~C3m&}%i)a42UN2vduQoLn98Z&JyKWZU5<|b!XqBei@&MR_w^hHyyuwtW zw&OX)VI5EA3uNOAUHQqLgV!liqN8#l5v!5~_aSgfg$%-YL7g&A6GdeUz^LMvSisn2x?4D~bEiX$}ld;5d>bQtRTVo%Jw&>b! z+dorJ{-jbYa~Dj=DJChrq0yHp(R!T?P1Jsb*FNKecsVJZWlk$asZ@@_XN4(S*|~s- zDAD*(wEbi4T=B}*MzC1YIc_x1N+@TN3)C3{QIK*EmFi3JCGrKTX{}YDB60`uwUAml z2D(MZiSSnW{7|*q!AA4s%P}jh$zb9gDor616S6XKz$UFyI;$+?5@{yxEUwt z24JNa;bSs!$^(2%TFn>7RsJTK27eyBj$}f#Ip6D6V(p8*+pd?hWsDGGSq>tl3`jA>JRvr# zay)H{?txZa_oDm;5d+ym@}98}ydg4!*Q$e(pq3Uqa+b(Pvb|h2>+Nifn2DBw5#xqx z5{XvQ1ura%BpLAgZeAHbQfkqy*Y&>J1xa(tGfHCA-dUHZH$f6^mGlrtxdu*^G#ECTg7fARp^&qW&S_A>8VNovVaZS@gL5TAmYMP3g~WUL z?j8%~N}A8a5N(K|k!G*0Pu9TEluii(tnmj@HT?pevc02Wa$w$Z_-NJvd<&T+m@sLh zfJ5uUuSJ{nrOCYaBJ!A=O~h-NvgKL?3JNkF9$uOc#6o-ak%SOV5)lREDJh~U#Fs>5 zrmQ5He-vcyC7kosDVgO|E5d{$9vqF7ycC`&>fjS3+sCv*+CIvdDVm5>tmOE;Ry=!0 zeW1xQ%D6WV4(zfU_y3zKYypBxxB#3~K19O3Qp9s<36;D&6FiWrUTwx#h!u zEaz}mWrhILkWAoC^-d?R=)Gp=+qUg@x$$|@m8GRoXh4aYsIs%hMQ}7U&(Q`&AGopY zqU+aRr4#!vaQ?w}4I(O&1V9GARl#UVAv{+R0xI{3YKv`uRnL_%VjLl0suH6Rnuny| zYrv#=N;0@=@9tVoObv0_n2!$#CZ%T#o(4S=Fqn3(Q^YQj0dpSSX_${8UA`57{L}ZHU4u z|G;J4y(P`r|56Yxasd~ii6n5Nf@iU0|BbMjvWNcHaM|_a*IGaD}NoeZf zV)W5TE-8htm%BGP_o-^L_VHsT$!6=AH6+Lcw`NegsFN>`A4GFV@@DZbTIhTsmFq`arB2=ZT+^Xw@vo zs=;|nPr<6&)VOYXf=0j=a`gnRhV2<*bzCB}RTG#RUfcqOIDMi{w|u>yNVTlndc?T^ zCt$jht62|l{1B+e6k1$X>x;Ttue-4-9YhG#NvQUc6*GlM9oA-wa!187MJw`7hs&GX|ER2bV#4Jep&bPb}lEwRA1HWv81Bryv*USKxKhSwH>>~>$+N8 zB2LF~x>u`PFEFxuT%Z#9;vn7WKy9jFtml3FrU*3a6ZZt1$|URAAHRbVb^Wqzv)w}6 zyF!|d(zKUqQ}^dxzZyDxb2%tcUl)0BAI}M(ZcwV1uhBLg*QeNTglQs7+W~XpkLYt* z4fSxlArn2P6EyAB!jYthwHdF`B%Oe$+iW+lG0${Rnst4JuPKut!rb?x+VstOe0|nd zix=H`w;&r~Iu6rLu>HD-xhwV*k#1I6on0Vb6ZmS@VAjXBxwu4|bwHvugenylj8CCy zSoC$h-XBM-O!-8lp>B6etOkVXC`?7C(l%bLFIv3x9+hVp`?|s`_-T&D%Le=GK2>I{ z`mtJIpTTK{#%kOSug|Jw)wbONQ92;ddDXPr9)r3`G<7eKqXW`hSN(c#o)D!eC>6c> z`l5b`MEzQ!v0hxRAr`rKHTyl+(~x>7SW_JE>mIXClXY4y5U<~WS6`P-4TS6ywVGAE z+kuPkE+@fywW-V2r?##Tq{r21)+0Cx2+{*_VSQpZWU z5$m#~#5=4iI4ID5KQ5-BCh~NJJRK0|x-M^+;03f;%6lB88>MFcta(bFpvT0yu{9@ z=~N+6CnXxH72bEJfx2pjZPlK))x~R^FMe7hoHh4!uGZKPby_4WGzg@}<^S8C z{x#qFFF(7tw;%iIN9W<+@#kOO{P5QO_`m;W`P}D1>l}R3*Nc}gDaAsmgZiwhadEk* z2K3%fv$W}k1~Gb6n%xQ8AVVh^y1wk%de%w3=xS<=B5q^ zghd9^VcJb$U*ZgdL;BpzU7w3MpM5Q-4P0g|1@TNsO$m?QhHQe-S{vb6%2>-6FR|TLWBJvw2jci+aS#7*E0q6r1~Jvs2d2Xj_WqX~0X6S=~i)$imCb5>I@!}P*$f$O|!+wBI6_YNyGzXZ$|@8q&pDD9IK zS#YTn^@+roHS;kkm!$jtqaVnFWY4$V({=y-%sUtJM3Xh|#LQ`Z=ADaqB21WLIIR)p zVxA1vWp|B09nfa%Hds-7f}*o(@nWpbkfBeNsV|x}_QFpFsjn9GS+#6u{W>~PpJu&m z7I?``r0NnRL#(C#li6Y^(_XMmkoq0r^?NH+kj!7_~ zFMddvO*M=N&}o4Bdf6dCk1119;t0?QfOdOKN-biKF47T&+WKYPgM)-7X#!DwTc2b6 zc37JIs9^+Y8c2P;n7d-fMY@e|&--q*=^AWOpF-9rqAl7E8;TEz)ng;^G^%z&p|Lup z5SsMqP?b)XMb+0MPS$@!o-!UD89Kob&d@(4&3nMNMBzx!&vwAvRPFZWpeX3-6D1KJ(a#rpsd1z z--%Z1ZjB)}b{tc>{n?nh7-*j<+uW8b>-1m8J*4(T@E%Kq#{+1-Q$PkDKiX_q)8+d zsgR`8@?ZhV1e%6L-<;Ji>Q_a!G9L_~I;hg7?>2Qm;`YT!RBg(8Tz5Y2R8_Tt9$BO>iGPIw1S;ptW?tnEFa5jK%O0jQl=h}0pK zz?r%$+rcWQ6HL|1W*obVi?;4cLBXrdTrRyY@>U*9mW*nZsLd$_E8**fkjyJCO|*Rf zR$i|*4thUAtYOk$PO5yUDBPZ8hMAjR`p2DK_g>a1%9}^T}jDR?QTd2jvAi^*2k(1 zXK?LdJ@6!{FvaSSPvKzl_(*WnbX}g+~=aKYlt*JFUtEi2Zz%B$~Gu`Wv`9@2eH&Lyv2O5#f`u zx{<7Eud7$sPjgtSP2D#g)~8P-YXEos1?EYQ352hJlWDqcmg6NR6h7zBQk8@9ngk=W z;fk?f9o3R5@0rr_E}?KYU1+zMpnh(th26J@#V?O*(=F>wg^$crFv2R&BigK1)p}W9 zVODA)OY5=k+G3f8SF5uQXXQUG)3%>eeb5)5$eAfKHZ#eI%ihostWC`8#1acGGV}d| zA4CsFd((aE*V4cwD&TmGhPBGOj<}TJLeRiGN-Dcjq z1Ev#IFE8r-h80U1L~}o)!0_Uh)($*=#(2qqKQ)R;5oH93znp} z$!TJv;WmE%;K#8`FfYG-pSYG~FM zGml}Oz}K+oyS6>6Fl+v(K27PbYR(&c)SCcP0})NhM9#T|_P9W+diUlz^J%6}AZpj& zh%g=2rYa=u9Cge~P2y=kF7T$13CTLD(pA-N(Th5bRe1~Djm1Nr9+&4;w;dPN;u2w+ z08_obzy_GlTHdOdOeBTmB1<$9A9x}m<;0S)Qn>H$rGNSCx?XnQQ(J+LP~oo70}^4b zU=m3n(_M>L@jhQ7P6u@=>*tZFNlex2B|gYZ5UK3e8TOfABx@>Jd(qmqyT(d{(?Si~ z&8F+e8b=>Y1MEQ#2H`p`((FzA)5t0#De+#Mq|#EkyufH-G)O0Uo`7d7qrG^nLjAS#|-nqa3Xk)P8+VJGL}gOe-56T`=Pn}AI84-d;RS< z%X9o4L46|82bR3>1nxqUi5JEO9gO*vnHuVK37D?xuhCY05y31ie{?Dm z6Qw4Jlovu`ZO)1jO2V%MEBUdn(yo7T(zud>3SuR7$;zl@W;6&MVu%)QMgA+{cJmyc z#f|t9Bj+bvh~0h+T=9pnnBnuCJ|`Xcp*nE*x&XiWWV4FV8ljl9;(^)fmd*LAXI9Oy z>b66@?5@{~YBO&88i!aPk?Fc_+fs9k)@mA8cX_Nb%d1q(v{gS`H{;?GDLW|I^<`bR zvpQJU+#vsVBYk&Qd_WIn`%IJYYJ97vDzA$Ix5q;TGdP3gF6wbH5jU~Ivd7r zgE&1V5ZLm*BnFVBlPv8F`J!7F#o+R5))(lzKQ7c|1+M6<_tZUss++Qpc{i6Fm#A-6 zRsU*t>7Do83YXDLM5}Ms<9?znjsiU@(yF>xH|M2g5DTy-lXcx!8|3P+MBS#iR!GwX zn)XuRyuB$ZHQ1Ijg{iXaVY{>EyWKR%)MG03)%v2I*&2f{{@QF!%2C7Tq=&y`Qc(mC z|5VgAGAHlLull-LcI)=lxBt@o@cH33omas@#BDVbOxI!Yu9_ZfT03m21$teRwcG9F zMDBhQcRTG6yWfJ{u6hB-u1zCv)7Jy`As*9cKjv^wtA&3LQ4iDtCwK7z2l^cns;>IQ z<#}6O;B(>xtm?LEHZ`)mN`JnE0B8(~V$jOnMzx2$w27ji|YY+fPyn1DxLo z*}OyRr-+1z{YJ#_YCI{?ZhQzrH61E^4LYF@0yP<^u03zs79Xt-DpdAZB1@-P8mn=O zhUtJduiCmoil$HmN}V+$f^=M-bzLuUM&wkWmb13ur}fztC2!BLE_otTH&UIIHUY%y zm_);@b}4)gsD^n5FGn>RtFzLTgSqrcM1flS!M|vu4(WsC2vbqQ@`D4y^zipN=Xjq2 zQNPa<;PrM)Aj~&Sqp4n8uDiCoc!jgAK3}cB@PUL#CAHdG%Y2Z8N+Vg2(Py92_xJJ_ zN^usSi%~J9xr~`J8kDzI1Y>l_E-IR$_(-waXy{w-k0{^EuJ;BF)oDX@-R%Yn%zB={ zQH8eaWw+?sxsT16j?{Lj%TO4k=`nGxn)r09S)_w`OVgMBhl`@V&< z3JW(M)#v)M8S5QW^KR;%PSm|(L-SYc-g{i5u3sWg6M5>Z%|0uRqhF3`gl{a9aoS}x z_e>#AheWz+25_gaPj5O_4-{*=1$Gu66zgSoem>xYgb7&vwd+>M(5K3DV^z2`7HwViSn2c>tk6^)m8W#u zBT!EP3M2y|7oTWl|%2Gm78;snIw`rsqo6JP@W36oEU<+&{T`DU%r6M5PRHt$CK z(;{`-u|#_FHsntP3z<5u&vw1US@)A*8qkG0r4PDLPk;$ssH5_r3-v^v(1n^H61q@N z2Md`xt`E9UlVBR^e#C)vkBc+xQsbqe1vxs-QCq*P``4HoKcEiWZHsP$l~1QADmrbE zpvRS2)@?na-#vk$Wp|C;DTk%O!nvn_gvE2GMA~lJ^7MR5jVU74C zsPMLX0#kU|oz@78#V6y0_2MTqDrMpy)r})qr@<>A|gfHvJ4Py+7~L7D*4uxT57P#6SIVdoP7u>ChLipkt(jdm&xW&mD)5fSEUjL z*KRtKGu4dHq#^;la#BfiXpffW-paAL~HV?Y&(x-o{SNqgU_B>?n1~>aFv`D zf_u0S3}^aNu`a9ivaP=f&tkfN58qwAuFl%}vbnfy;ja;wRDV9mTuOvxNkmLR%V0bg zmP%rX6oTaV5o8xNuBqNF_Ksd^LzIn@sT7h4#MwxUQPzR`|BpSXwnQzq_w5)Vb&^z~KK zZHH$ORnBcF(wBF`1hw7?mK0Np2KXYEnFN2syTE<^$a{q!##yy^@m#a1(`Au?9foO12Et9nuO_1LV3 zW?7d7>X^WPRHa*cwJV97b&d8D(E3O;EdP5Y_$R{4_|nI$_Vm34yS&sAdfD<}TGSoHe@g>feI!;m%=@p9f6s-0-Rp(=k3$73Ab5`SKq3JZue#QJW ziFW1+nVQbjPOwGW;aG(uLiKf9jm;GrtBGLU>b2;W^>*Ei1G4q0R(*3-jrDE<%%Z|a zmXmDt-KOrxSLIa`c{;4m_-cc8>I6%Dz3i|n=JOS>%0RVbMiZK(<01#+m61LXOGOmU ze1D_*MKeH5^tE6#t!St59m`@Jp_E~#bwtcOD9;`Y1OP}9?qN+ zXx2StPeQ58QbCL!5ogz(h!1Wy+$ELP(pavxyiN+0C%U@*}xP_k7c} zFy;H$j@_yno5gw8VkY#o<=Ty;+*FHFS-f7>YpgClpwssJyzcAevahZYtCLt^^mAIC zQdoul)pVS0^+MnMv`*)JwZfqA31H1Vj((C#ReN2%!V2Swcx~#w>2R*XVSxs4*I(eq z?uj_fdj#caeQv7g5T;WwT~__Dtk0`$i-il1E7UFPO?82O)C8Ei)v8)A>nqG49F}N3 z_FcO>cDq##nDqRkO8Z0P!Vx7iF_BtNNpLDS=d_7DX>*tKTx|OufZcS%x1acg?`6Px zy$Pmj*)4WsI&hrOO* zY^!0!l`+$p>e^YKzT@J&9Q&#o7B$W|n}SkNYgx}*uA>T_H~lc)WXRDzO@ivYTWm31 za6p=NS-;$rqzcxtOd+XVp10Kn(sWRsw!W&de`Xp=tE#_f)-w--C#rPWV7g#3TI=yI z+Y0+<4heMGTwJzg%*w^K!K}dqqAt5}*mPsHC=+65T}?J!ChW?3I$B%sLwg*VenP9E zDXpX!{7vI)KZxV3LJ#XveVS5^-<&r!dRC`lx)%#0zykucbtxU2b5q(Aa9Y*7C*lep zV-9Py>lZ?pPQ$blswyPy!Wy(thh!=POS=B1EC>PPJ;c6^@z-R%Z#8ZFq)#LG;tOMXHqMXL(q5ih`aSQxXS?~Q=C}O zyz!YE$^#{WMoxp5A|#%Z|5&oNf{XRrU*$0Do2=^fvaFpMs;{v60~qx&?!bJc$$|m08IslO!ZsA}vWmaA&{& z_=mA?0a$V0D{f z)-fQQat{{0`u*M$yaf*lG@zOKqvAl}iKf~xDPyqGQ|ojvIXMrvBlYZ8W@@O{WoPbH z{WaREFCrL8i5ioI&q*_5vydWN>oTjBC0GeG*O+kt;V88-3PlZdQUPef5EZSE zR_34q#9s-wn=vs01@d>1D;Y@C-0T)9Y)2GF)bx&ZbyQ=%*Ng`2? zsk1w5i*8*+s@KbAeSvoBG*g?)3U0(%kJ~-2PdDslsL$!O{&(@zL$teZRKk|{qav-U zi*<8e>Wc98n@rYqUu}@9!xD9y;vyhTr)k=*7vpw!_I9J<@g-YRBCRx7lJv@ zBJ;@v76~WX5`t83o?z??)I{P%!^+2t$uNE(Gm*63xc5Bn;J^JYhSj~6>)G1-+y;tf<4B?=e zBjVt*;dGGpTGeY@k91rioT2?RqA;!X1eGwW@Eak+6xLLc5V7Bg7+#GhB^t)6$6+B) zfNI`?oz$pn&zrWz#`|eV;gauz;*8a}#iY~(ipoaQvj!Ij9+n5E_Dux|l&W7MNRP=g zR%fN27IO)cU;?%FGiA^$9nuFM^QNNIU+k8bAxVej>8mxaTAmCO#&CxPsu!2*uI(;f zVg1SfJH|C85L&1@>!A01LO+ z9M$LgvKi~$v72?#*mR)o1)Ed<-*2W0m$^NWs-gKSKG;33QP(f$edeCPQ(tZN>2d6O zKc*2rwoJxpm(ra1QmK<7fqM>N47R&W$LfJ%ZMVP$5eLP3xvSK~z;7a3FT3;e0n2|M z7v~kS^c0r<+I1@g=~HDcyX)QB8bs&>LiiedSeL$DKwyUmO+aYwrH04k={5+`G?2FA zSoigEQ(f#vr6WzJHL73Ex;*T+ptao~Sf><1tfpc0s;w7oUG-Iqbp{9Yxu{2cz?;ZY z(W+~)+V`+Li)z5M_(YTzmjHx7d%vYJx;ks|ndPWReYJqAZ_X*XCxV5YuBSCR@7BoE zM4qq}_^3RW-8gJIq-i2e%~-X~0(m+p(5wr2o(NOX>by7zWr8=xc!!1Bu9tOR-dvEZ zX=L5hOCwST6}qlxy+8UXJeAqohOt?^z=qCKc4{ZsIX=7`7pHW0?&pIdPRDR6<1`VZPi5I`>K>o(Ch#-Vn{I>c zQjbg1x6LpXQ-l~D$LMNt*{v{=J0#4q88&T&zR@I#Zp4~-d*UgTuzPblQGLA_5vQXP zm0?&2(-fGBQV7!_iRylA7FD~b*JZTItltNwQni1YE6Ltvx0v;#=3$Y_^i?=pz}1DB9IC%yi*#XJ3f)9P1TQRn@-AuKs^Phe%8f16ZJu)rXqzn zozMn3n$8irPg6uf+cc4>-7MDG2f{}*>Z{G7+hRl1DVWM!@dgQcT$pZ){2b-y#p`N` zH`=GF;P`>l_tC z8)4uWMxwYB<%u0ql23hG>#Sh}^*6nW7fHRC+@1^;*-pG8L5OOlp&9kU)}S zTIv|1H{3?;WxUsDgG`m1&neI<8=WjsmJ>?hOE@!$ldO2q_jCO`@BB`O# zD&xH8iRKiHHOj_FMPlBiJE685!79c*aN-%uS(b1~XA?rUDtQt}f^(?u^tzfYQc-bF zY1F2ixS%Pa$}sq!&%y?{0`Db4FMWp;(cq+Ooxl;50F@`&Xh(^L&nU0&?!U9DTF;d! zPo(As!WRR^DS76tHQB4;QAHblxYua7M5sWpWGpzLJTnqv)X62ww5Da&TkzQ>aWB}o zxSTCjK|vTSGS5Cs!aOkq+;*Nth6pe@dnZzJHr6kZE0D|tM;(MX@M&g4a4`f@a#T@j z!K}@9lC{nFS2&Gj!u(8K_7cJnP9dg|J`)C?=QKyjK)4JazEf)3wpFS5M!KBKEIPwk z2B+QR#6xn$ea{f=2oHbVYPP6W?OeIiQ4z+C@!%{(rG*rp2Jp9%%`Ome=dmx^Yh6Z(N(>ux`IZ?1W(kVTLhj1!o6s^Kj966A2LXh`<% zHe9T#7d4_){0E>2g6E`Cj3V2Vlwvv>u7jeI`MXGG(Vca(wO3xm2!V{GDY;;TNdZoz zG|Kbncrf8!r1SH-9u|GG!OO4+C$tX91Qw!m!CH}63W6|}lun5nc`w}he6DaQW;qpB zX^5e<%{EHU1;mNLM@gMZ4>TI9W?lD4R>_VMh;UfcBuf>8mk|G00{)h^0`5d^?o``s z<_eYpi%tcLmI&^(r!p`u1K|eziE=AGkm#%R8vX@Y2T({P>LPgT@HN7wD0CKJ^}QD) z-23lCw=F#%Gp%F@#6)2UCDa-PU!a}yN;{gprt&_9UJRHZEqY~Ry)+~y6^*k#L!3jI z&s4xig|T;!U$X^@K@3Q!01NI!Fj*z4Ny@}}mpFtycOlNQIX_3DifhG`Q6?E{Tr?(T zMM%_+1n+c;gxuw3maA&EHz33{h8jb`N^u#LvD(GReF~lvYh}LIs6jKeOU$GQfuN9@ zDDbY}P;#phxbRM83cl%Gpi?hq8w(OGmGmKGU`QyTO|sMwqk@(>vUqpyYOqwh>TSfz ziKL@eh6oQL32$tso>S>_kj!d!cMfYX?)7ZRV#>p{C$(ozNGq+@G16EsVDGi=h z@RYcFmHKYCb_3Zeszpw+q|_x5Aa>5g2f=fs!Kn}(Wp}E5wHd!JRMj403c@PKIpZ3f z_27jLlqxV@CfwPrbFC4p5(~1F6H`H|Y%~R1&kbCLoLZhlvgyu)IB%n_YT({ zga4627lo@)7?vRvjJmve!I$3Y)b%4)%rLTqYE}_h5w(UV3IB0y0vIhl=&{ zt;EVYD68T0aV5BS5JC&;B1lr9iR7g{k7JA{0kDJjJUwP&59;x!7b&UvP6PV z%+q)u_*~35-{1(b1bhadiIogi6jo?Us1-5Ca2MxXY#Xs?8^o$$MLf6-a2~;X(3*G! zv7wV(dn=eT`YtniSq(4hcD`u`P>LrDL1Ku3y6l4D;Cj)_Jr6qF#W|Pb3Y)xk&#G|v zNC0C+3DMxm186xj4YmsoD0uLSfnfM4_9jTKpXP%V3e|Ub;%+_8-hy|HQDVM4b zNut&=3UEE8kA}s3=eWPPYI=0q_l>E$&`)HaGBZ&TqO^xN+GUx*N4-0RZ8gsK8l+x; z-!3>|ie?J`)52&M4Sa;?NbXKv+hA+zKI5l61N)Sv_Ym7qZy^4YTzTS+2j79+3pUn0 zkTrAP-O8Y>B2omSwcwHxT{^$Ob&!@4c4xNQ4t=csdZGr^P+aQ`t`DrHzU#sz-YaoKJwWU8bY90^jup%avoK*81GN-6C! z70M8Lr`M{wXy!Yg$d(c;M~r7#mkM{OEKSK8xDS=NZ+kA?6X#8f1*5w_hsz9~6f#iG zG8bUdl`=tP#%T2S5#g%pU+jmc&-6J*YH$)50iPkJxTDrG7w;u|*{o(e|B4IgmFFo)u;q$dkxLObOCfp#{=@wN ztjB88VQs_S$BN*8+9VS=rbIKR!I=OJ%djFx*nLIFYSp}~=9_irC0Cq@az+MjgD6b_ zhMAPP6!C%A&@HzuI$HbAfGE8+l;uRSrvko;1XIeis1%&ugEb6)nQsF$fgq3tK_X=g zJT2yOG|^G+1$X|wczgBg>lEo<&;lI=TzEqJawv0|9u|lIv}op`486EjY~8H-Znj+% zJXq!x2{{s?WK15MQ$eXx@Xt{e?i_~odeN75LUglsy@ZyTF2g8-_8pOLzg;?!V?@0>FjaQmc zW(+l+1;Yq6oLkH9+^cThHObCEG~CkYXgCD)&|_tls!1~_oFj6m-tY) z^Q;VW+)A1>1*bh3A`+*Jms}|$@_sHP=rwbDWt}WZ&>)HRAtsufrf>#BY5r2`&Rf{D zIB9$5iY%0wC`3gMGUen6_ZrB8 zs8HX}{@5wC={v-$JmqlaqlG}wvnXiDAv0Cx@My4HAtm#XXv5{4t7X7X;7SEaWz58Y z3jrSxoR^7*p5N!NfUJwY#`!Y)@&-v=gby+WL3AQHCPJgODry#qq4I%f;J=SeJWKgWe~87jye_YYS%Uh)($KxC1qZg7JDZmgg;uqfn-uaTxjlF3OC!n zp7pKhz$ew&k-)fBhEgxBmq~eG%9NVYJE2~Umss(>cO*2)fy1Ih^%hFwT}*<&7!#9`TZyP^NIx z%&B52h6hO17tJvCuVy>ZmT9={DEvnVOCXw#mPc?Rl&6Htbhk6E-=4ifuy!NMfuF#$ z7D_vmr5`=k#{MFp+etkrx*C< z+OZf_2uc{nRH<1Df~HI&Rd>xf`_$-s$8S>}5+#gEXPIUkd{MCNUJA{vS3=ym?8B;R z+p%h2AYHrGFXlDnQcIQKzuaX9X5S_nlCtT3-`+6aJrvY|51OnJgk)dJ-le9gj5?%* zc+c*#$V1mJa3Al!4g>;b9jvFm>>JWHXG0Ak-1`u-Hg^uzu&EcT`Hq-TF(xIX6oOJI zf}|#B8mS0Aa3k*1eZ!_%U>n8my#oAEPZWeaTyy1;(GUyLQWFU-R+e`T){Lu04d>3= z1VLaKXPdGHbH%AMJ`xCf?t`15ud(}imy_W^f;=K=uT;np9IWI@OCb?9Fm-WQSh?2|P#uw~x1kjo@GqoZOGbSm{S!I-;3?QwzG(0x@=f=@xLEJy^mAw?;Y z;}Rkq?z9&V^jaTiyMH9ITmO=Oz?<5}Z)w8C;Kd$>XbL*jDYP?`8}ajXI|UM%;%8c0CC} z;bw$SN)9K|-sKox;_%wNQyR*17hHdY6GFhVf-i93Yo(xqB<${a{?+qcBCb`|mS>ez zfcs9BRe9VpnY2j`gi_8qZ6Lz&L`UkG%S9`u7-KwnNB4sUR^9S-)z0D`JgJuzA~F#z z%On75B1>v5SMax};fgf3dM(C&woJuHSc*AiZe)nu15t!=>4OIA9-Y3`sEm?9s6a49 ztOm0lg^Gdk=sjTu?mj`hDErsbtzhe}U(FUOo`fx9?PCbkCgP0-7YoiH_*$77ajVgA z*_@-P+L`|Nful zb6>!z^3KEEFO}qh%jl9RTPxwx(>wq(`k`Q#Rlls;di=H|`y46>nlv|}RDLpVzzHt~ zNmw|AftQ5dLzTMK=3b-l?(Huhz6*bI@4x%^U($~$e0cNj?SFg+|Ay~=e)r3p`#*)h z?SK6#efZnEI9D1K4T6_uOD#FmER6XBKph!&4YPd~&1Xm>Pd!>J?v~$I^>{O#h+W=M+?q_4TOJxwC;{yJe%ww8@69+i?|ncQHoZZ&7y472SIXB0x9R3ic^BX0H|hN^bH&f55EYTEOui;D`m6~L zSp*ZTl{ed?K+@~tcCVKQ^!)GrFaMkqiaBayBE)rpI!hzXAsvmj!&F>&cp)FfOqTislnJgEQa-w54CTF-_nKw5{u4cV#7S-7G$m1~{d87%qXb^ z{p7#DE&s<-EVBK_cXxmK@!i`W{^PrUyn7SB`}g@~VHkKfRC%RSmRTsUl*&@!RHEA4 zx_zsvzi8Hzj`qzT-TNQj%qj80ZL-8lL z35g9>#I#pxsIKZw2WqwT`8c;E4T&Bc78i+D!dX=&X2Stbr3*fh$keYS>g#H8IdiHs z3&aN+49`)O-tN*05u!FKIFbF0xgW+?ZC&hN{b|~HPIsd*(K8y2in*-v)PZpkNtq*% zW41Ssz}wBT8tZLyr_|qnj_yO6ZB>F`!3&ujk#G>HDXVWpA|V(eXdwC~b-L}FW#4T! zA60(*W&8fe@BTmc)6f6w@9%${5ol$xt`gicSwdS{#()Xqh0`tzZ}_cbL*2K{FitKw zxP2D?xQYXd5q6FUBPNv2oy-z(oH1@K6FI0zATsv)vr0avJDCWng%FBUYL!q<=EQjl zK}1U6hWX99KKF3ruU)s=MH(}XFg_LUalL*C@8A9SFTOew(h=El{^EHkc2i!umI4q=Znr= zCAKMoO;WZzb7p?~i^v3!3zAGwB4vt_s$`MKxQWQfxUt<>UX3RQ&j-`#E2ylnUa^=F`y+!y+Z%3nk80Z1m&o)xqRo_?3gY=<;$pI2?}-hRfuouY7bZA5Fo4 z92`798V{y5Yw{~!wdsT=_h5H-IGc^0j)z~_>N>W1IeRra_;K`QQ|cPxEJ-tXHXlw$ z2YbVVuVSi?pH?Irza0EL`^r;S5@>QT{&{rpWii!ldSb@8Bpo4KTdrMH!T6XHcqK`| zwJ52KCL8mpB{LOU8|k_m^+`aqPBk=Lj)Ukn!~50W*kQJFF> z1(8|OY@_rn#poyw?2>9tg!y9MU4}Qur>~!$yO8b)fBZp`rGC(37;)Z24Ycx6r^rM| ziW^~sBHH4iemaef2W;dr?!3Kt-O6X&`R&l1ySGosU&~)lmcQNx>)qGp4lxs&a>A+4 zPBR^yw*mGfmgIxTBKgC~xXKPKsd$fQcstz-nCIHFthBW>*+2}BR!|naW2`7@-iB=O z)7jgP81j&Qfnd|t@xi3nID9zgcnoSc><8f}a;TT<~})9h9bShEu`NN#=7 zo?4qMjVgl|V0e-lj|6T?rZ1D-tZ+(suu759qys}VCD_1*hp3_{%B!}ZV@uN`yU0j}{Z}h0vA z>Uc=Eu+a~X-@kQdC6OPb@h6oOEGOw~lG>7lLjf%)XU#$3WXErThNHLcb-Je{y!{&c zOa+#f>Btog8O5ZbA{s`bG9F6IX}WlKa@k4PhrnyAQswAupxUXV1=cU>>{OPV z(r8r-q=-jd4o*)OmktASd&d`NC+_!xDjT2f#PZ)iKbUBp;lczATpKL8@mWzp!Ji0V zwos99>K0Px-Q{9;@%HQ_6#-p%f51wZ8~p3>H7}r_P@& zPY?=5OXUZD{+u%d(LdKBx}?B>U_po|LWoH!n^;VtiyYGgvL~dMi}M;S&dU!!_nmjE ztfsuM0xU7YtpwXFaB#|S0*>=R5~XbiZD(&5zs-(MU!SDfk!SJymoC$UF^YIbKp%u; zJP|@G5{Q&kf_IDkY&VIycz3=$(doLdb5Z>Bm1S#Gmc-z!rkFY5#06$JqngsDyNMT9WXhqU*cUhe6ek7L<}(iXt+_2!fGh%MGQO z>fl5Q*_4FD+{9C(^v$j>w>Tqt^S;aALUL7Dy`Ny;oA$e8bJ?(^s_uL#~LJgwm47spCq@+ zG6|_eBbX?{GnQZ{63Q5p*|1P9#dn!`q5>NP@VH&4Q%LW;KJia*gOG2QRbb9`9_#s-h#0Sw%L!ehilSfHu|sg0B(zrW zzYvV^R>&+#CK|kR3HEa1yu^UP`G_2upIpogJ1M zJzJc_Ml=oMX#ak4`S;>T|KDH34+W7k!hPPxpR+os44#3u;8SvNp|lX(D@v$KcIh&` zJHJ?*H{65fXc-Ivz5mK^b#>xMqyejUWM-g2k_sddk&`3dsaQrY_7>sY+f|fu$!Tz} z)yE}|#pQ3GxsSoDl1u?bTp}!jEvTp$UKp;NF{&WPFuqP-Osv8rV=~WzE9*74hIkL6 zNk$H$-(}XI$h)`IrUN4U!9LeVZw+C2(kxl6h-R7ur$ivsOGdNhJg=X8e-TRyYxN7Z z?M@FUi6et9=R%pt0@om)Y=GyF!UZC0>slt2FgWVn9@lD8&$nk)+}@4HTAhco}<&4&QDgV>kkXx-u6*116zelWvM148y3Bw zgsRA-j*5o{1zw)JvwQXMw<|n^N{WEh>XTwt$E1Rz8RSUhDnv;ON|gCw?wWws^6D4g zpvenqY4Vy!oQpywH;QHjhBCMYdKsvwQSht@ zic#cN*GOrSNW0wZ|*EG4mq2xqMfc16$QfEn?7=kB+{Cah;Q!>?;opaeU3_tvNL zC*RV~+sDi~st8tMlumIgND{(OZZg+W6a(Svq}f_1-b-5DZUlp>6ur06F`TPpvf-e+ zxdhGPJzY9rYr?%){F**<>V5Q?ANr<(8RJcof%%}ab~ayXFV3rn5Nn_%xAr>1gX_u5&Rx({0%w=G<%L%E1 z-dD8<`kYx!<`{uCDp4CUSQTE7KqZ>HibZNojW~E5Qtq#d4Z;*=#mVXU#aGU&hiVeo zAWRsZGg`aRTj4=L2ydK*y> z5Q0&Xli<=tU8CmYtnkLxq+FE0KO9wR19w~mZ&S=nTFPCfD%cp95h2J}qeXkOe%={< zf?5aLCq-egV;Q9(2{0xywN$8>Y5l>!Cft8uzJQlB1xKA{k+Ud*2%MRuEU1MBYqeYZ zY-ogwbo#|dKa^&fWe=QR&ztO0+ia9A2(H>B_uBQSV)xe07nWjvo;$Yo!uy_epd2dCfbs4U{P(l8VV6{wb}r#R4~K!MGhSQc zmFFsY=4Dm{k6=Ua&KOtUX3YbZx}W*AI;|+@NQ#(9sAVC5u;(FYq5}BtmJpeEFC{x9 z{MW!p;|x0sFg3hZSP3W{*u}{@hEspQI3{|{tG}f4t(~}adMYe>7-3-Le5PQGIq9=W z$q~!JiBLEdTBlf<8Nb~4EapB@=~fvF2qiJ~)>4tc%An41Cn?8v51i>`Rc_IcD8-^V z(U*~4nI)!ECQYsKj2eZ-dPHKgz>EV2;s#m1z#L1WbO8H-1wu?BI%8ZdXRtOxVlpqg ztk!9?KB-#E|JE_o=gl&iGfB18!UY;ZOapO(1Q$n39pfr?y@<#8xZZE~YnQLa0f1sU zB^;d@Tu~Vs2+&X{lOt1tmpnE3HJ$%3&8&eTH!<+>t$r6!Fwk-1KqSc)EGEHNeT%4Sq)Jg)+7oR;9 zw;cWpk3S3Ni<6V54v#544$XWhgMPb6c6PqFEau04l0Fk2oXiwC*3e08s1?8_WeS|k zND?EZPAJLWbd1i9->34U&pR(eNSX{wEF~UEjGlWVC{V-`Mp$O;=bwX_@XM;0?%uSc zzuis{IM&xjqLn992|*a8CQBlM0TS6#Ak9{zY#ULlXXlHzwFVp2uXu63s9l;bzW75V zW0=zln2j-Kq)mpxzN49XhXuX9N#?HypC2}>TM@?+HCkc`Lol8hDgw7WF{XoR()jDK z(zZe~ah18WGLdMkrNmp#z!H|sN-CGW=WKJ>bs;Ztw8=vfm&yVuQc%edBCYqHOJKBY zjF2IkT=Ll5c}&_~y92e~|M(suA8kWOot*O)yh?3AauLC^H#}=R=7;sS>zV%7Hm+h>qZ} zE{oCE2W?jz*?wilx+O@sj4_HtId}vtTAUAyhf&OtXi0g1d35^riwnL=N}b5UG6&j^ z#mpl(@7X)fz0y&J4#Iqa;aB06k1kvADqV^xxvU+wl4D?nS-R|-)uhtH4!~NXX&@k> zLXui#MRG{Qa4X>-!E{-BcyyUfZK~ecSBX@oU^7=m(3u&MONsRI z&GBU_#(#Vn(nx90dWm@&jWi;fkPUc|KqIP!XVSEY@&!sFEx5udgG!LVDa(;)D`c`B zKd08WC^S3%-&K~$1^n`P$LpC7jz$(K2RmIjo~;n5zG%kLO``Sit^RXe7al}EzuQe8 zG=d3(wYwNl)jCHSvye`50rqGtvmdaDN$CTv{lMl&pT8>@h!D&~mWy_DLYk-y$S0mD z(Mc=^+2KPsDDYr}YgT;=UW=%`jn1J%L6ZiUJP15SK zopc)U-@op(KEJqh=a=}?6TE;w94wmcWIlD(;ce#?GM5Mk<;b1$RDsczsL%#;RXJ81 z0Ri7EemlBI=a^(!S)8$z?p4jCJAt1b(DWh0G?-5w>?xOtOV&|gWi;6&MckvT20UDNAfBNrZ`B zD{i&Tf+;10RW537z`sdAA7(+70&58lKRXwR7mfgR-nx^MX$qHaHC^(a(B^id1n?(w zCp1-@N*<_>I)WDDig|;{CO`{GHMK^j99&S!gWv28(E(g#$3Z#H{`=kWYamg>{d*vM z)Jq=fJTcnB#*#ES*k>Y#94IlFd*`IB$TMF2b{{G9X}QT7;2j}253m=5b|A65=aC!2 zyk;U--e;6X7~vrn0?&jopr%v;gU$srDTam^8mD>72aoXj=%Xg(G4VyI4NR#H=Fqy0> zN%hOURCC*AW6kD2kB6_GP6xZgr-MCA$ErQRgUQS4B~CA6H7GS6J%2I(Vrg|9d3Fcm z@qBdnm5=)PXm@fjpH9ZRF9y@EjMPD&z2URL(Rluqk@^_v*<`%8H<}%e2S3k;KYf)- zT{IdU>lU3SiX@}K;ozJYo}9^)Tf+$>mbjp`q9O@ztyGBzA#w&MO$(cIIh11d`&+*_ zDGQ$;s@v92CQg)Bgeaks4cP{1LQq^Mt#UA!=2R!s`q2EL1OWQT6XBxAAOQ{*=0ST0 zzQ1PFc^QM@qDh{;l-;|Nt{Ep^ByW+#9U&sgl)Sf;WW$+t!Xyn8OoVq5uOma_fiPR} zHY=T}pb@*RX9fJjl9fa|AYKG=v@)g3=RS3B9}drWLP(NXDCdKc$_OH*kzP|ul#Vn# z`u?(&E&fNuZEw4aw}VIYHh679QcmiSVZ)&OfIk`!IWC(C;`iX0Z?`{259d3Pw8W7> zUIK{()0lBXMHc zbI*yB$r5<)m#b|4hbApBiCj}lvNxVE2F68VBsfB;BcL==?a^1|l@H*BYYT=_2*C&H zuq~{2Q3TlgNdcE<^j8{BT_iA-`AX?D-Uk-=5U&>>X>jrM_sdikw_jD5vdl^Pk}Kao z`q*4q_@9ZyapsBk864ycKM)$E2gy?M*X|p4`g+*_<&RHDyf}V+TID1Dv1jFs3D}6B zYXX>Zj#80>i10^eba8-uSY1`PED!OdJY)W)S6ao$KoM(YoCUpv1BZ!IA(!0qB4M&X zd&cksQ&0VFuhQBoVXQF9hd`wUo*`CJ6zkU6l2z_q-09Bgq6O@rq(ubIiHfC=yyTR6 znst^8r+!v+nIa?o=evu`bw8#rGN~eGuz0b`Tt*Ite;}5F#VZ}vLAmTTknGKI_+@wT z_H2Qz%NM6#WENpmgn2rqg>)rQ7ZP)|$+#8VNA zxOi|Jv^Hw7*9A=!C}uRnbW10UbCPStjE=CuQ0p)DkKd*}cj@Y-bZF26b=>ducHm{_ zt}-F~-HE#uyWma@@GVMYKDD6pG%D|zw*o#&K17uaH`s84vcxfCbAEnYB;11`f9~LE z&c7y2I}molBxH8>O*iUNU;7Rm{}%j>9y3(W$6g^uvd@1|1q6kf<8PM-!EzZ zK_cwO(QNc|JbX19PY%E4FLsk=J{|3TG0DQWDx;zUIVHJ_iDki)2tg{Mu7BV8%RP|y_rNIxi;HPubpl6E!vA@4%mrx_W!f;#k%k-1TOQn* zu*Tpgv(iT|ECZ)5WI-aQT!5(du1Zm;dM7+HTm~V46&B}laEZzpld9ggW{a)cFh2ywz}}-F z8lqLCS?FY(5gN03CD?{st!Qz$IBrhjEIufWzBBysp~(wMB=bB09i+*LS%%H$46{i^ zlEGRo39}B8T|5*?p^2fP81{k#(|nYkgE8x)(8i&O>zL25eX^i2D<`obq0BsRWesD3 zV{#2P#90&Op~icHh~Q{y%T3VI5RfB*a_sxA;Xg<$g$KC?*aZV+EU8Qh1)o(1XQ?n$ zm2|?!K~H~w3apeKRHkwtb-Ym_IjXeRz-ciC;vyz8Y9BJEczRS(XVrD~i)16>1qtvs zYZfBKnaNJeV1!Es%o$26LXA!zTt+}Ibr@JMgb~Vez955BaSd}t-zzO(GnmWRrV^M8)JQ@(K9WiK$R~Qt5fOO@%x9HRnkwX;K2|`nQQA{ z|9NmMLDv~WoMIv~U#HX;$Vv6bf54?U#!JgH4hZC)N0qI$A=;?H(UgQ4;DX;adv-nm z6S;SLc(^Ey%#kF_^c0C?P+$?%m{n3GQ|FIa!4VHrj`aBwB^~b94*B>(6L>HY86_I$ z`f(XuvZQEHj+w5c+!Xg|JABet?r_cvRT7-V;0(_pMIt$~Q2;2lN|Zct&#bk(wqwhO zuDZ)U*uYy4bHFZfHc1shR`P7P$PTBhf(uQ&w>g(|szQ|yh(-Eo<5dPpVqGzS9SG$- zp}_`5l?yC|C2bbx57sQT!ejk+5KP+SES{x;l|d7j=!WZNX!Zg4sYWgwJ3KnQcl7$`YA$aLlVGz+PC*7ckvs?>N~dgOXHFxp!}6fu}Q)&eL5Wp8q^qx zOiPNhpTHT2Jic#R5#poiqHoxb$Ytf90h|kKxH; zJWm%FtqXt@4hQ-Eo9F2?onvD1j{p7N|BWj0cc4W{fH#+yXMcPA__yDF`z|it|Nc6i zez!P({kTZnS(4!&$8TS^?!0qx9-cf}Ex7pg^`mk;?2|{}Q~_;^`t&D{IDNF^PA=Dw zh$>ol^gHt%BS3``KlrS~9|_|Z@pt?ezx(@d{^jeRfBEk5caQ()p?m)Vtn74tH{U_Z zKUe)r2Y9_8^>Xpw!y9*gkuIMc&7Xa1z)0x0$xq)N4Zg+B67CWMMz#BlhEHs@22X;XJbGOk zJd5)h++JyeERB!$ieHb@Z)c11%i4m{qKQR({M+IeOlk%Kxsz`%f;$0$T-@dI_!3OH zYM1_Pr?DG%c5#F5OjAzh=@d_6$_3y2&^3$bl_Fw<~E}j4W-G5zRRI9wQ-NN|$=|u|2 z1sCnrHGEg5-&QE^JT45nl0BC89oW4)#}R-QXOBt)I4*Wh7ng9ew~JrX&gGlqiyZ(0 zl3(r|qh-6eDD2mr%y zuF5|yOKb|Ku6O|8^1^og+m2Lc@BjX&^k-u66=&y*|H8HkC&#Z(AFaTbH~jV_WmrVM zlj&`_YG;kwavk#7qZ*qa%+eSye1|${F^2rn_ob*`x(~%Y3x5G|LSN#Wou$hK|E$dB z(y#bt30M#|oyMIvh3#1LBJe`pE!b&pj}mALc6pml-$i%nK7iA3>5Z0s|IOpS?EKFY z*p9%WJ8#|V({%Z_|MC9v$-DE@zxm7KH-9S{z8aH3VcC?3#4M}inRVRK$Yd5tY3>3q z67u8elh|xc=O%ao3lUt^-r_nmp}da@8A4i_*+BuTYLk5d0czU6>Ge8$EV+( zx?dlCzj|SnLkK&gV)3Q>RldfOD{CKLynFlBp%?ni+OPY!({urE_S*s?0g-ph9}52q z*p7+6*MQI7`EQZt0C)J#1KK+%tgiva=tu=TJ6W}_*#Is}OaXLO{&4jzK^VVT#OkK| z2{*ycv*oL}YUTN&wsKWPw%y`Q%L#6U>n@g_Z!wg0k->*O*;!sGZdBWc8!x92M30)U zZTVS`TEJVbZ(T7$dD}K8tilEGP2c?E?E8O&MNHrS+wo~Qc^A{pzn@(G{lDScE-I7o z-(O$;{U47Duzx&0D_4z9-=y>7%Zpp8tNgCG@k;tGLm>s(VhYFu-_(L<_*ft~m+`X& zO6t=mj~M*^hOJ<*Kl#~;=l`)%)iq|tZ~dmpv2R!-&{BONU~+t!-u}%Aqg?cy3*$Kn zhGfY@pqY>$QnYxwSqtyLsu8RjgLubS1~BoHN9U*^9^vs+@oS;NiUX^qIB!LWmbaKT zSNX-|<>Kw5@Bh!v&CWx5kar3@!bR&8rsu{$X-o{n9?vX6=4>=uEq&Br_d3s9$+BEqPAT<( zwKIxK8niV*nV6!}5l5bXN|wFZc}g$pgHy2k9E$0^3|_3Vw%96b)LtCNm{uERaBwi059XuE!K)Xey}jYVP1&{= zHA|UxF-WN*BaWMBG?9`i!7!JH(K>3gmqF(y{C&+4L}38r<0$C1!8yomZ>2L`$-s{Kn7;dlX0ASLa`nXpzF9cvhW+| zmeab1dnziNl41sgnlLtH$3ZN45JQY}<*3ia%!_*~Ao@`syt`bW>wl8) z9UWby+3|YT`3==)-ivFc z9PE5gm=DSk3+lzQWT~UrMlwZFe*f_O8JIlBmv@3fBz-NO*ps@i$I@JT|Ek zg~7>h?)SnR-exb{ls`XaF9e}f<}C22lcd@buRN2%D4`99-|z8W=tsS|7iNoh=ONva zzU=#Q7nGu!MyWuIQJ%dv;B9*v;Ey0oIAn~ARZjX%*|PWBtpShT>BJOGpt1p*2$~1` zty8L{DA*FX^5jmw+=L`^1f9pCWukzx$!niNa9%oEeEHrYynDOMV7mp)*8e_&b6HUX z=0eb@hOMy{^srOOW{SP?kRpepa+hwexNf?EK1y-*j0V5YimMm(*0}PU>Z-n}>0n4? znO(}T8v}S-2^2>ZAydIT$ZF6P2a6^OH`Wz*Gr0ZM(csd+&I}?5YNWBjXh~xZmU8F4 zl3;4hP8MfpzcB!5h(82}+Ei@jmZ`UetHp$;tfq z?Ba0Q8vKKHM9;T4A8e$+jV^;TXS`3;W|l?DnMx|Ps?d0vP8PqdS|;3>AN%l7(R&Gw zMHDY56PAvMPMP&=v@1+Wmb z(%_J06=O8MOxib;SPK4y)pZn#quUSLBfWS;Kt*AnWMp0Aw243t;dAt0;ANcjQsL3G zdRtiC^*iGUe)PduZj3iUb7cvkQE8mP0ZOJqw1(IX%&nX5vX9x(IOHq^t`kuhM~a{- zc}nosEwhf0bdPs*KkCEyI<3p3KYla!eW8mg$ZV+*SeolSXE}3xfs`{zvmuDJ zJHx%_!&e8BgW-+C+@#dmT|(_fcJOLJts~Xn!E!)iF-$-jj}|gn%!GR=;>hhhv(DD(ZOv*2757Oj#H8tD9~w zok8p19L#&X*ZWZ)E>7xO{Wfn7-UMu47MVzbfDx%Pj)F)$MahkgoD|>w^7u5a#*#eQ zneDzBPR6fxr{iZg-B7*gD9`~sI?5!@Z^iC0nx*Ix)28T6RG@Qodi=hL%N<~1jDYPT z2~Z(`d5fxBQLt*AjFbgiVzTc-n<(4tjGJ=nM>$$pE^crP4F?%O@IXLIBCO+4XxN+g z+0p7n{n_Fq-lk34_l+)t^Fae>8Nn$_F1QHZmr2slK(m$#!w?OmZtQOLVL+v`4g`3l zk|+SHKvciMcu-2a=tBgb3;aOfox>A%e0tYNXrEZpU|ox#Eae$IH4mmO&43u52k#!A zhm#aH(75v#|SHidpDMQqrvmZ!C-vr zgd@zx9I%~_q~Q5m5X+z_lIGknnXD>f=f7O_KIhZX54Zm|MbzNGnM}PPI^slZ2bVM$ zVp2#j`W}5>X2NtMRb|86^;@Nkf+Pp`Niqq_9*m95z*sj~2LMi`PU}YU>Ex$dC!6=i zD+&r#a+Se(R75gIfsEh?gRu_seu}>Cl{ghX@0}n9mJz6V0U9Yemy#tuDb7RiR(Ow- z?10G}it;OQ15O)^p1+tc(Yxz6o4gEONtsyYNznun1>}g7o>FCH1`d4o?&Rc3Y@Z#C z$9F+U0``Fu;B!U883y|{IhVg?8TItk!xEHKfI zaBOZAa>OB;I9BuugeLRZC)uaY6QfbkNt$4rT9HEzl$gvx5KCLBt?}Zw>owPS^77V6 zNMTnP&y+94Me@3_0Pgl`3H>99SYDX<>5)PYmA5?Dw}GPbSubKWYr~YWDN~)5(q9 z`(CU_;tticObN6%B^kT2I#7{XqwmU_SnZ|k-kn@NTb!rzShP^<8@R5t`K@9K=1}sO z<_6juYz+;DIWvHy^D+j*MJJ}!0d6;@c$9k^!RJ?xuorMLM zuzyfgQ(y7&503Vq-dvyezkCI{5!2nlvG5^KslkRL7F$13YcYU`rrQ-bq1krp7-<2v zBhNV-XwH?L*e`}ilA>s?mbon{iwrR`6Zo~Z|Ig(LH|r) zOh7T%7@RtVT+V%x3IRx#k^0psQ-e)@c(ps4?%q5!-iu92$yuEQql{4SE@i^zI*tN! zd9bfQHchdi#JZTNLa2xbPQi4!b)1M%ppjGrOF6^uHZ$ZE4X9j7Pasi zOs8cO=B{64)ZF+8uDJ-zW@`jE7aV>DHpmM-bUqyuefmh>B(pD%uEBlTi3ov$f)t5|6nQ*hFn#5l&BacphCpdd|D1|{(z zt=`qVLTb2wIRE)myiuSORz!kXq!MgRLxqyrSjmYq#=0U}`P=Dre784wd2s8LQ^C1_ zxmel?5l&1!R<}5~sr33rNr|&LW`0S4kj%K%x3!{N12SoBd2aMCh2R^W3EQ*(2 z;IZQdDu?5v*{67aA26=HLh{ECNj2<6$ur3kmAZ#3cy}^AxVib)i-TDHFv1ecLy{mohq3_b`#vBC5*@v38omv-@;Z1SL8pduTC;u|wRF;kr} zO<#hMjDt-U6UE^U;IC;xB}qhPF2P00QUs9OS)&cH_~orT|7F8) znEZf0+#vXN(}37V9qysQp)t-NizV~W8Ie7j-L6BaYG8p063ngU8;K93W zr2$vaWC!9~VV*nSROVDJ=eMkIDw8QEN86ng-jHuTs)nm)$ku(X;p#=bnowDc0XqhB z`L=q$-N7J0WR;h*SEGX;N3+q>n@5Xped^v4p(Q$l@yo%_vs*{%BWB*U@Ow5NPRlN8 zx1dPxbog8o@yWsX=g~ol`3*GLO?U3cNQwRl()U(M+;I5y$4iFW9=%+cJ1?h$!w<@b zx$Swj6*ey?H}Ct{iw*M`8#aLE%gRX=EtA+qQCXmt;4+oitW)V)C}H~CE$scfnU7qf z+>6nCI6EBd-XtsSrd#mi8r=2G$-c)8?ml3|_iePcyZ&pj6+k46P@Zg}z|&yd@j$Wr z1~#(NOEH8PeRzMn9u&M$Avw_hUIP=w7>J8#Xlfq-9}GRLPaLEwMD6KFXomP1@ zH|lzKvt9KuJ6KvT85jpSVE&Dd1X|J^N9|_fT3>x2U%JzSiNGPSB4= zV&8LPeFiU-X(5G*BumBWcs)CQpIZ8|wC`R$8~t?iSZ6P89xh5Fb0i7#_(cLkI%v>N z04r58b=+p|ZR$jAHrOBDI%cq?@LVHvZ5;?e&kgJ}W3b5t!{Hfq%v#Nno7ml&W#5Z3 zCYpnAQj|E$0>-(u60Yck0a9D2I?8(~ouP4m4dQ#l;o*&q`$M4b{41MFecG$8R4!UOqy71jEh}^AvaT`Qq))ZI0c%QlLf~xXfA#;+c?|5*}gG!7ejeYfus^ zq_(Bwr_1Q?*e?G2+3pCNw@>H)cy4--k3yAmFeR`|oU+5G46a0#&@ z0;?cK2eaXH-n`7Oc))VS?szzu4#wjOUR1X$F78cskM=8Z?G|!Y73+@LeE_;JVmNqf36HDO7MrIzZ(K(t<;TaDnvx@TO zZcqX%7BGoPSTJC53Q0B^{4EdOk}giEmM9Glc3(`U6*{($q{R!W(UjI$e>&WoR2OPI zH5<;44&W6}##j>qJE($U*M4DHL{jG*%I}0=j3gVgj?QrKUp>6Q6tR|0Ih}&X){M*N zm<@g$78Pl0no-eU(vHnT<@LK`aL}Zjx|2r~5l;+=vQaXXLNegyfPHO@vf!TcrD(uY zqw+NC*>tl1VsNmB`*HQCce8lVChTmj9!S_;K z6rW0~@PKZqG?94ti~t-bhEnh0wV9BYF9;E=%QhzOgj=xhuI83tj~|e_;AaR~5;aZE9z1lZ5l*qbnv_aV2wSpahdn+%%?}so()0% z?M(+St7W2b*KQcufSC`Tz8vk<%mdzQ9<-NG*3?~em z??!J3YP|!Tz$aBS01yfUf`?Fn`w4f-?&Dg`rI8tii_EWBQ( z8cG%{?Ft?KsorCvR#FwP3PnYq0wdDGH5@)8MHFdM*;Yu3yLpWi3}@oA$k>iGQLju+ zz-|&;7@{@V#HcU`S4iEBmT@UzGhZTN3K;G5Tv#f>n*w!1a%|WnAWAB9)Ti5!MsUt4 zAS1!rCP8Ho84m0wskCRTj^RPw+Y@&q#b^>zW+J^JGB6Kn&L{5S&C0}`Poj>`;dJ=p zXmV893gV9Zpq!W`H010cOK z;4Rv<@w^*1H`0)TN+J;#g$zkYouZ4{1#cYpvPHc8!R&_`PIn{zqmNhVdB75k2?P367#nm^7TKU*7h-p#5Q2;xSS^D1%1TC=z%+{%%ng!2Nns^^ zgJR&2%_h?tR_0T^S_Y~r7!GvHz zUIAPmOIWQbE!fo>wt3U1lkr{!z&8O#^TBwuTY-qJzIQhIUo~81*TdA}8&YiofM5A+ zG%j4(6_oD(>M1S-y*xM?*KTh%Z@*5#uAuBD)b5}bT2W-{M}LN`r;50LwVJkW|NLsu zj`#F(h;1D!5Z;f=^UYPF;}KVVvSz~?plbT)!*PT8lS<6kDv_VuKp)qv~Ut#TubamUOLy$fg$s9DJn7Z~lh6j6H5ZA}`i@sn>dQ}f? zNd3$QAf9hP&=y2nt{K+sX|8Dop^9Ew^TE9OR?C{FVw(WHLAU+EPaVrTm>i+no56N)dM8}}`P^!0 z0q_x461HIM^MItLwCN9e3J~!|FQg z|H8w`tZ~Fl32%StWdE=Xy{sTa3t~2(9L}oCa*M}AIev%-q8JokEmW=hKJSFm?Qbv6 z<*MsutFJFfIhZ#eo{~)zu7IQ)Xw1>7II2;Cvh7fLF`3L@Gao#!n1xc_fk`Kz*hB<$ z9LT4-i9zWWZ{>OS%Gzr=nxSbkn>W~$ZoZK@{`+FISG$YZ>iaj>+0C2pO(%z7j?E{} zP)DsmneKRbSAo(#SzIOqRnhpSoNHfgs)-{cz|)EknCLwcY_E_Ta<}}-L0y&7)-lqR zV7l-7tCg!mz-qB+O5(}*Xuo#VHV}O=+nr9vV4zj|mG`Qhu0>6~Q+ufAN5CBwp?KGO z=>+6`Z~O%qv|}`Ci8Cpf@*#5Jh?3aNfLc#UC_4Gz7)hSAS$p-H z*)CMjwj)xW$2Y~iX!6%pP<#uorCbPHQ7seQH*df+CBflzbO099^Mlc|(Qb2>i(cNk zZn56{nzCnJ{RozdrZBh??0QS*8En&fQVOldB!IW~2lFXfPt|qW_}XWq>1^c|)g5gr z**1c%0_Pi>c6V}Alk2i+*q0#}ECjD0WWRa4xkz=~c3StRsci20PLNL)lXB8!X?5TL z7vNu?EKZHZwiirVQ476K_D0VtK_G2=i>;AYq|N#bhETNkyd1!rOj3_+pb4?wP89^N zC%XXa{#2&Aw1l)0J;^k9y3oC{wpmwcOPfHdJLRUqnmuul!eJ`3X0@X3gcO$wRZ(5H z_2jt2G5U|S7otC1S}4)j2-R?3%!X%?`D6l%gcEIYsDjrUilrWPIXJ34dp*ANb6aWEW>rjxW*<%tMt*? za9+y88m&UhB@SU}6FFY&>{gIaIcn+?}gzT~d$7^U+~FmcZ&EujTb-(2Eh;BhHIO z%}5v{Y~!}=z!$3rzE-G#zc;Qyh;6>QbvDN8g##5x-GyWI$X64j@%4JEaMJ$Zrv{HR zVm9LHf$UjFv_~f-Zt16I>bc#^YY5hgVKde%Wu8sO zd*k7cwcXN+TXg`md?3*OAP=gOTh<@E!kZorrnP_=Ys9Z$e;4*@byYPj_14v`qE#Ej zX&wV2PQ#xL2M2q@+N0PFVr;}a}yTPrUaS2v_0>j_RZ z?m9dGxv)DtoQy}iKUa6CaT=C2HvCxDicSH;79`)m^Lk^lV4gbP)g12+L%V=W-q1u+hCPeQR#)l{l z_l^!W7B~0ub&yR|_a`9w_FfKAPVHB(PxbEXs}|PS3B&4z(AyB3bw3xOI^v+5EG>I$IiO+@_ame$tIm-pkw z$pACWJ=O(r{T>?}9uAw~M`l{4_{+)Rivcixt-^z~G6A|_#8$=%`ZXKpn#{<}gRUze zYcHs@+tFIs2zN2FMGWab!E>t?m}dBDHai@TYGkq-YHXQ=Rz!f;aF%Rir<6-yjM|H9 zV!Kf-Q9fTyQ`a4+5^{Ke=k4ngnhKKl5(0+`tl)X0gnD@q_@(BY@%qs_f*c)Imssz& z9UZoBSNA<$45syPF>e$oFE6&&_f&Plsz&gbH$0Bj)%HzwQ-C*-x_)o3;M=#f&098+ zs-M2EueR<$uixD-CY7Gzb^9JKv~R_m@33)A^u9y@Z{JWh?D%C7dCei<^|SN_MEg$H zZ{5|>#uBr6>kbrcJ=XWU&bRFPZCgUOZdWf-Lx9FMYSfl4FSghB7`}U>d1-OC<3XH> zM##4oA>eiAqpZ=X`{SHlZ{>p3R)N+N-rydMYc+Zw3}4n2A7?%1Uz6$nvtcF5IIl7O zkGl;Xu6q~dr4|YK_2TA#O(y%5i08b<^LS}e1&DdwhXA^5Y)!caC!ZNxB{u| zE5W+wyvgKZM$lavL|&+X%ZWZeQC5`>;!k7%R9< z;MQY}`U+086=t)42A9_hpQlssb2bz^ulslf$kV}I3xc&E_6PIb+Sm452H<$34N@%; z8)f>#NhN%w+^ExUT<$%j-@}}|MmU|zW;C`7!n7Pdp#Big`e&8glfC^khI`M4&HNs& znr#QVAev|M2vPUPxMIC^-WyB!#x0vxB3Ggdtp-Hj5d_AjS5^6|HL4vLKd8A0TUwoL8~|;X#zY0ulS;U^Hyu9PT&3#A8RH>3Pa80;tcNZ(?r|y$?_&389Sh+thp~0B zl>{^&%oh2GqTc>D~gE?rc zBFn!Re_H|eAEsTswq@jl|2l6N5|(rWv{XyasoH8~)8MFkg$;=I&3Q{s7opH*RF(G} zuz@x&RayPnn#O0LL7E6Q!z({co;|D8$8g&l{oYtn@551K2p2l|rwX7R_MQ%&HnxBu zz25pyW&KElG=el^+CO)~v>dFxqr)*Ko((IAPu4a@2C5}9n$RR27daTOjP!|EDxz@9 zRKe-+`Dlh6%J+*DOt-|cBL}Y?cN9czrp9doeX_p(n@$6Ny;pH#v{YxLJj{} zrf(J*9IJ;00}>y5Ry}t|UBipX94zj6^+c@%;PP^L{8~Tb6ttJm8f)t=n`rg#Y5;DO z+X>q6JEw!Xxh{GR^H%UpX(8$dc?eP|X;F9j%S-LGYOCH%Pg~^Dn^|H-^ZW|JH1l~H z*>HmPr0&3idJI&w`b#ZIT-F*isLQU%n{Dtp>(`v!>ozko0kHFYK`_w;+i}VunA|G< zhjvx#-7(b;^K}8~&G=jwnAt8y*R|9(J-rT)%@9Ht5Z%Vn>srX#VWTb}z8UZ70_&^u zJ(?H7s2QFTjTTEynD!T_DTv|jmv4IALaNQGklB2+`$O#xy=SYP zt7?2*hF&|Nnpz*97cA(b!MKsvAXIPd&y_3bbze~MQeDEgj>dbz`8LPSh1zLWdI=>q zzNiySw$G-pmF=(w&|7|8Wa6&+>K*KXBCb)V=_g+cYC2*Fn})cuTQSS3^mQ;kd@)!r z)}*^ww*zwXwU(4?SONX#^H(k89fyZ43{<=Dpmlwl1_Z4oW}}R!-C;uLjZ%nB7(=$| zywETcO-JvChUsir2S6=-Nto^WJv5tj2qU_CPE-JL6QJIiLm0Ky_jZs;Z{B&+2{2|8 zsvhkZ#%}ffT}>>6C7U;IB~uC8@n$xQ!i8m9q0x4`Y|~J_+U;r;(qHXk+1^T~9=FS? zu5aq_AnM7*&A@)qgQ1@5AbPTl8$th$)wW$mS^~5z6-h|Diu4M&ZOVqrr9TeFN5g6% z>;8fk6mPY#KoI2qhHEE#(vU0c3+KMMRCas=+GdzkSV5@{r~=hNjTU-4EE)&kvK~@c zgVgLKS&t{I+ISSawua~lB&_;)v=-6L@_|M&u%xWZqG~|&S`91DvynI^TTQvI0FqZ_ zm(794f2j4bm9+N^>DtwL*Hf@;68dL*N9ujU&OY)dRQ-eo=YV)F~C z=WIkXHf~pgliOp`C~A=PEQ|_lQ%izdxuSMT_pk);?x(c*;epeLEZlu7<{&b6O#;<2wtR(p4sCcJMF)hueAnyjW zeTU|ot0T$h&xj5hEeYgiET$VwZ~goS&5Rz|5t`|Sv)3W~ z<7hfR0+z$*`Fe>VTOV;dV^dx)pl57POz0iY_*zTJWI1)P1|#*sJwnJ!Yo}xf-w@vs3-?sK(lc zMWR|Usp}y5bvm_)y4YTYcdV`nktv#*n^uLY2d8E)2ZyMEO2%sJXhrn)v?#wf>>P; zvQ_>1yt<_NQXjx-Duz`yy1**hXjyYGFTyQ*SUq;oplIzy;ThOy7v2$&eL8HiL{Cl( zrmwH6%nI+V%05u_kj@5NJ+DBu@?%DLNY#)7sy{iVYth{dVX$0Vnk>e=6#QaXrdcOu zGZz&8E}Jn;pFbUxxnaX*v8ZBq(=EwofwNIU=8-xlSs=6=BEUk(IjBvvntdY_`($Od zCTFS{p-Dv&yv<1^&5hHJB||M|n`2$pXjjV)Wf*Pd zJa(X^+bzZBlZMr&*fu`Vd{VRJRI6j?e7O7KU^1ROujCkSmC<)V^z?u!^47uY%#5HMn?aSesPwbogR`_r7euK=s}>{X)QFhzmiDq>Nh8CZBeIBaL~DIwamR1Jq)iQWjp zMpt_!u4=E|0&8{1#Ku@hWfZRo*J~_Zz4VH3K@r?qL)9a4bqP2FtyfW^ClpuaDYXj0 z)MlbnXVI5xHO_2zT_22J4yr*2N{X#>ORl)VW;bLk;m6|m;-F|)!%TJc;q3<9s?W@N zb)%t_l4f(WVvmc8n^i|Q>J|j;ZMRa34J*|&@9>`cz(l+CW;Ci5oVx-@^gFxQHM`wN zS}ED`@w%Z@E2ec7T(5;*)Wxi~LEXuEIjWWMsa8*rt(V!&9P25zdau9fp6MXiV7v-i zRI8ftSddZWr1JXn>!t%%^plv?8%ikMf8yM+s6EddJB!yl^s9P!4#%&T*Q?9DQ5v+q zH&!)csiXa2A>Er1ZKa#XPFF!~HzMQ(R)sfCd{oz*kS?%}VIc)r!yVmnVo1kA-Z6`$ zp5LhIQML8tktT%PuBTvA0k+D&N|1*8S&yYPWB0%c4Y#VN25e*Ta8TP@^&+qmiDwRBJ9t zA(39b7!Jqn3P06~U0nyMw-_RfqM)7=sjO+Yt=a^!?VMj!7ib^WIY;+Yis722xq!>s z$GDm_9pl07?r;X$epHWP=yp)58;EZ`%;nj1uwO$#bWd|>LCMyfY0w}QOLEc|b(`bJ ziROyC8Su-jx6BBt0;4HjcMe> zdghJK+)y4U5j1idyc8kvoP6{BjL}G`+;2d%UVH@3YzZ}bIvq@FPuofb-=IdnJF;BT zYJ~_(ZRf44V`o8VtBw0=fE3ux^*hntcJ3_-tk%`bj;5m@(W^(m-AdE~P`&JEiQ@t6 z=jx63H1k<4s`ZzFHH|vn+3s}obhts>MmwJ+(2C!N^BMv-ay4d0;P_7Gb^87P+`Vga z8%MGz`2GG0g*IaEJrgrK^?sZ)b_7U*5{^iM20+<9Ul{eslDI>W3X<~JcVqXrZx%pw zH%OY*&1U0}(r9D=UEQ6PnU$}~$~5=$BIYMM8z~Wjusg(94`_yLa8!{N)r}i9I`B?* zpV-UFW4Gh$fp>WlUDVmH_4v)fk2C20Z2Ztv`JV(?8$+6*f(hc_Xcrx@c|Iqxw}z%M zTDHZ?PBysf`|kUjRa_|_P^eB}>y6e@w={fgc&k*J#~#4$_aa!1xEoZ_bkka`N8Ig7 zpbHCW6;?yb;^e5&L{4v&Fp*E>D`sQ z+&8>8tXwq|oq<)fWPWe&N)vUb{KDa37P%jr#XB{<)9~lvL8e6=nWd$DX9JXLyT0$u z|ND=>-^3sBpQ|7L$3Jea*6QyXzPc-Sb9wdeMHTnv?BX+Ao!z|o`puu-{P7j8Pajs9 zZ-4y9OMnkG%ijKYJBbIu!n@9H;LE=|i_q9yho1$hqE{gr zN~G1!P^-a*Cj&LX#~(ntdHcqlpM64zuFgJv#&5sfe!aQ;inrjT;}36(P~b>Z1g+K)oJdQrWNbvD|^$Eo!s?zQg0JCFV_{! z9gc zfuzx|0`E=a+o665if5vJ<1Fv#bbtRI?KiF;-IFiP%k@6VnhDylz+l+!rBFZ$!)-!H zh_lFuAi&T-^G{SNy(NWGfZ~~0VAC!*-8|S&ekY{PKDs-0WrpF}uhhbFJpHrrISh1q zkb{5qa7sukMKKgf`tV7Fz!C{eB^r@wEl{Df1nyY$Qc>6rpOl~&&hQxT@1Nc#9i296 zvLRJd#RAPScX;c;G004(BXr*ITdoMVA#z%PasO8K;A;+c_f9ic9!~zN8p*pD!b6e1 zm+InP;9nbK4xBnEsZq>$bn(GjDan>pR{@IQ_^}bz-w;X_2Q&vPrke?S^ubZf5=(b7 z`yS)PjeD!0R2R+~jEH?WDY5Ywk7pdg5sHodOtGu zu!wkI+{t2}vwKqF;ek|jv3>`mKp(asiU^-L@hnOr!6l=TqTZmT6`Ax~a)3%uJQG_q zkNe#T-!jEj0&W(pbYv^!bNWl1ZlQI+!7Se zN!;ZjghzecT(UfP@xJPL(#01W4CQ_Jz)P(;rP@l9JEZd{J&i#*l9EGq z-I7QzK{1?{zpAl+I{k2;X;xSEN0Wn-*#lg&y1X;mTkf~F;+@qkKaXZdr_Hnp+Kh@e z2F=Frsx5aMLp$)=U}WvZYiPts4#H8Ek}?{!A_heuHI_lpX-m9TfZ~}nOis2r-I-1g z#-pQqytTZTbCcgy`iE{_L`l}jCv8RYp|IO)_me6bLLhzn<95W|bPgQD?vD9*d*rPi@>s^q`mXo)?lK(&$zTNR zB}kkWf`M^91qJzFR!Y$k5s>k@6kCclm7o}ot2QeT-`g^)<;tH zig4>CUfBH|bGs%eO2U?xCC7ZTk;Jo<2OoL<&AR<)pV!pjVG#l*g1?q!6!@ z-ww}|pm-jhS?rx2Opo4;X0z(hZ^a;ZE!#35#&t8uRxy&n@YgH4NupIibMClE)Bxk2 z>BLz=4kR?uEk!pAPz7>V}dpo=H`+1_rd2ig@{;nixw_Q3I?s_Htp?9Q>@>-zfYNSa@2^Mn0 zX6+ai;Z=ptq7IRyUpc0c{Y>Fy*qB)C1?NS<^8 zwFC^eAS3=4D7SBB+CU! z+C&n#QNc6xCO8Unn<%5P0nhvCY|+G-7zCh@6zC9~R6az)y;8(;iL51gq(nFP>9#`8 z5*E2F`l&>bh+IpD9A=}^fh%iGpgyAU4uYv9Es7$I98FDB$ywuKlAw8tHmK&RJJ_Ahj;fRU zbQl@#EYc3wJaH5NB{$$eC57-_QD;O0oW&+MbZg7bGfHAaZbwilIu??k^(nmq>mvSE zL%1{jrNLd44Wsm=VS!UC1Cbmx9*R+c3?>kJfcn|o17|lESKeJ7FJHkmj5H4@02m9% z)hG=d<)~aFM5hIhoB`QHQ&S*Nv9)CwE!vj33p_4IqLp;P3(Fz_lSoqXK8W{lCkMfu zLHj9)s0@f;Iet_DjRuM!sc1Je^X;14J(+!6iwQcAbkF;hAT-T&IDK^4y{0%`F7f8> zFU$>?^tNcq7{eh^P!6DorszQsk#a#ElDH$`u0h&dpk@%nNoG;dE5d{$s1q%Km%79|U7U2?s<7!8BTjj5wl{k(8uF1t-3-K#wQC9OlNqw|%~bfhIBQ8H#<5 zl0zocl!hdNOVv9KXav>J?4N8nWlU|0e8f0H&;bHQ(Gm)va11(19#Mv?Q#MSFbu08W zh{G8B=!%1Da@=u20kOc~%s*=xRc{`hTHg7Y3^7Q%1y1q+YXZ_BQsw!do zH|MFXZ=;RJ&OfYQTV;fx!Xh2ne=tt#wU47A$M~W`N0uN+7Hv9ov#F3l7%%8|9riCx z-f68Bk}GmYMJ^1bvbAZV<3xC?d}a2&n;f04dVux`{1?HISuQ)R6s1x*idThUT%!bK zl0qHB%HSYZ@6?id5O9=n8vQ$&P@fs5QIVk-N7E95Vm7+a1ZUOH=UD^)Mfezc!noWL zL_kl}(CCc;v^sS%G{@YU@U7|^KRxPS1jgl!5tEWdKZOfK5Blv&DiUH;miZ0Zt#Z$v z9`P>%ldO$ME$Psp)I2GHTn#QzXABxi$~A$RHK38(A{`oLJb13Tv|J+2(B&j(#Gwlx ziMGZz0bG?%U5EU;WOxoG`+DW63-lGKrW%s6Cdxpf!u5qhNO+R?mNGm`Pz+^{u~f-UE{1v z(*01}*vn>NRHM`B(0yV&8PL)alVdF?CUVWaE#;mRpcu|%Uv^U&FHT2C^U3|vX15nN z7ZJU8eP@JhxIQdKAMIFK-Lw0CSs`F&@=mUAtb6rTqsI9p@<}$Pt74qy-k^6o4DnVy zMYMVSyV-cWJ{?EZ{VBa)=6$XQG#rEVfWy&x!jJY^t;SEshYwT+Twk4?%;%HpNENH= zaX0TbYF#ZZi)dk6Wp4^l3@8;xbJTN_ zUmhrKw7hh3eEh%>$K|EmFlp9mt>n?W$c;~_fHfF_dYvP%3>Xc{N}bUBjXuR3)-YTc zFn;LTYX8mte`)eA8k+O;Q3ea961PmC3m2JH7IIn7)h5&A%^mR z34LoY$$^j&hoK;2)~o@UjYkK4eEuRJiYv%>$QqD?>GT8o z)IX1Ad(Z6l7eNeMqdyyihG31M!RERbkX?TzsE)J=;?A^c^4Vo654LLhh4Q4ek`QND zFgheoxIzNuf=sz!&$d#s3s4NC0G7?APSJCk+&SaEx-kFgWb*D_$&J;uMft?WYT({v z^e*>B-l#0Te!=o&*=7~-)s^>?y}c@|EDNvLnXdgb)qKWsKfS)D@4R`G9p3t~Db1s9 zb!nSV+M8CD_vwS!JE#uTJ<_(JdR7h4x<|w2)7HDpzRu2C580g_t~)3!-q$7GAL+~R z(0$dpFWG!{-cD|Swt?sDbvHVkJ<`wQmfxmzmzZ_)lE#(BhMBL^Th>F~%|?5Z#(5!9 zc-eaVs^#+3VNCG(~P#b6AY+fbh_drLO^My?6Jym~l7jgwu} zyKJ$#H+Sp0Q%-}{g7A^IE~`HsH*RAa@^d*RtKDB3L&W_dyTANGX|s}49%s7lq7TLf zy=u$ae3D4yOe5kXH$Brh!|_%)7&KYqGu3Z10}v zygLw$v%1QCtMao$VZUEFyC|3gpVKQ7<NFla-ctg>4VDrH^s#onRp>+~bOBxCF+{ZxO(Z&)K&sf)gS-)yogYnNg%xsQ2IhyR&{jOV;A{Y#(y$V)Yn@A*5Dy4aV zl&o{Wfl^|v_i9Tixg{u`t2$?n&13;o7l6KvPqbVXGoO+=gR$rQyJBmZCdtBpMY99p3Lu*JTG|FcS5vZs<|$klZ7P zaGz^qp}ui6cTnVvdb_RahL1xrEZ?kB%1-wm+{kVWn2!#}4>Hm1_13khnm6r@$Hz~u zMKu`pdfCQk$Os;pBHDNbzy%Y^2%#B8&W~GSsS*@JW<~72A3rRMR+pB&E+0sX$k&eR zCiR81h&+1T74ZqIGZ>Y6H3zc_jUx(L8eq;Lf14OI2{}`mP`ahMnI$Nms}05b-0%JL zAwIdiwD@^?KkB`@v}!T&HbQuRDmfZAtd!1^T2>B5vtAakaExoOg+vH=j#LK? zo>6PHLKk{VzG?}Iff#AL_wFH;v;4W)VX*OYvuZ$rYnJ1e5~uO3PNwfrwCPuVPdJ^7 z0-~J-<3li>N5kc^l&9QMbM_Jx1KKGkv-xzkvHkkDhB>ml+N|o#?p*tMRPFFTo=d(Q zz4W%{L67dN}&^ zbay&B7|(Y*MZ5+>Q?J#}xCO040PcJOMS^BY6QObeE)v|9R(}DC=b+tf+2hms!SwiE z6O!uUVm4_up%kqaY4<%M#nbrSVl%BVb0FSgZ$vINCIVtwgaK1}J` zOLytqy!f9dhsX6s2mSLczSVG)=toa$EHfC5dKG0)%AkCTD#d71un9P&+$TwaC`-4* zI3*~aLn186w?0n!U>)|xi2LSa9$5%!TMW0%#ojEcEi zpRvYlDPmQEV!(nV(>-K_`FOV2Xu;B`$AJU(#s}lYcw+$D7_gfU11?+E*PEb^8iw^v zc^kD(KCNRNCOnWP}-!zZrn5*H*OMl+Plsd^oV-mxfn`gW~|vN8V9ZR$ycOl!1>Ui6?qzPJ`Ta!nR^KIjedl)#b~oN z86$VzznaN1Q+KqO&YEzx#KQf}bMx>^?zESp6Kh6|?rwaUJ>BK7`B0LtSA8fz zTzN`tvNYF;5Hi;ji5g^ZnyD@I4J<)1m^jYm6MwFXBGpv?aC%bJFsK`9tt#PFzdyEV z@ZogUEYm=E{fzh1`WQo#Mb=%bHklWAQ5O4W}zYLrzVy8eAbVDU$jcs`tN zh(Jzk1H$?4s5JpRP2q4(9=NCuST~-E2F}Us=*~fzd||X#A%v1gpF2Oqn|y54ub`~H@^jr?nDWPI*&Ny++2Q!;r24%}3i@Enu2)o7C2e^^S0RA(DpBFN zWim$(9CJ>6*N0_GlXr?(O__*7<$|Ztd%{feTo5muqk35lGHaC_^&wwn;DD*ikTZF_45m`PzkqExt3G^(iov~h0>*TnqXJ&@sn@AYM1c@6NVm_SD2;Y^x7py9F!K1%A;Ql_C1 z-Za*qF4&6D7{`=|F;^kx`OLisbP2dI$pw?7F>7d!P7Zoi0Vo3E9Elp&EXsMS45eP? z%u(f?3ivJ2H6X{oF5XX%o>{ULp_4=;&7vkrqAK!|CvQncniY~!UZH9C__$BWzakuj z9d=9SEY5(>4UjJf4W)EbzED2&WqL)UP8+U00LX`G~C0u6^ zmxpLqpd5@A`LJlCUCsbx(=u2p5)*kV7*`w`Wcff>GR6g7E&GF$(MB(vZBUHm{wc^* z37kN#R)F#l60zQ82tlu5+nem~_iBn$ghXf^zyuZ|nm*PFU=Rdh43tK_Vr0V%+TUn} z^Zb^Fp`JT01qwu=Jkl#g144VRse)7)WXGfVZe0p#Ycdk$HSvt4Boj$QClf-l3Ooq} zyo_oM-l%RFG>mkVDo{^>Tc5L=7)jaH(}IzRsMD^Z*l2IG(dcFXF^x8=71_5$!w~;! z6o@XGT<}6iQi&au(8n7+Y_>rz&os?_SSc045)xUoXdX$50*Y`6ehu90Warmj?QF^` z40J?2K?J(MNqA%PCNz~k1<9;tmD(TUS|1;5bh3GVCRQG0jntkwA+5ApN3bXhgAhR` zt~O!$@bgC7nr)DcN5ObBmV^|zw?;?B&_05gd%+n~3C6|lL9Zq@Wk7;u9&N^4{!7US zUUMlZRSNH;C@m|8>}YqEJ;a@j9yZSoPQW#038y3pT)N$3Zmq;yP6 z9V5cUZPZ>?#2ZzDsdm?fkpa%4E(?i=;Jh}3RVIB7E()cM!Y8xz@zk(h7+rWRU$XqstxYNLACJs zFw&c%2ZR`iQH7uc+K>uD^g&QG*CJJwLAzq>s!IgtTO*rMX#Ate6uAZkE`mnK1i3yE zg(8d8yuJ?2^I`056Qe-aK3XEUM^=)#H(DUvY4(16kdX6T}onzdqm! zLpdD;PmuR#9nUL4sB27%``VMGpW?B|;rq0<}6j zocvNbwqh6|jrKIj4e33qcmzvG;VH@-^a7F#MAW+;2UTPGtp!C4dX#8dYh@uoq!L+3 z=0?zfQk=S)VhG!Y0ujTQ+*SsK6w7w3)`FvOLW2?oBk|Hw!c4v7t3@`9fX4qb^x1UY z#wEmq!2vErbcj@tgjKHWucLaiVQXQLln^z^2gph*;{VYA$xX!pk>=4Ls2sK`+$V+! zi*R&|6fP^Y_=Qp&HHHI3T(;H>itI{_Y6@-zHPvKd0X0yJ(DF1@JpV#A?L18E&Kmctm?PP!l* zvqBM6sOah=%_PBfCv@&18|r{RI=AoEune@d=TVuaT#y~bknt8As(VimuzZZLj%rPJ z7j>vlZY@A!LzLbc%8;v)rvgVIqA~(=&30NVlX<p@d2_y*rtR-Gj**zG1BFY^0$D;;HvZ5^Ym5)DXhGM**cx zWdY2O$GeA>UnK27_9HbkT7@1Wif)>4#i0*kW26EYN`lIHJ>lyuVzMo&QLTiQ*5o!Y zxs5Iw*i>n4BXHDiu~NIEOjr$$!xp<;V{-V5YIVN zRy*`$(b&(~rcQG0E!u8IS6c1;X#QbbC1a^!gtaux@f;J;l%pau=%MAtR6+*IP$fK*5)H25VqoXTAG7Epjf6*kUQN9XS+>um`=jM0sr8W%uaL=lN&1iB$Y zCt-x~9_`y&V9r;CL{_j2BfOJFzh5I-a_a`4&nF24jDgDruF{p?zdsvq$RoYAKnVro zolP>=)iU@Wlv11_pQF4A&OycKlcS^Qe7rcRh&RyQB=UMde@$oxL`$O+dM8Smh*CkI z4z4_=<0`tP^+1uf2uesP1VwKspm7;AMO!lXz>NS?+qRS4wdE&%w6rAN0KU3tPAW)3c7%L(4ZnS1$v$gPuvrgvC#vqAB*9Z_oO@XJ7b0w6j&60!l zzM2`v=FUyoxI#%yWlY4NNq|2H&U0+k^EwmZcs6}E8&{h&W*AA0E~^U6v*ZNBb>&4c z;Blx$frPF>?G^2eembdO*;;r+I%N_?l?FCj+=Nmbg2E9vNs0$uJ1D;%9xtYgioplU zB0)DPpf94M%Wc_XWX@}1OmsYISLd`vbI)7gq-DVi0TcbfsSP&#q# z_aVvY;vRiTPb#T&_-h?vGXup(kZBUJE;)tX2$hHtbW70k*E%Nja%e<&2nb0&XS1XK2q%a z3QzOtY`2o!b{HF*tB4B>EqtP)*HR?#gnJ!iKKZ2Uu*7o7qheb_Gf9!;cU9L&g|9#B+4_7{=d{xA(Jcaa!GGyak+uAP-nBvt6-8H zXd{x#gco!4fwP2O8bvSL1eF-0(bs-Qt~Ro&EwF-S7%`n2EsK2gDoFx_F(1&bj@$*y z(AbZ)0QzOY7U;yTq1jq!L?-Ekwal_eiJ=-Ll@i`7nsNlr*QSy(AF2~91BFJ={6Sew zP_N3sZ4lYdHfRZ%)&C%0(*ad zyqU&A3EQ6ij|M+_upaFI&=PWXz2g!ECU@G4Mkey%UIpDSHg{C$7tyFqHf7PHB~%%P ze|-`*koo}9=;OSCWT5mBh^S_T)I=rC9FyEC&;eZ5BR16=wUvIOWP1k=6-Z&ZLHmPI zW(+l+1;Yq6oLkGQtmrme4NZrMhB?l>Mc@A z2FmoqS4WR)-+MwW^#*-x$(1MGc*=p*2R0Vt*=RA|3~^JkwMdD|UC{IHsB?jlM2$j| zfuOnxQEM0L@abalOHIdNOz?;=WdaG8&m2pF0LX{}jL3XKDW=Lh`S5Wv+pUiNk%6+e zAcnw`7U;ZbjgFFpl$g~HO;6Oy^`VyfOyu^CAqtd9%7C%PMRakKB8V-Q+s7}B;>wKL zJFLPvbf{y92|y6wR(i(_5h4V1R=f{rrw9}4Gg6hnqyvd=3n+&SG6WiMQ5hsvjNC); z$j?@$8Yhz)l&wWeJVlXUOg`sJyksWi{YtcYsba`zjqt?y-DJL){aQgdj2(^^9B3yJ zPdPP#Wz#zf!IMZ@qc*N0lRJ~0#_7?44o0HVaNeTkx0!N~G`dTiI^!eCPF3S(J{#A| zerqukg_t2BDP%07DO$ZiP!OO)=Sa5ns_gN}`v#&03YR2gnH*GNz|fdPRqKs3NIZ^Q zM0~0<0GqJbfnf0|aFtX(Ys1jRC6ItdW)s?MU@8v!&v{k5g0iiJObB{#(uaWBKW8Cp z1C|x0#Zw%^O8>j z5H!J=s&|$aqq>3+8>r?7x&uxt)MQ+sfhnwm<(X-zPyqd)T@a- z$~T>Tpn&pM-N4<|cyNn3S) zMB}P%*L83(JooCjtgI7gSEAYEq_@oC(n3oCePT&O*jD$r5){J~PF{?6-ydZM@z+1? z7up;$L6cnif5zY!QQHVdewFO z-okB+S#>wRryLq17Sng{x^?{<4Bx$&AQ~#Pr@<1#66Z;IK@q0tnXt*imYARb#WOL% z=wvZH94#ihnU1IP_f-R|W%v4;%$wtO4tE*}!GV_~yt~&3gtTK`*{=+C=Y2 z2vliwFg>w4Z~~5Vn)Bhd#1{o9o{2A}v%T@`^ca=;bhdb)_3-WWRkw;f=AK|!jo3Yz zBR_PK2}7Z|HSPa?UtIKa+ z^FX*-Qu4xmfgj%D1pan?etC1fqS^mA{^rlm!kc;i=^uap%zi8|Bxp{FX8BlF?wM-2 zMuAFrt`upd&owHaz-PamUEO?h=Wl+yJd00Zpmw2)+ptA>2JY)uxQNS;#QzGH7uPp$ zewyE0A->=IpYF@o|LF9#q*Y4bn3aNfG%_6cm=w!}StZzPA>Y97H~C%vR^-yIxbM{h zC{Y4dg3d{l+;|%qNqH~TFu@_0#D3{?F3-SyySd!G{POi2ZeaiF^2_M_d`0v!DY~Mk z4=KRdD2-D(2?fbTO}X;8t_5YBrCgKg#V@(y4DONQcyisA7G3evixwgZZG#d77&w7{ za2*nvloeKT_8P=raRzs3v3D81eSwRc*7WFzqh1a$cezliCsArcb45^Ma@HO-(jw_! z!P+R#Ah`4M#o5=k=UJYM`_1q?ik!x*pd2=0-4i;6F<-xdqeO${A&lb#9sa1w4 zoP)b+ORKK<>$Ox=gq+diqRWk@rRI_tp*3fb$W=SNm%dbrGYFSo|7g8VI^v@b?sG9* zsUTS4VlJu*+=ZaL%Vo@x$;Sp?I_}Fe2;W+3h_2}9)m+3#j;jo4uC7NZ>jf4hR+Z&%lsS0B%=&(Py+OS!Jt?6sK&I)!Xa7$FRY5OYNb zmCN2Z0O3r(J+kt{w@$e-Oe@MAoL#^M-S9DQ&hf`G{kr0`5B;*+tBj$^T5WTc66AEty;-=Ti$VV#;(*c6ABv*lpR!E|A4pF4my@Hid zoWa>etbE4yROpJCUaKJ_nuww*m)_5nN`n+uS(&U7G~_ZoJ@iY9hi_fKlwmr%xQ45n zmlyf$N~&Iq(>sxStdZnEk?6ekf@w5y4DsOesh=0WIEyn_(Rs9WO8@oES`@54Wg+o< z3#rhNBz?$_T9|?71|+J00LJAS%FHvyM9@6G0#~g(gD;oA!Q%4J-Jr2@@oDGEh1L#0 zSM>DrnjzOA5mGX63I%|0DOnP{(%dF)UxU|Nn!#6heFN?N=57e-gZ$ivl@My81&b>? z5;})K#B4UuHfrA zYJmHscu5vuS3>mLaP>swZiNQ4Kz6f^n-IMSzywaly@n0f(hRQP8g5o3KfAoxap9ji zU*sb0UY=iGwcmN|hNxb4Spd#rvOx1$DXknD9Fn-CJVA;48g}~1GuR}`{^b=sfhb)O z)$6c}b0Bd&bDfh>q6!9AIOM~%xv5Qj1z95H8C);vu^HrB{r1Dn)wdQgjjl-QwMvXi zl;w6x65Zrwvv3A6I+{z>%3Oir#jld$3|7d0s{hgvLA_Q77bXymv<|t{ds0-;+)l}H zLIp(j3RXvP1}Lybb-oBntzCDGro_ed+0EH+XE%Q|BjeXC)=Ec|^$PSTZM29E6cEmW z5HX*=2dONu2*JOCKu>W7_sBC_8GAopUd0A!x`h#q(=G*(i#iYihDfi0<(}y=(a2?G zQMR+}x{{%nQ|pBli8{j3I#DceP`M2~IFBk)=~oa@D9_*?$>*Oh|20QBx!x^YX|UxF zE!^IY80+V38AW{dvUBBrG%bZzBoHa7RNhJb8l0`t4DM6s^4rx~eRXoUU#J>6LIya(z}26DK^kku{v!@nVcH=l2rYvb%6JvE_IYDQzlL~JX$JRb zbAonELuz(=onj^mC5*)v^XR!J0qsk!9QDaWes^tdzN@Wl?n;(kv3N#_j6|XKmt5th zKnlEOk?E8Rbi4u!q&D3DK+V>=q&Vj(F;|EG4&jLsX*!llMoHBgKM^qjPA*of?fR)6inR$8nns=} z${q2j9#itj1X9zWa!Jf@7j=G0oAiTj1nA|JT0&(|Op)AI5Fi}f)>+F~{ z(c2`cQXvG!wPna)R61(WptP?bd$Bx&6@i!5!rA%eR_kvo6Qad=u#R}@WygtJ79RyL zE^=v7u%3JT8mTniN%acOgOz7+oxRla_{2a}UIxbIl4Q(r0tO8_NrZK{NVLwaPV=+p zH-Fq3hxw?}O2mF~SD(%~^F=uX+$(NK3(M9s{IY zDBCES&^v?}jApMONv}MEO^Uz!b{66K3BFoaRP`c@!S$Vw%HY~J)PN5@_bW7t(aaC8 zAfdH9gNMlSoPnsWIP62O0B989q6ZRb;J_)twXY<)_J&dGUqRwnc?J*B>p26wU2)jU zolw$q%g{jP7D9^L#-xpQ+%bu+{%a`jQJldhy{=ELVc~pJ@ZI3o7EVA%RP`&xPYF<^ zDH^m^D<(yXlzM6Nb`IgMz{@MoV3RCQ3siN*Q@^_9L89du37R;DDJq3XUM0}nI1=nD zunEgEK$;xD?{L+^1z3(-KKSjA)%WFnf9bY~mLxFeBPA&+p(S%MQ1m5I-r_>z@$HZ2 z>nHy}{;fr^^KMk?mGwuh^Tt6G7Clc*DN62?LZX%m71Jx=i1G}OBMz4?+OwJ@T`|`y zb5^s&lD8--gh|YzHr2r^%c%0&5z=d0y2Zn{zAasbsV3_F<;CWax%|V5kf}wAZAaAh z+O<(Uk$?h%2b)*2Bn}ycYn?mj2=NMHFy$FE>GFK`WLM1fE4~|Jq=16k=EIK63lgZz z7L#I;TJsu;@0MmzQ7LbE9(~J&uCHs$Wfjo+>zk!zd46$q-KHdOH>CB7Y=J@}Rv4aA zHj|>a!fPJ|N@Eovyn=HCSBLKUpZDpr`h5M*7GbE4DC_5s2`?!GN1bPp zvnYZHoEgY1TdaHy+dIV>ROGpL*y`T;xyBJ~JhN^{>lKi4#%pW5@?1sFyiAJZz)A?- z8RK4o%~zg5MW8!QS##;MbkMq@tJk)507Xph9m+y*k@65UQ2`gLB}Bq2I6+#TL5VaE z6h3INfVyI?SC(kvEFb#O!UY;lFd_0FeeTeyV|)z?s62yArOSAh&Y*czu|;lnSLF07 zFH2;yBysP7pe1iDWT(s$1}^#Z3YJTG21tlw_Z9ji-gHG%uf2b!B9$s7!3o%WLN!@b zXwgNhIq|RHBw2X|NRk=2IK4P;Zu?(dw%GCSh@DDmM8hMo zuYeNe88j<)Y;OPN-U*EisQPQZxVUUwTC|{BS6ucA_87yQR)QMFoRPUTJX3@w>d}gq z@Cq_+%QGmJzjPi~TF)=~P} zLiBaSOfMIh`QT_|k#dx`!trE36?3P8k2%%bCV`0Fcz8P!cSU=zy%frF0Ygp!1vpDC z*Ibt}SfyoD3SL7I?&1v4p=ezPx+^|<>9=AXgBP#gI#pum(kY}XZu+%^u!czyrQ}F` z?*!yJ0g^glmC`o7hL#Ye8T{|d%P*5g1nbIOd}`CMr6X#3Wr}5|-AKX=VUWwxd1)L- zf^t{n@BSv~Df}n%dBr+{&HYxL2C6&(+NnmKWyoOEn;tVqOr{8Wm zuY#_)=@nFuAY`;j3L{-2))GOZAwq%Xf|6GdX(-QNgAOfX;~i1bYj=tB+?|zx;7NFc zF0K%0x-)M*N9XDl=;ZPYGWr*n^(weN``>NOl6J&QYbyNxCLgK7yYqh<5AbjmA)H^o z-GJybdR1o^pKjmQc?AI$wSJ$KOA*A4_hK zGc-|!oEN=!NhltrW%yl0;U#~f8?+VorwDo2IN!hfISa(tW8e_d%cV;h^4#ip^qV_7cbm0h{(v@RwmTxGSM@q6Q=&;ok!~c5 zGAM)ZHCDb{B9tLVo<9p2FT3Yw;h&GJi@(14>E_@6{R8~rFWptVO>4Qjesg`}ZrU`b z?1;mDxvgliq!b7joH#{euq2^D$xJ>167|caR~hn(UNblccRd`zx+1YxlpyBj637LF zN$x3C5F$5FUE%XbY;vaV?Cb-oFbAw(+b(C;u12qVNq&Vd94Qo_q6SsC&#OT>reLEq60 zzV_=)dnwlyG5yL-c;>laDuRR{3}a}y7!jNz5YZicxkM;K-Xy|?qG_9)+!Z;!2w?>n zByUa~geWy}=w=C^R#_bhyktTYA-`THg>_W-U2)P&fhc^cGLbmWJkdS{trLDAsIz=h zte0ih;^AAf%*wFj1d@)F>WaNyHZ(&!BA57fj-oMPGKVl}laI<9O<%C8FGK$A8m+AA0uX)0^w7kg0HqPUHXe z_2N?|{LK$<|MvFpx8UD~3*X!V4Dn66y8O~I{V~6(Q3Yb-_e`x)Q4OIJ;L2cJ1?nN6 zK8ivpshCHX#)vgg?a=pbUGg&?7klzy&La!4T=qf#a;?rQ(R5X zkZ1wz=44X<>b;hU6CsuPE(lwiF)06Xm@;Yu%>MbZ9fbGd&Sqh^NfR3 zk_RrM1LIVpLPX62a-04xXj+Px+z!?PZ zy-rWjAb616X~~&pL884HqzhE|=qOj;1uK*$*q2uXU?#ADP^qisOF=Cm?~ zJIHZ5#|3_c??ZQ#CixKASB89%_-C;z6AXm$UOA>L1g<2DTzU}+EGrk}qiY5jV-mI@ zDoQYHTU3KC=*d=odg}Zjxx73Q(mU;M820M zc}re&_C|YqYqwx!<{@HZgccUwK#1&>-NZva@~FAB5RFm6TasG}CUBky@_o>@G|3fh z_ogR1sJJ&*?xsm!C)s>i?;^KIei{bFy|xP=L`5Vs!e|ns&qvBb5&;#7mBD=KpI0c4=g(nwQ?5>$$jC1gtbeXQ=nBpY;| zFGjOPe@YL8*1o;8MXr5L6wB2ogk$Iq26PQ{t{KL+VSblj*tYpyh9@(|{&e?bJ~?V@ zeh-A`UP(g|KOF7OrnB+xbaoqo`F4>f4cU~w`RkkN+xg|i zr@t=Gm%sT-i=*7bAh_QqDMR;xDz7vonS?@hqbwCp0o7($2Yrj1q>oQ>P4n5i$x%Cj z-s}(DW?ys=B=@T!4VKtk*2EGXSyI&I<10a$Bo)N(BLr8PWRvc*$-DQ9A&5T^rhEBo z=sh|Yog>L8heF6ni?<2SqxLbfZA4~DF!YVg_!VuZdz1Z1-WT&Ln*Mbqz?*3gw?94h zPYV}q7?k#kvU}-W)RE>Q^v?4HTHucyh@s4??{9(8?1=%T@bT0$rUl@qmSd`DH8Nxyx)4aVj%qWD#8~%n&B?D0TIrs#6w6VLC`b; ziR}AGJSa`_4oPR@(eC^93w0nA_VaB+u8bcHPf=;9sZdOXsErCvByYbH-}doI-coh( z>%ll{)bRruC2btoK``0tWDpBpNN_|Vi%~<+-WEVYFht}M?cYaoXK9iv;-1VVd$Z~B z@#d+ZpH8mMSLcquUA5_YJq$j3IWWdV&uBC%CeD@8fpHNDafzmw?Duj0wlv9G5+Co4 z7UPpiy?DQUjrq`d3nyk6EcS9@7?Ws-dnR-A6BR@Z!g%4d%M~v9_px?Mle{JDd^|gt z%opv?Yoj`SY{z=5YD0H~Zf%mMq??CbiYZ=MD@ZL>nzcuZX2Gmwlti=tB0>KIMmJ@P{vc zRD@&Wu9evM>F2Zf32xr}1<4N=H$RXT+N2{gdnGq`E~o+YWStP&dZrcrjY={ij8L=} z;aWU=xwu#L=!Y*wUj*m>dw_r~@)tVduou0IPvAfZ=cA%1qaq{P8Ko5Ql=SR@bz7Dz zm+u;$7{!UWuV=fL7dKVk!COmyrE+guuP!g2Uf;N@o5t_>&YRPJU0%i2l@=82h}B;1 zy9-fU2ojhSoFo!_N?d@FMz{noxGHZMa(8iYnai}^Ep)xTmXRwixW4)0yiK9=j-=@2 z+(WS5x@>leCCQ~;k*2O3G;0o!d6Vvm5}|~ zzi38*x+J4^nnFrRIxfB95Gj3P%h5_Zmmj{hlAdK)9_O(#-D7TGdzbjJ>T3Jn+s3vl zoqKiB4BQ%;y&UU}_S_`Psg>RnAOxjfFP>`g@U8Jw8J2?FTG~P9H~;Yr-1P~c^54s1 zUCG`nkB8dWhUZj4NXgE5hCm-=PMl^>p2>{jax&ShnAZn+Fy={sE~SA15^ zq3ejvUiq&?Narb+RG8o-UdIikolbSSWYl1QnqSG;( z;-dTuFu?`M+ZV) zFh$CcZ&G9is5t`se0kN899>b=E7db`q_xl~co)HwkeHMzB;|4@F_4!_jxyw%!o0A<+iXE7l{gDLAJwJW60bay zC=!G=9KWN@wu#ltZ&v}fVz!l$&J{J8(t6=0pBFV0-tyN`SQH080?6je!VL_(iv1lg6G5`CV~-YDspNZ8tgFq!UM%j z6iOHi$?@npN*aMa1KLU+%_4qx;hmrbR!OrhbjU2>$Nf2U?MdF14E<8{Orl;YA-OWR z=p$kqthOL!^4`JA)qG{hGchI?5iV}J;lC?RdL_eA#-eaRdg3_*M;WSCq%&xyC9d$7 zi~lm@-i3c6HUgYnoGr<4-Hi@ianmb^Op-RzJH`x^NbQI|a?&a|!ciM?@`8Ji7a{lX z>FnasiSpiJV;A|WY%v%^BAUe2%bCU5^-Q1 z6&4+iWOA-NL(Q{ug{*w&Zo=p7D4QZmd<76HnT{%^BffiyxIhgx+;Dt6rvX*E2vHef zXf9&MpGMoCcK*15(bbjvV|YPVgx@19jj&uJdjl?FYiZXJP5r8Rp)H|(0!GoS=MLQ* zMiga{5M=i!#^|~&w}jkh@tqN@bm->GRVivEC^3e{w?FQ>^Yg{o*X!fkT=%Ukx-w$I z17LMfX&n*YulfT^z!S}WtkTv+M^j+TNgbRqNe@qCh4Z3X1Wz2%2nuR*lhC(BBv__$ zYqB+wtIUPr{pTW9!d;j;IL;kW-pg{&wE>B+A?C1{@{|OYqD8HR_K~vo#X8Pqz}FP` zcy@i}yV9U5UU~)Ai3EW!OGbb+LMvefrvh+=i%8rH&VedJ9^6HM^L@13+Zv2rvC*sO zumuu4t}^eEL-#nJTGdi|1;CW^v0pXe^24{5^ihUoMW~$H(YlUsN96S^CK-|-mL|aj zMb}z5ZDUAEi(DKayj%yj40&j50Ctp8UD47@N=2c#z@-V0E8S3rWCs&e-sKWBy<{m> zgnYR2@CkJYTtS?Cai5^|g6fKxUPiC83?(O$mP)Od(n+Fk z!DFtv$2oc0ZqZM>m*Hb(crqPUWOtN&}kM=)pR# zo`(D?DRp_;<nmeN+pc9g$M1w2Jw?E>84=>|NX??*D zElx^w#CFe|EeXT|mqZ&u92jdNy0%oh5REiXTWp7L@$JoDwvo0~06tuSyMg(QyNK>8 z-X4p~(6u(>I^w6-sTHLJPb!;wK{A8D;tR)X@HS!S%#g1catbOv7V zDU&kf*Ko6cxmM@5=LPc*t5bfdMNqjTa(ZR!C}sgTDlSJfTJu6$bh#WPX%)I!X86_B z$-Njp2dIb-XgE8q*H%|F_iH35xMn_D#Hz44?^+8%nB`KS*f!z?pNJ?zj>unbWuBdP zJ|@%^E&U>#PN=A(_ud$;MG{KV1YQZ`YRlA%H5tl)qjP!XM%SUU!_pNey^`QWj#?*1 z9E--}9DJ#0B1CX6l6hjH)Hd*627HPCJ$M2Ex+0}l%tb^RIAg?`)Q|ix?F#_a$j#hrpv2;xvTiY&DA%k$^XOOXoLRC zZ_ClwpD+J)J9POym!Wk z@|mDKgUkd+Rmr&)CB!=7q?gT)UKFJq-F1&1l=hO-MA72Pjne}4FE}@-40*=;IyZlL za$rS(+(>e@;Fj6@e|=N`aC!3?a0w22YN6#uS69OHYbuUDX5>jRY5{EnCVWUKdMgvt z@&$VxWx!JwzPCxN2dGCoMz%U4rkA+{LTVKak2*KA!&gPhJy=TeqTfcYIH2-(#wrJ# zIZnXjyb>a;<7g4+e84#m|ok<42-lXx)eUp% zSAz5k?4qER=tGiZ4QEy*;VAy)G`b*yQZKmHVG;70`d98>C%7K3Y761+ZcN*vhaJ(? zPfGZP^36(yT5(iGZR-Gj7%f}f-|j|ma4LV zNIxR{3O}Z+uJWBSIEU5_4yEI$oB%XdxZoCeh>602Dy7o2q$nz)QoY>cREK=JqS}*V zI53nd<8G>=Q_7(M&xO)~qhZfgwA!WYBGcl61zHvI>FS$Bo|ft0R;>eRGAfFum@Khm z8A=LhKQe2iMl0T-FQvJ>V1-hLe7gDpLjHC>8<>?elqTb%n9eA!sOhWn#wBi)fRwYc zbO>{~VER`fC;I2bv)5rd3&R^-3?$4bCRk}q$}A`0B`-z*8gSV}Ja3kji)KO<^69E6 zr8tra0|_&#OEDx1Xtz^~%usAF+RBW+tkO&Yh)eELT!kE&ur6+3PvU{}80S_9Tf746 zKo{x=F0FLJYvzs2PV!53D{7EWSJa*R`Bi92UOS(nnG2h)`uh>X=rgVe+yxzdOwnh2 z7jr)P0>Wqp_UNt(XX$)Y1)So%&kpmszFTa^0N&7#{VT(VQEAkjh-AJPe3Rr+*=#Hr z8f_3|Fb2Yr$=l}{0a%5cSn^_XS9SlkaWjg2?-uKryT_pv92FnakV-HSP*>4;mCSf& zB)*e#ua4|wahCX46>uW|Uts=f6P_G;cQTYTqr{jlo_b_OJdPH9Nu#5Xo@H%|4*AGl z7MpNLkHsk*au%sq1%)^?FsMJ2c%v>GGuqfrOA&Dw#8jfAhztIR2h&+EF88vr3ixdA ztn|KL97v9FgE=&a5Hm+x+9<0<$cYE%3so$`DLT^s1%83$UfF%~dqbe#one?q4cplk zngNqLhLLd8^_NXHn&h4HU^s3Q>n)Fk3lmFGMO<>#cOCZYuzWS0e-YBpG=P4d_bR|i z&$NH;eIYiGRHK|1ToQON5~QL@0-iakn6L_+CTlMFdbkdGOLfYwY%e}m$1-Fnkw#fy z!h7xwSAsJTF$%7Qjyzj*X_Y#%>;G9Suqxm!(Z31HpJDk;Sp9q~JBE^Iq}Yl=IIu-} z(7{__IUYosu@XF#%T@4oz+0k!d$Tt=aDapwM3qr_L|k#msh|NTZ4~GMxxm5V4p2E7 z7B4uDs0w+@f_sAkhaZWdL>gC%DqM*ydXt5VF{r>Z(_BLkXm-ndhJ^4OA~Ot}1*WA$ zX^i$|;nF+F1oQ04({CE;{rL9gOw)g=B)L8S=ol6cCHtsu7Brr_C@-B48qGo-Au^4x zv7B-$yqETJGxq9$UpGeB(V1e*DPyVn0sVWXT#nXA zZ+%h17^SFNRcqzFe0v=ivo=rcZI{j8zIs54*ibf%ntozSRxSz85*nCNiNa_+Kz81n zgu3QpSzZVHKFhm%oFmyXlvJZ^z`~M(s5H-BqWpEvDkEaD_@5#`T`XJbfIq;N?s8}P z%XPTvZg-A7J3|RKuJD2z>mXSZ5(;A$bM}Unm`!lpDS5$#7d5~iWm3})yXDdJSRM_f z+bDBF7>g3y0K?bd0nXNN6Eros7r~3mJxF!HTe?5X`S5yYzP!(t9^K;y(rHv4B_+BW zrxFWN0#hm_h!S7SQO2UiJBlZ_=u*C#!x=irSD|kyzk0Ub)j98&(>twlAdyDJd~&el zYynRK?F+$D&ap_A(ew~Lhs(XPu0y_&WHVSp{h;)cUqi_?sx5>F0RU9=+;SmA5-b#{ zwGEk?9OMgb+*^fwpEb{BvjgvR7)ORuX;d^w2$Q`EtXRk#O?9fL@>XPq9&!SAxg4oO zzR!_Ahk2gu2XC&L2X$r)CD15lpd~Jh;F9aWqAX-jM2Bw@L4+7DH(Ff>yyeBA3fb_W zZv<^1bw=Gzy97A}Cwx%WI?25ckpa&o;kPfi$8sI;mJ?qeG!NQWA{)~K<<{!w-dE8B z=`||5223f6S(J<_25A_jtOE}jxU@Q6ZgjH__>MQU!}84%@jRmC?m)7PN((3;5=)e?UNT4L$0lKn zcT!7RbiC*u{dL%H!p+cBnV|$3*KF4)6N1a7;CnLXnrZxjF`=Xv{F0mP)&Sq6#8SfS zUpCpZhazgPon-$`yu%1KN_lutX}4*9a1e%J(i_sZ(?CzA(b z^*!by4y4wokZ+cnlGclmD#r|#854|)UMR@N3as-C8m&TJ=gdKXzDL}5AhAYO#<*ZZ zNva49Oo3xMS`eORoeRNn`GTyD!4hs}+Xkl(v=;9Ej*oh@pB+fAQFmFmpk>lXo;>H0 z@(p|r9JLyC3v%po4^18NB{TzFX1Pt0YK-#U6J3WAW|U4bMtYe{EUaWoH%Q=Yv@}1{ zBoi)prcNF5h6#UOtXDUS^@C~SJ(S2m@{D3d$s%ynPSoz1{u`8nLW$`nI_A;^v!V+5 zJ}bUnph`J{6$8mLN^R&8oaLJ80ZU?B$q=jvf+@kYb(h=UunzbtEf=%d5iP`q(qvSE zesNwW4T@_EDjF!rd^F``vcg3pFV_LAL%zp=AD1YV2KO)?N}N$Wqhd~ld*Or#k~6OW z?dejYC|rpUE_ftM9r8ytbZ0{~kGlD53mVFB|9M3I)g{+ZB91GT3_fui3|M7=TU&xD zT5_Jf$%$QX)9E_o$gpSg`J!!t_~mqkX6@T!TJTwvV4UN@5$GOD%~6NAWL!oFY-XrP z9)3%1f9_$w4dlVNJPKiDKmjb7bJ>?@vN734VWfnh;w9%%)F3B*->w(W7uPp4Xd;^U z_1l}(S959<(?!vm5hu_->61q>j9jDgT%D$D4dtWaij@$!@X>NX&adL;f`bBe$RA_P zz5s1fUw>EHKlI3T9Z0Tm6`ANqfp_>)Nv;27iISo3n}cKp_ysr2s6&2_HPl^ZORUuc zVFGHy*Xpw^J9_YIC=Ey5^jpUy>P%mF5y2R=biCC*lA|1h@t4c5I^@W&t{LU(K_~UT z)q&)zvu7yDMuk6RFldc>YpD+=WkPFXV-i`Q?~E?O1&2SYkngeQLC5t-_6#N2D4USp z#B)?eMIiukW|Xm}ixbIlcEO6M4*4E?{){i2(M!j3XDG!+RX`P=iRS{ci#9Umy;02N zfKGMF;({|_>yYnp=dg9tuw78R4W1dE!Rx?$)HZ8j3o;3{FvuwlT7zqQo6$d8Ep#k}QkX<_k91>yYoUd)K^t7_W`Mqh?i#EHDeQh^$;m%rJ=# zv@veS>pShydrU|lNcmABHz}LFvdo~L&lMD@nba{jVWW=6&Obei$gM)Y$K`Ig+U{0x z-s6sGC~ZdhVAPY_g%E^dH2$D~WJ#j!slfrJ}%@qunRPtFvs0J1<$zl-4bDw7y6RUk05RPzN}_jSmT zNnb9~?e%u>cFUc2zGd@;y*5|}YczZuIN8D|SxfyU?>zsj!w&C}cKy{48(BT6DZ(s&(8 zuu*!>$A~UwFePMDT=GdL&mE8WHdNi0tmmqbrx}Fhjy?Ua?+4OkoSh-O(Zb+a48TN& zs12uq2u_;doVjE>qXs#O&W`$Hy}5xz8dvw=T#-ddMVmxp@<7+NFDMW zL+(qf9{H;SDKpBVP+o!+;Hh(*uq*|m62lWHc=1w}3$`e#kat|z)iw-^AG7EnNej%l z$VK+aNdV=o7d|isPo5qu-fv#@P;!q7-D_%kDx^*#WJ}HGr9fjfaG8bR{DKcy9df#n zesE^>UM+V$EI=c!vGVPl_ebkSRJ`E+_DE%l5 zXOg74kU2}ka#GZ=x`2`zjo%B_k5$OGj5=r@O$=JJ4|-_3f#ex=i*2mUN+hs0MIE@t zmwCf8x|qQWxL`q7hkVP5AMf?z*dCMpf~$cELZ%c5!fSHPB?}O9F#>(@prPqFuC;}1Q8*8|Bv zDnJu5`Xn-x61C$7gv!DxDKZKqq1Xjq64fDZ?yet`68)ki1F17AODoABRf--^HE7TA zt=uG!FLEj+eaV$FRmiu8ZqI`|-H?YKiCqI}J+7s^LMJ3z6I^mSC|AG-VU>{HTV^lV zDXc@@^7Us}_AlBvy1)D|DvpY%gjhJbj6uiZ00Q%paYoZ{j75=u!LD2#@-4@P-ZTv6 z*ib5tES1+(PVBh?w5NFpGH5O-omL9VFIbD!A#XUgPFIk>ScU}evpi}j*+yLgXwQlS z%e{$$J430GOdHEm!FP%aR&RC4@3827mPidH+o&>XV-uQ}A~EKG*+QzZ6f{N?2wl=8 zmr++Czr&*Koy}e^ufq$O9%a-6$u-JMN9Q7j#FIqcXD2mkK47Boh);sK;7jm2w)wcb>E^i2PZ%P$jow%GCIZa?GfE?Q7-t7vJUwnFAkgJ3~To=luDyaXJ4d-WWX_| zeTo=PoCag zzhCC*P@<1YDrQpWoE311XIf+*D5E?|ifU%hE;y!Kha4IFxB2ynZ0(_h8PLOS)cBuu;r$$@8po7Ct!@OF;)2jTa-N6)A`d?jTl&ys@|6$(|m(7)YN{ z!5!lbD9fa@Dio@zFq$ikwv1OHu?rsjREHcn@zXNg{C&E*4YRLj;nnIGyFz82jP=qb zs~s~@Brbhs*5bdE#n&9Zqj?3)GyOd9#_On8H9h6&w?DntcLfoUl7evw9=I+N4J(;A zHArwmDax`VVCcnvU9?3cZ76f#9WHaYo~4>$&y+DTdqpN2_datUsHJJ{YKH&Bdc@oY z?&fhby^})&P=mK6YADV?K-*AJzkbe+lww_`&l%==*MMKa45;jXce&Spxc4x^j2e|z ztj*3_6OiqJOn(h%sjHZnQ95668`nDIEeEEH`HzdQy7Ak+c`%eN<9L84RfZS>kKB;S zU3gU9LqVg$unP_p)FH35_de1R9!jxM##S;xaS?51#-NX!fMVXBDioMhmt5gfhrH79 z`$+B#rP!$ZYj1c$u^7Q7H20W9#cQo7l10noMYo=)LcZfpQ`k7$)|&1`*m~Se52Vnj zkf%UfL2Bb^>Qr$eN5#>E$U@s}N1P@;{y=9h-%5*UR7lZ%p>^-6<}^ql*6$=Ccf z$PXCwa{BLkB?&A1tR736Ms8tJPd01OA&qe8=rLt(-U2rOM9r7*`|Dp-z z9(lp9eMIv%rII2q)_DU3A4n#&v^>zvlLubW?~Z>c=|{z51nNYD*vb$hHwiRwWgS(j zNh+hh;CM_G^3~Pi&EHnAq}s3t=XlJ@8rt!#r1WV=a;ZwQMY^8ko|XOm_l8{WVJ?s!ZLTDt%k*~hq7VR z6)0m2bWtY6WVCULY3+2hoHJuHhhtfO!rZ0PU#?bZvc8+G)qA+yKyr^N(hazB^eI}G zzyxhmVOrvjqOL$z`^&u^szZ(pXqDZ-qcxN!vo?4fJ$Qs4CLHQk$=eoG83oG(s zr(D(nNAe#r;&LcK#*H+p6-Zz31$F=G?*7CdN{~@*Ro2OJ&q{QW2?0!lU@0(EYYfF6 zTr~0Pz_0I>{PtzSP{NF2f>)qZN-^;e6#8o+qYaS?7(8(0$eZc2F`)|lArqQJpf(2w z=D9aJ29ju$K%#7%Xqw7m6oS^c;PD_*?^qU0Dx+-c9*dK0eGcVO2ZcEIXP{Tz>%QAp zmJOuksH+F`vn}%$q;neoU!n{RNjt-ZbwXaQ7Ow;T=7I1~Ult4{%P2{P#v1dexnhpW z3l*qln`OzRN}9!RdLIQ9rZPSyuQh{^Q`T7l8Zt5qmYGG5Y!_;4x=T-I)Aif4I4gDH zym&cAfKkk5)TI>d6P|^Mq$0hL25m>-q)tj*w%V!!|7Nkw&(_p>ocxzx?)Dez z(%0da-mDo&u2Hc9K#M(P$58O{qAa-Jlx1`Q$rDI3N`>`UoK)DkI9Ug$<>YsZ>EY<1 z@0%xWgztua>>U~yNZoPiyIMpExU_Z!gcp|DH46_Wvy$_15_Nwp@fmV>YZwrJo+B_c zziYV~n#DVeKI6g!MN#)3&a5XzqjNxiECIu(XwI8NwQ`S3fK9K0+CLiJsLi#G9J)rjyOu#pAuu3~=GhA+PwGMfc>e7<_`xoDS39qLK zCcm35`to5YZI0l>bbbX0ou%{zC?PZskuo2H-t z^yGhr*I|{G)0_40*Na!LW@wo;i~r`=^<{tkTU>a0{c5sWCZhRb1^Kg^`72`c`cF?j zee!vS#&@?7-!}OMs3LLl_3gY#fm}^GL?BPfa&g_WfQa6_-%@h_Iq|J}3#+A43FSV^ z#z(_SfhddPLKIX3egjm0vL0vh)!^t%zSEtEEgk=@2P_X#8c)bi)BFn7li%SUMyb`O zQ0s*BA0^U^7D@mp=>;BOmlCIW+(Ks1suXjsZBc_`(^z=AT;GP-S$0Pqr2q5C_UMt2 zb~>_;auJ{e1W85hTo$%u5hR*~j2jt*RN~aT;j~#Dd%Ue7N@dMAvykA=i{@mvWbQB&X1{eeC{Oc?TBPbT0H0MTu#@~|8|6v$kLv+jd zzr%7pP4A2CC#3HvkHrawUQxE%;4ZX4k##WADMt;1J)D~Dv&AW+I(uxdA^PO$OPJ^F zH(Orc&R6(W$Zf;Q)vHe?+b0D0LUnkK-a?;DNd8TJ*Y2Rc`{#s=8dWY5MU*y*VyyQZ zd}5Az9B`3h5W=W)?VlPP=iWbcc>3)h{OM-B{KtB`clJZD!*a^bu_2-h=1al){RWKzU|o z^I<=&GHYCDHy9IHadgU!bI$Z)nKU=I8LsCmWS?vsy2y zk5}JKbV6>8ipOTBa0|!4ebSu9yBQk&8mU*mL|g1!o2UlIxi?WAo)NzI!zIjplSod- zu~CW0Ug{*0&JG~T08!`|d{hn%vEuC6ZvSdhH;Td2eAGu{t$eU4doK&(xp@{!8 zN_iStu^WSa^`>Z01r8j&tv}Iy~bw-FMSpuER}NpFYU;J|Wje zHLN#Ui2^!!(AF~uQFxE8ft6_0l_1ZxnQCyHdo$JH8NZocT!&Y1%w9Sn(?;#3!WB!} z*(|9oBPnIaRd#}9nss)zU~~G;um zn|!{e29o$~`p@115tbR!Z1v;-cuH5C&R^Y2Mtu6mE3x?u^-;QM^BNmY%)>SO>B-G< z@o9%b$KLOji*?ha`d(7uA3whmwH!dFLX>D@CI^luBqGXbk!4X9P1e z)6Uapw+d6b3iDU+)lsY)O3rZ&u1bmqq!3a^nzk)9C?y3Af$@y7aRK1^;%8@F9VQg= zR0{kJ%y0Mk_x#S|UaTBS-ck2MIRr1X)EPuk5>#SJGR>Gxpq16*E`92YpPiL;nBH6g z%=Vf1)Am6x_6;TJd#D&#E>2Q0P+hiv#lWNb{eu(@#00`BD3&v+ld&-bWEwX%aI)0* zf(3mkJ1{NuEXKl~O%7*cfd;}+QR_EFS-+%FT4bPU#@b+BZ%{$S4^0f5b0G~Abw+rCm z=|mWXbp-qAxkHzylLfxx&x2L27V(s0~tw zi#Et#AiRdV8)Wye*9JKuCq~^=3oVon4ir!iRAZ#q5uE~q;?0Qc&$U5naD1o@QiqE+ z$Ty4o`(yj8*Y-FeA4Uy~mdRz4z2`b`X?0@RCZQsP1kvlW$&VTwA8LEl;mXU!&EeMQ ze($v{PDuZ8*T+(#{PGOEP|PWXLW}|U>{LR>s+?erl--wk2OT!lG`WFylME!bpJNX%+w0|Ld2aE!|W=h_)HI6l2ZY_g2!>(v*XPfDdH z`IoloM1I>RQh74Ejk@75!g()ZRMun_nU_8=seF+5<3UNxiElV6aO{;R9m_^oZ~Jeq zS|0YedpI3=MkP9cjnVOxJ$fWEI-puy6QZUDeny@z(V+szW(Lc+^vl>x0DHEgRXWZc zOi144#Pu$lKOOzXwNQ2_<3Z+>k~U;2mPnxo$U=itXJcy(j`uKHCq9kD&1b70o3VU5 zp0-U`nm@L}wV6HNw}Zy%2smnD3v&sbL7UOaOQ4x%H1Hs54q4Gp=i+M(j*hQKUlGRr z5}m&SWXL;Z+3CvOA=?uY?c$0xxAhqv2cG3TrOFL7TwZKTH`=O>cNJ?sFyvyj4(n+; z)vSwNtM@KodD*NsxunS#tQaqpFA6-G;-)Z<4jU_|HFB})PM6amv>tYV+m+uF%4f=T zuaOR&XOuI2haQ}s5#v(VnQ|i0FukNxv??&JP!UB{w71!uX`Ada*xwCKCuO=_H9h*a zE-kLF!#w{t*z<}0x&Ft`@V1rpja_!V$kQ@K!PO`4{M2L|D*6A*Rzzo5hbc<@hQga) z8ah5E-M?%;gyQN;XeB60u||0Rmp|s|>&;h4UB=lW{fvvpG?-%^$ek- z?;ZTPU1Bo5zL~)_`K^;Mxk5&wM4iEFn0+$2UM%rD>rZFXpW&0qv+rI^){Ds+*V(NB zsD&2G$(v?i&1ZMSNpo`F|63-1{QL$fbo2CMBE#PL-G2OJLMa2NbZ)9|T;1hi;@ zu)ba5hgLU`@XRH8xI<%go317S|N3^m4!=xR>$fwsRz8`eFq*?i z-Fq3zp$2{Y3rV2O;~Q9Bql}&Z+z9fPhX2-M`Ct8;H)V6jB-u381rel8!Z(W2USTLdGUj`_g|9$ikHXAlaEEFvYus#DU>rr*$w z0{-t|9o@XSAq4(W(lvS#1s0`_F(L* z=&>lGU4}ogB4QMr7bh}h<0Z*cVUdTtLGjxgm_HgwIKc2lX+WP*#Uu5KTHW5>|9Hq7U+By1r^3?7lo*?FfwTdjlv=L%Snq-QL8{Ux%Mza(mM}ZeHIA z_v`Q$mqyw3s$&&uqujpb+4MQON=TNIuqM$p0+nNcNy*BRvQ}PXWpEQp0dd2c4u+Gn z22hGW%9#IsVT|ea>jRA0$gfU-ZU3{$$F*K^&LdJeI3qPr*1KdJYSCabOCxnfefh_9 z#k2W*(Td71r>mP;c>6)sMI+e$_^^5J2T)BlVufOv zD+wPZ9WBeDa9}cPfkMT2zg10JT>d=Gc+C1JsO?wq@T1+0zisFM`4~A@Ma6SrLrz*7 zO8k~CJIk~dMhTiQEBIYhUarxe49k23GI<%^%u%|P_2hrvuGZxAb`oR0n1sAo&dGv2 z36?Ti8z>b`#^juj5&x_*i}*1b3GeS>`NiTFI0nTPig5B-TA>~$aq-JZ@ZpX@Ff?-; z&>SjJf(w#I#)~BD!QRE^MJMKuKzpKpD*zpdaUs;?P*WJ11<|6L*f7}{e+{iBjT!c{<{8f}k)vi_d)Je$%D z*P^lK8}p}u2bWnd-=0$g)F??)45SuX1tkmqY#4r)Szj#2b69Lw9`dZI-+B$p9_Nlc z{e5)FIwSFayMlbjT_KO2i1{G(@N1(qMiq7K0;-J2L`)_yk2Z7^;CbNa%t**;hx%8) z+{~tFx;_&72QYurShsi3rhV4E2|u!gf8N511lDhEX~ls@$oY&28e7oPFCkklO@xpY z7g7|842RvB0cunA?7J5$iqD6qXaWy>naaxgWE2AdLE%3kc&3Z-%4m=XKRybC3)tB$5xn4Fs zu|6`jRY(4vYHNe@Ioy-B=h$je@Tfnu)6VLq)aVwHG2HU34H}PJmS`Q*GV+A~C?-_c zoW|8(7jx)w6#u%|5`Zj2I)$H1rtsPBC_W^E@YE6NM=7H!irxXRK!cw-pgV>rXR26p z#&d49+6o+$H?zLNra`d@5>h`@GTk} z1uz(w{Qy($7C8wj2r;!GaOhelOTLzO-lMY>4EVxr*>MCF=Wv$HDO$T)BWq9v&=N;@ zAx@xDLSHb5P*?yTIO^N%ii5zk8102rmw!x_f3XY+z9Ap$V{<&JDBqFb`Hlo9&(uceiLwoP2{#YfD1f;tDD7~(x7&pbr)4VqkB`~SICfyE&&Sa zjieL+8vI$M!j*_<%5^sWUl%(*_BhF39CBf#YN+CnyiVK{pax0>P1J<8HkGRiCzKMK z+6YR~OzV+&z`Q}DH4D1kHod-vJjJauqd<9~Tl9Sye6v_J8Ehv(U22D#B&nph)6OSn zHP0n^E<=n)cVYCGv&GHL+w-7Ke=T&(deWdK!i%@)DjA-^Yji@Rwpj~XjN;6>ZQqWg zMR;}j$3*yZR7^ikZ&u%RsC{gLyo&f8L4F_KbC}_qjEwCLI;-7XBT|UTXO4m=lu)>f z5x6g+C@6(%u5D+OZbR5~EuG zsI_xR*ubS%))W^HF?tpkuVD;Effg7MXEq`;ZV^xxm<3rxR<0ywnB-m;QUPHvWT`_QE@mM(X``OZm*mXU5oCLT$a zx?o*K#;aIzG#pSx+$Gv!XzTrua7Vw%VoupkWfuy*3ak0ADTflhocy*)DeU6t(Mq(BwajrN=xBml%f<#hnY*EnRT5TOO)%WE&sB`bDLdr9hN^ICt|ALD^+sH z%tY>FWCFFnRzVg>S%>6Z-huy@X)o}fOuijT9jnJ-fZ0Pgbz*pK`t# z<_FFdiROs$(MpfzNK`EAECVX}BG6^QRSDGR%{$urM~Z||4&jQ1Y%I{}ZxUZm7N&2SfbuPclGZE&9kWAdH!@!K5c|}cNuX$wOb=i zK$nzRk%a=qT#UBFC?ZJ6S~{OMjSP`sKTYR(@n+RabEU9cPATnu3G3VC{PPC)0`0|0 zlh1)}ShwJ0^>&3D>nI^r#m=DhFLU5R2L;xl;;;g80AU@^#rZ9Ef16K#>0eWF7Zv*U z1`jIsOtahO(&yWkpZ|X+!OJ;?qE|CyQPSLz$7y)rGU&`veC_c1CZuCHwvQYxvB7QU zP(OlMEt0RS3(ljKlQbfh@>s2A)IcUHi>hX9B)_`+V{-57#Vmh}VY)iTcO>5)qGw5= zX(DrtS<-}H@a@f=Y*@aU&d(aguMjE}TMSQVsVm6^gcNcK#esG_@nW^vT!L;1*yC7z z-Jv`7^0Njz*TDxg!7|qj4HlVGSC_A$5mf*L~$d{8IO~GvZl7 zN>0cqL3jXeIEM_VyI681#Mt?dO{u~VESoPph+}O2az+eeW;rDVGNFgSb+!ovvnI(R z3Ldg_z{ww%0LO51jo&*!Gfc`Xtk*E#{IQ9oy_>U!~Mpv2sFQKVMzhyPF;V9Sla{p#uoflmw!zCznEwAGf|~{j5a_W?K?KWU2M-`2uwHc{16p>6#@mOjg08* zaE8(-JFjH2XhoN3n8nZeJ^i_*T`#M;OJ!fJmw^t@ge1!H*aGt^8iWY9+&c}0l4DI2 z!AHkz$~pzv<(0nt=k2s@T{Q@k_FHdvD75z(RDdz1E*o-kGyMfnTr3K1fmNb-6f&E_ zf+swBkcG^) zth_;~uab`ey;YV2dU%pq)uqmUiB1^>@`j+X`Of63OWisN{7m>rSU_pZn ztdve@@Mf2B_w%5=)_!BMxLu#-kYsDJcZEmAY%UHJF8;})bFGz5n{ktE4ey}6GvAYO zn>yFm(-pPb4L3IsPz;{vC~(2imhj1Gq0#V1m!$~iqANDxhhb+r4m%6oENzrup^c7@ zNjj<`5u=NSqqVE0DbeCl&?0c;lh+io=|TfP5FjHkX&7_Ivb&4k?yj}zCqw~{TVf*$ zzotDB3iCP2wMMOV{eJ*0s3pp~(@+MTJ9GjRnv)O$fM*emlqp58V%#(Xe%a}m_s8Z@ zba+992hdhx(Z$GZ8vs}@ZdyIDNs?{^?rPC0lkEXoQQV1c&!?|$H$7R}_1mGk2`J$m`Uy&*QXx~+2Cs9BGE2wMG!h$IbhA6YoBnbg zZiZ2W#0}-%A^Yz+AnjJUT{R8;Zkok+x7+yP^fPV)Dt_+T5aAlL#T$I~PbArN{q{8e zMF|33LC^o4c1y)O;P5 z)Y>oKHtpS?t){pkwvDBl8G)0u1K~8X&)`ldh8dwb^8rwH0Hru;kmw=9jvDhZ#F)RE z7W2jY(~cHP%Dh;8P?AI;lrD}HnPT*TbCjqm<3F}ArZ%xVN{nx^Hii)6$89!AXC-ZN zU@5ueAlsz-`_^#!b#vDOZ92MTYlI;<->X2ZrmyPy_(*tW~s3rZTog zMs@jr^?AJ)V{dQOCySf27s=Jw6%30^WR+4*AXN#D1#UQF02}re@T-X=I|0`X!iGQ5!xELjb5j& zK26ESP64cL>I-_9W-%a5C!@D$ zs5SzameiRS9i_r05{e1tN2lpjmw)VVf72lJEY5@|`=neN4}BKi8e3gJw}@ z$;+t_CM0VOI_fHVuMJRtf_tW>kCF;P`-swzU-9m-o^95=yw8t-s#d1C5(84*A9;XdLlo zceHP~YjP|pIgonH-%Xr931QIlgh(9_(B(i^%f=9dLz;xBb8=EWN|;?8z{v=6uX5m= zgemBbL@pevAmiy8F7jxQBAU9&$xTzjzur>!{!s^`Q8)8uoz-dfzCoLs`phY3VoF?F zbg7xwJSgt{=K7sH>2U{~5)bn6W%D&OtWvt5V9K7wjJ{)ns3qr-7hAL_=`I@0B$@wr z(;N3lq?*K>y$-vlMlwleqG8M^13nd>v`fk0cC)4=$MpT<_})+7@pU%bB@r`Pca|k* z9rH0rW&p85fnzs;h?Ag_t#mO5 zNGb_myi?XGi9d&sSyZ8O6kpO!-Y^bqF8@x;2`6*$F_kD-P`Owc(Y6d=LFjrjMjht%k z=#VK?v6U9N=~J*?q9SaAkBisMaH{5RZojnr{bDL3HOog|$pFeF$Cc5=c`aFR&WG&{ z{G0j6gOhQIlVD&{2#M-xtye6eafoIWca+~Fat@nbZQoG-b-#<|rX04**PgyQ4bXxo z4gm=tV@Z^Igb!k($%INo9n~g1b`Z=>viZqCP69W<)Y8yh)fzc#|PR9Pd z3%MUzk>4WHh2QVkgtyC+;1z`yfR;BN`ry2?TFIQH(#+Xl#Ad|!7fn!~24p^OQrvps z*4_lP6Fb_>xDSD#7tt40ldR-YG~{Hv>qSEC~o7r@|hUF2=+q7tD zuiaWV>T0o^{yX^|ACAG^C#O8~GJ!^M&SJphM(#06cUDr^s|Y#vz!5@64=br6fE!X3 zC_F%**1%{IfGg;07%E#08yUSt;Q1zP?|4kMnSUq4$*Wk3K>6VdINY1cCY~9!M-|+| z0Zzw@?$ffxqZ?0kbKp4lN(ewNKX~AH;EGcz-bLXUzTCy-^o%J%XtdybF-&QEDl`ay z=(td5h#I+Tn|+JG|eskW9DB z*PBbI4?u!kQbrZdw6P^}DGI|6m6%veigCjastCu4$P;?4$%e#LagJ0umHJbcAR#P6 zQOTj)$Ks=qlWhfcLUTN!h08_a)+*{0gC;sUhvopQv6AwH+%aHzlh$Rl3xT7NYpAuf z@KS06n%&3a{ff&|qUKa^T5^@SMem&zMnyc*C9*cmruEyP9!fMQq6uQ{T2xW8<~F;3 z`*fSnvO<_2ygXT7ZT!t&pT>jCKy!;S6rf=e$`}a}jT5AZm#9qGCXaCmK#APF!q!wp z+aj13>(hV@io}~N=qx5Gw*sGKMn5vLlvLQHo;RTEq7_4-Z{ilKofCYzh=sJ=`WSgY z*B2k9BG8i3oZ6z9v`T0Y6uYs=7e5nRJzeo1q4U&zY)mUHtvHPeWL;Mms_7OHEtK)p!DqGhb_J+M2S?ZEx@_SY|ekZCzMh{xM1M({}6rown_i zDuX_@K897~?}&_taX!P0r9CZZtOa#D=a z0(u?7@EpP&6rPo~qNm^Jy`LW3>ASYUdnaL=O4?2X3&$3xRS{O6xu7_j*g87gfGGv) zrKS|8P?=445dL;Pd;4O348{*(^nmHmU%y!9c(SDk9d)4;lqiEqF;goovYtokm-_OL z>X&7>`3TL>I>L8#$`;RaWJI-LW_;!OTjSO!6C7ij8%@Pt!O4;!GwMyB6@HX^(?wl~ zUVS^#A2g%y$~lfX|5eZ-ngX7oNtwA!Oob2`Pd*85LK2X6p#QX3=0Tuus!#%AfZs)@ z6aD0{oF13+QN={WLIYLMgf1p%lf6JkIZ5M@ElO(GVY02oJQkf@x#fv*0%V8>L?(MF zi=%?5lx5236-0Cy${u&NlJ;mG?PT>kv8s;5&O8}Z`7T-XQA`wxOOLw7;=h!2qeo)b zmVcL6{(I9D=IdE__0bK(uA%*aaNfuEydt`5XI1dkXP$liZZgp=!)Z=m1< z$%K}c2R1guTVMWN61;UiK0@=lj`jl*d>`BMO7MLz?d%43jaGr7m50Wv(}G7DCSQ1t z!YZvyW<{GlG2T+}>*+7OZrp$B%%M#=b!#N;CUUoeBV40>v_7h^C>lgYStccQ4pNDs z+rX8U)IWo|k~W1!hq`<9=veh5`ISIRq-UvyBP5A8M`XVDCSS<=Pq z>$VHx$WTy~GSs64Rj}bKc#$Zf#Tpfw=_hC=DRY-HUjp1vH0Z<7XZ>a|h(3=gy`2`L zi`<(l2xt^MdHM}BI`r$!D9|q#>GpcFe5-nPF}7GBfKnl5gXh_2!EA8G7#2BWY4k-$ zZTUw#oZL*i36&&5hHJ|^dU6&b%vOz_>@?)QW^DiZDWws-PeuEBx?Gbh@jYE^&0qax ziW}jMqTHc5In&>Wj=N&3K1X)d7XnC;7e?J0ZU>Gm{q=ezsQ-b)Te-Meq@erV=5wF36pcP}`)Kiy3WZm#jtc1-SiF}Z?S)5WVBIsCQ*tbw)p+-6#FGujX>*kyaW_u1sd{Gj^+ zjW33+@NP@PZAGF+b^TA(M9cRL3bO62Rv&pyf&0MaB z&-nKHR5pLe$UD5-q=6mu)!RTpRCw(4jeG?y*~W_x-`T13M|{>CQnntF2B8%ttEO0r zRA4kZ-DT5u@@O4gU;gnfWAg>>JNV6SCkOALw#u_b$WNaBcmBEfAKMfC0e#xni)p^6 zTRZU2tXav-``|i>PT6{6cpRslXyaajZXF8us-5?8QM&Zq+U(h8qi&;M2m9#GSo8zl z>?L-#1CYA-*&!j`Eq@#&j~=v?#dsRSMUy&=GYWv_t(md%r@s6M`6K=%fBq$ZPL9XB z!(?>Knh;qR2Hnh?Iu7ms+~RA9+>%V`5V_P`xfHaJl7)=_woC?XH|1r=4_d1(Uy)mA zHGbLNaU2)IcyGdK*q}A*CFeXE5WyM5K3VUQaT#*3nL;+t?xNRh_J@Vv?nB2(!484V zUVU&UH!j6`^fuo2DZ9I=Zc|d`*AAc6XKj2g&o-;9ppCPwfMCt*r!N5}VYXV}3)lD{ zKONde(G-6V8zfh zu3%isTv@#-jywL?RF{A3*rXYR@cs*TzXe|&Ii`hLX{VsSv z9*MoYg~_zsi^@?1u-#P&F+=g(q6ViH;7+2&z-$4RN@1}WPD#otp-I6NNEyg;lasagErASIO6E3J#Du@i}p#ybi%k?@|P(RAE)JzF!PQrBl=sD z9G)Na;9anV)6AR$KK%_%zwM5~v$DEc+|Kg$x_OEOhH&y@Zldz4P%@R*!H7f?U<(!A z#iW_B{()nDcouq{a+8=zDFG8AF=s522x(=Qm!1iPVB{&UFW>W&FK(9!KHkiuf%O^2 z6qM{T(?C$`Su{~-H1?Hsk`w2jJwTiXgMJTu?gC`b`_5#U&fB2IdroB8*afSWZkxfF z56eBW6sC{PkbPYiVv}pq&b>LY98r$EM8VM2P2eI^in>=Yt+_TaX#0>H z*`Bt3b~m>!%916`1~;W-6$NNPU9KZnZgh@+b@_fWgt|_lD4*qzSBy|*+dGf=7RP^` z@}Z}Ey(QiLL2nN3_WGf77#@@WXFu4QIfzo_A{q5Q6g1vEa*-W5*p@Da?j7udBhc$? z*KMa!XS=?9zq5T{vVAN!dtijiibfDY2{K2CUXT)!g59w+y_%jqjAUKaZ$J7`-STaY zVuY*kn#PlF{O<=3+;(2ip}TSN+dyjnYniYCHL9{YMP*zxxv81t zQ5&VDacDtj+!x@j2dzttVeGN1FaNG%*H&qKyjt`zPrb$KUz&4pX!}kVmNUh%ncz%k zWnC`5muwgIr8k)mw)W+ zQG>{)r^4UnEyY(C81lLgGR!tOq&tyS2T z46G&vxB1DhIdcjUJv*hnv->XdRw4bR$z? znmTjQOmnOKlcz}f7b9NawS^F(4+-5r4d}PZ5}hoR?Zsl}w*GkM9X(EWVg=WWK?uh+ zD!p7xF4m;Lq)BKv2zs>XFS+glFFxln~gr_^#qfa!=*lUk5fjnZej=ov-v4&Q{ftLcA|Xf!yQgPfv7nO|4{D(&|=JL+f1 zv_LQQi!D_ia!e0s_AleQuP@w?ZF0S#8@0_ixo4}T=j78u&gjXq;-%xfaGQdHRN8(L zU)((c{cP&Q9Y?W4BRwTg64iOi#!(}3ln`?4iLNjI=!t&2h7WBI6?diO_N3L=4hiivVH?F-xj>CCWqYF*3EA4Ca0slEJqUV z-?Z2I%KU|@gP-57){Er zoZhNIo4OPT!fVCQEkFsL4#-c$+U5tc68KmNVx#viJEN!aQVp+$G+> ztdF6Q_)QOmtrR--xwge;FOv|EU9^!g?~P(E2O7MPMQCi0=MNl;e%UTk6p)2ea)qIu zO@SAD7lki^b7gF0ZGHLLF>h)W|C5|?gW``{mB=ZzNH&p`D~X|e_`Lv=1d&7Oll9OY~Q%ibh zP2?44G%k=v8dea(WQTAIEH3RSW zXOEoR>rcvNuPj4@I&uX?Y9@6IPFNbVt`Cmo-ahVE4#hMmJUYcG&`w#Syps45w1rh> zVXVTfFaP+#oF|xlJ)P%EtZLl?cfm3C=M9kPg}$BKEaCNZal1M)Sgx#NSy}WeebOcx z3NvyRJ-SSq(FQC?iLa?`<59tBCDC_q2@Nsr90RGeVbSQ~5{oj@T-ELRFXk_sB95I+ zxmZpH-oXh>eFKwZ!Mg2C+qP}nwr$&}wr$(CZQItgjp?4Y{rcP!_s07H6QPVA@Lo~EWep^%!C8N1xn?|_O`5cKpc8Z(gPKrfuAMyalX@HYJ#dp{1rUDe|~B1-VU zZ+w!~cQ(x&4ZqIWx&v#ix13$twA$p;I?T3J*Z6DI_-Y%OlnO||$IG4C!vm~bU{l(u z_%>*Nw!&FB2z`39S0gWcmVVvFR04vmQJ^ecC5QugvZXl(;{DW4UDp)8hYVffUEQ~j z%j{l9Pi_gS)W(wAX;Ld^5nd|r4_2p3qj@ka?(lKmAHR$=wfoHoGk#1ACB${)iN8H` z^eIOtqmb>Z+tokxdmho-LgUTYTF3j=y=LBSC$+qBKc6_cp-BSxOh*#=pn-M4z;+kMW$^R*x~ z?ykQ17@W-KrInSUDd+ct9ir{~B=n$#dQ3`?``U^QH7ZmUz%0gitl}ldV`+QckD9Wv zQL6|J3Mo?rYamA8VkbPBOSNEzwKYN2<<*U<3x99LxkapswXa?5;>n1%v&+F3Wpo<= z{a~^o-~+Ip87T~6jy*06X~1f}=`BVvZrpOb^Vg2YqI!xW0jHlA7u}4owszPrq%?=a zwYyP@%~e;?|61VfPNz-9=Tbc8{OxGJ#s<${%2mYv9~)SoUdvm--!i$LGfT5Ep6^sM zI9j_ja(k(i`L+7hz3-AEod>ByGm2?5!j_imm@d2aoqJE_2BYj>5{wD}@)G+S6C!q< zU<)yQ`_)uG@B7&`Su^im5c4-LtdHBO^*4AE!XB;f{jX3y|EHq$jV?rJx6(G3H7NCc zm(AaOqP361_%m2q^kh}@u3$ENl1~erGub;cCLAtRR3j{tKXii-XP(aQi9{GGs~9{F zscp=Twhm7{EU8mo@uf0`pt4!6bA^Df-o?efFt*K=<6TEBy&=HoijixA*d$yhWA977 zq&Zb)c`)<9B8^K#BtI~8Id6*s&jqLW zs^5bQ{qK^~DVKalx(;l{#~&9Be={8khOgUoG(XrSDK|0fbQUH9?A|6K^BTyTE6T#T z)vejiYN|aqTk$%}XZJ>nm_7EeF8xhhl6#ll5=J}v#S@c>7%xSZodYoa<&SS?{ymi| zP({f~K?-U@>LI#;Jjsms>+i&OU+~|@nWULv+`@PDx;E5mTU$cIU@#h@!1GTl&n1c* z)ATwEXGEL#E!KXzU7vTP7{x}6PNV=6C>Pv=$RdxlmiR~|%dwd3D!T7K8S5ID--7r1 zY|6i$#ZYbVc#|($ah)IPc(QWs^fc;(I|qjx=$ur+QWfbl2VD?xYE=IlsN$Rs*lfI< z>e2l%>Ea4v zx^+TUKzs#5SwVG=o(4WpvC_t1-dz7T6$P)&Mr26R{2@r0Vz9YZN%|*?<<(=Bnq)r) zZ8@0l7cyoc8xF3^@fW?9edm!_Vo}r=zr5g59J8)1Rm}C&RxXqB+9GXNi>x%S&sZ!j z_C09s0ZP&|VTO`r?$;nM(fA(LG)#hIX*tzWqDg<+uf1P5Fa0UZW~NHAF!!dUO5Ydq z$8E%R0|5up!8ck>BF;<}u}VLQu*qWbCJ;PNqA=HFyM(=uQ{F7ZP^mw_d#!HuPG}ThR>xV48 z>fz#*U5-2tO%|;}<=7GAqjOET%z%|hi&9AkD9kv|<%S7BE?VPV{vM%lY>ULAl!6}f z6bw`C9vudmBF}r^)z5;Yl%%&e4UX|eof?nRZ#p2$Ih4>D;;a@jWe_`kA+J){H!Kxg ziSXtli`epD@kmS_1H;<#1+%+19jW+j)_yd#+($d`Ih9Eta;7~n!}^i6zVjsup_R3K zoiwsN-P~M|dee$_4kQq@8F6U(IrW&o_5Yhj%W5mKYoSj5%8R5>xf@z^Z-d*$)E9NI z2|s07gKabZDT8{;S_af?Q>J!OI?IjR=y| z5~vR39DhpX+GL#Wj{EiH`E|J`7t|dPWRzv!k-cSFvBPsM2#RrTq@&m06IQyUf{PCD zRU%(;XAin7Qlsi$$dQ4Cit~Zh2_NJpf)JJR={llPlQiG01B?e5SIZrpCk=-iFQjk% z7Ng39K-`KlVZu^huf5J^9VRUI&oOx~0CG*-rBQw}5F=2LTSjp-#LrhQ=Is~-%jQ|Yhp|0l3w&00VPUJ8d^yT1+*ce1U71#a@3&; zj*wKrwV()p&e8cg*9ndb&(eY<#XjCRvIRdymX@f30&4hJs`Dl;<9UN8XscV4?FgQ% z{0^?NGDU39R7z-`6$m42=fzaPmbkM;>}s;3^vWEZ_yJ3TUue^2>x3DdJe%2ZoOGCr z9f-y~pcg@_W|QanrepIf<>w)*dvmK0-r4`i88T&jvr=*!@pt7Nu<*&3G#($vRs9ba z%AR)MP9KdGcoP>;(Rl^52BweCW;*(uK0acyvy}BDsi(YYc{=mk0R-$K-}93`FIJmB z*;%TliY~Bf$Mtku(_EfiY#$rvPTw}@zEjO+Gsx7k*{!nJp~o(DxqZ_1ot&cp-$e{N z9l^8BzCxxWn~qFSqq|S%&|q|nvmkx6q+M^%syJPFx*E?vw%?w&WT|DVxoh#9#Ue;n z8CisV!*6n^9X0;gD(@S=Dtub_4GU`uReKYtFOA@k+XpT|+#c8TcY0sH!8!z~ z?dOJw_SxSEcIq^Q}3~ zu;AW+im24Vzs~#habM;R`r*emc`wMH|3Qn5fIK^Mh$R_t)&W8CWyu39SH>o7^0wbA zw>-Yuu};8=uj*>=u!7ETgI=-`gJ=~4L4Q7lN>hFWZjFUH;6kNN|9)=Dzc|I`T9z2) zRMSPiHPv!O);HH;_w?7JbIHR+KGG6^xVp@7t;AT``bQ~+t}hR@>%81^Z@@PAZTP;{ z>M1&~Bv1EPik_#0N9vN*Z9`fP`FKM!$+5&|7fg2h=(%F6l-}DC$uE=@fbH}TIhZEp zIxdp;jpre0ECrAM+bER(^#eat&G>&RVKr9C3>I?hnKDiK5hq@v?4kHkPR>Ayyf`5z z+@CrG4Mz@uVVDU#Z}0VB)iRpfS=|~iUZDM_M`p}?O6eedhHdBaDfO2+n>3avY+z82 z4KJ@;7j@io;0b!&5rfuogAK7(IZ#7Hf)o>QcVDcEq}M&kn@7AOr}7959mcM<>hs4{ zK%Ud?sf~XV$ww+eM{E3VLUf}Wq6Pcw_9Pa3TW7{;+z?~7{`$rn3_XT*In-a)hCuIa zKWAjw1I3)GdtfI;YBQoYIiMH{Jj|lzL8LcBXn34dN%;SyNsBLvxF2;&bbw1sK23T8 zE4e1^POMB_+2{*=JC74U|8KA~9H)rJ*n;b-znRVG(C#{S&rUUU_CMjSQg&>&#L~aw zf2AzkL$3^={<;s^)`Fgr2qe;+8z^0qvF9AQLEgYl_t9di^{tX$W1{)kO*fd&obJWN z%`*BOMBjzYd1w4~BVvAK&bhQVvDL5D}37jCV%7l$4n7-SU> zJ9btBS3wK5xIl4G5P}})89YSZ&V@=gS00B8LPCkgro@4#`Fj=~n|nZ+tU)vYBKw}% zlymfa7L$vqGNy)^M|$~pVdFq&vKqgFksccY(^EjS=kxUd!L@1)t||`COE4jD1Y~f~DuP!e!t( z)6QkI<-M!p41RiFF%zm`()|CsKfWMz$IoX~-z^K9#03 zu*g4Xp^cvq1kCrHnaULbZ?^^Zs!ckuRWvu3NO(Zx#dPEPQLCMa+Jjh2j5v6dKo&z` zcfiUSrZ5u}PMQirj(;M~d|r*?g&{0128N}wGi4^sFR}l&%OXj6?V3q!AGt;7tGOO_ za05fTN!Pcsc907QaQ*szE@#}i*-80IlFgf$nXEkrBD_Z2gZ%#cr*S_RNR&h!52cAK z5Gs~TUU97ofs|H!DN8k!OM**CWR3|i5l)lYqr;aGURzbyOp>+j3dCj*~{ z+qJFv^e7JfsZ^2L11UX#qYJwuaCsy3Ez3%D{FGs~IIixyCq6ZBjR#C3SjrAXb`mRm z;H*=3Fw54)QKMWKxBzAZ>?iR%f!uN)W)AhTC8_utSDgJ7n8WAk8ME8zYuckH<9Ni; z%L`UjJDzKzWfCLnl+{$fm_TJ#ueNyQYwgoU&rjiakiGp!sdRbENLg~4`dg44^#2-e zAwwfw{#rCG8oK%C7EZ+nI_kK?3jiIX^aInaAKds{|Kgs&C&2&47=3+jVoRNbp+7h4 zs=4P+T`$`0WASH8&si1>(sq!A?*e+g6nn0p?sB&frr8e?=I7=>D?ygw408=EVQSNq zBH3lwA4IF$MSX`Rckes1^L5TP75eGVtteWw8Yz}YP@=bWz=4RnxLeD-m?E|pZL{$* zEr!bMqF@!7Ds)5(W}K#=EeY9yHS8L{PPl}6z2=rM&uDIB8%TN-KYgKgBxg~@p)C;b z5rZm?r9O#SDZfI`kBIX22TwClgXe?)GcPMqB|WiO#W@9g=ew-t4vVL?NlH3^ySrlW zSVOz?FI9e-?_aI1R`M^qZK34~{UuY=HL#Uxr|Z)sZ54+C3cU|oq()HH9HdP=jckaQ zC9V;BrU@6hyh%^Jc3DW=jB?v&$IXG@!Gbadm6S7+klRI;VbbAc>x ziYM$n_3Jwck9$DJPJZOvT93LmF1~&$5a-MG@j-7|&^o!wX&<}+*GPc=LGe|o0vgZw zmWF23&Pa+dN?b383w~G>o!0Zqelt`Vp)LO_Zt5BD5z7LYu}_4Gb)wbPT+~nv@(@X)D6q`ec7>L?^maUOAnIM^G24XFSPylyRW+w zbKuBTAI|)_G#~!+^-c@lxYs}>yc6SD9Wgr&J>O2ADrLV0WOl;;#=Fm1ItzlVtUdiB z+x6kw$Nu#4jXV9DStENlOxR^Rc{DMI2`)fS9A^fJ%butStN{DP;GI&%H|BB}aI-0! zuvo`tv*%iHyFfF$#fh1okJk(p{YM}%c^Hc*yM^h`=)u-te%NEv?X-dztHP;pEfOLj z$peY0%wW^r+f&nDl0M}#Gk!Sp`z@rmA2?d5d|~SR7Uu&wQmZ4eHS+X}@}Cxft`@9}}^l z5JG4JNipI8B~XF~PJxy+1=?=gHM5Nm509ogLauk@R>>ZLRUvBHYLUKqQE_)&%aW{b zTloj9&W9<_n{#U6qRbUQ6x0Zml5r%(J4cZ#b_Wh#GhHeraSz0%R$Vq#6i>G~6Is8c zxmo`$VEsf4k}45SM8gzFHBc~I@yz>VY?*trJL-cEEH-Hkf6F0xcPRtlXdRk1KB;=8 zE{B+*{)>qdM5k-<>_s+KAEpGuI9LIhRwK030faPMU`Qb3$OEARj9U)Q+QQmlmczQs0w=!wxjI% zT6dTCDe=I*lXl+rY(<_(M?Ir}DI^8dFaNw@a{V0rlH$GO9zLNtu2mjBU^*B28 z`I=XEMe<1q+KYNsHgSfQzV%#r1KT%l0)*)V>~Ldtxpft#SsZvSw@2NL)su(s!Vw9` zSttO+GQG2M7K+Q_$E^a^BN=;`PPx1HKM%6X(|}RX8SPV#1MUJa%VR**M=j`jS@q3( z8|e4RW;oW5 zcBT8qiM^7aZwSRyipQDqB34T8gMqU zY0N=+A7#r~`;R@V)AEtp`DYFSyk?}$CUjuu(XxV!pw0H9PCs|h!JGG_ zFu$kX6#RRTDQu71nS))A-+o)kdAs=7?eZrhb;$fvNj4{?yppV5 z{FF$CS2OZmfGi~mv1jF!(93+{C#EC{rT@PgcpKICSK}eIu$8y7{2r)P4Cu(hWy`7x z`DDtxLmjh0 zrYu3=NqgWlN%N>=$O_8+g~LghbKsg7huM=5tTG}-MJu3SfnP?7wV6P-2i*#pWtZe=V0G0}*lx8wlx%+aCy zZR@v&+QDfkfkhS*qPe76AhD-#laOspt;-WXf3Jpxsoadogc4plG8I)y7WMF1x-3$( z9nGcv{UE*;h7;MSYa9E5G_P~gZXF&L`H7BkR~Dk%X#~+YjsVGN`NBYk2&a|bVEBxc zcSEf$E_rIzSD?%@Sn0l{jvFE|Vx+~sAXcI`h+K@@bU{i#aT{$2pn;CHh;D*}hJ96X zBKu)4LIiS|rD*b@M&@T&)}Ne138`f5pqIcxk5?tdbbJanv@q{(9i^UAeVCp~mUU;@ z4RQmknNBs}1HwKhOq@tTQ9+<~@`Au@k%Nu5 zl$!g~#O5J`CHt*Y5T>Ujzwqy8Eta`e{5)NYwkFRf@j4L5El0%eko0sBsM;*Uz^2@7+0ljpHR?Q`UqUrISFj(=jUjvITXUgSJ;OM9x_ntqy-v)| zA0}*B!TXK7mkwW6KR*R^I2pPid2DN0a%*Uih+#%1cnqaC1V))jmyavYw=z%#-(X;E z2#as_Q2Zs+Z|aCIwWRhm{g8bM>F%&&_I_nAjE&fP`nr6!XpT~bfl9UL!hU8%!&GEj zc7MnLz)vmzv2-9E_4&njt=YpYYUIRe)l?qHeX0g}xRTGa_|GWCYuDy-)_nKy9n<9( zf@V%3Lx3hyb)inZ2n{M5mbEHDqdoMn-5syI*VBjmJDy9y8uIIe{83DjyVv@^lAMv4 zolTyg=gO>j3530n;swB1IinWENzf=iQc$mG>&tshmzT-yrShypo_$bzJ8!E(?tv`wJHzN~&7-Yh)VE>ghDkHPDnC}6PgQa@E-`gE>LgG zJyjiOWjQyW%#FtfZR1GES=@JG{P5C!?Drc%nBK<9r#1cc%AN}@5~X2ps-8uZJLp#9 z>S2CxoYv1{vk3^g0hEwN-PmbaV+{D_S^|BEV2yfD%s(m8hZcIjA;EATb0^ zUs3$h()+hhan%u!%0z@P#)&{E^lMI0TM0+#R4LY%;_3(8xY%94c#V_a{d4NegS}&t z@uxEUf|D8v!_m<~4 ziqu{KEyH;Bz1MX62fu@Uk27Bnap!DnO1YfFD$($See}?0Jx-54wQGmUzcEEx5ZvVM4X55GEbA0IpUE~l4vE9Ej34_YU-|n|Q|7(K= z`DxTTZ`3LNpmq`fZr7QziJ%P3ngLI`6%vUezitI5Hm_UVeqU@e(WR9+KUzx!gSNxk zL9eU>qsHFk>0}e}==QY$Jk-L00kGK$Z&^@x97O?HeED=h$69YA6*(biYh0I4H?wd# z!|yJxXC%8d?Hkry>c=b7x0U_9CZMf}55B5K)O&q7Xw#)7fOsJ2K&>)b0hUQiN})R? zs=0-1aBYQ<_mZU_#-XGi(7G{3NmZ6dc8kM(Q!{(L72k#sby}jf`YWoo;-^N! zCXFPH*8vnW)u78Oqex(Mufx#j-y7XeLjYMWZtsUF)}LuK$;*uujgwy3>4GJ%l71{? zyHfuhOIJ?6=4f zBqG|A$b^_m8uu2ONC9PMf{&x$mqdNqT!V*QO4Sjg;~p3@krvBB3uvL|OLgM$CwY%( z9vnHlT?+=AKN_TVWNgx77R?!MLYIw+kPJ$OSo6Glb`6`qXl7Y(_B-Zw+K2_9d3LXV z1M|>AypQ8n2~6R@tNOtZNvOL*-tHN`AzUDrv4&V&2aQg#-^*fqTY9yEBhauh>{Nir6ZNIH!vL9T;JOYNile{RL9>oW+lJ(d-6TTvn- zvxRa_U87bt`@^2r7lzn2m|Lj0U7_j!4n-1M%Qx?HbIW&++j8z!RYK#zL-1eO|7Z`xp zb!+o)UV)r_7YZ)*zecuU{jyDlJ`pg+#!auBGcnK?#OFmQ%c9$41pZxnIwxIMCHzq( z&gl?4*T3~$hq826m4H`}Sm3x+LWqzg0D?)-18!oOOmAfSTM^$majhot!Ux2oZeK@p z#k{B8og?q0a;mi|i zvmdq3I$kNr!_jqDz+ht_xh|H`;-&&bHn9ipUB@mGh_e1++T1fO0kk=+E;PJGfEb2L z{9k)*vpf+}nW7e;_MF08oQLlIJ$maceOcosoGwiZ%78%&yVj^cogtCG`vKvDRu zkkBP@*C#Yz=bHg@1ZtpD$7yc1KH21gC(iBh3lpYJb9;klzZlzKL-be0fVS-cySP2> ziLt~o(@^?h@}DitsNy5d!az>-;}{#`pdq^5l!H|8V`NFjAp>xR4Qo@3@_e1$*pr_P z6!5H1e!sqL;;WaF<#zY-w4TddHs?A-+y%p;^QPTXmzrwmt&3b=4Z3%RNk0A&%YBXW zs8X;gfb=-1B{4`XS}8W&g?T(64k4egufTU?O#J;f*grWdhT1-SpvJoIA3oVx8h_!l z(=)~AQEk!(A)w9F(VWK3x~T`ILpn+_FKY{Oc`lHtj#zPW6NRA6hY;9NvVELpnGh5{ zrE9jR@KAz7;;K+))`H6EO%w`5R^*h$DH=kon9WBx`3IVw*rt&oFIvc83$T*C`sYOU zy%>(>3-E(>^Z;#JUH*Gk0iDYQoWM*ML_$@v7j8i-V`8D*9e2qYkq|^4t$#g| zZte82IA~hax+|T!5pQZjPj6HwidP$2N`=?mvaBOO%aN{-`t;p^?E`N8|?*8MjIO1LtEiH*9MStSYHPd$+#sBB0yl#$7ahU&x~0i$HHUJ#7knLqyCLeE zC$Td}zDsup?Awpq(U;|;zwT*HmE&c$C9cpU`hBCb&Ge5Fq(aM3c_&l8C0P3V?W=aB z{rdPO;#$`N0|CBICD%MFzrGG)93XY1Y9NoFwecAMy-lE5hi{Kt22ucy$6MsI*3&HXivYMU$R#>e3vDs_NmN8X32G zpfkKeed7+fJ9yP!=p?V7K0(vx@O7t>D>r2bpKDo48SoP}pC?GYo#e*Kz~8r@KVV>W zH|aAq|0!YDLljFxTF_pqONgqF?nk3qnej`rfohwRhO^2->u17?RBFXA&K}sCn}SjABB>>AMH6=II$s= zR4*#sEu7f&oV2hHMPw=5PB=l9nXXJ_Vb;>jHzwDu+)5v5^z$}C9cZ&-^4|KAc$`0vANSm@@=sAlYc-lgVNDm848A_hE_qxVzGk6?3#WlFqrZ$uFpD+Gh5`$E z1{OOf@cSG5aCf@#k9FRm4gRcj_$q$9^=fk282_1M{AaXrR@w*qan>t5cWz>=<^fZ9 zyMb&}gETBc-U6BMI6`qr=J#u@l~HFlO+QOB_n#SX;>s+ND6z)h@JA)_31=bEfE_Z? zn0mgJF&&#N+FV}TZ+2D==vaHQhJj;fV;HfdxNEsz!WNKaV(%c)TB7YySQx!PXpmU9 za$P#IjT0^4nrAYFziWEPCEa5q^_1m{T_`OMT4H^!S$@7bL8Se??vlrpVaCBku)=;; z+5fbx_ajFQ77N6)mYYgtlpv&f@QMMMuLQ|c_?m)on_ingNRO5I|5D8+-7=cg+>_Eq z$CY(&-qS?-scNS;wI3)A+r9=bC_?2T$MmEkI7ZR^n`5{kP5+kK;hMxRaP#HEf&J!$ z-s71_UR#SVFHecncJ;h}`DqKC(|Ig$#G&NVrj8!HW~SBEw}VDSAzKV(WvX>Wr_ZED zZ!PE*@(+(oR=mbLr2%0N=vTYaxLzgW^|jPIjU3=<&YA1=4-MfiC(V^8bE09&ActR^ z+_LP-0`c}CJmAGnnBH49E_Nf&h(Y8Jf+>rZhZK3D?s2>jnvb&}Qn;(YF`Nw;vd1!#t|eOt^;v9tVQ@8@)y*Gty?0|Mv06RI{eVuBZiP0C|es6Q)?CS}~ zn4kKdyI}^Ktcdwc_Wl*9DlJjqn`?C7{EK~^tDs)6V^b)k@f-xjcoUYd-#K^g8gQ;| z#!LVVYv+^{zxl2ywp?A?MjkY+$zLGI+l?(KR>JSufva(yG*fX(S7{Om%cNmdE-q=x z=v4t~Xf<&QKc06@vOU*#MbaldWTU;1L7DMLnd_qYba^B!m-OC@5K5Id9n&Ox)aFeQh_S`jp;I88MH2-UK52G*lG4?z#5Hjh5XjXfvo8#}K_bEV>xr%b!fw$~$OGIcMOj|0-gXBo{<|)!GjB z7SC1zvx9knv{diMqHAIV*&n^&j&>xa5?1!xKZfvNPL^fzpg4bKn6!*}>gfAT`SmjV zg1_C?1brpfmbh!&ZR*xlZ^iz(EmA7{9~uSP0BZA_1?VmnsPTsOk&Si>9zf-y;z3_I5Po_c$v?v! z1ky)B(_z$;LbYj;*=m7~;{?Wyt~4F?S04^&%)Q3mxe2`6j02kLnY+K4X#5kL$#-|) z_~%}GrHC6F)3HCA!RO>-Nk%JXB?RPgm;b3KXVT`dgr>(OAz0)FlTm=z0wuwfNKDK} zB>f>LA9@nb$oj+ucA^g%js`=nORo-houE7JQ4(f6ayv)cAJ)3&eWO-ZKXr<){$*j| zD*5qFsV=)PKKwiG4`Ik)n}Jxl{W zY*Ur}yRUs3?Yr_w^B;E6L~A)V`igp8(E=dy_}~d;CB~o{WLBcF<1kBVQ1K&A`5{15 z;d}%DOZ~QAzbvAXM^yrf9Cg(iD z-hj&F*xKq!xjgnqIvA<2=Duc4Zy{`q!%Z#(eyLhNs-eL0cS|AMljk5sUeYA{V^ep~ z6+?zkIr#>M!H`F+Rsu$dK?>=IE%=9BdP%lhA?DjbeKver&38_jt6?issVJ{Kp=DBt z*O3tNBqB!upUVi$2vI}24&(o$?UQ9{lqq$@QkAS*Gi33M-Ew)Obfaz7Lkdsr81m^LT1Pw6s&FRg2oySk}f7 zYHTG`2AbO$wY{YSzx6qB)r(XPMsp|W`*yxW57X9BI*mKFi=6`vs&G;S=Vo7)75i&1 zSA?$1qAGcg8SeW`G|-Xq#j^TLfsXolGeT{_2Opq5xI2gS%)KVc<2TV17GA)OVMF z@B|3a<{JW7Nj{*mQSOuZ{iB5E8LTU^-5Tils##8oq|;|pFaW;VJ4Oz9r2oPX#WC#Q zK&EI1OCJ3PhgQSp)c9)s^tb~$`H|=L({b-ECWRG``|TKnc>>v9)nwF*94AIZ2{P6) zBydxt4{M!=r~Sd4J*f1x3RZ`V7W7s|LKZS^C)6ZxK?{2y=Xd@n$v(1$nGKQ>iM4KF zsu&ff-|ft%{qD!<=JoCmYh~}}aev?S{qp#p2TyC_wm?0lE2Vc*NJ8dN5ZGj4WDxjJ zvwA_+hyGk(3z9?rZ)hotBMW^(JXW?(n?G%AbM|=OhJn@q+0k*V>uw*zZp-`ScWQj3 zZRTa!bIt|@XGia>c6fxObiz_O6k5hqID*MFnsLq%xBO*OuXqOUga@xz=0=<6%?VNo zZ<;YaadJLh@YaKx1#&r4@>sEIG>lNOChQJf#xa9PJ&7}l9(CAQu=5~Ey*nA?Xw8bq za}U!gjVxVM9}t1*wQuY>)u;_Z#;+S2+W*BJeVE3bTYKr#=;pEwm+sxhOQrIX{vr~T)mdnmOU=s6;fnVs@%h|bIj@mqr)hQlMc!fyy zszV&q|6rN(isZPX>6dxt(_>xN#Py2dJxuibX$7 zKDzgB?tjzorudHUV^6K`t2&Cx$K z&`0}Zh(NB8Bh5|07{4A##)-F3PH z5y^A`Iph@4qmeZ1R&MSqjOtMz`WG)>-$jM|b%;gAOV_-{GBY9<>n}3YunA8{uSXJA zMcuIL4h?2WZLSz}VDaaSpSlFhF+de!CqqOp07E2ms7@qWi*4RzKl~`+=ljdkqTSk)+^c6_E0RVR zzWxVnR`GHK360aL5*l(`VA2upDc^HB1U=jOi_=!azT#z(G};UhIATBPC4gA}B%>j@ zjCP2R=ViX9)tC0y4-Hd|Nq3NId!1azZcDxl z9m>$}xJ>`|xMJ+~0 zR$H65?3TFe_2|k8=(F!k^Z9J0YZ6auQ^s-C(*zYlo^5fUbdyv`gqk337z8zXJIVcF zGo1c>8vk_t`EYc(72%6roybHTt&(|k8l;A^P}p`rYGD=fKqqfXG>`5EkLKv+tQ#L_ zGQ_SFrKxcHMaE>zY&-Y<$rKI!HqR+Dh8qb+oE!j3iBJ~w$d{osPDjAJWTz*YEBsAc zeF04e|B5wwzmh|Ou0?fQP`^Tes#@Q@PHFh3)6p$@2K@YZ-;jF-9%Ge9CO@Gy)RgHHOil@sg0a|D!>3H>hWp6GI4eZjr zvD3Qa*2-(%$6=Es-69dBDk&{K8ffg+n~>`_X^(B|4>%8B2eYp^aL04ou(DTdo2@g2 zi8n_>O7>d`e$3Zh|S0d`?gqYevAnNrt8>POfIRumfTmD!c` z&^1!$K++)JS7Rb1$Cbul}ez8JaJhY&PdGxeM93iJ)amkVRRJ`H-- zoO+*N8C(Dc#)_}&Xhwnn#Fh+e&uYLVYD${whTXdcal;+CTH(6waGqC8`uY{>X+T46 z6N_rt+g<;RZv3woCVX94)AR=icJDfU$?YFDV=3FkAgc=|69mlHRkV{};oL6bziUz2 zcqsBDBC!%-44T&_859ZxHd5Os?P9&$DR3vCCc9%rDD9Q~bx_TmuvrH~Dr%q3Z}GIV zcX`G7(zVE6?e=@ZyIL-tJ{yDGtP$TbAnYSy=HT%`8W{fzP6txhheK8kzH`!zcg5Af znL0vv#;daA7aa!t-#vZFjfbon`E1 zKGW(Es2;0(_y=j(>W|CeykydX#T}!cPGUDZGgaBMZuI6~sYm0jA71htb#|g}SGDp6 zQ|Du>$sQ|KPNi63y6`I?U|^%#x;Td`v^7Rc_M9akCP_0#0!Fju&yD z!f-K0^bu8JuF1ybdP-?r1DVT_0)976{>U{M9z^A~GonFyn~Wv+ zW2)<>a`aXDy#m)QTszHQ3GFMD-^rsVXzMGSVsxBR@ zzT7y_Nnk#ZM9{M!o<%wEd8GL7f96TQ*I!F<$|wW(w7%LI2Nf~PlFToZN6k9)r`F$= zs#kj5Uzi)!_+cGHtr<{}w?E`(th%6U-8_-Hd8b2uEbI$KxyuHSNKtkw5ea?C-4+$p zD$+v&*#(X(#vjp0#hWc;A`-ls!+c=|DzKb%!U}s*t)Bro!!-(OAgXPs<%bo1qEcXX{lfa`p@U=K~u2UCDBZk*<0OkCvolh;K87ZPo zIPmu2WaVRDo=A5GJ~6bp|J~mKEtq>4ft!a3=b@xG2Ta!xbJ8RlvVd}RXG?syLw1Uf z%QP)r8X@X8l)os74~*j^h$WiA7JZMt>%C=A9As1Wqt9ix*r<=jE_8`xAtTH=5@JSs zcV+rZwyRijQ+m{zTQ}6eHI}qOArS>*C@e9sR2-w~-^y|rELmGY+&yWaFZYj#fnDl| zU>A4=bEZ~8LGa)#cv*w)Ic)!WENqxnPb-%x82_24(xe7R&Y3a$rc;|%2p_Y!a&Qq{nm_*erhbuWeIE>ebY&L*+i6a$ zB4)9GX@~+oDti`F`reK@%ukouzYguCT0PUD?8fX=suXR{9Gp6BQ>l$ZeM{;=De7Cx z>B;p9>xovBQ7Ol)vR7B)8D9-6luZJG@H!r8I<*I|EEbeKKn9bqFGdO~TR*ZjHel5g zR9`I)pbPu@N=W_V5OoTo;|Vb@-fq1OW?{?~ft)!+W%`>NRuu^ra~^0o)-jt~sXawu zp06H!h3E~)-z#+(ElD4>#-_e(4pw8JJlgzqCq9ZBx#be&;B*@cUWG1$Z?=QaxFkH& zg!Eq6-E6;;lekETJYYf(>1p2sDczEGiFr~YIJt*1^N)|{!UoDPf!cdJMOwwGs$E6R zqB>`wDmlO*Zt5_%IS#R^p$4A*H5(84O2JwzX``33A@Lyccnl?x@rc7a4}H>xdb~i2 zE|{ak&G8>_f{0^6Mqq(wTACO>oH*@ukALot4dDTg?78zn_QVn)M)5f#*F zqurn48smb9pkzakaiEdDi9r270Qo=$zc{Ya;c`N9q;5RacM!Fvtwttzs zQhXTZPjVawNB#igA&dhQXvjE3jfY-Lnoe%3CetPPw0U|k8IQ6_hz?GMp0A@kf0%tW z7|wHz1KiCU@T%<+S`{m`x8?%n(+ZFw1U$@~6V!SaML?$o6dE|Gcj0(9`A5npzslz} zu%%0E1r6hP$~g6xqM$s?KLU&gcazyLQ=1J|xuisv+xuTP!N@M|r@LWrBOJU0hy17g z4&RSCd*j>t*?e-l@GYaJL7;`1G7yjh;z{sacp)iG+M?X7KKC#GGMj%I!BTY{-NO#l zP{R%PAUO>jUF;B*5hV(&a_+4EG>6AIyq{l7cV`Ur%k=Lgze`JhJg1D8EspNT&yel% zR0vMzn7Y!P9M&D8n?Ni&s6KjOnQ*zOJc*og5hU@huPM?=zMIMaJ#YAMG@O6B zr27qY_l2?{SSbm(7@~{CsM^5r6%4bj5GOkcmnc*@B(N}sp$?ue&$uz#6 z|A;P9j#mGEo;ZJNlYA=I`T`+If4@N6y{!@Qn{RMESKdYC-q)y|jjg;~@iGEkZk2xT zg5Z?Qb5KG`lYm)<<}oqMf{G-?=z2qNc9GvFo!>5E=}#=2RpwLP*gtL)(B(WY42rWv zi>fU7!fs2}akE8g%X&(@8{gc!8>n*QOY;2|yv{mve%WXd#|pV8>u_AkxE@S`iO49Ls@W8h(Saoa2>z51M|ximc9GvHdQ*3IX{j=r7#d2G zYcG@XQF`uF@G%2%Til2$Re4vQOta#P65nMab555zdRZkAf|1wky>w?d_XG0iB)?Av&Za8h=t=wA|=Zy&!Q}R9+-0(euA+K*)F3+tDtX@SvUDzGLri!eH`BkmjGY4rVx==k5;M>S3yteTFLKI{5LZdXjvp^m!`C28)$! z+1G-;mfuO6RTi&g%TE_u*IWm0`^s!InJ=!3%O9;tlsO)#2ws<0(Yj_^*_uWd)O|-5 zUxGNCzZ(2Jnb&>pYgEt4KTjb}2JeTn`DFSjdv;+2Zh--kK|JfL!2Qt$^q2@(3Hea; z+;|%qNh)b(nBbuLVrF!c-zk#!^U1eWH3$4Ko!q`2jh>}^ZZ7jld$?V)fYnuCyUMu= zDisRXxRed$1a6mM83(U_eKUKxaz5uUNJ;iy+@aOybv~8L7nk9r;q5JosGGy+QzOEe ze_CmHv*VxBU~H7x*-HYQ2^Tfx%Hzo_DB~fda5JHEHT}$lPVxuqB;3R=LMh=ouUhH!TIp={P4}_B z5~Vg2f*`~Y#}zfwBK5w;P&fHqN+@S}z8l^>N1anI?W$t>s+d9E$-x}Aaz(2=N@45` zV{jG0Gl}Bo7`0YvE{PFZa~6p-rf+F>H~F1XGP(QoEJXy@b(N1t%Ez~pyCKYq!N1yU zwdVdX8s7Pdn;sv&%4%&{&;q!UUXvgq9*|m48v}=sUKIX){lN`Kd0meKv3F8Q1;Gjz zspk~93qg5j6!>Ib44otw=MzryRDX}?tY zPVzgI$o;c4?QvOG6>@A9(pc!@L4<68F7F?X-*L0+(9Fu^EF?cyw<}|4vQ}G1wX!Id zGALy-b`12ryzeHzOY+lX6rbtMN4>ODgY$>?!%;+^wz_ot*TJ8{B*HhPh7Lj7{o=w=%?~=Nd+BOAH5p133#d1ixL)l}f0 z8=UEtmt4|b=Ow{)3&wP*lq@=Na)*A$2N+dD-%W-E?C_i?x0C!n#q(pyXMdiW=f|GiLXU@n z@cb3bA_;J{Xd>qv|*V zbdldBmsQH-bCk+zWmlPe3Yi>-DY#kf8?>`>w?dWV6r<9;VfnoRu66Xndz(OU7Ccil zgW0*jQu0~{scBF`zxd|9Mu0oq@b^ySN(7P|C=#95UNCI~Iu{D$J*oBVD$&!B>@ zpQ)r*Yde>$#0x8(yq0`^K3MU~*4kN&cBPZn7S9&#T_=$?;4W*$sr&6Bt1Sc14M_AQ z0vIQJ>r*Kd6D=cxpC?jXFJ_Md zhNao}Y#1x2e&EagE=z8UUy@%zc0uYu>q3m0+sesw3bVV(xOBNM6!wc$cPz8#twR_2 zT_RONsLxS|%EGQ<^GLDzHSb<^^H7eR1p?Xf$^mzJvRc8=96F19qDtr*;koFmh=Z>; z5Aa769(9CJ6D?%Cp%6g{A}A9oB+q+aL3Wehr3`Yl$#c{NrHbaN3Ld8l{+2hdSedQ@ z-x%LO?z=LB|Gv*ih51aZetL8e2*ZsMR3sgUu*w9g1cMNx(79ntOc?|sPj@Ys;gBrg zB#rPYNN=p>%0*78i;OtO8B?||xOO-B-6EMyk+=2j@4I68KSu#wU*%O?A1$tVE4L&K z937#>B#H7V1vMd|gBK-bDl$Mf&qf+c8S&jHgZ{N%^Wi8hoz(lGv~-f+Eub5VdY%%x zvCM0|@mYv_c`w_Ngvx#T%1#}Zo4Lj@ZHTHsLDaTB5!0hmBD*Yz$K z>>|Hg1I%DvEeZGX&x>yIrRDeY)CGGMd_A}yEy=T{H?Ci7X{!VK)(pTp%jM|Z){J3J zqwQ^2ZeV7?;PFUkqTYd$P{I1{;)us}p9+9}d$K?!fuxmV8HLv+i!B?%)U#q0WmY#`Lp+phKfEq2Si8Pq(#f!i# z2gY~9uj`QCd$t{pr{^3zzJM#;6S{u=1u{>*QlpO((f9blG0s2x@;3Y zT6cwp8Af+WYwzW^QHe4x1(8Y8WTW&9Vsums{Hf~ON~4?ne$o8`uD`b~^lAW{`vrJO z*stE*W|N`f)#Pu@_Di4P!UUr6FbgT=Ua(Y9XGL(FPyw-TyRmNayQOapVB}jjgSRlw z+w!4w!+4H@xPQ$juj-jy<9$u-%WU;1txmu#NFQ~XO2%!U)o%{Ax2$f#58{ijTU}T1 z@we_%bMaS%zfBGK;OKq=S9m@;nXPp~f*^`oroA{0++y{A?>^~J|k^VFKBy&tRU=VN7s4>Ipn z2}8Tkhgybxg~^Dv!~zMVbik<1jI zG8$AR;uQ!H>$H035;K1iZ;-?YJQ@&{|Ax9=w(-{P4u zf-gcLEth-pSVO(ZS9LU4+m0>TXwea;)c?9c_3Z&_k!fk1x>G?FHIhHNb@O(s(*_Bx zQDeE}I95PNi!#MBR<2b<>UEXk$8F|W_Qig`8x6xS2P~#JoobdN7Jsx(QS!rH% zO1#Fe%8>7CjQjmtG)F$XfsA=wSAXJrnC1?&*_GU?_g8SVtA@2Px5Nx?UcbQyUTQlg zHDTJJk0`VZUMS;L)Y^wclYX(O4F8VyXW_JZgJoASKrMCJ1F~|AB0guEicn(fLMsx8lvFD3r0$)S(?$O9^J#KF z4PVIFRF>N3TzXhXBB4}5e}+d5l4?u5@=OM!gf^UJBVzlTaNj)m=&PUn(vQBk&5d5Q zA*FSA=?=c_DEqi9v-gnCmBn$jcD`+>*KCBZZTp7CeH~^$PsZ?aFhspuje_*^B95-! zR3IvZ0EDqXjM4&_a8?n^En#TbZm74ijDuC1BnCVeF>%6)3(VlT<|&ItMTIJ-Z_#i! z`GZy4JEVyx%;?Jq1uRy3Vi19O8TYDu7RqP7coA*=Q}jurV;awWt76)zZ(2KD>6_(9 z!|Iv3>1tJY&;X1s8>eK7xA!;&@4yR#Ho>G z7tI!(O4Y5a#joknqYqRY&r{^VTcJ{l!ZVOL)yR7)3}4rN3$b}r-h}Xu8pxff@kl3> z^5i**#zn_T0xGuHz&XzG7P1h{C)3#j3NgB@?Vg1gUE~i|y9*=#i%`3Z)t=0*1jS4g zN*IeTjYrSXgAt79y8xd|wP@Jw7f=DR<*l__wK`RGTp1f8{4u3J63`#TMWhf z+0XC+j*bcMz@r%mDxy7T7?Vr{BchX>8mAM5b;Y>us~>|z7Do*$(GybHhff$caFE)ODDOoG0Y_D zr4lGs23^O9rwLeXLCWO4t2M)$hha;ByR0g_Y4H1CB_Bw#jl{k1J|mll(sA;=*tE_W*yd;rM3HRl{s7^wgF|19*7V3ANo3VW-v6 zl+TqnmT{v8ABP3Kx<(##6X3-!F&K`&w6rh2!EJxjV*o2PIOnYkR2vDN2%fy* zNt2A-DXYuTcWYxDQa}?J`a33AVKTH8&Ygv%Ik%b{Ja|dpJm609do#wiQ}Tn^WBhNcw=ET`+RipE}dA25g=m-7|FQ@p|nNuq$VX-RTwW=@!yBD;X~kkh_yD6 z$b-^CGmqAq5=Ny+l-81ozUri#{2}V(2V`*gN5)uw?wVw|(i30eeXMr(syAxAQTC(J z1u4IkgB8PaD?6I@bqaRBrhT2{4-vgupFDTDtCx9d|D}rhUB&MEvJbO-t6bk4&t48( z2$N}bPFI4}+O3z{4)j`~kC-ja3cyKrT9jExk`Fqa(_8B`i6P*p4<92**< zvO=o9=F3RPv8#1JaLs(QcyC_Y5};?JYJ89-(kmA+608uDjFWOBEmD_BjxCPxOOn;VG^Gq%c7wMeDDEBFpAM^)b#E2)lL2( z+TqJ60_a-ywHV+W%!=L3!!{MfsT2GI2viytfJ7QNa7xg8P%^}57`2|g*eYF*ZR^!N zS}zsSP5vP&3h!mGs;)AdXuIDRLW=HrjE= zBpBNF{;iw*VJc+y_Zhr%{tNI@nw6f~Pnnn9yW(8*C~(UamUVur z>JOA_n$f*k)L-L_|0_fFRUaH3GgJeiEI101Le%KK(4ZM%Tzl;#(JNj{!*7QdEfY$B zDoq`gRx2h&ij;b3GtL6xeba!t$seXMo^##8`ZBN83uhDItST8cix*n4%%;g->r>P+ zE#S=$Zgii!h0O1#V^l8w(?ek_gA>67$D(wCDd*5xvQ#D$Wg6O8xj??aS^AEDYgw$A82rFR}shc|plF-8h#qu7ubFfVdP z#~htiEK=JS$+w$)r_RV|8b6oT7qe%rE?Vn6ar~y0#`=`0dXI@xkH*v4HA(NpNjZy6 zuaJ6L8961HZ(K9+aJ(Z|`sjMorv%g~4qW6e2$mQw2-6~Ir&W%3->ysC<04Bj5`pxD z2Wd$15jZv8F^A*w$ZbnMze5gx*cg9yGpNUjHgK7=6vQ(jH6=WHRHr5ww7raQjsQ?& z60RFGL#IK$+pV9s+6S8`Wjs#>FRjh+`iio>@z+ zqJmL^R;y>IMy01wCkR4htm@k}scf`+rdIv*7@9t!4-gaxK;K))06J=jE@~H0V{$Lo zH2qJn|9|%0{kv@=OBbD=`>*i$+_k2=S0|||)U(ed_dp~hVGI!r2wHaEb(dE?6V2F` zN0O7yIqUxKw+f^v$rcIFuQCdoBIKzfLVGetEdn*YDjYcmjiGnMKgR*neS9U<3Nf6S%xZ+?^Z4 ztMj*)X(652|GL~vqwFSFt{&^A)Nd|#ZS=cW?N@=WqrE0U;mi_E(~#Lz!|0qQDljiM zp1>siRPU|_m!JLgI)8+5bSZEr`_ysSLUAHv+J#Ea{+y;RDYe6u<~tQpI_Y?!2G!n8?g>7P?brg86%pd z>~SVI6_`p%^tGM;fTXH@tUSh1*Hexq){L_>pc!$eC{rw05jTN%to&&?ZI6dqcyB#N z(jlyfwb3ogtQCk`8tpPd%x53lhO_tbA8FwUSonu-;n!!ji>r&Im_O*y7Cf5Y!P;M* zuNr2p40n8WYRY&1_NOk5_xiBo=G(arOxd>=7ireo`l{jl^%dCpkGAt6WQ1X%1dWb? zi$Bx4%re8RV8XeNK7Z)H{4P6x?#{xQcMsKouW#>5S02F>*ju6Y>+j(5N?&cp6m@yA z-koidW3LCo&d#s=ZR2&GBJOX_FINL_;*0G|uP^Sq@}GbG*!(I@~g<@ zH&5!*;riGGFnCw<;3MR ztv@J&g45vGj1ulV^Oj0N0%ej~&5?J+M0>Hq#dbvtlb`kLpEhBo0f(&;v7k`MjPZyI zqLfb=KnfABg9#riYWpw0!`RLBn+IE0(A^shpZJ=FPrT{AlCDGEO@{9uZ~6oco>*i( zbv!sMI2M+0u4KkC5u(m`{6lx6!`mZA%YzvYfo8}nM7<1(xXeY7CNgB~$F@iAz5EUf z(Rl6B5$^*v64$r)rRC7YIhclx9=eEM!Z)3&*)53Hpndl73KV5==X9A4R(mIq;2BdU z?y1T#oTU=R%WK{YZ*LsMOMHL4mO+@Oj>#Cyz!0@j*dX<>YrOyRJJ$HZzg!{sKo|Mu z{(gsEnTHqWul}&JW&WriJ^|mJ|6yTYe{_fte%k8PjTQLy=QI0r+G{T2Q_-z{e~izD z_$dx}rAQ7eCw_UCF_@OevZrf{MDQD*Z%d@-;#b_8M|asZdKcV zspe*08bne2LwZ5A4@zg!Izz1|lqjYj|8U`Vknh7{c!(oSJeGo`-fC7FA~Cg@$~+;$ z^2c{p_lFka_WzWROF`w+p80YnrohPetzUYMPYw8F4{*%#aU)YeFqU zIz+cwdByp=rs-Zov8QS37bLyLaDZu2On9x0(iRIDuZn0EjLd>SnMQ_*k2FpFm)~KU zT5VR{%pPj7@68Q<=|JMDn-~<5! zv)7mYB0ZB{ziH|A+0#CvX)s1vBc%0QGhqW_nX@vBzXVfVN3%7_KFACyOh_8E$_z4D zD%l~(1}wD~M8uyQy}6_`yXKY4*JmH`gIsFjn2uD1qYjzCnRX=02nn19?n7tq4z~QP zK@&F|qXHR=Nv3ILl?>Vj%PdXJFiG~&6F2%UzuVG1ahw4+>osLMJj@sIbLJ|-#lszZ0| zE4=YJUE8AdG3a#)YUeKfdX|juZM<&hhjj&auig1~7v7ye`uXhg>ipujq=UK) zu~nDZZr)CK`?@m)pS^>k;30TTRLV1z8PeXkz==jkGp~?)+}+1;9|s9+QCz>)vv_5W zg7rvdip4)D5g*&fzW?$&%)|03$Omd3(ye`Izs9}+Yp~hx@0bAp+McJ_@1|$!8mhbg z&ayp}*FB&A_UJr$H@}`;`bU+%I(v=3R5$40t?&YKBBSRKgyu|S4qHJPqTUmfQYjL< zh9^^!C_1ns4rjt^sWt#9v(nIC~<+`&R1EVT$Qj+snzYh0RY zuL32}{A>^hlk<@#rwh*h8u45inCr@z-8Lq@X*Ieh6=zWqB$97>Nwe}hI!XXkglgKb;<4R|abN{hra{ZUzW>u1p`4G)X zx~~tjBkKh`<~6%a;B{+OUtXm!NIre|NCw9S-Q0D)uY#u$+*t1vG3|PUd2Ux z_U2_O>G;LJ>>?RmmR*WwL~rM6b#PNPrZw}S9ZkEb~U!^ZMy2C_~}yo zByuLh3XGZ6DKWWMbT(>zgn|p~r&-p8T_VS$%aeY}EzZlc~aC7$h`bTemW-@B& zv!$OC?V(Qn?ccsWyXwr}rQbjtFKMH%7_W5oYpR8@`sK@2+v~j=7oi{|Gnx>IS>}}s z+y%j{Mj5v#ioPp`Ii9LuXB+@l3;3W{9z`V$joFilSl=Y25bcJ_y_;m zz58R{zvne}(dMVDg7hiQS3L<6Mc%BxfSZ@!1v0_-`6o<&7@~js0&wp6Go;8kw+=Z= zRE7g5UZpZ9W1SQzxX?ND=|}t$xt^Bf@YtRTo@c}w!f{F|(3XT?gs@Ct%jrkwFZ5o1 z`(}52sQeH&y!A2omoJO}kvsKivgDcM7O~!Js2ekqmHpGDo~@TH-Te@HC3Do6+X86L+|Cct@QtWe*UU_ zJ=Xqh*LVL#Ex|?7gJ25&5wY+3W1hdhDSeFVJ^nwc&Fe&O6OBdJf+mX6|GlyfH~2kz zbAFcc&tB?_pQ0*VsnI9^?c0}nC2pg3-n{v}VQh$2;Drtesza$S?TkGFk z-MIT7Wag5i*4ehfrtMMp^R@-mtguQTM+C#^kY7kGqxs-z)}uq>qdTJaUVhg~kM?lP z@}s+b&>z2-{y2~Df4l&>jH}}1SD--p_uSR)@^uK1e!cW@{ULfU|Dk4yfLQ_w@<)>( z`&znBtU>y%$Hz5%>b?A~#onGj)OFmRe_?fzr~u+(wd8KEwcV0pgW9#Cc+g5>&p^qL zWF#$dz&u{d8KVQ`nPZB?e^W;d%RV|8srT~Rtjnt1$$Z`6WZg&e4{L1hF*5hw;O}*| z@<;4^^uYTbt!5B?I$ibNOrt1){A>SW#NL+^*lA)@Rqv`~BBAe{y8AFl^kr9WOlhI?CLf6`*tyRjD>(#L#VA`7Sq5p%Pg1Cwo1i5 z(p>jnew(?DTTg1tetxl@Z}*Ta_Ph56QgTlz`FnowAFuxY_b2|h&a$n?6I@*G9YIJ9 zkwF!IN>zM&B5AbhtCXtMGJ97UpRIK6S`M%4u~#Jt-C&Hnm%HA`G zdw*Ovq~6PK+r{n-6n{uN*qs}L5!QdCeHXT`KZd)ts*Jok`^B$^s($<4tk(4wa{K9z z-PgwET*Yk&duIc3EE9%M;iSf1D6FV69GUAOvWxYXv1xX(XT%Y4Y8X!4M71FtGEBIYY4qdA9TN3ke)kU8q}BIe zx53+Y2YVsxg|HWX8dolT%x_>vgdOoic0}TXM2K;$5s90XMFb(~vdkmPJ!2o+A-DhX zTX)1;Ba+vnr61U)c;5{^sJ!ss!y4*aQ^-4nf4emfH03mWebYYoEfwhC|B zrB5*B!)xGsM_|8==u zn*A1Zh4sIF^G#RB(v9o;=9~CF?cBKVMvb-qll&zl*ovT#f0&P4~i`EAYeYxDZ^)zzE7fA`(5zyA8IJOAfzKl#_+o?ra*U6)zW z-E+Lk*{h%4x$>jS3;X@!>o;8f^3&s0=eO@4V?-l}K5_K>#~FScvA){8GJVtp2>w=n zOHjP~)#ruusk{PCaqCjTJ6hK z>%sr}abucaL}T;~`4-b}@po~b>MX~1?_2N#ed)hhwRyPgEZeZ9!Rcy^3(i(cgslFJ zvy8_F@2-Es2+98C5&Dwr|IN>5J8vbvEQE)*{{Q`7r}dR0*EZk%GhGa) zcd!5Y&DE{9e(SDWl0n^1{O7BeuP^UxpzF(ErPS)(-D~6i6#sbTui};)U;B;!@3&{a zeE)c|+V8(D})i|Fn_;=NGqLH(l+_>n-`+cl>hZe|>X)adqnrt9{=2U(T%mru)a= zqTq`F>6hPJTKzH_KJN@?eM~uJu=l^_s?T4fv5uM`yjL1YM{ioNDuV22tVCVJz z{So?>`B$rVJ=%P<_4`(S*9|GsYu19a^ILAev^zY0{KLwyubr0enk(tN@n6;+RQ%&w zI^J<)R$AJ>c8`AUl;SNVou0TYjUU}z467Fnpvx=&`mNJf`U9Aj-n!S@e)!XOe|_}7 zUdF{2Df;M@{^_;9`uqR=&#Uj>UcCOhxjOs#@7MpRb!4{rNAC{!c_Zt?`riY5)9h z|Ms`80(Sl1f4hv7vp;|P=I1y6_P2jqbpQCbzx>ZX{eSWIt&jRm`Ud{`-L2carp7CM z_WGOG`j>>kyG~K+mcOC++67sCjVo5Z_wYKZbmtB0$KDeIcMVednHzH5e1z3y-~9~N z&f4ST(cQF^>ax?LHGb)@)-G&xP1lm6>mxPH*GwO7?R&lV_$vH<_S(LD>#qCGoW1_p zUz}ZSx>#KY67R&F+}TB3Rp%GKU5Bn7nV;!7Yd^%r_4d`HU-Zkj{?VVWJ^r)TpXg@)aveB%_rrXW zt8csbcdJ0n#a66(;W;j+(_%JSeD>o~Ig41eK&R~pE!uoG&6_C@YCECKZ&&^@zg&&Q zHb4A%6&_A9`q5vz=aS)Eb?Exbqt%lS1-|>DzUcs?3$bnjzjrbI_z(F%w6UHD>Vv>2 zW0nh}wbL4Np>gm`i^o4${kn|%|Hake#rdm~vsZo^l~THu_1E*`^<$6zdU^i#!d`zh zUoVUUy4QUQHc#@VXkQdhN4$yb0_H!KC-VhZ!#@5js(KFmxeu7ODJLxusE0s{_IXvj zIH>B$6QI#Hc*@z+a#0>s1<+{_ovLy+7N|aj$g)xkLWl@f`Vi9KKEy4w5ZY4v0G*GGT#e;K`uvgfZ}>DTUw|E=>0k^}JHS1Y~ku1a3S;EA9pNjZ(T-+k<^v+`s zjWAqO*f9qwY90*JiWAH!LJ|e56jDJ^ z!!05>Tf;kx{>}Wt|1$ac?4|2KPSvN6UdM+)=e+|d*4`>Zh4(sejJb?|^FAPlwazp` zYe?(2S3ubh!IuS$m{HzhVV#JGTE`LA5pyqzb2Q>R@Bs5~k2)52k)@P#qhJ5@_NBfU z#kuDFJ5)KFmJ{^iBwsv%jePq?-ob>&4bu)}2oPupfl^`~(B~dpCiTg@UX&@Fsy!|z zz@%O#-9-%YQ0~WQ*5=VeZGcXFbeiUiW8lzzz?At>J)TMfWw!R;n#gEJK=m;tV`e}5HR8^k>lXl=U zFQ1*{bKp}ipV}rbkB%X3v>l)F3D~7x9<{}@_OJ$T|9)^FXw*lb#h8w-KS|k}LChQB zg%ws?Bp4MMNryO*2xp<|TKwki)rr6Q`P|(~dMe*}^wD3_S91jwMYrJkF?B}k3X0M& zr1G679(9e=Mp<6;`y}^eD)2Pjh+FRw@sc~C1B+xQNMnWF;~)OZ|29u8a&PhciT@2! z`-Y&KIyHM`q7_jZM_`E#S^Ad{rSh!Gxw8^tb3y`QjcTw^#JJq`6lX- zv#ZZYEI~zt2?>(%XbHWw+Br%&i-MG;$zZ8p?_~C3QB;%Te0G$YG+r0#{N^veBCg#X za`KtEhJDa9Q`9gSRk{d{=*&2ZFwZo}Xxu_B{F|5B`s4G9v;Tem`bxiC*o*U*FAwy^ zigcTQKKkqB^R_S!!VIG;h_Axfe} z&pcvMaGP2qFp9nQ(fxDUB&1Tu%3B*{bMwGh3(Oaj7kQVTev(6Z`L3AH3aDwlJgACE zRYDiHd+|9et7-{nX}vs}6{pauU<)>FegFj8O`vLioWGdW-Jigr`{AkQ`HxFDjvd0J zw#jFUdEOL|z;+Kr%eFqr+j4SPSJM|O*9};;n^kuq1GUr-(&Bi;Sz5zbHOVK(#fz@{ zEwJf+aHjQSc>;w;!Y9D-Ykmtg_KOazzjIHn`3LV@<=k^ z(pGeu{Gglwl?GAiAg|gHgVl@A0^>A{QIqFQSyjNP?Fdba!+cpmTyq$o zihR))%ch=#eAgn-mAE*%#KO#vM#w&L?2^)Vzs z4dl{E4w`8zICXIXG#W&sh?L|Un6wR_X1Q3DIUL~)W7FceJZ%4?TmYZ8BJ}*^pa#7( zj85%w4w1|4=q#Hj<%qlC@5iO5Wzo*^lLF3F?!jpOVtO!v&hI@;n!i}KhZ5-X9x%&h zQ8#(hKpt-&g*v2Wb#pS}K^;BlG{w^*T5O=xP&%FFC1i!ahs||9cs);}r{EN25TV`y zZP7ljiUnkg55X$6_Iy$04J42EaI82yeDUKlugdoMi+t9W@o)KJ#Oa8GfCBTiFSV-4 z^hH{lC*?nYT)Uxyk*IqyD{hBixOQ@@u3k)F*hLScI*=+Tp1K#A5#ut9KB;m#pLEJI zO^;3UWq?ULKq{Wiq07@Aq-yI?Pny{Y(X?F5tNeNA@g3AqN;QO5w=o;}SjWLQE!t?Z z@&@SDPp`u&KYCFWPm5}{JUJ*D$UxWuQ#mX0!?tKP$^k6cV2W+9TL}tq|9ZeWDAK$m zVA=;UZ4Dk!Z4g>>I5<6ZC^7x}bk619L(!w9v~U84>q_k+~6w*giS zVAU+TKjlA)7bnZAE$3AUZ8+XXsf?sbNA%_F=tU<=pO%aA0OkYtkn0X?735*<1ZdQ` zAN%vEt;fCwx5IQ&yeMa*Zv8%xPZ6loayG3`!R5OLoiqox^ZB0U)pG431EY2`Dq*&Q z3sOaQ!80cJwK@``wZEmuqgM7T4-q4-N?RC;L`(l!&6YiEVGN=j^%rrdZbJ>e7! zhaY#}#nTs6T|YUf+v9XIx4wvnGS;dWC!TSY`S=f~31&1yK^jGQhOE&pv*0C9VfT6G)Rb$IjI9t&dZ=ZWiGx< zN=B5t#;7S$fy&oMst?=%t9;Qe+G1YLmQhzV#k7W9@I8#8GJjFbrZ3v(^8yl%hw_f>M|W&YRUxHBtqqMhNw~8gxf$}H#P!(X-yPUGDLf? zaYo~Q=so9*BkLSj#N1hyUn#xz5MQesSyw@WtnZcecko&)54zN~qAEsH!1F2AphJiX z$&H}S2+3sNoDv&1J}ROTrB*A7tamI!!c(5sqxG0GCj}Nd!;W6B!6z@)jYb~6-Ri}R z2W)l71d9eSu)7b;v83#ZWiRGP(k1?O&%*Mx<5`-WtutxSB zs20Gl1W*SrbXOLKoSXwBz8C$ zp^R5Du2ZHtMUiXSE!@gxGG0*@AF{;gEIt~9jdFqo7EKsaj>dIr?7KL@rg@DVF~(4r zIj@yRMlc^#CaA>`PLkQ%o8~R#MsLqZbSDvY6ldOZByjXE5e$j^UJ*<(BX6zIY2B{= z4`fSzRCF%mZlD=A)}hRBj!ecB!YoV21h;T2PUh|NvC=CVE@g;SSr(Tk3(>)pD4@8f z8ZErx_y(rKWmPp@I2_oe15?;h5vhcw<3TH_T~r++3r<;%Z)w_UQa7`&Qqg`H@gL=? zrH)HaBgx`lxs?Lr=#g_5eJK4NP?Kfzv;dAp=#bP1MN{Poj()oJJiaEHG=ouyQjOj6 zG^^sU{YsbS7ePuG9R$|YW5j~-QCsNfH)T2tf)Imlg=IneZwx=D+9OIS5n6MCG~!&c z$gO~BhRiK7HZPx@)V*l3PPuivCNg0w%Zh*W$Qt+OIX4;LB)LjWvpj6)EEpku(U)l?xJQ z)X6&%Y;lr<#=kLRDjKawDWtJa>8(D#kTXh6bc?j4w>Z|0TjL8Uyzo?D6E{ZVG|L#q z@%5}bhSTo@1seYvIv0>vL205SvdqU_({drP(wqjI5q|?+wEji2YSS=MPf`fvjL)!O z5+hC=bJ$oT8B-*_<5n8f)2|e!k4Q~?GFzT>{i>khQXf7A^b_BUPbcNH%}eOF)B{sJ zFJRpCKD5El+s%cRbE%XK0flxVH z#1#jG>Lt|VIG-IA`D|9Vd8!}+Qf)^mnJJ*uKuUE@(DJqhw{HhX&}M#LTCJ)bfm1sX zdQ!l&#G!=hW>N#6wgc4W2aC3zgE}9;sCpK?ycvW#?}umQwyZi70GE2WwDMpk$HfE& zVC(=0*ffYuRq?E7#;r7W;Zr;Zjd^~IqP(k4g!x!@R7P4LEh%@Ts2wkB0E*G;d}r^8{4d0Z~&N70-ZC zI~mm$ljB)*Opcz9e(3cejLIayPaB9j?L({^(54fh*D$1-A{A!<$##>hJSn;vxNz=r zA3D$HMH=)}6*&;8he!#ka@I!007SYUokiP}vm@ZqP981i)4VOZ(z;>>QfeDM$0;OU zLsr2sHm&C4LKtd0LQjEDL-=%Bqyx<;2`WhC-3HFcPcru+(xNyiflT)T)a3JS&K?kH zH<1!fvoYtW?uMqz)>+JRsLUKfq|>?qTXZip{E{n3dGusGvYF4s6*ajC#}*JOHT-4-9(^bwr(n! zKIor+9~>^<=-1bey?Uul{24!7p8fP%zx?;_(sLg{t-~lsUre4o!x$2!dd*e`)=Az@ zjwks7)cd{g%4lPJB*bPr=ygr2<27|b?Zo)niq&~@5PGvI|1f$3h$^=H4Gs*^Or4T|=t+mtC z8k1qinasSCNFwT~QPet$NcMPxeMixUGL*BsrPM79>hQMVlgjU4CQCn$);PuGQOu^r z%AiA$`F5aE5q`>Gi7T&Y(#aLLb^|H4SRMeowqdlH-8QL;NG{0P>}Aykv7@4e&KLtg z8uyT-5200uSbcc7C?J+F1S)9avk$xAV6Pver{$tN0IM~eSBtUR`F%hdxoQ7ka)H$9 zK?wq)d(vv`c76v;^La6Y2>TF1Ef(d`Y;rPvQalGDy$?^CW|rc`PeD%gF)2Yc$!C)S zdbe&vr#_jdL9jrj0aQx!m*bzuqW6BpyK>^t#E9fwEl3-8S+*!Frs zf^g;@#MQvD%ADVBdG5lqy{&c~i8|S-+1_saHI3=zd(FhyF1BM4VPV6Cnq4 z3qm7rDY*}st|!ZlDgOOM%A=^anlmprHOe6$NH8RGgqZk>_#gB5<~wMLqjJ#}O))J` z@}tzO`QemEt#2^Zbw-xuknp=5rOo6*DC`_Us`YR_*aYvvr>^Q{Q$nzymq_)j?FNHQ z59?|=gZUm?Kzdp6@#T#qVaUNKud$EDutwT7poVAY2mXj+)QxDBFt zI*+Rl$6XyZlvL%SP1Ry;N(ZZF)4X{O!-uzFRZo(ZN~ygtF?|@j))6Pz1AEYc+}?fY z1V!Wn@BvB9u?pT> z#p3HJWyJ7|NvE>a!Fh2qZ=a{KOlWMZg{`nwE=sm3Jwv=>!Yf(QQR))OkLG z8P%NRE#!`GN9V98AfnmFqNXSo%L6#Y+k($g(dLs$u~?J`WmUEi8tCCu!YgicDL$81 zUB?h;H9ioi#X;QmARl;df-NA#IS8ypQRUVAI0uI9!LZF~U;BJs&W?a%_rg_mX~Sb% zh+q83FBs<}w$7)5Swg7iK?-fX(Ep%KoU%HQFTSq6SoFu0Z>{hSc zN@X&Oc|J*Xj2!_PxFzW@oDQ4( z1mdB45DPrQJy6Q4)BHKq(+s57ylBcA^3%5iw1{&33B*YU(g{uhcjI$fPTOM$D15dK zraV|~1hSF^nQ=m_(pWIejUimHO+aDOU8tK@QN4^>gEeM9rWc=+8mg{_P-!;J+bUnQAj&_jD3=5| z=@`$f$*>B663>kCS|H_QrrhIO-#`~ro<1;5Uewj7*Whk&p0!P$FD7Gd*S!ao5?ZPG z8+13{g3w{vEZX()Fw|lVBGqA(yFX;nNepyYTfJoCJPt!@~X zX6=v5eAJa|I{`Y%=kt0|LM(F-osP?+<0`eOK3bNb#kXKow~Kk*rXFQaAtQJouWn-o ziROb~T1Gk5fH>cWUyE{fG;)V#H%yC3Q&-hN4pH-dPL-*?syr;=P;VPPRgof*W3HOr zgH0zzcK|x_)~35L>Pi}cO#Ni)fXWk-I-w46sckT=Is~p0nSfbCn6-lJX0 zI{xh1;sKv}`Bdf4>t#F1C&xgh`vEFuM^FIs`Ep%3VIFzwwId!oWNhY<^}!P_6{Gs` z&G+!^AymC|w^8L$7UVE1bclU|SiuftHdSFsa6SV%4Wd&wiyk<&4W42)g#($r2o(`a zgLW3HurM&I7pJPKPazXwPj)Sq^LgF01++fc3e~N!3y^CNxmJjc-ro1(l)6yDzPKm3 zB52)cL!ehLQqgFEH#m${&{}E-Kqq-Q+jPtYLiG~rByWz&SxOR`L9xuIi|P?cjFlOp zS#Vm&OfW7LVI=UD)*i}u!5P@y;a3w3)K2_)N;lVZ@mv9FlB6{mlMt) ztmAXS3iA%NPV&W*he<3bKkkL7Ntv>+3l1dI0?gDWJl6`AV&joBmUu%AihH39$WW=Q zuu{HbrWVC4`AAQTuhLe1@l!#C(?2zLNIE8vN9lwRDHQ@I2qXIrdMQ5kH3IiVu*x{2 zm?Fin_KG>d0>PGM)>)_Gu9&@pRoBn);q8dez>VIGP`&E>mh=!LGkm6{sF{wURM;%O z&c;8DSAjdHB;|xDddqCp)AI27A3vMnq+TwHX?;4IZx*LzJ2?iH4P)8qaZyyGUz$BQJuQl7UDFnbo9;ocWwc)Nd;xN6 z7d}-1oEpxlS$+eUfxN2cNm>D$cA*3P_Vy-J31vB307}CimYoUjX43$tdO6kP zv!h~MGY!7X$-MNziTE5d@i+6_QETG6oKTKvc9VY96#2BCRnH&TN%QTqi0jy19#Qz!?Z@{AXNqct@>%T#%nRI!3rNns>QhdmEo*v^Mh2C1F`fS0Ihocf{hx) zCP+uvfexe}4B=1{|2yV@?*MpUd)tRh5O3OwPcb>3)m44;9C}-Qro?}0EV2$Wtb|gE z7|Rf5k`c?C2`2c*H{V5K={S4wImZbX8FL{c*m9#3wNeTjwBy)2dIzLy2k1f7N2D9; zYHz?$-3!lY-SrR{bqj&vY+BBy^`x%G-a}_MMvEdfg#kA8vgv7AoECKjG};EvDX?e= zi*E9rpa=UdpjLGY2RS5e_Ot5rxNM7#Q{%4i9thH+{0CI;4PaH>Oo30^;c4>uDk=`G zUxx8%>|Jtt(dixrlNK>hy+!RMiuxEFMO$XZ7LX0y-qz56(a8`UE)C z!=bvZ(_j(kAoL06)mZLy#-u|gK8E7!G9)oJ#+vx5ARcd!pVx~A6&-K#gTs2Vgl+D9 zY>vxm(M|9Hi?o|W2`FePzXPB81RS|O4n>TnjU1`n;G`Z} zK&7EnO71QYX)829q#;B~5x8g9(+E-#%ZR+VeOMK7O1+My1kwAXE=XkTJdwrJm;163WZBLUdHL&;fBMpCVXrNY{f;-0*-)!?<*u z=JSmjuz?tjyY_xhR@KWkd3xiv>isYQr}p5~ayErt_uKGUfP@-OrUgi-UVK184dxO^ zsDT*4cDDzsKtc^77I110PJx8lhR>pCT4+c&fJuukG@c4tfJg74Qx(sO<^{yY2M{Uk zZIgNqnNM4wSptIwFlbs-MGLxn3pn*DRHqCfQN#%n=XwBw!wc6$;ElEwSb0Xhw(Q%V!RlQ#~;+KSWYA=-miFz8?h zI8Bkx=ine^0FPGf)PP4jz=6oqK2%zQblL*Xf7B)LXb6w$S)@{wnn0xc@mb8P5)M=b zFex<+Uqn?2fy?{x8L_S2gGI|ZM3{EM0|BPNbgJ`dmsU}g2Tk5UApAavPK#!egZI|Q zrIWllDrcjwyBG@4$h$Uv5UHT1Uj1noB^n?hi2p5EBkFURjCqIn=%9}2*RE_6zLT__ac*8XyPSS8F?SC=I9_VPx2$+Tf)y{#W1%{ z3Cf-EmLR6$bD4G-qmKH!_^m1*#>q5*XEexstOeE9Z zBN7;*&RfB(G#OQxA&D5JD7ZT$J1RyyrkXm#ghX69M!2_LTBMajQgWrE{J*30uQUF> z-qrZUS%!n8S(f2QD26abmWL>5bu?y-3q$V6joFB&p<_=O3y2wxm?cI_Vti)e{>gl% zjiw`t4oP1|Oi-+hro?l?IkxddIuI5mhS4@N;f`R9_#fnxCl8WX z>Bd&mV2Ua5>r+~IBTS^13dVRM4Cllk?+n4(5=X*2{95&3dT{)DesWM(D}Na>YVJX) zep*cOrfAFAqMR0KfI0;5dx#YwyS7(de&nbVw)emZ(*Js?wXE8*m>w1RbPB^hc0)9> z)3cA`)Vx|R#Yn6opFknk0GwuUnB7aRS$V~JQXMB z6|}?~LZW$oRDclQ2@TXt>_a4|GU)*c+_@oCf@-cFcwn6kr&E)|7Pk``Akt7GLEnU} zzyOJck!S%OI`6}!E@$mC=r6SglM-Uj0kIxht)R&d+X4n$_cCe))U2Na8xd$gY>nQMShveTkNUx(i?A?$Rr7rQ>ri~js`9Xz6;e?T}Aq#mMThxB44Ds z#Z@q`m_qZ8-B3;I$?~L_L7u@dW_4rcj`Jp;Bx{oz?gO>%!D?RRlax^htm_B z51iCX1!&YqqpnmD4)(TU6U8=66W@zX5wUWSa`L0Tgrd%SVQTZqq*yGCDNffX(On7X=s8iqyCR;}28TRkwX z)I|GyUe1nyV*62SM0@0yId?Ejh)f}=cwsg zVioACK@fp<-;-B|O@0DS;ckq^?mB+}t=5p`)oK15GK{xlH7}a7hQ0~|nYD;={RvF$ z-UZNeuv0_Xw9cXfGTnpEao#MZ#bLgzAaP*;o$6^Z&yPSyZ9(VcB%e)-rw~CH$fjA_ z)K#|zyHO1g^!$X`{MKbuBhCVn4l9F^)!b^Wg>;!0auf8NESn}0c3v+YSl~0>*aGtP z?#E_YPr5c8&`xLok-CWkbyY8cOuO(|ojnzvQH zXklc`R*33q)C+D8GCgaXJYP%-=yA3KplLB~gog9!uxu9XIzkTiX)8+gWC`Jd0c=XM z9G}fogaz_gwjy*`g?rJd^5^xk zo#c~a=mh(@k`swCib#sNCD=QIvCoL38DWCcV6E6BCwAj&#yZP^XGj@hqzReCnZ<}= zmtkudwLS~p+(oI%Yc+ZaORk22swqALY~r0tH*coUuFHz9@s9p zy0@x0Y=K&zj#>^|Z+Rpa(vC9gg%jRsC$u$EXNJ8)t&@E5Y5`{I6Z(PFAc2J>j5({A!Ac7&gV!eRj@XcQ%+#WorJ1=;i?7mFeeqZW@*YbW zs0m&WsRCs*D5V2dI7$kVy@OtIG-qRtIAE-pqZ~`D8IMGx5^<*}Q!H2!iTDmyU1Na< zwD%Rh5oafmd5G+C&`Iedw1}-Yibb zc5)0X8^*HJRCdp zm`%&s5!k8wfjZ9PjyUQLyL+&zUUWUwM|E_+C!d<=;I3+upd@}6sS;u*`O&OAOi4zt z`|ZN%w8`hdtAV_#=SeRBo9;ztIh(Z0Zn<^c;UE#~GX?xK5}1ihW``?yr*RoS8Uad(Ey`16uWWHIsZ7` zb=U#zK7@8rq>a0bZXf2&n_@AttjaHw1dhCNK{zcl<(W~Qc;`sQxfb3Ub&~|X$e$Kn zx6%i8(zq)9h3@P_0BW0j@&slH4x&{zLw($Rpn3qRfJOsoH1Ywleds`=nV~#_W5WUP z6f+o)v&N8hgvHeHhgZFrC*`Ie~hu`yqlUHpBUJdR(?e zw+2U@K{gPhQPux_5>~-5w|Q1w2HPh)Qo(2GtN z(j565sr~pA<$3gJpxk9BNL4+70TILK^{mU(1jla&LiOR{0@8m6aOpX4sfSDdsOu9T zQV)@i>(g#*4N&NPY~VC_0D%%nO)-g%9Z=|gbjF@tIG9QG9Eh|PoMqbDkfEtH+cnl2EC+;U>y}L9N_JSr>-E| zcOaD}`2xb?JK#A^$hy{VDJ$VIz zs2+GA5H*xa5QyqS2m(?2@CgD@z3@OFYF|=8AgUiD2t@5gDF{Su1L!oLpXB9w900Vq zAHb#VaeV@wTn~v>C{4@7yvjiv_24t|ip0Gr1=X87;c1FV3v?Pzr_>n>$g~3-Ak!c+ z6-`@C@@i7dQfrk_9~SIDX>~N0;=9v&GU{{8fxJrHSL5=V*NYN@;ad@kl!6HO0461z zKs@!J0~_96bOJfP9iVyMv|yWtk?9&MAXE=X&8YKr_GDBC7Eo#jN+A z$fx}X1-5BBLR~M`(fhtbDb?ijNxg)EsC%$UeZ@;)P!EF=O7#->^DZ(^UgT5Q(RPyO z$qQ&da4#&=qAFSlbN7&ET0SjdB-DMtK;Q6Q@_>H67nQ{%pM&A);m)X2xwgYn&K3m> zQt2bls6+ePVL2&gOQ6nf>dYX;|2|meO&ik+| zmIrNWM*{TOO&=)nzYi5CD(d6Sc&yH+sJzxx8%l%YT4aKHgSkUOaFR-{t*}V5z%*5g zDB>`ZSZE_THHPD06(h!^%Im6l_9Ex<$=6tR-A9^F4w#~jTVhDilu&C7wbGmTQl(W; z8NC7QApdc>_zEHWGPL3r8|*V>log(!ptUlB666^5LbDA@(;Qe8@xp>r!IaE`^i)Y^ zHOE{C<$PwmbT_P;Pph$ViU;p0ikxCb6NxCb)~UDxEp~=Vcf+X#P%6Sjq9G^PQR*_` zx!2AMNo8D<4)KgpbOYDPXc=W}G}+cmBv7E%WitMkaIE4>nL+plq8SEGMZhc<8DT;O zY*}QICV~m)oROJw!Z3FO*nG4*pXL#sAca?ms|;ZrUy>2&GZc7c#SKKyPv&i%j&y-o z8Zj)fQ(S6eGLM6|Qc13y!_*U_{RXvVHdbO0n;}C;2rRivB1mh4;@%*Od|Y~b1JP5U zRKm;g%wX(c04KYf|V0cngPB~+509zc7l~i7;s5`SjkabRY?G+IMr(SQ? z1nub!M(yMnSe001dGv{C$btzB5rZU(vONnlL=VtwwLz>rXp3iK<(0G=>*&?Qr-`yw zJ8MyjQ8^|kQ7UXus>=2saRH_d^FS`$`7n;{j#dTEJuT3e;4C*D#-i08t4EZGfK zvqKIB?%GDJEp`bL^C4{W|m~kqD)3{k#@yfczv}J;>$!GA}G{j?V@6j zuc692Dgup$-WZDPjecL$%T(q8+|tS->8L^&VI_HdfzaA;p>Z$*vm1wcvKVcEG)QHb zM9y<3wK5^PHkg=zX?&DQwK?wsLUqbL`hW=2XwEgYGH{Ot@&PHMeHMM7jlVN34-ZEx ztq7M~da0y#Qo6tqazZ0(wD1n0O*m$HlEV(z9pfl3v6MJksf;-;mC(**##@sirC7KD ztQ@VGiqwgYAY}sasIKBV%oO)g!fPIIl%pHprkH>)*qt^D#+k7;L=I6-h4czbB)JtV zIN~;ou!xqbOXVJ^t@6SNE)g{m7iy#m*kqWQU>Q+@Y?fXT?Rf#r>b5{`;eETc}DSh(x95SL&S3_>8oqi?8LCXAv)ORm3$;x2t-8N71v}`@YfiX$6sY8N!Dc*gZ$pI3Fce)N?1&0l7%w;6`j16D8?C_-HX3#2lyM;-4 zfP_gd4OPw(YNB`#R(a`-wpdz!1JM$K?j5I;U{+xo2qm1;xc?EBGG$1RQrm1(epxN^ z(S{i`vW&)cMsbELj#4Y*oC_T=C%rC?K5o z#tF`3hLoU+Q%kMB0j;f4f4^~3%b^TmmKl;Mf-FbDrFtgKGmVuZ+TEb^tUQ7KR|&F= zGQ&;gEsKVoXNrcD(M`N{Mn*Alvl@#wpV#BfZQw3SPUV@8S`-PQMbr-ww$!XhBXW}j za&l5W%R#w!QTHqbjsxOaGMgz&Q-y#e(ua&ucS}Ol(`7YUp{1;2MoCP9N5NnkUxlnp zXg`oj_tKa+r{)w1^H)I*l_!Gi`1%xlf*dorry*`Xw4SJSt3D zhaoi#vxr7&;gH$X=i(ZqS$WdbP({≫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