summaryrefslogtreecommitdiff
path: root/cherrypy/test/test_json.py
Commit message (Collapse)AuthorAgeFilesLines
* Move json from _cpcompat to its own module.Jason R. Coombs2018-09-041-2/+1
|
* PEP8fy codebase: eliminated E302 flake8 errorSviatoslav Sydorenko2017-03-111-0/+1
|
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-13/+13
| | | | pre-commit run double-quote-string-fixer --all-files
* Use decorators where appropriate.Jason R. Coombs2016-08-031-1/+1
|
* Use cherrypy.config decorator throughout.Jason R. Coombs2016-06-051-8/+9
|
* Use expose decorator throughout the codebase.Jason R. Coombs2016-06-051-6/+6
|
* Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-3/+3
| | | | | --HG-- branch : autopep8
* json tool to work with cached (fixing #1237)Miki Tebeka2013-04-021-0/+21
|
* Removed trailing whitespace from the codebase.Gustavo Picon2012-04-031-5/+5
| | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'`
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+79
|
* Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunkRobert Brewer2011-02-251-79/+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.
* Last few 3.2 tweaksRobert Brewer2011-02-251-3/+3
|
* A couple more Python 2.3 fixes.Robert Brewer2011-02-241-2/+4
|
* Compat fixes for Python 2.3Robert Brewer2011-02-241-2/+2
|
* Freeow. The magic cherrypy/_cpcompat.py module to take all our py3k fears away.Robert Brewer2011-02-241-57/+61
|
* Removed test.py etc.Robert Brewer2010-04-271-6/+1
|
* Convert the tests to use nose instead of our own runner. This strips out ↵Joseph Tate2010-02-241-28/+29
| | | | | | much coverage and profiling (handled by nose) and lets you focus on writing tests. The biggest changes that have to be done in the tests classes is you have to put the "setup_server" method on the class(es) that need them when running. If you need it for multiple classes, you can use staticmethod() to attach it to multiple classes without using inheritance.
* Switched the json_in tool to take advantage of the new body.processors.Robert Brewer2009-08-231-5/+10
|
* Removed py3print.Robert Brewer2009-06-141-1/+1
|
* trunk - adding a py3util module that will normalize as many differences ↵Lakin Wecker2009-06-011-1/+1
| | | | 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''
* json support: better import logic (#831)alex.morega2009-04-011-6/+4
|
* Skips test if simplejson not available.klarson2009-04-011-60/+66
|
* JSON input/output tools (#831)alex.morega2009-03-311-0/+68