summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-12-26Merge remote-tracking branch 'origin/pr/3427'Florian Bruhin
2017-12-26Merge pull request #3435 from qutebrowser/pyup-scheduled-update-12-25-2017Florian Bruhin
Scheduled weekly dependency update for week 52
2017-12-25Update pytest-rerunfailures from 3.1 to 4.0pyup-bot
2017-12-25Update hypothesis from 3.44.1 to 3.44.4pyup-bot
2017-12-25Update setuptools from 38.2.4 to 38.2.5pyup-bot
2017-12-23Return focus to qutebrowser when external editor finishes.RyanJenkins
2017-12-22and add back needed connectionRyan Farley
2017-12-22remove broken connectionRyan Farley
2017-12-22skip testRyan Farley
tests/end2end/features/test_marks_bdd.py::test_jumping_back_after_following_a_link
2017-12-22add back blank line for D204Ryan Farley
2017-12-22comma spacingRyan Farley
2017-12-22fix style issues, better names, less indirectionRyan Farley
Added spaces to comments, use python naming conventions, remove _load_progress_fake as unnecessary, rename _on_load_*_fake to _on_load_*_workaround (for less confusion), and use qtutils rather than QT_VERSION_STR
2017-12-22database qute://backseebye
2017-12-22remove extraneous loadStarted connectionRyan Farley
Copying and pasting without thinking might lead to redundancy.
2017-12-21only reroute load signals with Qt=5.10Ryan Farley
This stops regressions on Qt<=5.9. It also reintroduces #3110, but fixing #3110 was just a nice side effect rather than the main goal here.
2017-12-21fix line lengthRyan Farley
2017-12-21supplement broken webengine load signalsRyan Farley
This uses the much more reliable `loadProgress(100)` in place of `loadFinished(true)` for WebEngine, with `loadProgressFake` and `loadFinishedFake` used instead of the 'official' variants.
2017-12-20Fix stripping of lines in asciidoc2htmlFlorian Bruhin
This broke in #3382 since re.fullmatch does a different thing for trailing newlines: >>> line '===========\n' >>> re.match(r'^=+$', line) <_sre.SRE_Match object; span=(0, 11), match='==========='> >>> re.fullmatch(r'=+', line) >>> This now strips the line by default, and adds newlines if needed.
2017-12-20pylint adjustmentsseebye
2017-12-20fix #3396seebye
2017-12-19Fix broken linkCody Scott
2017-12-19Add new B008 to flake8 ignoresFlorian Bruhin
2017-12-19Merge remote-tracking branch 'origin/pr/3413'Florian Bruhin
2017-12-19Use request instead of pytestconfigFlorian Bruhin
This unifies QuteProc and the other Process subclasses a bit.
2017-12-19Avoid using pytest.configFlorian Bruhin
It's going to be removed in some future pytest release.
2017-12-18Update hypothesis from 3.42.1 to 3.44.1pyup-bot
2017-12-18Update flake8-bugbear from 17.4.0 to 17.12.0pyup-bot
2017-12-18Update docsFlorian Bruhin
2017-12-18Merge remote-tracking branch 'origin/pr/3407'Florian Bruhin
2017-12-18Fix colors.completion.fg default and description.Ryan Roden-Corrent
Update the description to mention the number of columns and change the default to ["white", "white", "white"] to make it more obvious that multiple colors can be specified. This also satisfies the config test that expects the default value for ListOrValue types to be a list. One other test had to be tweaked to use a config option that is still just a QtColor rather than a ListOrValue. While it is possible to provide just two colors, it is "undefined behavior". It will use the first color as the third color, but that is an artifact of the implementation and therefore not documented (though also not an error, as it is harmless).
2017-12-17Fix test_config.test_get for updated config.Ryan Roden-Corrent
colors.completion.fg is now a list instead of a QColor. As this test specifically wanted to test a QColor, I just changed it to a different config option.
2017-12-16Merge pull request #3402 from tbroadley/fix-typosFlorian Bruhin
Fix typo
2017-12-16Fix typosThomas Broadley
2017-12-15Explain eslint philosophyFlorian Bruhin
2017-12-15Clean up run_pylint_on_testsFlorian Bruhin
2017-12-15pylint: More config adjustmentsFlorian Bruhin
2017-12-15pylint: Re-enable ungrouped-importsFlorian Bruhin
2017-12-15Regenerate docsFlorian Bruhin
2017-12-15Reorder pylint ignoresFlorian Bruhin
2017-12-15pylint: Re-enable bad-continuationFlorian Bruhin
And lots and lots of whitespace changes.
2017-12-15Add docstringFlorian Bruhin
2017-12-15Reorder pylint disablesFlorian Bruhin
2017-12-15Disable wrong inconsistent-return-statementsFlorian Bruhin
2017-12-15Add an utils.Unreachable exceptionFlorian Bruhin
2017-12-15Fix some inconsistent returnsFlorian Bruhin
2017-12-15Rewrite error handling in hist_importer scriptFlorian Bruhin
Raise an exception instead of calling sys.exit
2017-12-15Declare *args before keyword argumentsFlorian Bruhin
See https://pylint.readthedocs.io/en/latest/whatsnew/1.8.html
2017-12-15Make message.confirm_async keyword-onlyFlorian Bruhin
2017-12-15Fix exception message formattingFlorian Bruhin
2017-12-15Simplify test_getitemFlorian Bruhin