Skip to content

Commit 6d5d93e

Browse files
committedMay 20, 2022
Initial commit.
0 parents  commit 6d5d93e

File tree

317 files changed

+72188
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+72188
-0
lines changed
 
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Announcements
3+
about: Use this if you are sharing something interesting
4+
title: ''
5+
labels: announcement
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Let us know if you are speaking at a conference on python-oracledb, or have a new package or app that uses python-oracledb, or something similarly exciting. -->

‎.github/ISSUE_TEMPLATE/bug_report.md

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
<!--
11+
12+
Thank you for using python-oracledb.
13+
14+
See https://www.oracle.com/corporate/security-practices/assurance/vulnerability/reporting.html for how to report security issues
15+
16+
Please answer these questions so we can help you.
17+
18+
Use Markdown syntax, see https://docs.github.com/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax
19+
20+
-->
21+
22+
1. What versions are you using?
23+
24+
<!--
25+
26+
Give your database version.
27+
28+
29+
Also run Python and show the output of:
30+
31+
import sys
32+
import platform
33+
34+
print("platform.platform:", platform.platform())
35+
print("sys.maxsize > 2**32:", sys.maxsize > 2**32)
36+
print("platform.python_version:", platform.python_version())
37+
38+
And:
39+
40+
import python-oracledb
41+
print("python-oracledb.version:", python-oracledb.version)
42+
43+
-->
44+
45+
2. Is it an error or a hang or a crash?
46+
47+
3. What error(s) or behavior you are seeing?
48+
49+
<!--
50+
51+
Cut and paste text showing the command you ran. No screenshots.
52+
53+
Use a gist for long screen output and logs: see https://gist.github.com/
54+
55+
-->
56+
57+
4. Include a runnable Python script that shows the problem.
58+
59+
<!--
60+
61+
Include all SQL needed to create the database schema.
62+
63+
Format code by using three backticks on a line before and after code snippets, for example:
64+
65+
```
66+
import python-oracledb
67+
```
68+
69+
-->

0 commit comments

Comments
 (0)