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
Kirill Smelkov
ZODB
Commits
177cfabe
Commit
177cfabe
authored
Jan 28, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark DB.new_oid as deprecated.
parent
89db8a28
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
.coveragerc
.coveragerc
+1
-0
src/ZODB/DB.py
src/ZODB/DB.py
+7
-1
No files found.
.coveragerc
View file @
177cfabe
...
@@ -8,5 +8,6 @@ omit =
...
@@ -8,5 +8,6 @@ omit =
[report]
[report]
exclude_lines =
exclude_lines =
pragma: nocover
pragma: nocover
pragma: no cover
if __name__ == ['"]__main__['"]:
if __name__ == ['"]__main__['"]:
assert False
assert False
src/ZODB/DB.py
View file @
177cfabe
...
@@ -987,7 +987,13 @@ class DB(object):
...
@@ -987,7 +987,13 @@ class DB(object):
return
ContextManager
(
self
,
note
)
return
ContextManager
(
self
,
note
)
def
new_oid
(
self
):
def
new_oid
(
self
):
return
self
.
storage
.
new_oid
()
"""
Return a new oid from the storage.
Kept for backwards compatibility only. New oids should be
allocated in a transaction using an open Connection.
"""
return
self
.
storage
.
new_oid
()
# pragma: no cover
def
open_then_close_db_when_connection_closes
(
self
):
def
open_then_close_db_when_connection_closes
(
self
):
"""Create and return a connection.
"""Create and return a connection.
...
...
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