python-fragments 0.27__tar.gz → 0.28__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_fragments-0.27 → python_fragments-0.28}/PKG-INFO +1 -1
- {python_fragments-0.27 → python_fragments-0.28}/fragments/grammar.py +1 -1
- {python_fragments-0.27 → python_fragments-0.28}/pyproject.toml +1 -1
- {python_fragments-0.27 → python_fragments-0.28}/python_fragments.egg-info/PKG-INFO +1 -1
- {python_fragments-0.27 → python_fragments-0.28}/tests/test_grammar.py +33 -0
- {python_fragments-0.27 → python_fragments-0.28}/README.md +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/__init__.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/ast_nodes.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/cli.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/html/__init__.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/html/elements.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/loader.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/__init__.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/based_proxy.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/__init__.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/code_actions.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/completion.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/definition.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/diagnostics.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/document_highlight.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/document_symbols.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/folding_range.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/hover.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/inlay_hints.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/lifecycle.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/references.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/rename.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/semantic_tokens.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/signature_help.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/file_state.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/message_queue.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/pyright_notification_handlers/__init__.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/pyright_notification_handlers/capability.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/pyright_notification_handlers/configuration.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/pyright_notification_handlers/diagnostics.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/types.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/source.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/transpiler.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/fragments/types.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/python_fragments.egg-info/SOURCES.txt +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/python_fragments.egg-info/dependency_links.txt +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/python_fragments.egg-info/entry_points.txt +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/python_fragments.egg-info/requires.txt +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/python_fragments.egg-info/top_level.txt +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/setup.cfg +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/tests/test_html_elements.py +0 -0
- {python_fragments-0.27 → python_fragments-0.28}/tests/test_source_map.py +0 -0
|
@@ -277,7 +277,7 @@ def expect_children(source: Source) -> tuple[Source, list[ASTHTMLChild]]:
|
|
|
277
277
|
|
|
278
278
|
def expect_interpolation(source: Source) -> tuple[Source, ASTInterpolation]:
|
|
279
279
|
"""An interpolation block."""
|
|
280
|
-
INTERPOLATION_EXPRESSION = r"([\s\S]*?)(
|
|
280
|
+
INTERPOLATION_EXPRESSION = r"([\s\S]*?)(?=\s*}})"
|
|
281
281
|
source_start = source.offset
|
|
282
282
|
source = expect_string(source, "{{")
|
|
283
283
|
source, leading_whitespace = source.eat_whitespace()
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-fragments"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.28"
|
|
8
8
|
description = "Modern HTML template rendering in Python"
|
|
9
9
|
authors = [{ name = "The Running Algorithm", email = "services@therunningalgorithm.info" }]
|
|
10
10
|
readme = "README.md"
|
|
@@ -385,6 +385,39 @@ def test_whitespace_between_adjacent_interpolations_is_preserved():
|
|
|
385
385
|
]))
|
|
386
386
|
|
|
387
387
|
|
|
388
|
+
def test_interpolation_no_trailing_whitespace():
|
|
389
|
+
source = Source.from_string("<><NotificationBar user={{ user}} /></>")
|
|
390
|
+
source, fragment = grammar.expect_fragment(source)
|
|
391
|
+
assert source.at_end()
|
|
392
|
+
assert _transpiled(fragment) == _transpiled(ASTFragment(-1, -1, [
|
|
393
|
+
ASTComponent(-1, -1, ASTComponentName(-1, -1, "NotificationBar"), {
|
|
394
|
+
"user": ASTComponentArgument(-1, -1, "user", None, ASTInterpolation(-1, -1, "user", 1, 0))
|
|
395
|
+
}, [])
|
|
396
|
+
]))
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
def test_interpolation_no_leading_whitespace():
|
|
400
|
+
source = Source.from_string("<><NotificationBar user={{user }} /></>")
|
|
401
|
+
source, fragment = grammar.expect_fragment(source)
|
|
402
|
+
assert source.at_end()
|
|
403
|
+
assert _transpiled(fragment) == _transpiled(ASTFragment(-1, -1, [
|
|
404
|
+
ASTComponent(-1, -1, ASTComponentName(-1, -1, "NotificationBar"), {
|
|
405
|
+
"user": ASTComponentArgument(-1, -1, "user", None, ASTInterpolation(-1, -1, "user", 0, 1))
|
|
406
|
+
}, [])
|
|
407
|
+
]))
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
def test_interpolation_no_whitespace():
|
|
411
|
+
source = Source.from_string("<><NotificationBar user={{user}} /></>")
|
|
412
|
+
source, fragment = grammar.expect_fragment(source)
|
|
413
|
+
assert source.at_end()
|
|
414
|
+
assert _transpiled(fragment) == _transpiled(ASTFragment(-1, -1, [
|
|
415
|
+
ASTComponent(-1, -1, ASTComponentName(-1, -1, "NotificationBar"), {
|
|
416
|
+
"user": ASTComponentArgument(-1, -1, "user", None, ASTInterpolation(-1, -1, "user", 0, 0))
|
|
417
|
+
}, [])
|
|
418
|
+
]))
|
|
419
|
+
|
|
420
|
+
|
|
388
421
|
# ---------------------------------------------------------------------------
|
|
389
422
|
# Full integration (updated for new AST structure)
|
|
390
423
|
# ---------------------------------------------------------------------------
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/completion.py
RENAMED
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/definition.py
RENAMED
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/diagnostics.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/hover.py
RENAMED
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/inlay_hints.py
RENAMED
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/lifecycle.py
RENAMED
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/references.py
RENAMED
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/fragments/lsp/client_message_handlers/rename.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_fragments-0.27 → python_fragments-0.28}/python_fragments.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|