summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Coverage 3.4b1Ned Batchelder2010-08-210-0/+0
|
* Include the version number in the beta warning box.coverage-3.4b1Ned Batchelder2010-08-212-3/+3
|
* Beta docs will require tweaking the .htaccess on nedbatchelder.comNed Batchelder2010-08-211-0/+1
|
* Change how the beta docs are made, and make them more beta-yNed Batchelder2010-08-213-9/+15
|
* Trim up some linesNed Batchelder2010-08-202-3/+4
|
* Don't trace code if the reported filename is *.html. Fixes issue #82.Ned Batchelder2010-08-202-0/+13
|
* Make it possible to have beta docs in a different place than the real docsNed Batchelder2010-08-204-19/+25
|
* Doc tweaks for 3.4b1Ned Batchelder2010-08-203-6/+9
|
* Get ready to have version-specific doc URLs.Ned Batchelder2010-08-207-3/+12
|
* Bump the version number to 3.4b1Ned Batchelder2010-08-204-6/+8
|
* Working on getting coverage to measure itself again.Ned Batchelder2010-08-072-2/+9
|
* Use some strange self.os stuff to hold references to modules so we'll have ↵Ned Batchelder2010-08-072-7/+17
| | | | them available when called from atexit(). Fixes issue #71, I think.
* Clean up whitespace.Ned Batchelder2010-08-011-1/+1
|
* Python 3.2 now puts .pyc in __pycache__ directories.Ned Batchelder2010-08-011-0/+1
|
* Updates for 3.2Ned Batchelder2010-08-014-14/+10
|
* Python 3.2 doesn't make .pyc files in the local dir any more, so be more ↵Ned Batchelder2010-08-011-13/+29
| | | | flexible.
* Python 3.2 doctest expects stdout to have an encoding.Ned Batchelder2010-08-011-2/+4
|
* Virtualenv3 moves random.py into the virtualenv, so we can't use it as the ↵Ned Batchelder2010-08-011-10/+10
| | | | control any more. Just examine all the modules we import, and use all their locations as the pylib directories.
* Windows kits need setuptools. Fixes #18.Ned Batchelder2010-07-262-7/+35
|
* Start of a standalone installation page.Ned Batchelder2010-07-253-33/+78
|
* Reduce the noise about bugs in the doc changes page.Ned Batchelder2010-07-251-20/+0
|
* Update the history timestamps.Ned Batchelder2010-07-258-0/+20
|
* Update the doc changes page.Ned Batchelder2010-07-251-0/+74
|
* Finish doc'ing the new source code options.Ned Batchelder2010-07-255-37/+51
|
* Lots of doc updates, more to come.Ned Batchelder2010-07-258-38/+169
|
* Wrap a long line.Ned Batchelder2010-07-251-2/+3
|
* This should have been hidden from the public API.Ned Batchelder2010-07-251-4/+4
|
* Update changesNed Batchelder2010-07-121-6/+2
|
* Fix this test: can't guarantee the order of stdout and stderr in the output.Ned Batchelder2010-07-121-6/+3
|
* Distribute can leave junk lying around.Ned Batchelder2010-07-121-1/+1
|
* Fix this test to run on 3.1 and non-Windows platforms.Ned Batchelder2010-07-121-8/+9
|
* Tell distribute not to run 2to3.Ned Batchelder2010-07-121-0/+5
|
* Remove the test runner plugins for now.Ned Batchelder2010-07-126-302/+0
|
* Some notes about how the nose plugin works.Ned Batchelder2010-07-121-0/+54
|
* I guess this is the first opcode I've used that isn't available in all Pythons.Ned Batchelder2010-07-011-1/+7
|
* Newest pythons will execute __main__.py to execute a package.Ned Batchelder2010-07-011-0/+2
|
* Python 3.2 has a new opcode: SETUP_WITHNed Batchelder2010-07-011-1/+3
|
* Latest distribute_setup.pyNed Batchelder2010-07-011-17/+44
|
* Empty python files (like __init__.py) are shown as having zero statements, ↵Ned Batchelder2010-06-275-2/+55
| | | | not one. Fixes #1.
* Move the warnings to get them in more cases, and test one of those cases.Ned Batchelder2010-06-233-17/+44
|
* Re-vamp the tests for omit and include, and add source.Ned Batchelder2010-06-219-62/+73
|
* Add some __repr__ methods to help when debugging.Ned Batchelder2010-06-211-0/+6
|
* Give this helper function a better name, it's confused me too many times.Ned Batchelder2010-06-213-20/+25
|
* All tests now use underscore names instead of some having camelCase names.Ned Batchelder2010-06-185-127/+128
|
* Isolate old-style singleton api tests.Ned Batchelder2010-06-183-25/+32
|
* Add a test for --source, lots more needed.Ned Batchelder2010-06-181-0/+11
|
* Warnings during measurement.Ned Batchelder2010-06-182-1/+20
|
* Update the CHANGES.txt fileNed Batchelder2010-06-131-1/+9
|
* Conform to recommended optparse use.Ned Batchelder2010-06-132-19/+16
|
* Yikes: when using the Python tracing function, we haven't been caching the ↵Ned Batchelder2010-06-132-3/+9
| | | | results of should_trace since <<changeset a480f40d1fa4>>