IncludeCPP 4.2.2__py3-none-any.whl → 4.3.0__py3-none-any.whl

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.
includecpp/__init__.py CHANGED
@@ -2,7 +2,7 @@ from .core.cpp_api import CppApi
2
2
  from .core import cssl_bridge as CSSL
3
3
  import warnings
4
4
 
5
- __version__ = "4.2.2"
5
+ __version__ = "4.3.0"
6
6
  __all__ = ["CppApi", "CSSL"]
7
7
 
8
8
  # Module-level cache for C++ modules
@@ -7888,11 +7888,11 @@ def cssl_doc(search, list_sections):
7888
7888
  click.echo()
7889
7889
  click.echo("Or use: includecpp cssl doc --list")
7890
7890
  else:
7891
- # Full documentation mode
7891
+ # Full documentation mode - output everything at once (no pager)
7892
7892
  # Replace Unicode characters that may not be supported on all terminals
7893
7893
  safe_content = content.replace('✓', '[OK]').replace('✗', '[X]').replace('→', '->').replace('←', '<-').replace('•', '*').replace('─', '-').replace('│', '|').replace('└', '+').replace('├', '+').replace('▸', '>').replace('▾', 'v')
7894
7894
  try:
7895
- click.echo_via_pager(safe_content)
7895
+ click.echo(safe_content)
7896
7896
  except UnicodeEncodeError:
7897
7897
  # Fallback: encode with errors='replace'
7898
7898
  click.echo(safe_content.encode('ascii', errors='replace').decode('ascii'))