Skip to content

Commit 7b701b3

Browse files
authored
remove unneeded details (#1174)
1 parent 9f65313 commit 7b701b3

File tree

1 file changed

+0
-68
lines changed

1 file changed

+0
-68
lines changed

docs/managing-python-projects.md

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -317,71 +317,3 @@ You have a utility script that needs specific packages without affecting your ma
317317
- [Environment Management](../README.md#environment-management): Learn about creating and managing Python environments
318318
- [Package Management](../README.md#package-management): Learn how to install and manage packages
319319
- [Projects API Reference](projects-api-reference.md): Technical reference for extension authors
320-
321-
322-
323-
324-
RawEventsVSCodeExt
325-
| where EventName == "ms-python.vscode-python-envs/project_structure"
326-
| extend ProjectCount = toint(Properties["totalprojectcount"])
327-
| extend Bucket = case(
328-
ProjectCount == 0, "0",
329-
ProjectCount == 1, "1",
330-
ProjectCount == 2, "2",
331-
ProjectCount == 3, "3",
332-
ProjectCount >= 4, "4+",
333-
"unknown")
334-
| summarize Count = count() by Bucket
335-
| order by Bucket asc
336-
337-
0 4,231
338-
1 38,743 93.6%
339-
2 1,163 2.8%
340-
3 429 1%
341-
4+ 1,051 2.5%
342-
343-
1-4 == 41,386
344-
345-
RawEventsVSCodeExt
346-
| where EventName == "ms-python.vscode-python-envs/project_structure"
347-
| extend ProjectCount = toint(Properties["uniqueinterpretercount"])
348-
| extend Bucket = case(
349-
ProjectCount == 0, "0",
350-
ProjectCount == 1, "1",
351-
ProjectCount == 2, "2",
352-
ProjectCount == 3, "3",
353-
ProjectCount >= 4, "4+",
354-
"unknown")
355-
| summarize Count = count() by Bucket
356-
| order by Bucket asc
357-
358-
0 4,934 10.9%
359-
1 39,054 86.6%
360-
2 820 1.8%
361-
3 138 0.3%
362-
4+ 160 0.35
363-
364-
0-4+ = 45,106
365-
366-
367-
RawEventsVSCodeExt
368-
| where EventName == "ms-python.vscode-python-envs/project_structure"
369-
| extend ProjectCount = toint(Properties["projectunderroot"])
370-
| extend Bucket = case(
371-
ProjectCount == 0, "0",
372-
ProjectCount == 1, "1",
373-
ProjectCount == 2, "2",
374-
ProjectCount == 3, "3",
375-
ProjectCount >= 4, "4+",
376-
"unknown")
377-
| summarize Count = count() by Bucket
378-
| order by Bucket asc
379-
380-
381-
0 45,293 98.2%
382-
1 445 1%
383-
2 119 0.25%
384-
3 29
385-
4+ 194 0.4%
386-
387-
0-4+: 46,080

0 commit comments

Comments
 (0)