<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/distutils/interactive.py, branch dependabot/pip/gitpython-3.1.14</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>2to3:DEP: Remove interactive setup and gnu compiler configuration.</title>
<updated>2013-03-05T16:09:46+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-03-05T05:47:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=baeaeac6885d67238321101863a7753d366c535e'/>
<id>baeaeac6885d67238321101863a7753d366c535e</id>
<content type='text'>
These havn't been deprecated, but I think few have heard of them, much
less used them. Before this change, running setup.py without any
arguments would result in interactive help. This patch removes that
interactive help and lets setup print its usual list of commands and
options.

All the script uses of the numpy/distutils/fcompiler compilers look
quite broken to me, but I have tried to maintain compatibility with the
earlier version of gnu.py after the removal of `raw_input`.

These removals solve an incompatibility between Python3 and Python2.
The current interactive setup help uses `raw_input`, which has been
removed in python3 and replaced by `input`.  However, python2 already
has an `input` that has different semantics.  Rather than deal with
this, I think it simpler to keep both `raw_input` and `input` out of
numpy.

Closes #3063
Closes #3079
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These havn't been deprecated, but I think few have heard of them, much
less used them. Before this change, running setup.py without any
arguments would result in interactive help. This patch removes that
interactive help and lets setup print its usual list of commands and
options.

All the script uses of the numpy/distutils/fcompiler compilers look
quite broken to me, but I have tried to maintain compatibility with the
earlier version of gnu.py after the removal of `raw_input`.

These removals solve an incompatibility between Python3 and Python2.
The current interactive setup help uses `raw_input`, which has been
removed in python3 and replaced by `input`.  However, python2 already
has an `input` that has different semantics.  Rather than deal with
this, I think it simpler to keep both `raw_input` and `input` out of
numpy.

Closes #3063
Closes #3079
</pre>
</div>
</content>
</entry>
<entry>
<title>2to3: Put `from __future__ import division in every python file.</title>
<updated>2013-03-01T18:22:47+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-02-27T20:26:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6aa264c4bad9c89ccdd9ecd5a1cb5ef10643ec51'/>
<id>6aa264c4bad9c89ccdd9ecd5a1cb5ef10643ec51</id>
<content type='text'>
This should be harmless, as we already are division clean. However,
placement of this import takes some care. In the future a script
can be used to append new features without worry, at least until
such time as it exceeds a single line. Having that ability will
make it easier to deal with absolute imports and printing updates.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should be harmless, as we already are division clean. However,
placement of this import takes some care. In the future a script
can be used to append new features without worry, at least until
such time as it exceeds a single line. Having that ability will
make it easier to deal with absolute imports and printing updates.
</pre>
</div>
</content>
</entry>
<entry>
<title>2to3: Use modern exception syntax.</title>
<updated>2013-02-27T03:04:59+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-02-27T03:04:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=705bf928e1256a06019c75ee945370fbe89cdde7'/>
<id>705bf928e1256a06019c75ee945370fbe89cdde7</id>
<content type='text'>
Example:  except ValueError,msg: -&gt; except ValueError as msg:
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Example:  except ValueError,msg: -&gt; except ValueError as msg:
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix issue 715.</title>
<updated>2008-04-10T11:05:16+00:00</updated>
<author>
<name>Pearu Peterson</name>
<email>pearu.peterson@gmail.com</email>
</author>
<published>2008-04-10T11:05:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=34e3f4966dcbd14094e00b11f6379f5c13a7c6c1'/>
<id>34e3f4966dcbd14094e00b11f6379f5c13a7c6c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace numpy.distutils.exec_command.splitcmdline with shlex.split instead.</title>
<updated>2007-12-26T07:08:16+00:00</updated>
<author>
<name>cookedm</name>
<email>cookedm@localhost</email>
</author>
<published>2007-12-26T07:08:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=87f61abda82e21fc77facd3931e0182dd564c3a0'/>
<id>87f61abda82e21fc77facd3931e0182dd564c3a0</id>
<content type='text'>
It has the same problems as our old numpy.distutils.ccompiler.split_quoted.
splitcmdline still exists, but uses shlex.split, and issues a DeprecationWarning

This has the positive side effect of not having numpy.distutils pulled in
when numpy is imported -- there was a use of splitcmdline in numpy.testing.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It has the same problems as our old numpy.distutils.ccompiler.split_quoted.
splitcmdline still exists, but uses shlex.split, and issues a DeprecationWarning

This has the positive side effect of not having numpy.distutils pulled in
when numpy is imported -- there was a use of splitcmdline in numpy.testing.
</pre>
</div>
</content>
</entry>
<entry>
<title>Undo changeset 3839: interactive support is being used (this convinient on windows where one can click on setup.py and build the numpy or whatever package in 2 keystrokes).</title>
<updated>2007-06-01T10:15:17+00:00</updated>
<author>
<name>Pearu Peterson</name>
<email>pearu.peterson@gmail.com</email>
</author>
<published>2007-06-01T10:15:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=84e68dd73f68f6bfd48ffa7007f65434bd9cb538'/>
<id>84e68dd73f68f6bfd48ffa7007f65434bd9cb538</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove interactive support. No one uses it.</title>
<updated>2007-05-28T18:00:22+00:00</updated>
<author>
<name>cookedm</name>
<email>cookedm@localhost</email>
</author>
<published>2007-05-28T18:00:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=5f88e3d40e2c2efc530607691f822e5f73315861'/>
<id>5f88e3d40e2c2efc530607691f822e5f73315861</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>merge from distutils-revamp branch (step 2)</title>
<updated>2007-05-25T11:41:16+00:00</updated>
<author>
<name>cookedm</name>
<email>cookedm@localhost</email>
</author>
<published>2007-05-25T11:41:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=5267b3e16654ef326f525fdb9a1287a88396c616'/>
<id>5267b3e16654ef326f525fdb9a1287a88396c616</id>
<content type='text'>
- fcompiler changes. All flags, executables, etc., should be overridable
  by the user with config_fc (either command line or setup.cfg) or by
  environment variables
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fcompiler changes. All flags, executables, etc., should be overridable
  by the user with config_fc (either command line or setup.cfg) or by
  environment variables
</pre>
</div>
</content>
</entry>
<entry>
<title>Whitespace cleanup.</title>
<updated>2007-01-08T21:56:54+00:00</updated>
<author>
<name>Stefan van der Walt</name>
<email>stefan@sun.ac.za</email>
</author>
<published>2007-01-08T21:56:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1bd2d49ef378fb869d015cef32c3e44a4c03a8f0'/>
<id>1bd2d49ef378fb869d015cef32c3e44a4c03a8f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor bug fix in interactive sys.argv set feature.</title>
<updated>2006-04-24T19:13:17+00:00</updated>
<author>
<name>Pearu Peterson</name>
<email>pearu.peterson@gmail.com</email>
</author>
<published>2006-04-24T19:13:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=79ff23570f076f23f34c35a64b9530ffc672808a'/>
<id>79ff23570f076f23f34c35a64b9530ffc672808a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
