diff -Nru qscintilla2-2.8/debian/changelog qscintilla2-2.8.1/debian/changelog --- qscintilla2-2.8/debian/changelog 2014-02-17 05:48:07.000000000 +0000 +++ qscintilla2-2.8.1/debian/changelog 2014-03-17 23:13:05.000000000 +0000 @@ -1,9 +1,10 @@ -qscintilla2 (2.8-0ubuntu1) trusty; urgency=low +qscintilla2 (2.8.1-1) unstable; urgency=medium * New upstream release - Update library name to libqscintilla2-11 based on upstream soname change + - Refresh patches - -- Scott Kitterman Mon, 17 Feb 2014 00:29:56 -0500 + -- Scott Kitterman Mon, 17 Mar 2014 19:02:44 -0400 qscintilla2 (2.7.2-1) unstable; urgency=low diff -Nru qscintilla2-2.8/debian/patches/configure.py-objdir-support.diff qscintilla2-2.8.1/debian/patches/configure.py-objdir-support.diff --- qscintilla2-2.8/debian/patches/configure.py-objdir-support.diff 2013-11-16 21:15:18.000000000 +0000 +++ qscintilla2-2.8.1/debian/patches/configure.py-objdir-support.diff 2014-03-17 23:11:51.000000000 +0000 @@ -1,9 +1,9 @@ 02_configure.dpatch by Torsten Marek patch the configure script for the Python bindings to support object dir builds -Index: qscintilla2-2.7.2/Python/configure.py +Index: qscintilla2-2.8.1/Python/configure.py =================================================================== ---- qscintilla2-2.7.2.orig/Python/configure.py 2013-06-19 02:36:45.767513660 -0400 -+++ qscintilla2-2.7.2/Python/configure.py 2013-06-19 02:38:49.419510007 -0400 +--- qscintilla2-2.8.1.orig/Python/configure.py 2014-03-17 19:09:29.155268568 -0400 ++++ qscintilla2-2.8.1/Python/configure.py 2014-03-17 19:11:15.267265433 -0400 @@ -29,6 +29,8 @@ import glob import optparse @@ -13,16 +13,16 @@ try: import sysconfig except ImportError: -@@ -538,6 +540,8 @@ +@@ -544,6 +546,8 @@ "The QScintilla version number could not be determined by " "reading %s." % sciglobal) + return # Debian: do not check for the installed version, we're good this way. + - if not glob.glob(os.path.join(target_config.qsci_lib_dir, '*qscintilla2*')): - error("The QScintilla library could not be found in %s. If QScintilla is installed then use the --qsci-libdir argument to explicitly specify the correct directory." % target_config.qsci_lib_dir) - -@@ -621,9 +625,9 @@ + lib_dir = target_config.qsci_lib_dir + if lib_dir is None: + lib_dir = target_config.qsci_default_lib_dir +@@ -631,9 +635,9 @@ argv.append('.') if opts.pyqt_package == 'PyQt5': diff -Nru qscintilla2-2.8/debian/patches/fix-lib-install-dir.diff qscintilla2-2.8.1/debian/patches/fix-lib-install-dir.diff --- qscintilla2-2.8/debian/patches/fix-lib-install-dir.diff 2013-11-16 21:15:18.000000000 +0000 +++ qscintilla2-2.8.1/debian/patches/fix-lib-install-dir.diff 2014-03-17 23:12:20.000000000 +0000 @@ -1,10 +1,10 @@ 01_qscintilla.pro.dpatch by Torsten Marek Don't install the library directly -Index: qscintilla2-2.7.1/Qt4Qt5/qscintilla.pro +Index: qscintilla2-2.8.1/Qt4Qt5/qscintilla.pro =================================================================== ---- qscintilla2-2.7.1.orig/Qt4Qt5/qscintilla.pro 2013-03-01 16:03:05.000000000 -0500 -+++ qscintilla2-2.7.1/Qt4Qt5/qscintilla.pro 2013-03-06 13:12:40.488291304 -0500 -@@ -43,7 +43,7 @@ +--- qscintilla2-2.8.1.orig/Qt4Qt5/qscintilla.pro 2014-03-17 19:11:57.271264192 -0400 ++++ qscintilla2-2.8.1/Qt4Qt5/qscintilla.pro 2014-03-17 19:11:57.259264192 -0400 +@@ -47,7 +47,7 @@ #DEFINES += SCI_NAMESPACE # Handle both Qt v4 and v3. diff -Nru qscintilla2-2.8/debian/patches/py_conf_inc_dir.diff qscintilla2-2.8.1/debian/patches/py_conf_inc_dir.diff --- qscintilla2-2.8/debian/patches/py_conf_inc_dir.diff 2013-11-16 21:15:18.000000000 +0000 +++ qscintilla2-2.8.1/debian/patches/py_conf_inc_dir.diff 2014-03-17 23:12:47.000000000 +0000 @@ -2,10 +2,10 @@ -I/usr/include/i386-linux-gnu/python2.7 Patch by Scott Kitterman , will be sent upstream -Index: qscintilla2-2.7.2/Python/configure.py +Index: qscintilla2-2.8.1/Python/configure.py =================================================================== ---- qscintilla2-2.7.2.orig/Python/configure.py 2013-06-19 02:44:38.511499692 -0400 -+++ qscintilla2-2.7.2/Python/configure.py 2013-06-19 02:45:27.603498242 -0400 +--- qscintilla2-2.8.1.orig/Python/configure.py 2014-03-17 19:12:22.995263432 -0400 ++++ qscintilla2-2.8.1/Python/configure.py 2014-03-17 19:12:22.991263432 -0400 @@ -99,6 +99,7 @@ if hasattr(sysconfig, 'get_path'): # The modern API. @@ -22,9 +22,9 @@ self.py_lib_dir = py_config.lib_dir self.py_platform = py_config.platform self.py_sip_dir = os.path.join(py_config.data_dir, 'sip') -@@ -736,6 +738,8 @@ +@@ -743,6 +745,8 @@ + pro.write('INCLUDEPATH += %s\n' % target_config.qsci_inc_dir) - pro.write('INCLUDEPATH += %s\n' % target_config.qsci_inc_dir) pro.write('INCLUDEPATH += %s\n' % target_config.py_inc_dir) + if target_config.py_inc_dir != target_config.py_conf_inc_dir: + pro.write('INCLUDEPATH += %s\n' % target_config.py_conf_inc_dir) diff -Nru qscintilla2-2.8/designer-Qt4Qt5/designer.pro qscintilla2-2.8.1/designer-Qt4Qt5/designer.pro --- qscintilla2-2.8/designer-Qt4Qt5/designer.pro 2013-10-01 20:53:14.000000000 +0000 +++ qscintilla2-2.8.1/designer-Qt4Qt5/designer.pro 2013-12-31 16:34:56.000000000 +0000 @@ -4,7 +4,7 @@ TEMPLATE = lib TARGET = qscintillaplugin -CONFIG += release plugin +CONFIG += release plugin qscintilla2 greaterThan(QT_MAJOR_VERSION, 4) { QT += designer @@ -21,5 +21,3 @@ target.path = $$[QT_INSTALL_PLUGINS]/designer INSTALLS += target - -LIBS += -L$$[QT_INSTALL_LIBS] -lqscintilla2 diff -Nru qscintilla2-2.8/doc/html-Qt3/annotated.html qscintilla2-2.8.1/doc/html-Qt3/annotated.html --- qscintilla2-2.8/doc/html-Qt3/annotated.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/annotated.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -107,7 +107,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classes.html qscintilla2-2.8.1/doc/html-Qt3/classes.html --- qscintilla2-2.8/doc/html-Qt3/classes.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classes.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -85,7 +85,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciAbstractAPIs.html qscintilla2-2.8.1/doc/html-Qt3/classQsciAbstractAPIs.html --- qscintilla2-2.8/doc/html-Qt3/classQsciAbstractAPIs.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciAbstractAPIs.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -205,7 +205,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciAbstractAPIs-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciAbstractAPIs-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciAbstractAPIs-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciAbstractAPIs-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -66,7 +66,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciAPIs.html qscintilla2-2.8.1/doc/html-Qt3/classQsciAPIs.html --- qscintilla2-2.8/doc/html-Qt3/classQsciAPIs.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciAPIs.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -391,7 +391,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciAPIs-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciAPIs-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciAPIs-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciAPIs-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -83,7 +83,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciCommand.html qscintilla2-2.8.1/doc/html-Qt3/classQsciCommand.html --- qscintilla2-2.8/doc/html-Qt3/classQsciCommand.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciCommand.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -552,7 +552,7 @@
-

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 Key_Down, Key_Up, Key_Left, Key_Right, Key_Home, Key_End, Key_PageUp, Key_PageDown, Key_Delete, Key_Insert, Key_Escape, Key_Backspace, Key_Tab and Key_Return. Keys may be modified with any combination of SHIFT, CTRL, ALT and META.

+

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()
@@ -616,7 +616,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciCommand-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciCommand-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciCommand-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciCommand-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -167,7 +167,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciCommandSet.html qscintilla2-2.8.1/doc/html-Qt3/classQsciCommandSet.html --- qscintilla2-2.8/doc/html-Qt3/classQsciCommandSet.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciCommandSet.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -143,7 +143,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciCommandSet-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciCommandSet-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciCommandSet-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciCommandSet-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -67,7 +67,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciDocument.html qscintilla2-2.8.1/doc/html-Qt3/classQsciDocument.html --- qscintilla2-2.8/doc/html-Qt3/classQsciDocument.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciDocument.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -78,7 +78,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciDocument-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciDocument-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciDocument-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciDocument-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -64,7 +64,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerBash.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBash.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerBash.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBash.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -479,7 +479,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerBash-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBash-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerBash-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBash-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -133,7 +133,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerBatch.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBatch.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerBatch.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBatch.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -283,7 +283,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerBatch-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBatch-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerBatch-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerBatch-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -123,7 +123,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCMake.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCMake.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCMake.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCMake.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -438,7 +438,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCMake-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCMake-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCMake-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCMake-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -132,7 +132,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCPP.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCPP.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCPP.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCPP.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -820,7 +820,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCPP-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCPP-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCPP-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCPP-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -181,7 +181,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSharp.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSharp.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSharp.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSharp.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -198,7 +198,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSharp-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSharp-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSharp-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSharp-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSS.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSS.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSS.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSS.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -597,7 +597,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSS-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSS-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCSS-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCSS-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -149,7 +149,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCustom.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCustom.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCustom.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCustom.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -250,7 +250,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerCustom-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCustom-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerCustom-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerCustom-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -119,7 +119,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerD.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerD.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerD.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerD.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -567,7 +567,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerDiff.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerDiff.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerDiff.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerDiff.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -214,7 +214,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerDiff-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerDiff-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerDiff-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerDiff-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -123,7 +123,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerD-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerD-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerD-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerD-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -144,7 +144,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran77.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran77.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran77.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran77.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -450,7 +450,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran77-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran77-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran77-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran77-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -132,7 +132,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -149,7 +149,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerFortran-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerFortran-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -134,7 +134,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexer.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexer.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexer.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexer.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -1018,7 +1018,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerHTML.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerHTML.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerHTML.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerHTML.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -1106,7 +1106,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerHTML-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerHTML-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerHTML-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerHTML-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -239,7 +239,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerIDL.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerIDL.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerIDL.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerIDL.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -152,7 +152,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerIDL-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerIDL-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerIDL-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerIDL-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerJava.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJava.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerJava.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJava.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -129,7 +129,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerJava-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJava-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerJava-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJava-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerJavaScript.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJavaScript.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerJavaScript.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJavaScript.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -198,7 +198,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerJavaScript-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJavaScript-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerJavaScript-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerJavaScript-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerLua.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerLua.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerLua.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerLua.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -468,7 +468,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerLua-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerLua-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerLua-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerLua-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -137,7 +137,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerMakefile.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMakefile.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerMakefile.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMakefile.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -256,7 +256,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerMakefile-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMakefile-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerMakefile-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMakefile-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -122,7 +122,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerMatlab.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMatlab.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerMatlab.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMatlab.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -265,7 +265,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerMatlab-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMatlab-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerMatlab-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerMatlab-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -124,7 +124,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexer-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexer-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexer-members.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexer-members.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -113,7 +113,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerOctave.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerOctave.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerOctave.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerOctave.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -149,7 +149,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerOctave-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerOctave-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerOctave-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerOctave-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -126,7 +126,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPascal.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPascal.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPascal.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPascal.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -569,7 +569,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPascal-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPascal-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPascal-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPascal-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -138,7 +138,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPerl.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPerl.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPerl.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPerl.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -719,7 +719,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPerl-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPerl-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPerl-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPerl-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -166,7 +166,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPostScript.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPostScript.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPostScript.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPostScript.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -562,7 +562,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPostScript-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPostScript-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPostScript-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPostScript-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPOV.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPOV.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPOV.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPOV.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -531,7 +531,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPOV-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPOV-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPOV-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPOV-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -138,7 +138,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerProperties.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerProperties.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerProperties.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerProperties.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -423,7 +423,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerProperties-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerProperties-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerProperties-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerProperties-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -125,7 +125,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPython.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPython.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPython.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPython.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -809,7 +809,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerPython-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPython-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerPython-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerPython-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -155,7 +155,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerRuby.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerRuby.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerRuby.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerRuby.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -552,7 +552,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerRuby-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerRuby-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerRuby-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerRuby-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -150,7 +150,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerSpice.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSpice.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerSpice.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSpice.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -261,7 +261,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerSpice-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSpice-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerSpice-members.html 2013-11-08 15:31:14.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSpice-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -124,7 +124,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerSQL.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSQL.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerSQL.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSQL.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -741,7 +741,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerSQL-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSQL-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerSQL-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerSQL-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -152,7 +152,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerTCL.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTCL.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerTCL.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTCL.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -468,7 +468,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerTCL-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTCL-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerTCL-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTCL-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerTeX.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTeX.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerTeX.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTeX.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -469,7 +469,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerTeX-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTeX-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerTeX-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerTeX-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -129,7 +129,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerVerilog.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVerilog.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerVerilog.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVerilog.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -593,7 +593,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerVerilog-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVerilog-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerVerilog-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVerilog-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerVHDL.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVHDL.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerVHDL.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVHDL.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -598,7 +598,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerVHDL-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVHDL-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerVHDL-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerVHDL-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -140,7 +140,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerXML.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerXML.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerXML.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerXML.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -323,7 +323,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerXML-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerXML-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerXML-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerXML-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -243,7 +243,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerYAML.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerYAML.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerYAML.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerYAML.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -419,7 +419,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciLexerYAML-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerYAML-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciLexerYAML-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciLexerYAML-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -127,7 +127,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciMacro.html qscintilla2-2.8.1/doc/html-Qt3/classQsciMacro.html --- qscintilla2-2.8/doc/html-Qt3/classQsciMacro.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciMacro.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -171,7 +171,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciMacro-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciMacro-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciMacro-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciMacro-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -69,7 +69,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciPrinter.html qscintilla2-2.8.1/doc/html-Qt3/classQsciPrinter.html --- qscintilla2-2.8/doc/html-Qt3/classQsciPrinter.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciPrinter.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -231,7 +231,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciPrinter-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciPrinter-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciPrinter-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciPrinter-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -68,7 +68,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciScintillaBase.html qscintilla2-2.8.1/doc/html-Qt3/classQsciScintillaBase.html --- qscintilla2-2.8/doc/html-Qt3/classQsciScintillaBase.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciScintillaBase.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -1557,6 +1557,8 @@ Static Public Member Functions

Protected Types

@@ -3387,7 +3389,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciScintillaBase-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciScintillaBase-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciScintillaBase-members.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciScintillaBase-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -67,6 +67,7 @@ CARETSTYLE_BLOCK enum value (defined in QsciScintillaBase)QsciScintillaBase CARETSTYLE_INVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase CARETSTYLE_LINE enum value (defined in QsciScintillaBase)QsciScintillaBase + commandKey(int qt_key, int &modifiers) (defined in QsciScintillaBase)QsciScintillaBase [static] contextMenuEvent(QContextMenuEvent *e)QsciScintillaBase [protected, virtual] dragEnterEvent(QDragEnterEvent *e)QsciScintillaBase [protected, virtual] dragLeaveEvent(QDragLeaveEvent *e)QsciScintillaBase [protected, virtual] @@ -1143,7 +1144,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciScintilla.html qscintilla2-2.8.1/doc/html-Qt3/classQsciScintilla.html --- qscintilla2-2.8/doc/html-Qt3/classQsciScintilla.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciScintilla.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -6130,7 +6130,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciScintilla-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciScintilla-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciScintilla-members.html 2013-11-08 15:31:15.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciScintilla-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -143,6 +143,7 @@ clearMarginText(int line=-1)QsciScintilla clearRegisteredImages()QsciScintilla color() const QsciScintilla + commandKey(int qt_key, int &modifiers) (defined in QsciScintillaBase)QsciScintillaBase [static] contextMenuEvent(QContextMenuEvent *e)QsciScintillaBase [protected, virtual] contractedFolds() const QsciScintilla convertEols(EolMode mode)QsciScintilla @@ -1470,8 +1471,8 @@ VISIBLE_SLOP enum value (defined in QsciScintillaBase)QsciScintillaBase VISIBLE_STRICT enum value (defined in QsciScintillaBase)QsciScintillaBase whitespaceSize() const QsciScintilla - WhitespaceVisibility enum nameQsciScintilla whitespaceVisibility() const QsciScintilla + WhitespaceVisibility enum nameQsciScintilla wordAtLineIndex(int line, int index) const QsciScintilla wordAtPoint(const QPoint &point) const QsciScintilla wordCharacters() const QsciScintilla @@ -1482,11 +1483,11 @@ WrapFlagNone enum valueQsciScintilla WrapIndentFixed enum valueQsciScintilla WrapIndentIndented enum valueQsciScintilla - WrapIndentMode enum nameQsciScintilla wrapIndentMode() const QsciScintilla + WrapIndentMode enum nameQsciScintilla WrapIndentSame enum valueQsciScintilla - wrapMode() const QsciScintilla WrapMode enum nameQsciScintilla + wrapMode() const QsciScintilla WrapNone enum valueQsciScintilla WrapVisualFlag enum nameQsciScintilla WrapWord enum valueQsciScintilla @@ -1505,7 +1506,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciStyledText.html qscintilla2-2.8.1/doc/html-Qt3/classQsciStyledText.html --- qscintilla2-2.8/doc/html-Qt3/classQsciStyledText.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciStyledText.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciStyledText-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciStyledText-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciStyledText-members.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciStyledText-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -66,7 +66,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciStyle.html qscintilla2-2.8.1/doc/html-Qt3/classQsciStyle.html --- qscintilla2-2.8/doc/html-Qt3/classQsciStyle.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciStyle.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -540,7 +540,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/classQsciStyle-members.html qscintilla2-2.8.1/doc/html-Qt3/classQsciStyle-members.html --- qscintilla2-2.8/doc/html-Qt3/classQsciStyle-members.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/classQsciStyle-members.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -87,7 +87,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/dir_2bb0a240b4c39770d6e1e81bca15915b.html qscintilla2-2.8.1/doc/html-Qt3/dir_2bb0a240b4c39770d6e1e81bca15915b.html --- qscintilla2-2.8/doc/html-Qt3/dir_2bb0a240b4c39770d6e1e81bca15915b.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/dir_2bb0a240b4c39770d6e1e81bca15915b.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ - - - - -QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8/Qt3/ Directory Reference - - - - - - - - -
- - -
- - - - - - - - - - - -
-
QScintilla -  2.8 -
- -
-
- - - - -
-
-
-
Qt3 Directory Reference
-
-
-

-Directories

- -
- - - - - - diff -Nru qscintilla2-2.8/doc/html-Qt3/dir_4ac772bcccfb62b850991da7fe5ad15e.html qscintilla2-2.8.1/doc/html-Qt3/dir_4ac772bcccfb62b850991da7fe5ad15e.html --- qscintilla2-2.8/doc/html-Qt3/dir_4ac772bcccfb62b850991da7fe5ad15e.html 1970-01-01 00:00:00.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/dir_4ac772bcccfb62b850991da7fe5ad15e.html 2014-03-14 14:13:03.000000000 +0000 @@ -0,0 +1,118 @@ + + + + +QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8.1/Qt3/Qsci/ Directory Reference + + + + + + + + +
+ + +
+ + + + + + + + + + + +
+
QScintilla +  2.8.1 +
+ +
+
+ + + + +
+
+
+
Qsci Directory Reference
+
+
+

+Files

+
    +
  • file qsciabstractapis.h +
  • file qsciapis.h +
  • file qscicommand.h +
  • file qscicommandset.h +
  • file qscidocument.h +
  • file qsciglobal.h +
  • file qscilexer.h +
  • file qscilexerbash.h +
  • file qscilexerbatch.h +
  • file qscilexercmake.h +
  • file qscilexercpp.h +
  • file qscilexercsharp.h +
  • file qscilexercss.h +
  • file qscilexercustom.h +
  • file qscilexerd.h +
  • file qscilexerdiff.h +
  • file qscilexerfortran.h +
  • file qscilexerfortran77.h +
  • file qscilexerhtml.h +
  • file qscilexeridl.h +
  • file qscilexerjava.h +
  • file qscilexerjavascript.h +
  • file qscilexerlua.h +
  • file qscilexermakefile.h +
  • file qscilexermatlab.h +
  • file qscilexeroctave.h +
  • file qscilexerpascal.h +
  • file qscilexerperl.h +
  • file qscilexerpostscript.h +
  • file qscilexerpov.h +
  • file qscilexerproperties.h +
  • file qscilexerpython.h +
  • file qscilexerruby.h +
  • file qscilexerspice.h +
  • file qscilexersql.h +
  • file qscilexertcl.h +
  • file qscilexertex.h +
  • file qscilexerverilog.h +
  • file qscilexervhdl.h +
  • file qscilexerxml.h +
  • file qscilexeryaml.h +
  • file qscimacro.h +
  • file qsciprinter.h +
  • file qsciscintilla.h +
  • file qsciscintillabase.h +
  • file qscistyle.h +
  • file qscistyledtext.h +
+
+ + + + + + diff -Nru qscintilla2-2.8/doc/html-Qt3/dir_7864af6760cd2014ff010e7bcc30cb6b.html qscintilla2-2.8.1/doc/html-Qt3/dir_7864af6760cd2014ff010e7bcc30cb6b.html --- qscintilla2-2.8/doc/html-Qt3/dir_7864af6760cd2014ff010e7bcc30cb6b.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/dir_7864af6760cd2014ff010e7bcc30cb6b.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,118 +0,0 @@ - - - - -QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8/Qt3/Qsci/ Directory Reference - - - - - - - - -
- - -
- - - - - - - - - - - -
-
QScintilla -  2.8 -
- -
-
- - - - -
-
-
-
Qsci Directory Reference
-
-
-

-Files

-
    -
  • file qsciabstractapis.h -
  • file qsciapis.h -
  • file qscicommand.h -
  • file qscicommandset.h -
  • file qscidocument.h -
  • file qsciglobal.h -
  • file qscilexer.h -
  • file qscilexerbash.h -
  • file qscilexerbatch.h -
  • file qscilexercmake.h -
  • file qscilexercpp.h -
  • file qscilexercsharp.h -
  • file qscilexercss.h -
  • file qscilexercustom.h -
  • file qscilexerd.h -
  • file qscilexerdiff.h -
  • file qscilexerfortran.h -
  • file qscilexerfortran77.h -
  • file qscilexerhtml.h -
  • file qscilexeridl.h -
  • file qscilexerjava.h -
  • file qscilexerjavascript.h -
  • file qscilexerlua.h -
  • file qscilexermakefile.h -
  • file qscilexermatlab.h -
  • file qscilexeroctave.h -
  • file qscilexerpascal.h -
  • file qscilexerperl.h -
  • file qscilexerpostscript.h -
  • file qscilexerpov.h -
  • file qscilexerproperties.h -
  • file qscilexerpython.h -
  • file qscilexerruby.h -
  • file qscilexerspice.h -
  • file qscilexersql.h -
  • file qscilexertcl.h -
  • file qscilexertex.h -
  • file qscilexerverilog.h -
  • file qscilexervhdl.h -
  • file qscilexerxml.h -
  • file qscilexeryaml.h -
  • file qscimacro.h -
  • file qsciprinter.h -
  • file qsciscintilla.h -
  • file qsciscintillabase.h -
  • file qscistyle.h -
  • file qscistyledtext.h -
-
- - - - - - diff -Nru qscintilla2-2.8/doc/html-Qt3/dir_a22e5312c805762f47af7fdc01fa9495.html qscintilla2-2.8.1/doc/html-Qt3/dir_a22e5312c805762f47af7fdc01fa9495.html --- qscintilla2-2.8/doc/html-Qt3/dir_a22e5312c805762f47af7fdc01fa9495.html 1970-01-01 00:00:00.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/dir_a22e5312c805762f47af7fdc01fa9495.html 2014-03-14 14:13:03.000000000 +0000 @@ -0,0 +1,71 @@ + + + + +QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8.1/Qt3/ Directory Reference + + + + + + + + +
+ + +
+ + + + + + + + + + + +
+
QScintilla +  2.8.1 +
+ +
+
+ + + + +
+
+
+
Qt3 Directory Reference
+
+
+

+Directories

+ +
+ + + + + + diff -Nru qscintilla2-2.8/doc/html-Qt3/dirs.html qscintilla2-2.8.1/doc/html-Qt3/dirs.html --- qscintilla2-2.8/doc/html-Qt3/dirs.html 2013-11-08 15:31:16.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/dirs.html 2014-03-14 14:13:03.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -49,8 +49,8 @@
This directory hierarchy is sorted roughly, but not completely, alphabetically:
    -
  • Qt3 @@ -58,7 +58,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x62.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x62.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x62.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x62.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x63.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x63.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x63.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x63.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -369,7 +369,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x64.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x64.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x64.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x64.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -410,7 +410,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x65.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x65.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x65.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x65.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -200,7 +200,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x66.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x66.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x66.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x66.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -246,7 +246,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x67.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x67.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x67.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x67.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -112,7 +112,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x68.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x68.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x68.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x68.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -189,7 +189,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x69.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x69.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x69.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x69.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -215,7 +215,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x6a.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x6a.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x6a.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x6a.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x6b.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x6b.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x6b.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x6b.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -199,7 +199,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x6c.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x6c.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x6c.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x6c.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -402,7 +402,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x6d.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x6d.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x6d.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x6d.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -113,12 +113,12 @@
  • marginSensitivity() : QsciScintilla
  • -
  • marginType() -: QsciScintilla -
  • MarginType : QsciScintilla
  • +
  • marginType() +: QsciScintilla +
  • marginWidth() : QsciScintilla
  • @@ -205,7 +205,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x6e.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x6e.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x6e.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x6e.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x6f.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x6f.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x6f.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x6f.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -130,7 +130,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x70.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x70.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x70.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x70.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -328,7 +328,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x71.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x71.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x71.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x71.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x72.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x72.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x72.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x72.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -229,7 +229,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x73.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x73.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x73.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x73.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -1490,8 +1490,8 @@ : QsciCommand
  • style() -: QsciStyledText -, QsciStyle +: QsciStyle +, QsciStyledText
  • styleBitsNeeded() : QsciLexer @@ -1543,7 +1543,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x74.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x74.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x74.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x74.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -128,12 +128,12 @@
  • TextBlockMarker : QsciLexerYAML
  • -
  • TextCase -: QsciStyle -
  • textCase() : QsciStyle
  • +
  • TextCase +: QsciStyle +
  • textChanged() : QsciScintilla
  • @@ -190,7 +190,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x75.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x75.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x75.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x75.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -148,7 +148,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x76.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x76.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x76.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x76.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -176,7 +176,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x77.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x77.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x77.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x77.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -181,12 +181,12 @@
  • WrapIndentIndented : QsciScintilla
  • -
  • wrapIndentMode() -: QsciScintilla -
  • WrapIndentMode : QsciScintilla
  • +
  • wrapIndentMode() +: QsciScintilla +
  • WrapIndentSame : QsciScintilla
  • @@ -252,7 +252,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x78.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x78.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x78.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x78.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -106,7 +106,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x7a.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x7a.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x7a.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x7a.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -92,12 +92,12 @@
    Here is a list of all documented class members with links to the class documentation for each member:

    - z -

      -
    • ZoomIn -: QsciCommand -
    • zoomIn() : QsciScintilla
    • +
    • ZoomIn +: QsciCommand +
    • zoomOut() : QsciScintilla
    • @@ -115,7 +115,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_0x7e.html qscintilla2-2.8.1/doc/html-Qt3/functions_0x7e.html --- qscintilla2-2.8/doc/html-Qt3/functions_0x7e.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_0x7e.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -220,7 +220,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_enum.html qscintilla2-2.8.1/doc/html-Qt3/functions_enum.html --- qscintilla2-2.8/doc/html-Qt3/functions_enum.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_enum.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -122,7 +122,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x62.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x62.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x62.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x62.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -167,7 +167,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x63.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x63.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x63.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x63.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -269,7 +269,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x64.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x64.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x64.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x64.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -229,7 +229,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x65.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x65.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x65.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x65.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -144,7 +144,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x66.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x66.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x66.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x66.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -116,7 +116,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x67.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x67.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x67.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x67.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -105,7 +105,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x68.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x68.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x68.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x68.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -164,7 +164,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x69.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x69.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x69.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x69.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6a.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6a.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6a.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6a.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -135,7 +135,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6b.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6b.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6b.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6b.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -159,7 +159,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6c.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6c.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6c.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6c.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -192,7 +192,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6d.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6d.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6d.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6d.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -120,7 +120,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6e.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6e.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6e.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6e.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -135,7 +135,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6f.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6f.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x6f.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x6f.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -126,7 +126,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x70.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x70.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x70.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x70.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -292,7 +292,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x71.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x71.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x71.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x71.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -129,7 +129,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x72.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x72.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x72.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x72.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -129,7 +129,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x73.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x73.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x73.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x73.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -924,7 +924,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x74.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x74.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x74.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x74.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -164,7 +164,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x75.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x75.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x75.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x75.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -134,7 +134,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x76.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x76.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x76.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x76.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -154,7 +154,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x77.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x77.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x77.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x77.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -171,7 +171,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x78.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x78.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x78.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x78.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -105,7 +105,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval_0x7a.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x7a.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval_0x7a.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval_0x7a.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -102,7 +102,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_eval.html qscintilla2-2.8.1/doc/html-Qt3/functions_eval.html --- qscintilla2-2.8/doc/html-Qt3/functions_eval.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_eval.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -266,7 +266,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x62.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x62.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x62.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x62.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -106,7 +106,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x63.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x63.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x63.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x63.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -186,7 +186,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x64.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x64.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x64.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x64.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -273,7 +273,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x65.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x65.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x65.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x65.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -143,7 +143,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x66.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x66.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x66.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x66.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -220,7 +220,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x67.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x67.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x67.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x67.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -100,7 +100,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x68.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x68.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x68.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x68.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -118,7 +118,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x69.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x69.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x69.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x69.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -163,7 +163,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x6b.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6b.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x6b.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6b.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -133,7 +133,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x6c.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6c.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x6c.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6c.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -303,7 +303,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x6d.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6d.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x6d.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6d.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -172,7 +172,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x6f.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6f.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x6f.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x6f.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -97,7 +97,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x70.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x70.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x70.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x70.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -135,7 +135,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x71.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x71.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x71.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x71.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -100,7 +100,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x72.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x72.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x72.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x72.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -193,7 +193,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x73.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x73.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x73.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x73.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -712,7 +712,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x74.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x74.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x74.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x74.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -117,7 +117,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x75.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x75.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x75.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x75.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -107,7 +107,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x76.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x76.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x76.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x76.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -115,7 +115,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x77.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x77.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x77.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x77.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -162,7 +162,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x7a.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x7a.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x7a.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x7a.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -103,7 +103,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func_0x7e.html qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x7e.html --- qscintilla2-2.8/doc/html-Qt3/functions_func_0x7e.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func_0x7e.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -217,7 +217,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions_func.html qscintilla2-2.8.1/doc/html-Qt3/functions_func.html --- qscintilla2-2.8/doc/html-Qt3/functions_func.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions_func.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -173,7 +173,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/functions.html qscintilla2-2.8.1/doc/html-Qt3/functions.html --- qscintilla2-2.8/doc/html-Qt3/functions.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/functions.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -355,7 +355,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/hierarchy.html qscintilla2-2.8.1/doc/html-Qt3/hierarchy.html --- qscintilla2-2.8/doc/html-Qt3/hierarchy.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/hierarchy.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -121,7 +121,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt3/index.html qscintilla2-2.8.1/doc/html-Qt3/index.html --- qscintilla2-2.8/doc/html-Qt3/index.html 2013-11-08 15:31:13.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt3/index.html 2014-03-14 14:13:02.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -146,7 +146,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/annotated.html qscintilla2-2.8.1/doc/html-Qt4Qt5/annotated.html --- qscintilla2-2.8/doc/html-Qt4Qt5/annotated.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/annotated.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -107,7 +107,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classes.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classes.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classes.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classes.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -85,7 +85,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAbstractAPIs.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAbstractAPIs.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAbstractAPIs.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAbstractAPIs.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -195,7 +195,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAbstractAPIs-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAbstractAPIs-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAbstractAPIs-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAbstractAPIs-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -66,7 +66,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAPIs.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAPIs.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAPIs.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAPIs.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -381,7 +381,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAPIs-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAPIs-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciAPIs-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciAPIs-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -83,7 +83,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommand.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommand.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommand.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommand.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
      QScintilla -  2.8 +  2.8.1
      @@ -552,7 +552,7 @@
-

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 Key_Down, Key_Up, Key_Left, Key_Right, Key_Home, Key_End, Key_PageUp, Key_PageDown, Key_Delete, Key_Insert, Key_Escape, Key_Backspace, Key_Tab and Key_Return. Keys may be modified with any combination of SHIFT, CTRL, ALT and META.

+

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()
@@ -616,7 +616,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommand-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommand-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommand-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommand-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -167,7 +167,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommandSet.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommandSet.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommandSet.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommandSet.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -143,7 +143,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommandSet-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommandSet-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciCommandSet-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciCommandSet-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -67,7 +67,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciDocument.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciDocument.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciDocument.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciDocument.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -78,7 +78,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciDocument-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciDocument-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciDocument-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciDocument-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -64,7 +64,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBash.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBash.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBash.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBash.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -469,7 +469,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBash-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBash-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBash-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBash-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -133,7 +133,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBatch.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBatch.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBatch.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBatch.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -273,7 +273,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBatch-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBatch-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerBatch-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerBatch-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -123,7 +123,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCMake.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCMake.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCMake.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCMake.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -428,7 +428,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCMake-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCMake-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCMake-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCMake-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -132,7 +132,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCPP.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCPP.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCPP.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCPP.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -814,7 +814,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCPP-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCPP-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCPP-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCPP-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -181,7 +181,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSharp.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSharp.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSharp.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSharp.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -188,7 +188,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSharp-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSharp-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSharp-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSharp-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSS.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSS.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSS.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSS.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -587,7 +587,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSS-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSS-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCSS-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCSS-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -149,7 +149,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCustom.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCustom.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCustom.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCustom.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -240,7 +240,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCustom-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCustom-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerCustom-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerCustom-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -119,7 +119,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerD.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerD.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerD.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerD.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -557,7 +557,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerDiff.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerDiff.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerDiff.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerDiff.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -204,7 +204,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerDiff-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerDiff-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerDiff-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerDiff-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -123,7 +123,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerD-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerD-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerD-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerD-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -144,7 +144,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran77.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran77.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran77.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran77.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -440,7 +440,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran77-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran77-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran77-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran77-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -132,7 +132,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerFortran-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerFortran-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -134,7 +134,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexer.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexer.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexer.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexer.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -1008,7 +1008,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerHTML.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerHTML.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerHTML.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerHTML.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -1096,7 +1096,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerHTML-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerHTML-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerHTML-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerHTML-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -239,7 +239,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerIDL.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerIDL.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerIDL.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerIDL.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -142,7 +142,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerIDL-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerIDL-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerIDL-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerIDL-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJava.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJava.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJava.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJava.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -119,7 +119,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJava-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJava-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJava-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJava-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJavaScript.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJavaScript.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJavaScript.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJavaScript.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -188,7 +188,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJavaScript-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJavaScript-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerJavaScript-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerJavaScript-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerLua.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerLua.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerLua.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerLua.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -458,7 +458,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerLua-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerLua-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerLua-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerLua-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -137,7 +137,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMakefile.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMakefile.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMakefile.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMakefile.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -246,7 +246,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMakefile-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMakefile-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMakefile-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMakefile-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -122,7 +122,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMatlab.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMatlab.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMatlab.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMatlab.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -255,7 +255,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMatlab-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMatlab-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerMatlab-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerMatlab-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -124,7 +124,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexer-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexer-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexer-members.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexer-members.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -113,7 +113,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerOctave.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerOctave.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerOctave.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerOctave.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerOctave-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerOctave-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerOctave-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerOctave-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -126,7 +126,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPascal.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPascal.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPascal.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPascal.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -559,7 +559,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPascal-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPascal-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPascal-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPascal-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -138,7 +138,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPerl.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPerl.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPerl.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPerl.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -709,7 +709,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPerl-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPerl-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPerl-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPerl-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -166,7 +166,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPostScript.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPostScript.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPostScript.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPostScript.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -552,7 +552,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPostScript-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPostScript-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPostScript-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPostScript-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPOV.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPOV.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPOV.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPOV.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -521,7 +521,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPOV-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPOV-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPOV-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPOV-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -138,7 +138,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerProperties.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerProperties.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerProperties.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerProperties.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -413,7 +413,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerProperties-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerProperties-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerProperties-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerProperties-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -125,7 +125,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPython.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPython.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPython.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPython.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -799,7 +799,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPython-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPython-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerPython-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerPython-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -155,7 +155,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerRuby.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerRuby.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerRuby.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerRuby.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -542,7 +542,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerRuby-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerRuby-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerRuby-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerRuby-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -150,7 +150,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSpice.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSpice.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSpice.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSpice.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -251,7 +251,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSpice-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSpice-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSpice-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSpice-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -124,7 +124,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSQL.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSQL.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSQL.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSQL.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -731,7 +731,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSQL-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSQL-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerSQL-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerSQL-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -152,7 +152,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTCL.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTCL.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTCL.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTCL.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -458,7 +458,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTCL-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTCL-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTCL-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTCL-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTeX.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTeX.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTeX.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTeX.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -459,7 +459,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTeX-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTeX-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerTeX-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerTeX-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -129,7 +129,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVerilog.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVerilog.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVerilog.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVerilog.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -583,7 +583,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVerilog-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVerilog-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVerilog-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVerilog-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVHDL.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVHDL.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVHDL.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVHDL.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -588,7 +588,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVHDL-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVHDL-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerVHDL-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerVHDL-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -140,7 +140,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerXML.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerXML.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerXML.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerXML.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -313,7 +313,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerXML-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerXML-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerXML-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerXML-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -243,7 +243,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerYAML.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerYAML.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerYAML.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerYAML.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -409,7 +409,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerYAML-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerYAML-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciLexerYAML-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciLexerYAML-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -127,7 +127,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciMacro.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciMacro.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciMacro.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciMacro.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -165,7 +165,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciMacro-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciMacro-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciMacro-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciMacro-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -69,7 +69,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciPrinter.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciPrinter.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciPrinter.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciPrinter.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -231,7 +231,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciPrinter-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciPrinter-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciPrinter-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciPrinter-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -68,7 +68,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintillaBase.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintillaBase.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintillaBase.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintillaBase.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -1551,6 +1551,8 @@ Static Public Member Functions

Protected Types

@@ -3415,7 +3417,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintillaBase-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintillaBase-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintillaBase-members.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintillaBase-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -68,6 +68,7 @@ CARETSTYLE_BLOCK enum value (defined in QsciScintillaBase)QsciScintillaBase CARETSTYLE_INVISIBLE enum value (defined in QsciScintillaBase)QsciScintillaBase CARETSTYLE_LINE enum value (defined in QsciScintillaBase)QsciScintillaBase + commandKey(int qt_key, int &modifiers) (defined in QsciScintillaBase)QsciScintillaBase [static] contextMenuEvent(QContextMenuEvent *e)QsciScintillaBase [protected, virtual] dragEnterEvent(QDragEnterEvent *e)QsciScintillaBase [protected, virtual] dragLeaveEvent(QDragLeaveEvent *e)QsciScintillaBase [protected, virtual] @@ -1145,7 +1146,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintilla.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintilla.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintilla.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintilla.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -6123,7 +6123,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintilla-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintilla-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciScintilla-members.html 2013-11-08 15:31:10.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciScintilla-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -144,6 +144,7 @@ clearMarginText(int line=-1)QsciScintilla clearRegisteredImages()QsciScintilla color() const QsciScintilla + commandKey(int qt_key, int &modifiers) (defined in QsciScintillaBase)QsciScintillaBase [static] contextMenuEvent(QContextMenuEvent *e)QsciScintilla [protected, virtual] contractedFolds() const QsciScintilla convertEols(EolMode mode)QsciScintilla @@ -1474,8 +1475,8 @@ VISIBLE_SLOP enum value (defined in QsciScintillaBase)QsciScintillaBase VISIBLE_STRICT enum value (defined in QsciScintillaBase)QsciScintillaBase whitespaceSize() const QsciScintilla - whitespaceVisibility() const QsciScintilla WhitespaceVisibility enum nameQsciScintilla + whitespaceVisibility() const QsciScintilla wordAtLineIndex(int line, int index) const QsciScintilla wordAtPoint(const QPoint &point) const QsciScintilla wordCharacters() const QsciScintilla @@ -1509,7 +1510,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyledText.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyledText.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyledText.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyledText.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyledText-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyledText-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyledText-members.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyledText-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -65,7 +65,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyle.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyle.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyle.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyle.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -540,7 +540,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyle-members.html qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyle-members.html --- qscintilla2-2.8/doc/html-Qt4Qt5/classQsciStyle-members.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/classQsciStyle-members.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -87,7 +87,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/dir_5fea51aa4d14b3ae0baee297e8772b47.html qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_5fea51aa4d14b3ae0baee297e8772b47.html --- qscintilla2-2.8/doc/html-Qt4Qt5/dir_5fea51aa4d14b3ae0baee297e8772b47.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_5fea51aa4d14b3ae0baee297e8772b47.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ - - - - -QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8/Qt4Qt5/ Directory Reference - - - - - - - - -
- - -
- - - - - - - - - - - -
-
QScintilla -  2.8 -
- -
-
- - - - -
-
-
-
Qt4Qt5 Directory Reference
-
-
-

-Directories

- -
- - - - - - diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/dir_977fa49b0c9ac0047c0600aa51f7449f.html qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_977fa49b0c9ac0047c0600aa51f7449f.html --- qscintilla2-2.8/doc/html-Qt4Qt5/dir_977fa49b0c9ac0047c0600aa51f7449f.html 1970-01-01 00:00:00.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_977fa49b0c9ac0047c0600aa51f7449f.html 2014-03-14 14:13:00.000000000 +0000 @@ -0,0 +1,118 @@ + + + + +QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8.1/Qt4Qt5/Qsci/ Directory Reference + + + + + + + + +
+ + +
+ + + + + + + + + + + +
+
QScintilla +  2.8.1 +
+ +
+
+ + + + +
+
+
+
Qsci Directory Reference
+
+
+

+Files

+
    +
  • file qsciabstractapis.h +
  • file qsciapis.h +
  • file qscicommand.h +
  • file qscicommandset.h +
  • file qscidocument.h +
  • file qsciglobal.h +
  • file qscilexer.h +
  • file qscilexerbash.h +
  • file qscilexerbatch.h +
  • file qscilexercmake.h +
  • file qscilexercpp.h +
  • file qscilexercsharp.h +
  • file qscilexercss.h +
  • file qscilexercustom.h +
  • file qscilexerd.h +
  • file qscilexerdiff.h +
  • file qscilexerfortran.h +
  • file qscilexerfortran77.h +
  • file qscilexerhtml.h +
  • file qscilexeridl.h +
  • file qscilexerjava.h +
  • file qscilexerjavascript.h +
  • file qscilexerlua.h +
  • file qscilexermakefile.h +
  • file qscilexermatlab.h +
  • file qscilexeroctave.h +
  • file qscilexerpascal.h +
  • file qscilexerperl.h +
  • file qscilexerpostscript.h +
  • file qscilexerpov.h +
  • file qscilexerproperties.h +
  • file qscilexerpython.h +
  • file qscilexerruby.h +
  • file qscilexerspice.h +
  • file qscilexersql.h +
  • file qscilexertcl.h +
  • file qscilexertex.h +
  • file qscilexerverilog.h +
  • file qscilexervhdl.h +
  • file qscilexerxml.h +
  • file qscilexeryaml.h +
  • file qscimacro.h +
  • file qsciprinter.h +
  • file qsciscintilla.h +
  • file qsciscintillabase.h +
  • file qscistyle.h +
  • file qscistyledtext.h +
+
+ + + + + + diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/dir_a892abe896932df72f9e67c6bedfe7c2.html qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_a892abe896932df72f9e67c6bedfe7c2.html --- qscintilla2-2.8/doc/html-Qt4Qt5/dir_a892abe896932df72f9e67c6bedfe7c2.html 1970-01-01 00:00:00.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_a892abe896932df72f9e67c6bedfe7c2.html 2014-03-14 14:13:00.000000000 +0000 @@ -0,0 +1,71 @@ + + + + +QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8.1/Qt4Qt5/ Directory Reference + + + + + + + + +
+ + +
+ + + + + + + + + + + +
+
QScintilla +  2.8.1 +
+ +
+
+ + + + +
+
+
+
Qt4Qt5 Directory Reference
+
+
+

+Directories

+ +
+ + + + + + diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/dir_e01179248b2d03e4fcf224bf41bc5506.html qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_e01179248b2d03e4fcf224bf41bc5506.html --- qscintilla2-2.8/doc/html-Qt4Qt5/dir_e01179248b2d03e4fcf224bf41bc5506.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/dir_e01179248b2d03e4fcf224bf41bc5506.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,118 +0,0 @@ - - - - -QScintilla: /Users/phil/hg/QScintilla2/QScintilla-gpl-2.8/Qt4Qt5/Qsci/ Directory Reference - - - - - - - - -
- - -
- - - - - - - - - - - -
-
QScintilla -  2.8 -
- -
-
- - - - -
-
-
-
Qsci Directory Reference
-
-
-

-Files

-
    -
  • file qsciabstractapis.h -
  • file qsciapis.h -
  • file qscicommand.h -
  • file qscicommandset.h -
  • file qscidocument.h -
  • file qsciglobal.h -
  • file qscilexer.h -
  • file qscilexerbash.h -
  • file qscilexerbatch.h -
  • file qscilexercmake.h -
  • file qscilexercpp.h -
  • file qscilexercsharp.h -
  • file qscilexercss.h -
  • file qscilexercustom.h -
  • file qscilexerd.h -
  • file qscilexerdiff.h -
  • file qscilexerfortran.h -
  • file qscilexerfortran77.h -
  • file qscilexerhtml.h -
  • file qscilexeridl.h -
  • file qscilexerjava.h -
  • file qscilexerjavascript.h -
  • file qscilexerlua.h -
  • file qscilexermakefile.h -
  • file qscilexermatlab.h -
  • file qscilexeroctave.h -
  • file qscilexerpascal.h -
  • file qscilexerperl.h -
  • file qscilexerpostscript.h -
  • file qscilexerpov.h -
  • file qscilexerproperties.h -
  • file qscilexerpython.h -
  • file qscilexerruby.h -
  • file qscilexerspice.h -
  • file qscilexersql.h -
  • file qscilexertcl.h -
  • file qscilexertex.h -
  • file qscilexerverilog.h -
  • file qscilexervhdl.h -
  • file qscilexerxml.h -
  • file qscilexeryaml.h -
  • file qscimacro.h -
  • file qsciprinter.h -
  • file qsciscintilla.h -
  • file qsciscintillabase.h -
  • file qscistyle.h -
  • file qscistyledtext.h -
-
- - - - - - diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/dirs.html qscintilla2-2.8.1/doc/html-Qt4Qt5/dirs.html --- qscintilla2-2.8/doc/html-Qt4Qt5/dirs.html 2013-11-08 15:31:11.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/dirs.html 2014-03-14 14:13:00.000000000 +0000 @@ -22,7 +22,7 @@
QScintilla -  2.8 +  2.8.1
@@ -49,8 +49,8 @@
This directory hierarchy is sorted roughly, but not completely, alphabetically:
    -
  • Qt4Qt5 @@ -58,7 +58,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x62.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x62.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x62.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x62.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -183,7 +183,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x63.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x63.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x63.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x63.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -376,7 +376,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x64.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x64.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x64.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x64.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -410,7 +410,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x65.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x65.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x65.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x65.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -200,7 +200,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x66.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x66.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x66.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x66.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -249,7 +249,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x67.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x67.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x67.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x67.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -112,7 +112,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x68.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x68.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x68.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x68.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -186,7 +186,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x69.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x69.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x69.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x69.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -218,7 +218,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6a.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6a.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6a.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6a.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6b.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6b.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6b.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6b.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -199,7 +199,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6c.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6c.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6c.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6c.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -402,7 +402,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6d.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6d.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6d.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6d.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -205,7 +205,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6e.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6e.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6e.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6e.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6f.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6f.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x6f.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x6f.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -130,7 +130,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x70.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x70.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x70.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x70.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -328,7 +328,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x71.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x71.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x71.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x71.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -136,7 +136,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x72.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x72.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x72.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x72.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -229,7 +229,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x73.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x73.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x73.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x73.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -1543,7 +1543,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x74.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x74.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x74.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x74.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -117,23 +117,23 @@
  • TCLKeyword : QsciLexerTCL
  • -
  • Text -: QsciLexerPostScript -, QsciLexerTeX -
  • text() : QsciScintilla , QsciStyledText
  • +
  • Text +: QsciLexerPostScript +, QsciLexerTeX +
  • TextBlockMarker : QsciLexerYAML
  • -
  • textCase() -: QsciStyle -
  • TextCase : QsciStyle
  • +
  • textCase() +: QsciStyle +
  • textChanged() : QsciScintilla
  • @@ -193,7 +193,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x75.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x75.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x75.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x75.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -148,7 +148,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x76.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x76.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x76.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x76.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -170,7 +170,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x77.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x77.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x77.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x77.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -95,12 +95,12 @@
  • whitespaceSize() : QsciScintilla
  • -
  • WhitespaceVisibility -: QsciScintilla -
  • whitespaceVisibility() : QsciScintilla
  • +
  • WhitespaceVisibility +: QsciScintilla +
  • wordAtLineIndex() : QsciScintilla
  • @@ -181,12 +181,12 @@
  • WrapIndentIndented : QsciScintilla
  • -
  • wrapIndentMode() -: QsciScintilla -
  • WrapIndentMode : QsciScintilla
  • +
  • wrapIndentMode() +: QsciScintilla +
  • WrapIndentSame : QsciScintilla
  • @@ -252,7 +252,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x78.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x78.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x78.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x78.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -106,7 +106,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x7a.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x7a.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x7a.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x7a.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -99,14 +99,11 @@ : QsciScintilla
  • zoomOut() -: QsciScintilla +: QsciScintilla
  • ZoomOut : QsciCommand
  • -
  • zoomOut() -: QsciScintilla -
  • zoomTo() : QsciScintilla
  • @@ -115,7 +112,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x7e.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x7e.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_0x7e.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_0x7e.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -220,7 +220,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_enum.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_enum.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_enum.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_enum.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -122,7 +122,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x62.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x62.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x62.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x62.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -167,7 +167,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x63.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x63.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x63.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x63.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -269,7 +269,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x64.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x64.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x64.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x64.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -229,7 +229,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x65.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x65.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x65.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x65.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -144,7 +144,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x66.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x66.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x66.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x66.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -116,7 +116,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x67.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x67.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x67.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x67.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -105,7 +105,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x68.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x68.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x68.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x68.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -164,7 +164,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x69.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x69.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x69.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x69.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -139,7 +139,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6a.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6a.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6a.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6a.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -135,7 +135,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6b.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6b.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6b.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6b.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -159,7 +159,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6c.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6c.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6c.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6c.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -192,7 +192,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6d.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6d.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6d.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6d.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -120,7 +120,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6e.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6e.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6e.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6e.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -135,7 +135,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6f.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6f.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x6f.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x6f.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -126,7 +126,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x70.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x70.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x70.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x70.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -292,7 +292,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x71.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x71.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x71.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x71.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -129,7 +129,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x72.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x72.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x72.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x72.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -129,7 +129,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x73.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x73.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x73.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x73.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -924,7 +924,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x74.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x74.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x74.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x74.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -164,7 +164,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x75.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x75.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x75.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x75.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -134,7 +134,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x76.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x76.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x76.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x76.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -154,7 +154,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x77.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x77.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x77.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x77.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -171,7 +171,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x78.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x78.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x78.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x78.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -105,7 +105,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x7a.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x7a.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval_0x7a.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval_0x7a.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -102,7 +102,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_eval.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_eval.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -266,7 +266,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x62.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x62.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x62.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x62.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -106,7 +106,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x63.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x63.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x63.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x63.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -193,7 +193,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x64.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x64.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x64.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x64.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -273,7 +273,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x65.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x65.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x65.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x65.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -143,7 +143,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x66.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x66.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x66.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x66.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -223,7 +223,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x67.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x67.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x67.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x67.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -100,7 +100,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x68.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x68.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x68.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x68.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -115,7 +115,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x69.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x69.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x69.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x69.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -166,7 +166,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6b.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6b.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6b.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6b.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -133,7 +133,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6c.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6c.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6c.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6c.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -303,7 +303,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6d.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6d.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6d.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6d.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -172,7 +172,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6f.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6f.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x6f.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x6f.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -97,7 +97,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x70.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x70.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x70.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x70.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -135,7 +135,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x71.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x71.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x71.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x71.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -100,7 +100,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x72.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x72.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x72.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x72.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -193,7 +193,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x73.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x73.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x73.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x73.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -712,7 +712,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x74.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x74.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x74.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x74.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -120,7 +120,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x75.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x75.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x75.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x75.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -107,7 +107,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x76.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x76.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x76.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x76.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -109,7 +109,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x77.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x77.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x77.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x77.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -162,7 +162,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x7a.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x7a.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x7a.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x7a.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -103,7 +103,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x7e.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x7e.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func_0x7e.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func_0x7e.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -217,7 +217,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions_func.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions_func.html 2013-11-08 15:31:09.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions_func.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -173,7 +173,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/functions.html qscintilla2-2.8.1/doc/html-Qt4Qt5/functions.html --- qscintilla2-2.8/doc/html-Qt4Qt5/functions.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/functions.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -355,7 +355,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/hierarchy.html qscintilla2-2.8.1/doc/html-Qt4Qt5/hierarchy.html --- qscintilla2-2.8/doc/html-Qt4Qt5/hierarchy.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/hierarchy.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -121,7 +121,7 @@ diff -Nru qscintilla2-2.8/doc/html-Qt4Qt5/index.html qscintilla2-2.8.1/doc/html-Qt4Qt5/index.html --- qscintilla2-2.8/doc/html-Qt4Qt5/index.html 2013-11-08 15:31:08.000000000 +0000 +++ qscintilla2-2.8.1/doc/html-Qt4Qt5/index.html 2014-03-14 14:12:59.000000000 +0000 @@ -22,7 +22,7 @@
    QScintilla -  2.8 +  2.8.1
    @@ -95,6 +95,7 @@

    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 want to change the configuration then edit the file qscintilla.pro in the Qt4Qt5 directory. For example, if you want to build a static library, edit the value of CONFIG and replace dll with staticlib, and edit the value of DEFINES and remove QSCINTILLA_MAKE_DLL.

    +

    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 Qt4Qt5/features/qscintilla2.prf file.

    See your qmake documentation for more details.

    To build and install QScintilla, run:

    @@ -111,7 +112,11 @@
         copy %QTDIR%\lib\qscintilla2.dll %QTDIR%\bin
     

    Installation on MacOS/X

    On MacOS/X you may need to pass -spec macx-g++ in order to generate a Makefile, otherwise an XCode project file may be created. In particular the Qt Designer plugin will not load if you do not do this.

    -

    Example Application

    +

    Integration with qmake

    +

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

    +
    +    CONFIG += qscintilla2
    +

    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:

    @@ -144,7 +149,7 @@ diff -Nru qscintilla2-2.8/doc/qscintilla-Qt3.dxy qscintilla2-2.8.1/doc/qscintilla-Qt3.dxy --- qscintilla2-2.8/doc/qscintilla-Qt3.dxy 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/doc/qscintilla-Qt3.dxy 2014-03-14 14:12:58.000000000 +0000 @@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = "2.8" +PROJECT_NUMBER = "2.8.1" # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff -Nru qscintilla2-2.8/doc/qscintilla-Qt4Qt5.dxy qscintilla2-2.8.1/doc/qscintilla-Qt4Qt5.dxy --- qscintilla2-2.8/doc/qscintilla-Qt4Qt5.dxy 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/doc/qscintilla-Qt4Qt5.dxy 2014-03-14 14:12:58.000000000 +0000 @@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = "2.8" +PROJECT_NUMBER = "2.8.1" # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff -Nru qscintilla2-2.8/doc/README-Qt3.doc qscintilla2-2.8.1/doc/README-Qt3.doc --- qscintilla2-2.8/doc/README-Qt3.doc 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/doc/README-Qt3.doc 2014-03-14 14:12:58.000000000 +0000 @@ -91,6 +91,7 @@ of CONFIG and replace dll with staticlib, and edit the value of DEFINES and remove QSCINTILLA_MAKE_DLL. + See your qmake documentation for more details. To build and install QScintilla, run: @@ -138,6 +139,8 @@ Qt Designer plugin will not load if you do not do this. + +

    Example Application

    The example application provided is a port of the standard Qt diff -Nru qscintilla2-2.8/doc/README-Qt4Qt5.doc qscintilla2-2.8.1/doc/README-Qt4Qt5.doc --- qscintilla2-2.8/doc/README-Qt4Qt5.doc 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/doc/README-Qt4Qt5.doc 2014-03-14 14:12:58.000000000 +0000 @@ -91,6 +91,10 @@ of CONFIG and replace dll with staticlib, and edit the value of DEFINES and remove QSCINTILLA_MAKE_DLL. +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 +Qt4Qt5/features/qscintilla2.prf file. + See your qmake documentation for more details. To build and install QScintilla, run: @@ -130,6 +134,16 @@ Qt Designer plugin will not load if you do not do this. +

    Integration with qmake

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

    Example Application

    The example application provided is a port of the standard Qt diff -Nru qscintilla2-2.8/example-Qt4Qt5/application.pro qscintilla2-2.8.1/example-Qt4Qt5/application.pro --- qscintilla2-2.8/example-Qt4Qt5/application.pro 2013-10-01 20:53:32.000000000 +0000 +++ qscintilla2-2.8.1/example-Qt4Qt5/application.pro 2013-12-31 16:34:37.000000000 +0000 @@ -1,15 +1,9 @@ -CONFIG += release - -greaterThan(QT_MAJOR_VERSION, 4) { - QT += widgets -} +CONFIG += release qscintilla2 macx { QMAKE_POST_LINK = install_name_tool -change libqscintilla2.11.dylib $$[QT_INSTALL_LIBS]/libqscintilla2.11.dylib $(TARGET) } -HEADERS = mainwindow.h -SOURCES = main.cpp \ - mainwindow.cpp -RESOURCES = application.qrc -LIBS += -L$$[QT_INSTALL_LIBS] -lqscintilla2 +HEADERS = mainwindow.h +SOURCES = main.cpp mainwindow.cpp +RESOURCES = application.qrc diff -Nru qscintilla2-2.8/LICENSE.GPL2 qscintilla2-2.8.1/LICENSE.GPL2 --- qscintilla2-2.8/LICENSE.GPL2 2013-11-08 15:30:59.000000000 +0000 +++ qscintilla2-2.8.1/LICENSE.GPL2 2014-03-14 14:12:58.000000000 +0000 @@ -1,5 +1,5 @@ - QScintilla is Copyright (C) 2012 Riverbank Computing Limited + QScintilla is Copyright (C) 2014 Riverbank Computing Limited You may use, distribute and copy QScintilla under the terms of GNU diff -Nru qscintilla2-2.8/LICENSE.GPL3 qscintilla2-2.8.1/LICENSE.GPL3 --- qscintilla2-2.8/LICENSE.GPL3 2013-11-08 15:30:59.000000000 +0000 +++ qscintilla2-2.8.1/LICENSE.GPL3 2014-03-14 14:12:58.000000000 +0000 @@ -1,5 +1,5 @@ - QScintilla is Copyright (C) 2012 Riverbank Computing Limited + QScintilla is Copyright (C) 2014 Riverbank Computing Limited You may use, distribute and copy QScintilla under the terms of GNU diff -Nru qscintilla2-2.8/NEWS qscintilla2-2.8.1/NEWS --- qscintilla2-2.8/NEWS 2013-11-08 15:30:59.000000000 +0000 +++ qscintilla2-2.8.1/NEWS 2014-03-14 14:12:58.000000000 +0000 @@ -1,3 +1,11 @@ +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. diff -Nru qscintilla2-2.8/Python/configure-old.py qscintilla2-2.8.1/Python/configure-old.py --- qscintilla2-2.8/Python/configure-old.py 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/configure-old.py 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ # This script configures QScintilla for PyQt v3 and/or v4. # -# Copyright (c) 2012 Riverbank Computing Limited +# Copyright (c) 2014 Riverbank Computing Limited # # This file is part of QScintilla. # @@ -85,7 +85,7 @@ setattr(parser.values, option.dest, os.path.abspath(value)) p = optparse.OptionParser(usage="python %prog [options]", - version="2.8") + version="2.8.1") p.add_option("-a", "--apidir", action="callback", default=None, type="string", metavar="DIR", dest="qscidir", @@ -185,8 +185,8 @@ # Because we include the Python bindings with the C++ code we can # reasonably force the same version to be used and not bother about # versioning. - if sciversstr != "2.8": - sipconfig.error("QScintilla %s is being used but the Python bindings 2.8 are being built. Please use matching versions." % sciversstr) + if sciversstr != "2.8.1": + sipconfig.error("QScintilla %s is being used but the Python bindings 2.8.1 are being built. Please use matching versions." % sciversstr) sipconfig.inform("QScintilla %s is being used." % sciversstr) else: diff -Nru qscintilla2-2.8/Python/configure.py qscintilla2-2.8.1/Python/configure.py --- qscintilla2-2.8/Python/configure.py 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/configure.py 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ # This script configures QScintilla for PyQt v4.10 and later. It will fall # back to the old script if an earlier version of PyQt is found. # -# Copyright (c) 2012 Riverbank Computing Limited +# Copyright (c) 2014 Riverbank Computing Limited # # This file is part of QScintilla. # @@ -315,8 +315,10 @@ self.qmake_spec = 'macx-g++' self.api_dir = qt_config.QT_INSTALL_DATA - self.qsci_inc_dir = qt_config.QT_INSTALL_HEADERS - self.qsci_lib_dir = qt_config.QT_INSTALL_LIBS + self.qsci_default_inc_dir = qt_config.QT_INSTALL_HEADERS + self.qsci_inc_dir = None + self.qsci_default_lib_dir = qt_config.QT_INSTALL_LIBS + self.qsci_lib_dir = None def override_defaults(self, opts): """ Override the defaults from the command line. opts are the command @@ -404,7 +406,7 @@ setattr(parser.values, option.dest, os.path.abspath(value)) p = optparse.OptionParser(usage="python %prog [options]", - version="2.8") + version="2.8.1") p.add_option("--spec", dest='qmakespec', default=None, action='store', metavar="SPEC", @@ -526,10 +528,14 @@ """ # Find the QScintilla header files. - sciglobal = os.path.join(target_config.qsci_inc_dir, 'Qsci', 'qsciglobal.h') + inc_dir = target_config.qsci_inc_dir + if inc_dir is None: + inc_dir = target_config.qsci_default_inc_dir + + sciglobal = os.path.join(inc_dir, 'Qsci', 'qsciglobal.h') if not os.access(sciglobal, os.F_OK): - error("Qsci/qsciglobal.h could not be found in %s. If QScintilla is installed then use the --qsci-incdir argument to explicitly specify the correct directory." % target_config.qsci_inc_dir) + error("Qsci/qsciglobal.h could not be found in %s. If QScintilla is installed then use the --qsci-incdir argument to explicitly specify the correct directory." % inc_dir) # Get the QScintilla version string. sciversstr = read_define(sciglobal, 'QSCINTILLA_VERSION_STR') @@ -538,14 +544,18 @@ "The QScintilla version number could not be determined by " "reading %s." % sciglobal) - if not glob.glob(os.path.join(target_config.qsci_lib_dir, '*qscintilla2*')): - error("The QScintilla library could not be found in %s. If QScintilla is installed then use the --qsci-libdir argument to explicitly specify the correct directory." % target_config.qsci_lib_dir) + lib_dir = target_config.qsci_lib_dir + if lib_dir is None: + lib_dir = target_config.qsci_default_lib_dir + + if not glob.glob(os.path.join(lib_dir, '*qscintilla2*')): + error("The QScintilla library could not be found in %s. If QScintilla is installed then use the --qsci-libdir argument to explicitly specify the correct directory." % lib_dir) # Because we include the Python bindings with the C++ code we can # reasonably force the same version to be used and not bother about # versioning. - if sciversstr != '2.8': - error("QScintilla %s is being used but the Python bindings 2.8 are being built. Please use matching versions." % sciversstr) + if sciversstr != '2.8.1': + error("QScintilla %s is being used but the Python bindings 2.8.1 are being built. Please use matching versions." % sciversstr) inform("QScintilla %s is being used." % sciversstr) @@ -660,12 +670,7 @@ pro.write('TEMPLATE = lib\n') pro.write('CONFIG += %s\n' % ('debug' if opts.debug else 'release')) pro.write('CONFIG += %s\n' % ('staticlib' if opts.static else 'plugin')) - - pro.write(''' -greaterThan(QT_MAJOR_VERSION, 4) { - QT += widgets printsupport -} -''') + pro.write('CONFIG += qscintilla2\n') if not opts.static: # I don't really understand why the linker needs to find the Python @@ -730,12 +735,18 @@ if target_config.qscintilla_is_dll: pro.write('DEFINES += QSCINTILLA_DLL\n') - pro.write('INCLUDEPATH += %s\n' % target_config.qsci_inc_dir) + if target_config.qsci_inc_dir is not None: + pro.write('INCLUDEPATH += %s\n' % target_config.qsci_inc_dir) + pro.write('INCLUDEPATH += %s\n' % target_config.py_inc_dir) if target_config.py_inc_dir != target_config.sip_inc_dir: pro.write('INCLUDEPATH += %s\n' % target_config.sip_inc_dir) - pro.write('LIBS += -L%s -lqscintilla2\n' % target_config.qsci_lib_dir) + lib_dir = target_config.qsci_lib_dir + if lib_dir is None: + lib_dir = target_config.qsci_default_lib_dir + else: + pro.write('LIBS += -L%s -lqscintilla2\n' % lib_dir) if not opts.static: pro.write(''' @@ -747,9 +758,10 @@ macx { QMAKE_LFLAGS += "-undefined dynamic_lookup" + QMAKE_LFLAGS += "-install_name $$absolute_path($$PY_MODULE, $$target.path)" QMAKE_POST_LINK = $$QMAKE_POST_LINK$$escape_expand(\\\\n\\\\t)$$quote(install_name_tool -change libqscintilla2.%s.dylib %s/libqscintilla2.%s.dylib $$PY_MODULE) } -''' % (QSCI_API_MAJOR, target_config.qsci_lib_dir, QSCI_API_MAJOR)) +''' % (QSCI_API_MAJOR, lib_dir, QSCI_API_MAJOR)) pro.write('\n') pro.write('TARGET = Qsci\n') diff -Nru qscintilla2-2.8/Python/sip/qsciabstractapis.sip qscintilla2-2.8.1/Python/sip/qsciabstractapis.sip --- qscintilla2-2.8/Python/sip/qsciabstractapis.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qsciabstractapis.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciAbstractAPIs. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qsciapis.sip qscintilla2-2.8.1/Python/sip/qsciapis.sip --- qscintilla2-2.8/Python/sip/qsciapis.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qsciapis.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciAPIs. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscicommandset.sip qscintilla2-2.8.1/Python/sip/qscicommandset.sip --- qscintilla2-2.8/Python/sip/qscicommandset.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscicommandset.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for the QsciCommandSet. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscicommand.sip qscintilla2-2.8.1/Python/sip/qscicommand.sip --- qscintilla2-2.8/Python/sip/qscicommand.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscicommand.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciCommand. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscidocument.sip qscintilla2-2.8.1/Python/sip/qscidocument.sip --- qscintilla2-2.8/Python/sip/qscidocument.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscidocument.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciDocument. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerbash.sip qscintilla2-2.8.1/Python/sip/qscilexerbash.sip --- qscintilla2-2.8/Python/sip/qscilexerbash.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerbash.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerBash. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerbatch.sip qscintilla2-2.8.1/Python/sip/qscilexerbatch.sip --- qscintilla2-2.8/Python/sip/qscilexerbatch.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerbatch.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerBatch. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexercmake.sip qscintilla2-2.8.1/Python/sip/qscilexercmake.sip --- qscintilla2-2.8/Python/sip/qscilexercmake.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexercmake.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerCMake. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexercpp.sip qscintilla2-2.8.1/Python/sip/qscilexercpp.sip --- qscintilla2-2.8/Python/sip/qscilexercpp.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexercpp.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerCPP. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexercsharp.sip qscintilla2-2.8.1/Python/sip/qscilexercsharp.sip --- qscintilla2-2.8/Python/sip/qscilexercsharp.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexercsharp.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerCSharp. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexercss.sip qscintilla2-2.8.1/Python/sip/qscilexercss.sip --- qscintilla2-2.8/Python/sip/qscilexercss.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexercss.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerCSS. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexercustom.sip qscintilla2-2.8.1/Python/sip/qscilexercustom.sip --- qscintilla2-2.8/Python/sip/qscilexercustom.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexercustom.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerCustom. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerdiff.sip qscintilla2-2.8.1/Python/sip/qscilexerdiff.sip --- qscintilla2-2.8/Python/sip/qscilexerdiff.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerdiff.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerDiff. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerd.sip qscintilla2-2.8.1/Python/sip/qscilexerd.sip --- qscintilla2-2.8/Python/sip/qscilexerd.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerd.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerD. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerfortran77.sip qscintilla2-2.8.1/Python/sip/qscilexerfortran77.sip --- qscintilla2-2.8/Python/sip/qscilexerfortran77.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerfortran77.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerFortran77. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerfortran.sip qscintilla2-2.8.1/Python/sip/qscilexerfortran.sip --- qscintilla2-2.8/Python/sip/qscilexerfortran.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerfortran.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerFortran. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerhtml.sip qscintilla2-2.8.1/Python/sip/qscilexerhtml.sip --- qscintilla2-2.8/Python/sip/qscilexerhtml.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerhtml.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerHTML. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexeridl.sip qscintilla2-2.8.1/Python/sip/qscilexeridl.sip --- qscintilla2-2.8/Python/sip/qscilexeridl.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexeridl.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerIDL. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerjavascript.sip qscintilla2-2.8.1/Python/sip/qscilexerjavascript.sip --- qscintilla2-2.8/Python/sip/qscilexerjavascript.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerjavascript.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerJavaScript. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerjava.sip qscintilla2-2.8.1/Python/sip/qscilexerjava.sip --- qscintilla2-2.8/Python/sip/qscilexerjava.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerjava.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerJava. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerlua.sip qscintilla2-2.8.1/Python/sip/qscilexerlua.sip --- qscintilla2-2.8/Python/sip/qscilexerlua.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerlua.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerLua. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexermakefile.sip qscintilla2-2.8.1/Python/sip/qscilexermakefile.sip --- qscintilla2-2.8/Python/sip/qscilexermakefile.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexermakefile.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerMakefile. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexermatlab.sip qscintilla2-2.8.1/Python/sip/qscilexermatlab.sip --- qscintilla2-2.8/Python/sip/qscilexermatlab.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexermatlab.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerMatlab. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexeroctave.sip qscintilla2-2.8.1/Python/sip/qscilexeroctave.sip --- qscintilla2-2.8/Python/sip/qscilexeroctave.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexeroctave.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerOctave. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerpascal.sip qscintilla2-2.8.1/Python/sip/qscilexerpascal.sip --- qscintilla2-2.8/Python/sip/qscilexerpascal.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerpascal.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerPascal. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerperl.sip qscintilla2-2.8.1/Python/sip/qscilexerperl.sip --- qscintilla2-2.8/Python/sip/qscilexerperl.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerperl.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerPerl. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerpostscript.sip qscintilla2-2.8.1/Python/sip/qscilexerpostscript.sip --- qscintilla2-2.8/Python/sip/qscilexerpostscript.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerpostscript.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerPostScript. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerpov.sip qscintilla2-2.8.1/Python/sip/qscilexerpov.sip --- qscintilla2-2.8/Python/sip/qscilexerpov.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerpov.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerPOV. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerproperties.sip qscintilla2-2.8.1/Python/sip/qscilexerproperties.sip --- qscintilla2-2.8/Python/sip/qscilexerproperties.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerproperties.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerProperties. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerpython.sip qscintilla2-2.8.1/Python/sip/qscilexerpython.sip --- qscintilla2-2.8/Python/sip/qscilexerpython.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerpython.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerPython. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerruby.sip qscintilla2-2.8.1/Python/sip/qscilexerruby.sip --- qscintilla2-2.8/Python/sip/qscilexerruby.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerruby.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerRuby. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexer.sip qscintilla2-2.8.1/Python/sip/qscilexer.sip --- qscintilla2-2.8/Python/sip/qscilexer.sip 2013-11-08 15:31:05.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexer.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexer. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerspice.sip qscintilla2-2.8.1/Python/sip/qscilexerspice.sip --- qscintilla2-2.8/Python/sip/qscilexerspice.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerspice.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerSpice. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexersql.sip qscintilla2-2.8.1/Python/sip/qscilexersql.sip --- qscintilla2-2.8/Python/sip/qscilexersql.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexersql.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerSQL. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexertcl.sip qscintilla2-2.8.1/Python/sip/qscilexertcl.sip --- qscintilla2-2.8/Python/sip/qscilexertcl.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexertcl.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerTCL. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexertex.sip qscintilla2-2.8.1/Python/sip/qscilexertex.sip --- qscintilla2-2.8/Python/sip/qscilexertex.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexertex.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerTeX. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerverilog.sip qscintilla2-2.8.1/Python/sip/qscilexerverilog.sip --- qscintilla2-2.8/Python/sip/qscilexerverilog.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerverilog.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerVerilog. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexervhdl.sip qscintilla2-2.8.1/Python/sip/qscilexervhdl.sip --- qscintilla2-2.8/Python/sip/qscilexervhdl.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexervhdl.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerVHDL. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexerxml.sip qscintilla2-2.8.1/Python/sip/qscilexerxml.sip --- qscintilla2-2.8/Python/sip/qscilexerxml.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexerxml.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerXML. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscilexeryaml.sip qscintilla2-2.8.1/Python/sip/qscilexeryaml.sip --- qscintilla2-2.8/Python/sip/qscilexeryaml.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscilexeryaml.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciLexerYAML. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscimacro.sip qscintilla2-2.8.1/Python/sip/qscimacro.sip --- qscintilla2-2.8/Python/sip/qscimacro.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscimacro.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciMacro. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscimod3.sip qscintilla2-2.8.1/Python/sip/qscimod3.sip --- qscintilla2-2.8/Python/sip/qscimod3.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscimod3.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for the qsci module of PyQt3. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscimod4.sip qscintilla2-2.8.1/Python/sip/qscimod4.sip --- qscintilla2-2.8/Python/sip/qscimod4.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscimod4.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for the Qsci module of PyQt4. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscimod5.sip qscintilla2-2.8.1/Python/sip/qscimod5.sip --- qscintilla2-2.8/Python/sip/qscimod5.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscimod5.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for the Qsci module of PyQt5. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscimodcommon.sip qscintilla2-2.8.1/Python/sip/qscimodcommon.sip --- qscintilla2-2.8/Python/sip/qscimodcommon.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscimodcommon.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // This is the SIP interface definition for the parts of the Qsci module common // to the Qt v3 and v4 versions. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -28,7 +28,7 @@ %Copying -Copyright (c) 2012 Riverbank Computing Limited +Copyright (c) 2014 Riverbank Computing Limited This file is part of QScintilla. diff -Nru qscintilla2-2.8/Python/sip/qsciprinter.sip qscintilla2-2.8.1/Python/sip/qsciprinter.sip --- qscintilla2-2.8/Python/sip/qsciprinter.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qsciprinter.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciPrinter. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -23,6 +23,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +%If (PyQt_Printer) + class QsciPrinter : QPrinter { %TypeHeaderCode @@ -44,3 +46,5 @@ private: QsciPrinter(const QsciPrinter &); }; + +%End diff -Nru qscintilla2-2.8/Python/sip/qsciscintillabase3.sip qscintilla2-2.8.1/Python/sip/qsciscintillabase3.sip --- qscintilla2-2.8/Python/sip/qsciscintillabase3.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qsciscintillabase3.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciScintillaBase. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qsciscintillabase4.sip qscintilla2-2.8.1/Python/sip/qsciscintillabase4.sip --- qscintilla2-2.8/Python/sip/qsciscintillabase4.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qsciscintillabase4.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciScintillaBase. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qsciscintilla.sip qscintilla2-2.8.1/Python/sip/qsciscintilla.sip --- qscintilla2-2.8/Python/sip/qsciscintilla.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qsciscintilla.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciScintilla. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscistyledtext.sip qscintilla2-2.8.1/Python/sip/qscistyledtext.sip --- qscintilla2-2.8/Python/sip/qscistyledtext.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscistyledtext.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciStyledText. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Python/sip/qscistyle.sip qscintilla2-2.8.1/Python/sip/qscistyle.sip --- qscintilla2-2.8/Python/sip/qscistyle.sip 2013-11-08 15:31:06.000000000 +0000 +++ qscintilla2-2.8.1/Python/sip/qscistyle.sip 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This is the SIP interface definition for QsciStyle. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/qsci/api/python/Python-3.4.api qscintilla2-2.8.1/qsci/api/python/Python-3.4.api --- qscintilla2-2.8/qsci/api/python/Python-3.4.api 1970-01-01 00:00:00.000000000 +0000 +++ qscintilla2-2.8.1/qsci/api/python/Python-3.4.api 2014-03-12 16:24:58.000000000 +0000 @@ -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 -Nru qscintilla2-2.8/Qt3/InputMethod.cpp qscintilla2-2.8.1/Qt3/InputMethod.cpp --- qscintilla2-2.8/Qt3/InputMethod.cpp 2013-11-08 15:30:59.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/InputMethod.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,4 +1,4 @@ -// Copyright (c) 2013 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // Copyright (c) 2011 Archaeopteryx Software, Inc. // Copyright (c) 1990-2011, Scientific Toolworks, Inc. // diff -Nru qscintilla2-2.8/Qt3/ListBoxQt.cpp qscintilla2-2.8.1/Qt3/ListBoxQt.cpp --- qscintilla2-2.8/Qt3/ListBoxQt.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/ListBoxQt.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // This module implements the specialisation of QListBox that handles the // Scintilla double-click callback. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/ListBoxQt.h qscintilla2-2.8.1/Qt3/ListBoxQt.h --- qscintilla2-2.8/Qt3/ListBoxQt.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/ListBoxQt.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // This defines the specialisation of QListBox that handles the Scintilla // double-click callback. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/MacPasteboardMime.cpp qscintilla2-2.8.1/Qt3/MacPasteboardMime.cpp --- qscintilla2-2.8/Qt3/MacPasteboardMime.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/MacPasteboardMime.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,8 +1,8 @@ -// This module implements partt of the support for rectangular selections on +// This module implements part of the support for rectangular selections on // OS/X. It is a separate file to avoid clashes between OS/X and Scintilla // data types. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -25,10 +25,9 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#include +#include -#if defined(Q_OS_MAC) -#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000) || QT_VERSION >= 0x050200 +#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000 && defined(Q_OS_MAC)) || (QT_VERSION >= 0x050200 && defined(Q_OS_OSX)) #include #include @@ -115,4 +114,3 @@ #endif -#endif diff -Nru qscintilla2-2.8/Qt3/PlatQt.cpp qscintilla2-2.8.1/Qt3/PlatQt.cpp --- qscintilla2-2.8/Qt3/PlatQt.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/PlatQt.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the portability layer for the Qt port of Scintilla. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -175,12 +175,12 @@ void Init(WindowID wid); void Init(SurfaceID sid, WindowID); void Init(QPainter *p); - void InitPixMap(int width, int height, Surface *, WindowID); + void InitPixMap(int width, int height, Surface *, WindowID wid); void Release(); bool Initialised() {return painter;} void PenColour(ColourDesired fore); - int LogPixelsY() {return 72;} + int LogPixelsY() {return pd->logicalDpiY();} int DeviceHeightFont(int points) {return points;} void MoveTo(int x_,int y_); void LineTo(int x_,int y_); @@ -286,11 +286,21 @@ painter = p; } -void SurfaceImpl::InitPixMap(int width, int height, Surface *, WindowID) +void SurfaceImpl::InitPixMap(int width, int height, Surface *, WindowID wid) { Release(); - pd = new QPixmap(width, height); +#if QT_VERSION >= 0x050000 + int dpr = PWindow(wid)->devicePixelRatio(); + QPixmap *pixmap = new QPixmap(width * dpr, height * dpr); + pixmap->setDevicePixelRatio(dpr); +#else + QPixmap *pixmap = new QPixmap(width, height); + Q_UNUSED(wid); +#endif + + pd = pixmap; + painter = new QPainter(pd); my_resources = true; } diff -Nru qscintilla2-2.8/Qt3/Qsci/qsciabstractapis.h qscintilla2-2.8.1/Qt3/Qsci/qsciabstractapis.h --- qscintilla2-2.8/Qt3/Qsci/qsciabstractapis.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qsciabstractapis.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciAbstractAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qsciapis.h qscintilla2-2.8.1/Qt3/Qsci/qsciapis.h --- qscintilla2-2.8/Qt3/Qsci/qsciapis.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qsciapis.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscicommand.h qscintilla2-2.8.1/Qt3/Qsci/qscicommand.h --- qscintilla2-2.8/Qt3/Qsci/qscicommand.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscicommand.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciCommand class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -359,11 +359,14 @@ //! Binds the key \a key to the command. If \a key is 0 then the key //! binding is removed. If \a key is invalid then the key binding is //! unchanged. Valid keys are any visible or control character or any - //! of \c Key_Down, \c Key_Up, \c Key_Left, \c Key_Right, \c Key_Home, - //! \c Key_End, \c Key_PageUp, \c Key_PageDown, \c Key_Delete, - //! \c Key_Insert, \c Key_Escape, \c Key_Backspace, \c Key_Tab and - //! \c Key_Return. Keys may be modified with any combination of \c SHIFT, - //! \c CTRL, \c ALT and \c META. + //! of \c Qt::Key_Down, \c Qt::Key_Up, \c Qt::Key_Left, \c Qt::Key_Right, + //! \c Qt::Key_Home, \c Qt::Key_End, \c Qt::Key_PageUp, + //! \c Qt::Key_PageDown, \c Qt::Key_Delete, \c Qt::Key_Insert, + //! \c Qt::Key_Escape, \c Qt::Key_Backspace, \c Qt::Key_Tab, + //! \c Qt::Key_Backtab, \c Qt::Key_Return, \c Qt::Key_Enter, + //! \c Qt::Key_Super_L, \c Qt::Key_Super_R or \c Qt::Key_Menu. Keys may be + //! modified with any combination of \c Qt::ShiftModifier, + //! \c Qt::ControlModifier, \c Qt::AltModifier and \c Qt::MetaModifier. //! //! \sa key(), setAlternateKey(), validKey() void setKey(int key); diff -Nru qscintilla2-2.8/Qt3/Qsci/qscicommandset.h qscintilla2-2.8.1/Qt3/Qsci/qscicommandset.h --- qscintilla2-2.8/Qt3/Qsci/qscicommandset.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscicommandset.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciCommandSet class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscidocument.h qscintilla2-2.8.1/Qt3/Qsci/qscidocument.h --- qscintilla2-2.8/Qt3/Qsci/qscidocument.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscidocument.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciDocument class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qsciglobal.h qscintilla2-2.8.1/Qt3/Qsci/qsciglobal.h --- qscintilla2-2.8/Qt3/Qsci/qsciglobal.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qsciglobal.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines various things common to all of the Scintilla Qt port. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -33,8 +33,8 @@ #include -#define QSCINTILLA_VERSION 0x020800 -#define QSCINTILLA_VERSION_STR "2.8" +#define QSCINTILLA_VERSION 0x020801 +#define QSCINTILLA_VERSION_STR "2.8.1" // Under Windows, define QSCINTILLA_MAKE_DLL to create a Scintilla DLL, or diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerbash.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerbash.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerbash.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerbash.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerBash class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerbatch.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerbatch.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerbatch.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerbatch.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerBatch class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexercmake.h qscintilla2-2.8.1/Qt3/Qsci/qscilexercmake.h --- qscintilla2-2.8/Qt3/Qsci/qscilexercmake.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexercmake.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCMake class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexercpp.h qscintilla2-2.8.1/Qt3/Qsci/qscilexercpp.h --- qscintilla2-2.8/Qt3/Qsci/qscilexercpp.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexercpp.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCPP class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexercsharp.h qscintilla2-2.8.1/Qt3/Qsci/qscilexercsharp.h --- qscintilla2-2.8/Qt3/Qsci/qscilexercsharp.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexercsharp.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCSharp class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexercss.h qscintilla2-2.8.1/Qt3/Qsci/qscilexercss.h --- qscintilla2-2.8/Qt3/Qsci/qscilexercss.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexercss.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCSS class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexercustom.h qscintilla2-2.8.1/Qt3/Qsci/qscilexercustom.h --- qscintilla2-2.8/Qt3/Qsci/qscilexercustom.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexercustom.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCustom class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerd.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerd.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerd.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerd.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerD class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerdiff.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerdiff.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerdiff.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerdiff.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerDiff class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerfortran77.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerfortran77.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerfortran77.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerfortran77.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerFortran77 class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerfortran.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerfortran.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerfortran.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerfortran.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerFortran class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexer.h qscintilla2-2.8.1/Qt3/Qsci/qscilexer.h --- qscintilla2-2.8/Qt3/Qsci/qscilexer.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexer.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexer class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerhtml.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerhtml.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerhtml.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerhtml.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerHTML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexeridl.h qscintilla2-2.8.1/Qt3/Qsci/qscilexeridl.h --- qscintilla2-2.8/Qt3/Qsci/qscilexeridl.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexeridl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerIDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerjava.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerjava.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerjava.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerjava.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerJava class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerjavascript.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerjavascript.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerjavascript.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerjavascript.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerJavaScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerlua.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerlua.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerlua.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerlua.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerLua class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexermakefile.h qscintilla2-2.8.1/Qt3/Qsci/qscilexermakefile.h --- qscintilla2-2.8/Qt3/Qsci/qscilexermakefile.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexermakefile.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerMakefile class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexermatlab.h qscintilla2-2.8.1/Qt3/Qsci/qscilexermatlab.h --- qscintilla2-2.8/Qt3/Qsci/qscilexermatlab.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexermatlab.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerMatlab class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexeroctave.h qscintilla2-2.8.1/Qt3/Qsci/qscilexeroctave.h --- qscintilla2-2.8/Qt3/Qsci/qscilexeroctave.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexeroctave.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerOctave class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerpascal.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerpascal.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerpascal.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerpascal.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPascal class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerperl.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerperl.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerperl.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerperl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPerl class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerpostscript.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerpostscript.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerpostscript.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerpostscript.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPostScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerpov.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerpov.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerpov.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerpov.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPOV class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerproperties.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerproperties.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerproperties.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerproperties.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerProperties class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerpython.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerpython.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerpython.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerpython.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPython class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerruby.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerruby.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerruby.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerruby.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerRuby class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerspice.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerspice.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerspice.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerspice.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerSpice class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexersql.h qscintilla2-2.8.1/Qt3/Qsci/qscilexersql.h --- qscintilla2-2.8/Qt3/Qsci/qscilexersql.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexersql.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerSQL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexertcl.h qscintilla2-2.8.1/Qt3/Qsci/qscilexertcl.h --- qscintilla2-2.8/Qt3/Qsci/qscilexertcl.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexertcl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerTCL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexertex.h qscintilla2-2.8.1/Qt3/Qsci/qscilexertex.h --- qscintilla2-2.8/Qt3/Qsci/qscilexertex.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexertex.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerTeX class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerverilog.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerverilog.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerverilog.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerverilog.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerVerilog class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexervhdl.h qscintilla2-2.8.1/Qt3/Qsci/qscilexervhdl.h --- qscintilla2-2.8/Qt3/Qsci/qscilexervhdl.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexervhdl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerVHDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexerxml.h qscintilla2-2.8.1/Qt3/Qsci/qscilexerxml.h --- qscintilla2-2.8/Qt3/Qsci/qscilexerxml.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexerxml.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerXML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscilexeryaml.h qscintilla2-2.8.1/Qt3/Qsci/qscilexeryaml.h --- qscintilla2-2.8/Qt3/Qsci/qscilexeryaml.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscilexeryaml.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerYAML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscimacro.h qscintilla2-2.8.1/Qt3/Qsci/qscimacro.h --- qscintilla2-2.8/Qt3/Qsci/qscimacro.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscimacro.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciMacro class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qsciprinter.h qscintilla2-2.8.1/Qt3/Qsci/qsciprinter.h --- qscintilla2-2.8/Qt3/Qsci/qsciprinter.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qsciprinter.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciPrinter class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -37,6 +37,8 @@ #include +#if !defined(QT_NO_PRINTER) + #include #include @@ -114,6 +116,8 @@ QsciPrinter &operator=(const QsciPrinter &); }; +#endif + #ifdef __APPLE__ } #endif diff -Nru qscintilla2-2.8/Qt3/Qsci/qsciscintillabase.h qscintilla2-2.8.1/Qt3/Qsci/qsciscintillabase.h --- qscintilla2-2.8/Qt3/Qsci/qsciscintillabase.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qsciscintillabase.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This class defines the "official" low-level API. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -3177,6 +3177,9 @@ //! Re-implemented to filter certain events. virtual bool eventFilter(QObject *o, QEvent *e); + //! \internal + static int commandKey(int qt_key, int &modifiers); + signals: //! This signal is emitted when text is selected or de-selected. //! \a yes is true if text has been selected and false if text has been diff -Nru qscintilla2-2.8/Qt3/Qsci/qsciscintilla.h qscintilla2-2.8.1/Qt3/Qsci/qsciscintilla.h --- qscintilla2-2.8/Qt3/Qsci/qsciscintilla.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qsciscintilla.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // This module defines the "official" high-level API of the Qt port of // Scintilla. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscistyledtext.h qscintilla2-2.8.1/Qt3/Qsci/qscistyledtext.h --- qscintilla2-2.8/Qt3/Qsci/qscistyledtext.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscistyledtext.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciStyledText class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/Qsci/qscistyle.h qscintilla2-2.8.1/Qt3/Qsci/qscistyle.h --- qscintilla2-2.8/Qt3/Qsci/qscistyle.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/Qsci/qscistyle.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciStyle class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qsciabstractapis.cpp qscintilla2-2.8.1/Qt3/qsciabstractapis.cpp --- qscintilla2-2.8/Qt3/qsciabstractapis.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qsciabstractapis.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciAbstractAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qsciapis.cpp qscintilla2-2.8.1/Qt3/qsciapis.cpp --- qscintilla2-2.8/Qt3/qsciapis.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qsciapis.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscicommand.cpp qscintilla2-2.8.1/Qt3/qscicommand.cpp --- qscintilla2-2.8/Qt3/qscicommand.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscicommand.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciCommand class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -132,72 +132,7 @@ key &= ~Qt::MODIFIER_MASK; // Convert the key. - int sci_key; - - if (key > 0x7f) - switch (key) - { - case Qt::Key_Down: - sci_key = QsciScintillaBase::SCK_DOWN; - break; - - case Qt::Key_Up: - sci_key = QsciScintillaBase::SCK_UP; - break; - - case Qt::Key_Left: - sci_key = QsciScintillaBase::SCK_LEFT; - break; - - case Qt::Key_Right: - sci_key = QsciScintillaBase::SCK_RIGHT; - break; - - case Qt::Key_Home: - sci_key = QsciScintillaBase::SCK_HOME; - break; - - case Qt::Key_End: - sci_key = QsciScintillaBase::SCK_END; - break; - - case Qt::Key_Prior: - sci_key = QsciScintillaBase::SCK_PRIOR; - break; - - case Qt::Key_Next: - sci_key = QsciScintillaBase::SCK_NEXT; - break; - - case Qt::Key_Delete: - sci_key = QsciScintillaBase::SCK_DELETE; - break; - - case Qt::Key_Insert: - sci_key = QsciScintillaBase::SCK_INSERT; - break; - - case Qt::Key_Escape: - sci_key = QsciScintillaBase::SCK_ESCAPE; - break; - - case Qt::Key_Backspace: - sci_key = QsciScintillaBase::SCK_BACK; - break; - - case Qt::Key_Tab: - sci_key = QsciScintillaBase::SCK_TAB; - break; - - case Qt::Key_Return: - sci_key = QsciScintillaBase::SCK_RETURN; - break; - - default: - sci_key = 0; - } - else - sci_key = key; + int sci_key = QsciScintillaBase::commandKey(key, sci_mod); if (sci_key) sci_key |= (sci_mod << 16); diff -Nru qscintilla2-2.8/Qt3/qscicommandset.cpp qscintilla2-2.8.1/Qt3/qscicommandset.cpp --- qscintilla2-2.8/Qt3/qscicommandset.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscicommandset.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciCommandSet class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscidocument.cpp qscintilla2-2.8.1/Qt3/qscidocument.cpp --- qscintilla2-2.8/Qt3/qscidocument.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscidocument.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciDocument class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerbash.cpp qscintilla2-2.8.1/Qt3/qscilexerbash.cpp --- qscintilla2-2.8/Qt3/qscilexerbash.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerbash.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerBash class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerbatch.cpp qscintilla2-2.8.1/Qt3/qscilexerbatch.cpp --- qscintilla2-2.8/Qt3/qscilexerbatch.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerbatch.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerBatch class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexercmake.cpp qscintilla2-2.8.1/Qt3/qscilexercmake.cpp --- qscintilla2-2.8/Qt3/qscilexercmake.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexercmake.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCMake class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexer.cpp qscintilla2-2.8.1/Qt3/qscilexer.cpp --- qscintilla2-2.8/Qt3/qscilexer.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexer.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexer class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexercpp.cpp qscintilla2-2.8.1/Qt3/qscilexercpp.cpp --- qscintilla2-2.8/Qt3/qscilexercpp.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexercpp.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCPP class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexercsharp.cpp qscintilla2-2.8.1/Qt3/qscilexercsharp.cpp --- qscintilla2-2.8/Qt3/qscilexercsharp.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexercsharp.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCSharp class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexercss.cpp qscintilla2-2.8.1/Qt3/qscilexercss.cpp --- qscintilla2-2.8/Qt3/qscilexercss.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexercss.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCSS class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexercustom.cpp qscintilla2-2.8.1/Qt3/qscilexercustom.cpp --- qscintilla2-2.8/Qt3/qscilexercustom.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexercustom.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCustom class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerd.cpp qscintilla2-2.8.1/Qt3/qscilexerd.cpp --- qscintilla2-2.8/Qt3/qscilexerd.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerd.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerD class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerdiff.cpp qscintilla2-2.8.1/Qt3/qscilexerdiff.cpp --- qscintilla2-2.8/Qt3/qscilexerdiff.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerdiff.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerDiff class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerfortran77.cpp qscintilla2-2.8.1/Qt3/qscilexerfortran77.cpp --- qscintilla2-2.8/Qt3/qscilexerfortran77.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerfortran77.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerFortran77 class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerfortran.cpp qscintilla2-2.8.1/Qt3/qscilexerfortran.cpp --- qscintilla2-2.8/Qt3/qscilexerfortran.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerfortran.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerFortran class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerhtml.cpp qscintilla2-2.8.1/Qt3/qscilexerhtml.cpp --- qscintilla2-2.8/Qt3/qscilexerhtml.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerhtml.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerHTML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexeridl.cpp qscintilla2-2.8.1/Qt3/qscilexeridl.cpp --- qscintilla2-2.8/Qt3/qscilexeridl.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexeridl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerIDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerjava.cpp qscintilla2-2.8.1/Qt3/qscilexerjava.cpp --- qscintilla2-2.8/Qt3/qscilexerjava.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerjava.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerJava class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerjavascript.cpp qscintilla2-2.8.1/Qt3/qscilexerjavascript.cpp --- qscintilla2-2.8/Qt3/qscilexerjavascript.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerjavascript.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerJavaScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerlua.cpp qscintilla2-2.8.1/Qt3/qscilexerlua.cpp --- qscintilla2-2.8/Qt3/qscilexerlua.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerlua.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerLua class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexermakefile.cpp qscintilla2-2.8.1/Qt3/qscilexermakefile.cpp --- qscintilla2-2.8/Qt3/qscilexermakefile.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexermakefile.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerMakefile class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexermatlab.cpp qscintilla2-2.8.1/Qt3/qscilexermatlab.cpp --- qscintilla2-2.8/Qt3/qscilexermatlab.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexermatlab.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerMatlab class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexeroctave.cpp qscintilla2-2.8.1/Qt3/qscilexeroctave.cpp --- qscintilla2-2.8/Qt3/qscilexeroctave.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexeroctave.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerOctave class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -61,10 +61,13 @@ { if (set == 1) return - "break case catch continue do else elseif end end_unwind_protect " - "endfor endfunction endif endswitch endwhile for function " - "global if otherwise persistent return switch try until " - "unwind_protect unwind_protect_cleanup while"; + "__FILE__ __LINE__ break case catch classdef continue do else " + "elseif end end_try_catch end_unwind_protect endclassdef " + "endenumeration endevents endfor endfunction endif endmethods " + "endparfor endproperties endswitch endwhile enumeration events " + "for function get global if methods otherwise parfor persistent " + "properties return set static switch try until unwind_protect " + "unwind_protect_cleanup while"; return 0; } diff -Nru qscintilla2-2.8/Qt3/qscilexerpascal.cpp qscintilla2-2.8.1/Qt3/qscilexerpascal.cpp --- qscintilla2-2.8/Qt3/qscilexerpascal.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerpascal.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPascal class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerperl.cpp qscintilla2-2.8.1/Qt3/qscilexerperl.cpp --- qscintilla2-2.8/Qt3/qscilexerperl.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerperl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPerl class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerpostscript.cpp qscintilla2-2.8.1/Qt3/qscilexerpostscript.cpp --- qscintilla2-2.8/Qt3/qscilexerpostscript.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerpostscript.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPostScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerpov.cpp qscintilla2-2.8.1/Qt3/qscilexerpov.cpp --- qscintilla2-2.8/Qt3/qscilexerpov.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerpov.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPOV class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerproperties.cpp qscintilla2-2.8.1/Qt3/qscilexerproperties.cpp --- qscintilla2-2.8/Qt3/qscilexerproperties.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerproperties.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerProperties class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerpython.cpp qscintilla2-2.8.1/Qt3/qscilexerpython.cpp --- qscintilla2-2.8/Qt3/qscilexerpython.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerpython.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPython class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerruby.cpp qscintilla2-2.8.1/Qt3/qscilexerruby.cpp --- qscintilla2-2.8/Qt3/qscilexerruby.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerruby.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerRuby class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerspice.cpp qscintilla2-2.8.1/Qt3/qscilexerspice.cpp --- qscintilla2-2.8/Qt3/qscilexerspice.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerspice.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerSpice class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexersql.cpp qscintilla2-2.8.1/Qt3/qscilexersql.cpp --- qscintilla2-2.8/Qt3/qscilexersql.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexersql.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerSQL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexertcl.cpp qscintilla2-2.8.1/Qt3/qscilexertcl.cpp --- qscintilla2-2.8/Qt3/qscilexertcl.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexertcl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerTCL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexertex.cpp qscintilla2-2.8.1/Qt3/qscilexertex.cpp --- qscintilla2-2.8/Qt3/qscilexertex.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexertex.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerTeX class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerverilog.cpp qscintilla2-2.8.1/Qt3/qscilexerverilog.cpp --- qscintilla2-2.8/Qt3/qscilexerverilog.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerverilog.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerVerilog class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexervhdl.cpp qscintilla2-2.8.1/Qt3/qscilexervhdl.cpp --- qscintilla2-2.8/Qt3/qscilexervhdl.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexervhdl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerVHDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexerxml.cpp qscintilla2-2.8.1/Qt3/qscilexerxml.cpp --- qscintilla2-2.8/Qt3/qscilexerxml.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexerxml.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerXML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscilexeryaml.cpp qscintilla2-2.8.1/Qt3/qscilexeryaml.cpp --- qscintilla2-2.8/Qt3/qscilexeryaml.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscilexeryaml.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerYAML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscimacro.cpp qscintilla2-2.8.1/Qt3/qscimacro.cpp --- qscintilla2-2.8/Qt3/qscimacro.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscimacro.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciMacro class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscintilla.pro qscintilla2-2.8.1/Qt3/qscintilla.pro --- qscintilla2-2.8/Qt3/qscintilla.pro 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscintilla.pro 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ # The project file for the QScintilla library. # -# Copyright (c) 2012 Riverbank Computing Limited +# Copyright (c) 2014 Riverbank Computing Limited # # This file is part of QScintilla. # @@ -25,13 +25,13 @@ # This must be kept in sync with Python/configure.py, Python/configure-old.py, # example-Qt4Qt5/application.pro and designer-Qt4Qt5/designer.pro. -!win32:VERSION = 11.0.0 +!win32:VERSION = 11.0.1 TEMPLATE = lib TARGET = qscintilla2 -CONFIG += qt warn_off release dll thread -INCLUDEPATH = . ../include ../lexlib ../src -DEFINES = QSCINTILLA_MAKE_DLL SCINTILLA_QT SCI_LEXER +CONFIG += qt warn_off release dll thread exceptions +INCLUDEPATH += . ../include ../lexlib ../src +DEFINES += QSCINTILLA_MAKE_DLL SCINTILLA_QT SCI_LEXER greaterThan(QT_MAJOR_VERSION, 4) { QT += widgets @@ -73,6 +73,12 @@ INSTALLS += header trans qsci target +greaterThan(QT_MAJOR_VERSION, 3) { + features.path = $$[QT_INSTALL_DATA]/mkspecs/features + features.files = $$PWD/features/qscintilla2.prf + INSTALLS += features +} + HEADERS = \ ./Qsci/qsciglobal.h \ ./Qsci/qsciscintilla.h \ diff -Nru qscintilla2-2.8/Qt3/qsciprinter.cpp qscintilla2-2.8.1/Qt3/qsciprinter.cpp --- qscintilla2-2.8/Qt3/qsciprinter.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qsciprinter.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciPrinter class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -25,6 +25,8 @@ #include "Qsci/qsciprinter.h" +#if !defined(QT_NO_PRINTER) + #include #include @@ -189,3 +191,5 @@ { wrap = wmode; } + +#endif diff -Nru qscintilla2-2.8/Qt3/qsciscintillabase.cpp qscintilla2-2.8.1/Qt3/qsciscintillabase.cpp --- qscintilla2-2.8/Qt3/qsciscintillabase.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qsciscintillabase.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the "official" low-level API. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -101,11 +101,9 @@ setFocusPolicy(WheelFocus); -#if defined(Q_OS_MAC) -#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000) || QT_VERSION >= 0x050200 +#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000 && defined(Q_OS_MAC)) || (QT_VERSION >= 0x050200 && defined(Q_OS_OSX)) initialiseRectangularPasteboardMime(); #endif -#endif sci = new QsciScintillaQt(this); @@ -403,16 +401,35 @@ // Re-implemented to tell the widget it has the focus. -void QsciScintillaBase::focusInEvent(QFocusEvent *) +void QsciScintillaBase::focusInEvent(QFocusEvent *e) { sci->SetFocusState(true); + +#if QT_VERSION >= 0x050000 + clickCausedFocus = (e->reason() == Qt::MouseFocusReason); +#endif + + QWidget::focusInEvent(e); } // Re-implemented to tell the widget it has lost the focus. -void QsciScintillaBase::focusOutEvent(QFocusEvent *) +void QsciScintillaBase::focusOutEvent(QFocusEvent *e) { - sci->SetFocusState(false); + // Only tell Scintilla we have lost focus if the new active window isn't + // our auto-completion list. This is probably only an issue on Linux and + // there are still problems because subsequent focus out events don't + // always seem to get generated (at least with Qt5). + + if (e->reason() == Qt::ActiveWindowFocusReason) + { + QWidget *aw = QApplication::activeWindow(); + + if (!aw || aw->parent() != this || !aw->inherits("QsciSciListBox")) + sci->SetFocusState(false); + } + + QWidget::focusOutEvent(e); } @@ -437,7 +454,7 @@ // Handle key presses. void QsciScintillaBase::keyPressEvent(QKeyEvent *e) { - unsigned key, modifiers = 0; + int modifiers = 0; if (e->state() & Qt::ShiftButton) modifiers |= SCMOD_SHIFT; @@ -451,7 +468,42 @@ if (e->state() & Qt::MetaButton) modifiers |= SCMOD_META; - switch (e->key()) + int key = commandKey(e->key(), modifiers); + + if (key) + { + bool consumed = false; + + sci->KeyDownWithModifiers(key, modifiers, &consumed); + + if (consumed) + { + e->accept(); + return; + } + } + + QString text = e->text(); + + if (!text.isEmpty() && text[0].isPrint()) + { + ScintillaBytes bytes = textAsBytes(text); + sci->AddCharUTF(bytes.data(), bytes.length()); + e->accept(); + } + else + { + QWidget::keyPressEvent(e); + } +} + + +// Map a Qt key to a valid Scintilla command key, or 0 if none. +int QsciScintillaBase::commandKey(int qt_key, int &modifiers) +{ + int key; + + switch (qt_key) { case Qt::Key_Down: key = SCK_DOWN; @@ -529,34 +581,11 @@ break; default: - key = e->key(); + if ((key = qt_key) > 0x7f) + key = 0; } - if (key) - { - bool consumed = false; - - sci->KeyDownWithModifiers(key, modifiers, &consumed); - - if (consumed) - { - e->accept(); - return; - } - } - - QString text = e->text(); - - if (!text.isEmpty() && text[0].isPrint()) - { - ScintillaBytes bytes = textAsBytes(text); - sci->AddCharUTF(bytes.data(), bytes.length()); - e->accept(); - } - else - { - QWidget::keyPressEvent(e); - } + return key; } @@ -671,12 +700,29 @@ // Handle a mouse button releases. void QsciScintillaBase::mouseReleaseEvent(QMouseEvent *e) { - if (sci->HaveMouseCapture() && e->button() == Qt::LeftButton) + if (e->button() != Qt::LeftButton) + return; + + QSCI_SCI_NAMESPACE(Point) pt(e->x(), e->y()); + + if (sci->HaveMouseCapture()) { bool ctrl = e->state() & Qt::ControlButton; - sci->ButtonUp(QSCI_SCI_NAMESPACE(Point)(e->x(), e->y()), 0, ctrl); + sci->ButtonUp(pt, 0, ctrl); } + +#if QT_VERSION >= 0x050000 + if (!sci->pdoc->IsReadOnly() && !sci->PointInSelMargin(pt) && qApp->autoSipEnabled()) + { + QStyle::RequestSoftwareInputPanel rsip = QStyle::RequestSoftwareInputPanel(style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); + + if (!clickCausedFocus || rsip == QStyle::RSIP_OnMouseClick) + qApp->inputMethod()->show(); + } + + clickCausedFocus = false; +#endif } diff -Nru qscintilla2-2.8/Qt3/qsciscintilla.cpp qscintilla2-2.8.1/Qt3/qsciscintilla.cpp --- qscintilla2-2.8/Qt3/qsciscintilla.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qsciscintilla.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -2,7 +2,7 @@ // Scintilla. It is modelled on QTextEdit - a method of the same name should // behave in the same way. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -3838,6 +3838,7 @@ void QsciScintilla::handleUserListSelection(const char *text, int id) { emit userListActivated(id, QString(text)); + } diff -Nru qscintilla2-2.8/Qt3/qscistyle.cpp qscintilla2-2.8.1/Qt3/qscistyle.cpp --- qscintilla2-2.8/Qt3/qscistyle.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscistyle.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciStyle class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/qscistyledtext.cpp qscintilla2-2.8.1/Qt3/qscistyledtext.cpp --- qscintilla2-2.8/Qt3/qscistyledtext.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/qscistyledtext.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciStyledText class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/SciClasses.cpp qscintilla2-2.8.1/Qt3/SciClasses.cpp --- qscintilla2-2.8/Qt3/SciClasses.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/SciClasses.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // The implementation of various Qt version independent classes used by the // rest of the port. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -65,6 +65,7 @@ QPainter p(this); surfaceWindow->Init(&p); + surfaceWindow->SetUnicodeMode(sci->CodePage() == SC_CP_UTF8); sci->ct.PaintCT(surfaceWindow); delete surfaceWindow; diff -Nru qscintilla2-2.8/Qt3/SciClasses.h qscintilla2-2.8.1/Qt3/SciClasses.h --- qscintilla2-2.8/Qt3/SciClasses.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/SciClasses.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // The definition of various Qt version independent classes used by the rest of // the port. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/SciNamespace.h qscintilla2-2.8.1/Qt3/SciNamespace.h --- qscintilla2-2.8/Qt3/SciNamespace.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/SciNamespace.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // Support for building the Scintilla code in the Scintilla namespace using the // -DSCI_NAMESPACE compiler flag. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt3/ScintillaQt.cpp qscintilla2-2.8.1/Qt3/ScintillaQt.cpp --- qscintilla2-2.8/Qt3/ScintillaQt.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/ScintillaQt.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // The implementation of the Qt specific subclass of ScintillaBase. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -235,14 +235,12 @@ bool QsciScintillaQt::ModifyScrollBars(int nMax,int nPage) { qsb->verticalScrollBar()->setMinValue(0); - qsb->horizontalScrollBar()->setMinValue(0); - qsb->verticalScrollBar()->setMaxValue(nMax - nPage + 1); - qsb->horizontalScrollBar()->setMaxValue(scrollWidth); - + qsb->verticalScrollBar()->setPageStep(nPage); qsb->verticalScrollBar()->setLineStep(1); - qsb->verticalScrollBar()->setPageStep(nPage); + qsb->horizontalScrollBar()->setMinValue(0); + qsb->horizontalScrollBar()->setMaxValue(scrollWidth); qsb->horizontalScrollBar()->setPageStep(scrollWidth / 10); return true; @@ -422,13 +420,15 @@ QString QsciScintillaQt::textRange( const QSCI_SCI_NAMESPACE(SelectionText) *text) const { - if (!text->s) + const char *text_data = text->Data(); + + if (!text_data) return QString(); if (IsUnicodeMode()) - return QString::fromUtf8(text->Data()); + return QString::fromUtf8(text_data); - return QString::fromLatin1(text->Data()); + return QString::fromLatin1(text_data); } diff -Nru qscintilla2-2.8/Qt3/ScintillaQt.h qscintilla2-2.8.1/Qt3/ScintillaQt.h --- qscintilla2-2.8/Qt3/ScintillaQt.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt3/ScintillaQt.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // The definition of the Qt specific subclass of ScintillaBase. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -37,9 +37,11 @@ // These are needed because Scintilla class header files don't manage their own // dependencies properly. #include +#include #include #include #include +#include #include "ILexer.h" #include "Platform.h" #include "Scintilla.h" diff -Nru qscintilla2-2.8/Qt4Qt5/features/qscintilla2.prf qscintilla2-2.8.1/Qt4Qt5/features/qscintilla2.prf --- qscintilla2-2.8/Qt4Qt5/features/qscintilla2.prf 1970-01-01 00:00:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/features/qscintilla2.prf 2014-03-14 14:12:58.000000000 +0000 @@ -0,0 +1,21 @@ +greaterThan(QT_MAJOR_VERSION, 4) { + QT += widgets printsupport +} + +INCLUDEPATH += $$[QT_INSTALL_HEADERS] + +LIBS += -L$$[QT_INSTALL_LIBS] + +CONFIG(debug, debug|release) { + mac: { + LIBS += -lqscintilla2_debug + } else { + win32: { + LIBS += -lqscintilla2d + } else { + LIBS += -lqscintilla2 + } + } +} else { + LIBS += -lqscintilla2 +} diff -Nru qscintilla2-2.8/Qt4Qt5/InputMethod.cpp qscintilla2-2.8.1/Qt4Qt5/InputMethod.cpp --- qscintilla2-2.8/Qt4Qt5/InputMethod.cpp 2013-11-08 15:30:59.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/InputMethod.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,4 +1,4 @@ -// Copyright (c) 2013 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // Copyright (c) 2011 Archaeopteryx Software, Inc. // Copyright (c) 1990-2011, Scientific Toolworks, Inc. // @@ -28,6 +28,11 @@ void QsciScintillaBase::inputMethodEvent(QInputMethodEvent *event) { + // Do nothing if it appears to be a non-event. This can sometimes happen + // (but why?) on losing focus. + if (event->commitString().isEmpty() && event->preeditString().isEmpty() && event->replacementLength() == 0) + return; + ScintillaBytes bytes; // Clear the current selection. @@ -114,6 +119,11 @@ int line = SendScintilla(SCI_LINEFROMPOSITION, pos); switch (query) { +#if QT_VERSION >= 0x050000 + case Qt::ImHints: + return QWidget::inputMethodQuery(query); +#endif + case Qt::ImMicroFocus: { int startPos = (preeditPos >= 0) ? preeditPos : pos; diff -Nru qscintilla2-2.8/Qt4Qt5/ListBoxQt.cpp qscintilla2-2.8.1/Qt4Qt5/ListBoxQt.cpp --- qscintilla2-2.8/Qt4Qt5/ListBoxQt.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/ListBoxQt.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // This module implements the specialisation of QListBox that handles the // Scintilla double-click callback. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/ListBoxQt.h qscintilla2-2.8.1/Qt4Qt5/ListBoxQt.h --- qscintilla2-2.8/Qt4Qt5/ListBoxQt.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/ListBoxQt.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // This defines the specialisation of QListBox that handles the Scintilla // double-click callback. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/MacPasteboardMime.cpp qscintilla2-2.8.1/Qt4Qt5/MacPasteboardMime.cpp --- qscintilla2-2.8/Qt4Qt5/MacPasteboardMime.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/MacPasteboardMime.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,8 +1,8 @@ -// This module implements partt of the support for rectangular selections on +// This module implements part of the support for rectangular selections on // OS/X. It is a separate file to avoid clashes between OS/X and Scintilla // data types. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -25,10 +25,9 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#include +#include -#if defined(Q_OS_MAC) -#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000) || QT_VERSION >= 0x050200 +#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000 && defined(Q_OS_MAC)) || (QT_VERSION >= 0x050200 && defined(Q_OS_OSX)) #include #include @@ -115,4 +114,3 @@ #endif -#endif diff -Nru qscintilla2-2.8/Qt4Qt5/PlatQt.cpp qscintilla2-2.8.1/Qt4Qt5/PlatQt.cpp --- qscintilla2-2.8/Qt4Qt5/PlatQt.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/PlatQt.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the portability layer for the Qt port of Scintilla. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -177,12 +177,12 @@ void Init(WindowID wid); void Init(SurfaceID sid, WindowID); void Init(QPainter *p); - void InitPixMap(int width, int height, Surface *, WindowID); + void InitPixMap(int width, int height, Surface *, WindowID wid); void Release(); bool Initialised() {return painter;} void PenColour(ColourDesired fore); - int LogPixelsY() {return 72;} + int LogPixelsY() {return pd->logicalDpiY();} int DeviceHeightFont(int points) {return points;} void MoveTo(int x_,int y_); void LineTo(int x_,int y_); @@ -287,11 +287,21 @@ painter = p; } -void SurfaceImpl::InitPixMap(int width, int height, Surface *, WindowID) +void SurfaceImpl::InitPixMap(int width, int height, Surface *, WindowID wid) { Release(); - pd = new QPixmap(width, height); +#if QT_VERSION >= 0x050000 + int dpr = PWindow(wid)->devicePixelRatio(); + QPixmap *pixmap = new QPixmap(width * dpr, height * dpr); + pixmap->setDevicePixelRatio(dpr); +#else + QPixmap *pixmap = new QPixmap(width, height); + Q_UNUSED(wid); +#endif + + pd = pixmap; + painter = new QPainter(pd); my_resources = true; } @@ -410,9 +420,20 @@ { Q_ASSERT(painter); + QColor outline_colour = convertQColor(outline, alphaOutline); + QColor fill_colour = convertQColor(fill, alphaFill); + + // There was a report of Qt seeming to ignore the alpha value of the pen so + // so we disable the pen if the outline and fill colours are the same. + if (outline_colour == fill_colour) + painter->setPen(Qt::NoPen); + else + painter->setPen(outline_colour); + + painter->setBrush(fill_colour); + const int radius = (cornerSize ? 25 : 0); - painter->setBrush(convertQColor(fill, alphaFill)); painter->drawRoundRect( QRectF(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top), radius, radius); @@ -444,9 +465,22 @@ if (si.pd) { QPixmap *pm = static_cast(si.pd); + qreal x = from.x; + qreal y = from.y; + qreal width = rc.right - rc.left; + qreal height = rc.bottom - rc.top; + +#if QT_VERSION >= 0x050000 + qreal dpr = pm->devicePixelRatio(); + + x *= dpr; + y *= dpr; + width *= dpr; + height *= dpr; +#endif painter->drawPixmap(QPointF(rc.left, rc.top), *pm, - QRectF(from.x, from.y, rc.right - rc.left, rc.bottom - rc.top)); + QRectF(x, y, width, height)); } } diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qsciabstractapis.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciabstractapis.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qsciabstractapis.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciabstractapis.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciAbstractAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qsciapis.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciapis.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qsciapis.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciapis.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscicommand.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscicommand.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscicommand.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscicommand.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciCommand class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -359,11 +359,14 @@ //! Binds the key \a key to the command. If \a key is 0 then the key //! binding is removed. If \a key is invalid then the key binding is //! unchanged. Valid keys are any visible or control character or any - //! of \c Key_Down, \c Key_Up, \c Key_Left, \c Key_Right, \c Key_Home, - //! \c Key_End, \c Key_PageUp, \c Key_PageDown, \c Key_Delete, - //! \c Key_Insert, \c Key_Escape, \c Key_Backspace, \c Key_Tab and - //! \c Key_Return. Keys may be modified with any combination of \c SHIFT, - //! \c CTRL, \c ALT and \c META. + //! of \c Qt::Key_Down, \c Qt::Key_Up, \c Qt::Key_Left, \c Qt::Key_Right, + //! \c Qt::Key_Home, \c Qt::Key_End, \c Qt::Key_PageUp, + //! \c Qt::Key_PageDown, \c Qt::Key_Delete, \c Qt::Key_Insert, + //! \c Qt::Key_Escape, \c Qt::Key_Backspace, \c Qt::Key_Tab, + //! \c Qt::Key_Backtab, \c Qt::Key_Return, \c Qt::Key_Enter, + //! \c Qt::Key_Super_L, \c Qt::Key_Super_R or \c Qt::Key_Menu. Keys may be + //! modified with any combination of \c Qt::ShiftModifier, + //! \c Qt::ControlModifier, \c Qt::AltModifier and \c Qt::MetaModifier. //! //! \sa key(), setAlternateKey(), validKey() void setKey(int key); diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscicommandset.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscicommandset.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscicommandset.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscicommandset.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciCommandSet class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscidocument.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscidocument.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscidocument.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscidocument.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciDocument class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qsciglobal.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciglobal.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qsciglobal.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciglobal.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines various things common to all of the Scintilla Qt port. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -33,8 +33,8 @@ #include -#define QSCINTILLA_VERSION 0x020800 -#define QSCINTILLA_VERSION_STR "2.8" +#define QSCINTILLA_VERSION 0x020801 +#define QSCINTILLA_VERSION_STR "2.8.1" // Under Windows, define QSCINTILLA_MAKE_DLL to create a Scintilla DLL, or diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerbash.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerbash.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerbash.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerbash.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerBash class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerbatch.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerbatch.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerbatch.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerbatch.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerBatch class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercmake.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercmake.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercmake.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercmake.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCMake class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercpp.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercpp.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercpp.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercpp.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCPP class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercsharp.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercsharp.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercsharp.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercsharp.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCSharp class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercss.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercss.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercss.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercss.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCSS class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercustom.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercustom.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexercustom.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexercustom.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerCustom class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerd.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerd.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerd.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerd.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerD class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerdiff.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerdiff.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerdiff.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerdiff.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerDiff class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerfortran77.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerfortran77.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerfortran77.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerfortran77.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerFortran77 class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerfortran.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerfortran.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerfortran.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerfortran.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerFortran class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexer.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexer.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexer.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexer.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexer class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerhtml.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerhtml.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerhtml.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerhtml.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerHTML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexeridl.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexeridl.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexeridl.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexeridl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerIDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerjava.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerjava.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerjava.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerjava.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerJava class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerjavascript.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerjavascript.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerjavascript.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerjavascript.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerJavaScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerlua.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerlua.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerlua.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerlua.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerLua class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexermakefile.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexermakefile.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexermakefile.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexermakefile.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerMakefile class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexermatlab.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexermatlab.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexermatlab.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexermatlab.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerMatlab class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexeroctave.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexeroctave.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexeroctave.h 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexeroctave.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerOctave class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpascal.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpascal.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpascal.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpascal.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPascal class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerperl.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerperl.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerperl.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerperl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPerl class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpostscript.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpostscript.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpostscript.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpostscript.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPostScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpov.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpov.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpov.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpov.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPOV class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerproperties.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerproperties.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerproperties.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerproperties.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerProperties class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpython.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpython.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerpython.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerpython.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerPython class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerruby.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerruby.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerruby.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerruby.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerRuby class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerspice.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerspice.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerspice.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerspice.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerSpice class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexersql.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexersql.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexersql.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexersql.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerSQL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexertcl.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexertcl.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexertcl.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexertcl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerTCL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexertex.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexertex.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexertex.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexertex.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerTeX class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerverilog.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerverilog.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerverilog.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerverilog.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerVerilog class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexervhdl.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexervhdl.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexervhdl.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexervhdl.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerVHDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerxml.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerxml.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexerxml.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexerxml.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerXML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscilexeryaml.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexeryaml.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscilexeryaml.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscilexeryaml.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciLexerYAML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscimacro.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscimacro.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscimacro.h 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscimacro.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This defines the interface to the QsciMacro class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qsciprinter.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciprinter.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qsciprinter.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciprinter.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciPrinter class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -37,6 +37,8 @@ #include +#if !defined(QT_NO_PRINTER) + #include #include @@ -114,6 +116,8 @@ QsciPrinter &operator=(const QsciPrinter &); }; +#endif + #ifdef __APPLE__ } #endif diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qsciscintillabase.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciscintillabase.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qsciscintillabase.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciscintillabase.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This class defines the "official" low-level API. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -3163,6 +3163,9 @@ void *SendScintillaPtrResult(unsigned int msg) const; + //! \internal + static int commandKey(int qt_key, int &modifiers); + signals: //! This signal is emitted when text is selected or de-selected. //! \a yes is true if text has been selected and false if text has been @@ -3429,6 +3432,9 @@ int preeditPos; int preeditNrBytes; QString preeditString; +#if QT_VERSION >= 0x050000 + bool clickCausedFocus; +#endif void acceptAction(QDropEvent *e); diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qsciscintilla.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciscintilla.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qsciscintilla.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qsciscintilla.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // This module defines the "official" high-level API of the Qt port of // Scintilla. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscistyledtext.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscistyledtext.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscistyledtext.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscistyledtext.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciStyledText class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/Qsci/qscistyle.h qscintilla2-2.8.1/Qt4Qt5/Qsci/qscistyle.h --- qscintilla2-2.8/Qt4Qt5/Qsci/qscistyle.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/Qsci/qscistyle.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module defines interface to the QsciStyle class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qsciabstractapis.cpp qscintilla2-2.8.1/Qt4Qt5/qsciabstractapis.cpp --- qscintilla2-2.8/Qt4Qt5/qsciabstractapis.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qsciabstractapis.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciAbstractAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qsciapis.cpp qscintilla2-2.8.1/Qt4Qt5/qsciapis.cpp --- qscintilla2-2.8/Qt4Qt5/qsciapis.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qsciapis.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciAPIs class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscicommand.cpp qscintilla2-2.8.1/Qt4Qt5/qscicommand.cpp --- qscintilla2-2.8/Qt4Qt5/qscicommand.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscicommand.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciCommand class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -132,72 +132,7 @@ key &= ~Qt::MODIFIER_MASK; // Convert the key. - int sci_key; - - if (key > 0x7f) - switch (key) - { - case Qt::Key_Down: - sci_key = QsciScintillaBase::SCK_DOWN; - break; - - case Qt::Key_Up: - sci_key = QsciScintillaBase::SCK_UP; - break; - - case Qt::Key_Left: - sci_key = QsciScintillaBase::SCK_LEFT; - break; - - case Qt::Key_Right: - sci_key = QsciScintillaBase::SCK_RIGHT; - break; - - case Qt::Key_Home: - sci_key = QsciScintillaBase::SCK_HOME; - break; - - case Qt::Key_End: - sci_key = QsciScintillaBase::SCK_END; - break; - - case Qt::Key_PageUp: - sci_key = QsciScintillaBase::SCK_PRIOR; - break; - - case Qt::Key_PageDown: - sci_key = QsciScintillaBase::SCK_NEXT; - break; - - case Qt::Key_Delete: - sci_key = QsciScintillaBase::SCK_DELETE; - break; - - case Qt::Key_Insert: - sci_key = QsciScintillaBase::SCK_INSERT; - break; - - case Qt::Key_Escape: - sci_key = QsciScintillaBase::SCK_ESCAPE; - break; - - case Qt::Key_Backspace: - sci_key = QsciScintillaBase::SCK_BACK; - break; - - case Qt::Key_Tab: - sci_key = QsciScintillaBase::SCK_TAB; - break; - - case Qt::Key_Return: - sci_key = QsciScintillaBase::SCK_RETURN; - break; - - default: - sci_key = 0; - } - else - sci_key = key; + int sci_key = QsciScintillaBase::commandKey(key, sci_mod); if (sci_key) sci_key |= (sci_mod << 16); diff -Nru qscintilla2-2.8/Qt4Qt5/qscicommandset.cpp qscintilla2-2.8.1/Qt4Qt5/qscicommandset.cpp --- qscintilla2-2.8/Qt4Qt5/qscicommandset.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscicommandset.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciCommandSet class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscidocument.cpp qscintilla2-2.8.1/Qt4Qt5/qscidocument.cpp --- qscintilla2-2.8/Qt4Qt5/qscidocument.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscidocument.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciDocument class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerbash.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerbash.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerbash.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerbash.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerBash class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerbatch.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerbatch.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerbatch.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerbatch.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerBatch class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexercmake.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexercmake.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexercmake.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexercmake.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCMake class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexer.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexer.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexer.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexer.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexer class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexercpp.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexercpp.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexercpp.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexercpp.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCPP class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexercsharp.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexercsharp.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexercsharp.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexercsharp.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCSharp class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexercss.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexercss.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexercss.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexercss.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCSS class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexercustom.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexercustom.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexercustom.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexercustom.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerCustom class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerd.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerd.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerd.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerd.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerD class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerdiff.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerdiff.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerdiff.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerdiff.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerDiff class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerfortran77.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerfortran77.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerfortran77.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerfortran77.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerFortran77 class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerfortran.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerfortran.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerfortran.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerfortran.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerFortran class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerhtml.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerhtml.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerhtml.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerhtml.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerHTML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexeridl.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexeridl.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexeridl.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexeridl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerIDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerjava.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerjava.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerjava.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerjava.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerJava class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerjavascript.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerjavascript.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerjavascript.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerjavascript.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerJavaScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerlua.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerlua.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerlua.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerlua.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerLua class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexermakefile.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexermakefile.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexermakefile.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexermakefile.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerMakefile class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexermatlab.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexermatlab.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexermatlab.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexermatlab.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerMatlab class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexeroctave.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexeroctave.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexeroctave.cpp 2013-11-08 15:31:00.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexeroctave.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerOctave class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -61,10 +61,13 @@ { if (set == 1) return - "break case catch continue do else elseif end end_unwind_protect " - "endfor endfunction endif endswitch endwhile for function " - "global if otherwise persistent return switch try until " - "unwind_protect unwind_protect_cleanup while"; + "__FILE__ __LINE__ break case catch classdef continue do else " + "elseif end end_try_catch end_unwind_protect endclassdef " + "endenumeration endevents endfor endfunction endif endmethods " + "endparfor endproperties endswitch endwhile enumeration events " + "for function get global if methods otherwise parfor persistent " + "properties return set static switch try until unwind_protect " + "unwind_protect_cleanup while"; return 0; } diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerpascal.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerpascal.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerpascal.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerpascal.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPascal class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerperl.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerperl.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerperl.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerperl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPerl class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerpostscript.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerpostscript.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerpostscript.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerpostscript.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPostScript class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerpov.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerpov.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerpov.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerpov.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPOV class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerproperties.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerproperties.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerproperties.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerproperties.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerProperties class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerpython.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerpython.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerpython.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerpython.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerPython class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerruby.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerruby.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerruby.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerruby.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerRuby class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerspice.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerspice.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerspice.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerspice.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerSpice class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexersql.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexersql.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexersql.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexersql.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerSQL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexertcl.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexertcl.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexertcl.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexertcl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerTCL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexertex.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexertex.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexertex.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexertex.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerTeX class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerverilog.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerverilog.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerverilog.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerverilog.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerVerilog class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexervhdl.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexervhdl.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexervhdl.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexervhdl.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerVHDL class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexerxml.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexerxml.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexerxml.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexerxml.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerXML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscilexeryaml.cpp qscintilla2-2.8.1/Qt4Qt5/qscilexeryaml.cpp --- qscintilla2-2.8/Qt4Qt5/qscilexeryaml.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscilexeryaml.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciLexerYAML class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscimacro.cpp qscintilla2-2.8.1/Qt4Qt5/qscimacro.cpp --- qscintilla2-2.8/Qt4Qt5/qscimacro.cpp 2013-11-08 15:31:01.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscimacro.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciMacro class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscintilla.pro qscintilla2-2.8.1/Qt4Qt5/qscintilla.pro --- qscintilla2-2.8/Qt4Qt5/qscintilla.pro 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscintilla.pro 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ # The project file for the QScintilla library. # -# Copyright (c) 2012 Riverbank Computing Limited +# Copyright (c) 2014 Riverbank Computing Limited # # This file is part of QScintilla. # @@ -25,13 +25,13 @@ # This must be kept in sync with Python/configure.py, Python/configure-old.py, # example-Qt4Qt5/application.pro and designer-Qt4Qt5/designer.pro. -!win32:VERSION = 11.0.0 +!win32:VERSION = 11.0.1 TEMPLATE = lib TARGET = qscintilla2 -CONFIG += qt warn_off release dll thread -INCLUDEPATH = . ../include ../lexlib ../src -DEFINES = QSCINTILLA_MAKE_DLL SCINTILLA_QT SCI_LEXER +CONFIG += qt warn_off release dll thread exceptions +INCLUDEPATH += . ../include ../lexlib ../src +DEFINES += QSCINTILLA_MAKE_DLL SCINTILLA_QT SCI_LEXER greaterThan(QT_MAJOR_VERSION, 4) { QT += widgets @@ -73,6 +73,12 @@ INSTALLS += header trans qsci target +greaterThan(QT_MAJOR_VERSION, 3) { + features.path = $$[QT_INSTALL_DATA]/mkspecs/features + features.files = $$PWD/features/qscintilla2.prf + INSTALLS += features +} + HEADERS = \ ./Qsci/qsciglobal.h \ ./Qsci/qsciscintilla.h \ diff -Nru qscintilla2-2.8/Qt4Qt5/qsciprinter.cpp qscintilla2-2.8.1/Qt4Qt5/qsciprinter.cpp --- qscintilla2-2.8/Qt4Qt5/qsciprinter.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qsciprinter.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciPrinter class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -25,6 +25,8 @@ #include "Qsci/qsciprinter.h" +#if !defined(QT_NO_PRINTER) + #include #include @@ -187,3 +189,5 @@ { wrap = wmode; } + +#endif diff -Nru qscintilla2-2.8/Qt4Qt5/qsciscintillabase.cpp qscintilla2-2.8.1/Qt4Qt5/qsciscintillabase.cpp --- qscintilla2-2.8/Qt4Qt5/qsciscintillabase.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qsciscintillabase.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the "official" low-level API. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -42,6 +42,7 @@ #include #include #include +#include #include "ScintillaQt.h" @@ -83,18 +84,17 @@ static const QLatin1String mimeRectangularWin("MSDEVColumnSelect"); static const QLatin1String mimeRectangular("text/x-qscintilla-rectangular"); -#if defined(Q_OS_MAC) -#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000) || QT_VERSION >= 0x050200 - +#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000 && defined(Q_OS_MAC)) || (QT_VERSION >= 0x050200 && defined(Q_OS_OSX)) extern void initialiseRectangularPasteboardMime(); - -#endif #endif // The ctor. QsciScintillaBase::QsciScintillaBase(QWidget *parent) : QAbstractScrollArea(parent), preeditPos(-1), preeditNrBytes(0) +#if QT_VERSION >= 0x050000 + , clickCausedFocus(false) +#endif { connect(verticalScrollBar(), SIGNAL(valueChanged(int)), SLOT(handleVSb(int))); @@ -106,6 +106,12 @@ setFocusPolicy(Qt::WheelFocus); setAttribute(Qt::WA_KeyCompression); setAttribute(Qt::WA_InputMethodEnabled); +#if QT_VERSION >= 0x050000 + setInputMethodHints( + Qt::ImhNoAutoUppercase|Qt::ImhNoPredictiveText|Qt::ImhMultiLine); +#elif QT_VERSION >= 0x040600 + setInputMethodHints(Qt::ImhNoAutoUppercase|Qt::ImhNoPredictiveText); +#endif viewport()->setBackgroundRole(QPalette::Base); viewport()->setMouseTracking(true); @@ -113,11 +119,9 @@ triple_click.setSingleShot(true); -#if defined(Q_OS_MAC) -#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000) || QT_VERSION >= 0x050200 +#if (QT_VERSION >= 0x040200 && QT_VERSION < 0x050000 && defined(Q_OS_MAC)) || (QT_VERSION >= 0x050200 && defined(Q_OS_OSX)) initialiseRectangularPasteboardMime(); #endif -#endif sci = new QsciScintillaQt(this); @@ -318,16 +322,35 @@ // Re-implemented to tell the widget it has the focus. -void QsciScintillaBase::focusInEvent(QFocusEvent *) +void QsciScintillaBase::focusInEvent(QFocusEvent *e) { sci->SetFocusState(true); + +#if QT_VERSION >= 0x050000 + clickCausedFocus = (e->reason() == Qt::MouseFocusReason); +#endif + + QAbstractScrollArea::focusInEvent(e); } // Re-implemented to tell the widget it has lost the focus. -void QsciScintillaBase::focusOutEvent(QFocusEvent *) +void QsciScintillaBase::focusOutEvent(QFocusEvent *e) { - sci->SetFocusState(false); + // Only tell Scintilla we have lost focus if the new active window isn't + // our auto-completion list. This is probably only an issue on Linux and + // there are still problems because subsequent focus out events don't + // always seem to get generated (at least with Qt5). + + if (e->reason() == Qt::ActiveWindowFocusReason) + { + QWidget *aw = QApplication::activeWindow(); + + if (!aw || aw->parent() != this || !aw->inherits("QsciSciListBox")) + sci->SetFocusState(false); + } + + QAbstractScrollArea::focusOutEvent(e); } @@ -352,7 +375,7 @@ // Handle key presses. void QsciScintillaBase::keyPressEvent(QKeyEvent *e) { - unsigned key, modifiers = 0; + int modifiers = 0; if (e->modifiers() & Qt::ShiftModifier) modifiers |= SCMOD_SHIFT; @@ -366,7 +389,42 @@ if (e->modifiers() & Qt::MetaModifier) modifiers |= SCMOD_META; - switch (e->key()) + int key = commandKey(e->key(), modifiers); + + if (key) + { + bool consumed = false; + + sci->KeyDownWithModifiers(key, modifiers, &consumed); + + if (consumed) + { + e->accept(); + return; + } + } + + QString text = e->text(); + + if (!text.isEmpty() && text[0].isPrint()) + { + ScintillaBytes bytes = textAsBytes(text); + sci->AddCharUTF(bytes.data(), bytes.length()); + e->accept(); + } + else + { + QAbstractScrollArea::keyPressEvent(e); + } +} + + +// Map a Qt key to a valid Scintilla command key, or 0 if none. +int QsciScintillaBase::commandKey(int qt_key, int &modifiers) +{ + int key; + + switch (qt_key) { case Qt::Key_Down: key = SCK_DOWN; @@ -444,34 +502,11 @@ break; default: - key = e->key(); - } - - if (key) - { - bool consumed = false; - - sci->KeyDownWithModifiers(key, modifiers, &consumed); - - if (consumed) - { - e->accept(); - return; - } + if ((key = qt_key) > 0x7f) + key = 0; } - QString text = e->text(); - - if (!text.isEmpty() && text[0].isPrint()) - { - ScintillaBytes bytes = textAsBytes(text); - sci->AddCharUTF(bytes.data(), bytes.length()); - e->accept(); - } - else - { - QAbstractScrollArea::keyPressEvent(e); - } + return key; } @@ -586,12 +621,29 @@ // Handle a mouse button releases. void QsciScintillaBase::mouseReleaseEvent(QMouseEvent *e) { - if (sci->HaveMouseCapture() && e->button() == Qt::LeftButton) + if (e->button() != Qt::LeftButton) + return; + + QSCI_SCI_NAMESPACE(Point) pt(e->x(), e->y()); + + if (sci->HaveMouseCapture()) { bool ctrl = e->modifiers() & Qt::ControlModifier; - sci->ButtonUp(QSCI_SCI_NAMESPACE(Point)(e->x(), e->y()), 0, ctrl); + sci->ButtonUp(pt, 0, ctrl); + } + +#if QT_VERSION >= 0x050000 + if (!sci->pdoc->IsReadOnly() && !sci->PointInSelMargin(pt) && qApp->autoSipEnabled()) + { + QStyle::RequestSoftwareInputPanel rsip = QStyle::RequestSoftwareInputPanel(style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); + + if (!clickCausedFocus || rsip == QStyle::RSIP_OnMouseClick) + qApp->inputMethod()->show(); } + + clickCausedFocus = false; +#endif } diff -Nru qscintilla2-2.8/Qt4Qt5/qsciscintilla.cpp qscintilla2-2.8.1/Qt4Qt5/qsciscintilla.cpp --- qscintilla2-2.8/Qt4Qt5/qsciscintilla.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qsciscintilla.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -2,7 +2,7 @@ // Scintilla. It is modelled on QTextEdit - a method of the same name should // behave in the same way. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -1047,7 +1047,6 @@ // Set the code page. void QsciScintilla::setUtf8(bool cp) { - setAttribute(Qt::WA_InputMethodEnabled, cp); SendScintilla(SCI_SETCODEPAGE, (cp ? SC_CP_UTF8 : 0)); } @@ -2047,6 +2046,7 @@ // Set the read-only state. void QsciScintilla::setReadOnly(bool ro) { + setAttribute(Qt::WA_InputMethodEnabled, !ro); SendScintilla(SCI_SETREADONLY, ro); } @@ -3841,6 +3841,9 @@ void QsciScintilla::handleUserListSelection(const char *text, int id) { emit userListActivated(id, QString(text)); + + // Make sure the editor hasn't been deactivated as a side effect. + activateWindow(); } diff -Nru qscintilla2-2.8/Qt4Qt5/qscistyle.cpp qscintilla2-2.8.1/Qt4Qt5/qscistyle.cpp --- qscintilla2-2.8/Qt4Qt5/qscistyle.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscistyle.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciStyle class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/qscistyledtext.cpp qscintilla2-2.8.1/Qt4Qt5/qscistyledtext.cpp --- qscintilla2-2.8/Qt4Qt5/qscistyledtext.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/qscistyledtext.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // This module implements the QsciStyledText class. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/SciClasses.cpp qscintilla2-2.8.1/Qt4Qt5/SciClasses.cpp --- qscintilla2-2.8/Qt4Qt5/SciClasses.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/SciClasses.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // The implementation of various Qt version independent classes used by the // rest of the port. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -66,6 +66,7 @@ QPainter p(this); surfaceWindow->Init(&p); + surfaceWindow->SetUnicodeMode(sci->CodePage() == SC_CP_UTF8); sci->ct.PaintCT(surfaceWindow); delete surfaceWindow; @@ -150,8 +151,6 @@ connect(this, SIGNAL(itemDoubleClicked(QListWidgetItem *)), SLOT(handleSelection())); - connect(this, SIGNAL(itemActivated(QListWidgetItem *)), - SLOT(handleSelection())); } diff -Nru qscintilla2-2.8/Qt4Qt5/SciClasses.h qscintilla2-2.8.1/Qt4Qt5/SciClasses.h --- qscintilla2-2.8/Qt4Qt5/SciClasses.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/SciClasses.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // The definition of various Qt version independent classes used by the rest of // the port. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/SciNamespace.h qscintilla2-2.8.1/Qt4Qt5/SciNamespace.h --- qscintilla2-2.8/Qt4Qt5/SciNamespace.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/SciNamespace.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,7 +1,7 @@ // Support for building the Scintilla code in the Scintilla namespace using the // -DSCI_NAMESPACE compiler flag. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // diff -Nru qscintilla2-2.8/Qt4Qt5/ScintillaQt.cpp qscintilla2-2.8.1/Qt4Qt5/ScintillaQt.cpp --- qscintilla2-2.8/Qt4Qt5/ScintillaQt.cpp 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/ScintillaQt.cpp 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // The implementation of the Qt specific subclass of ScintillaBase. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -243,15 +243,20 @@ bool QsciScintillaQt::ModifyScrollBars(int nMax,int nPage) { qsb->verticalScrollBar()->setMinimum(0); - qsb->horizontalScrollBar()->setMinimum(0); - qsb->verticalScrollBar()->setMaximum(nMax - nPage + 1); - qsb->horizontalScrollBar()->setMaximum(scrollWidth); - + qsb->verticalScrollBar()->setPageStep(nPage); qsb->verticalScrollBar()->setSingleStep(1); - qsb->verticalScrollBar()->setPageStep(nPage); - qsb->horizontalScrollBar()->setPageStep(scrollWidth / 10); + // QAbstractScrollArea ignores Qt::ScrollBarAsNeeded and shows the + // horizontal scrollbar if a non-zero maximum is set. That isn't the + // behavior we want, so set the maximum to zero unless scrollWidth exceeds + // the viewport. + const int widthBeyondViewport = qMax(0, + scrollWidth - qsb->viewport()->width()); + + qsb->horizontalScrollBar()->setMinimum(0); + qsb->horizontalScrollBar()->setMaximum(qMax(0, widthBeyondViewport - 1)); + qsb->horizontalScrollBar()->setPageStep(widthBeyondViewport / 10); return true; } @@ -263,8 +268,8 @@ // Hide or show the scrollbars if needed. bool hsb = (horizontalScrollBarVisible && !Wrapping()); - qsb->setHorizontalScrollBarPolicy(hsb ? Qt::ScrollBarAlwaysOn : Qt::ScrollBarAlwaysOff); - qsb->setVerticalScrollBarPolicy(verticalScrollBarVisible ? Qt::ScrollBarAlwaysOn : Qt::ScrollBarAlwaysOff); + qsb->setHorizontalScrollBarPolicy(hsb ? Qt::ScrollBarAsNeeded : Qt::ScrollBarAlwaysOff); + qsb->setVerticalScrollBarPolicy(verticalScrollBarVisible ? Qt::ScrollBarAsNeeded : Qt::ScrollBarAlwaysOff); } diff -Nru qscintilla2-2.8/Qt4Qt5/ScintillaQt.h qscintilla2-2.8.1/Qt4Qt5/ScintillaQt.h --- qscintilla2-2.8/Qt4Qt5/ScintillaQt.h 2013-11-08 15:31:02.000000000 +0000 +++ qscintilla2-2.8.1/Qt4Qt5/ScintillaQt.h 2014-03-14 14:12:58.000000000 +0000 @@ -1,6 +1,6 @@ // The definition of the Qt specific subclass of ScintillaBase. // -// Copyright (c) 2012 Riverbank Computing Limited +// Copyright (c) 2014 Riverbank Computing Limited // // This file is part of QScintilla. // @@ -36,9 +36,11 @@ // These are needed because Scintilla class header files don't manage their own // dependencies properly. +#include #include #include #include +#include #include "ILexer.h" #include "Platform.h" #include "Scintilla.h"