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
94297138
Commit
94297138
authored
Jun 29, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the order of arguments to begin for backward compatability.
parent
f1610df8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/ZODB/Transaction.py
src/ZODB/Transaction.py
+3
-3
No files found.
src/ZODB/Transaction.py
View file @
94297138
...
@@ -84,8 +84,8 @@
...
@@ -84,8 +84,8 @@
##############################################################################
##############################################################################
"""Transaction management
"""Transaction management
$Id: Transaction.py,v 1.
9 1999/06/29 19:25:25
jim Exp $"""
$Id: Transaction.py,v 1.
10 1999/06/29 19:28:10
jim Exp $"""
__version__
=
'$Revision: 1.
9
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
10
$'
[
11
:
-
2
]
import
time
,
sys
,
struct
import
time
,
sys
,
struct
from
struct
import
pack
from
struct
import
pack
...
@@ -166,7 +166,7 @@ class Transaction:
...
@@ -166,7 +166,7 @@ class Transaction:
if
self
.
_id
is
not
None
:
free_transaction
()
if
self
.
_id
is
not
None
:
free_transaction
()
else
:
self
.
_init
()
else
:
self
.
_init
()
def
begin
(
self
,
subtransaction
=
None
,
info
=
None
):
def
begin
(
self
,
info
=
None
,
subtransaction
=
None
):
'''Begin a new transaction.
'''Begin a new transaction.
This aborts any transaction in progres.
This aborts any transaction in progres.
...
...
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