Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
564855d6
Commit
564855d6
authored
Feb 05, 2003
by
Shane Hathaway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Store _v_mount_point_ as a single-item tuple to hide from acquisition.
Also, avoid storing wrappers.
parent
1fa7a3cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
src/ZODB/Mount.py
src/ZODB/Mount.py
+5
-4
No files found.
src/ZODB/Mount.py
View file @
564855d6
...
...
@@ -13,10 +13,11 @@
##############################################################################
"""Mounted database support
$Id: Mount.py,v 1.1
7 2003/02/05 16:49
:02 shane Exp $"""
__version__
=
'$Revision: 1.1
7
$'
[
11
:
-
2
]
$Id: Mount.py,v 1.1
8 2003/02/05 19:45
:02 shane Exp $"""
__version__
=
'$Revision: 1.1
8
$'
[
11
:
-
2
]
import
thread
,
Persistence
,
Acquisition
from
Acquisition
import
aq_base
import
ExtensionClass
,
string
,
time
,
sys
from
POSException
import
MountedStorageError
from
zLOG
import
LOG
,
ERROR
,
INFO
,
WARNING
...
...
@@ -151,10 +152,10 @@ class MountPoint(Persistence.Persistent, Acquisition.Implicit):
def
_getObjectFromConnection
(
self
,
conn
):
obj
=
self
.
_getMountRoot
(
conn
.
root
())
data
=
getattr
(
obj
,
'aq_base'
,
obj
)
data
=
aq_base
(
obj
)
# Store the data object in a tuple to hide from acquisition.
self
.
_v_data
=
(
data
,)
data
.
_v_mount_point_
=
self
data
.
_v_mount_point_
=
(
aq_base
(
self
),)
return
data
def
_getOrOpenObject
(
self
,
parent
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment