<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/distutils/tests/support.py, branch 3.4</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>- Issue #17752: Fix distutils tests when run from the installed location.</title>
<updated>2014-05-07T10:57:44+00:00</updated>
<author>
<name>doko@ubuntu.com</name>
<email>doko@ubuntu.com</email>
</author>
<published>2014-05-07T10:57:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e5de66eaa75c77ac1628f2408fc1238ec643288d'/>
<id>e5de66eaa75c77ac1628f2408fc1238ec643288d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #20045: Fix "setup.py register --list-classifiers".</title>
<updated>2013-12-21T21:57:56+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2013-12-21T21:57:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=716b7222e9aca9d9f934dc68a9a828942b55d3b4'/>
<id>716b7222e9aca9d9f934dc68a9a828942b55d3b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #13901: Prevent test_distutils failures on OS X with --enable-shared.</title>
<updated>2012-02-03T01:42:16+00:00</updated>
<author>
<name>Ned Deily</name>
<email>nad@acm.org</email>
</author>
<published>2012-02-03T01:42:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=cf550dcff8eccac2745acbff2541be3b6405abe4'/>
<id>cf550dcff8eccac2745acbff2541be3b6405abe4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo (was build) and remove redundancy in docstring</title>
<updated>2011-09-01T21:37:56+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-09-01T21:37:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=024de54fc234e4ad67d6f9abaef4d70d3cce0785'/>
<id>024de54fc234e4ad67d6f9abaef4d70d3cce0785</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #12333: fix test_distutils failures under Solaris and derivatives</title>
<updated>2011-08-25T16:32:02+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2011-08-25T16:32:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4fc80b62ba8e6390019a50947daa03320c047bcd'/>
<id>4fc80b62ba8e6390019a50947daa03320c047bcd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix distutils tests on Windows (#12678).</title>
<updated>2011-08-23T23:29:10+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-08-23T23:29:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=175eb995d342ebdffb7f56d106fd47e7253a043a'/>
<id>175eb995d342ebdffb7f56d106fd47e7253a043a</id>
<content type='text'>
- First, support.fixup_build_ext (already used to set proper
  library_dirs value under Unix shared builds) gains the ability to
  correctly set the debug attribute under Windows debug builds.

- Second, the filename for the extension module gets a _d suffix under
  debug builds.

- Third, the test code properly puts our customized build_ext object
  into an internal dictionary to make sure that the install command will
  later use our object instead of re-creating one.  That’s the downside
  of using low-level APIs in our test code: we have to manually push
  knobs and turn handles that would otherwise be handled behind the
  scenes.

Thanks to Nadeem for the testing.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- First, support.fixup_build_ext (already used to set proper
  library_dirs value under Unix shared builds) gains the ability to
  correctly set the debug attribute under Windows debug builds.

- Second, the filename for the extension module gets a _d suffix under
  debug builds.

- Third, the test code properly puts our customized build_ext object
  into an internal dictionary to make sure that the install command will
  later use our object instead of re-creating one.  That’s the downside
  of using low-level APIs in our test code: we have to manually push
  knobs and turn handles that would otherwise be handled behind the
  scenes.

Thanks to Nadeem for the testing.
</pre>
</div>
</content>
</entry>
<entry>
<title>Factor out the build_ext fixup for shared Python builds.</title>
<updated>2011-08-21T15:02:07+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-08-21T15:02:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6e3ad8736ec4efcc471b3db38279ab56b7f12bef'/>
<id>6e3ad8736ec4efcc471b3db38279ab56b7f12bef</id>
<content type='text'>
I need this to fix the failing test_install.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I need this to fix the failing test_install.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing closing paren in docstring (thanks Ezio)</title>
<updated>2011-08-21T10:53:37+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-08-21T10:53:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=52b201f0dfe6ca2961a43f2863ac66d01572cb22'/>
<id>52b201f0dfe6ca2961a43f2863ac66d01572cb22</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Dedent example in docstring</title>
<updated>2011-08-20T05:25:39+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-08-20T05:25:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e1e1331a493385a65d4535453fce6a5ef8bd12e2'/>
<id>e1e1331a493385a65d4535453fce6a5ef8bd12e2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor the copying of xxmodule.c in distutils tests (#12141).</title>
<updated>2011-08-20T04:27:18+00:00</updated>
<author>
<name>Éric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-08-20T04:27:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=def15dafdaad285f5e5dd392a1e5512730335591'/>
<id>def15dafdaad285f5e5dd392a1e5512730335591</id>
<content type='text'>
I need to copy this file in another test too, so I moved the support
code to distutils.tests.support and improved it:

- don’t skip when run from the Lib/distutils/tests directory
- use proper skip machinery instead of custom print/return/test suite
  fiddling.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I need to copy this file in another test too, so I moved the support
code to distutils.tests.support and improved it:

- don’t skip when run from the Lib/distutils/tests directory
- use proper skip machinery instead of custom print/return/test suite
  fiddling.
</pre>
</div>
</content>
</entry>
</feed>
