On 11/30/2017 03:31 AM, Ben Finney wrote:
> Irmen de Jong writes:
>
>> On 11/30/2017 02:06 AM, waylan wrote:
>>> So, how do I upload an update to my documentation?
>>
>> I ran into the same issue. From what I gathered, Pythonhosted.org is
>> in the pr
On 11/30/2017 02:06 AM, waylan wrote:
> I've been hosting documentation for many years on pythonhosted.org. However,
> I can't seem to upload any updates recently. The homepage at
> http://pythonhosted.org states:
>
>> To upload documentation, go to your package edit page
>> (http://pypi.python
On 11/01/2017 06:25 PM, Stefan Ram wrote:
> import random
> ...
> random.random()
>
> Now, the user has to cut the import, paste it to the top
> of his code, then go back to the list of snippets, find
> the same snippet again, copy the expression, go to his code,
> then find the point whe
On 10/05/2017 04:23 AM, Christopher Reimer wrote:
> I'm leaning towards installing the latest minor version of each available
> major version, running tox to run the unit tests against each one, and seeing
> what blows up.
Perhaps you can use the service of Travis (travis-ci.org) to avoid insta
On 09/28/2017 09:40 AM, Paul Moore wrote:
> Are you aware of pipsi? If you do `pipsi install somepackage` it
> creates a new virtualenv in ~/.local/.venvs, populates it with
> somepackage and its dependencies, and then puts the entry point
> scripts for somepackage into ~/.local/bin. It may be a us
On 09/27/2017 09:50 AM, Paul Moore wrote:
>>> What you could do is pip install your binary dependencies into a
>>> directory in $TEMP using --target, then add that directory to
>>> sys.path. Probably easier than building a full virtualenv. Bundle pip
>>> with your app if you can't assume your user
On 09/27/2017 12:23 AM, Cai Gengyang wrote:
>
> I'm trying to understand the logic behind AND. I looked up Python logic tables
>
> False and False gives False
> False and True gives False
> True and False gives False
> True and True gives True.
>
> So does that mean that the way 'and' works in P
On 09/26/2017 10:49 PM, Paul Moore wrote:
> On 26 September 2017 at 19:47, Irmen de Jong wrote:
>> Any thoughts on this? Is it a good idea or something horrible? Has
>> someone attempted something like this before perhaps?
>
> When I've done this, I've bundled my
On 09/26/2017 09:19 PM, Thomas Jollans wrote:
>> - use venv.EnvBuilder() to create a new virtualenv somewhere in the
>> user's home directory (~./virtualenvs/mygreatgame ?)
>
> The appropriate place for this kind of thing, on Linux, would be
> $XDG_DATA_HOME, default "~/.local/share/", i.e.:
>
>
Hi,
I've been using Python's executable zip application feature to neatly
package my little game into a single "executable" file.
Here "executable" means the user can simply start it by doubleclicking
it, or launching it from a shell prompt. Of course the user already has
to have a proper Python in
On 09/22/2017 08:34 PM, Stephan Houben wrote:
> I was vaguely tempted to offer the Mingw-w64 (GCC) Python as an
> alternative, since it doesn't rely on any optionally-installed Microsoft
> DLLs and so avoids this issue. But I suppose that is not really the
> newbie-friendly solution the OP was loo
On 14/09/2017 05:46, Michael Torrie wrote:
> On 09/12/2017 03:05 AM, Thomas Jollans wrote:
>> Other people on this list:
>> This isn't the first time I've someone with this issue here. It's
>> probably putting off plenty of potential new users who don't make as
>> much effort to find a solution. I
On 06/09/2017 23:17, Irmen de Jong wrote:
>
> https://github.com/irmen/bouldercaves
>
My Boulder Dash clone is now at version 2.0 because a few important things that
were
lacking are now implemented:
* authentic mode:
The game is now displayed in a small screen that scrolls smoothly
On 05/09/2017 00:02, Irmen de Jong wrote:
https://github.com/irmen/bouldercaves
> There's just two things missing I think:
> - high score table
> - being able to play multiple sounds simultaneously, as the amoeba and
> magic wall sounds are lacking at the moment.
In version 1.
Hi,
Yet another continuation of my graphics experiments with tkinter. In the
previous project I've been using tkinter bitmaps to simulate a
commodore-64 screen where I exploited the possibility to change the
foreground and background color of the bitmap on the fly. This
conveniently matches the wa
On 08/13/2017 03:50 PM, Irmen de Jong wrote:
> Hi,
>
> As another experiment with using just tkinter for graphics, this time I
> created a
> Commodore-64 emulator. You can find it here https://github.com/irmen/pyc64
[...]
> There's also https://github.com/mnaberez/p
On 29/08/2017 06:32, Terry Reedy wrote:
> *The* documentation (for 8.6) is the tcl.tk/man doc set:
> https://www.tcl.tk/man/tcl8.6/TkCmd/contents.htm
> For the level of detail you are looking at, they are essential.
>
> The nmt docs for 8.5 are neither complete (intentionally not) nor always
> c
Hi,
Using tkinter in python3, I was trying to intercept individual keypresses (and
releases)
of keys on the numeric keypad. I want to use this as a simple joystick
simulation.
While you can bind the event, actually doing something sensible with
it in a
cross platform way seems utterly impossib
On 08/13/2017 03:50 PM, Irmen de Jong wrote:
> Now, it's not a "true" emulator: obviously it doesn't simulate the C64 on a
> hardware
> level. It does however implement enough to load and run simple basic programs
> that can
> show interesting PETSCII pict
Hi,
As another experiment with using just tkinter for graphics, this time I created
a
Commodore-64 emulator. You can find it here https://github.com/irmen/pyc64
You only need the pillow library to be able to run this. I guess most people
have that
one already anyway.
It works pretty well :) (
On 04/08/2017 15:44, Robin Becker wrote:
> ..
>>
>> Hi Robin
>>
>> I am not sure how this is any benefit over the self-signed root certs that I
>> now use?
>>
>> Except for the fact that these are a root cert as well and don't use any CA
>> trust chain.
>> To be able to validate this cert
On 03/08/2017 20:30, Irmen de Jong wrote:
> Alternatively, is there a cheap way to get an 'official' SSL certificate for
> testing
> purposes. I don't think letsencrypt can help here because it is only for web
> sites?
> (and their certs are only valid for a very
On 04/08/2017 10:26, Robin Becker wrote:
> On 03/08/2017 19:30, Irmen de Jong wrote:
> .
>>
>> I wonder if any current (or new) users of Pyro4 want to check this out? The
>> biggest
>> concern I have is that I only have dummy (self-signed) certificates so I
' SSL certificate for
testing
purposes. I don't think letsencrypt can help here because it is only for web
sites?
(and their certs are only valid for a very short period)
Cheers
Irmen de Jong
--
https://mail.python.org/mailman/listinfo/python-list
On 30/07/2017 23:31, Ode Idoko wrote:
> Hi, I am new to Python and though I have been able to download the 3.6
> version on my laptop , I still have issues with the syntax. While writing a
> program to execute, it will display syntax error with different shades of
> color usually green or yellow
On 28/07/2017 18:36, Irmen de Jong wrote:
> On 27/07/2017 00:03, Paul Moore wrote:
>> If you want to create a feature request for a filter function on
>> bugs.python.org and assign it to me, I'll take a look at it. \
>
>
> I will do this, thanks in advance.
Should
On 27/07/2017 20:55, Andreas Jung wrote:
>
> I need to installed Python 3.6.x on Windows as part of an automated process
> without user-interaction. Recently Python releases provided MSI files for
> installation using the "msiexec" utility however there are no more MSI
> release files available
On 27/07/2017 00:03, Paul Moore wrote:
> On Wednesday, 26 July 2017 18:37:15 UTC+1, Irmen de Jong wrote:
>> What do you think? Should the zipapp module perhaps be improved to
>> automatically skip
>> obvious temporary files or perhaps allow to provide a filter function?
&g
Hi,
when creating an executable zip file using the zipapp module, it's a little sad
to see
that no effort is done to filter out obvious temporary files: the resulting
zipfile
contains any *.pyc/pyo files and other things such as .git, .tox, .tmp folders.
The documentation says "zip is created f
On 21/07/2017 20:52, Skip Montanaro wrote:
> I would like to JSON encode some PDF and Excel files. I can read the content:
>
> pdf = open("somefile.pdf", "rb").read()
>
> but now what? json.dumps() insists on treating it as a string to be
> interpreted as utf-8, and bytes == str in Python 2.x. I
On 02/07/2017 11:27, breamore...@gmail.com wrote:
> On Sunday, July 2, 2017 at 10:03:34 AM UTC+1, Irmen de Jong wrote:
>> Hi,
>> I'm using pythonhosted.org to host the docs for various projects but it has
>> either been
>> very slow or unavailable over the past w
Hi,
I'm using pythonhosted.org to host the docs for various projects but it has
either been
very slow or unavailable over the past week. Anyone else having the same
problems?
Should I perhaps consider putting my docs on readthedocs.org instead?
Irmen
--
https://mail.python.org/mailman/listinfo/
On 10-6-2017 14:54, Steve D'Aprano wrote:
> Larry Hastings is working on removing the GIL from CPython:
>
> https://lwn.net/Articles/723949/
Here is Larry's "How's it going" presentation from Pycon 2017 on this subject
https://www.youtube.com/watch?v=pLqv11ScGsQ
-irmen
--
https://mail.python.o
On 3-6-2017 15:44, chitt...@uah.edu wrote:
> Ideally, I would like to set up the user on their Windows 7/10 system so that
> they can "login" to the ubuntu system (say putty) - change working directory
> (to where desired) - run the script (on the ubuntu system) - and scp the file
> back to the
On 2-6-2017 20:14, remmm wrote:
> These write speeds are in the range of 18 to 25 MBytes per second for
> spinning disks and about 50 Mbytes/sec for SSDs. Keep in mind these numbers
> should be more like 120 MBytes/sec for spinning disks and 300 MBytes/sec for
> SSDs.
You'll only reach thos
On 2-6-2017 19:17, sean.diza...@gmail.com wrote:
> Can someone please explain this to me? Thanks in advance!
>
> ~Sean
>
>
> Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 12:39:47)
> [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
> Type "help", "copyright", "credits" or "license" fo
ably will because it now has them everywhere already, but
my other projects have to wait.
As this is the first and only time so far that I have used type hints,
it is very likely that I made some mistakes or missed a better solution to
some of the issues I encountered.
Please correct
On 23-5-2017 10:19, COPIN Mathieu. wrote:
> Hi,
>
> I want to get a server certificate from the host-name.
>
> I know I could do something like :
>> call(openssl, s_client, -showcerts, -connect, hostname:port)
>
>
> But the thing is to do it without openssl because I want to run the script on
On 18-5-2017 3:30, Dennis Lee Bieber wrote:
> Late-comer... I'm pretty sure 1.4, if not 1.3 was the version
> documented in the first books I bought on the language...
>
> And I bought because AmigaOS was listed as a viable candidate (thanks
> Irmen) -- within a week I had written an o
On 10-5-2017 17:12, Mahmood Naderan wrote:
> So, I think numpy is unable to manage the memory.
That assumption is very likely to be incorrect.
>> np.array([[i.value for i in j] for j in p.rows])
I think the problem is in the way you feed your excel data into the numpy array
constructor. The co
On 6-5-2017 7:14, Mahmood Naderan wrote:
> Hello,
> I have downloaded python-3.6.1-amd64.exe and it is fine to install it through
> GUI. However, I want to write a batch file to install it via command line.
> Since the installation process is interactive, it seems that the auto-install
> batch f
On 16-4-2017 14:28, jorge.conr...@cptec.inpe.br wrote:
> Hi,
>
> I'm new on Python software. I would like to write on disk arrays in binary or
> ascii
> format. Can someone please help me?
>
> Thanks,
>
> Conrado
What kind of data is in the arrays?
Who or what will be reading the files?
And mo
On 12-4-2017 7:54, LnT wrote:
>
> Hi Irmen,
>
> you may please find full log @ https://pastebin.mozilla.org/9018753
I have no idea what I'm looking at.
But my initial response was wrong, see the reply by eryk sun; your error has
nothing to
do with disk space but rather, a lack of system memory
On 11-4-2017 14:30, LnT wrote:
> Hi,
>
> version information
>
> python 27
Please be more precise, there is no Python 27. (Yeah it is clear you meant 2.7
but still)
> java version "1.8.0_111"
That should not be relevant
> OS -Win 10 , 64Bit , 8GB RAM , 60GB HD
60 GB is not a lot of space for
On 14-3-2017 20:59, Xristos Xristoou wrote:
> I have a database in microsoft ACCESS with about 150 records.. if I want to
> get some
> data from this database using a query in python and i want to store in some
> variables in python that will do this ? to avoid the 150 if ...: Using the
> stand
On 24-2-2017 12:18, Michelle Tan wrote:
> Hello all
>
> I am new to python.
>
> Trying to install Python and encountered this error message : "The program
> can't start because api-ms-win-crt-runtime-I1-1-0.dll is missing from your
> computer."
>
> Tried to repair and reinstall Python however i
On 24-2-2017 13:38, ChrisW wrote:
> The installation guidelines for Python 3.6 say:
>
> "Per-user installations of Python do not add the launcher to PATH unless the
> option was selected on installation."
> (https://docs.python.org/3/using/windows.html#from-the-command-line).
>
> However, I've
On 24-2-2017 0:20, Juan C. wrote:
> On Thu, Feb 23, 2017 at 7:42 PM, Irmen de Jong wrote:
>>
>> import os
>> os.system("traceroute www.google.com")
>
> Indeed, that would work, but it isn't a great approach in my opinion
> because I would rely o
On 23-2-2017 22:33, Juan C. wrote:
> I need to implement a traceroute inside my script but I can't escalate
> privileges. Unix uses UDP for traceroute, but I didn't find any material
> regarding UDP traceroute in Python.
import os
os.system("traceroute www.google.com")
--
https://mail.python.
On 22-2-2017 8:39, Argentinian Black ops lll wrote:
> Thanks for the quick response...! you saved me a lot of time, thank you!
>
I don't know if you want/have to use your own custom caching decorator, but are
you
aware of the lru_cache decorator that's part of the standard library?
https://docs
On 22-2-2017 18:26, Braxton Alfred wrote:
> Why does this not run? It is right out of the CSV file in the Standard Lib.
What does "not run" mean.
We can't help if you are not telling us the exact error message you're getting
(if any)
> filename = 'c:\users\user\my documents\Braxton\Excel\perso
On 14-2-2017 23:44, Makoto Kuwata wrote:
> Hi,
>
> Is there any *just right* python code to refactor?
> In other words, I'm finding bad code example in python.
>
> (background)
> I'm teaching Python to some novice programmer, and
> want to show refactoring example to them.
>
> (required)
> * not
On 30-1-2017 18:58, Chris Green wrote:
> I want to parse some XML data, it's the address book data from the
> linux program osmo. The file I want to parse is like this:-
>
[snip]
>
> I basically want to be able to extract the data and output in other
> formats - e.g. write to a Sqlite3 databas
On 30-1-2017 21:33, Joseph L. Casale wrote:
>> Python still has my heart, but .NET Core tempts me. One great thing of
>> coding in C# would be no GIL.
>
> Seriously, check out the benchmarks at https://github.com/aspnet/benchmarks.
Results vary quite a bit there.
For instance take the json serial
On 11-1-2017 18:31, Falter, Donald [USA] wrote:
> I am new to Python and I am trying to utilize GDAL. I installed Python 3.6.
> I installed the following: gdal-201-1800-core.msi and
> GDAL-2.1.2.win32-py3.4.msi.
Those don't match. You'll have to use a MSI built for py3.6, one thinks.
Either ins
On 10-1-2017 23:57, Patrick Zhou wrote:
> Hi Irmen,
>
> I have successfully got it to work with both side as python but so far having
> trouble with pyrolite.jar which is downloaded from
> https://mvnrepository.com/artifact/net.razorvine/pyrolite/4.4
>
>
[...]
>
> which "getDst" works on Ja
On 10-1-2017 16:01, Donald Stufft wrote:
>> TypeError: the JSON object must be str, not ‘bytes'
> Huh, just tested, my original snippet works on Python 3.6 but fails on Python
> 3.5.
My guess is that is due to an improvement in 3.6 mentioned here:
https://docs.python.org/3/whatsnew/3.6.html#jso
On 4-1-2017 23:14, zxpat...@gmail.com wrote:
> Hi everyone,
>
> I ran into a case that I need to create a work process of an application
(Jython so has to call using java.exe) which will collect the data based on
what main process indicates.
>
> (1) I tried multiprocessing package, no luck. Java.e
On 4-1-2017 23:14, zxpat...@gmail.com wrote:
> Hi everyone,
>
> I ran into a case that I need to create a work process of an application
> (Jython so has to call using java.exe) which will collect the data based on
> what main process indicates.
>
> (1) I tried multiprocessing package, no luck
On 2-1-2017 12:38, Antonio Caminero Garcia wrote:
> The thing with the from-the-scratch full featured IDEs (Eclipse, IntelliJ,
> Pycharm)
> is that they look like a space craft dashboard and that unwarranted resources
> consumption and the unnecessary icons. I want my IDE to be minimalistic but
On 5-12-2016 19:39, vmaha...@centerpointmedia.com wrote:
> On Wednesday, November 16, 2016 at 3:25:39 PM UTC-5, Peter Otten wrote:
>> vmaha...@centerpointmedia.com wrote:
>>
>>> I am running Python2.7, wherein I am running the following price of code:
>>>
>>> y = m.predict(input_fn=lambda:input_fn(
On 22-11-2016 9:18, prihantoro2...@gmail.com wrote:
> Dear all,
>
> i am new to Python and have this problem
>
> =
> import nltk
> puzzle_letters = nltk.FreqDist('egivrvonl')
> obligatory = 'r'
> wordlist = nltk.corpus.words.words()
> [w for w in wordlist if len(w) >= 6
> and obligatory in w
On 5-11-2016 19:08, eryk sun wrote:
> On Sat, Nov 5, 2016 at 5:33 PM, Irmen de Jong wrote:
>> I think perhaps we should have a command line option / environment variable
>> to be able
>> to disable 'eval' altogether
>
> I don't think that'
On 5-11-2016 18:12, Steve D'Aprano wrote:
> Well, that didn't take very long at all.
>
> Here's the first security bug which is related to the new (and badly
> misnamed) f-string feature:
>
> http://bugs.python.org/issue28563
I think perhaps we should have a command line option / environment va
On 31-10-2016 19:24, Irmen de Jong wrote:
> So there must be something in that line in your file that it considers an EOF.
I meant to type EOL there. (end-of-line/newline).
Irmen
--
https://mail.python.org/mailman/listinfo/python-list
On 31-10-2016 18:46, Heli wrote:
> Thanks Irmen,
>
> I tried with "rU" but that did not make a difference. The problem is a line
> that with one single write statement in my fortran code :
>
> write(UNIT=9,FMT="(99g20.8)") value
>
> seems to be read in two python inputfile.readline().
>
>
On 31-10-2016 18:20, Heli wrote:
> Hi all,
>
> I am trying to read an ascii file written in Fortran90 using python. I am
> reading this file by opening the input file and then reading using:
>
> inputfile.readline()
>
> On each line of the ascii file I have a few numbers like this:
>
> line 1
On 25-10-2016 2:11, Kenneth L Stege wrote:
> Im running windows 7 pro, 64 bit. I downloaded 3.5.2 64 bit and when I try to
> run I get the error message api-ms-win-crt-runtime-l1-1-0.dll is missing. I
> loaded that file and still will not run.
> suggestions?
> thanks
>
http://lmgtfy.com/?q=
ually used by the client.
The feature is also supported by the Pyrolite client library for Java and
.NET/C#.
I think it is pretty nifty and interesting enough to post about it here :)
Regards
Irmen de Jong
--
https://mail.python.org/mailman/listinfo/python-list
On 18-10-2016 19:14, Gipper wrote:
> On Friday, October 14, 2016 at 1:05:03 PM UTC-5, Irmen de Jong wrote:
>> On 14-10-2016 7:31, Gipper wrote:
>>> I'm trying to run a script that calls pyhop (from pyhop import pyhop).
>>> Details here > https://docs.extrahop.c
On 16-10-2016 19:41, tshep...@rcsreg.com wrote:
> Is there a standard or best way to write documentation for
> a particular python library? I'd mostly target HTML, I guess.
>
> Thanks!
>
>
> Tobiah
>
I guess most people use Sphinx for this task
http://www.sphinx-doc.org/
You can use various
Right, another troll.
plonk
Irmen
--
https://mail.python.org/mailman/listinfo/python-list
On 14-10-2016 20:11, LongHairLuke wrote:
> Hi, l l am trying to make a simple guess program. This is my script:
>
> def main():
> print ("Guess a letter between a and e")
> randomNumber = b
>
> userGuess = input("Your guess: ")
>
> if userGuess == randomNumber:
> print("You
On 14-10-2016 7:31, Gipper wrote:
> I'm trying to run a script that calls pyhop (from pyhop import pyhop).
> Details here > https://docs.extrahop.com/5.0/extrahop-python-api/#metrics
>
> I've followed the directions to install and import pyhop, but no matter what
> I do, I always get the follow
On 14-10-2016 1:07, pozz wrote:
> All the tricks have a common goal: to discover bugs as soon as possible,
> mostly during
> compilation process. Indeed I usually find some bugs during compilation (or
> static
> analysis). It seems to me very important.
I wanted to reply a bit more to this parag
On 14-10-2016 1:07, pozz wrote:
> I come from the C language, that is a compiled and strongly typed language.
C is far from a strongly typed language, IMO...
You can convert (cast) almost anything to anything else without compiler errors.
Have a a float? Ah yes no I mean treat it as a pointer to
On 13-10-2016 23:43, MRAB wrote:
> On 2016-10-13 20:42, Irmen de Jong wrote:
>> On 12-10-2016 12:56, Robin Becker wrote:
>>
>>> I notice an extra space at the windows command prompt compared with 3.5, is
>>> that
>>> deliberate?
>>>
>>
Anyone else having problems with pip and python 3.6.0b2?
Pip now fails to create launcher scripts:
File "c:\python36\lib\site-packages\pip\_vendor\distlib\scripts.py", line
351, in
_get_launcher
result = finder(distlib_package).find(name).bytes
File "c:\python36\lib\site-packages\pip\_ven
On 12-10-2016 12:56, Robin Becker wrote:
> I notice an extra space at the windows command prompt compared with 3.5, is
> that
> deliberate?
>
>> C:\ux\XB33>\python35\python
>> Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:27:37) [MSC v.1900 64 bit
>> (AMD64)]
>> on win32
>> Type "help", "c
On 9-10-2016 20:56, Risat Haque wrote:
> Hey, i have a data base filled with numbers from a recent drone flight. IT
> contains, alt, long, lat, and time.
> In python, i want to ask the user to put in a time :
> askTime = (input("Choose a time (HourMinSec):"))
>
> With this, I need it to search t
On 5-10-2016 2:43, Dennis Lee Bieber wrote:
> Or do what I once did with the Lunar Lander game on my college
> computer... Target accuracy: Excellent... Landing gear? somewhere on the
> other side of the moon. My vertical velocity was sub-inches per second --
> the horizontal velocity was in
On 4-10-2016 10:20, Christian Gollwitzer wrote:
> Thanks! It works now with the cursor keys as intended. I'm still having
> trouble, but
> only because my game playing skills are not very good ;)
Have you managed to land the rocket again at all after a takeoff?
You can practice landing a bit by
On 1-10-2016 22:07, Irmen de Jong wrote:
> On 1-10-2016 15:44, Christian Gollwitzer wrote:
>> Am 01.10.16 um 00:59 schrieb Irmen de Jong:
>>> Hi,
>>>
>>> I've made a very simple rocket simulation game, inspired by the recent
>>> success of Spac
On 1-10-2016 15:44, Christian Gollwitzer wrote:
> Am 01.10.16 um 00:59 schrieb Irmen de Jong:
>> Hi,
>>
>> I've made a very simple rocket simulation game, inspired by the recent
>> success of SpaceX
>
>> You can get the code here if you want to g
Hi,
I've made a very simple rocket simulation game, inspired by the recent success
of SpaceX
where they managed to land the Falcon-9 rocket back on a platform.
I was curious if you can make a simple graphics animation game with just using
Tkinter,
instead of using other game libraries such as P
On 20-9-2016 22:38, Irmen de Jong wrote:
> Hi,
>
> I've stumbled across a peculiar performance issue with Pypy across some
> different
> platforms. It was very visible in some calculation heavy code that I wrote
> that uses
> Python's complex number type to calc
On 21-9-2016 1:20, Chris Kaynor wrote:
>
> Regarding the performance decrease, it may be worthwhile to push the report
> to a PyPy specific forum - a PyPy developer will probably see it here, but
> you may get a faster response on a forum specific to PyPy.
You're right.
I don't know the best pl
On 20-9-2016 22:43, Chris Angelico wrote:
> On Wed, Sep 21, 2016 at 6:38 AM, Irmen de Jong wrote:
>> Windows: 64 bits Windows 7, Intel Core 2 Quad 3.4 Ghz
>> Linux: 32 bits Mint 18, Virtualbox VM on above windows machine
>> Mac mini: OS X 10.11.6, Intel Core 2 Duo 2.53 Gh
e way
the
complex number type is implemented? (the difference doesn't occur when using
only floats)
Regards
Irmen de Jong
--
https://mail.python.org/mailman/listinfo/python-list
On 13-9-2016 23:59, srfp...@gmail.com wrote:
> Running Pyscripter and Python version 2.7.12 on Win10 Home on a 64bit Laptop
> 1. A simple Python application runs successfully.
> 2. WxPython(wxPython3.0-win64-3.0.2.0-py27(1).exe executed successfully
> 3. To the simple app above, I add import wx
On 16-8-2016 0:11, Irmen de Jong wrote:
> Hi,
> as I've always done for a new release I've uploaded new versions of my
> package's
> documentation files, but they are not showing up on Pythonhosted.org - the
> previous
> version is still there.
>
> I
Hi,
as I've always done for a new release I've uploaded new versions of my package's
documentation files, but they are not showing up on Pythonhosted.org - the
previous
version is still there.
Is there something wrong with the update mechanism?
I've been using "python3 setup.py build_sphinx uplo
On 8-8-2016 12:37, Mark Lawrence wrote:
> This may be of interest to some of you
> http://www.snarky.ca/network-protocols-sans-i-o
>
I sure find it interesting. Will also watch Cory's PyCon presentation that is
mentioned!
Thanks for the link.
Irmen
--
https://mail.python.org/mailman/listinf
On 22-6-2016 18:41, Michael Smolen wrote:
> Folks:
> I can't wait to start programming with Python. However, I am having
> difficulty installing on my XP operating system. I downloaded Python-3.4.5ci
> as that seems like the version that will run on my operating system. The
> latest version will
On 11-6-2016 13:37, Johannes Bauer wrote:
> Hi there,
>
> first off, let me admit that I have a hard time comprehensively wrapping
> my head around timezones. Everything around them is much more
> complicated than it seems, IMO.
They might not seem complicated, but actually they are. Mindboggling
On 28-4-2016 18:33, Steven D'Aprano wrote:
> but I was thinking of doing both: give my application a subcommand or an
> option to display help directly in a pager, while -h and --help print to
> stdout as normal.
>
> What do you think? Too clever?
An idea: Use just one help option, then
if sys
On 17-4-2016 4:36, Steven D'Aprano wrote:
> And the documentation:
>
> https://docs.python.org/3.6/library/secrets.html
>
>
> Comments requested.
I've read about the "How many bytes should tokens use?" consideration. It
suggests that
to be secure, tokens need to have sufficient randomness. Th
On 13-4-2016 10:41, jkn wrote:
> Hi Irmen
>
> On Wednesday, April 13, 2016 at 12:22:25 AM UTC+1, Irmen de Jong wrote:
>> It seems that Python is fast enough [1] to create a real time FM music
>> synthesizer
>> (think Yamaha DX-7). I made one that you can see here:
&g
It seems that Python is fast enough [1] to create a real time FM music
synthesizer
(think Yamaha DX-7). I made one that you can see here:
https://github.com/irmen/synthesizer
The synthesizer can create various waveforms (sine, sawtooth, pulse etc.) and
lets you
modify them in various ways. You
On 1-4-2016 17:59, George Trojan - NOAA Federal wrote:
> What graphics editor would you recommend to create diagrams that can be
> included in sphinx made documentation? In the past I used xfig, but was not
> happy with font quality. My understanding is the diagrams would be saved in
> a .png file
1 - 100 of 583 matches
Mail list logo