<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/disutils2.git/distutils2/version.py, branch master</title>
<subtitle>hg.python.org: Obsolete (use python-setuptools-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/'/>
<entry>
<title>Fix stringification of final versions (#16107).</title>
<updated>2012-10-27T15:58:05+00:00</updated>
<author>
<name>?ric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2012-10-27T15:58:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=3bd2eeda2384239d49606b8dbbcc50d9aea74c02'/>
<id>3bd2eeda2384239d49606b8dbbcc50d9aea74c02</id>
<content type='text'>
Report and patch by Richard Jones.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Report and patch by Richard Jones.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed the trailing zero wiping (#14264)</title>
<updated>2012-03-12T21:06:59+00:00</updated>
<author>
<name>Tarek Ziade</name>
<email>tarek@ziade.org</email>
</author>
<published>2012-03-12T21:06:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=055a999a0944fb426e1655d59e3d8399f123b259'/>
<id>055a999a0944fb426e1655d59e3d8399f123b259</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix comparison bug with 'rc' versions (#11841)</title>
<updated>2012-02-27T10:57:12+00:00</updated>
<author>
<name>?ric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2012-02-27T10:57:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=d44c91095d18d49af41cfd35eec3dc1dfc39b36d'/>
<id>d44c91095d18d49af41cfd35eec3dc1dfc39b36d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos in comments.</title>
<updated>2012-02-06T14:23:55+00:00</updated>
<author>
<name>?ric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2012-02-06T14:23:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=5c16b5357bbc67276c92ce741882c8a59992b9e8'/>
<id>5c16b5357bbc67276c92ce741882c8a59992b9e8</id>
<content type='text'>
Reported by David-Sarah Hopwood on the Bitbucket bug tracker of the
former verlib/distutilsversion project.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reported by David-Sarah Hopwood on the Bitbucket bug tracker of the
former verlib/distutilsversion project.
</pre>
</div>
</content>
</entry>
<entry>
<title>Cosmetic fixes for whitespace and a regex.</title>
<updated>2011-10-04T23:08:51+00:00</updated>
<author>
<name>?ric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-10-04T23:08:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=4ae9f13581e67df33042952cedd023e3b3dded8c'/>
<id>4ae9f13581e67df33042952cedd023e3b3dded8c</id>
<content type='text'>
The goal of the regex is to catch a (alpha), b (beta), c or rc
(release candidate), so the existing pattern puzzled me.  Tests were
OK before and after the change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The goal of the regex is to catch a (alpha), b (beta), c or rc
(release candidate), so the existing pattern puzzled me.  Tests were
OK before and after the change.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the backport fixes.</title>
<updated>2011-09-18T18:20:13+00:00</updated>
<author>
<name>?ric Araujo</name>
<email>merwok@netwok.org</email>
</author>
<published>2011-09-18T18:20:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=506cfea8bbd41e865bc36a836bdbc05aae8d74bb'/>
<id>506cfea8bbd41e865bc36a836bdbc05aae8d74bb</id>
<content type='text'>
Backports:
- sysconfig is now always imported from our backports
- when hashlib is not found, our backport is used instead of the md5
  module (debatable; we could just drop hashlib)

Version-dependent features:
- PEP 370 features are only enabled for 2.6+
- the check for sys.dont_write_bytecode was fixed to use getattr
  with a default value instead of hasattr

Idioms/syntax:
- octal literals lost their extra 0
- misused try/except blocks have been changed back to try/finally
  (it?s legal in 2.4 too, it?s only try/except/finally that isn?t)
- exception catching uses the regular 2.x idiom instead of sys.exc_info
- file objects are closed within finally blocks (this causes much
  whitespace changes but actually makes diff with packaging easier)

Renamed modules:
- some missed renamings (_thread, Queue, isAlive, urllib.urlsplit, etc.)
  were fixed

Other:
- a few false positive replacements of ?packaging? by ?distutils2? in
  comments or docstrings were reverted
- util.is_packaging regained its name
- assorted whitespace/comment/import changes to match packaging
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backports:
- sysconfig is now always imported from our backports
- when hashlib is not found, our backport is used instead of the md5
  module (debatable; we could just drop hashlib)

Version-dependent features:
- PEP 370 features are only enabled for 2.6+
- the check for sys.dont_write_bytecode was fixed to use getattr
  with a default value instead of hasattr

Idioms/syntax:
- octal literals lost their extra 0
- misused try/except blocks have been changed back to try/finally
  (it?s legal in 2.4 too, it?s only try/except/finally that isn?t)
- exception catching uses the regular 2.x idiom instead of sys.exc_info
- file objects are closed within finally blocks (this causes much
  whitespace changes but actually makes diff with packaging easier)

Renamed modules:
- some missed renamings (_thread, Queue, isAlive, urllib.urlsplit, etc.)
  were fixed

Other:
- a few false positive replacements of ?packaging? by ?distutils2? in
  comments or docstrings were reverted
- util.is_packaging regained its name
- assorted whitespace/comment/import changes to match packaging
</pre>
</div>
</content>
</entry>
<entry>
<title>Backported packaging from cpython default, overwriting previous version.</title>
<updated>2011-08-18T09:11:00+00:00</updated>
<author>
<name>Vinay Sajip</name>
<email>vinay_sajip@yahoo.co.uk</email>
</author>
<published>2011-08-18T09:11:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=1797898898a76efb0f3e78b394675033f3c2fad2'/>
<id>1797898898a76efb0f3e78b394675033f3c2fad2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make sure project that have numbers in their names can be parsed</title>
<updated>2011-01-01T09:47:44+00:00</updated>
<author>
<name>Tarek Ziade</name>
<email>tarek@ziade.org</email>
</author>
<published>2011-01-01T09:47:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=03dae7f7be990bc07f76db4007d782f28fa91b1d'/>
<id>03dae7f7be990bc07f76db4007d782f28fa91b1d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>allowing predicates without parenthesis -- that's how the install script will work</title>
<updated>2011-01-01T09:05:56+00:00</updated>
<author>
<name>Tarek Ziade</name>
<email>tarek@ziade.org</email>
</author>
<published>2011-01-01T09:05:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=e617022710ce95820d035cce1aee836a45f171a4'/>
<id>e617022710ce95820d035cce1aee836a45f171a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed hashing behaviour for NormalizedVersion. Equal versions have the</title>
<updated>2010-09-30T00:42:58+00:00</updated>
<author>
<name>Amos Latteier</name>
<email>amos@latteier.com</email>
</author>
<published>2010-09-30T00:42:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/disutils2.git/commit/?id=d37168c63fc520585a347f03701d5ddad41a09bd'/>
<id>d37168c63fc520585a347f03701d5ddad41a09bd</id>
<content type='text'>
same hash now. This is my understanding of what should happen given the info
at http://docs.python.org/reference/datamodel#object.__hash__

Also added tests for hashing.

Also fixed a nit in a doc string that made emacs colorize versions.py
incorrectly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
same hash now. This is my understanding of what should happen given the info
at http://docs.python.org/reference/datamodel#object.__hash__

Also added tests for hashing.

Also fixed a nit in a doc string that made emacs colorize versions.py
incorrectly.
</pre>
</div>
</content>
</entry>
</feed>
