ANN: PyScripter 3.6.2 released

2019-12-01 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. New features: - Improved

[issue22213] Make pyvenv style virtual environments easier to configure when embedding Python

2019-10-17 Thread PyScripter
PyScripter added the comment: To Steve: I want the embedded venv to have the same sys.path as if you were running the venv python interpreter. So my method takes into account for instance the include-system-site-packages option in pyvenv.cfg. Also my method sets sys.prefix in the same

[issue22213] Make pyvenv style virtual environments easier to configure when embedding Python

2019-10-17 Thread PyScripter
PyScripter added the comment: Just in case this will be of help to anyone, I found a way to use venvs in embedded python. - You first need to Initialize python that is referred as home in pyvenv.cfg. - Then you execute the following script: import sys sys.executable = r"Path to the p

[issue38398] PyUnicode functions are not exported by python 2 in Ubuntu

2019-10-07 Thread PyScripter
PyScripter added the comment: >>> sys.version '2.7.16 (default, Oct 7 2019, 17:16:30) \n[GCC 7.4.0]' >>> ctypes.pythonapi.PyUnicodeUCS4_FromWideChar Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python2.7/ctypes/__ini

[issue38398] PyUnicode functions are not exported by python 2 in Ubuntu

2019-10-07 Thread PyScripter
PyScripter added the comment: Is this on Ubuntu? -- ___ Python tracker <https://bugs.python.org/issue38398> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38398] PyUnicode functions are not exported by python 2 in Ubuntu

2019-10-07 Thread PyScripter
PyScripter added the comment: I meant PyUnicodeUCS4_FromWideChar PyUnicodeUCS2_FromWideChar. -- ___ Python tracker <https://bugs.python.org/issue38398> ___ ___

[issue38398] PyUnicode functions are not exported by python 2 in Ubuntu

2019-10-07 Thread PyScripter
PyScripter added the comment: To Victor: Neither of PyUnicodeUCS2_FromWideChar or PyUnicodeUCS4_FromWideChar is exported. >>> import ctypes >>> hasattr(ctypes.pythonapi, "PyUnicode_FromWideChar") >>> hasattr(ctypes.pythonapi, "PyUnicodeUSC4_F

[issue38398] PyUnicode functions are not exported by python 2 in Ubuntu

2019-10-07 Thread PyScripter
New submission from PyScripter : As per title PyUnicode functions, such as PyUnicode_FromWideChar, are not exported on Ubuntu and possibly other Linux systems. This is a show stopper for embedded Python. To confirm: >>> import ctypes >>> hasattr(ctypes.pythonapi, "

[issue22213] Make pyvenv style virtual environments easier to configure when embedding Python

2019-09-20 Thread PyScripter
PyScripter added the comment: To Victor: So how does the implementation of PEP-587 help configure embedded python with venv? It would be great help to provide some minimal instructions. -- nosy: +pyscripter ___ Python tracker <ht

[issue37633] Py_CompileString and PyParser_SimpleParseString not exported in python38.dll

2019-07-20 Thread PyScripter
PyScripter added the comment: Py_CompileStringFlags is not exported either. -- ___ Python tracker <https://bugs.python.org/issue37633> ___ ___ Python-bugs-list m

[issue37633] Py_CompileString and PyParser_SimpleParseString not exported in python38.dll

2019-07-19 Thread PyScripter
New submission from PyScripter : Py_CompileString and PyParser_SimpleParseString and possibly other related functions are not exported in Python 3.8 b2 DLL. This is unintentional, not documented and unnecessarily breaks backward compatibility. Issue 37189 was similar and related

[issue37189] PyRun_String not exported in python38.dll

2019-06-16 Thread PyScripter
PyScripter added the comment: This does break PyScripter Python for Delphi as well. The question whether this change was intentional in which case it would need to be explained and documented, or accidental and will be reversed begs an answer. -- nosy: +pyscripter

[issue35706] Make it easier to use a venv with an embedded Python interpreter

2019-02-04 Thread PyScripter
PyScripter added the comment: This issue is related (duplicate) to https://bugs.python.org/issue22213. It appears that there is a workaround but only for Linux using Py_SetProgramName. I wish that there was some similar way for Windows. -- nosy: +ncoghlan, pitrou

[issue35706] Make it easier to use a venv with an embedded Python interpreter

2019-02-04 Thread PyScripter
PyScripter added the comment: "Personally, I am 100% against letting an embedded runtime automatically pick up any settings from the environment. You don't know where they came from." Why is that? When the embedding application is using Py_SetPythonHome there is clear int

[issue35706] Make it easier to use a venv with an embedded Python interpreter

2019-02-03 Thread PyScripter
PyScripter added the comment: I don't see how pep-0582 is related to embedded python. The solution is to check for the presence of pyvenv.cfg in PYTHONHOME and set up the system.path accordingly. -- ___ Python tracker <https://bugs.python.

[issue35706] Make it easier to use a venv with an embedded Python interpreter

2019-02-02 Thread PyScripter
PyScripter added the comment: Similar experience. I have found no way to get to use a venv as embedded Python in PyScripter. Tried Py_SetPythonhome, Py_SetPythonName, combinations... Nothing worked. -- nosy: +pyscripter ___ Python tracker

ANN: PyScripter 3.6 released

2019-01-14 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. This release contains important

PyScripter v3.5 relased

2018-11-17 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. This release contains important

PyScripter 3.4.2 released

2018-09-10 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. This is a maintenance release

ANN: PyScripter 3.4 released

2018-05-08 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. The major new feature

ANN: PyScripter v3.3.0 released

2018-03-22 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. The major new feature

PyScripter v3.2.0 released

2018-01-16 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. The major new feature

PyScripter 3.1.0 released

2018-01-05 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. It is feature-rich, but also light-weight. The major new feature

PyScripter 3.0.0 released

2017-10-20 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. Here are the new features: * Python 3.5, 3.6 and 3.7 support * New Style Engine

PyScrpter v2.6 released.

2015-03-21 Thread pyscripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. A portable version is available, so that you can try with minimum hassle

Re: UnicodeEncodeError in compile

2012-01-11 Thread pyscripter
On Wednesday, January 11, 2012 5:50:51 AM UTC+2, Terry Reedy wrote: On 1/10/2012 3:08 AM, Terry Reedy wrote: Is this a filename that could be an actual, valid filename on your system? Yes it is. open works on that file. Good question. I believe this holdover from 2.x should be deleted. I

Re: UnicodeEncodeError in compile

2012-01-11 Thread pyscripter
Indeed, on Windows NT the file system encoding should not be mbcs, since it creates UnicodeEncodeErrors on perfectly valid file names. -- http://mail.python.org/mailman/listinfo/python-list

UnicodeEncodeError in compile

2012-01-09 Thread pyscripter
Using python 3.2 in Windows 7 I am getting the following: compile('pass', r'c:\temp\工具\module1.py', 'exec') UnicodeEncodeError: 'mbcs' codec can't encode characters in position 0--1: invalid character Can anybody explain why the compile statement tries to convert the unicode filename using

PyScripter v2.4.3 released

2011-10-05 Thread pyscripter
A new version 2.4.3 of PyScripter, the Python IDE for Windows, is now available at http://pyscripter.googlecode.com. This new version implements major improvements in code completion and many other new features and bug fixes. You can find more about this new version at http

PyScripter version 2.3.1 released

2010-10-17 Thread PyScripter
PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages. Features: http://code.google.com/p/pyscripter/wiki/Features Screenshots: http

Re: Light on Dark screen for Spe or Pyscripter

2010-10-10 Thread PyScripter
On Oct 10, 7:48 am, flebber flebber.c...@gmail.com wrote: On Oct 9, 3:54 pm, flebber flebber.c...@gmail.com wrote: I was hoping someone knew how to setup pyscripter or Spe ide's with light on dark windows. I start to have trouble reading the nomal dark on light screens after any lengthy

Re: Light on Dark screen for Spe or Pyscripter

2010-10-10 Thread PyScripter
On Oct 11, 1:51 am, PyScripter pyscrip...@gmail.com wrote: In Pyscripter try View, Themes, EOS Further dark theme athttp://www.mytreedb.com/downloads/m-subcat/a-skins.html (you need to download the archive and place the skin file at %APPDATA%/ pyscripter/skins) Dark hihglighters athttp

Python IDE PyScripter v1.9.9.7 released

2009-05-20 Thread PyScripter
PyScripter version 1.9.9.7 has been released at http://pyscripter.googlecode.com. PyScripter is a free and open-source Python Integrated Development Environment (IDE) created with the ambition to become competitive in functionality with commercial Windows-based IDEs available for other languages

[issue2199] cPickle error with gtk GEnum classes

2008-02-28 Thread PyScripter
New submission from PyScripter: cPickle has problems loading instances of gtk gobject.GEnum classes. gobject.GEnum is a subclass of int. On the other hand pickle handles those classes correctly. Since cPickle is meant to be a faster version of pickle this needs to be consider a bug

[issue1685] linecache .updatecache fails on utf8 encoded files

2007-12-28 Thread PyScripter
PyScripter added the comment: To reproduce the error: a) Save the following file in utf-8 format as c:\temp\module1.py # -*- coding: utf-8 -*- print(ψ) b) Run the following script: import pdb d = pdb.Pdb() filename = rc:\Temp\module1.py print(d.set_break(filename,1)) Expected result None

[issue1685] linecache .updatecache fails on utf8 encoded files

2007-12-28 Thread PyScripter
PyScripter added the comment: Patch file attached Added file: http://bugs.python.org/file9034/linecache.py.patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1685 __ linecache.py.patch Description: Binary data

[issue1685] linecache .updatecache fails on utf8 encoded files

2007-12-21 Thread PyScripter
New submission from PyScripter: linecache.updatecache works as follows after it finds a module name: fp = open(fullname, 'rU') lines = fp.readlines() fp.close() It then tries to detect a file encoding comment... The problem is that readlines fails with a UnicodeDecodeError if the file

Re: Looking for a good Python environment

2007-11-10 Thread PyScripter
PyScripter provides integrated version control, via TortoiseSVN or TortoiseCVS and the File Explorer. On Nov 10, 11:21 am, jwelby [EMAIL PROTECTED] wrote: On Nov 7, 12:42 pm, Colin J. Williams [EMAIL PROTECTED] wrote: jwelby wrote: ... I currently use Python Scripter as a lightweight

Re: Looking for a good Python environment

2007-11-08 Thread PyScripter
at it, do any of these debuggers implement a good way to debug multi-threaded Python programs? PyScripter (http://pyscripter.googlepages.com) debugging is based on the standard Python debugger bdb.py which does not currently support multi-threaded debugging (only the main thread can be debugged

Re: pyscripter

2007-02-14 Thread PyScripter
to default. thx This is a bug in PyScripter that was fixed in version control. The fix will be available in the next version. Workaround: After starting Pyscripter, go to Tools, Option, Editor Options and press OK. This will apply your syntax highlighting changes to the interpreter window

Re: favourite editor

2007-02-13 Thread PyScripter
A beta version of PyScripter with remote debugging is actually out. See http://pyscripter.googlepages.com/ and http:// pyscripter.googlepages.com/remotepythonengines for details. Ο/Η Stef Mientki έγραψε: azrael wrote: I expirienced some big craches. tra running some aplication vith using

Re: Re:A python IDE for teaching that supports cyrillic i/o

2006-11-18 Thread PyScripter
Kirill Simonov wrote: PyScripter does, indeed, look nice, but unfortunately it appeared to have similar issues with cyrillic support. Thank you anyway for the suggestion. What are the issues? PyScripter offers full support for utf-8 encoded files and PEP-263. The editor internally

Python IDE PyScripter v.1.7 released

2006-10-14 Thread pyscripter
PyScripter is free and open source Windows-based Python IDE created with the ambition to become competitive in functionality with commercial IDEs available for other languages. Being built in a compiled language (Delphi) is rather snappier than some of the other Python IDEs and provides

Re: XSLT speed comparisons

2006-10-01 Thread pyscripter
Jordan wrote: If your using python 2.4.3 or essentially any of the 2.3, 2.4 series, i'd test out PyScripter as an IDE, it's one of the best that I've used. Unfortunately, they have yet to fully accomedate 2.5 code (you can still write 2.5 code with almost no problems, but you won't be able