mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
String: set default re subprocess timeout to 0.1, since that should be quite enough.
Conflicts: plugins/String/config.py
This commit is contained in:
parent
e11dc28025
commit
0e3002d1f8
@ -53,4 +53,11 @@ conf.registerGlobalValue(String.levenshtein, 'max',
|
||||
this variable, to limit the size of arguments passed to the levenshtein
|
||||
command.""")))
|
||||
|
||||
conf.registerGroup(String, 're')
|
||||
conf.registerGlobalValue(String.re, 'timeout',
|
||||
registry.PositiveFloat(0.1, """Determines the maximum time, in seconds, that
|
||||
a regular expression is given to execute before being terminated. Since
|
||||
there is a possibility that user input for the re command can cause it to
|
||||
eat up large amounts of ram or cpu time, it's a good idea to keep this
|
||||
low. Most normal regexps should not take very long at all."""))
|
||||
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|
||||
|
@ -1,3 +1,3 @@
|
||||
"""stick the various versioning attributes in here, so we only have to change
|
||||
them once."""
|
||||
version = '0.83.4.1+limnoria (2011-08-13T01:56:21+0200)'
|
||||
version = '0.83.4.1+limnoria (2011-08-13T01:57:03+0200)'
|
||||
|
Loading…
Reference in New Issue
Block a user