python-editor 1.0.3-1 source package in Ubuntu

Changelog

python-editor (1.0.3-1) unstable; urgency=medium

  * Team upload.

  [ Ondřej Nový ]
  * d/control: Use <email address hidden> as maintainer

  [ David Rabel ]
  * New upstream version.
  * d/patches: Remove patch that has been merged upstream.
  * d/patches: Fix python3 issues with upstream package.
  * d/control: Add build dependency on editor.
  * d/copyright: Clean up.

 -- David Rabel <email address hidden>  Tue, 04 Sep 2018 11:32:03 +0200

Upload details

Uploaded by:
Debian OpenStack
Uploaded to:
Sid
Original maintainer:
Debian OpenStack
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-editor_1.0.3-1.dsc 2.1 KiB ff0f3e20b98b2f7366853bd8f815e3c670e93fcc19f06359d6bad2d152042fb4
python-editor_1.0.3.orig.tar.gz 6.8 KiB e627a2160bdf5e435dcde964cf38bae39c02cdd8da2ccf5fac313b2ca453e2a3
python-editor_1.0.3-1.debian.tar.xz 3.4 KiB 191418d5e1c1ada2e6ac5e9348bf4b4d946f1c90e26b2968b9c339a57be9ed4f

Available diffs

No changes file available.

Binary packages built by this source

python-editor: No summary available for python-editor in ubuntu focal.

No description available for python-editor in ubuntu focal.

python3-editor: programmatically open an editor, capture the result - Python 3.x

 python-editor is a library that provides the editor module for
 programmatically interfacing with your system's $EDITOR. The user can then
 enter a commit message for example.
 .
 Editor first looks for the environment variable. If set, it uses
 the value as-is, without fallbacks. If no $EDITOR is set, editor will search
 through a list of known editors, and use the first one that exists on the
 system. For example, on Linux, editor will look for the following editors in
 order:
  * vim
  * emacs
  * nano
 .
 When calling the edit() function, editor will open the editor in a
 subprocess, inheriting the parent process's stdin, stdout
 .
 This package contains the Python 3.x module.