<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/natsort.git/test_natsort, branch refactor-dev</title>
<subtitle>github.com: SethMMorton/natsort.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/'/>
<entry>
<title>Add explicit tests based on examples in issue #52.</title>
<updated>2018-04-12T04:49:36+00:00</updated>
<author>
<name>Seth M Morton</name>
<email>seth.m.morton@gmail.com</email>
</author>
<published>2018-04-12T04:49:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=5f0abd85fa1e8aa53a1bc1645f009f740ce7f04f'/>
<id>5f0abd85fa1e8aa53a1bc1645f009f740ce7f04f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Tests are updated to reflect new number definitions.</title>
<updated>2018-04-11T05:33:59+00:00</updated>
<author>
<name>Seth M Morton</name>
<email>seth.m.morton@gmail.com</email>
</author>
<published>2018-04-11T05:33:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=322f52ef8c84c43d2930575f74d4753f103bf62a'/>
<id>322f52ef8c84c43d2930575f74d4753f103bf62a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tests for ns.NUMAFTER.</title>
<updated>2018-02-10T21:40:13+00:00</updated>
<author>
<name>Seth M Morton</name>
<email>seth.m.morton@gmail.com</email>
</author>
<published>2018-02-09T07:21:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=391547fbfb52b63509887547a544dba6c0119a39'/>
<id>391547fbfb52b63509887547a544dba6c0119a39</id>
<content type='text'>
These tests verify that the option puts numbers after non-numbers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These tests verify that the option puts numbers after non-numbers.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add code to support placing numbers after non-numbers.</title>
<updated>2018-02-10T21:25:08+00:00</updated>
<author>
<name>Seth M Morton</name>
<email>seth.m.morton@gmail.com</email>
</author>
<published>2018-02-09T07:10:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=d432715ef68470a45561e14c9e3e194bef97e525'/>
<id>d432715ef68470a45561e14c9e3e194bef97e525</id>
<content type='text'>
All infrastructure has been added, but no tests have been yet been
inserted to verify that the code is working properly. That will come
in the next commit.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All infrastructure has been added, but no tests have been yet been
inserted to verify that the code is working properly. That will come
in the next commit.
</pre>
</div>
</content>
</entry>
<entry>
<title>natsort.compat.(null_string -&gt; null_string_locale).</title>
<updated>2018-02-10T21:21:56+00:00</updated>
<author>
<name>Seth M Morton</name>
<email>seth.m.morton@gmail.com</email>
</author>
<published>2018-02-09T06:52:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=48b50476044860764f2e4cd1f76e0e152940abdc'/>
<id>48b50476044860764f2e4cd1f76e0e152940abdc</id>
<content type='text'>
This is in preparation for adding a few new versions of the null
string, one which will be sorted after other strings, and another
pair which will be used when locale is not enabled.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is in preparation for adding a few new versions of the null
string, one which will be sorted after other strings, and another
pair which will be used when locale is not enabled.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix OSX-related bugs in cmp testing.</title>
<updated>2018-02-10T21:21:39+00:00</updated>
<author>
<name>Seth M Morton</name>
<email>seth.m.morton@gmail.com</email>
</author>
<published>2018-02-10T21:21:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=2e474460d65998dd72f1db56556b03cb3f69f806'/>
<id>2e474460d65998dd72f1db56556b03cb3f69f806</id>
<content type='text'>
Because OSX is a "dumb sorting" OS when locale is turned on, the
method by which "dumb sorting" was being tested for natcmp worked
on non-OSX OSs, but failed on OSX. This is addressed by using patch
for both True and False returns of dumb_sort.

For the test of using natcmp with an alg, if hypothesis yields very
extreme integers then conversion of those integers into a float
(due to alg.REAL) can cause the sorting to give unexpected results.
Switching to alg.SIGNED fixes this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because OSX is a "dumb sorting" OS when locale is turned on, the
method by which "dumb sorting" was being tested for natcmp worked
on non-OSX OSs, but failed on OSX. This is addressed by using patch
for both True and False returns of dumb_sort.

For the test of using natcmp with an alg, if hypothesis yields very
extreme integers then conversion of those integers into a float
(due to alg.REAL) can cause the sorting to give unexpected results.
Switching to alg.SIGNED fixes this.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed patching for Python &gt; 3</title>
<updated>2018-02-03T17:44:16+00:00</updated>
<author>
<name>d-kiss</name>
<email>speakupness@gmail.com</email>
</author>
<published>2018-02-03T17:44:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=002cb4cc72982b38f5a38fde7fd3e528f2b64932'/>
<id>002cb4cc72982b38f5a38fde7fd3e528f2b64932</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added locale dumb sort coverage.</title>
<updated>2018-02-03T17:38:50+00:00</updated>
<author>
<name>d-kiss</name>
<email>speakupness@gmail.com</email>
</author>
<published>2018-02-03T17:38:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=217ae0ccdfdfa2947beddf9a9dfc7171f49252ef'/>
<id>217ae0ccdfdfa2947beddf9a9dfc7171f49252ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added coverage to the caching mechanism.</title>
<updated>2018-02-03T17:18:04+00:00</updated>
<author>
<name>d-kiss</name>
<email>speakupness@gmail.com</email>
</author>
<published>2018-02-03T17:18:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=81b6decf8accf4df4f166eda3615d1ed58b1efb8'/>
<id>81b6decf8accf4df4f166eda3615d1ed58b1efb8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Syncing with current master of natsort.</title>
<updated>2018-02-03T16:51:18+00:00</updated>
<author>
<name>d-kiss</name>
<email>speakupness@gmail.com</email>
</author>
<published>2018-02-03T16:51:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/natsort.git/commit/?id=49976d611b4f0d586b10e997d3ea026c843bf2e7'/>
<id>49976d611b4f0d586b10e997d3ea026c843bf2e7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
