summaryrefslogtreecommitdiff
path: root/docutils/statemachine.py
Commit message (Expand)AuthorAgeFilesLines
* Add encoding arguments when opening files.milde2022-06-151-1/+2
* Remove unused local variablesmilde2022-03-051-1/+0
* Remove unused imports.milde2022-03-051-1/+1
* Avoid ambiguous variable name l (may be mixed up with 1).milde2022-03-051-4/+4
* Do not use bare 'except'.milde2022-03-051-2/+2
* Avoid multiple statements on one line. Fix redundant backslashmilde2022-03-051-12/+17
* Code cleanup: StateMachine._stderr no longer required.milde2022-03-051-23/+22
* Ensure 2 blank lines around top-level functions and classes.milde2022-03-041-0/+2
* Remove excess blank lines.milde2022-03-041-1/+0
* Ensure at least two spaces before inline comment.milde2022-03-041-7/+7
* Fix multiple spaces after ',' or ':'.milde2022-03-031-1/+1
* Fix multiple spaces before/after operatormilde2022-03-031-3/+3
* Fix whitespace before/after delimiters and colon.milde2022-03-031-4/+6
* Fix code indentationmilde2022-01-291-11/+11
* New style classes no longer need to inherit from `object`.milde2022-01-261-4/+4
* Drop string prefix "u".milde2022-01-261-6/+6
* Skip assigning to a variable when immediately returningmilde2022-01-261-2/+1
* Remove redundant parenthesesmilde2022-01-261-5/+5
* Small fixes and clean-ups by Adam Turner.milde2022-01-261-9/+2
* Drop use of utils.error_reporting module and deprecate it.milde2022-01-071-3/+2
* Drop (most) special-casing for Python 2.x.milde2022-01-031-4/+1
* Remove 2.7-compatibility __future__ imports.milde2022-01-031-1/+0
* Update documentation and handling of (east-asian) wide characters.milde2021-11-141-2/+2
* Fix spellingmilde2021-10-221-3/+3
* Limit length of input lines and substitution expansion.milde2020-09-141-2/+2
* Delete spurious parentheses.milde2020-09-011-33/+25
* fix typogrubert2020-08-221-1/+1
* Document possible heavy ressource use when parsing untrusted input.milde2019-12-121-1/+2
* Simplify code.milde2019-08-271-2/+1
* py3: Wrap 'foo.keys()', 'zip(foo, bar') in 'list'milde2019-08-271-1/+1
* Formatting changes to facilitate integration of "py3" patchset.milde2019-08-271-1/+1
* Consistent Python 3 checks.milde2019-08-261-1/+1
* Use 'isinstance(foo, bar)' instead of 'type(foo) is bar'milde2019-08-261-1/+1
* py3: Replace 'types.SliceType' with slice, remove 'types.ClassType'.milde2019-08-261-3/+2
* py3: Replace 'sys.maxint' with 'sys.maxsize'milde2019-08-261-1/+1
* py3: Add aliases for removed symbolsmilde2019-08-261-1/+9
* py3: Switch to 'except foo as bar' syntaxmilde2019-08-261-3/+3
* py3: Switch to print functionsmilde2019-08-261-29/+26
* py3: Use new style classesmilde2019-08-261-4/+4
* Patch+158 Speed up patterns by saving compiled versionsgrubert2019-08-061-4/+4
* Drop compatibility code for Python 2.4 and 2.5.milde2017-08-111-4/+1
* math, error_reporting, and urischemes moved to the utils package. milde2012-06-251-1/+1
* Cleanup: Use True/False for boolean valuesmilde2012-01-191-21/+18
* Clean up system message (source, line) reporting.milde2012-01-091-2/+2
* Fix [ 2926161 ] for simple tables.milde2011-11-251-0/+12
* New sub-module and test suite for error reporting.milde2011-05-191-1/+1
* fix and re-organize error printing to sys.stderrmilde2011-05-101-21/+19
* Fix: failsafe encoding of unicode strings before writing to sys.stderrmilde2011-05-061-15/+21
* minor code cleanup (unify variable names)milde2010-08-131-3/+3
* Fix [ 2788716 ] reporting problems in included files.milde2010-04-261-11/+33