<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pycrypto.git/ACKS, branch master</title>
<subtitle>github.com: dlitz/pycrypto.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/'/>
<entry>
<title>Name change + .mailmap</title>
<updated>2022-01-25T06:48:14+00:00</updated>
<author>
<name>Darsey Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2022-01-25T05:14:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=9b0a52449b4b4e0afb691f6206e4b59b534965d5'/>
<id>9b0a52449b4b4e0afb691f6206e4b59b534965d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update ChangeLog</title>
<updated>2012-01-13T16:58:17+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2012-01-13T16:58:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=3caf71013d7f293962b67cdaae8e5350d4858679'/>
<id>3caf71013d7f293962b67cdaae8e5350d4858679</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't abuse __builtins__</title>
<updated>2011-10-11T03:59:37+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2011-10-11T03:57:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=25a055334e5cd9d22777864d2a5c0fd8a88bbcff'/>
<id>25a055334e5cd9d22777864d2a5c0fd8a88bbcff</id>
<content type='text'>
According to Jean-Paul Calderone at https://bugs.launchpad.net/pycrypto/+bug/785150:

    `__builtins__` is an implementation detail of CPython. It takes on
    inconsistent values at various times. The use in `common.py` happens to
    work on recent version of CPython, but it doesn't work on PyPy. The only
    thing you should ever do, when you're doing this sort of thing, is "import
    __builtin__; __builtin__.foo".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to Jean-Paul Calderone at https://bugs.launchpad.net/pycrypto/+bug/785150:

    `__builtins__` is an implementation detail of CPython. It takes on
    inconsistent values at various times. The use in `common.py` happens to
    work on recent version of CPython, but it doesn't work on PyPy. The only
    thing you should ever do, when you're doing this sort of thing, is "import
    __builtin__; __builtin__.foo".
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix build on Solaris 9 and eariler</title>
<updated>2011-10-11T03:37:51+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2011-10-11T03:33:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=7401e648d44f9324a313346f45e86fc5e779a7aa'/>
<id>7401e648d44f9324a313346f45e86fc5e779a7aa</id>
<content type='text'>
We use &lt;sys/inttypes.h&gt; on Solaris platforms that don't have &lt;stdint.h&gt;.

This should fix https://bugs.launchpad.net/pycrypto/+bug/518871, reported by
Sebastian Kayser.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We use &lt;sys/inttypes.h&gt; on Solaris platforms that don't have &lt;stdint.h&gt;.

This should fix https://bugs.launchpad.net/pycrypto/+bug/518871, reported by
Sebastian Kayser.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update ACKS and ChangeLog</title>
<updated>2011-10-10T20:22:44+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2011-10-10T19:01:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=32114297da2450af00c4612596bc15da4f6256f2'/>
<id>32114297da2450af00c4612596bc15da4f6256f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Ron Rivet Test</title>
<updated>2010-12-30T12:15:35+00:00</updated>
<author>
<name>Thorsten Behrens</name>
<email>sbehrens@gmx.li</email>
</author>
<published>2010-12-30T12:15:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=4082de9a483d63f49746b1a96d988b5423aa44b6'/>
<id>4082de9a483d63f49746b1a96d988b5423aa44b6</id>
<content type='text'>
o Add Ron Rivet DES test to test_DES.py
o Started on API documentation for 3.x
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
o Add Ron Rivet DES test to test_DES.py
o Started on API documentation for 3.x
</pre>
</div>
</content>
</entry>
<entry>
<title>ACKS: Add Lorenz Quack</title>
<updated>2010-06-11T10:54:22+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2010-06-11T10:54:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=6289ec502253524a44007e469341e26368c6b276'/>
<id>6289ec502253524a44007e469341e26368c6b276</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Tom St. Denis to ACKS (no idea how I missed him.  Sorry!)</title>
<updated>2009-12-22T03:12:50+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2009-12-22T03:12:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=22f19fbbc24b456fe0f0704a24c516029fc20cc3'/>
<id>22f19fbbc24b456fe0f0704a24c516029fc20cc3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix building PyCrypto on Win64 using MS Visual Studio 9.0.</title>
<updated>2009-12-13T19:47:26+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2009-12-13T19:43:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=f05263c70f66dc4ee955b3ddcc02e5958070a5ff'/>
<id>f05263c70f66dc4ee955b3ddcc02e5958070a5ff</id>
<content type='text'>
Thanks to Nevins Bartolomeo (https://launchpad.net/~nevins-bartolomeo) for
contributing this fix.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Thanks to Nevins Bartolomeo (https://launchpad.net/~nevins-bartolomeo) for
contributing this fix.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Sergey Chernov to ACKS (for pointing out a bug)</title>
<updated>2009-08-03T23:03:59+00:00</updated>
<author>
<name>Dwayne C. Litzenberger</name>
<email>dlitz@dlitz.net</email>
</author>
<published>2009-08-03T19:04:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pycrypto.git/commit/?id=852e642b7f45b2faeb0e94c2fef88ed0a22b81a9'/>
<id>852e642b7f45b2faeb0e94c2fef88ed0a22b81a9</id>
<content type='text'>
The bug was fixed in commit f6a51a26eee853cd2a8e75bde20c014500e08f81.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The bug was fixed in commit f6a51a26eee853cd2a8e75bde20c014500e08f81.
</pre>
</div>
</content>
</entry>
</feed>
