unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#56243] [PATCH] gnu: python-debug: Improve description and synopsis.
@ 2022-06-26 22:09 jgart via Guix-patches via
  2022-06-26 22:40 ` Maxime Devos
  0 siblings, 1 reply; 4+ messages in thread
From: jgart via Guix-patches via @ 2022-06-26 22:09 UTC (permalink / raw)
  To: 56243; +Cc: jgart

* gnu/packages/python.scm (python-debug): Improve description and
synopsis.
[synopsis]: Improve synopsis.
[description]: Improve description.
---
 gnu/packages/python.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ad475d8acc..6611e13096 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -617,10 +617,11 @@ (define-public python-debug
        ((#:configure-flags flags '())
         `(cons "--with-pydebug" ,flags))))
     (synopsis
-     "High-level, dynamically-typed programming language (for debugging)")
+     "Python with the debug hooks enabled")
     (description
-     "This variant of Python provides an interpreter built with
-@code{--with-pydebug} to help develop and debug extensions.  See
+"This variant of Python provides an interpreter
+built with the @code{--with-pydebug} flag, enabling
+debug hooks for development or testing purposes.  See
 @url{https://pythonextensionpatterns.readthedocs.io/en/latest/debugging/debug.html},
 for more information.")))
 
-- 
2.36.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#56243] [PATCH] gnu: python-debug: Improve description and synopsis.
  2022-06-26 22:09 [bug#56243] [PATCH] gnu: python-debug: Improve description and synopsis jgart via Guix-patches via
@ 2022-06-26 22:40 ` Maxime Devos
  2022-07-16  3:54   ` bug#56243: " Maxim Cournoyer
  0 siblings, 1 reply; 4+ messages in thread
From: Maxime Devos @ 2022-06-26 22:40 UTC (permalink / raw)
  To: jgart, 56243

[-- Attachment #1: Type: text/plain, Size: 1029 bytes --]

jgart via Guix-patches via schreef op zo 26-06-2022 om 17:09 [-0500]:
>      (synopsis
> -     "High-level, dynamically-typed programming language (for debugging)")
> +     "Python with the debug hooks enabled")
>      (description
> -     "This variant of Python provides an interpreter built with
> -@code{--with-pydebug} to help develop and debug extensions.  See
> +"This variant of Python provides an interpreter
> +built with the @code{--with-pydebug} flag, enabling
> +debug hooks for development or testing purposes.  See
>  @url{https://pythonextensionpatterns.readthedocs.io/en/latest/debugging/debug.html},
>  for more information.")))

I can't tell whether the old or new description is better but the new
synopsis seems better to me (more to the point and descriptive -- you
can do debugging in the regular python too!).  Maybe it would be even
better to make clear in the description that you can also do debugging
with the _regular_ python package?

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#56243: [PATCH] gnu: python-debug: Improve description and synopsis.
  2022-06-26 22:40 ` Maxime Devos
@ 2022-07-16  3:54   ` Maxim Cournoyer
  2022-07-16  4:04     ` [bug#56243] " jgart via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Maxim Cournoyer @ 2022-07-16  3:54 UTC (permalink / raw)
  To: Maxime Devos; +Cc: 56243-done, jgart

Hi,

Maxime Devos <maximedevos@telenet.be> writes:

> jgart via Guix-patches via schreef op zo 26-06-2022 om 17:09 [-0500]:
>>      (synopsis
>> -     "High-level, dynamically-typed programming language (for debugging)")
>> +     "Python with the debug hooks enabled")
>>      (description
>> -     "This variant of Python provides an interpreter built with
>> -@code{--with-pydebug} to help develop and debug extensions.  See
>> +"This variant of Python provides an interpreter
>> +built with the @code{--with-pydebug} flag, enabling
>> +debug hooks for development or testing purposes.  See
>>  @url{https://pythonextensionpatterns.readthedocs.io/en/latest/debugging/debug.html},
>>  for more information.")))
>
> I can't tell whether the old or new description is better but the new
> synopsis seems better to me (more to the point and descriptive -- you
> can do debugging in the regular python too!).  Maybe it would be even
> better to make clear in the description that you can also do debugging
> with the _regular_ python package?

I pushed the improved synopsis, but also had doubts about the
description change, so left it out in
15943fa75788edb8d9ed1c3d8d320f50d21e4baa.

Closing.

Thanks,

Maxim




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#56243] [PATCH] gnu: python-debug: Improve description and synopsis.
  2022-07-16  3:54   ` bug#56243: " Maxim Cournoyer
@ 2022-07-16  4:04     ` jgart via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2022-07-16  4:04 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 56243-done, Maxime Devos

On Fri, 15 Jul 2022 23:54:25 -0400 Maxim Cournoyer <maxim.cournoyer@gmail.com> wrote:
> I pushed the improved synopsis, but also had doubts about the
> description change, so left it out in
> 15943fa75788edb8d9ed1c3d8d320f50d21e4baa.

Hi Maxim,

Sorry I couldn't get to it in time but thanks for working on it.

all best,

jgart




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-16  4:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-26 22:09 [bug#56243] [PATCH] gnu: python-debug: Improve description and synopsis jgart via Guix-patches via
2022-06-26 22:40 ` Maxime Devos
2022-07-16  3:54   ` bug#56243: " Maxim Cournoyer
2022-07-16  4:04     ` [bug#56243] " jgart via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).