summaryrefslogtreecommitdiff
path: root/tests/path.py
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year.Georg Brandl2014-03-011-1/+1
|\
| * Modernize the code now that Python 2.5 is no longer supportedDmitry Shachnev2014-01-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | - Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections.
* | Update copyright year.Georg Brandl2014-03-011-1/+1
|/
* Copyright header update.Georg Brandl2013-04-011-2/+2
|
* support multibyte filename handling.shimizukawa2012-05-011-6/+6
| | | | https://bitbucket.org/birkenfeld/sphinx/issue/703
* shutil.copytree doesn't have an ignore argument in Python 2.4DasIch2010-08-141-6/+2
|
* Fixed the coverage extension test as well as the coverage extension itself ↵DasIch2010-06-191-0/+27
| | | | for python3
* Remove unnecessary codeDasIch2010-06-121-5/+2
|
* Added a movetree method to the path object to make it more consistent along ↵DasIch2010-06-011-0/+98
| | | | with documentation for every method of it.
* Replaced the path module with my own versionDasIch2010-06-011-923/+49
|
* use open instead of fileDasIch2010-05-241-1/+1
|
* Use 'U' if file is not present (we run under 3.x)DasIch2010-05-081-1/+6
|
* Removed pre-2.3 workaround for booleansDasIch2010-05-011-6/+0
|
* Fix for r67038.georg.brandl2008-10-281-18/+1
|
* Merged revisions 64808,65013,65076,65100-65101,65119,65121-65123 via ↵georg.brandl2008-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x ........ r64808 | georg.brandl | 2008-07-08 21:39:33 +0200 (Tue, 08 Jul 2008) | 2 lines Allow relocation of source and doctree dir. ........ r65013 | georg.brandl | 2008-07-16 15:25:30 +0200 (Wed, 16 Jul 2008) | 2 lines Remove curious quote. ........ r65076 | georg.brandl | 2008-07-17 22:43:01 +0200 (Thu, 17 Jul 2008) | 2 lines Add a test for sphinx.quickstart. ........ r65100 | georg.brandl | 2008-07-18 14:41:54 +0200 (Fri, 18 Jul 2008) | 2 lines Fix phony targets. ........ r65101 | georg.brandl | 2008-07-18 14:55:03 +0200 (Fri, 18 Jul 2008) | 2 lines Fix problems in "make check". ........ r65119 | georg.brandl | 2008-07-18 23:06:42 +0200 (Fri, 18 Jul 2008) | 2 lines Emit a more precise error message in autodoc. ........ r65121 | georg.brandl | 2008-07-18 23:41:35 +0200 (Fri, 18 Jul 2008) | 2 lines Warn if a toctree-included document doesn't contain a title. ........ r65122 | georg.brandl | 2008-07-18 23:51:28 +0200 (Fri, 18 Jul 2008) | 2 lines Don't use \samp{} for code with whitespaces, only for :samp:`code`. ........ r65123 | georg.brandl | 2008-07-19 00:49:46 +0200 (Sat, 19 Jul 2008) | 2 lines Put inheritance info always on its own line. ........
* Add a test suite skeleton, a first test for sphinx.config, and fix a bug in ↵georg.brandl2008-06-051-0/+970
config.