Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit779c97a

Browse files
authored
Update changelog for 1.10.1 (#534)
Also, fix some small formatting issues reported by Ruff.
1 parent4f6d7cb commit779c97a

File tree

6 files changed

+24
-3
lines changed

6 files changed

+24
-3
lines changed

‎CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
#History of changes
22

3+
##Version 1.10.1 (2024/03/12)
4+
5+
###Issues Closed
6+
7+
*[Issue 529](https://github.com/python-lsp/python-lsp-server/issues/529) - Autoimports: sqlite3.OperationalError: database is locked ([PR 530](https://github.com/python-lsp/python-lsp-server/pull/530) by[@last-partizan](https://github.com/last-partizan))
8+
9+
In this release 1 issue was closed.
10+
11+
###Pull Requests Merged
12+
13+
*[PR 530](https://github.com/python-lsp/python-lsp-server/pull/530) - Fix progress reporting with autoimport plugin, by[@last-partizan](https://github.com/last-partizan) ([529](https://github.com/python-lsp/python-lsp-server/issues/529))
14+
*[PR 528](https://github.com/python-lsp/python-lsp-server/pull/528) - Improve error message about missing`websockets` module, by[@tomplus](https://github.com/tomplus)
15+
16+
In this release 2 pull requests were closed.
17+
18+
----
19+
320
##Version 1.10.0 (2024/01/21)
421

522
###New features

‎pylsp/_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ def escape_plain_text(contents: str) -> str:
175175
"""
176176
Format plain text to display nicely in environments which do not respect whitespaces.
177177
"""
178-
contents=contents.replace("\t","\u00A0"*4)
179-
contents=contents.replace(" ","\u00A0"*2)
178+
contents=contents.replace("\t","\u00a0"*4)
179+
contents=contents.replace(" ","\u00a0"*2)
180180
returncontents
181181

182182

‎pylsp/plugins/flake8_lint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright 2021- Python Language Server Contributors.
33

44
"""Linter pluging for flake8"""
5+
56
importlogging
67
importos.path
78
importre

‎pylsp/plugins/pylint_lint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright 2021- Python Language Server Contributors.
44

55
"""Linter plugin for pylint."""
6+
67
importcollections
78
importlogging
89
importos

‎pylsp/uris.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
66
https://github.com/Microsoft/vscode-uri/blob/e59cab84f5df6265aed18ae5f43552d3eef13bb9/lib/index.ts
77
"""
8+
89
importre
910
fromurllibimportparse
1011

‎test/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Copyright 2017-2020 Palantir Technologies, Inc.
22
# Copyright 2021- Python Language Server Contributors.
33

4-
""" py.test configuration"""
4+
"""pytest configuration"""
5+
56
importlogging
67

78
frompylsp.__main__importLOG_FORMAT

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp