Soumendra Ganguly added the comment:
Makes sense. I will happily make a change of terminology in the pypty2
repository after the most desirable alternative is determined based on the
choice of the majority. I think 'mother/son' sounds cute while still retaining
the same initials as before; p
Peter McCormick added the comment:
Updated sample script, thanks to @aeros for catching the omission:
```
import sqlite3
target = sqlite3.connect(':memory:')
source = sqlite3.connect(':memory:')
source.close()
source.backup(target)
```
--
___
Pytho
miss-islington added the comment:
New changeset bfee9fad84531a471fd7864e88947320669f68e2 by Peter McCormick in
branch 'master':
bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)
https://github.com/python/cpython/commit/bfee9fad84531a471fd7864e88947320669f68e2
--
New submission from Samuel Marks :
https://github.com/SamuelMarks/cpython/tree/3.9-compiler-fixes
--
components: Build
messages: 377205
nosy: samuelmarks
priority: normal
pull_requests: 21373
severity: normal
status: open
title: Fix some compiler warnings
type: compile error
versions: P
Tal Einat added the comment:
New changeset 5c0eed7375fdd791cc5e19ceabfab4170ad44062 by Berker Peksag in
branch 'master':
bpo-12178: Fix escaping of escapechar in csv.writer() (GH-13710)
https://github.com/python/cpython/commit/5c0eed7375fdd791cc5e19ceabfab4170ad44062
--
___
Tal Einat added the comment:
After a great deal of delay, a fix for this has finally been merged, and will
be available in Python 3.10.
Thanks to everyone involved!
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.10 -Python 2.7, Pyt
New submission from Anudeep Balla :
https://docs.python.org/3.8/library/ipaddress.html
import ipaddress
ADDRESSES = [
'172.16.254.00'
]
for ip in ADDRESSES:
addr = ipaddress.ip_address(ip)
if addr.version==4:
{
print("true")
}
else:
{
101 - 107 of 107 matches
Mail list logo