Skip to content

Commit e0615d6

Browse files
authored
Merge pull request #6 from MicrosoftLearning/pythonUpdates07-01
Python updates07 01
2 parents 2634bf9 + 4727959 commit e0615d6

127 files changed

Lines changed: 320 additions & 1 deletion

File tree

Some content is hidden

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

.gitignore

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,54 @@ ClientBin
114114
Generated_Code #added for RIA/Silverlight projects
115115

116116
# Backup & report files from converting an old project file to a newer
117-
# Visual Studio version. Backup files are not needed, because we have git ;-)
118117
_UpgradeReport_Files/
119118
Backup*/
120119
UpgradeLog*.XML
120+
121+
# Python artifacts
122+
__pycache__/
123+
*.py[cod]
124+
*.pyo
125+
*.pyd
126+
127+
# Python virtual environments
128+
.env/
129+
.venv/
130+
env/
131+
venv/
132+
ENV/
133+
ENV*/
134+
135+
# Python packaging
136+
build/
137+
dist/
138+
*.egg-info/
139+
.eggs/
140+
141+
# Test output (pytest, unittest, coverage, etc.)
142+
htmlcov/
143+
.tox/
144+
.nox/
145+
.coverage
146+
.coverage.*
147+
.cache
148+
nosetests.xml
149+
coverage.xml
150+
*.cover
151+
*.py,cover
152+
.pytest_cache/
153+
test-results/
154+
junit-*.xml
155+
156+
# IPython/Jupyter
157+
.ipynb_checkpoints/
158+
159+
# mypy
160+
.mypy_cache/
161+
.dmypy.json
162+
163+
# Pyre type checker
164+
.pyre/
165+
166+
# Pyright type checker
167+
.pyrightcache/
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
*.pyd
6+
7+
# C extensions
8+
*.so
9+
10+
# Distribution / packaging
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# Virtual environments
28+
.env/
29+
.venv/
30+
env/
31+
venv/
32+
ENV/
33+
ENV*/
34+
35+
# PyInstaller
36+
*.manifest
37+
*.spec
38+
39+
# Unit test / coverage / pytest
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.pytest_cache/
51+
test-results/
52+
junit-*.xml
53+
54+
# Jupyter Notebook
55+
.ipynb_checkpoints/
56+
57+
# mypy
58+
.mypy_cache/
59+
.dmypy.json
60+
61+
# Pyre type checker
62+
.pyre/
63+
64+
# Pyright type checker
65+
.pyrightcache/
66+
67+
# VS Code settings
68+
.vscode/

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/author.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/author.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/book.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/book.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/book_item.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/book_item.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/loan.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/loan.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/patron.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/patron.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/enums/loan_extension_status.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/enums/loan_extension_status.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/enums/loan_return_status.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/enums/loan_return_status.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/enums/membership_renewal_status.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/enums/membership_renewal_status.py

File renamed without changes.

0 commit comments

Comments
 (0)