diff options
| author | Scott Gasch <[email protected]> | 2022-03-25 09:41:31 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-03-25 09:41:31 -0700 |
| commit | 532df2c5b57c7517dfb3dddd8c1358fbadf8baf3 (patch) | |
| tree | 9ce9a092ca3efb7282b0ac0449da4c9f30f79efc /collect/shared_dict.py | |
| parent | c6fca944b41f292b66efaba27ebf3fd0a37956b8 (diff) | |
Since this thing is on the innerwebs I suppose it should have a
copyright...
Diffstat (limited to 'collect/shared_dict.py')
| -rw-r--r-- | collect/shared_dict.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/collect/shared_dict.py b/collect/shared_dict.py index f4ec914..3207927 100644 --- a/collect/shared_dict.py +++ b/collect/shared_dict.py @@ -4,7 +4,7 @@ The MIT License (MIT) Copyright (c) 2020 LuizaLabs -Additions Copyright (c) 2022 Scott Gasch +Additions/Modifications Copyright (c) 2022 Scott Gasch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -29,7 +29,6 @@ This class is based on https://github.com/luizalabs/shared-memory-dict import pickle from contextlib import contextmanager -from functools import wraps from multiprocessing import RLock, shared_memory from typing import ( Any, @@ -42,8 +41,6 @@ from typing import ( ValuesView, ) -from decorator_utils import synchronized - class PickleSerializer: def dumps(self, obj: dict) -> bytes: |
