cmd2 3.0.0b2__py3-none-any.whl → 3.1.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.
@@ -39,7 +39,7 @@ from .exceptions import CompletionError
39
39
  from .styles import Cmd2Style
40
40
 
41
41
  # If no descriptive headers are supplied, then this will be used instead
42
- DEFAULT_DESCRIPTIVE_HEADERS: Sequence[str | Column] = ('Description',)
42
+ DEFAULT_DESCRIPTIVE_HEADERS: Sequence[str | Column] = ['Description']
43
43
 
44
44
  # Name of the choice/completer function argument that, if present, will be passed a dictionary of
45
45
  # command line tokens up through the token being completed mapped to their argparse destination name.
cmd2/argparse_custom.py CHANGED
@@ -804,7 +804,7 @@ def _add_argument_wrapper(
804
804
  choices_provider: ChoicesProviderFunc | None = None,
805
805
  completer: CompleterFunc | None = None,
806
806
  suppress_tab_hint: bool = False,
807
- descriptive_headers: list[Column | str] | None = None,
807
+ descriptive_headers: Sequence[str | Column] | None = None,
808
808
  **kwargs: Any,
809
809
  ) -> argparse.Action:
810
810
  """Wrap ActionsContainer.add_argument() which supports more settings used by cmd2.
cmd2/cmd2.py CHANGED
@@ -1,24 +1,26 @@
1
- """Variant on standard library's cmd with extra features.
2
-
3
- To use, simply import cmd2.Cmd instead of cmd.Cmd; use precisely as though you
4
- were using the standard library's cmd, while enjoying the extra features.
5
-
6
- Searchable command history (commands: "history")
7
- Run commands from file, save to file, edit commands in file
8
- Multi-line commands
9
- Special-character shortcut commands (beyond cmd's "?" and "!")
10
- Settable environment parameters
11
- Parsing commands with `argparse` argument parsers (flags)
12
- Redirection to file or paste buffer (clipboard) with > or >>
13
- Easy transcript-based testing of applications (see examples/transcript_example.py)
14
- Bash-style ``select`` available
1
+ """cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python.
2
+
3
+ cmd2 is a tool for building interactive command line applications in Python. Its goal is to make it quick and easy for
4
+ developers to build feature-rich and user-friendly interactive command line applications. It provides a simple API which
5
+ is an extension of Python's built-in cmd module. cmd2 provides a wealth of features on top of cmd to make your life easier
6
+ and eliminates much of the boilerplate code which would be necessary when using cmd.
7
+
8
+ Extra features include:
9
+ - Searchable command history (commands: "history")
10
+ - Run commands from file, save to file, edit commands in file
11
+ - Multi-line commands
12
+ - Special-character shortcut commands (beyond cmd's "?" and "!")
13
+ - Settable environment parameters
14
+ - Parsing commands with `argparse` argument parsers (flags)
15
+ - Redirection to file or paste buffer (clipboard) with > or >>
16
+ - Easy transcript-based testing of applications (see examples/transcript_example.py)
17
+ - Bash-style ``select`` available
15
18
 
16
19
  Note, if self.stdout is different than sys.stdout, then redirection with > and |
17
20
  will only work if `self.poutput()` is used in place of `print`.
18
21
 
19
- - Catherine Devlin, Jan 03 2008 - catherinedevlin.blogspot.com
20
-
21
- Git repository on GitHub at https://github.com/python-cmd2/cmd2
22
+ GitHub: https://github.com/python-cmd2/cmd2
23
+ Documentation: https://cmd2.readthedocs.io/
22
24
  """
23
25
 
24
26
  # This module has many imports, quite a few of which are only
@@ -26,7 +28,6 @@ Git repository on GitHub at https://github.com/python-cmd2/cmd2
26
28
  # import this module, many of these imports are lazy-loaded
27
29
  # i.e. we only import the module when we use it.
28
30
  import argparse
29
- import cmd
30
31
  import contextlib
31
32
  import copy
32
33
  import functools
@@ -64,7 +65,7 @@ from typing import (
64
65
  )
65
66
 
66
67
  import rich.box
67
- from rich.console import Group
68
+ from rich.console import Group, RenderableType
68
69
  from rich.highlighter import ReprHighlighter
69
70
  from rich.rule import Rule
70
71
  from rich.style import Style, StyleType
@@ -286,7 +287,7 @@ class _CommandParsers:
286
287
  del self._parsers[full_method_name]
287
288
 
288
289
 
289
- class Cmd(cmd.Cmd):
290
+ class Cmd:
290
291
  """An easy but powerful framework for writing line-oriented command interpreters.
291
292
 
292
293
  Extends the Python Standard Library's cmd package by adding a lot of useful features
@@ -304,6 +305,8 @@ class Cmd(cmd.Cmd):
304
305
  # List for storing transcript test file names
305
306
  testfiles: ClassVar[list[str]] = []
306
307
 
308
+ DEFAULT_PROMPT = '(Cmd) '
309
+
307
310
  def __init__(
308
311
  self,
309
312
  completekey: str = 'tab',
@@ -326,6 +329,7 @@ class Cmd(cmd.Cmd):
326
329
  auto_load_commands: bool = False,
327
330
  allow_clipboard: bool = True,
328
331
  suggest_similar_command: bool = False,
332
+ intro: RenderableType = '',
329
333
  ) -> None:
330
334
  """Easy but powerful framework for writing line-oriented command interpreters, extends Python's cmd package.
331
335
 
@@ -376,6 +380,7 @@ class Cmd(cmd.Cmd):
376
380
  :param suggest_similar_command: If ``True``, ``cmd2`` will attempt to suggest the most
377
381
  similar command when the user types a command that does
378
382
  not exist. Default: ``False``.
383
+ "param intro: Intro banner to print when starting the application.
379
384
  """
380
385
  # Check if py or ipy need to be disabled in this instance
381
386
  if not include_py:
@@ -384,11 +389,28 @@ class Cmd(cmd.Cmd):
384
389
  setattr(self, 'do_ipy', None) # noqa: B010
385
390
 
386
391
  # initialize plugin system
387
- # needs to be done before we call __init__(0)
392
+ # needs to be done before we most of the other stuff below
388
393
  self._initialize_plugin_system()
389
394
 
390
- # Call super class constructor
391
- super().__init__(completekey=completekey, stdin=stdin, stdout=stdout)
395
+ # Configure a few defaults
396
+ self.prompt = Cmd.DEFAULT_PROMPT
397
+ self.intro = intro
398
+ self.use_rawinput = True
399
+
400
+ # What to use for standard input
401
+ if stdin is not None:
402
+ self.stdin = stdin
403
+ else:
404
+ self.stdin = sys.stdin
405
+
406
+ # What to use for standard output
407
+ if stdout is not None:
408
+ self.stdout = stdout
409
+ else:
410
+ self.stdout = sys.stdout
411
+
412
+ # Key used for tab completion
413
+ self.completekey = completekey
392
414
 
393
415
  # Attributes which should NOT be dynamically settable via the set command at runtime
394
416
  self.default_to_shell = False # Attempt to run unrecognized commands as shell commands
@@ -2412,9 +2434,7 @@ class Cmd(cmd.Cmd):
2412
2434
  if len(self.completion_matches) == 1 and self.allow_closing_quote and completion_token_quote:
2413
2435
  self.completion_matches[0] += completion_token_quote
2414
2436
 
2415
- def complete( # type: ignore[override]
2416
- self, text: str, state: int, custom_settings: utils.CustomCompletionSettings | None = None
2417
- ) -> str | None:
2437
+ def complete(self, text: str, state: int, custom_settings: utils.CustomCompletionSettings | None = None) -> str | None:
2418
2438
  """Override of cmd's complete method which returns the next possible completion for 'text'.
2419
2439
 
2420
2440
  This completer function is called by readline as complete(text, state), for state in 0, 1, 2, …,
@@ -2693,10 +2713,6 @@ class Cmd(cmd.Cmd):
2693
2713
  def parseline(self, line: str) -> tuple[str, str, str]:
2694
2714
  """Parse the line into a command name and a string containing the arguments.
2695
2715
 
2696
- NOTE: This is an override of a parent class method. It is only used by other parent class methods.
2697
-
2698
- Different from the parent class method, this ignores self.identchars.
2699
-
2700
2716
  :param line: line read by readline
2701
2717
  :return: tuple containing (command, args, line)
2702
2718
  """
@@ -3086,7 +3102,7 @@ class Cmd(cmd.Cmd):
3086
3102
 
3087
3103
  # Initialize the redirection saved state
3088
3104
  redir_saved_state = utils.RedirectionSavedState(
3089
- cast(TextIO, self.stdout), stdouts_match, self._cur_pipe_proc_reader, self._redirecting
3105
+ self.stdout, stdouts_match, self._cur_pipe_proc_reader, self._redirecting
3090
3106
  )
3091
3107
 
3092
3108
  # The ProcReader for this command
@@ -3141,7 +3157,7 @@ class Cmd(cmd.Cmd):
3141
3157
  new_stdout.close()
3142
3158
  raise RedirectionError(f'Pipe process exited with code {proc.returncode} before command could run')
3143
3159
  redir_saved_state.redirecting = True
3144
- cmd_pipe_proc_reader = utils.ProcReader(proc, cast(TextIO, self.stdout), sys.stderr)
3160
+ cmd_pipe_proc_reader = utils.ProcReader(proc, self.stdout, sys.stderr)
3145
3161
 
3146
3162
  self.stdout = new_stdout
3147
3163
  if stdouts_match:
@@ -3276,7 +3292,7 @@ class Cmd(cmd.Cmd):
3276
3292
 
3277
3293
  return stop if stop is not None else False
3278
3294
 
3279
- def default(self, statement: Statement) -> bool | None: # type: ignore[override]
3295
+ def default(self, statement: Statement) -> bool | None:
3280
3296
  """Execute when the command given isn't a recognized command implemented by a do_* method.
3281
3297
 
3282
3298
  :param statement: Statement object with parsed input
@@ -3293,6 +3309,15 @@ class Cmd(cmd.Cmd):
3293
3309
  self.perror(err_msg, style=None)
3294
3310
  return None
3295
3311
 
3312
+ def completedefault(self, *_ignored: list[str]) -> list[str]:
3313
+ """Call to complete an input line when no command-specific complete_*() method is available.
3314
+
3315
+ This method is only called for non-argparse-based commands.
3316
+
3317
+ By default, it returns an empty list.
3318
+ """
3319
+ return []
3320
+
3296
3321
  def _suggest_similar_command(self, command: str) -> str | None:
3297
3322
  return suggest_similar(command, self.get_visible_commands())
3298
3323
 
@@ -4131,10 +4156,6 @@ class Cmd(cmd.Cmd):
4131
4156
  )
4132
4157
  return help_parser
4133
4158
 
4134
- # Get rid of cmd's complete_help() functions so ArgparseCompleter will complete the help command
4135
- if getattr(cmd.Cmd, 'complete_help', None) is not None:
4136
- delattr(cmd.Cmd, 'complete_help')
4137
-
4138
4159
  @with_argparser(_build_help_parser)
4139
4160
  def do_help(self, args: argparse.Namespace) -> None:
4140
4161
  """List available commands or provide detailed help for a specific command."""
@@ -4640,7 +4661,7 @@ class Cmd(cmd.Cmd):
4640
4661
  **kwargs,
4641
4662
  )
4642
4663
 
4643
- proc_reader = utils.ProcReader(proc, cast(TextIO, self.stdout), sys.stderr)
4664
+ proc_reader = utils.ProcReader(proc, self.stdout, sys.stderr)
4644
4665
  proc_reader.wait()
4645
4666
 
4646
4667
  # Save the return code of the application for use in a pyscript
@@ -5029,7 +5050,7 @@ class Cmd(cmd.Cmd):
5029
5050
  history_action_group.add_argument('-e', '--edit', action='store_true', help='edit and then run selected history items')
5030
5051
  history_action_group.add_argument(
5031
5052
  '-o',
5032
- '--output_file',
5053
+ '--output-file',
5033
5054
  metavar='FILE',
5034
5055
  help='output commands to a script file, implies -s',
5035
5056
  completer=cls.path_complete,
@@ -5359,7 +5380,7 @@ class Cmd(cmd.Cmd):
5359
5380
  transcript += command
5360
5381
 
5361
5382
  # Use a StdSim object to capture output
5362
- stdsim = utils.StdSim(cast(TextIO, self.stdout))
5383
+ stdsim = utils.StdSim(self.stdout)
5363
5384
  self.stdout = cast(TextIO, stdsim)
5364
5385
 
5365
5386
  # then run the command and let the output go into our buffer
@@ -5385,7 +5406,7 @@ class Cmd(cmd.Cmd):
5385
5406
  with self.sigint_protection:
5386
5407
  # Restore altered attributes to their original state
5387
5408
  self.echo = saved_echo
5388
- self.stdout = cast(TextIO, saved_stdout)
5409
+ self.stdout = saved_stdout
5389
5410
 
5390
5411
  # Check if all commands ran
5391
5412
  if commands_run < len(history):
@@ -5880,11 +5901,10 @@ class Cmd(cmd.Cmd):
5880
5901
  """
5881
5902
  self.perror(message_to_print, style=None)
5882
5903
 
5883
- def cmdloop(self, intro: str | None = None) -> int: # type: ignore[override]
5904
+ def cmdloop(self, intro: RenderableType = '') -> int:
5884
5905
  """Deal with extra features provided by cmd2, this is an outer wrapper around _cmdloop().
5885
5906
 
5886
- _cmdloop() provides the main loop equivalent to cmd.cmdloop(). This is a wrapper around that which deals with
5887
- the following extra features provided by cmd2:
5907
+ _cmdloop() provides the main loop. This provides the following extra features provided by cmd2:
5888
5908
  - transcript testing
5889
5909
  - intro banner
5890
5910
  - exit code
@@ -5922,11 +5942,11 @@ class Cmd(cmd.Cmd):
5922
5942
  self._run_transcript_tests([os.path.expanduser(tf) for tf in self._transcript_files])
5923
5943
  else:
5924
5944
  # If an intro was supplied in the method call, allow it to override the default
5925
- if intro is not None:
5945
+ if intro:
5926
5946
  self.intro = intro
5927
5947
 
5928
5948
  # Print the intro, if there is one, right after the preloop
5929
- if self.intro is not None:
5949
+ if self.intro:
5930
5950
  self.poutput(self.intro)
5931
5951
 
5932
5952
  # And then call _cmdloop() to enter the main loop
cmd2/parsing.py CHANGED
@@ -105,10 +105,10 @@ class Statement(str): # noqa: SLOT000
105
105
  whether positional or denoted with switches.
106
106
 
107
107
  2. For commands with simple positional arguments, use
108
- [args][cmd2.Statement.args] or [arg_list][cmd2.Statement.arg_list]
108
+ [args][cmd2.parsing.Statement.args] or [arg_list][cmd2.parsing.Statement.arg_list]
109
109
 
110
110
  3. If you don't want to have to worry about quoted arguments, see
111
- [argv][cmd2.Statement.argv] for a trick which strips quotes off for you.
111
+ [argv][cmd2.parsing.Statement.argv] for a trick which strips quotes off for you.
112
112
  """
113
113
 
114
114
  # the arguments, but not the command, nor the output redirection clauses.
@@ -193,7 +193,7 @@ class Statement(str): # noqa: SLOT000
193
193
 
194
194
  @property
195
195
  def expanded_command_line(self) -> str:
196
- """Concatenate [command_and_args][cmd2.Statement.command_and_args] and [post_command][cmd2.Statement.post_command]."""
196
+ """Concatenate [cmd2.parsing.Statement.command_and_args]() and [cmd2.parsing.Statement.post_command]()."""
197
197
  return self.command_and_args + self.post_command
198
198
 
199
199
  @property
cmd2/plugin.py CHANGED
@@ -1,4 +1,4 @@
1
- """Classes for the cmd2 plugin system."""
1
+ """Classes for the cmd2 lifecycle hooks that you can register multiple callback functions/methods with."""
2
2
 
3
3
  from dataclasses import (
4
4
  dataclass,
cmd2/py_bridge.py CHANGED
@@ -137,7 +137,7 @@ class PyBridge:
137
137
  )
138
138
  finally:
139
139
  with self._cmd2_app.sigint_protection:
140
- self._cmd2_app.stdout = cast(IO[str], copy_cmd_stdout.inner_stream)
140
+ self._cmd2_app.stdout = cast(TextIO, copy_cmd_stdout.inner_stream)
141
141
  if stdouts_match:
142
142
  sys.stdout = self._cmd2_app.stdout
143
143
 
cmd2/transcript.py CHANGED
@@ -46,7 +46,7 @@ class Cmd2TestCase(unittest.TestCase):
46
46
 
47
47
  # Trap stdout
48
48
  self._orig_stdout = self.cmdapp.stdout
49
- self.cmdapp.stdout = cast(TextIO, utils.StdSim(cast(TextIO, self.cmdapp.stdout)))
49
+ self.cmdapp.stdout = cast(TextIO, utils.StdSim(self.cmdapp.stdout))
50
50
 
51
51
  def tearDown(self) -> None:
52
52
  """Instructions that will be executed after each test method."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cmd2
3
- Version: 3.0.0b2
3
+ Version: 3.1.0
4
4
  Summary: cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python
5
5
  Author: cmd2 Contributors
6
6
  License-Expression: MIT
@@ -16,6 +16,7 @@ Classifier: Programming Language :: Python :: 3.11
16
16
  Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Programming Language :: Python :: 3.13
18
18
  Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Programming Language :: Python :: 3.15
19
20
  Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable
20
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
22
  Requires-Python: >=3.10
@@ -23,7 +24,7 @@ Description-Content-Type: text/markdown
23
24
  License-File: LICENSE
24
25
  Requires-Dist: backports.strenum; python_version == "3.10"
25
26
  Requires-Dist: gnureadline>=8; platform_system == "Darwin"
26
- Requires-Dist: pyperclip>=1.8
27
+ Requires-Dist: pyperclip>=1.8.2
27
28
  Requires-Dist: pyreadline3>=3.4; platform_system == "Windows"
28
29
  Requires-Dist: rich>=14.1.0
29
30
  Requires-Dist: rich-argparse>=1.7.1
@@ -56,9 +57,10 @@ applications. It provides a simple API which is an extension of Python's built-i
56
57
  of cmd to make your life easier and eliminates much of the boilerplate code which would be necessary
57
58
  when using cmd.
58
59
 
59
- > :warning: **cmd2 is now "feature complete" for the `2.x` branch and is actively working on the
60
- > 3.0.0 release on the `main` branch. New features will only be addressed in 3.x moving forwards. If
61
- > need be, we will still fix bugs in 2.x.**
60
+ > :warning: **`cmd2` 3.0.0 has been released and there are some significant backwards
61
+ > incompatibilities from version `2.x`. Please see the
62
+ > [Migration Guide](https://cmd2.readthedocs.io/en/latest/upgrades/) for tips on upgrading from
63
+ > `cmd2` 2.x to 3.x.**
62
64
 
63
65
  ## The developers toolbox
64
66
 
@@ -1,27 +1,27 @@
1
1
  cmd2/__init__.py,sha256=JG-jiy2MMArRTujSiU8usvQpdgQbl3KLTim4tU5SCJw,2278
2
- cmd2/argparse_completer.py,sha256=QaOXP-SfHwmoieNJf5kjZAy0osP3KPeOOx7aYKYthwc,35681
3
- cmd2/argparse_custom.py,sha256=k6l6KUGK8GujvFIXEqLvYiRYWpM491zufDODfXThEoc,67239
2
+ cmd2/argparse_completer.py,sha256=8hK5_QUnHgeHVY60C89kMKn2b91AUyDjyq4dykzjCRA,35680
3
+ cmd2/argparse_custom.py,sha256=m5t3zfOe5BNALOmHW42Xdf3zrWYaoV-CJJGaDjJXdDk,67243
4
4
  cmd2/clipboard.py,sha256=5PSKTe3uDe2pFFEDUEMMwAmzcyPkbXXz14SOQxFFncg,515
5
- cmd2/cmd2.py,sha256=knANWJByVps9EdWKpPOi1_Z-pHiJirOmPnAbA865bQo,271803
5
+ cmd2/cmd2.py,sha256=rHSkJ2RF9QQiYdIktd5DHJYJL-X7swwzyVqM6TMbSZU,272373
6
6
  cmd2/colors.py,sha256=gLAU8gjhPwZud9MNVk53RGE9ZSdwspLnye_kReeZKjc,7848
7
7
  cmd2/command_definition.py,sha256=4FQgivn-9aZegU5tbUl6XsK_G_gZTMfsbGDortz-Ir8,7992
8
8
  cmd2/constants.py,sha256=yDcaeEG4Y2DHmLwUpV-_lEiHkiYUZEuyf9mpDdAzmkg,1773
9
9
  cmd2/decorators.py,sha256=_xxagAxlcUROLZowqjW5RYP935uNMEJyr2h8FkWalGw,17356
10
10
  cmd2/exceptions.py,sha256=J8Ck0dhusB2cfVksRLkM4WVgBTGQnPdEcU26RfBjjRw,3440
11
11
  cmd2/history.py,sha256=QNg5QOe3854hFsu9qw7QlqtnTQvmtXojOWgMZlg6JoQ,14755
12
- cmd2/parsing.py,sha256=G3Ox876rLY4rZ089GjnMlDDbHN_R_g9bemTQ_ONB4Hg,27994
13
- cmd2/plugin.py,sha256=sju631SN_ldjDFJT5ppmK65btq120r9xuhTpCRCbCCA,762
12
+ cmd2/parsing.py,sha256=d97-cnnlFi5HLVuoqjMCOhEc3l8LO8jCbwnwXkOgxro,28006
13
+ cmd2/plugin.py,sha256=_KD44QaHPXncT3qSOWXyzesxKvEbJp5tQeMJ569mLNw,827
14
14
  cmd2/py.typed,sha256=qrkHrYJvGoZpU2BpVLNxJB44LlhqVSKyYOwD_L_1m3s,10
15
- cmd2/py_bridge.py,sha256=dpafsQ2fhhDv-PXu1ZOaiLW4ficD0IsZm-y2nGGfdrU,5191
15
+ cmd2/py_bridge.py,sha256=oD7EwT59HvWSvF9FACWDi-_izkQY6mfitOYX20Y5daI,5190
16
16
  cmd2/rich_utils.py,sha256=hYD5Cpl1fAYeau3l8NuJIO9SGiC44Ew9vTKHret6QMo,16364
17
17
  cmd2/rl_utils.py,sha256=tlDsH5QnN5xlkJT62Q4ZSOHvccXtt1Nm6kcWJQh6cUc,11315
18
18
  cmd2/string_utils.py,sha256=7F8ORonOc2xS0ZC56hjhQcnZhonE3lDFdQxij6v54dA,4430
19
19
  cmd2/styles.py,sha256=kuekxVEr0kOrDNJJbVFqOl96YqX8M6lheKBCBS1nGSU,2945
20
20
  cmd2/terminal_utils.py,sha256=AOk1VjOAzxn7jou2wbALeD6FRIRlKgkQ0VCzIEY51DA,6052
21
- cmd2/transcript.py,sha256=aD5J7UcU82XNo_nJ6wr98t97OkhOsR04VZwbwb1lJLs,9224
21
+ cmd2/transcript.py,sha256=5a_1HGDzhhG1I47g9QnrVNWnOI6Mt_z7jGMH7wFm2XQ,9210
22
22
  cmd2/utils.py,sha256=4jlhcHfgr8yoymP2hRPeCr7_1J37vI4MIIBkszyPK6M,32292
23
- cmd2-3.0.0b2.dist-info/licenses/LICENSE,sha256=9qPeHY4u2fkSz0JQGT-P4T3QqTWTqnQJ_8LkZUhSdFY,1099
24
- cmd2-3.0.0b2.dist-info/METADATA,sha256=79v47aAdyc9DvBBa23RQwhpJGZ5894zkF0BlQ-QIGgI,16271
25
- cmd2-3.0.0b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
- cmd2-3.0.0b2.dist-info/top_level.txt,sha256=gJbOJmyrARwLhm5diXAtzlNQdxbDZ8iRJ8HJi65_5hg,5
27
- cmd2-3.0.0b2.dist-info/RECORD,,
23
+ cmd2-3.1.0.dist-info/licenses/LICENSE,sha256=9qPeHY4u2fkSz0JQGT-P4T3QqTWTqnQJ_8LkZUhSdFY,1099
24
+ cmd2-3.1.0.dist-info/METADATA,sha256=_YyjT-gVHX70eWwdFhXpgZ8IenPTPZE2ue14SS6yBvo,16340
25
+ cmd2-3.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
+ cmd2-3.1.0.dist-info/top_level.txt,sha256=gJbOJmyrARwLhm5diXAtzlNQdxbDZ8iRJ8HJi65_5hg,5
27
+ cmd2-3.1.0.dist-info/RECORD,,
File without changes