Питон, ага
Питон 2.6.5, из убунты LTS 10.04.3:
import ConfigParser
config = ConfigParser.ConfigParser(allow_no_value=True)
Traceback (most recent call last):
File "stdin", line 1, in
TypeError: __init__() got an unexpected keyword argument 'allow_no_value'
"Looks like that argument was only added in Python 2.7."
import ConfigParser
config = ConfigParser.ConfigParser(allow_no_value=True)
Traceback (most recent call last):
File "stdin", line 1, in
TypeError: __init__() got an unexpected keyword argument 'allow_no_value'
"Looks like that argument was only added in Python 2.7."
no subject
no subject
no subject