[issue43492] Upgrade to SQLite 3.35.4 in macOS and Windows

2021-04-12 Thread Big Stone


Big Stone  added the comment:

3.35.4 is there

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue43492>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42686] include built-in Math functions in SQLite to 3.35.0 of march 2021

2021-01-01 Thread Big Stone


Big Stone  added the comment:

it seems resolved now, at least with VS 2019

--

___
Python tracker 
<https://bugs.python.org/issue42686>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35943] PyImport_GetModule() can return partially-initialized module

2020-12-20 Thread Big Stone


Big Stone  added the comment:

Is this bug causing the Dask-Jupyterlab failure ? 
https://github.com/dask/distributed/issues/4168

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue35943>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42686] include built-in Math functions in SQLite to 3.35.0 of march 2021

2020-12-19 Thread Big Stone


New submission from Big Stone :

SQlite-3.35.0 of mach 2021 will have Built-In Math Functions option.

https://sqlite.org/draft/releaselog/3_35_0.html

Would it be possible to have it activated in the following versions update of 
Python ? It's pretty usefull for some basic statistics

--
messages: 383383
nosy: Big Stone
priority: normal
severity: normal
status: open
title: include built-in Math functions in SQLite to 3.35.0 of march 2021
type: enhancement

___
Python tracker 
<https://bugs.python.org/issue42686>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-04 Thread Big Stone


Big Stone  added the comment:

hello,

Python-3.8.4rc1 and Python-3.9.0b4 are still with SQLite-3.31.1. 

Is it expected ?

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue40741>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue39645] Expand concurrent.futures.Future's public API

2020-05-08 Thread Big Stone


Big Stone  added the comment:

it seems this feature would interest Dask team.
 https://github.com/dask/distributed/issues/3695

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue39645>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40270] activate (or include) json1 extension in sqlite

2020-04-17 Thread Big Stone


Big Stone  added the comment:

You may also consider having it on Mac Python-3.8 and not on Windows Python-3.8 
is a total abnormality. For example, in the context of a Classroom.

--

___
Python tracker 
<https://bugs.python.org/issue40270>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40270] activate json1 extension in sqlite

2020-04-13 Thread Big Stone


Change by Big Stone :


--
title: activation json1 extension in sqlite -> activate json1 extension in 
sqlite

___
Python tracker 
<https://bugs.python.org/issue40270>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40270] activate (or include) json1 extension in sqlite

2020-04-13 Thread Big Stone


Change by Big Stone :


--
title: activate json1 extension in sqlite -> activate (or include) json1 
extension in sqlite

___
Python tracker 
<https://bugs.python.org/issue40270>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40270] activation json1 extension in sqlite

2020-04-13 Thread Big Stone


New submission from Big Stone :

hi all. On Windows/Mac, isn't sqlite3 module compiled with "json1" extension on 
recent Python releases ?

I thought it was, but fails to use it.

Python 3.9.0a5 (tags/v3.9.0a5:dcd4c4f, Mar 23 2020, 20:39:59) [MSC v.1924 64 
bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> import sqlite3
>>> conn = sqlite3.connect(":memory:")
>>> cursor = conn.cursor()
>>> cursor.execute("select sqlite_version()").fetchall()
[('3.31.1',)]
>>> cursor.execute("select json_object('a',2,'c',4)").fetchall()

Traceback (most recent call last):
  File "", line 1, in 
cursor.execute("select json_object('a',2,'c',4)").fetchall()
sqlite3.OperationalError: no such function: json_object
>>>

--
messages: 366290
nosy: Big Stone
priority: normal
severity: normal
status: open
title: activation json1 extension in sqlite

___
Python tracker 
<https://bugs.python.org/issue40270>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue37373] Configuration of windows event loop for libraries

2019-11-03 Thread Big Stone


Big Stone  added the comment:

Is it be possible to backport this inside the standard ProactorEventLoop of 
Python-3.8.1 ? As things are currently broken, no kitten would be armed 
https://github.com/python-trio/trio/pull/1269

--

___
Python tracker 
<https://bugs.python.org/issue37373>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue38380] Update SQLite to 3.30 in Windows and macOS installer builds

2019-10-05 Thread Big Stone


New submission from Big Stone :

there is a security fix in sqlite-3.30

https://nvd.nist.gov/vuln/detail/CVE-2019-16168#VulnChangeHistorySection

https://www.sqlite.org/releaselog/3_30_0.html

--
messages: 354023
nosy: Big Stone
priority: normal
severity: normal
status: open
title: Update SQLite to 3.30 in Windows and macOS installer builds

___
Python tracker 
<https://bugs.python.org/issue38380>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35360] Update SQLite to 3.28 in Windows and macOS installer builds

2019-09-28 Thread Big Stone


Big Stone  added the comment:

there will be a security fix in sqlite-3.30 around October 10th.

https://nvd.nist.gov/vuln/detail/CVE-2019-16168#VulnChangeHistorySection

https://www.sqlite.org/draft/releaselog/3_30_0.html

--

___
Python tracker 
<https://bugs.python.org/issue35360>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue37373] Configuration of windows event loop for libraries

2019-06-22 Thread Big Stone


Big Stone  added the comment:

Windows users would certainly prefer to have an emulated non-performant 
emulation of the old API, rather than a breakage of their beloved 
Jupyter/Tornado ecosystem.

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue37373>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35360] Update SQLite to 3.26 in Windows and macOS installer builds

2019-06-17 Thread Big Stone


Big Stone  added the comment:

on my test cases, sqlite_bro and baresql, db.py , it works without problems.

--

___
Python tracker 
<https://bugs.python.org/issue35360>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35360] Update SQLite to 3.26 in Windows and macOS installer builds

2019-06-15 Thread Big Stone


Big Stone  added the comment:

any hope for beta2 ?

--

___
Python tracker 
<https://bugs.python.org/issue35360>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35360] Update SQLite to 3.26 in Windows and macOS installer builds

2019-05-25 Thread Big Stone


Big Stone  added the comment:

any hope to have a SQLite refresh in Python-3.8.0b1 for Windows/Mac ?

 It's generally the ideal / less annoying moment to do so.

--

___
Python tracker 
<https://bugs.python.org/issue35360>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue36886] Failed to construct CodeType on Python-3.8.0a4

2019-05-11 Thread Big Stone


Big Stone  added the comment:

I found a third project that is impacted 
https://github.com/microsoft/python-language-server/issues/1070.

--

___
Python tracker 
<https://bugs.python.org/issue36886>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue36886] problem with Types on Python-3.8.0a4

2019-05-11 Thread Big Stone


New submission from Big Stone :

remark: I get a similar error from two packages, when experimenting with 
Python-3.8.0a4 on Windows


import asyncio
await asyncio.sleep(0)
---
TypeError Traceback (most recent call last)
C:\WinP\bd38\bu\WPy64-3800a4\python-3.8.0a4.amd64\lib\site-packages\IPython\core\interactiveshell.py
 in removed_co_newlocals(function)
139 CO_NEWLOCALS = 0x0002
140 code = function.__code__
--> 141 new_code = CodeType(
142 code.co_argcount,
143 code.co_kwonlyargcount,

TypeError: an integer is required (got type bytes)


or else:


import cloudpickle



import cloudpickle
1 0 1 3 19 b'\x87\x00f\x01d\x01d\x02\x84\x08\x01\x00|\x00\x89\x00d\x00S\x00' 
(None,  at 0x01B36B7D49B0, file 
"C:\WinP\bd38\bu\WPy64-3800a4\python-3.8.0a4.amd64\lib\site-packages\cloudpickle\cloudpickle.py",
 line 107>, '_make_cell_set_template_code..inner..') () 
('value',) 
C:\WinP\bd38\bu\WPy64-3800a4\python-3.8.0a4.amd64\lib\site-packages\cloudpickle\cloudpickle.py
 inner 106 b'\x00\x01\x0c\x01' ('cell',)
---
TypeError Traceback (most recent call last)
 in 
> 1 import cloudpickle

C:\WinP\bd38\bu\WPy64-3800a4\python-3.8.0a4.amd64\lib\site-packages\cloudpickle\__init__.py
 in 
  1 from __future__ import absolute_import
  2 
> 3 from cloudpickle.cloudpickle import *
  4 
  5 __version__ = '1.0.0'

C:\WinP\bd38\bu\WPy64-3800a4\python-3.8.0a4.amd64\lib\site-packages\cloudpickle\cloudpickle.py
 in 
165 
166 
--> 167 _cell_set_template_code = _make_cell_set_template_code()
168 
169 

C:\WinP\bd38\bu\WPy64-3800a4\python-3.8.0a4.amd64\lib\site-packages\cloudpickle\cloudpickle.py
 in _make_cell_set_template_code()
146 co.co_lnotab,
147 co.co_cellvars)
--> 148 return types.CodeType(
149 co.co_argcount,
150 co.co_kwonlyargcount,

TypeError: an integer is required (got type bytes)

--
components: Windows
messages: 342182
nosy: Big Stone, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: problem with Types on Python-3.8.0a4
versions: Python 3.8

___
Python tracker 
<https://bugs.python.org/issue36886>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue35360] Update SQLite to 3.26 in Windows and macOS installer builds

2019-04-27 Thread Big Stone


Big Stone  added the comment:

sqlite-3.28.0 now available, with extended window functio support: EXCLUDE 
clause, GROUPS frame types, window chaining, and support for " PRECEDING" 
and " FOLLOWING" boundaries in RANGE frames.

------
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue35360>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33000] IDLE Doc: Text consumes unlimited RAM, consoles likely not

2018-11-02 Thread Big Stone


Big Stone  added the comment:

for the record, since summer 2018, idlex-1.18 is compatible again with 
Python-3.6+: the author simply forked the old IDLE library IDLEX was depending 
on.

so IDLEX icon in recent Winpython is"truly" IDLEX again.

--

___
Python tracker 
<https://bugs.python.org/issue33000>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17535] IDLE: Add an option to show line numbers along the left side of the editor window, and have it enabled by default.

2018-10-12 Thread Big Stone


Big Stone  added the comment:

Dear Mike Thompson,

I think your most reasonnable option this year is to use the IDLEX fork, that 
works on Python-3.6/3.7 now:

pip install IDLEX
python idlex.pyw # or python [directory of python.exe]\scripts\idlex.pyw

--

___
Python tracker 
<https://bugs.python.org/issue17535>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34916] include sqlite-3.25+ (with window functions)

2018-10-09 Thread Big Stone


Big Stone  added the comment:

hum. On Windows at least, just drop-in replace the sqlite3.dll per the new 
sqlite-3.25 dll and the window functions just works.
==> I don't see the need for your latter point, at least on Windows.

checked with sqlite_bro on Python-3.6.7rc1 with example:
CREATE TABLE t2(a, b);
INSERT INTO t2 VALUES('a', 'one'), 
 ('a', 'two'), 
 ('a', 'three'), 
 ('b', 'four'), 
 ('c', 'five'), 
 ('c', 'six');
SELECT aAS a,
   row_number() OVER winAS row_number,
   rank() OVER win  AS rank,
   dense_rank() OVER winAS dense_rank,
   percent_rank() OVER win  AS percent_rank,
   cume_dist() OVER win AS cume_dist
FROM t2
WINDOW win AS (ORDER BY a);

--

___
Python tracker 
<https://bugs.python.org/issue34916>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34916] include sqlite-3.25+ (with window functions)

2018-10-06 Thread Big Stone


New submission from Big Stone :

sqlite-3.25 now includes window functions, something very important in modern 
SQL.

 https://www.sqlite.org/windowfunctions.html

Could it be included in next Python maintenance release ?

--
messages: 327253
nosy: Big Stone
priority: normal
severity: normal
status: open
title: include sqlite-3.25+ (with window functions)

___
Python tracker 
<https://bugs.python.org/issue34916>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33436] Add an interactive shell for Sqlite3

2018-10-06 Thread Big Stone


Big Stone  added the comment:

as a graphical sqlite browser, you have sqlite_bro that may give you 
inspiration. It's about one single file.

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue33436>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33000] IDLE Doc: Text consumes unlimited RAM, consoles likely not

2018-04-26 Thread Big Stone

Big Stone  added the comment:

done, sorry for the (now) missleading icon name.

--

___
Python tracker 
<https://bugs.python.org/issue33000>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33000] IDLE Doc: Text consumes unlimited RAM, consoles likely not

2018-04-26 Thread Big Stone

Big Stone  added the comment:

WinPython-64bit-3.6.4.0Qt5b4 doesn't in fact includes IDLEX: IDLEX is not 
compatible with Python-3.6+

The "IDLEX" icon of WinPython switches back to "normal" IDLE, when IDLEX is not 
detected. 

As WinPython-3.5 is being deprecated, the icon should be renamed IDLE.

(see also https://bugs.python.org/issue17535 quest)

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue33000>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30952] [Windows] include Math extension in SQlite

2017-11-09 Thread Big Stone

Big Stone  added the comment:

Please apologize. I indeed went off-topic. I can understand few person find 
this request usefull, and over-react to defend it.

Sorry again.

--
status: pending -> open

___
Python tracker 
<https://bugs.python.org/issue30952>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30952] [Windows] include Math extension in SQlite

2017-11-08 Thread Big Stone

Big Stone  added the comment:

I know you can do create_function(): 
https://raw.githubusercontent.com/stonebig/sqlite_bro/master/docs/sqlite_bro.GIF

But the performance is crappy at best because of string conversion in the API.

If you want SQlite because of its performance, recent version starts to do 
multi-threading, and/or fear to leave other langages a stupid sizeable 
performance advantage, then you may perhaps don't leave the situation as it is.

Didn't Victor spoke about the need to 2X CPython performance recently, for it 
to stay in the game ? 

Look at latest Intel cpu shooting for quadcore, Iphone 8 being 6 cores, latest 
stable nodejs gaining a big speed bump, ... etc ... etc... and the need of 
efficiency to keep the planet cool enough.

--

___
Python tracker 
<https://bugs.python.org/issue30952>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30952] include Math extension in SQlite

2017-11-06 Thread Big Stone

Big Stone  added the comment:

Hi Victor,

I would like to use math functions, specifically "exp(sum(log(x)))", on the 
Sqlite motor shipped embedded with Python on Windows.

It's an important corner case of what I miss in Sqlite motor, that forced me to 
(wait to) rely on SQLServer (or other big iron).

In my other hobby of Python-in-Scientific-cursus of France, having not a fully 
enabled SQLite (in its mathematic abilities) is also a problem.

Maybe there are other more important outstanding issues about embedded-SQlite 
integration with Python, but that one is hard to workaround.

--

___
Python tracker 
<https://bugs.python.org/issue30952>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30952] include Math extension in SQlite

2017-11-02 Thread Big Stone

Big Stone  added the comment:

Sorry, I'm not skilled enough to do PR on Python core.

--

___
Python tracker 
<https://bugs.python.org/issue30952>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17535] IDLE: Add an option to show line numbers along the left side of the editor window, and have it enabled by default.

2017-09-15 Thread Big Stone

Big Stone added the comment:

is there still any hope on this ?

--
nosy: +Big Stone

___
Python tracker 
<https://bugs.python.org/issue17535>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30952] include Math extension in SQlite

2017-07-17 Thread Big Stone

New submission from Big Stone:

I would be interested in having SQLite shipped with the math extension in 
python-3.7.
 
The log / exponential function are important for some sql use case like 
 exp(sum(log(x)))

--
components: Extension Modules
messages: 298555
nosy: Big Stone
priority: normal
severity: normal
status: open
title: include Math extension in SQlite
type: enhancement
versions: Python 3.7

___
Python tracker 
<http://bugs.python.org/issue30952>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28791] update sqlite to 3.19.2

2017-05-31 Thread Big Stone

Changes by Big Stone :


--
title: update sqlite to 3.17.0 -> update sqlite to 3.19.2

___
Python tracker 
<http://bugs.python.org/issue28791>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28791] update sqlite to 3.17.0

2017-02-27 Thread Big Stone

Big Stone added the comment:

python-3.7 should include the latest stable sqlite, at the time of last alpha.

--
title: update sqlite to 3.15.2 -> update sqlite to 3.17.0

___
Python tracker 
<http://bugs.python.org/issue28791>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

Thanks Steve.

Change applied, byebye python._pth.

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

ok, I understand that the improvement over current solution is, starting with 
python-3.6.1rc:
- remove "python._pth"
- check I have a "Lib\os.py" (otherwise a "python36.zip"),
- and no pixie dust here or there ?

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

If I place a blank line or a semi-column, nothing happen.
If i put my relative path ..\test, then I must do "import t1"
If I set a __path__ in t2.py, then I have to do "from . import t1"

"There should be one-- and preferably only one --obvious way to do it.", but I 
don't clearly see it.

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

or just I add a blank line in current python._pth and all is ok immediately ?

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

Hi Steve,

Could there be a "" (or "@source" or whatever string) convention be 
added in python._pth to explicitely allow that "formerly default" situation ? 

It would not break anything backward, and allow again classic Python-3.5 code 
to work unchanged in all circumstances (of WinPython) again.



in python-3.6.1 ?

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

Using sys.path.append could result in an arbitrary long sys.path, full of 
duplicates, isn't it ?

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

ok, I found this as a possible workaound. I hope it's correct

on t2.py, specify the __path__ variable before importing t1.

import os
__path__=[os.path.dirname(os.path.abspath(__file__))]
from . import t1
print("t2 done")

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

and I fail to understand why IDLE doesn't feel the problem.

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

The "targeted" user, a beginner in Python, will put its t1.py & t2.py examples 
anywhere on his disk, and discover that it doesn't work like in the book.

It is very annoying for WinPython intended purpose, if a simple trick cannot 
provide the beginner "expected" behavior.

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Big Stone added the comment:

doesn't the "." entry means "look at same place as current source file" ? Could 
there be a way to get that "classic" behavior on Python-3.6 ?

--

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

2017-02-16 Thread Big Stone

Changes by Big Stone :


--
title: "python.exe t2.py" doesn't work the same on Pythn-3.6 as Python-3.5 -> 
"python.exe t2.py" doesn't work the same on Python-3.6 as Python-3.5

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29578] "python.exe t2.py" doesn't work the same on Pythn-3.6 as Python-3.5

2017-02-16 Thread Big Stone

New submission from Big Stone:

Hi,

I have two file "t1.py" and "t2.py" in the same directory. "t2.py" can't import 
"t1.py" when launched from python.exe on Python-3.6. it was ok on Python-3.5 
(all other things being equal). And it's ok when launched from IDLE.

Has there been a volontary change ?
t1.py:
print("i am t1")

t2.py:
import t1
print("I am t2")

result (on WinPython-3.6):
python.Exe C:\WinPython\basedir36\buildZero\winpython-64bit-3.6.x.2\test\t2.py

Traceback (most recent call last):
  File "C:\WinPython\basedir36\buildZero\winpython-64bit-3.6.x.2\test\t2.py", 
line 1, in 
import t1
ModuleNotFoundError: No module named 't1'

C:\WinPython\basedir36\buildZero\winpython-64bit-3.6.x.2\scripts>

nota: Winpython specificity is the use of python._pth, with:
python36.zip
DLLs
Lib
.
import site

--
components: Windows
messages: 287919
nosy: Big Stone, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: "python.exe t2.py" doesn't work the same on Pythn-3.6 as Python-3.5
type: behavior
versions: Python 3.6

___
Python tracker 
<http://bugs.python.org/issue29578>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28791] update sqlite to 3.15.2

2016-11-30 Thread Big Stone

Big Stone added the comment:

I understand the decision. Yet it always baffles me that a version correcting 
known bugs is not included at beta stage.

--

___
Python tracker 
<http://bugs.python.org/issue28791>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28208] update sqlite to 3.14.2

2016-11-29 Thread Big Stone

Big Stone added the comment:

As far as I test, the novelties from 0.15.2 don't break any API (just nice 
SQL-syntax sugar), and correct some old 3.8.0 bugs.

and ".2" is the same level of stabilisation as current "0.14.2"

--

___
Python tracker 
<http://bugs.python.org/issue28208>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28791] update sqlite to 3.15.2

2016-11-28 Thread Big Stone

Big Stone added the comment:

too late for sqlite-0.15.2 in Python-3.6.0rc ?

--

___
Python tracker 
<http://bugs.python.org/issue28791>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28518] execute("begin immediate") throwing OperationalError

2016-11-25 Thread Big Stone

Big Stone added the comment:

rewording of sqlite documentation:
http://www.sqlite.org/src/info/a4205a83e4ed977a

--

___
Python tracker 
<http://bugs.python.org/issue28518>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28518] execute("begin immediate") throwing OperationalError

2016-11-25 Thread Big Stone

Big Stone added the comment:

Comment kindly provided by D. Richard Hipp himself:
"""""
I don't have a login for the python bug tracker so I cannot comment
there.  But I think I see the problem.  This is as Aviv Polivoda
remarks at https://bugs.python.org/issue28518#msg279808

I think this is a error in sqlite as the documentation says:
"ransaction control statements such as BEGIN, COMMIT, ROLLBACK,
SAVEPOINT, and RELEASE cause sqlite3_stmt_readonly() to return true,"

Except it is not a bug in SQLite, but rather an ambiguity in the
documentation.  In his quote, Aviv omitted the second clause from the
documentation:  "since the statements themselves do not actually
modify the database but rather they control the timing of when other
statements modify the database."  (Full text here:
https://www.sqlite.org/c3ref/stmt_readonly.html)

For a plain BEGIN statement, there are no changes to the database
file, so sqlite3_stmt_readonly() does indeed return TRUE.  But for a
BEGIN IMMEDIATE statement, there are database changes, because the
extra IMMEDIATE keyword causes the statement to go ahead and start
transaction "immediately".

So technically, the documentation is correct, though I can certainly
understand that it is misleading and ambiguous as currently worded.
Clarification will be checked in shortly and will appear in the 3.16.0
release.

Note also that behavior of sqlite3_stmt_readonly() has not changed
since that interface was first added for the 3.7.5 release on
2011-02-01.  So this is not an SQLite regression.  Rather, I presume
that Python has recently started using the sqlite3_stmt_readonly()
interface in a new way.



--
D. Richard Hipp
d...@sqlite.org
"""""

--
nosy: +Big Stone

___
Python tracker 
<http://bugs.python.org/issue28518>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28791] update sqlite to 3.15.2

2016-11-24 Thread Big Stone

Changes by Big Stone :


--
title: update sqlite to 3.14.2 -> update sqlite to 3.15.2

___
Python tracker 
<http://bugs.python.org/issue28791>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28791] update sqlite to 3.14.2

2016-11-24 Thread Big Stone

New submission from Big Stone:

I fear it's too late for Python-3.6, but sqlite-3.15.1 fixes an old annoying 
bug (hidden since 3.8.0), and arriving tomorrow (nov.24th) sqlite-3.15.2 should 
be the well ".2" stabilized version of recent 3.15 improvements towards SQL 
standard (support for row values)

If there is no special bugs left in Python-3.6.0b4 and everybody is happy, I 
would suggest you upgrade from sqlite-3.14.2 to sqlite-3.15.2

--
messages: 281650
nosy: Big Stone
priority: normal
severity: normal
status: open
title: update sqlite to 3.14.2
versions: Python 3.6, Python 3.7

___
Python tracker 
<http://bugs.python.org/issue28791>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28675] about PEP 528 / PEP 529

2016-11-12 Thread Big Stone

Big Stone added the comment:

same un-effect in Qtconsole, I'm disappointed. Maybe I mis-understood what 
these PEP would bring ?

--
Added file: http://bugs.python.org/file45464/pep_528-529_where_are_you_you.PNG

___
Python tracker 
<http://bugs.python.org/issue28675>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28675] about PEP 528 / PEP 529

2016-11-12 Thread Big Stone

New submission from Big Stone:

Hi, if possible a few words of explanation to implement it may be helpfull, as 
I don't see the difference yet, in the typical case where it was not good 
before:
https://cloud.githubusercontent.com/assets/4312421/20240181/5bf917fe-a912-11e6-95e8-e65fcb9a8845.PNG

(more an after PEP sales service request than a bug, I presume)

--
components: Windows
messages: 280667
nosy: Big Stone, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: about PEP 528 / PEP 529
versions: Python 3.6

___
Python tracker 
<http://bugs.python.org/issue28675>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28555] provid also sha-1 and sha-256 also on download links

2016-11-08 Thread Big Stone

Big Stone added the comment:

I fear GPG is not easy stuff for Windows users.

I fear a bunch of people on this network can circomvent DNS and make python.org 
points to the wrong place.

sha-1 instead of md5 would have been an improvement.

--

___
Python tracker 
<http://bugs.python.org/issue28555>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28636] strange issue with Pandas-0.19.1 on Python-3.6.0b3

2016-11-08 Thread Big Stone

Big Stone added the comment:

Thank you, Victor. So I guess I should close the issue.

--
status: open -> closed

___
Python tracker 
<http://bugs.python.org/issue28636>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28636] strange issue with Pandas-0.19.1 on Python-3.6.0b3

2016-11-07 Thread Big Stone

Big Stone added the comment:

the curiosity is the error message, different (and uncaught) under Python 3.6
"SystemError", while with python < 3.6, you get a "ValueError"

--

___
Python tracker 
<http://bugs.python.org/issue28636>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28636] strange issue with Pandas-0.19.1 on Python-3.6.0b3

2016-11-07 Thread Big Stone

New submission from Big Stone:

hi, we detect a strange issue on Pandas-0.19.1/Python-3.6.0b3/Windows that may 
or may not be a Python-3.6 bug. 
As it was for the glory of Python-3.6.0b3 testing, we signal the incident here.
https://github.com/pandas-dev/pandas/issues/14561

--
messages: 280247
nosy: Big Stone
priority: normal
severity: normal
status: open
title: strange issue with Pandas-0.19.1 on Python-3.6.0b3
versions: Python 3.6

___
Python tracker 
<http://bugs.python.org/issue28636>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-11-01 Thread Big Stone

Big Stone added the comment:

it looks ok with 3.6.0b3 ... sorry for the false alarm

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-11-01 Thread Big Stone

Big Stone added the comment:

oups! I may have test the old one...

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-11-01 Thread Big Stone

Big Stone added the comment:

the suggested python._pth change makes python unhappy:

python36.zip
DLLs
Lib
.
import site

Récipient d’erreurs 116251549737, type 5
Nom d’événement : BEX64
Réponse : Non disponible
ID de CAB : 0

Signature du problème : 
P1 : python.exe
P2 : 3.6.112.1013
P3 : 57fc0593
P4 : ucrtbase.dll
P5 : 10.0.14393.0
P6 : 578997b5
P7 : 0006d5b8
P8 : c409
P9 : 0005
P10 : 

Fichiers joints :
\\?\C:\ProgramData\Microsoft\Windows\WER\Temp\WERF455.tmp.WERInternalMetadata.xml
\\?\C:\Users\famille\AppData\Local\Temp\WERFF72.tmp.appcompat.txt

Ces fichiers sont peut-être disponibles ici :
C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_python.exe_ec9ba1cd21c08ca3de75f183bf945ce737867af_b3b3e14f_1575008a

Symbole d’analyse : 
Nouvelle recherche de la solution : 0
ID de rapport : 66625eb0-e311-4368-be37-4b600bcb8978
Statut du rapport : 1
Récipient avec hachage : 57d09a5cb4a63ab86af1e62bd270b573

--
Added file: http://bugs.python.org/file45303/Report.wer

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-29 Thread Big Stone

Big Stone added the comment:

the "show line number on the left" feature is on the "github web editor", on 
"atom", and on "spyder" and "erik" python IDE, so rather the expected standard 
for python editing.

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-29 Thread Big Stone

Big Stone added the comment:

thank you all for the patch

IDLEX was a requirement for a french examination.

I think the reason was to see the line numbers on the left of the editor.

For sure since IDLEX birth, IDLE has made some progress and IDLEX is becoming 
irrelevant, but this lovely tiny feature seems still missing.

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28555] provid also sha-1 and sha-256 also on download links

2016-10-29 Thread Big Stone

Big Stone added the comment:

oups ! i mean "ON several sites"

--
versions: +Python 3.6

___
Python tracker 
<http://bugs.python.org/issue28555>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28555] provid also sha-1 and sha-256 also on download links

2016-10-29 Thread Big Stone

New submission from Big Stone:

It would be nice to have also sha-1 and sha-256 provided with python-360b3 
download links and annoucement (so no separate sites).

md5 is dangerously easy to workaround nowodays

--
messages: 279666
nosy: Big Stone
priority: normal
severity: normal
status: open
title: provid also sha-1 and sha-256 also on download links

___
Python tracker 
<http://bugs.python.org/issue28555>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-28 Thread Big Stone

Big Stone added the comment:

will it be in python-3.6.0b3 ?

what should be in python._pth, in WinPython particular case ?
(as Lib\site-packages didn't seem needed, for unknown reason)

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-27 Thread Big Stone

Big Stone added the comment:

maybe click on the "WinPython Command Prompt.exe" and do "pip uninstall IDLEX" 
as a first step. so you should see IDLE working

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-27 Thread Big Stone

Big Stone added the comment:

hi Steve,

You can grab it there 
https://sourceforge.net/projects/winpython/files/WinPython_3.6/3.6.0.0/betas/WinPython-64bit-3.6.0.0Zerorc2.exe/download
 MD5 | SHA-1| 
SHA-256  | Binary   
   | Size  
-|--|--|-|---
dd946ed17ee86ea035361d2e757a1cc1 | f0ec7ffac477a220dd24aea3fb70afaba579df00 | 
af6536f1922a044ac74300efcd275c9e25c5eb56140ded84a99f11d38ae5ac7b | 
WinPython-64bit-3.6.0.0Zerorc2.exe |   24 196 083 Bytes
dabae69ad09e1646625d3a8995a75056 | aaece4907096422c1df78f80a42a2268369d7697 | 
0d530b84f29481e7f03e4615c9da489711ca6883b49996219d9cd13aa5393330 | 
WinPython-64bit-3.6.0.0rc2.exe  |  208 255 944 Bytes

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-26 Thread Big Stone

Big Stone added the comment:

Thanks Eryk,

So the root cause is that IDLEX is no more compatible with IDLE in python3.6.

==> I can survive this loss... Now, I don't if the "python._pth" crash is a 
problem, as I can stay with "#Lib\site-packages" for now.

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-26 Thread Big Stone

Big Stone added the comment:

Event Viewer says, when I put "Lub\site-packages" in python._pth:
""""
Nom de l’application défaillante python.exe, version : 3.6.112.1013, horodatage 
: 0x57fc0593
Nom du module défaillant : ucrtbase.dll, version : 10.0.14393.0, horodatage : 
0x578997b5
Code d’exception : 0xc409
Décalage d’erreur : 0x0006d5b8
ID du processus défaillant : 0x190c
Heure de début de l’application défaillante : 0x01d22fafd622ed09
Chemin d’accès de l’application défaillante : 
C:\WinPython\basedir36\build\winpython-64bit-3.6.x.0\python-3.6.0b2.amd64\python.exe
Chemin d’accès du module défaillant: C:\WINDOWS\System32\ucrtbase.dll
ID de rapport : ec44b511-6196-48a0-95ec-dc997b4d0302
Nom complet du package défaillant : 
ID de l’application relative au package défaillant :

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-25 Thread Big Stone

Big Stone added the comment:

possible particularities of my PC vs yours:
- I have no python entry at all in the regex
- I have no py.exe,
- I have no Visual Studio (but the compiler)

with Windows 10, I don't know where is the even viewer.

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-25 Thread Big Stone

Big Stone added the comment:

I just see a windows screen poping up with (translated from french)

"Python has stopped to work" 

a problem caused this program to stop working correctly. Windows is going to 
close this program and will inform you if a solution is available.

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-24 Thread Big Stone

Big Stone added the comment:

python.exe crashes when I try this python._pth:
.
Lib
import site
DLLs
Lib\site-packages
#python36.zip

all variation I try on Lib\site-packages do fail, when I not commenting # the 
line... 
Nevertheless, jupyter/numpy/bokeh do work with original setting.

I'm lost in thoughts: how adding a line in this file can make Python crash ?

--

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28522] can't make IDLEX work with python._pth and python-3.6.0b2

2016-10-24 Thread Big Stone

New submission from Big Stone:

on WinPython-64bit-3.6.0.0Zerorc2.exe, python-3.6.0b2 based, I can't get IDLEX 
working with "python._pth".

If I put "Lib\site-packages\" in python._pth, python.exe dies.
If I put "#Lib\site-packages\", idlexlib is said "unable to located".

Could it be a python-3.6.0b2 bug, or just a wrong-doing from WinPython ?

"Python._pth"=
.
Lib
import site
DLLs
#Lib/site-packages
#python36.zip

------
components: Windows
messages: 279338
nosy: Big Stone, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: can't make IDLEX work with python._pth and python-3.6.0b2
versions: Python 3.6

___
Python tracker 
<http://bugs.python.org/issue28522>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28208] update sqlite to 3.14.2

2016-09-19 Thread Big Stone

New submission from Big Stone:

sqlite 3.14.2 released September 12th is said to correct 3 bugs. 
(https://www.sqlite.org/releaselog/3_14_2.html)

I would suggest to upgrade from Sqlite 3.14.1 to sqlite 3.14.2 for beta2

--
messages: 276984
nosy: Big Stone, zach.ware
priority: normal
severity: normal
status: open
title: update sqlite to 3.14.2
type: enhancement

___
Python tracker 
<http://bugs.python.org/issue28208>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28132] impossible to uninstall python3.6.0b1-amd64 from windows 10

2016-09-13 Thread Big Stone

Big Stone added the comment:

okay is successfukky repaired, then uninstalled by clicking twice on the 
installer.exe. 

this never worked by using the "application and functionalities" menu of 
windows 109.

--

___
Python tracker 
<http://bugs.python.org/issue28132>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27883] Update sqlite version for Windows build

2016-09-13 Thread Big Stone

Big Stone added the comment:

well, json extension is not included in 3.6.0b1 . not a drama, yet a small 
deception

--

___
Python tracker 
<http://bugs.python.org/issue27883>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28132] impossible to uninstall python3.6.0b1-amd64 from windows 10

2016-09-13 Thread Big Stone

Big Stone added the comment:

what I found in temp (user temp)

--
Added file: http://bugs.python.org/file44642/temp_info.zip

___
Python tracker 
<http://bugs.python.org/issue28132>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28132] impossible to uninstall python3.6.0b1-amd64 from windows 10

2016-09-13 Thread Big Stone

Big Stone added the comment:

small detail: installed via non-default mean:

python-3.6.0b1-amd64.exe 
TargetDir=C:\WinPython\basedir36\winpython-3.6.0b1-amd64\python-3.6.0b1.amd64 
/quiet  InstallAllUsers=0 Include_launcher=0 InstallLauncherAllUsers=0 
Include_test=0  AssociateFiles=0 Shortcuts=0

--

___
Python tracker 
<http://bugs.python.org/issue28132>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28132] impossible to uninstall python3.6.0b1-amd64 from windows 10

2016-09-13 Thread Big Stone

New submission from Big Stone:

most of the time, it confuses "uninstall" button for a "modify".
when not confusing, it takes 0.5 second for no visible effect.

--
messages: 276301
nosy: Big Stone
priority: normal
severity: normal
status: open
title: impossible to uninstall python3.6.0b1-amd64 from windows 10

___
Python tracker 
<http://bugs.python.org/issue28132>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27883] Update sqlite version for Windows build

2016-09-05 Thread Big Stone

Big Stone added the comment:

thanks! I suppose I have to wait official python3.6b1 for windows to tell you 
what you included.

--

___
Python tracker 
<http://bugs.python.org/issue27883>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27883] sqlite-3.14.1 for Python_3.6.0b1 ?

2016-08-28 Thread Big Stone

Big Stone added the comment:

remark: since sqlite 3.11.0, sqlite.org default sqlite3.dll includes  FTS3, 
FTS5, RTREE, DBSTAT, JSON1, and RBU extensions, causing sqlite3.dll to jump to 
1646Ko size instead of 756Ko current (windows 64).

This works well over Python3.5.2 64 bit, but you may prefer a version with not 
all these extensions. I don't know the respective size of each one. 

the JSON1 extension would be nice if we can keep it: 
- web technology,
- similar to postgresql, so good to go at schools.

--

___
Python tracker 
<https://bugs.python.org/issue27883>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27883] sqlite-3.14.1 for Python_3.6.0b1 ?

2016-08-28 Thread Big Stone

New submission from Big Stone:

Sqlite-3.14.1 includes a lot of fixes since sqlite-38.11, including some for 
windows ;-) . it would be nice to upgrade

--
components: Windows
messages: 273821
nosy: Big Stone, paul.moore, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: sqlite-3.14.1 for Python_3.6.0b1 ?
type: enhancement
versions: Python 3.6

___
Python tracker 
<https://bugs.python.org/issue27883>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com