python-editor 1.0.3-6ubuntu1 source package in Ubuntu

Changelog

python-editor (1.0.3-6ubuntu1) noble; urgency=medium

  * Drop Dependency on python3-distutils.

 -- Matthias Klose <email address hidden>  Sun, 10 Mar 2024 18:45:02 +0100

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Noble
Original maintainer:
Debian OpenStack
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-editor_1.0.3.orig.tar.gz 6.8 KiB e627a2160bdf5e435dcde964cf38bae39c02cdd8da2ccf5fac313b2ca453e2a3
python-editor_1.0.3-6ubuntu1.debian.tar.xz 3.6 KiB 4fa3a6cc475641179a372de63bb40f4788ea103b810cd7418504050cb2fe8608
python-editor_1.0.3-6ubuntu1.dsc 2.1 KiB ed5c979c59c19bc4765e1830d8fe65bc507c9883e30d06489cbfdd5e46692f14

View changes file

Binary packages built by this source

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 $EDITOR 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.