Commit f806f1dc authored by Tres Seaver's avatar Tres Seaver

Extend blob renormalizer to support server-side blob filenames (for ZEO).

parent e1a5a0b0
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
Unreleased Unreleased
========== ==========
- Extended the filename renormalizer uwed for blob doctests to support
the filenames used by ZEO in non-shared mode.
- Added ``url`` parameter to ``setup()`` (PyPI says it is required). - Added ``url`` parameter to ``setup()`` (PyPI says it is required).
4.0.0b1 (2013-05-10) 4.0.0b1 (2013-05-10)
......
...@@ -735,7 +735,7 @@ def storage_reusable_suite(prefix, factory, ...@@ -735,7 +735,7 @@ def storage_reusable_suite(prefix, factory,
(re.compile("^ZODB.POSException.Unsupported:"), "Unsupported:"), (re.compile("^ZODB.POSException.Unsupported:"), "Unsupported:"),
# Normalize out blobfile paths for sake of Windows # Normalize out blobfile paths for sake of Windows
(re.compile( (re.compile(
r'([a-zA-Z]:)?\%(sep)s.*\%(sep)sblobs\%(sep)s.*\.blob' r'([a-zA-Z]:)?\%(sep)s.*\%(sep)s(server-)blobs\%(sep)s.*\.blob'
% dict(sep=os.path.sep)), '<BLOB STORAGE PATH>') % dict(sep=os.path.sep)), '<BLOB STORAGE PATH>')
]), ]),
optionflags=doctest.ELLIPSIS, optionflags=doctest.ELLIPSIS,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment