On 10/03/23 2:57 pm, Chris Angelico wrote:
import sys; "readline" in sys.modules
Is it?
Yes, it is -- but only when using the repl!
If I put that in a script, I get False.
My current theory is that it gets pre-imported when using
Python interactively because the repl itself uses it
for me.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
On 2023-03-13, Morten W. Petersen wrote:
> I was working in Python today, and sat there scratching my head as the
> numbers for calculations didn't add up. It went into negative numbers,
> when that shouldn't have been possible.
>
> Turns out I had a very small
it.
+1
Whenever I see code with type hints, I have to edit them out, either
mentally, or physically, to understand what the code is actually doing.
It's adding new syntax which I'm not used to and don't want to be forced
to learn.
Rob Cliffe
--
https://mail.python.org/mailman/
u haven't initialised yet.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
I accidentally used 'argparse' like this in my Python 3.9 program:
parser.add_argument ("-c, --clean", dest="clean", action="store_true")
parser.add_argument ("-n, --dryrun", dest="dryrun", action="store_true")
ins
'parser.add_argument ("-c, --clean", dest="clean",
action="store_true")'
error: "-c, --clean", 2 options are unsupported.
BTW, accusing someone of 'trolling' is rather rude IMHO.
And thanks to ChrisA for a nice and normal answer.
--
--gv
--
https://mail.python.org/mailman/listinfo/python-list
!= '']
nextWords = []
for w in CopyOfWords:
if w[0] != ch:
nextWords.append(w)
elif len(w) > 1:
nextWords.append(w[1:])
assert Words == nextWords
Why?
Rob Cliffe
From: Python-list on behalf o
uding more context is likely to be helpful, too. Don't leave it to the readers to infer what you
were thinking of.
I'll do that. My post was written in a bit of a hurry
and frustration after struggling with my 'typo' for
30 minutes.
--
--gv
--
https://mail.python.org/mailman/listinfo/python-list
On 20/03/23 7:07 am, Jon Ribbens wrote:
Ah, apparently it got removed in Python 3, which is a bit odd as the
last I heard it was added in Python 2.2 in order to achieve consistency
with other types.
As far as I remember, the file type came into existence
with type/class unification, and "
On 2023-03-19, Stefan Ram wrote:
> Peng Yu writes:
>>But when I try the following code, get_body() is not found. How to get
>>get_body() to work?
>
> Did you know that this post of mine here was posted to
> Usenet with a Python script I wrote?
>
> That Python
predefined name "file"!
Ah, apparently it got removed in Python 3, which is a bit odd as the
last I heard it was added in Python 2.2 in order to achieve consistency
with other types.
--
https://mail.python.org/mailman/listinfo/python-list
On 2023-03-19, Greg Ewing wrote:
> On 20/03/23 7:07 am, Jon Ribbens wrote:
>> Ah, apparently it got removed in Python 3, which is a bit odd as the
>> last I heard it was added in Python 2.2 in order to achieve consistency
>> with other types.
>
> As far as I rememb
self.direction = Direction.FORWARD
else:
self.direction = Direction.BACKWARD
When called from Constraint, it uses the one at UrnaryConstraint. How does it
know which one to use?
Thanks,
Jen
--
https://mail.python.org/mailman/listinfo/python-list
Thanks to Richard Damon and Peter Holzer for your replies. I'm working through
the call chain to understand better so I can post a followup question if
needed.
Thanks again.
Jen
Mar 26, 2023, 19:21 by [email protected]:
> On 3/26/23 1:43 PM, Jen Kris via Python-li
Based on your explanations, I went through the call chain and now I understand
better how it works, but I have a follow-up question at the end.
This code comes from the DeltaBlue benchmark in the Python benchmark suite.
1
The call chain starts in a non-class program with the following
Cameron,
Thanks for your reply. You are correct about the class definition lines – e.g.
class EqualityConstraint(BinaryConstraint). I didn’t post all of the code
because this program is over 600 lines long. It's DeltaBlue in the Python
benchmark suite.
I’ve done some more work
Thanks to everyone who answered this question. Your answers have helped a lot.
Jen
Mar 27, 2023, 14:12 by [email protected]:
> On 3/26/23 17:53, Jen Kris via Python-list wrote:
>
>> I’m asking all these question because I have worked in a procedural style
>> for many
than a median?
It may be a matter of whether the GIL is held or not. I had a look
at the source for deque, and it doesn't seem to explicitly do
anything about locking, it just relies on the GIL.
So maybe statistics.median() is implemented in C and statistics.mean()
in Python, or something like
t iterates
over it. Hopefully that would be implemented in a thread-safe
way (although the docs don't currently promise that).
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
/stable/gallery/misc/hyperlinks_sgskip.html
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
rrive shortly.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
.
There are Clifford algebras, Lie algebras, ...
Not sure what any of those should do to strings, though. :-)
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
://mail.python.org/mailman/listinfo/python-list
a package named after the script, e.g. put the local
modules used by foo.py into a package called foolib.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
ilman/listinfo/python-list
alized that Python's curses support is missing two
huge chunks: both menu and form support are not there. I guess that
explains why people feel the need to write high-level UI wrappers for
Python curses: the high level stuff that curses does support is
missing from the Python bindings.
Addi
X.func:
X.func() # Called with no arguments
Best wishes
Rob Cliffe
On 20/04/2023 23:44, Lorenzo Catoni wrote:
Dear Python Mailing List members,
I am writing to seek your assistance in understanding an unexpected
behavior that I encountered while using the __enter__ method. I have
provided
l.python.org/mailman/listinfo/python-list
st that reversed()
itself should return a sequence view rather than an iterator.
That would require restricting it to working on sequences,
which would be an incompatible change.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
is my pickled object",{my_pickeld_object},)
with open('file.pkl', 'rb') as file:
number=pickle.load(file)
my_unpickeled_object=pickle.loads(my_pickeld_object)
print("this is my unpickeled object",{my_unpickeled_object},)
but now i get error
Traceback (most recent c
Hi,
Need some help,
in the Python, I have a array of string
var_array=["Opt1=DG","Opt1=DG2"]
I need to call c library and pass var_array as parameter
In the argtypes, how do I set up ctypes.POINTER(???) for var_array?
func.argtypes=[ctypes.c_void_p,ctypes.c
Awesome, thanks!
On Thu, May 11, 2023 at 1:47 PM Eryk Sun wrote:
> On 5/11/23, Jason Qian via Python-list wrote:
> >
> > in the Python, I have a array of string
> > var_array=["Opt1=DG","Opt1=DG2"]
> > I need to call c library and pass var_arra
last):
File "", line 1, in
import My_Working_File
ImportError: No module named 'My_Working_File'
I have tried adding my dir in registry to the existing PythonPath
[HKEY_CURRENT_USER\Software\Python\PythonCore\3.4\PythonPath]
@="D:\\Shades\\Tools\\Python\\Lib;D:\
Sunday, May 14, 2023 at 11:11, Mats Wichmann wrote:
Re: PythonPath / sys.path (at least in part)
>On 5/14/23 10:43, Barry wrote:
>> I take it you have business reasons to use an obsolete version python.
>> Where did you get your version of python from?
>In fact, a *nine* y
cated and slated for removal in
>> Python 3.13
>>
>> What should I use in place of nntplib?
>I'm curious as to why nntplib is deprecated? Surely there are still a
>lot of nntp servers around
there must be this list is mirrored on one, and AFAICS some pythoners use t
Hi,
I Need some of your help.
I have the following C code to import *Import python.* It works 99% of
the time, but sometimes receives "*ImportError('Error: Reinit is
forbidden')*". error.
**We run multiple instances of the app parallelly.
*** Python version(3.7.
I am trying to learn tkinter.
Several examples on the internet refer to a messagebox class
(tkinter.messagebox).
But:
Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:20:19) [MSC v.1925 32
bit (Intel)] on win32
Type "help", "copyright", "credits" or
String(str_value, "utf-8",
"Error ~");
const char **strErrValue* = PyBytes_AS_STRING(pyExcValueStr);
//where *strErrValue* = "ImportError('Error: Reinit is forbidden')"
...
}
What we imported is a Python file which import some pyd libraries.
Thanks
Jason
small) when imported does not work any longer
I assume I have missed something, any pointers to what/how/why please
--
https://mail.python.org/mailman/listinfo/python-list
Friday, May 19, 2023 at 12:25, Barry Scott wrote:
Re: Silly (maybe) question re impor (at least in part)
>
>
>> On 19 May 2023, at 07:44, Grizzy Adams via Python-list
>> wrote:
>>
>> Morning All
>>
>> I'm working through the tutorial and runnin
On 21/05/23 5:54 am, Alex Jando wrote:
hash.=hexdigest()
That would be a very strange and unprecedented syntax that
munges together an attribute lookup and a call.
Keep in mind that a method call in Python is actually two
separate things:
y = x.m()
is equivalent to
f = x.m
y = f()
But it
o it would just be syntactic sugar, which is
harder to justify.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
ll still be
>> possible to install it via pip or some other mechanism.
>
> It won't magically be available via pip unless someone steps up to maintain
> it as a PyPI package
That would appear to have already happened over a month ago.
--
https://mail.python.org/mailman/listinfo/python-list
course, in your use case it may be perfectly appropriate to write
"num = num.value" as you did.
But IMO it's not something that should be encouraged in general.
Best wishes
Rob Cliffe
--
https://mail.python.org/mailman/listinfo/python-list
might return Unicode, depending
on which server it was talking to.)
Peter's actual code feels more Pythonic to me. (It's even 2 lines
shorter! 😎)
Rob Cliffe
--
https://mail.python.org/mailman/listinfo/python-list
On 23/05/2023 22:03, Peter J. Holzer wrote:
On 2023-05-21 20:30:45 +0100, Rob Cliffe via Python-list wrote:
On 20/05/2023 18:54, Alex Jando wrote:
So what I'm suggesting is something like this:
hash = hashlib.sha256(b'w
ace
somewhere.
Now, my remarks are as a tk newbie; they may be naive and ignorant,
perhaps even laughable. But IMO it is often worth listening to input
from newbies to consider how things might be improved.
Comments, anyone?
Better yet (holds breath ...) can anyone point me towards some decent
tkinter documentation?
Best wishes
Rob Cliffe
--
https://mail.python.org/mailman/listinfo/python-list
ly an operation on strings, it doesn't look in the
file system.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
my platform (Windows10) the shadowing of tk.Button objects is
more conspicuous (without using styles or whatever).
Best wishes
Rob Cliffe
--
https://mail.python.org/mailman/listinfo/python-list
Originally posted to idle-dev, but thought this might be a better place. Let me
know if it isn't.
Hi,
I was curious about the internals of IDLE, and noticed that IDLE uses executes
user code in a "subprocess" that's separate from the Python interpreter that is
running IDL
you would have to do in the face of inactive maintainers regardless
of where or how the project was hosted. This is not a github problem
or a big-corporation problem, it's a people problem.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
uting code in the REPL have their own
namespace. But everything else is shared -- builtins, imported
Python modules, imported C extension modules, etc. etc.
There's a long-running project to make it possible to have
multiple fully-isolated Python interpreters in one process, but
the way
On Tuesday, May 30th, 2023 at 9:14 PM, Greg Ewing wrote:
> Globals you create by executing code in the REPL have their own
> namespace. But everything else is shared -- builtins, imported
> Python modules, imported C extension modules, etc. etc.
Thanks for the explanation. Could you ela
trick
> above might still affect a subinterpreter even in a post-PEP554
> world.)
Amazing example! Thank you everyone for the detailed responses - will be sure
to check out the PEP as well.
Jim
--
https://mail.python.org/mailman/listinfo/python-list
opt.return
^^
SyntaxError: invalid syntax
It's extremely hard to guess what the programmer might have intended
in these situations, as the error might not be the word "return" but
perhaps the punctuation (maybe that was supposed to be a semicolon, or
something). So Pyth
Op 6/06/2023 om 16:48 schreef Chris Angelico via Python-list:
On Wed, 7 Jun 2023 at 00:42, Roel Schroeven wrote:
> (Recently there has been an effort to provide clearer and more useful
> error messages; this seems to be a case where there is still room for
> improvement: "Syntax
the `dest` argument to `add_argument()` which can specify a different
name for the attribute used in code (it's almost like they thought about
this type of problem ;o)). If it's from `optparse`, that has a similar
argument, but `optparse` is deprecated so consider updating to `argparse`.
(Recently there has been an effort to provide clearer and more useful
error messages; this seems to be a case where there is still room for
improvement: "SyntaxError: invalid syntax" doesn't immediately remind me
of that fact that 'return' is a keyword and therefor can't be used as an
attribute.)
--
Mark.
--
https://mail.python.org/mailman/listinfo/python-list
Greetings! Time for another combined release of six separate versions of Python!
<https://discuss.python.org/t/python-3-11-4-3-10-12-3-9-17-3-8-17-3-7-17-and-3-12-0-beta-2-are-now-availble/27477#before-you-scroll-away-to-the-download-links-1>Before
you scroll away to the download links
Dear Python Technical Team,
I hope this email finds you well. I am reaching out to you today to seek
assistance with an issue I am facing regarding the installation of 'pip'
despite my numerous attempts to resolve the problem.
Recently, I performed installation, uninstallation, and e
On 6/7/23 10:08, MRAB via Python-list wrote:
On 2023-06-07 15:54, Florian Guilbault via Python-list wrote:
Dear Python Technical Team,
I hope this email finds you well. I am reaching out to you today to seek
assistance with an issue I am facing regarding the installation of 'pip'
On 6/7/2023 10:54 AM, Florian Guilbault via Python-list wrote:
Dear Python Technical Team,
I hope this email finds you well. I am reaching out to you today to seek
assistance with an issue I am facing regarding the installation of 'pip'
despite my numerous attempts to resolve t
("mandatory")
case _:
print("nothing to do")
Gives (and I don't understand why):
SyntaxError: name capture 'RANGE' makes remaining patterns unreachable
--
https://mail.python.org/mailman/listinfo/python-list
On 6/7/23, Thomas Passin via Python-list wrote:
>
> You have by now seen several responses, and the one most likely to be
> helpful is to run pip with
>
> py -m pip
That won't be of any help if pip isn't installed. By default, Python's
installer attempts to instal
--
https://mail.python.org/mailman/listinfo/python-list
On Thu, 8 Jun 2023 at 08:19, Jason Friedman via Python-list
wrote:
>
> This gives the expected results:
>
> with open(data_file, newline="") as reader:
> csvreader = csv.DictReader(reader)
> for row in csvreader:
> #print(row)
> match row[RULE_TYPE]:
>
your constants using an enum:
>
> class Options(Enum):
> RANGE = "RANGE"
> MANDATORY = "MANDATORY"
>
> match stuff:
> case Options.RANGE:
>...
> case Options.MANDATORY:
> ...
>
Got it, thank you.
On Wed, Jun 7, 202
On 6/7/2023 6:28 PM, Eryk Sun wrote:
On 6/7/23, Thomas Passin via Python-list wrote:
You have by now seen several responses, and the one most likely to be
helpful is to run pip with
py -m pip
That won't be of any help if pip isn't installed. By default, Python's
instal
On 6/7/23, Thomas Passin via Python-list wrote:
> On 6/7/2023 6:28 PM, Eryk Sun wrote:
>
>> That won't be of any help if pip isn't installed. By default, Python's
>> installer attempts to install pip by running the ensurepip package,
>> but sometimes it fa
(statement, labels) = self.aggregation_statement(cell,
File "C:\path\venv\lib\site-packages\cubes\sql\browser.py", line
532, in aggregation_statement
raise ArgumentError("List of aggregates should not be empty")
cubes.errors.ArgumentError: List of aggregates should not be empty
It seems the tutorial contains some typos.
Any idea how to fix this? Else is there any other better olap cubes
library for Python that has great docs?
--
https://mail.python.org/mailman/listinfo/python-list
On 6/8/2023 3:14 PM, Dennis Lee Bieber via Python-list wrote:
On Wed, 7 Jun 2023 10:36:22 -0600, Mats Wichmann
declaimed the following:
I'm assuming you checked - say, with Explorer - that pip.exe really is
where you think it is?
Anyway, if you ask a Windows shell (cmd) to locate it, a
On 6/8/23, Thomas Passin via Python-list wrote:
>
> It always gets installed, though.
By default, the option to install pip is enabled. It's implemented by
executing ensurepip after the interpreter is installed. However,
ensurepip may silently fail during installation. As a CPython t
On 6/8/2023 6:23 PM, Eryk Sun wrote:
on 6/8/23, Thomas Passin via Python-list wrote:
It always gets installed, though.
By default, the option to install pip is enabled. It's implemented by
executing ensurepip after the interpreter is installed. However,
ensurepip may silently fail d
quot; &
timer
(15 results stripped) Completed in 0.57 sec!
But I have 5 GByte of stuff under 'f:\gv\Python310\'
Envtool is at https://github.com/gvanem/Envtool
Works best together with the amazing EveryThing search engine
by David Carpenter at https://www.voidtools.com
--
--gv
--
https://mail.python.org/mailman/listinfo/python-list
On Wed, May 24, 2023 at 05:18:52PM +1200, dn via Python-list wrote:
Note that the line numbers correctly show the true cause of the
problem, despite both of them being ValueErrors. So if you have to
debug this sort of thing, make sure the key parts are on separate
lines (even if they're al
On 6/9/2023 1:43 PM, Dennis Lee Bieber via Python-list wrote:
On Thu, 8 Jun 2023 17:22:22 -0400, Thomas Passin
declaimed the following:
On 6/8/2023 3:14 PM, Dennis Lee Bieber via Python-list wrote:
C:\Users\Owner>
-=-=-
Windows PowerShell
Copyright (C) Microsoft Corporation. All rig
On 6/10/23, Thomas Passin via Python-list wrote:
>
> We can find pip.exe using good old-fashioned dir (we don't need any
> new-fangled Powershell):
>
> C:\Users\tom>dir AppData\Local\Programs\Python /Aa /S /W /B |find
> "pip"|find "Scripts"
CMD'
On 6/10/2023 12:32 PM, Eryk Sun wrote:
On 6/10/23, Thomas Passin via Python-list wrote:
We can find pip.exe using good old-fashioned dir (we don't need any
new-fangled Powershell):
C:\Users\tom>dir AppData\Local\Programs\Python /Aa /S /W /B |find
"pip"|find "Scripts&
On 6/10/23, Thomas Passin via Python-list wrote:
>
> Yes; I didn't want to get too esoteric with commands that are hard to
> figure out and remember, because then why not use Powershell, whose
> commands are hard to figure out and remember?
Using `dir /s [/ad] [/b] "[
On 6/10/2023 3:20 PM, Eryk Sun wrote:
On 6/10/23, Thomas Passin via Python-list wrote:
Yes; I didn't want to get too esoteric with commands that are hard to
figure out and remember, because then why not use Powershell, whose
commands are hard to figure out and remember?
Using `dir /s
On 6/12/2023 5:26 AM, Real Live FootBall Tv via Python-list wrote:
I recently Installed and Uninstalled Python, hence the system was trying
to get why I UNINSTALLED python.
I did it because I was going to use it with another application, A VIDEO
EDITING APP, Auto EDITOR but it didn't wor
On 12/06/2023 10:26, Real Live FootBall Tv via Python-list wrote:
> I did it because I was going to use it with another application, A VIDEO
> EDITING APP, Auto EDITOR but it didn't work for some reasons unknown to me.
You need to define "didn't work"
Did it work a
g all the separate state machines.
"All that hassle" is, of course, a relative term. So my first question
is: what are you comparing against? If you're comparing against
running your own select.select() loop, it's way *less* hassle, but
compared to using threads, I
Hi!
Trying to compile python on windows leads to following error:
_testimportmultiple.vcxproj ->
C:\Users\sct-muc\Documents\Projekte\cpython\PCbuild\amd64\_testimportmultiple.pyd
_testmultiphase.c
Bibliothek
"C:\Users\sct-muc\Documents\Projekte\cpython\PCbui
What version of visual studio are you using? What version of python? I’ve had
success with using the cython package in python and cl from visual studio, but
I haven’t tried visual studio alone.
Sent from my iPhone
> On Jun 13, 2023, at 11:59 AM, Thomas Schweikle via Python-list
>
Am Di., 13.Juni.2023 um 19:20:38 schrieb Jim Schwartz:
What version of visual studio are you using?
Visual Studio 2022, aka 17.6.2.
What version of python?
python 3.10.11 or 3.11.4
I’ve had success with using the cython package in python and cl from visual
studio, but I haven’t tried
On 6/13/23 12:12, Thomas Schweikle via Python-list wrote:
Am Di., 13.Juni.2023 um 19:20:38 schrieb Jim Schwartz:
What version of visual studio are you using?
Visual Studio 2022, aka 17.6.2.
What version of python?
python 3.10.11 or 3.11.4
I’ve had success with using the cython package
One expert told me to do the following when compiling via cython and cl:
cython -3 --embed -o c_file_namepython_file_name
Then, assuming python is installed in your apps directory and not your program
files directory:
set "PYTHON_DIR=%LocalAppData%\Programs\Python\Python311"
o
On 6/13/23, Thomas Schweikle via Python-list wrote:
>
> Since Git enables Windows NTFS case sensitivity while checking out
> sources ... is it a bug or a "feature"? And: is there a simple
AFAIK the Windows version of Git (you're not using the Linux version
of Git v
Am Di., 13.Juni.2023 um 20:36:17 schrieb Mats Wichmann via Python-list:
On 6/13/23 12:12, Thomas Schweikle via Python-list wrote:
Am Di., 13.Juni.2023 um 19:20:38 schrieb Jim Schwartz:
What version of visual studio are you using?
Visual Studio 2022, aka 17.6.2.
What version of python
Forwarding to list
Okay thanks. Meanwhile, I am not tech savvy so I may not say much here.
I followed all the commands as given on the website to install auto
editor standing it on python but after rendering the XML file, I
couldn't open it with my Davinci Resolve 18. I uninstalle
On 6/13/2023 5:32 PM, Alan Gauld via Python-list wrote:
Okay thanks. Meanwhile, I am not tech savvy so I may not say much here.
I followed all the commands as given on the website to install auto
editor standing it on python but after rendering the XML file, I
couldn't open it with my Da
On 6/13/23 19:10, Thomas Passin via Python-list wrote:
On 6/13/2023 5:32 PM, Alan Gauld via Python-list wrote:
Okay thanks. Meanwhile, I am not tech savvy so I may not say much here.
I followed all the commands as given on the website to install auto
editor standing it on python but after
On 6/13/2023 9:43 PM, gene heskett via Python-list wrote:
On 6/13/23 19:10, Thomas Passin via Python-list wrote:
On 6/13/2023 5:32 PM, Alan Gauld via Python-list wrote:
Okay thanks. Meanwhile, I am not tech savvy so I may not say much here.
I followed all the commands as given on the website
I think it is time to ask this topic to go find some other place to talk to
itself.
I have seen NO reason to think any question about problems with Python has been
asked. Not properly.
It sounds like someone messed up an installation, perhaps of other programs
like an editor and some
> Since Git enables Windows NTFS case sensitivity while checking out sources
I didn't know that. Would you give us a link to this feature?
As far as I know, `git config core.ignorecase` doesn't mean NTFS case
sensitive.
On Wed, Jun 14, 2023 at 1:57 AM Thomas Schweikle via Python-
On 6/14/23, Inada Naoki via Python-list wrote:
>> Since Git enables Windows NTFS case sensitivity while checking out sources
>
> I didn't know that. Would you give us a link to this feature?
> As far as I know, `git config core.ignorecase` doesn't mean NTFS case
> sen
On 15/06/2023 08:58, Real Live FootBall Tv via Python-list wrote:
> I have followed the instructions given on how to install the app. What I
> needed was an application to cut of silence from my video and I saw auto
> editor demonstrated as one of the applications that could do that. It d
Am Mi., 14.Juni.2023 um 15:10:50 schrieb Eryk Sun:
On 6/14/23, Inada Naoki via Python-list wrote:
Since Git enables Windows NTFS case sensitivity while checking out sources
I didn't know that. Would you give us a link to this feature?
As far as I know, `git config core.ignorecase` do
Then, git doesn't enable Windows NTFS case sensitivity.
You enabled NTFS case sensitivity on "C:\Users\user\K".
And Windows enabled case sensitivity for all new directories under the
directory.
Since it is not default and minor setting, it is not a bug that
current Python
2701 - 2800 of 6643 matches
Mail list logo