[issue12499] textwrap.wrap: add control for fonts with different character widths

2021-09-03 Thread Éric Araujo
Éric Araujo added the comment: A PR was opened for this. `text_len` is used as param/attribute name. -- versions: +Python 3.11 -Python 3.5 ___ Python tracker ___

[issue12499] textwrap.wrap: add control for fonts with different character widths

2021-09-03 Thread Tobias Bengfort
Change by Tobias Bengfort : -- pull_requests: +26574 pull_request: https://github.com/python/cpython/pull/28136 ___ Python tracker ___

[issue12499] textwrap.wrap: add control for fonts with different character widths

2021-09-03 Thread Tobias Bengfort
Change by Tobias Bengfort : -- nosy: +xi2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2021-01-01 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2021-01-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset e3a9adba329681b1b73b7223515e71e94fc35e12 by Serhiy Storchaka in branch '3.8': [3.8] bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-23968) (GH-24026)

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2020-12-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +22866 pull_request: https://github.com/python/cpython/pull/24026 ___ Python tracker ___

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2020-12-29 Thread miss-islington
miss-islington added the comment: New changeset 578caafabe1de652a8f31dbeb8cc660e1ed725eb by Miss Islington (bot) in branch '3.9': bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-23968) https://github.com/python/cpython/commit/578caafabe1de652a8f31dbeb8cc660e1ed725eb

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2020-12-29 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 1.0 -> 2.0 pull_requests: +22833 pull_request: https://github.com/python/cpython/pull/23991 ___ Python tracker

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2020-12-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 1df56bc0597a051c13d53514e120e9b6764185f8 by Serhiy Storchaka in branch 'master': bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-23968) https://github.com/python/cpython/commit/1df56bc0597a051c13d53514e120e9b6764185f8

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2020-12-27 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +22813 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23968 ___ Python tracker

[issue42759] Take into acount a Tcl interpreter when compare variables and fonts

2020-12-27 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Currently instances of tkinter.Variable and tkinter.font.Font are considered equal when they have the same name even if they belong to different Tcl interpreters. But Tcl interpreters are isolated, and variables and fonts in different interpreters refer

[issue42122] macOS complains about how fonts are accessed

2020-12-19 Thread Christopher A. Chavez
Christopher A. Chavez added the comment: This was already reported to Tcl/Tk: https://core.tcl-lang.org/tk/info/855049e799 . They determined it was caused by a bug in macOS 10.15.1. There are workarounds implemented for this in Tcl/Tk 8.6.10 and the upcoming 8.6.11 releases. --

[issue42122] macOS complains about how fonts are accessed

2020-11-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm getting a similar warning on a macOS 11 box: 0:06:29 load avg: 1.58 [184/424/1] test_idle 2020-11-07 10:43:37.878 Python[97785:3275468] CoreText note: Client requested name ".applesystemuifontmonospaced", it will get Times-Roman rather than the

[issue42122] macOS complains about how fonts are accessed

2020-10-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: I'm going to mark this as closed, not a bug. If you're not seeing the same result, it is almost certainly an issue with my local build. -- resolution: -> not a bug stage: -> resolved status: open -> closed

[issue42122] macOS complains about how fonts are accessed

2020-10-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: Could you check "/tmp/py310/bin/python3 -m test.pythoninfo | grep -i tk". If that says your using Tk 8.5 you're almost certainly using the system version. You could also check _tkinter itself: otool -vL

[issue42122] macOS complains about how fonts are accessed

2020-10-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: I'm only Catalina 10.15.7 and am using a local build constructed with: ./configure --with-openssl=$(brew --prefix openssl) && make Perhaps that is using the system Tk and we don't need to worry about this. --

[issue42122] macOS complains about how fonts are accessed

2020-10-23 Thread Ronald Oussoren
e problems. And for completeness sake: I don't get these warnings, neither in IDLE nor when using your scriptlet (adjusted to try all fonts in "frames'). -- ___ Python tracker <https://bugs.pyt

[issue42122] macOS complains about how fonts are accessed

2020-10-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: python.org 3.10 mac is still using 8.6.8. It is on IDLE/Python => About -- ___ Python tracker ___

[issue42122] macOS complains about how fonts are accessed

2020-10-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: Raymond, - What version of macOS are you on? - How did you install python 3.10? Did you use the python.org installer? - What version of Tk is used? (This can be found in the output of `python3.9 -m test.pythoninfo`) --

[issue42122] macOS complains about how fonts are accessed

2020-10-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: On my Airbook, 'python310' was not found; 'python3.10' worked. -- ___ Python tracker ___ ___

[issue42122] macOS complains about how fonts are accessed

2020-10-22 Thread Terry J. Reedy
: terry.reedy -> components: +Tkinter, macOS -IDLE nosy: +ned.deily, ronaldoussoren title: IDLE complains about how fonts are accessed -> macOS complains about how fonts are accessed ___ Python tracker <https://bugs.python.org/i

[issue42122] IDLE complains about how fonts are accessed

2020-10-22 Thread Raymond Hettinger
s: IDLE messages: 379382 nosy: rhettinger, terry.reedy priority: normal severity: normal status: open title: IDLE complains about how fonts are accessed versions: Python 3.10 ___ Python tracker <https://bugs.python.org/issue42122> ___

[issue40675] Add missing mimetypes for fonts

2020-05-18 Thread Sahil
New submission from Sahil : Currently guess_type method of mimetype fails to identity fonts from their extensions. -- components: Library (Lib) messages: 369312 nosy: sahil.prajapati priority: normal pull_requests: 19498 severity: normal status: open title: Add missing mimetypes

[issue39600] idle_test: test_fontlist_key() fails if two fonts have the same name

2020-02-10 Thread STINNER Victor
ey() fails if two fonts have the same name versions: Python 3.9 ___ Python tracker <https://bugs.python.org/issue39600> ___ ___ Python-bugs-list mailing list Uns

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-10-11 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +3937 stage: needs patch -> patch review ___ Python tracker ___

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I decided to rearrange page #24776 before changing sample #13802. -- dependencies: +IDLE: Improve config dialog font change user interface ___ Python tracker

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-20 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: test needed -> resolved status: open -> closed ___ Python tracker ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am closing this as basically complete. I opened #30981 to add and perhaps complete font page tests. -- ___ Python tracker

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Serhiy, is there one non-controversial pan-slavic way to write 'Cyrillic' in > Cyrillic? No. Even in very close east-slavic languages it is written differently: Ukrainian "Кирилиця", Russian "Кириллица", Belarusian "Кірыліца". --

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: I made this issue a dependency of #24776, which is about redoing the whole font page. The fontchooser has good, inappropriate for IDLE, and bad points. I consider it an alternate mockup proposal for the font page. For this issue: displaying each font name

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 42abf7f9737f78a5da311a42945d781dfcd6c6c0 by terryjreedy in branch '3.6': [3.6] bpo-30870: IDLE: Add configdialog fontlist selection unittest (GH-2666) (#2701) https://github.com/python/cpython/commit/42abf7f9737f78a5da311a42945d781dfcd6c6c0

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-13 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2767 ___ Python tracker ___ ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 9b622fb90331f259894e6edb29b5c64b9366491a by terryjreedy (Louie Lu) in branch 'master': bpo-30870: IDLE: Add configdialog fontlist selection unittest (#2666) https://github.com/python/cpython/commit/9b622fb90331f259894e6edb29b5c64b9366491a

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR2666 adds 4% test coverage. 40% left to go. I expect some tests will cover more lines with less code. I am working on a test for set_font_sample. -- ___ Python tracker

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Serhiy: question about tkinter.wantobjects. ConfigDialog sets the font options of label font_sample and text text_highlight_sample with a font tuple such as font=('courier', 12, ''). In the test, I expected retrieval of the font option with

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: The new gui tests passed on Travis (linux), which I strongly suspect does not run gui tests. The generate key test failed on Appveyor (Windows), which means is does run gui tests. It also failed on my machine: generate key release did not work. The

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-11 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2732 ___ Python tracker ___ ___ Python-bugs-list

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-11 Thread Louie Lu
Louie Lu added the comment: configdialog misuse `self.withdraw` at init, it should be `self.wm_withdraw`, #30900 fix this problem. After that, it should be a success to use event_generate in configdialog unittest with no `self.withdraw`. -- ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-11 Thread Louie Lu
Louie Lu added the comment: It seem setUpModule will smash out the test, I've add a trust-will-work test inside the test_configdialog.py: class Test(unittest.TestCase): def setUp(self): self.root = tkinter.Tk() def test_test(self): self.root.bind('', lambda x:

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-11 Thread Louie Lu
Louie Lu added the comment: It just get wierd, I can't do event_generate with Terry, too. Attach poc.py that should print out a 'testing', but it didn't. -- Added file: http://bugs.python.org/file47006/tests.py ___ Python tracker

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 953e527763f5af293668135acdf5f0a20c3f6f4f by terryjreedy in branch '3.6': [3.6] bpo-30870: IDLE -- fix logic error in eae2537. (GH-2660) (#2661) https://github.com/python/cpython/commit/953e527763f5af293668135acdf5f0a20c3f6f4f --

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2726 ___ Python tracker ___ ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 5b62b35e6fcba488da2f809965a5f349a4170b02 by terryjreedy in branch 'master': bpo-30870: IDLE -- fix logic error in eae2537. (#2660) https://github.com/python/cpython/commit/5b62b35e6fcba488da2f809965a5f349a4170b02 --

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe I read somewhere (SO?) that root.withdraw sometimes affects the effectiveness of event_generate. I will try de-iconifying for just this. -- ___ Python tracker

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: My manual test procedure was faulty. Without a unit test, I should have asked for another person to verify. -- ___ Python tracker

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2725 ___ Python tracker ___ ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I don't know how to make the testing code working. -- ___ Python tracker ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It isn't my. It was added by Guilherme in r69050. I'll take a look at code tomorrow. -- ___ Python tracker ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Serhiy, I tried tkinter.test.support.simulate_mouse_click to test this patch but it seems not to work. Code at end of previous message. Any idea on how to fix? -- nosy: +serhiy.storchaka stage: patch review -> test needed

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: We already know that setting StringVar font_name triggers a change to changes. We also know that manually clicking or Up or Down triggers <>, which sets font_name and redraws the box. The challenge is to do something that will trigger the virtual event.

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 7ab334233394070a25344d481c8de1402fa12b29 by terryjreedy in branch '3.6': [3.6] bpo-30870: IDLE: Change sample font when select by key-up/down (GH-2617) (#2640) https://github.com/python/cpython/commit/7ab334233394070a25344d481c8de1402fa12b29

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-09 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2705 ___ Python tracker ___ ___

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: If one scrolls with the mousewheel or scrollbar, the selection does not change and the example should not change, and I presume it will not with the patch. If one presses up or down, the selection does change, just as if one clicked, and the example should

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset bb2bae84d6b29f991b757b46430c3c15c60059e9 by terryjreedy (Louie Lu) in branch 'master': bpo-30870: IDLE: Change sample font when select by key-up/down (#2617) https://github.com/python/cpython/commit/bb2bae84d6b29f991b757b46430c3c15c60059e9

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> patch review type: -> enhancement versions: +Python 3.6 ___ Python tracker ___

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: On other hand, we can use the standard font chooser dialog. But it doesn't allow to configure the sample text at all (at least on X Window). Terry, try please the following commands on Windows: import tkinter root = tkinter.Tk() root.tk.call('tk',

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I don't think that it is worth to include in Python distribution examples for a hundred of languages. If there are some system-wide collections of examples we can use them, but this should be platform specific and not always available. --

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-07 Thread Louie Lu
Louie Lu added the comment: Serhiy: Or would it be to detect the user language environment, and come up with user language example sentence? What I remember that Windows font preview will change the sentence in the different language. -- ___ Python

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are many different alphabets in the world. Why Chines but not Cyrillic or Devanagari? An example that includes all scripts would be too large (and likely most characters would not be rendered correctly with an arbitrary font). I suggest just make the

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-07 Thread Louie Lu
Louie Lu added the comment: Add the string with pangram and chinese, now sample text shows: AaBbCcDdEe FfGgHhIiJjK 1234567890 #:+=(){}[] The quick brown fox jumps over the lazy dog. [1] 南去經三國,東來過五湖 [2] -- [1]:

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-07 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2683 ___ Python tracker ___ ___ Python-bugs-list

[issue30870] IDLE: configdialog/fonts: change font when select by key up/down

2017-07-07 Thread Louie Lu
: normal status: open title: IDLE: configdialog/fonts: change font when select by key up/down versions: Python 3.7 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-07-07 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2682 ___ Python tracker ___ ___ Python-bugs-list

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2017-06-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy stage: needs patch -> patch review versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker

[issue24776] Improve Fonts/Tabs UX for IDLE

2015-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: I agree. Cntl/Cmd +/- font sizing works in turtledemo within sensible limits. The code could be copied. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24776

[issue24776] Improve Fonts/Tabs UX for IDLE

2015-08-17 Thread Mark Roseman
Mark Roseman added the comment: Agree about the font resizing menu items/shortcuts... your original #17642 remains open for this -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24776 ___

[issue24776] Improve Fonts/Tabs UX for IDLE

2015-08-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: FWIW, I would also like a pair of hotkeys, Cmd + and Cmd - to increase and decrease the font (this would greatly improve usability for font size changes). There is good precedent for this in other editors and terminal programs. --

[issue24776] Improve Fonts/Tabs UX for IDLE

2015-08-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: The side-by-side part I obviously like, but I think we need to keep 'Base Editor Font' since this and only this is affected by the selection. I think there should be an option to increase the 'other' font used for everything else. --

[issue24776] Improve Fonts/Tabs UX for IDLE

2015-08-02 Thread Mark Roseman
Mark Roseman added the comment: What do you think of the layout in cfg_font_layout.png? (before/after) -- Added file: http://bugs.python.org/file40105/cfg_font_layout.png ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24776

[issue24776] Improve Fonts/Tabs UX for IDLE

2015-08-01 Thread Raymond Hettinger
New submission from Raymond Hettinger: A recurring issue with students using IDLE is the user interface for the fonts and tabs preference settings. * The default setting of 4 space tabs is a good default, but the giant slider cries out to be moved (usually when people are intending

[issue24776] Improve Fonts/Tabs UX for IDLE

2015-08-01 Thread Terry J. Reedy
expands horizontally with big fonts). * Put indent box across top with unobtrusive spinbox or pulldown box to right. * For font names, use the same sort of listbox as used with completions, where one can type initial chars of name in entry box and selection bar moves down to first entry that matches

[issue12499] textwrap.wrap: add control for fonts with different character widths

2014-11-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Both approaches can be combined. It could be a regular overridable method, and it could be overridded for an instance if corresponding argument is specified. See the default method and parameter of JSON encoder. I slightly hesitate about the name. Is

[issue22068] tkinter: avoid reference loops with Variables and Fonts

2014-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0b79c702abda by Serhiy Storchaka in branch '2.7': Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter. http://hg.python.org/cpython/rev/0b79c702abda New changeset 873002eb8087 by Serhiy Storchaka in branch '3.4': Issue #22068

[issue22068] tkinter: avoid reference loops with Variables and Fonts

2014-08-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22068 ___

[issue22068] tkinter: avoid reference loops with Variables and Fonts

2014-08-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If there are no objections I'll commit the patch. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22068 ___

[issue22068] tkinter: avoid reference loops with Variables and Fonts

2014-07-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: -R no longer finds leaks with current Idle tests. There might still be some in modules not tested. -- components: -IDLE, Tests title: test_idle leaks uncollectable objects - tkinter: avoid reference loops with Variables and Fonts

Re: Missing py2exe, needed 4 a gcode generator to engrave text in fancy ttf fonts in steel

2013-09-20 Thread Chris Angelico
On Fri, Sep 20, 2013 at 3:14 PM, Gene Heskett ghesk...@wdtv.com wrote: Can someone take a look at http://www.scorchworks.com/Fengrave/fengrave_setup.html#linux_fengrave Then this is what I get: gene@coyote:~/src/F-Engrave-1.22_src$ python py2exe_setup.py Traceback (most recent call last):

Re: Missing py2exe, needed 4 a gcode generator to engrave text in fancy ttf fonts in steel

2013-09-20 Thread Gene Heskett
. The setup file itself I find, shouldn't have been included in the zip without a README.linux that says to skip it. The shipped fengrave-122.py actually runs but is not finding any fonts. There s/b quite a few installed since I have used TrueTypeTracer extensively before. But I may have my machines

Missing py2exe, needed 4 a gcode generator to engrave text in fancy ttf fonts in steel

2013-09-19 Thread Gene Heskett
Greetings; Since the missing module is intended for making python stuff run standalone on a winderz box, I've no clue why it should be needed to build and make F- Engrave run on my 10.04.4 LTS box, but it insists on loading it in the setup.py script that starts it the first time. FWIW,

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2013-06-15 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.4 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13802 ___ ___

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2013-03-25 Thread Todd Rovito
Changes by Todd Rovito rovit...@gmail.com: -- nosy: +roger.serwy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13802 ___ ___ Python-bugs-list

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2013-03-23 Thread Francisco Martín Brugué
Francisco Martín Brugué added the comment: Hi Terry, just take/put away some ... (they're not in a special order nor preference, just some that could 'see' in the browser). -- keywords: +patch nosy: +francismb Added file: http://bugs.python.org/file29553/issue13802.patch

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

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

Re: Fonts Tinker

2013-01-30 Thread Angel
THis one workd fine: .option_add('*Font', Heveltica 14) Thanks! Á. -- http://mail.python.org/mailman/listinfo/python-list

Re: [SPAM] Fonts Tinker

2013-01-28 Thread Łukasz Posadowski
Dnia 2013-01-25, pią o godzinie 20:41 -0800, Angel pisze: but the real displayed fonts in the window are smaller (default size of 12, maybe). Am I missing something? Thanks in advance, A. Did you tried this by simple: --- root = Tk() root.option_add('*Font

Re: Fonts Tinker

2013-01-27 Thread Rick Johnson
On Friday, January 25, 2013 10:41:36 PM UTC-6, Angel wrote: I am changing the default font for a Tkinter application: class FuelControl(Tkinter.Frame): def __init__(self,master): self.version='0.02' self.font=tkFont.Font(family=Helvetica,size=18)

Fonts Tinker

2013-01-25 Thread Angel
name:',font=self.font).grid(row=3,column=0) ... The self.font stays with the right value: {'family': 'Nimbus Sans L', 'weight': 'normal', 'slant': 'roman', 'overstrike': 0, 'underline': 0, 'size': 18} but the real displayed fonts in the window are smaller (default size of 12, maybe). Am I

Re: Fonts Tinker

2013-01-25 Thread Angel
Dammm it should be Tkinter for subject..:D -- http://mail.python.org/mailman/listinfo/python-list

Re: Fonts Tinker

2013-01-25 Thread Paul
class FontSpec: Wrapper for something like 'Arial 10 bold #red' tkf = None # Tk Font spec = # specification tkspec = # specification for Tk family = None size = 0 color = black weight = normal slant = roman underline = 0 overstrike = 0

[issue14876] IDLE highlighting theme does not preview with user-selected fonts

2012-05-27 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- assignee: - terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14876 ___ ___

[issue14876] IDLE highlighting theme does not preview with user-selected fonts

2012-05-26 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset e443cce4f183 by Terry Jan Reedy in branch '3.2': Issue #14876: Use user-selected font for highlight configuration. http://hg.python.org/cpython/rev/e443cce4f183 New changeset a9e9045d5546 by Terry Jan Reedy in

[issue14876] IDLE highlighting theme does not preview with user-selected fonts

2012-05-26 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Patch looks good and seems to work fine. I tested before and after the patch on my working copy of 3.3.0a3 with my selected font. Highlight config was default courier before and selected font after. I agree with change and applied. --

Re: Korean fonts on Python 2.6 (MacOsX)

2012-05-24 Thread Ulrich Eckhardt
Am 23.05.2012 11:30, schrieb 20_feet_tall: I have a problem with the visualization of korean fonts on Python. When I try to type in the characters only squares come out. I have tried to install the CJK codec, the hangul 1.0 codec but still no result. What exactly do you mean

Korean fonts on Python 2.6 (MacOsX)

2012-05-23 Thread 20_feet_tall
I have a problem with the visualization of korean fonts on Python. When I try to type in the characters only squares come out. I have tried to install the CJK codec, the hangul 1.0 codec but still no result. Hoep someone can help me out. -- http://mail.python.org/mailman/listinfo/python-list

[issue14876] IDLE highlighting theme does not preview with user-selected fonts

2012-05-22 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: That sounds like a reasonable enhancement. Attached is a patch against 3.3.0a3 to change the font of highlighting sample to match the font selected in the font tab. The actual highlighting text sample has 11 line of text which is why the

[issue14876] IDLE highlighting theme does not preview with user-selected fonts

2012-05-21 Thread Andrew McChildren
with user-selected fonts type: enhancement versions: Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14876 ___ ___ Python-bugs-list mailing list Unsubscribe

[issue13802] IDLE Prefernces/Fonts: use multiple alphabets in examples

2012-01-16 Thread Terry J. Reedy
New submission from Terry J. Reedy tjre...@udel.edu: In the Fonts/Tabs tab of the IDLE Preference dialog, the large box for examples of the font selected shows a small square of ascii chars. I think the box should also show 1 char for each of several alphabets so the consequence of choosing

[issue12499] textwrap.wrap: add control for fonts with different character widths

2011-07-05 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: About the patch: the function should not be passed to the constructor, it could be a regular method that can be overridden in subclasses. -- nosy: +amaury.forgeotdarc ___ Python tracker

[issue12499] textwrap.wrap: add control for fonts with different character widths

2011-07-05 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Amaury, do you think it’s more common to subclass TextWrapper than just instantiate it? I find the proposed API (an argument to __init__) very intuitive. -- keywords: +needs review nosy: +eric.araujo, georg.brandl stage: - patch

[issue12499] textwrap.wrap: add control for fonts with different character widths

2011-07-05 Thread Tyler Romeo
Tyler Romeo tylerro...@gmail.com added the comment: Normally I would have just added it as a function to be overloaded, but because of the nature of the textwrap.wrap function (all kwargs are passed to the TextWrapper constructor) I thought it made a lot more sense to keep it as an argument

  1   2   >