mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Refactor multifilesystem
This commit is contained in:
parent
f2d63ad7f7
commit
35484c9b79
16 changed files with 1163 additions and 840 deletions
|
@ -16,10 +16,10 @@
|
|||
# You should have received a copy of the GNU General Public License
|
||||
# along with Radicale. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import contextlib
|
||||
import os
|
||||
import posixpath
|
||||
import threading
|
||||
from contextlib import contextmanager
|
||||
|
||||
if os.name == "nt":
|
||||
import ctypes
|
||||
|
@ -79,7 +79,7 @@ class RwLock:
|
|||
return "w"
|
||||
return ""
|
||||
|
||||
@contextmanager
|
||||
@contextlib.contextmanager
|
||||
def acquire(self, mode):
|
||||
if mode not in "rw":
|
||||
raise ValueError("Invalid mode: %r" % mode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue