summaryrefslogtreecommitdiff
path: root/utils/jssplitter_generator.py
Commit message (Collapse)AuthorAgeFilesLines
* Replace `jssplitter` with JavaScriptAdam Turner2022-03-191-113/+0
|
* Merge branch 'master' into fix-searchtoolsTakeshi KOMIYA2022-03-201-9/+3
|\
| * Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
| |
| * Fix module docstring indentationAdam Turner2022-02-201-3/+3
| |
| * Fix module docstring first lineAdam Turner2022-02-201-2/+1
| |
| * Remove module titles in docstringsAdam Turner2022-02-191-3/+0
| |
* | Update splitQueryAdam Turner2022-03-081-65/+44
|/
* Correct str/bytes mixup in utils/jssplitter_generator.pyJon Dufresne2019-08-171-1/+1
| | | | The file is opened in text mode, so it .wraite() takes str not bytes.
* Python-3-only clean ups discovered by pyupgradeJon Dufresne2019-03-171-1/+1
| | | | | | | | | | | | | | https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
* | Merge pull request #5803 from jdufresne/encoding-utf8Takeshi KOMIYA2018-12-161-1/+1
|\ \ | | | | | | Avoid respecifying default encoding for .encode()/.decode() calls
| * | Avoid respecifying default encoding for .encode()/.decode() callsJon Dufresne2018-12-151-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | In Python 3, both .encode() and .decode() default the encoding to 'utf-8'. See the docs: https://docs.python.org/3/library/stdtypes.html#str.encode https://docs.python.org/3/library/stdtypes.html#bytes.decode Simplify and shorten the code by using the default instead of respecifying it.
* | Remove use of six.unichr()Jon Dufresne2018-12-151-3/+1
|/ | | | Use Python 3 chr() instead.
* Use flake8-import-orderTakeshi KOMIYA2018-01-281-1/+2
|
* Merge branch 'happy_new_year' into masterTakeshi KOMIYA2018-01-011-1/+1
|\
| * A happy new year!Takeshi KOMIYA2018-01-011-1/+1
| |
* | Fix DeprecationWarning for r'…(?u)'Daniel Hahler2017-08-181-2/+2
|/ | | | | | Fixes > DeprecationWarning: Flags not at the start of the expression …
* Year++Takeshi KOMIYA2017-03-261-1/+1
|
* Fix flake8 violationsTakeshi KOMIYA2017-01-121-2/+2
|
* Fix style-check violationsTakeshi KOMIYA2016-11-231-4/+4
|
* fix #3150Yoshiki Shibukawa2016-11-191-0/+142