Hello!<br><br>Suppose I have following buildout.cfg:<br><br>[buildout]<br>parts = python<br>[python]<br>recipe = zc.recipe.egg<br>interpreter = python<br>eggs = mypackage<br><br>After running bin/buildout I have python interpreter in bin folder.<br>
My question is why I can&#39;t start the python interpreter with -u option, i.e. &#39;bin/python -u&#39;.<br>It fails with the following traceback:<br>Traceback (most recent call last):<br>  File &quot;/home/maxim/projects/<div id=":c9" class="ii gt">
unikeeper/bin/python&quot;, line 11, in &lt;module&gt;<br>    _options, _args = __import__(&quot;getopt&quot;).getopt(sys.argv[1:], &#39;ic:m:&#39;)<br>
  File &quot;/usr/lib/python2.6/getopt.py&quot;, line 91, in getopt<br>    opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:])<br>  File &quot;/usr/lib/python2.6/getopt.py&quot;, line 191, in do_shorts<br>    if short_has_arg(opt, shortopts):<br>

  File &quot;/usr/lib/python2.6/getopt.py&quot;, line 207, in short_has_arg<br>    raise GetoptError(&#39;option -%s not recognized&#39; % opt, opt)<br>getopt.GetoptError: option -u not recognized<br><br>Is it a bug?<br>
</div><br>