Vlad Tudorache added the comment:
The scroll problem (clicking on the upper half of the slider is taken as
"through1") still persists for me on Mojave with 3.7.1 RC1 downloaded from
python.org and including Tcl/Tk.
--
___
Python track
Vlad Tudorache added the comment:
@taleinat
The issues appear with both Tk 8.6.[:8] and (8.5.[:18] + 8.5.[19:], just in
case you update the docs. For 32/64 bit installers on macOS, the only version
(built by myself or ActiveState) without crashes is 8.5.18 (on my Mac).
--
versions
Vlad Tudorache added the comment:
Yes, like in the Pythonic Tk 8.6.[:8] :), starting at version 8.6.8 (-dev, too)
I see no crash. Tcl/Tk 8.6.8 is built by myself (the last time I checked there
was no 8.6.8 built on ActiveState).
As for the old 8.5 series, only 8.5.18 works with the dual 32
Vlad Tudorache added the comment:
@terry.reedy
Maybe "users are urged to install the most recent bug-fix releases" is a little
bit misleading. As I wrote, Tcl/Tk 8.5.18 does not give crashes on macOS, when
both 8.5.17 and 8.5.19 (bug-fix) do. Some times ago, if I remember well,
Vlad Temian added the comment:
Is there any chance that this fix is gonna be ported to 3.5 as well?
--
nosy: +vtemian
___
Python tracker
<https://bugs.python.org/issue27
New submission from Vlad Shcherbina:
When directory exists with a name chosen for new temporary file, OSError with
EACCESS errno is thrown on windows, while attempts to chose another name only
happen on EEXIST errors.
To reproduce, run
--- 8< -
import sys
imp
Changes by Vlad Shcherbina :
--
keywords: +patch
Added file: http://bugs.python.org/file31518/fix_for_27.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Removed file: http://bugs.python.org/file31518/fix_for_27.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Python-bug
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31573/temp_dir_exists_retry_27.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31574/temp_dir_exists_retry_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Changes by Vlad Shcherbina :
Added file:
http://bugs.python.org/file31579/temp_dir_exists_retry_test_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31580/temp_dir_exists_retry_test_27.patch
___
Python tracker
<http://bugs.python.org/issue18
Vlad Shcherbina added the comment:
1. I agree that consistency between 2.7 and 3.* have some value, but maybe it's
better to take less permissive approach in 3.* instead and only retry when
exception is PermissionError _and_ errno is EACCES?
2. Currently it's being rerai
Changes by Vlad Shcherbina :
Removed file:
http://bugs.python.org/file31580/temp_dir_exists_retry_test_27.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Removed file: http://bugs.python.org/file31573/temp_dir_exists_retry_27.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Changes by Vlad Shcherbina :
Removed file: http://bugs.python.org/file31574/temp_dir_exists_retry_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Removed file:
http://bugs.python.org/file31579/temp_dir_exists_retry_test_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file:
http://bugs.python.org/file31601/temp_dir_exists_retry_test_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31605/temp_dir_exists_retry_27.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31604/temp_dir_exists_retry_test_27.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31602/temp_dir_exists_retry_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Changes by Vlad Shcherbina :
Removed file:
http://bugs.python.org/file31604/temp_dir_exists_retry_test_27.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Removed file: http://bugs.python.org/file31605/temp_dir_exists_retry_27.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Changes by Vlad Shcherbina :
Removed file:
http://bugs.python.org/file31601/temp_dir_exists_retry_test_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Removed file: http://bugs.python.org/file31602/temp_dir_exists_retry_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31607/temp_dir_exists_retry_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
Changes by Vlad Shcherbina :
Added file:
http://bugs.python.org/file31606/temp_dir_exists_retry_test_33_34.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31608/temp_dir_exists_retry_test_27.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31609/temp_dir_exists_retry_27.patch
___
Python tracker
<http://bugs.python.org/issue18849>
___
___
New submission from Vlad Shcherbina:
I intend to add test for (existing dir)-(new file) collision in
http://bugs.python.org/issue18849, but file-file, file-dir and dir-dir
collisions are yet to be covered.
--
components: Tests
messages: 197062
nosy: vlad
priority: normal
severity
Vlad Shcherbina added the comment:
Probably yes, I'm just not sure when I'll get the time.
--
___
Python tracker
<http://bugs.python.org/issue18945>
___
___
Changes by Vlad Shcherbina :
--
keywords: +patch
Added file: http://bugs.python.org/file31697/tempfile_collision_tests.patch
___
Python tracker
<http://bugs.python.org/issue18
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31730/tempfile_collision_tests.patch
___
Python tracker
<http://bugs.python.org/issue18945>
___
___
Changes by Vlad Shcherbina :
Removed file: http://bugs.python.org/file31697/tempfile_collision_tests.patch
___
Python tracker
<http://bugs.python.org/issue18945>
___
___
Changes by Vlad Shcherbina :
Added file: http://bugs.python.org/file31739/tempfile_collision_tests_27
___
Python tracker
<http://bugs.python.org/issue18945>
___
___
Pytho
Vlad K. added the comment:
I believe this should be applied to Python 3.3 as well, since the same problem
(unchecked data_size before adding +1 for bytes_size) exists there too, and is
thus a security issue.
--
nosy: +vladk
___
Python tracker
Vlad K. added the comment:
Here's the patch that I made for FreeBSD's Python 3.3 port. With this patch, on
FreeBSD, Python 3.3 built fine and passed the zipimport related unit tests.
It's basically the same code from 3.4, 3.5 and 2.7, just placed at appropriate
plac
Vlad K. added the comment:
Any updates on this? We've committed the patch for Python 3.3 as well in
FreeBSD.
https://svnweb.freebsd.org/ports?view=revision&revision=417019
--
___
Python tracker
<http://bugs.python.or
Vlad K. added the comment:
Doesn't this affect Python 3.3 as well, which is in security-only mode?
Shouldn't that version be patched as well?
--
nosy: +vladk
___
Python tracker
<http://bugs.python.o
New submission from Vlad Gumerov:
Mac OS X 10.10.3
IDLE 3.4.3, Python 3.4.3
Steps:
1)Open IDLE
2)Input diacritical mark ยด (Alt+E)
Result:
IDLE crashes
--
components: IDLE
messages: 248572
nosy: Vlad Gumerov
priority: normal
severity: normal
status: open
title: IDLE crashes on entering
101 - 140 of 140 matches
Mail list logo