Re: Hot reload Flask app?

2020-10-01 Thread sjeik_appie
On 1 Oct 2020 17:58, Roland Müller via Python-list wrote: On 2020-10-01 16:33, sjeik_ap...@hotmail.com wrote: > Hi, > I would like to create a "/reload" view in my Flask app, so I could easily > and safely reload it when code, templates etc change.

Re: Hot reload Flask app?

2020-10-01 Thread Roland Müller via Python-list
On 2020-10-01 16:33, sjeik_ap...@hotmail.com wrote: Hi, I would like to create a "/reload" view in my Flask app, so I could easily and safely reload it when code, templates etc change. Similar to what happens when running the app with the debug server. I am using Nginx and

Hot reload Flask app?

2020-10-01 Thread sjeik_appie
Hi, I would like to create a "/reload" view in my Flask app, so I could easily and safely reload it when code, templates etc change. Similar to what happens when running the app with the debug server. I am using Nginx and Gevent on a recent Ubuntu system with Python 3.6. My

[issue17642] IDLE add font resizing hot keys and wheel

2019-11-17 Thread Tal Einat
Change by Tal Einat : -- nosy: +taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17642] IDLE add font resizing hot keys and wheel

2019-11-13 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17642] IDLE add font resizing hot keys and wheel

2019-11-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: #33397 add a FontSizer class to textview.py and uses it there and for the doc viewer in help.py. It should be used for this issue also. -- ___ Python tracker

[issue17642] IDLE add font resizing hot keys and wheel

2019-11-10 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +16613 pull_request: https://github.com/python/cpython/pull/17107 ___ Python tracker ___

[issue17642] IDLE add font resizing hot keys and wheel

2019-08-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I want this too, and part of it should be simple. Given that I have had a never empty backlog of PRs to review for 2 1/2 years, it got forgotten. There was also a tk problem that seemed to block implementation. Specification for hotkey: Cntl/Cmd - -+=

[issue17642] IDLE add font resizing hot keys and wheel

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: > Key or wheel patches will probably be 3.6 only. I still have hopes that this will happen. Am I correct in thinking that it wouldn't be difficult to map CMD-plus and CMD-minus (or for Windows Cntl-plus and Cntl-minus) to a function that increases or

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2017-05-17 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing

Re: HOT LIST

2017-04-18 Thread Rob Gaddi
On 04/18/2017 06:37 AM, j...@nichesoftsolutions.com wrote: Hi Hope you doing great! Greeting from Niche Soft Solutions. I would like to present our topnotch consultants currently available. Please have a look at the below hot list of Niche Soft Solutions and mail your Direct Client

HOT LIST

2017-04-18 Thread Jack
Hi Hope you doing great! Greeting from Niche Soft Solutions. I would like to present our topnotch consultants currently available. Please have a look at the below hot list of Niche Soft Solutions

HOT LIST

2017-04-13 Thread Jack
Hi Hope you doing great! Greeting from Niche Soft Solutions. I would like to present our topnotch consultants currently available. Please have a look at the below hot list of Niche Soft Solutions

HOT LIST

2017-04-12 Thread Jack
Hi Hope you doing great! Greeting from Niche Soft Solutions. I would like to present our topnotch consultants currently available. Please have a look at the below hot list of Niche Soft Solutions

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2017-02-01 Thread STINNER Victor
STINNER Victor added the comment: Victor: "FYI I wrote an article about this issue: https://haypo.github.io/analysis-python-performance-issue.html Sadly, it seems like I was just lucky when adding __attribute__((hot)) fixed the issue, because call_method is slow again!" I upgr

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-22 Thread STINNER Victor
STINNER Victor added the comment: > But I failed to reproduce it. Hey, performance issues with code placement is a mysterious secret :-) Nobody understands it :-D The server runner the benchmark is a Intel Xeon CPU of 2011. It seems like code placement issues are more important on this CPU

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-22 Thread INADA Naoki
INADA Naoki added the comment: I setup Ubuntu 14.04 on Azure, built python without neither PGO nor LTO. But I failed to reproduce it. @haypo, would you give me two binaries? $ ~/local/py-2a143/bin/python3 -c 'import sys; print(sys.version)' 3.7.0a0 (default:2a14385710dc, Nov 22 2016, 12:02:34)

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-22 Thread STINNER Victor
STINNER Victor added the comment: Naoki: "Wow. It's sad that tagged version is accidentally slow..." If you use PGO compilation, for example use "./configure --enable-optimizations" as suggested by configure if you don't enable the option, you don't get the issue. I hope that most Linux

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-22 Thread STINNER Victor
STINNER Victor added the comment: 2016-11-22 12:07 GMT+01:00 INADA Naoki : > I want to reproduce it and check `perf record -e L1-icache-load-misses`. > But IaaS (EC2, GCE, Azure VM) doesn't support CPU performance counter. You don't need to go that far to check

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-22 Thread INADA Naoki
INADA Naoki added the comment: Wow. It's sad that tagged version is accidentally slow... I want to reproduce it and check `perf record -e L1-icache-load-misses`. But IaaS (EC2, GCE, Azure VM) doesn't support CPU performance counter. -- ___ Python

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-22 Thread STINNER Victor
STINNER Victor added the comment: FYI I wrote an article about this issue: https://haypo.github.io/analysis-python-performance-issue.html Sadly, it seems like I was just lucky when adding __attribute__((hot)) fixed the issue, because call_method is slow again! * acde821520fc (Nov 21): 16.3 ms

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread STINNER Victor
nce/benchmarks/bm_json_loads.py --worker -v -l 128 -w0 -n 100 $ perf report > How this list intersects with the list of functions in .text.hot section of > PGO build? I checked which functions are

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread STINNER Victor
STINNER Victor added the comment: > New changeset cfc956f13ce2 by Victor Stinner in branch 'default': > Issue #28618: Mark dict lookup functions as hot > https://hg.python.org/cpython/rev/cfc956f13ce2 Here are benchmark results on the speed-python server: haypo@speed-python$ PYTHONPA

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > * json: scanstring_unicode() This doesn't look wise. This is specific to single extension module and perhaps to single particular benchmark. Most Python code don't use json at all. What is the top of "perf report"? How this list intersects with the list

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread STINNER Victor
STINNER Victor added the comment: I wrote hot3.patch when trying to make the following benchmarks more reliable: - logging_silent: rev 8ebaa546a033 is 20% slower than the average en 2016 - json_loads: rev 0bd618fe0639 is 30% slower and rev 8ebaa546a033 is 15% slower than the average on 2016 -

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread STINNER Victor
STINNER Victor added the comment: hot3.patch: Mark additional functions as hot * PyNumber_AsSsize_t() * _PyUnicode_FromUCS1() * json: scanstring_unicode() * siphash24() * sre_ucs1_match, sre_ucs2_match, sre_ucs4_match I'm not sure about this patch. It's hard to get reliable benchmark results

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread STINNER Victor
STINNER Victor added the comment: > How about marking lookdict_unicode and lookdict_unicode_nodummy as hot? Ok, your benchmark results doens't look bad, so I marked the following functions as hot: - lookdict - lookdict_unicode - lookdict_unicode_nodummy - lookdict_split It's common to

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset cfc956f13ce2 by Victor Stinner in branch 'default': Issue #28618: Mark dict lookup functions as hot https://hg.python.org/cpython/rev/cfc956f13ce2 -- ___ Python tracker <rep...@bugs.python.org>

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread INADA Naoki
INADA Naoki added the comment: > so I suggest to run benchmarks and check that it has a non negligible effect > on benchmarks ;-) When added _Py_HOT_FUNCTION to lookdict_unicode, lookdict_unicode_nodummy and lookdict_split (I can't measure L1 miss via `perf stat -d` because I use EC2 for

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-15 Thread INADA Naoki
INADA Naoki added the comment: > I don't understand well the effect of the hot attribute I compared lookdict_unicode_nodummy assembly by `objdump -d dictobject.o`. It looks completely same. So I think only difference is placement. hot functions are in .text.hot section and linker groups

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-14 Thread STINNER Victor
STINNER Victor added the comment: INADA Naoki added the comment: > How about marking lookdict_unicode and lookdict_unicode_nodummy as hot? I don't understand well the effect of the hot attribute, so I suggest to run benchmarks and check that it has a non negligible effect on benchma

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-14 Thread INADA Naoki
INADA Naoki added the comment: How about marking lookdict_unicode and lookdict_unicode_nodummy as hot? -- nosy: +inada.naoki ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-12 Thread STINNER Victor
STINNER Victor added the comment: > Can we commit this to 3.6 too? I worked on patches to try to optimize json_loads and regex_effbot as well, but it's still unclear to me how the hot attribute works, and I'm not 100% sure that using the attribut explicitly does not introduce a performa

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-12 Thread Yury Selivanov
Yury Selivanov added the comment: Can we commit this to 3.6 too? -- nosy: +yselivanov ___ Python tracker ___

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-11 Thread STINNER Victor
unstable, but the difference is small, especially compared to the difference of call_method without the hot attribute. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-11 Thread STINNER Victor
STINNER Victor added the comment: > - json_loads: 71.4 us +- 0.8 us -> 72.9 us +- 1.4 us: 1.02x slower Hum, sadly this benchmark is still unstable after my change 59b91b4e9506 ("Mark hot functions using __attribute__((hot))", oops, I wanted to write Mark, not Make :-/).

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-11 Thread STINNER Victor
STINNER Victor added the comment: Final result on speed-python: haypo@speed-python$ python3 -m perf compare_to json_8nov/2016-11-10_15-39-default-8ebaa546a033.json 2016-11-11_02-13-default-59b91b4e9506.json -G Slower (12): - scimark_sparse_mat_mult: 8.71 ms +- 0.19 ms -> 9.28 ms +- 0.12 ms:

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-10 Thread STINNER Victor
STINNER Victor added the comment: I tried different patches and ran many quick & dirty benchmarks. I tried to use likely/unlikely macros (using GCC __builtin__expect): the effect is not significant on call_simple microbenchmark. I gave up on this part. __attribute__((hot)) on a few Py

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 59b91b4e9506 by Victor Stinner in branch 'default': Issue #28618: Make hot functions using __attribute__((hot)) https://hg.python.org/cpython/rev/59b91b4e9506 -- nosy: +python-dev ___ Python tracker <

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-08 Thread STINNER Victor
Changes by STINNER Victor : Added file: http://bugs.python.org/file45397/patch.json.gz ___ Python tracker ___

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-08 Thread STINNER Victor
ust __attribute__((hot)), it also optimizes branches for example. haypo@smithers$ python3 -m perf compare_to pgo.json.gz patch.json.gz -G --min-speed=5 Slower (56): - regex_effbot: 4.30 ms +- 0.26 ms -> 5.77 ms +- 0.33 ms: 1.34x slower - telco: 16.0 ms +- 1.1 ms -> 20.6 ms +- 0.4 ms: 1.29x sl

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-05 Thread STINNER Victor
STINNER Victor added the comment: Antoine Pitrou added the comment: >> Do you mean comparison between current Python with PGO and patched >> Python without PGO? > > Yes. Oh ok, sure. I will try to run these 2 benchmarks. >>> Ubuntu 14.04 is old, and I don't think this is something we should

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: Le 05/11/2016 à 16:37, STINNER Victor a écrit : > > Antoine Pitrou added the comment: >> Can you compare against a PGO build? > > Do you mean comparison between current Python with PGO and patched > Python without PGO? Yes. >> Ubuntu 14.04 is old, and I

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Moreover, I like the idea of getting a fast(er) Python even when no advanced optimization techniques like LTO or PGO is used. Seconded. -- nosy: +serhiy.storchaka ___ Python tracker

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-05 Thread STINNER Victor
STINNER Victor added the comment: Antoine Pitrou added the comment: > Can you compare against a PGO build? Do you mean comparison between current Python with PGO and patched Python without PGO? The hot attribute is ignored by GCC when PGO compilation is used. > Ubuntu 14.04 is old,

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you compare against a PGO build? Ubuntu 14.04 is old, and I don't think this is something we should worry about. Overall I think this manual approach is really the wrong way to look at it. Compilers can do better than us. -- nosy: +pitrou

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-05 Thread STINNER Victor
STINNER Victor added the comment: Oh, I forgot to mention that I compiled Python with "./configure -C". The purpose of the patch is to optimize Python when LTO and/or PGO compilation are not explicitly used. -- ___ Python tracker

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-05 Thread STINNER Victor
STINNER Victor added the comment: I ran benchmarks. Globally, it seems like the impact of the patch is positive. regex_v8 and call_simple are slower, but these benchmarks are microbenchmarks impacted by low level stuff like CPU L1 cache. Well, my patch was supposed to optimize CPython for

[issue28618] Decorate hot functions using __attribute__((hot)) to optimize Python

2016-11-04 Thread STINNER Victor
the exact location of functions. IMO the best solution to such compilation issue is to use PGO compilation. Problem: PGO doesn't work on Ubuntu 14.04, the OS used by speed-python (the server runining benchmarks for http://speed.python.org/). I propose to decorate manually the "hot"

[issue17642] IDLE add font resizing hot keys and wheel

2016-08-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: I intend to backport the simple list expansion to 3.5. Key or wheel patches will probably be 3.6 only. -- ___ Python tracker

[issue17642] IDLE add font resizing hot keys and wheel

2016-08-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset f478f9b88319 by Terry Jan Reedy in branch '2.7': Issue #17642: add larger font sizes for classroom projection. https://hg.python.org/cpython/rev/f478f9b88319 New changeset c9d59e6cc1e4 by Terry Jan Reedy in branch 'default': Issue #17642: add

[issue17642] IDLE add font resizing hot keys and wheel

2016-08-25 Thread Terry J. Reedy
to the values on the list. I will try to look at the patches before 3.6. Tests should also be added. -- assignee: roger.serwy -> terry.reedy stage: needs patch -> patch review title: IDLE add font resizing hot keys -> IDLE add font resizing hot keys and wheel versions: +P

EuroPython 2016: Hot Topics Call for Proposals is Open !

2016-06-06 Thread M.-A. Lemburg
We are happy to announce that we’ve opened our second Call for Proposals. This call is limited to hot topics and most recent developments in software and technology and will run until June 12. *** Proposal Submission Page *** https://ep2016.europython.eu/en/speakers

EuroPython 2016: Hot Topics Call for Proposals is Open !

2016-06-05 Thread M.-A. Lemburg
We are happy to announce that we’ve opened our second Call for Proposals. This call is limited to hot topics and most recent developments in software and technology and will run until June 12. *** Proposal Submission Page *** https://ep2016.europython.eu/en/speakers

EuroPython 2016: Extra Hot Topics - Call for Proposals

2016-04-30 Thread M.-A. Lemburg
The Program work group is happy to announce that there will be an extra Call for Proposals early in June. This call is limited to hot topics and most recent developments in software and technology. Why is there a second call ? Planning a big conference is a challenge

EuroPython 2016: Extra Hot Topics - Call for Proposals

2016-04-30 Thread M.-A. Lemburg
The Program work group is happy to announce that there will be an extra Call for Proposals early in June. This call is limited to hot topics and most recent developments in software and technology. Why is there a second call ? Planning a big conference is a challenge

HOT REQ Closable Position :Websphere message broker at Edison, NJ

2016-04-25 Thread sourav524 . itscient
Hello Associates, Please go through the below job description and let me know your interest. Please revert me: soura...@itscient.com or sourav524.itsci...@gmail.com. Position: Websphere Message Broker Location:Edison , NJ Duration: 6+ MONTHS Requisition Details: Engineer with experience on

Re: Creating a hot vector (numpy)

2016-04-18 Thread Paulo da Silva
Às 05:05 de 18-04-2016, Reto Brunner escreveu: > Hi, > It is called broadcasting an array, have a look here: > http://docs.scipy.org/doc/numpy-1.10.1/user/basics.broadcasting.html > So, there are two broadcasts here. OK. Thanks. -- https://mail.python.org/mailman/listinfo/python-list

Re: Creating a hot vector (numpy)

2016-04-17 Thread Reto Brunner
Hi, It is called broadcasting an array, have a look here: http://docs.scipy.org/doc/numpy-1.10.1/user/basics.broadcasting.html Greetings, Reto On Mon, Apr 18, 2016, 02:54 Paulo da Silva <p_s_d_a_s_i_l_v_a...@netcabo.pt> wrote: > Hi all. > > I have seen this "trick&quo

Creating a hot vector (numpy)

2016-04-17 Thread Paulo da Silva
Hi all. I have seen this "trick" to create a hot vector. In [45]: x Out[45]: array([0, 1]) In [46]: y Out[46]: array([1, 1, 1, 0, 0, 1, 0, 0], dtype=uint8) In [47]: y[:,None] Out[47]: array([[1], [1], [1], [0], [0], [1], [0], [0]], d

[issue17642] IDLE add font resizing hot keys

2015-08-06 Thread Mark Roseman
Changes by Mark Roseman m...@markroseman.com: -- nosy: +markroseman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___ ___ Python-bugs-list

[issue17642] IDLE add font resizing hot keys

2014-09-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: #21933 added font resizing hotkeys to turtle demo: Control/Command minus, underscore, equal, minus. The OS difference was handled by defining the prefix for the system. shortcut = 'Command' if darwin else 'Control' widget.bind_all('%s-minus' %

NOW Watch Hot Sexy Star Aishwarya rai Bathing Videos In All Angles

2013-12-28 Thread vbfvf6
Sexys -- https://mail.python.org/mailman/listinfo/python-list

[issue17787] Optimize pickling function dispatch in hot loops.

2013-11-24 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: The patch is too complicated for too little. -- resolution: - rejected stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17787

[issue17642] IDLE add font resizing hot keys

2013-07-12 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- assignee: - roger.serwy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___ ___

[issue17642] IDLE add font resizing hot keys

2013-05-13 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have merged the two patches: Now it queries the font size as I did in the original patch, and it also stores the position of the cursor based on Abhishek Kumar's modification of ZoomFont.py. -- Added file:

[issue17642] IDLE add font resizing hot keys

2013-05-13 Thread Roger Serwy
Roger Serwy added the comment: @Abhishek: I'd rather not require extensions to have a new method for resetting font sizes. Instead, a virtual event can be bound to a callback by the extension if it needs to know about a font change. @Alejandro: It looks like there's a bug in ZoomFont.py where

[issue17642] IDLE add font resizing hot keys

2013-04-30 Thread Abhishek Kumar
Abhishek Kumar added the comment: Thanks Roger, for the feedback especially the licence part. I have least idea about licences but will take care in future. One question: Is it right to change IdleConf on Ctrl+ and Ctrl- ? I mean to change font for all open windows? It happens with most text

[issue17642] IDLE add font resizing hot keys

2013-04-29 Thread Alejandro Rodas
Changes by Alejandro Rodas alexrd...@gmail.com: Added file: http://bugs.python.org/file30074/ZoomInOut.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___

[issue17642] IDLE add font resizing hot keys

2013-04-29 Thread Roger Serwy
Roger Serwy added the comment: Abhishek, Alejandro, welcome to IDLE development! If you can, please sign a contributor agreement. We have two patches to create this enhancement, both are good. I suggest that we figure out how to merge the solutions. The zoom-out binding should also include

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have made a patch to zoom in and out with Control-plus and Control-minus events, respectively. I'll upload it soon since the test suite is giving me an error in test_multiprocessing, even before writing the patch. I have taken a look at ZoomFont.py of

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Abhishek Kumar
Abhishek Kumar added the comment: I have submitted a patch that is working fine on Windows and on Ubuntu. I have used ZoomFont.py of IdleX. On pressing Ctrl+ or Ctrl- it changes the user configuration and updates the font of all open windows as there is a common user configuration for all

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: I have uploaded my patch as well, it doesn't make use of tkfont (just vanilla Tkinter methods) and it works both in Python 2.7 and 3.4 without the need of any import. I think the main difference with Abhishek Kumar's version is that mine does not use

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Changes by Alejandro Rodas alexrd...@gmail.com: Removed file: http://bugs.python.org/file30053/ZoomInOut.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___

[issue17642] IDLE add font resizing hot keys

2013-04-28 Thread Alejandro Rodas
Alejandro Rodas added the comment: Sorry, I submitted a patch which only works on Windows. This one has been tested on Ubuntu too. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___

[issue17787] Optimize pickling function dispatch in hot loops.

2013-04-20 Thread Alexandre Vassalotti
as a hot spot. If the latter, we need this because the patch allow save(), which is where the memo was fetched, to be skipped. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17787

[issue17787] Optimize pickling function dispatch in hot loops.

2013-04-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the explanation. I guess I don't like the code duplication that this patch adds. Perhaps a macro hiding the memo_get code blocks? Also, adding your explanation as a comment would be nice too. -- ___

[issue17642] IDLE add font resizing hot keys

2013-04-19 Thread Todd Rovito
Changes by Todd Rovito rovit...@gmail.com: -- nosy: +Todd.Rovito ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___ ___ Python-bugs-list

[issue17787] Optimize pickling function dispatch in hot loops.

2013-04-18 Thread Alexandre Vassalotti
function lookups in hot loops. - Optimize pickling function dispatch in hot loops. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17787 ___ ___ Python-bugs-list

[issue17787] Optimize pickling function dispatch in hot loops.

2013-04-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Why did you add all those calls to PyMemoTable_Get? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17787 ___

[issue17642] IDLE add font resizing hot keys

2013-04-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: On Windows, cntl-+. cntl-- Could we use the tk event system by defining font change events and event handlers? -- nosy: +terry.reedy versions: -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue17642] IDLE add font resizing hot keys

2013-04-06 Thread Raymond Hettinger
New submission from Raymond Hettinger: Add the standard hot keys for resizing fonts (i.e. on a Mac, CMD-plus and CMD-minus). -- components: IDLE keywords: easy messages: 186118 nosy: rhettinger priority: normal severity: normal stage: needs patch status: open title: IDLE add font

[issue17642] IDLE add font resizing hot keys

2013-04-06 Thread Edmond Burnett
Changes by Edmond Burnett eburn...@gmail.com: -- nosy: +edmond.burnett ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___ ___

[issue17642] IDLE add font resizing hot keys

2013-04-06 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17642 ___ ___

[issue17642] IDLE add font resizing hot keys

2013-04-06 Thread Roger Serwy
Roger Serwy added the comment: IdleX provides this with the ZoomFont.py extension. (See http://idlex.sourceforge.net/extensions.html#Misc) It is useful for showing code on a projector so that students can easily read the screen. The implementation in ZoomFont.py does not change the font size

Hot Requirement Business Objects Developer

2012-12-17 Thread Job Alert
Hot Requirement Business Objects Developer Apply here http://www.hot-skills.com/display-job/57491/Business-Objects-Developer.html -- http://mail.python.org/mailman/listinfo/python-list

Hot Requirement Business Objects Developer

2012-12-17 Thread Job Alert
Hot Requirement Business Objects Developer Apply here http://www.hot-skills.com/display-job/57491/Business-Objects-Developer.html -- http://mail.python.org/mailman/listinfo/python-list

[Click the star to watch this topic] HOT LINKS FOR YOUTH ONLY

2012-04-11 Thread e kartheeka
[Click the star to watch this topic]HOT LINKS FOR YOUTH ONLY -- http://mail.python.org/mailman/listinfo/python-list

Hot Bollwood Actresses and Hot Football Players of Spain Soccer Team

2011-08-26 Thread Ashraf Ali
Hot Bollywood Actresses and Hot Football Players of Spain Nation Soccer Team. http://bollywoodactresseshotdresses.blogspot.com/ http://spainnationalfootballteamwallpapers.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Stop quoting spam [was Re: Hot Girls ...]

2011-08-20 Thread Alec Taylor
On Sat, Aug 20, 2011 at 9:24 AM, Albert W. Hopkins mar...@letterboxes.org wrote: On Friday, August 19 at 17:12 (-0400), Matty Sarro said: If you're that offended then spend the cycles fixing the damn list so it stops having so much spam. You realize spam comes in almost constantly,

Re: Stop quoting spam [was Re: Hot Girls ...]

2011-08-20 Thread D'Arcy J.M. Cain
On Fri, 19 Aug 2011 17:10:49 -0400 Rodrick Brown rodrick.br...@gmail.com wrote: It's not the end of the world calm down I thought it was quite funny for a friday joke! The first message might have been funny (if you are twelve) but the rest were annoying and insulting. -- D'Arcy J.M. Cain

Re: Hot Girls are Looking for Sex

2011-08-20 Thread hackingKK
Well, they might be indented in the right places but i don't know if loops, conditions, functions, if they all happen or not. :) Happy hacking. Krishnakant, On 20/08/11 01:47, Matty Sarro wrote: That's great - but do they program in python? On Fri, Aug 19, 2011 at 2:38 PM, Sajjad

Re: Stop quoting spam [was Re: Hot Girls ...]

2011-08-20 Thread David Robinow
On Sat, Aug 20, 2011 at 4:16 AM, Alec Taylor alec.tayl...@gmail.com wrote: ... I found said joke rather funny :P Perhaps, as a retired amateur comedian, my standards are too high, but I don't think adding a smilie to a stupid post suddenly turns it into a joke. Nevertheless, the quality of the

Re: Stop quoting spam [was Re: Hot Girls ...]

2011-08-20 Thread D'Arcy J.M. Cain
On Sat, 20 Aug 2011 08:17:32 -0400 David Robinow drobi...@gmail.com wrote: I found said joke rather funny :P Perhaps, as a retired amateur comedian, my standards are too high, How does one retire from amateur status? Do you suddenly start charging for telling jokes? :-) but I don't think

Really, stop repeating spam! (Was: Hot Girls...)

2011-08-20 Thread D'Arcy J.M. Cain
On Sat, 20 Aug 2011 15:16:08 +0530 hackingKK hackin...@gmail.com wrote: Well, they might be indented in the right places but i don't know if loops, conditions, functions, if they all happen or not. :) [Entire spam deleted AGAIN] Good grief! Haven't you seen all the followups to that posting

Re: Really, stop repeating spam! (Was: Hot Girls...)

2011-08-20 Thread Chris Angelico
On Sat, Aug 20, 2011 at 3:57 PM, D'Arcy J.M. Cain da...@druid.net wrote: Wait, I get it.  The spammer, Matty and you are all on gmail.  You are all the same person, aren't you? Gmail is all one person now? That would explain why I keep seeing things I agree with. I had no idea there were so

Re: Hot Girls are Looking for Sex

2011-08-19 Thread Matty Sarro
That's great - but do they program in python? On Fri, Aug 19, 2011 at 2:38 PM, Sajjad Ahmad sajjad.ahmad...@gmail.com wrote: See All details on http://hotelandtourism9.blogspot.com/2011/08/indian-hotels-wall-st-effect.html . See All details on

Re: Hot Girls are Looking for Sex

2011-08-19 Thread Philip Semanchuk
On Aug 19, 2011, at 4:17 PM, Matty Sarro wrote: That's great - but do they program in python? Please don't repost URLs sent by a spammer. Only Google truly knows how its algorithm works, but the general consensus is that the more times Google sees a link repeated, the more credibility the

Stop quoting spam [was Re: Hot Girls ...]

2011-08-19 Thread Steven D'Aprano
Matty Sarro wrote: That's great - but do they program in python? Thanks for that, I didn't see the spam the first time, but thanks to your joke I saw it now! I really appreciate that, because I LOVE to have spam sent to me, including all the URLs. An extra bonus is that when the posting is

Re: Stop quoting spam [was Re: Hot Girls ...]

2011-08-19 Thread Rodrick Brown
It's not the end of the world calm down I thought it was quite funny for a friday joke! Sent from my iPhone On Aug 19, 2011, at 4:43 PM, Steven D'Aprano steve+comp.lang.pyt...@pearwood.info wrote: Matty Sarro wrote: That's great - but do they program in python? Thanks for that, I

  1   2   3   >