summaryrefslogtreecommitdiff
path: root/cherrypy/test/logtest.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix log marker in test loggingSviatoslav Sydorenko2018-09-061-2/+4
|
* Remove reliance on sixJason R. Coombs2018-09-021-5/+3
|
* Use bytes literals where appropriatev14.0.0Jason R. Coombs2018-02-041-1/+1
|
* Remove exemption for extra long lines. Updated code to conform with standard ↵Jason R. Coombs2017-10-281-1/+4
| | | | 79 character limitation. Fixes #1652.
* Improve UUID assertion in logging testsSviatoslav Sydorenko2017-10-201-5/+8
|
* Add missing import to logtest helperSviatoslav Sydorenko2017-10-201-0/+1
|
* Fixed typospagno2017-10-201-2/+2
|
* Fixed test on windowsAndrea Spagnolo2017-10-201-0/+22
|
* Removed bad implemented testsspagno2017-10-201-22/+0
|
* Fixed UUIDv4 testspagno2017-10-201-1/+0
|
* Fixed Flake8spagno2017-10-201-2/+1
|
* Added testsspagno2017-10-201-1/+24
|
* PEP8fy codebase: eliminated E713 flake8 errorSviatoslav Sydorenko2017-03-111-1/+1
|
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-23/+23
| | | | pre-commit run double-quote-string-fixer --all-files
* Use the preferred name text_or_bytes to avoid conflation with 'basestring' ↵Jason R. Coombs2016-07-241-2/+2
| | | | which has no equivalent on Python 3.
* Replaced 'unicodestr' with 'six.text_type'Jason R. Coombs2016-06-051-5/+6
|
* More PEP8 work.Gustavo Picon2014-01-121-4/+10
|
* Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-6/+11
| | | | | --HG-- branch : autopep8
* Removed trailing whitespace from the codebase.Gustavo Picon2012-04-031-22/+22
| | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'`
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+188
|
* Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunkRobert Brewer2011-02-251-181/+0
| | | | goes in the py2 folder, and we can use a single setup.py to install either, depending on the version of Python that runs setup.py install.
* Removed py3print.Robert Brewer2009-06-141-10/+12
|
* trunk - adding a py3util module that will normalize as many differences ↵Lakin Wecker2009-06-011-11/+11
| | | | between this branch and the python3 branch as it can. First it includes a py3print call who's signature matches that of print in python3. Also removed a few byte strings of the form b''
* trunk - adding test_auth_basic and test_auth_digest into the normal test ↵Lakin Wecker2009-06-011-0/+2
| | | | runs. Also fixing those tests for the new content-type header. Finally, flushing stdout in logtest and webtest.
* Fix for #824 (_cplogging.LogManager.access method not handling unicode in ↵Robert Brewer2008-06-221-0/+177
login names properly). While I was at it, I made the access log template configurable, moved the log tests from test_core into test_logging, and added a new logtest module.