Karsten Hilbert wrote at 2023-11-5 23:19 +0100:
> ...
>do you happen to know where to read up on how to fit a pip
>constraint file into a Debian package creation workflow ?
I have only rudimentary `apt` knowledge.
I know it is quite flexible, e.g. it used to handle `flash`
in a special way. I exp
> I can see how the truley dim-witted might forget that other countries
> have phone numbers with differing lengths and formatting/punctuation,
> but there are tons of sites where it takes multiple tries when
> entering even a bog-standard USA 10-0digit phone nubmer because they
> are completely f
On Sun, 5 Nov 2023 19:22:49 -0600, D'Arcy Cain wrote:
> Gotta wonder for sure. It could also be the case of programmers
> depending on user input but the users insist on living with the bugs
> and/or working around them. We made crash reporting dead simple to
> report on and still users didn't b
On 11/6/23 01:57, Simon Connah via Python-list wrote:
The thing I truly hate is when you have two telephone number fields. One for landline and one for mobile. I mean who in hell has a landline these days?
People who live in places with spotty, or no, mobile coverage. We do exist.
--
https://m
On 2023-11-06, D'Arcy Cain wrote:
> On 2023-11-05 06:48, Jon Ribbens via Python-list wrote:
>> Sometimes I think that these sorts of stupid, wrong, validation are the
>> fault of idiot managers. When it's apostrophes though I'm suspicious
>> that it may be idiot programmers who don't know how to p
Hello,
I would like to know how to detect (e.g. via a linter) typos in function
names imported from another module.
Let's assume this given Python code snippet.
import foo
foo.baR()
The package "foo" do contain a function named "bar()" (all lower case
letters). The function "baR()" does not
On 2023-11-06, Mats Wichmann wrote:
> On 11/6/23 01:57, Simon Connah via Python-list wrote:
>> The thing I truly hate is when you have two telephone number fields.
>> One for landline and one for mobile. I mean who in hell has a
>> landline these days?
>
> People who live in places with spotty, o
On 2023-11-06 08:57, Simon Connah via Python-list wrote:
I can see how the truley dim-witted might forget that other countries
have phone numbers with differing lengths and formatting/punctuation,
but there are tons of sites where it takes multiple tries when
entering even a bog-standard USA 10
c.bu...@posteo.jp wrote at 2023-11-6 12:47 +:
>I would like to know how to detect (e.g. via a linter) typos in function
>names imported from another module.
One option is a test suite (--> Python's "unittest" package)
with a sufficiently high coverage (near 100 %).
--
https://mail.python.org/
Dieter Maurer via Python-list ezt írta (időpont:
2023. nov. 6., H, 19:13):
> c.bu...@posteo.jp wrote at 2023-11-6 12:47 +:
> >I would like to know how to detect (e.g. via a linter) typos in function
> >names imported from another module.
>
> One option is a test suite (--> Python's "unittest"
On Tue, 7 Nov 2023 at 02:05, Jon Ribbens via Python-list
wrote:
> That was another thing that I used to find ridiculous, but seems to have
> improved somewhat in recent years - website error pages that said "please
> contact us to let us know about this error". I'm sorry, what? You want
> me to co
On 11/6/23 08:23, Jon Ribbens via Python-list wrote:
On 2023-11-06, Mats Wichmann wrote:
On 11/6/23 01:57, Simon Connah via Python-list wrote:
The thing I truly hate is when you have two telephone number fields.
One for landline and one for mobile. I mean who in hell has a
landline these days?
On Tue, 7 Nov 2023 at 07:10, Mats Wichmann via Python-list
wrote:
> Suggests maybe labeling should be something like:
>
> * Number you want to be called on
> * Number for texted security messages, if different
>
> Never seen that, though :-)
>
My responses would be:
* Don't.
* That's what crypto
Am Mon, Nov 06, 2023 at 01:17:11AM - schrieb Jon Ribbens via Python-list:
> >> >> Are they not available in your system's package manager?
> >> >
> >> > ... this clearly often answers to "no" for applications of
> >> > any complexity.
> >> >
> >> > Is there a suggested proper path to deal with
Am Mon, Nov 06, 2023 at 08:58:00AM +0100 schrieb Dieter Maurer:
> I know that debian packagers create debian packages
> from Python distributions not using the approach sketched above
> and likely they have their reasons.
>
> You might want to discuss this on an `apt` related mailing list.
Yeah,
On 11/6/23 14:28, Karsten Hilbert via Python-list wrote:
I had just hoped someone here might have a handy pointer for
how to deal with modules having to be installed from pip for
use with an apt-installed python-based application.
That just shouldn't happen - such packages are supposed to be
On Sun, Nov 5, 2023 at 1:23 PM office officce via Python-list <
python-list@python.org> wrote:
> which python version is better to be used and how to make sure it works on
> my window 10 because i downloaded it and it never worked so I uninstall to
> do that again please can you give me the steps
Am Mon, Nov 06, 2023 at 02:43:47PM -0700 schrieb Mats Wichmann via Python-list:
> >I had just hoped someone here might have a handy pointer for
> >how to deal with modules having to be installed from pip for
> >use with an apt-installed python-based application.
>
> That just shouldn't happen - su
On 11/6/2023 5:04 PM, Karsten Hilbert via Python-list wrote:
Am Mon, Nov 06, 2023 at 02:43:47PM -0700 schrieb Mats Wichmann via Python-list:
I had just hoped someone here might have a handy pointer for
how to deal with modules having to be installed from pip for
use with an apt-installed python
On 7/11/23 7:45 am, Mats Wichmann wrote:
Continuing with the example, if you have a single phone number field, or
let a mobile number be entered in a field marked for landline, you will
probably assume you can text to that number.
But if the site can detect that you've entered a mobile number
On 6/11/23 6:34 pm, rbowman wrote:
We've found even if you directly ask the user often the answer is 'I
dunno' or some mythology they have constructed to explain the problem.
This seems to apply to hardware issues as well. Louis Rossmann has
a philosophy of "Never believe what the customer tell
On Tue, 7 Nov 2023 at 10:11, Greg Ewing via Python-list
wrote:
>
> On 7/11/23 7:45 am, Mats Wichmann wrote:
> > Continuing with the example, if you have a single phone number field, or
> > let a mobile number be entered in a field marked for landline, you will
> > probably assume you can text to t
Just mildly noticing the topics discussed have wandered quite a bit away
from Python, let alone even programming.
Phone numbers are not what they used to be. They tend to be quite portable
and in some ways can be chained so my house phone rings through to my cell
phone but a text will not be forwa
On Tue, 7 Nov 2023 12:11:18 +1300, Greg Ewing wrote:
> On 6/11/23 6:34 pm, rbowman wrote:
>> We've found even if you directly ask the user often the answer is 'I
>> dunno' or some mythology they have constructed to explain the problem.
>
> This seems to apply to hardware issues as well. Louis Ros
Hello Dieter,
thanks for your reply.
Am 06.11.2023 19:11 schrieb Dieter Maurer:
One option is a test suite (--> Python's "unittest" package)
with a sufficiently high coverage (near 100 %).
Yes, that is the primary goal. But it is far away in the related
project.
I got a hint that "pylint"
25 matches
Mail list logo