FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
gh-77617: Add interactive shell for sqlite3 by erlend-aasland · Pull Request #95026 · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
74.9k
Code
Issues
5k+
Pull requests
2.6k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
gh-77617: Add interactive shell for sqlite3
- #95026
#95026
Merged
erlend-aasland
merged 37 commits into
python:main
python/cpython:main
from
erlend-aasland:sqlite-shell
erlend-aasland/cpython:sqlite-shell
Copy head branch name to clipboard
Aug 1, 2022
Conversation
Commits
37
(37)
Checks
Files changed
Merged
gh-77617: Add interactive shell for sqlite3
#95026
erlend-aasland
merged 37 commits into
python:main
python/cpython:main
from
erlend-aasland:sqlite-shell
erlend-aasland/cpython:sqlite-shell
Copy head branch name to clipboard
Commits
Commits on Jul 19, 2022
Add proof-of-concept REPL
Erlend E. Aasland
authored and
erlend-aasland
committed
def2e81
View commit details
Copy full SHA for def2e81
Browse repository at this point
Add NEWS
erlend-aasland
committed
1f01905
View commit details
Copy full SHA for 1f01905
Browse repository at this point
Commits on Jul 20, 2022
Remove redundant __name__ condition
erlend-aasland
committed
86a4566
View commit details
Copy full SHA for 86a4566
Browse repository at this point
Merge branch 'main' into sqlite-shell
erlend-aasland
committed
d04b6f3
View commit details
Copy full SHA for d04b6f3
Browse repository at this point
Add -v argument for dumping SQLite version
erlend-aasland
committed
896834c
View commit details
Copy full SHA for 896834c
Browse repository at this point
Address review: close connection explicitly
erlend-aasland
committed
4ba731a
View commit details
Copy full SHA for 4ba731a
Browse repository at this point
Commits on Jul 29, 2022
Merge branch 'main' into sqlite-shell
erlend-aasland
committed
814cced
View commit details
Copy full SHA for 814cced
Browse repository at this point
Add docs
erlend-aasland
committed
8179a68
View commit details
Copy full SHA for 8179a68
Browse repository at this point
Remove copyright, credits, and license cli commands
erlend-aasland
committed
91a77b7
View commit details
Copy full SHA for 91a77b7
Browse repository at this point
Document how to quit
erlend-aasland
committed
2f27a04
View commit details
Copy full SHA for 2f27a04
Browse repository at this point
Fix sphinx option refs by moving the footnote up to where it belongs, and making it a note
erlend-aasland
committed
ae55e8e
View commit details
Copy full SHA for ae55e8e
Browse repository at this point
Merge branch 'main' into sqlite-shell
erlend-aasland
committed
91e1ec9
View commit details
Copy full SHA for 91e1ec9
Browse repository at this point
Address review: iterate over cursor
Show description for 024cd90
Erlend Egeberg Aasland
and
serhiy-storchaka
authored
024cd90
View commit details
Copy full SHA for 024cd90
Browse repository at this point
Address review: repr iso. f-string
Show description for dee441a
Erlend Egeberg Aasland
and
serhiy-storchaka
authored
dee441a
View commit details
Copy full SHA for dee441a
Browse repository at this point
Address review: pass connection iso. path
erlend-aasland
committed
ec04ea3
View commit details
Copy full SHA for ec04ea3
Browse repository at this point
Address review: use argparse version trick
erlend-aasland
committed
9b79230
View commit details
Copy full SHA for 9b79230
Browse repository at this point
Address review: use . prefix for commands, and sys.exit for quitting
erlend-aasland
committed
74fb53d
View commit details
Copy full SHA for 74fb53d
Browse repository at this point
Address review: reduce indent level
erlend-aasland
committed
1d62ccb
View commit details
Copy full SHA for 1d62ccb
Browse repository at this point
Commits on Jul 30, 2022
Add filename and sql args a la sqlite3 cli
erlend-aasland
committed
340b896
View commit details
Copy full SHA for 340b896
Browse repository at this point
Fix constructor
erlend-aasland
committed
d906361
View commit details
Copy full SHA for d906361
Browse repository at this point
Commits on Jul 31, 2022
Sync with main
erlend-aasland
committed
43c535c
View commit details
Copy full SHA for 43c535c
Browse repository at this point
Address Serhiy's second round of review
erlend-aasland
committed
e728e17
View commit details
Copy full SHA for e728e17
Browse repository at this point
Remove useless function and lambda params
erlend-aasland
committed
e2e24b8
View commit details
Copy full SHA for e2e24b8
Browse repository at this point
Move CLI docs to Reference
erlend-aasland
committed
294acb9
View commit details
Copy full SHA for 294acb9
Browse repository at this point
Improve NEWS and add What's New
erlend-aasland
committed
3cfff7f
View commit details
Copy full SHA for 3cfff7f
Browse repository at this point
Partially address Kumar's review: use narrow exception
erlend-aasland
committed
82c753c
View commit details
Copy full SHA for 82c753c
Browse repository at this point
Partially address more of Kumar's review: add guard
erlend-aasland
committed
36454ab
View commit details
Copy full SHA for 36454ab
Browse repository at this point
Use pattern matching
erlend-aasland
committed
625e2e3
View commit details
Copy full SHA for 625e2e3
Browse repository at this point
Revert "Partially address more of Kumar's review: add guard"
Show description for f624873
erlend-aasland
committed
f624873
View commit details
Copy full SHA for f624873
Browse repository at this point
Print errors to stderr iso. stdout
erlend-aasland
committed
df75f5f
View commit details
Copy full SHA for df75f5f
Browse repository at this point
Non-zero exit for SQL errors passed from command line
erlend-aasland
committed
44c2571
View commit details
Copy full SHA for 44c2571
Browse repository at this point
Add tests
erlend-aasland
committed
d640458
View commit details
Copy full SHA for d640458
Browse repository at this point
Simplify interactive tests
erlend-aasland
committed
0997004
View commit details
Copy full SHA for 0997004
Browse repository at this point
Use -Xutf8
erlend-aasland
committed
7ba91e7
View commit details
Copy full SHA for 7ba91e7
Browse repository at this point
Fix argument order
erlend-aasland
committed
b74e010
View commit details
Copy full SHA for b74e010
Browse repository at this point
Commits on Aug 1, 2022
Address review: move cleanups up
erlend-aasland
committed
903b867
View commit details
Copy full SHA for 903b867
Browse repository at this point
Last adjustment: inline runsql()
erlend-aasland
committed
796ba16
View commit details
Copy full SHA for 796ba16
Browse repository at this point
Back
|
FazBrowse Home
|
New Git URL