This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: subprocess hungs when processing value from mariadb
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.8
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: mark.dickinson, zh.bolatbek
Priority: normal Keywords:

Created on 2021-08-04 05:49 by zh.bolatbek, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (4)
msg398862 - (view) Author: jb (zh.bolatbek) Date: 2021-08-04 05:49
I am doing an insert in mariadb databases. For example, INSERT INTO t (a, b, c) VALUES (1, 3, None) RETURNING a, b. Upon execution, I get the value as (<NULL>, <NULL>). When accessing the zero element, my subroutine hangs.
msg398903 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2021-08-04 15:01
Hi @jb. This tracker is for reporting bugs in the core Python language. While it's possible that what you're experiencing is due to a bug in core Python, on the information given it's likely that the problem is either in your own code, or in whatever database driver code you're using. In either case, I'm afraid this tracker is not the appropriate place to seek help.

For general debugging help, you could try any of the various dedicated Python groups and mailing lists (for example, discuss.python.org), or something like Stack Overflow. Be prepared to give details of exactly what you did, what you expected to happen, and what actually happened, along with code that will help others reproduce your issue.

I'm going to close here - currently, there's nothing useful that the Python core team can do with this report. The issue can be re-opened with more information after further investigation, if that investigation produces reasonable grounds to suspect a core Python bug.
msg398961 - (view) Author: jb (zh.bolatbek) Date: 2021-08-05 03:57
Privet, spasibo za otklik. Poprobuyu yeshche raz provesti
issledovaniye. Yesli budet problema, napishu, na discuss.python.org
ili stackoverflow.com. S uvazheniyem, Bolatbek.
volume_up
165 / 5000
keyboard

Translation results

Hi, thanks for your feedback. I'll try to do my research again. If
there is a problem, I will write to discuss.python.org or
stackoverflow.com.
Best regards, Bolatbek.

ср, 4 авг. 2021 г. в 21:02, Mark Dickinson <report@bugs.python.org>:
>
>
> Mark Dickinson <dickinsm@gmail.com> added the comment:
>
> Hi @jb. This tracker is for reporting bugs in the core Python language. While it's possible that what you're experiencing is due to a bug in core Python, on the information given it's likely that the problem is either in your own code, or in whatever database driver code you're using. In either case, I'm afraid this tracker is not the appropriate place to seek help.
>
> For general debugging help, you could try any of the various dedicated Python groups and mailing lists (for example, discuss.python.org), or something like Stack Overflow. Be prepared to give details of exactly what you did, what you expected to happen, and what actually happened, along with code that will help others reproduce your issue.
>
> I'm going to close here - currently, there's nothing useful that the Python core team can do with this report. The issue can be re-opened with more information after further investigation, if that investigation produces reasonable grounds to suspect a core Python bug.
>
> ----------
> nosy: +mark.dickinson
> resolution:  -> not a bug
> stage:  -> resolved
> status: open -> closed
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue44820>
> _______________________________________
msg398963 - (view) Author: jb (zh.bolatbek) Date: 2021-08-05 04:19
Great, thanks!

чт, 5 авг. 2021 г. в 09:57, jb <report@bugs.python.org>:
>
>
> jb <zh.bolatbek@gmail.com> added the comment:
>
> Privet, spasibo za otklik. Poprobuyu yeshche raz provesti
> issledovaniye. Yesli budet problema, napishu, na discuss.python.org
> ili stackoverflow.com. S uvazheniyem, Bolatbek.
> volume_up
> 165 / 5000
> keyboard
>
> Translation results
>
> Hi, thanks for your feedback. I'll try to do my research again. If
> there is a problem, I will write to discuss.python.org or
> stackoverflow.com.
> Best regards, Bolatbek.
>
> ср, 4 авг. 2021 г. в 21:02, Mark Dickinson <report@bugs.python.org>:
> >
> >
> > Mark Dickinson <dickinsm@gmail.com> added the comment:
> >
> > Hi @jb. This tracker is for reporting bugs in the core Python language. While it's possible that what you're experiencing is due to a bug in core Python, on the information given it's likely that the problem is either in your own code, or in whatever database driver code you're using. In either case, I'm afraid this tracker is not the appropriate place to seek help.
> >
> > For general debugging help, you could try any of the various dedicated Python groups and mailing lists (for example, discuss.python.org), or something like Stack Overflow. Be prepared to give details of exactly what you did, what you expected to happen, and what actually happened, along with code that will help others reproduce your issue.
> >
> > I'm going to close here - currently, there's nothing useful that the Python core team can do with this report. The issue can be re-opened with more information after further investigation, if that investigation produces reasonable grounds to suspect a core Python bug.
> >
> > ----------
> > nosy: +mark.dickinson
> > resolution:  -> not a bug
> > stage:  -> resolved
> > status: open -> closed
> >
> > _______________________________________
> > Python tracker <report@bugs.python.org>
> > <https://bugs.python.org/issue44820>
> > _______________________________________
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue44820>
> _______________________________________
History
Date User Action Args
2022-04-11 14:59:48adminsetgithub: 88983
2021-08-05 04:19:41zh.bolatbeksetmessages: + msg398963
2021-08-05 03:57:42zh.bolatbeksetmessages: + msg398961
2021-08-04 15:01:34mark.dickinsonsetstatus: open -> closed

nosy: + mark.dickinson
messages: + msg398903

resolution: not a bug
stage: resolved
2021-08-04 05:49:38zh.bolatbekcreate