-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #500 from dhermes/fix-477-part8
Removing datastore.Dataset class and its uses.
- Loading branch information
Showing
15 changed files
with
53 additions
and
278 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
:hidden: | ||
|
||
datastore-api | ||
datastore-dataset | ||
datastore-entities | ||
datastore-keys | ||
datastore-transactions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
"""Module to provide implicit behavior based on enviroment. | ||
Acts as a mutable namespace to allow the datastore package to | ||
imply the current dataset and connection from the enviroment. | ||
imply the current dataset ID and connection from the enviroment. | ||
""" | ||
|
||
|
||
DATASET_ID = None | ||
"""Module global to allow persistent implied dataset ID from enviroment.""" | ||
|
||
DATASET = None | ||
"""Module global to allow persistent implied dataset from enviroment.""" | ||
|
||
CONNECTION = None | ||
"""Module global to allow persistent implied connection from enviroment.""" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.