ban added the comment:
>> "In particular, the function looks for executable (or for the
>> first item in args) relative to cwd if the executable path is
>> a relative path."
>
> For POSIX, this should be stated as a "relative path without a slash
New submission from Titusz Ban :
While trying to limit the virtual memory used by a process, using
import resource
MAX_VIRTUAL_MEMORY = 1 * 1024 * 1024
resource.setrlimit(resource.RLIMIT_VMEM, (MAX_VIRTUAL_MEMORY,
MAX_VIRTUAL_MEMORY))
The following error occurred:
AttributeError: module
Yih-En Andrew Ban added the comment:
Sure, patch attached.
--
keywords: +patch
Added file: http://bugs.python.org/file42702/issue26812.patch
___
Python tracker
<http://bugs.python.org/issue26
New submission from Yih-En Andrew Ban:
In Python 3.5.1, configparser.ExtendedInterpolation will drop the user-defined
'vars' passed in via ConfigParser.get(vars=...) due to a bug when recursing
beyond depth 1 in ExtendedInterpolation._interpolate_some(). Line 509 of
configparser.py