Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
748e006e
Commit
748e006e
authored
Mar 12, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug in __changed__.
parent
f9d7e2c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
src/ZODB/Persistence.py
src/ZODB/Persistence.py
+8
-7
No files found.
src/ZODB/Persistence.py
View file @
748e006e
#!/usr/local/bin/python
# $What$
__doc__
=
'''Python implementation of persistent base types
__doc__
=
'''Python implementation of
a
persistent base types
$Id: Persistence.py,v 1.11 1997/12/15 23:01:17 jim Exp $'''
$Id: Persistence.py,v 1.12 1998/03/12 15:38:51 jim Exp $'''
# Copyright
#
# Copyright 1996 Digital Creations, L.C., 910 Princess Anne
...
...
@@ -59,7 +58,7 @@ $Id: Persistence.py,v 1.11 1997/12/15 23:01:17 jim Exp $'''
#
# (540) 371-6909
#
__version__
=
'$Revision: 1.1
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.1
2
$'
[
11
:
-
2
]
try
:
from
cPersistence
import
Persistent
...
...
@@ -147,10 +146,9 @@ except:
old
=
self
.
_p_changed
if
v
!=
-
1
:
if
v
and
not
old
and
self
.
_p_jar
is
not
None
:
try
:
get_transaction
().
register
(
self
)
self
.
_p_changed
=
1
try
:
get_transaction
().
register
(
self
)
except
:
pass
self
.
_p_changed
=
not
not
v
return
old
...
...
@@ -193,6 +191,9 @@ except:
############################################################################
# $Log: Persistence.py,v $
# Revision 1.12 1998/03/12 15:38:51 jim
# Fixed bug in __changed__.
#
# Revision 1.11 1997/12/15 23:01:17 jim
# *** empty log message ***
#
...
...
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