History log of /external/python/cpython2/Lib/test/test_winreg.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
6507657dddebc629e49f3dc683d89a96a481fb86 07-Sep-2016 Martin Panter <vadmium+py@gmail.com> Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
/external/python/cpython2/Lib/test/test_winreg.py
6690eed48b3ad97d4383ce612ff4e4c318a80c45 03-Jul-2014 Zachary Ware <zachary.ware@gmail.com> Issue #21151: Fixed a segfault in the _winreg module.

When ``None`` was passed as a ``REG_BINARY`` value to SetValueEx,
PyMem_DEL was called on an uninitialized buffer. Patch by John Ehresman.

(Also an incidental typo fix in a comment in test_winreg)
/external/python/cpython2/Lib/test/test_winreg.py
3c603f3618fcf7c519e96b9a0d11e2670a47cbb4 26-Apr-2014 Tim Golden <mail@timgolden.me.uk> Issue21349 Passing a memoryview to _winreg.SetValueEx now correctly raises a TypeError where it previously crashed the interpreter. Patch by Brian Kearns
/external/python/cpython2/Lib/test/test_winreg.py
5cea09d290a1c0a1615db64cff31108948269596 04-May-2013 Ezio Melotti <ezio.melotti@gmail.com> #7855: Add tests for ctypes/winreg for issues found in IronPython. Initial patch by Dino Viehland.
/external/python/cpython2/Lib/test/test_winreg.py
5cbff51745bf8e79d75cc0ee4597c5142aa0c5fd 21-Apr-2013 R David Murray <rdmurray@bitdance.com> #17065: Use process-unique key for winreg test.

Patch by Jeremy Kloth.
/external/python/cpython2/Lib/test/test_winreg.py
33e05e7905c00f601e4d1fea9ec0df0b3b9cb39c 27-Dec-2012 Brian Curtin <brian@python.org> Fix #16759. Convert DWORD registry values using unsigned long.

When converting REG_DWORD registry values into Python, the conversion
needs to be made from an *unsigned* long (k instead of i) to match the
DWORD type.
/external/python/cpython2/Lib/test/test_winreg.py
0e091b036503adc1c46022dbf974bb2f64ceed17 27-Dec-2012 Brian Curtin <brian@python.org> Fix #14420. Check for PyLong as well as PyInt when converting in Py2Reg.

This fixes a ValueError seen in winreg.SetValueEx when passed long
winreg.REG_DWORD values that should be supported by the underlying API.
/external/python/cpython2/Lib/test/test_winreg.py
bacf1bf35502931ce5de8c2e026ab6be65f943ef 19-Dec-2012 Andrew Svetlov <andrew.svetlov@gmail.com> replace threw with raised (#16714)
/external/python/cpython2/Lib/test/test_winreg.py
4bb142b1b712d8e67c81687d396685fba55abf77 18-Dec-2012 Andrew Svetlov <andrew.svetlov@gmail.com> Issue #16714: use 'raise' exceptions, don't 'throw'.

Patch by Serhiy Storchaka.
/external/python/cpython2/Lib/test/test_winreg.py
f526297d1384ebb5a1c154986e7fd882f586cacb 13-Jul-2012 Antoine Pitrou <solipsis@pitrou.net> Try other approach to fix issue #15334.
/external/python/cpython2/Lib/test/test_winreg.py
d8412c84c7a6d853cb5295e1bddd3210abd943ab 13-Jul-2012 Antoine Pitrou <solipsis@pitrou.net> Issue #15334: skip test_dynamic_key when run in non-interactive mode.
Patch by Jeremy Kloth.
/external/python/cpython2/Lib/test/test_winreg.py
2623a37852153363335956afab010cb0beb7e74e 21-Nov-2010 Ezio Melotti <ezio.melotti@gmail.com> Merged revisions 86596 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line

#9424: Replace deprecated assert* methods in the Python test suite.
........
/external/python/cpython2/Lib/test/test_winreg.py
ecdead62b4d7d6870c16a95f8dfcb40cd16bf516 22-Oct-2010 Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> #9289: Workaround for test_long_key(test_winreg) failure on Win2000.
RegDeleteKeyA fails with ERROR_MORE_DATA if the length of 2nd
parameter exceeds 260.
/external/python/cpython2/Lib/test/test_winreg.py
b64c89bd7abf05baad517b50cef7bc7de7b4eb74 25-May-2010 Brian Curtin <brian.curtin@gmail.com> Fix #2810 - handle the case where some registry calls return
ERROR_MORE_DATA, requiring another call to get the remaining data.

Patch by Daniel Stutzbach
/external/python/cpython2/Lib/test/test_winreg.py
e9da81c62bd489e7c0347e896bf6d108f8a10f97 03-Apr-2010 Brian Curtin <brian.curtin@gmail.com> Fix assertRaises usage on reflection functions which should raise
NotImplementedError on Windows XP and below.
/external/python/cpython2/Lib/test/test_winreg.py
e33fa887d39f026dadd8bcb182725c90f7d51ece 02-Apr-2010 Brian Curtin <brian.curtin@gmail.com> Implement #7347. Add CreateKeyEx, DeleteKeyEx, and update _winreg tests.

*ReflectionKey functions used to not be documented or tested, but they are
now sufficiently documented and tested on platforms where they apply.
Additionally, fixed a bug in QueryReflectionKey which was returning an
incorrect value.

All tests pass from XP through Windows 7, on 32 and 64-bit platforms.
/external/python/cpython2/Lib/test/test_winreg.py
aa98058cc44ba20f35c106d20918c6196b737561 24-Jan-2010 Ezio Melotti <ezio.melotti@gmail.com> use assert[Not]In where appropriate
/external/python/cpython2/Lib/test/test_winreg.py
64092a56ec2f9278cbee033fc123352cbb74aaa4 08-Jun-2009 Benjamin Peterson <benjamin@python.org> backport r73273
/external/python/cpython2/Lib/test/test_winreg.py
597ebab74466593dc05a35faad0f5c316900153b 31-Mar-2009 R. David Murray <rdmurray@bitdance.com> A few more test skips via import_module, and change import_module to
return the error message produced by importlib, so that if an import
in the package whose import is being wrapped is what failed the skip
message will contain the name of that module instead of the name of the
wrapped module. Also fixed formatting of some previous comments.
/external/python/cpython2/Lib/test/test_winreg.py
59beec326a4721154a952027cb34c3e2e4612e28 30-Mar-2009 R. David Murray <rdmurray@bitdance.com> Add import_function method to test.test_support, and modify a number of
tests that expect to be skipped if imports fail or functions don't
exist to use import_function and import_module. The ultimate goal is
to change regrtest to not skip automatically on ImportError. Checking
in now to make sure the buldbots don't show any errors on platforms
I can't direct test on.
/external/python/cpython2/Lib/test/test_winreg.py
b39a756afd08a2261dffe2b649f3a3550fb6294f 08-Jan-2008 Christian Heimes <christian@cheimes.de> Added __enter__ and __exit__ functions to HKEY object
Added ExpandEnvironmentStrings to the _winreg module.
/external/python/cpython2/Lib/test/test_winreg.py
0226d857377abf6826571b618d05ae94d5f9a6b0 30-Aug-2007 Georg Brandl <georg@python.org> * Skip test_pipes on non-POSIX.
* Don't raise TestSkipped within a test function.
/external/python/cpython2/Lib/test/test_winreg.py
3376a9a711ae8ca8ca7fb4072bd69921b14a42e2 24-Aug-2007 Georg Brandl <georg@python.org> Patch #1006: port test_winreg to unittest.
/external/python/cpython2/Lib/test/test_winreg.py
bda0dde1c46c7f86c09f1b54d0b14125e9ab7f52 24-Jul-2006 Martin v. Löwis <martin@v.loewis.de> Patch #1448199: Release GIL around ConnectRegistry.
/external/python/cpython2/Lib/test/test_winreg.py
291481b4dbb88560179c8064c1e2e198365bd3dd 03-Dec-2003 Guido van Rossum <guido@python.org> Reduce the size of Big String and Big Binary tests to 2**14 (minus one
for Big String). This should make the tests pass on Win98SE. Note
that the docs only promise lengths up to 2048. Unfortunately this no
longer tests for the segfault I was seeing earlier, but I'm confident
I've nailed that one. :-) Fixes SF 852281. Will backport to 2.3.
/external/python/cpython2/Lib/test/test_winreg.py
0a18552b299761b34413dc4045610cbf9a75768c 30-Nov-2003 Guido van Rossum <guido@python.org> Add testcases for _winreg segfault (SF 851056).
/external/python/cpython2/Lib/test/test_winreg.py
04f357cffef6d764f2f0ff2671dabde75ec250d1 23-Jul-2002 Barry Warsaw <barry@python.org> Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".

This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).

Now Tim and Jack can have at it. :)
/external/python/cpython2/Lib/test/test_winreg.py
339d0f720e86dc34837547c90d3003a4a68d7d46 17-Aug-2001 Martin v. Löwis <martin@v.loewis.de> Patch #445762: Support --disable-unicode
- Do not compile unicodeobject, unicodectype, and unicodedata if Unicode is disabled
- check for Py_USING_UNICODE in all places that use Unicode functions
- disables unicode literals, and the builtin functions
- add the types.StringTypes list
- remove Unicode literals from most tests.
/external/python/cpython2/Lib/test/test_winreg.py
f785042433f0c43ed1ba2ba0388fc51d79bcf5c3 17-Jan-2001 Fredrik Lundh <fredrik@pythonware.com> a bold attempt to fix things broken by MAL's verify patch: import
'verify' iff it's used by a test module...
/external/python/cpython2/Lib/test/test_winreg.py
3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e 17-Jan-2001 Marc-André Lemburg <mal@egenix.com> This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.

Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
/external/python/cpython2/Lib/test/test_winreg.py
004d5e6880940ddbb38460986ac62ee0f1bae97d 23-Oct-2000 Fred Drake <fdrake@acm.org> Make reindent.py happy (convert everything to 4-space indents!).
/external/python/cpython2/Lib/test/test_winreg.py
7e47402264cf87b9bbb61fc9ff610af08add7c7b 16-Jul-2000 Thomas Wouters <thomas@python.org> Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
comments, docstrings or error messages. I fixed two minor things in
test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't").

There is a minor style issue involved: Guido seems to have preferred English
grammar (behaviour, honour) in a couple places. This patch changes that to
American, which is the more prominent style in the source. I prefer English
myself, so if English is preferred, I'd be happy to supply a patch myself ;)
/external/python/cpython2/Lib/test/test_winreg.py
99b84bdaad28f6deba1462974cbe02ead36cbf75 04-Jul-2000 Paul Prescod <prescod@prescod.net> Removed some tabs.
/external/python/cpython2/Lib/test/test_winreg.py
252af9ca27be699c97644923e71d48a71dca406a 29-Jun-2000 Fred Drake <fdrake@acm.org> The low-level interface is now in _winreg; update the import here.
/external/python/cpython2/Lib/test/test_winreg.py
a05e293a219f0fbaf4301fa7a292b9578a523675 28-Jun-2000 Jeremy Hylton <jeremy@alum.mit.edu> typos fixed by Rob Hooft
/external/python/cpython2/Lib/test/test_winreg.py
d9b0f265155360998e6e9269685e03068527bb68 01-Apr-2000 Fred Drake <fdrake@acm.org> Mark Hammond: Uncomment call to delete test data when done.
/external/python/cpython2/Lib/test/test_winreg.py
de59855da6effca2883f5e498f4bdbe9bb21a7ca 28-Mar-2000 Guido van Rossum <guido@python.org> Mark Hammond: test suite for new winreg module.
/external/python/cpython2/Lib/test/test_winreg.py