summaryrefslogtreecommitdiff
path: root/cherrypy/_cpchecker.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove reliance on sixJason R. Coombs2018-09-021-6/+4
|
* Swap pep257 with pydocstyleSviatoslav Sydorenko2018-06-161-1/+1
|
* Replace copy/paste with re-used code.Jason R. Coombs2017-12-171-10/+3
|
* Omit unused valuesJason R. Coombs2017-12-171-2/+2
|
* Make cherrypy._cpchecker PEP257-compliantSviatoslav Sydorenko2017-10-211-6/+4
|
* Use six to import builtinsJason R. Coombs2017-07-091-1/+1
|
* copykeys is not needed here; mappings naturally iterate on their keys and ↵Jason R. Coombs2017-07-091-5/+5
| | | | extend will enact the iteration immediately.
* Replace iteritems with six usage.Jason R. Coombs2017-07-081-4/+6
|
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-73/+73
| | | | pre-commit run double-quote-string-fixer --all-files
* More PEP8 work.Gustavo Picon2014-01-121-25/+39
|
* Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-22/+13
| | | | | --HG-- branch : autopep8
* Removed trailing whitespace from the codebase.Gustavo Picon2012-04-031-42/+42
| | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'`
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+327
|
* Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunkRobert Brewer2011-02-251-327/+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.
* Freeow. The magic cherrypy/_cpcompat.py module to take all our py3k fears away.Robert Brewer2011-02-241-9/+9
|
* A couple doc cleanups.Robert Brewer2010-08-081-3/+2
|
* Docs: more refman work.Robert Brewer2010-02-241-6/+12
|
* trunk: more syntax syncs with python3, including a couple bugfixes that were ↵Robert Brewer2009-06-021-18/+18
| | | | done in the python3 branch
* Backport of [2304] from python3 to trunk (cpchecker warning fix for ↵Robert Brewer2009-05-311-0/+3
| | | | body_params).
* Added other site-config-only namespaces to the new checker.Robert Brewer2009-04-161-2/+3
|
* Added a checker for server.* entries in app config.Robert Brewer2009-04-161-1/+20
|
* New check_app_config_brackets warning.Robert Brewer2009-02-211-0/+14
|
* Fix for #891 (substituted formatwarning is old, signature in python2.6 is ↵Robert Brewer2009-01-091-1/+1
| | | | changed). Also updated the isDaemon/setDaemon calls to threading.daemon for Py2.6+.
* #884 - better checker that doesn't match /foobar entries for applications ↵Lakin Wecker2008-12-161-1/+3
| | | | mounted at /foo
* #884 - cpchecker method to catch application configuration that starts with ↵Lakin Wecker2008-12-161-0/+14
| | | | script-name
* Fix for #754 (Checker raises false alarm with application-level config ↵Robert Brewer2008-01-131-0/+1
| | | | namespace).
* Port to trunk of [1706] and [1714].Robert Brewer2007-09-281-0/+20
|
* Checker warning for #711.Robert Brewer2007-09-081-2/+26
|
* New pywebd module. Trunk is now "3.1alpha".Robert Brewer2007-03-051-4/+5
|
* Fix for #632 (CP checker misleading warning on customized toolbox).Robert Brewer2006-12-281-7/+8
|
* Moved checker back to cherrypy.checker from engine, and also added a new ↵Robert Brewer2006-12-281-21/+96
| | | | check_config_types method. There's also a new checker config namespace, so you can turn off the checker with "checker.on = False", or turn off specific methods with "checker.check_method_foo = None".
* More checker checks (plus a fix for the fix for the fix).Robert Brewer2006-12-211-2/+27
|
* Fix for the fix.Robert Brewer2006-12-211-2/+2
|
* checker:Robert Brewer2006-12-211-5/+7
| | | | | | 1. Moved cherrypy.checker to cherrypy.engine.checker so it can be set to None or another Checker instance in config. 2. Replaced Checker.checkall with {{{Checker.__call__}}}. 3. Fixed an output bug in check_compatibility.
* Moved check_compatibility into _cpchecker.py. Also allow disabling of ↵Robert Brewer2006-12-201-1/+40
| | | | Checker methods by setting them to None.
* New cherrypy.checker which runs by default in development mode.Robert Brewer2006-12-201-0/+81