Commit b06884a5 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent ce8cb3db
...@@ -45,28 +45,25 @@ $WENDELIN_CORE_WCFS_OPTIONS ...@@ -45,28 +45,25 @@ $WENDELIN_CORE_WCFS_OPTIONS
from __future__ import print_function, absolute_import from __future__ import print_function, absolute_import
import os, sys, hashlib, tempfile, subprocess, time, re, traceback import os, sys, hashlib, tempfile, subprocess, time
import logging as log import logging as log
from os.path import dirname from os.path import dirname
from errno import ENOENT, EEXIST from errno import ENOENT, EEXIST
from golang import chan, select, default, func, defer from golang import chan, select, default, func
from golang import sync, context from golang import sync, context
from golang.gcompat import qq from golang.gcompat import qq
from persistent import Persistent from persistent import Persistent
from ZODB.FileStorage import FileStorage from ZODB.FileStorage import FileStorage
from ZODB.utils import z64, u64, p64 from zodbtools.util import ashex as h
from zodbtools.util import ashex as h, fromhex
from .internal import mm # XXX for tests?
from .internal._wcfs import \ from .internal._wcfs import \
PyWCFS as _WCFS, \ PyWCFS as _WCFS, \
PyWatchLink as WatchLink, \ PyWatchLink as WatchLink, \
PyPinReq as PinReq \ PyPinReq as PinReq \
from six import reraise
# WCFS represents filesystem-level connection to wcfs server. # WCFS represents filesystem-level connection to wcfs server.
# #
# Use join to create it. # Use join to create it.
......
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