<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/greenlet.git/tests/test_weakref.py, branch issue184</title>
<subtitle>github.com: python-greenlet/greenlet.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/greenlet.git/'/>
<entry>
<title>Move to the src/ layout, and make greenlet a package.</title>
<updated>2020-11-12T17:49:12+00:00</updated>
<author>
<name>Jason Madden</name>
<email>jamadden@gmail.com</email>
</author>
<published>2020-11-12T17:49:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/greenlet.git/commit/?id=8448b094d1b81788ac9cbaf86a184712f1daf5e0'/>
<id>8448b094d1b81788ac9cbaf86a184712f1daf5e0</id>
<content type='text'>
Make 'tests' become 'greenlet.tests', and be compatible with 'python -m unittest discover'.

Fixes #184. Fixes #184. Fixes #189.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make 'tests' become 'greenlet.tests', and be compatible with 'python -m unittest discover'.

Fixes #184. Fixes #184. Fixes #189.
</pre>
</div>
</content>
</entry>
<entry>
<title>Clear greenlet weakrefs first</title>
<updated>2012-05-13T07:50:32+00:00</updated>
<author>
<name>Alexey Borzenkov</name>
<email>snaury@gmail.com</email>
</author>
<published>2012-05-13T07:50:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/greenlet.git/commit/?id=744eef4aad588eb6b9c1902da3cf26214f726999'/>
<id>744eef4aad588eb6b9c1902da3cf26214f726999</id>
<content type='text'>
Otherwise user code may resurrect greenlet when
it is already destroyed, making references to
freed objects possible (see the test case).</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Otherwise user code may resurrect greenlet when
it is already destroyed, making references to
freed objects possible (see the test case).</pre>
</div>
</content>
</entry>
<entry>
<title>pep8/cleanup whitespace in all .py files</title>
<updated>2012-01-26T23:40:10+00:00</updated>
<author>
<name>Ralf Schmitt</name>
<email>ralf@systemexit.de</email>
</author>
<published>2012-01-26T14:51:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/greenlet.git/commit/?id=06da7e12c0ff913e41238d5c9745c95642bd8376'/>
<id>06da7e12c0ff913e41238d5c9745c95642bd8376</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Get rid of deprecation warnings from unittest in Python 3.2.</title>
<updated>2011-03-26T19:35:42+00:00</updated>
<author>
<name>Kyle Ambroff</name>
<email>ambroff@lindenlab.com</email>
</author>
<published>2011-03-26T19:35:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/greenlet.git/commit/?id=1ed8c17ef1d96928ccd390e579140d175cf61df4'/>
<id>1ed8c17ef1d96928ccd390e579140d175cf61df4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Load README for long_description, and drop dependency on nose.</title>
<updated>2010-03-22T22:07:05+00:00</updated>
<author>
<name>Kyle Ambroff</name>
<email>ambroff@lindenlab.com</email>
</author>
<published>2010-03-22T22:07:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/greenlet.git/commit/?id=91caa604ed7f3165ec93834941db64fa90711f95'/>
<id>91caa604ed7f3165ec93834941db64fa90711f95</id>
<content type='text'>
Le sigh... since there is no stable release of nose for Py3k, I've dropped
nose as a dependency for running unit tests. All tests now use unittest,
and there is a custom test suite builder, and a hack to automatically
build the test extension used by tests/test_extension_interface.py.

The hack for building the extension is to get around the inflexible extension
support in distutils. There isn't a way to just add an extension that isn't
automatically included in the binary distribution, so it had to be done
manually.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Le sigh... since there is no stable release of nose for Py3k, I've dropped
nose as a dependency for running unit tests. All tests now use unittest,
and there is a custom test suite builder, and a hack to automatically
build the test extension used by tests/test_extension_interface.py.

The hack for building the extension is to get around the inflexible extension
support in distutils. There isn't a way to just add an extension that isn't
automatically included in the binary distribution, so it had to be done
manually.
</pre>
</div>
</content>
</entry>
<entry>
<title>Moving tests to tests directory.</title>
<updated>2010-01-18T10:14:38+00:00</updated>
<author>
<name>Kyle Ambroff</name>
<email>ambroff@lindenlab.com</email>
</author>
<published>2010-01-18T10:14:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/greenlet.git/commit/?id=c7f218d963538af91f80ad1e3fd6d64065d12fd6'/>
<id>c7f218d963538af91f80ad1e3fd6d64065d12fd6</id>
<content type='text'>
--HG--
rename : test_gc.py =&gt; tests/test_gc.py
rename : test_generator.py =&gt; tests/test_generator.py
rename : test_generator_nested.py =&gt; tests/test_generator_nested.py
rename : test_greenlet.py =&gt; tests/test_greenlet.py
rename : test_weakref.py =&gt; tests/test_weakref.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
rename : test_gc.py =&gt; tests/test_gc.py
rename : test_generator.py =&gt; tests/test_generator.py
rename : test_generator_nested.py =&gt; tests/test_generator_nested.py
rename : test_greenlet.py =&gt; tests/test_greenlet.py
rename : test_weakref.py =&gt; tests/test_weakref.py
</pre>
</div>
</content>
</entry>
</feed>
