-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SRBuilds
committed
Jul 12, 2024
1 parent
e38cb31
commit eaa7793
Showing
55 changed files
with
801 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Release 24.3 | ||
************ | ||
|
||
24.3.3 | ||
###### | ||
|
||
* No additional features | ||
|
||
.. Reviewed by PLM 20240509 | ||
.. Reviewed by TechComms 20210510 | ||
24.3.2 | ||
###### | ||
|
||
* No additional features | ||
|
||
.. Reviewed by PLM 20240403 | ||
.. Reviewed by TechComms 20240403 | ||
24.3.1 | ||
###### | ||
|
||
* No additional features | ||
|
||
.. Reviewed by PLM 20240219 | ||
.. Reviewed by TechComms 20240227 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Release 24.7 | ||
************ | ||
|
||
24.7.1 | ||
###### | ||
|
||
* Support for the ``intended`` NMDA datastore in :py:class:`pysros.management.Connection` | ||
* Support for :ref:`obtaining user inputs<obtaining_user_inputs>` | ||
* Support for the :py:mod:`getpass` module for user inputs | ||
* Support for the :py:func:`sys.stdin.readline` function for user inputs | ||
* Support for the :py:func:`input` function for user inputs | ||
* Provides :py:func:`pysros.management.Connection.session_id` which returns the current | ||
connections SR OS / NETCONF session-id | ||
|
||
.. Reviewed by PLM 20240523 | ||
.. Reviewed by TechComms 20240529 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
:mod:`getpass` --- Portable password input | ||
========================================== | ||
|
||
.. module:: getpass | ||
:synopsis: Portable reading of passwords | ||
|
||
.. admonition:: Differences to Python | ||
:class: attention | ||
|
||
This module implements a subset of the upstream Python module. | ||
For more information, refer to the original documentation: | ||
`getpass <https://docs.python.org/3.9/library/getpass.html>`_. | ||
|
||
This module is used when executing on SR OS only. On a remote machine, the | ||
native Python `getpass <https://docs.python.org/3.9/library/getpass.html>`_ | ||
module is used. | ||
|
||
The :mod:`getpass` module provides functions for user inputs of passwords | ||
without returning the characters to the screen. | ||
|
||
.. Reviewed by PLM 20240523 | ||
.. Reviewed by TechComms 20240529 | ||
Functions | ||
--------- | ||
|
||
.. function:: getpass(prompt='Password: ') | ||
|
||
Prompt the user for a password without echoing. The user is prompted using | ||
the string *prompt*, which defaults to ``'Password: '``. | ||
|
||
:param prompt: Optional string prompt to provide the user guidance. | ||
:type prompt: str, optional | ||
:return: The inputted value | ||
:rtype: str | ||
|
||
.. Reviewed by PLM 20240612 | ||
.. Reviewed by TechComms 20240612 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.