[issue43026] Missing words renders meaning unclear in fcntl.html

2021-01-25 Thread Ezra
Change by Ezra : -- versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/issue43026> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43026] Missing words renders meaning unclear in fcntl.html

2021-01-25 Thread Ezra
New submission from Ezra : At https://docs.python.org/3/library/fcntl.html the docs read: the fcntl module exposes the F_OFD_GETLK, F_OFD_SETLK and F_OFD_SETLKW constants, which working with open file description locks. The exact intended meaning is unclear, perhaps: the fcntl module

[no subject]

2016-03-14 Thread Ezra Simms
I cannot seem to get pymongo to find my python installation – keep getting an error saying pythin has not been found in the registry? Why is this. Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

[issue15045] Make textwrap.dedent() consistent with str.splitlines(True) and str.strip()

2012-12-11 Thread Ezra Berch
Ezra Berch added the comment: Here's a patch to do this, including some tests for the changed behavior. -- keywords: +patch nosy: +ezberch Added file: http://bugs.python.org/file28285/issue15045.patch ___ Python tracker rep...@bugs.python.org http

[issue16203] Proposal: add re.fullmatch() method

2012-11-27 Thread Ezra Berch
Ezra Berch added the comment: Patch attached. I've taken a slightly different approach than what has been discussed here: rather than define a new fullmatch() function and method, I've defined a new re.FULLMATCH flag for match(). So an example would be re.match('abc','abc',re.FULLMATCH

[issue13370] test_ctypes fails on osx 10.7

2012-02-05 Thread Ezra Berch
Ezra Berch ezrabe...@mac.com added the comment: The reason for this issue appears to be a bug in the clang optimizer. This is why it only shows up with debug disabled. When I compile with -O0 instead of -O3, the test passes. This issue from the clang tracker may be the same issue: http

[issue13857] Add textwrap.indent() as counterpart to textwrap.dedent()

2012-02-02 Thread Ezra Berch
Ezra Berch ezrabe...@mac.com added the comment: Sorry, I guess I wasn't clear. The trailing-newlines issue was an issue with the conditional expression ncoghlan suggested. It's fixed in the patch I submitted (and covered by the tests

[issue13857] Add textwrap.indent() as counterpart to textwrap.dedent()

2012-01-30 Thread Ezra Berch
Ezra Berch ezrabe...@mac.com added the comment: I've created a patch using the conditional expression in msg151945. The one problem I found with it is that when the input string is terminated by a newline it removes that newline. I've added an optional third argument: a function which

Re: [Tutor] Replacing cmd.exe with custom .py application

2008-09-30 Thread Ezra Taylor
if you can ___ Tutor maillist - [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/tutor -- Ezra Taylor -- http://mail.python.org/mailman/listinfo/python-list

Re: [Tutor] Replacing cmd.exe with custom .py application

2008-09-30 Thread Ezra Taylor
Is there something similar to /dev/null on Windows? On Tue, Sep 30, 2008 at 2:13 PM, Ezra Taylor [EMAIL PROTECTED] wrote: Joseph: Check out subprocess. The subprocess module is on python 2.4. Also, use subprocess.call(your command,shell=True) On Linux/Unix, the process is below