summaryrefslogtreecommitdiff
path: root/coverage/backward.py
Commit message (Collapse)AuthorAgeFilesLines
* Use the nice way to reverse a list.Ned Batchelder2013-01-091-0/+9
|
* Retro-fit onto 2.3 and 2.4 again.Ned Batchelder2012-12-191-0/+16
|
* Use iitems() to avoid lists of dict items on py2.Ned Batchelder2012-11-161-0/+10
|
* Refactor the config parsing.Ned Batchelder2012-11-101-6/+0
|
* Remove obsolete code paths.Ned Batchelder2012-03-251-20/+13
|
* If a source file has an encoding declaration, use it when producing the ↵Ned Batchelder2012-03-211-44/+31
| | | | HTML. Fixes issue #157.
* Appease the pylint godsNed Batchelder2011-08-281-2/+2
|
* Add another way to open source files, that works on 3.1Ned Batchelder2011-08-281-4/+20
|
* Properly handle Unicode characters in Python source when creating the HTML ↵Ned Batchelder2011-08-171-0/+21
| | | | report (except surrogates come out as pairs of blots in the HTML). Fixes #124 and #144.
* Incremental HTML generation. Some cleanup would be good.Ned Batchelder2011-03-241-0/+7
|
* Clean-upsNed Batchelder2011-03-161-1/+5
|
* A file opened in 'b' mode needs bytes, not strings. Try to do this in a ↵Ned Batchelder2011-03-151-0/+16
| | | | clean-ish way...
* Some pylint cleanups.Ned Batchelder2011-02-011-1/+1
|
* Pylint 0.23.0 'deprecated' disable-msg.Ned Batchelder2011-02-011-1/+1
|
* Isolate the open/tokenize.open distinction into backward.pyNed Batchelder2011-01-301-0/+10
|
* Python source files that don't end with a newline can now be executed, ↵Ned Batchelder2010-02-221-8/+9
| | | | fixing #47.
* SpacingNed Batchelder2010-01-021-7/+0
|
* version_info is a nicer way to check Python versions than hexversion is.Ned Batchelder2009-12-131-1/+1
|
* Test the config file support.Ned Batchelder2009-11-281-0/+7
|
* Use xrange on py2k and range on py3kNed Batchelder2009-10-051-0/+7
|
* Working toward reading source from eggs, but this isn't right on Py3k yet.Ned Batchelder2009-09-291-1/+2
|
* The best way to get py3k support: same source runs on both, with some ↵Ned Batchelder2009-09-221-38/+39
| | | | contortions.
* Remove stray commentNed Batchelder2009-08-091-1/+0
|
* Py3k: some output is bytes instead of string, so convert since it doesn't ↵Ned Batchelder2009-07-091-2/+9
| | | | matter.
* Have the tests use the script explicitly until I can figure out how to ↵Ned Batchelder2009-07-091-1/+7
| | | | install a usable script for Py3k
* Py3k: unify subprocess and popen4.Ned Batchelder2009-07-081-0/+27
|
* Move the backward-compatibility definitions to a common file. There seems to ↵Ned Batchelder2009-07-031-0/+24
be no pretty way to do this.