[issue213934] string * int silently returns wrong answer for certain ints

2022-04-10 Thread admin
Change by admin : ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue213934] string * int silently returns wrong answer for certain ints

2022-04-10 Thread admin
Change by admin : -- github: None -> 33080 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43199] FAQ about goto lacks answer

2021-03-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.6, Python 3.7 ___ Python tracker ___

[issue43199] FAQ about goto lacks answer

2021-03-14 Thread miss-islington
miss-islington added the comment: New changeset 59f2741c4a1a53d4122d2cb512337f4b88619de9 by Miss Islington (bot) in branch '3.8': bpo-43199: Briefly explain why no goto (GH-24852) https://github.com/python/cpython/commit/59f2741c4a1a53d4122d2cb512337f4b88619de9 --

[issue43199] FAQ about goto lacks answer

2021-03-14 Thread miss-islington
miss-islington added the comment: New changeset c3f0c3a9c7aa213a463c5928d33fd4049060 by Miss Islington (bot) in branch '3.9': bpo-43199: Briefly explain why no goto (GH-24852) https://github.com/python/cpython/commit/c3f0c3a9c7aa213a463c5928d33fd4049060 --

[issue43199] FAQ about goto lacks answer

2021-03-14 Thread miss-islington
Change by miss-islington : -- pull_requests: +23623 pull_request: https://github.com/python/cpython/pull/24863 ___ Python tracker ___

[issue43199] FAQ about goto lacks answer

2021-03-14 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +23622 pull_request: https://github.com/python/cpython/pull/24862 ___ Python tracker

[issue43199] FAQ about goto lacks answer

2021-03-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 5e29021a5eb10baa9147fd977cab82fa3f652bf0 by Terry Jan Reedy in branch 'master': bpo-43199: Briefly explain why no goto (GH-24852) https://github.com/python/cpython/commit/5e29021a5eb10baa9147fd977cab82fa3f652bf0 --

[issue43199] FAQ about goto lacks answer

2021-03-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch nosy: +terry.reedy nosy_count: 2.0 -> 3.0 pull_requests: +23613 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24852 ___ Python tracker

[issue31427] Add an answer to the Windows FAQ about installing the Universal C Runtime

2021-03-12 Thread Eryk Sun
Change by Eryk Sun : -- title: Proposed addition to Windows FAQ -> Add an answer to the Windows FAQ about installing the Universal C Runtime versions: +Python 3.10, Python 3.8, Python 3.9 -Python 3.5, Python 3.6, Python 3.7 ___ Python trac

[issue43199] FAQ about goto lacks answer

2021-02-11 Thread Mikael Lövqvist
New submission from Mikael Lövqvist : In the FAQ there is a question "Why is there no goto?" but the answer addresses how to use exceptions to do something akin to goto. I think the documentation could benefit from the reasons why there is no goto or that the question is changed, pe

Re: answer not correct

2020-11-08 Thread MRAB
On 2020-11-08 19:25, Quentin Bock wrote: *def add(numbers):* * total = 1* * for x in numbers:* * total += 1* * return total* *print(add[1999, -672, 64]))* *the answer I get is 4 but it should be 1,411* 1. You typed "total += 1", which means it's adding 1 each t

Re: answer not correct

2020-11-08 Thread Ivan "Rambius" Ivanov
Hello, First of all, remove the asterisks around the snippet, it makes it so hard to copy and paste your code. My answer is inlined. On Sun, Nov 8, 2020 at 2:28 PM Quentin Bock wrote: > > *def add(numbers):* > * total = 1* If this is your sum, you need to initialize it to zero:

answer not correct

2020-11-08 Thread Quentin Bock
*def add(numbers):* * total = 1* * for x in numbers:* * total += 1* * return total* *print(add[1999, -672, 64]))* *the answer I get is 4 but it should be 1,411* -- https://mail.python.org/mailman/listinfo/python-list

Re: Please answer fast.....

2020-02-02 Thread Abdur-Rahmaan Janhangeer
CSV as data entry with " " is a pain. > > -- https://mail.python.org/mailman/listinfo/python-list

Re: Please answer fast.....

2020-02-02 Thread DL Neil via Python-list
On 3/02/20 7:05 AM, Abdur-Rahmaan Janhangeer wrote: ... suggest you put names, birthday in csv the load csv for each row: layout.addWidget(QLabel) On Sun, 2 Feb 2020, 21:21 Souvik Dutta, wrote: Because i want to show the name and date of 40 persons and their birthdays. Why csv?

Re: Please answer fast.....

2020-02-02 Thread Abdur-Rahmaan Janhangeer
anhangeer < > arj.pyt...@gmail.com> wrote: > >> I'm 100% ready to answer your question, just add some more details like >> why you need 40 labels. >> > -- https://mail.python.org/mailman/listinfo/python-list

Re: Please answer fast.....

2020-02-02 Thread Abdur-Rahmaan Janhangeer
I'm 100% ready to answer your question, just add some more details like why you need 40 labels. -- https://mail.python.org/mailman/listinfo/python-list

[issue39525] math.remainder() give wrong answer on large integer

2020-02-01 Thread Tim Peters
Tim Peters added the comment: Arguments to `remainder()` are converted to floats, and the returned value is also a float. These specific arguments convert to the same float: >>> a = 12345678901234567890 >>> b = 12345678901234567891 >>> float(a) == float(b) True And the float they convert

[issue39525] math.remainder() give wrong answer on large integer

2020-02-01 Thread Steven D'Aprano
Steven D'Aprano added the comment: math.remainder performs *floating point* remainder. That means it has to convert the arguments to floats first, and there is no float capable of representing either of those two numbers exactly: py> '%f' % float(12345678901234567890)

[issue39525] math.remainder() give wrong answer on large integer

2020-02-01 Thread David Hwang
New submission from David Hwang : These two numbers are off by 1, and so should give different answer to >>> math.remainder(12345678901234567890,3) 1.0 >>> math.remainder(12345678901234567891,3) 1.0 -- components: Library (Lib) messages: 361211 nosy: David Hwan

Re: Please answer fast.....

2020-01-31 Thread DL Neil via Python-list
w might someone else with a similar question, sometime in the future, be able to find 'the answer'? Would the message title "Please answer fast..." do it for you/for them? So, thoughtful selection of question subject-lines, just as for Python object names, is how you would be helping us all

Please answer fast.....

2020-01-31 Thread Souvik Dutta
Hi, This is problem from pyqt5. Actually I want to have about 40 labels added into a window when a button is clicked. The text are not the same so the label is not the same. I cannot just add 40 labels before hand and then change its text to something from a qlineedit. Please say me something that

Re: Hi there! We are here to answer any questions you have about Udacit...

2019-11-12 Thread DL Neil via Python-list
On 12/11/19 9:48 PM, joseph pareti wrote: great, thank you so much for the advice. In fact, I sent this mail to the python mailing list by mistake, but now I am glad I did ... There's plenty of over-lap between lists - PyTutor is another. Meantime I've received email from IBM about their

Re: Hi there! We are here to answer any questions you have about Udacit...

2019-11-11 Thread DL Neil via Python-list
On 12/11/19 7:14 AM, joseph pareti wrote: i have done the first 6 lessons of python --- https://classroom.udacity.com/courses/ud1110/lessons/bbacebc6-406a-4dc5-83f6-ef7ba3371da6/concepts/50247542-7933-4afe-9130-ff1dff429b03 what do you recommend next? My goal is ML/AI As with any

Re: Hi there! We are here to answer any questions you have about Udacit...

2019-11-11 Thread joseph pareti
pareti < joeparet...@gmail.com>: > > > -- Forwarded message - > Von: joseph pareti > Date: Do., 7. Nov. 2019 um 09:26 Uhr > Subject: Re: Hi there! We are here to answer any questions you have about > Udacit... > To: Sherry from Udacity > > > ap

[issue36288] Incorrect answer when using round()

2019-03-14 Thread Zachary Ware
Change by Zachary Ware : -- components: -Build ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36288] Incorrect answer when using round()

2019-03-14 Thread Zachary Ware
Zachary Ware added the comment: Please see the documentation for `round`, it explains this: https://docs.python.org/3/library/functions.html#round -- nosy: +zach.ware -remi.lapeyre resolution: -> not a bug stage: -> resolved status: open -> closed type: behavior ->

[issue36288] Incorrect answer when using round()

2019-03-14 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Thanks for submitting a report MeeranRizvi. This is the expected behavior, according to the IEEE 754 Python round to nearest even integer. This is called the bankers' rounding and is done (I think) to limitate the propagation of errors. I suggest we close

[issue36288] Incorrect answer when using round()

2019-03-14 Thread MeeranRizvi
New submission from MeeranRizvi : When using round() for calculation it gives the incorrect answer. For Example: round(1.5) >>2(Which is correct) But when we calculate: round(2.5) >>2(Should give 3 right?) -- components: Build messages: 337921 nosy: MeeranRizvi prio

[issue36151] Incorrect answer when calculating 11/3

2019-02-28 Thread Steven D'Aprano
Steven D'Aprano added the comment: Aiden: in the future, please do not post unnecessary screenshots of text. They are hostile to the blind and slight-impaired, they make it impossible to copy your code and run it ourselves, and they cannot be searched for. Instead, copy and paste the text

[issue36151] Incorrect answer when calculating 11/3

2019-02-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: To add to Zach's answer: Please do not mark issues for IDLE just because you use IDLE to send your code to Python and display the returned string answer. If in any doubt, rerun the same code directly with Python either interactively or from the command line

[issue36151] Incorrect answer when calculating 11/3

2019-02-28 Thread Zachary Ware
` module instead. -- assignee: terry.reedy -> components: -IDLE nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: open -> closed title: Incorrect answer when calculating 11//3 -> Incorrect answer when calculating 11/3 ___

[issue36151] Incorrect answer when calculating 11//3

2019-02-28 Thread Aiden Zhou
Change by Aiden Zhou : Removed file: https://bugs.python.org/file48180/Screenshot (102)_LI.jpg ___ Python tracker ___ ___ Python-bugs-list

[issue36151] Incorrect answer when calculating 11//3

2019-02-28 Thread Aiden Zhou
Change by Aiden Zhou : Added file: https://bugs.python.org/file48180/Screenshot (102)_LI.jpg ___ Python tracker ___ ___ Python-bugs-list

[issue36151] Incorrect answer when calculating 11//3

2019-02-28 Thread Aiden Zhou
, terry.reedy priority: normal severity: normal status: open title: Incorrect answer when calculating 11//3 type: behavior versions: Python 3.7 Added file: https://bugs.python.org/file48179/Screenshot (102)_LI.jpg ___ Python tracker <https://bugs.python.

[issue34337] Fail to get a right answer for 1.2%0.2

2018-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: This isn't a bug: in short, you're evaluating a discontinuous function very close to a discontinuity; the errors inherent in floating-point arithmetic put you the "wrong" side of the discontinuity. Or more simply, with binary floating-point, What You See Is

[issue34337] Fail to get a right answer for 1.2%0.2

2018-08-05 Thread Yiwei Guo
New submission from Yiwei Guo : the answer of 1.2%0.2 should be zero -- ___ Python tracker <https://bugs.python.org/issue34337> ___ ___ Python-bugs-list mailin

[issue34337] Fail to get a right answer for 1.2%0.2

2018-08-05 Thread Yiwei Guo
Change by Yiwei Guo : -- components: Tests nosy: qq100460045 priority: normal severity: normal status: open title: Fail to get a right answer for 1.2%0.2 type: compile error versions: Python 3.6 ___ Python tracker <https://bugs.python.

Re: Getting process details on an operating system process/question answer by vouce

2018-07-16 Thread Steven D'Aprano
ication specific. So if the OS doesn't support this, and the process you are interested in doesn't support this, then it likely can't be done. > 2. Be able to pass questions and take answers via say a customized "okay > google" to try to explain: > > Ask: how was your day

Getting process details on an operating system process/question answer by vouce

2018-07-16 Thread John T. Haggerty
access or inside some kind of wait state etc. 2. Be able to pass questions and take answers via say a customized "okay google" to try to explain: Ask: how was your day record answer in voice translate it via google ask new question Hope the two questions make sense Thanks.

Re: Need help to understand not the answer

2017-07-30 Thread Rick Johnson
On Saturday, July 29, 2017 at 2:16:36 PM UTC-5, new_to_c0ding wrote: > Hello all, I have been scratching my head since morning but > could not understand this quiz question. I would appreciate > if someone could help me understand what is it asking me to > do. I dont need the ans

Re: Need help to understand not the answer

2017-07-29 Thread devinderaujla
> > is it asking me to do. I dont need the answer but just the right direction > > to look at. > > > > ### Do not change the Location or Campus classes. ### > > ### Location class is the same as in lecture. ### > > class Location(object): &

Re: Need help to understand not the answer

2017-07-29 Thread MRAB
On 2017-07-29 20:16, new_to_c0ding wrote: Hello all, I have been scratching my head since morning but could not understand this quiz question. I would appreciate if someone could help me understand what is it asking me to do. I dont need the answer but just the right direction to look

Re: Need help to understand not the answer

2017-07-29 Thread Piet van Oostrum
new_to_c0ding writes: > Now as per instructions, class MITCampus(Campus) has (self, center_loc, > tent_loc = Location(0,0)) and it is mentioned that center_loc and tent_loc > are Location objects but when I code them as Locations, I get error from the > tester: >

Need help to understand not the answer

2017-07-29 Thread new_to_c0ding
Hello all, I have been scratching my head since morning but could not understand this quiz question. I would appreciate if someone could help me understand what is it asking me to do. I dont need the answer but just the right direction to look at. ### Do not change the Location or Campus

Re: Program prints questions for user input, but won't show the answer output

2016-05-18 Thread Larry Hudson via Python-list
On 05/18/2016 06:50 PM, Jake Kobs wrote: MRAB, I am not quite sure how to return the print statements so I thought that returning the displayInfo def would help.. Im so lost. Why do you think you want to _return_ a print statement? The print statement _DOES_ the printing, there is nothing

Re: Program prints questions for user input, but won't show the answer output

2016-05-18 Thread MRAB
On 2016-05-19 02:50, Jake Kobs wrote: MRAB, I am not quite sure how to return the print statements so I thought that returning the displayInfo def would help.. Im so lost. "return the print statements"? The print statements ... print! Have a search for Python tutorials online and pick one

Re: Program prints questions for user input, but won't show the answer output

2016-05-18 Thread Steven D'Aprano
On Thu, 19 May 2016 11:50 am, Jake Kobs wrote: > MRAB, > > I am not quite sure how to return the print statements so I thought that > returning the displayInfo def would help.. Im so lost. There's no need to return the text that you printed. You printed it, the job is done. Here is some

Re: Program prints questions for user input, but won't show the answer output

2016-05-18 Thread Jake Kobs
MRAB, I am not quite sure how to return the print statements so I thought that returning the displayInfo def would help.. Im so lost. -- https://mail.python.org/mailman/listinfo/python-list

Re: Program prints questions for user input, but won't show the answer output

2016-05-18 Thread MRAB
On 2016-05-19 02:04, Jake Kobs wrote: Here is the code: #Lab 9-4 Blood Drive #the main function def main(): endProgram = 'no' while endProgram == 'no': print # declare variables pints = [0] * 7 totalPints = 0 averagePints = 0 highPints = 0 lowPints = 0

Re: Program prints questions for user input, but won't show the answer output

2016-05-18 Thread John Gordon
In <1cc14787-7061-45c9-a70e-1b16e3f5e...@googlegroups.com> Jake Kobs writes: > Here is the code: > def getHigh(pints, highPints): > highPints = pints[0] > counter = 1 > while counter < 7: > if (pints[counter] > highPints): > highPints =

Program prints questions for user input, but won't show the answer output

2016-05-18 Thread Jake Kobs
Here is the code: #Lab 9-4 Blood Drive #the main function def main(): endProgram = 'no' while endProgram == 'no': print # declare variables pints = [0] * 7 totalPints = 0 averagePints = 0 highPints = 0 lowPints = 0

Re: [Tutor] Is context manager the answer to synchronous function calls?

2015-09-16 Thread John Wong
On Wed, Sep 16, 2015 at 7:54 AM, Mark Lawrence wrote: > > Assuming your (Alan's) guess is correct, and I certainly agree it's > plausible, I suspect this might be better asked on the main Python mailing > list, I don't see this as tutor material. > > Sorry first time

Re: [Tutor] Is context manager the answer to synchronous function calls?

2015-09-16 Thread Chris Angelico
On Thu, Sep 17, 2015 at 12:34 AM, John Wong wrote: > Sorry first time posting to tutor / general list. Usually on TIP list. As > per Mark's recommendation, now posting to python-list@python.org. But, sadly, without a lot of context. When you change lists, it's helpful to

Re: [Tutor] Is context manager the answer to synchronous function calls?

2015-09-16 Thread John Wong
Ah. Thanks.. I removed the previous code. Please excuse me. I will rewrite the question so it is clear. Here is my current solution in an imperative way. My application will work with AWS boto library to create EC2 instances and RDS instances. Assuming my API will simply send the request, and

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-10 Thread memilanuk
On 08/07/2015 04:29 AM, tjohnson wrote: On 8/6/2015 7:31 PM, Terry Reedy wrote: What 1 or 2 features would you most like to see? Practically, I'd say a line number margin and right edge indicator. Theoretically, a tabbed editor and dockable interpreter pane. YES!!! and yes to the above.

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-10 Thread tjohnson
On 8/6/2015 7:31 PM, Terry Reedy wrote: On 8/6/2015 11:35 AM, Timothy Johnson wrote: problems because it works well for that. Most of the time I use PyDev and Notepad++ to edit Python code, but if more features were added to Idle I would consider using it more. What 1 or 2 features would you

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-10 Thread tjohnson
On 8/7/2015 9:10 PM, Terry Reedy wrote: On 8/7/2015 7:29 AM, tjohnson wrote: On 8/6/2015 7:31 PM, Terry Reedy wrote: On 8/6/2015 11:35 AM, Timothy Johnson wrote: problems because it works well for that. Most of the time I use PyDev and Notepad++ to edit Python code, but if more features were

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-09 Thread Laurent Pointal
random...@fastmail.us wrote: On Sat, Aug 8, 2015, at 13:59, Laurent Pointal wrote: Level? Graduate (post-Bac in france) Yours or your students? My students. 1. Are you grade school (1=12)? (sorry, I dont know correspondance in france) Grade 12 refers to 17-18 year old

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-08 Thread Laurent Pointal
Terry Reedy wrote: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below as you are willing, and as are appropriate I

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-08 Thread random832
On Sat, Aug 8, 2015, at 13:59, Laurent Pointal wrote: Level? Graduate (post-Bac in france) Yours or your students? 1. Are you grade school (1=12)? (sorry, I dont know correspondance in france) Grade 12 refers to 17-18 year old students, each grade is one year. undergraduate

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Friedrich Rentsch
, please answer as many of the questions below as you are willing, and as are appropriate Private answers are welcome. They will be deleted as soon as they are tallied (without names). I realized that this list is a biased sample of the universe of people who have studied Python at least, say

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Timothy Johnson
On 8/5/2015 9:06 PM, Terry Reedy wrote: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below as you are willing

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread tjohnson
On 8/6/2015 7:31 PM, Terry Reedy wrote: On 8/6/2015 11:35 AM, Timothy Johnson wrote: problems because it works well for that. Most of the time I use PyDev and Notepad++ to edit Python code, but if more features were added to Idle I would consider using it more. What 1 or 2 features would you

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Terry Reedy
On 8/7/2015 7:29 AM, tjohnson wrote: On 8/6/2015 7:31 PM, Terry Reedy wrote: On 8/6/2015 11:35 AM, Timothy Johnson wrote: problems because it works well for that. Most of the time I use PyDev and Notepad++ to edit Python code, but if more features were added to Idle I would consider using it

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Terry Reedy
classes using Idle, please answer as many of the questions below as you are willing, and as are appropriate If you only take responses from people who already use Idle, you may be selecting against some of the more critical responses. The main issue is who, other than highschool

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread tjohnson
On 8/7/2015 9:10 PM, Terry Reedy wrote: On 8/7/2015 7:29 AM, tjohnson wrote: On 8/6/2015 7:31 PM, Terry Reedy wrote: On 8/6/2015 11:35 AM, Timothy Johnson wrote: problems because it works well for that. Most of the time I use PyDev and Notepad++ to edit Python code, but if more features were

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Paul Rubin
tjohnson tandrewjohn...@outlook.com writes: Currently the interpreter is shown in a separate floating window. If it was dockable, it could also be placed in the same window as the text editor but separated by a splitter. Dockable would be nice but the split window is ok with me. What I wish

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Akira Li
Terry Reedy tjre...@udel.edu writes: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below as you are willing

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Larry Hudson via Python-list
On 08/05/2015 06:06 PM, Terry Reedy wrote: [snip] 0. Classes where Idle is used: Where? Level? None Idle users: 1. Are you grade school (1=12)? undergraduate (Freshman-Senior)? post-graduate (from whatever)? Some college, but didn't complete. Never had any CS or programming courses. 2.

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-07 Thread Chris Angelico
On Sat, Aug 8, 2015 at 1:45 PM, Akira Li 4kir4...@gmail.com wrote: then a workaround that works out of the box is to run: T:\ py -m idlelib -r print_unicode.py that can display Unicode (BMP) output in IDLE. But sadly, *only* the BMP. That's enough for most modern languages, but it's by no

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Nonami Animashaun
0. Classes where Idle is used: Where? Level? Mostly on windows, can't remember ever using Idle on a linux system before. Idle users: 1. Are you grade school (1=12)? undergraduate (Freshman-Senior)? post-graduate (from whatever)? Post-graduate 2. Are you beginner (1st class, maybe

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Terry Reedy
On 8/6/2015 11:35 AM, Timothy Johnson wrote: problems because it works well for that. Most of the time I use PyDev and Notepad++ to edit Python code, but if more features were added to Idle I would consider using it more. What 1 or 2 features would you most like to see? -- Terry Jan Reedy

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Terry Reedy
On 8/5/2015 9:21 PM, Rustom Mody wrote: I used idle to teach a 2nd year engineering course last sem It was a more pleasant experience than I expected One feature that would help teachers: It would be nice to (have setting to) auto-save the interaction window [Yeah I tried to see if I could do

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Terry Reedy
On 8/5/2015 9:17 PM, Ben Finney wrote: Terry Reedy tjre...@udel.edu writes: Private answers are welcome. They will be deleted as soon as they are tallied (without names). Are you also expecting questionnaire answers in this forum? Either or both. I suspect it will become a free-ranging

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Laura Creighton
Added: right now most children I know who want to program want to write games that run on their cell phones and tablets. So Idle integration with kivy would be very nice, if Idle developers are looking for new directions. Laura -- https://mail.python.org/mailman/listinfo/python-list

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Sibylle Koczian
Am 06.08.2015 um 03:06 schrieb Terry Reedy: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below as you are willing

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Steve Hayes
On Wed, 5 Aug 2015 21:06:31 -0400, Terry Reedy tjre...@udel.edu wrote: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Mark Lawrence
On 06/08/2015 02:06, Terry Reedy wrote: 0. Classes where Idle is used: Where? Level? N/A Idle users: 1. Are you grade school (1=12)? undergraduate (Freshman-Senior)? post-graduate (from whatever)? post-graduate 2. Are you beginner (1st class, maybe 2nd depending on intensity of

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-06 Thread Timothy Johnson
On 8/5/2015 9:06 PM, Terry Reedy wrote: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below as you are willing

Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Terry Reedy
There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below as you are willing, and as are appropriate Private answers

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Paul Rubin
Terry Reedy tjre...@udel.edu writes: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. I use it sometimes. I mostly use Emacs with Python-mode but find Idle is nice for quickly experimenting with something or probing an API. I know

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Paul Rubin
Paul Rubin no.email@nospam.invalid writes: I use it sometimes. I mostly use Emacs with Python-mode but find Idle is nice for quickly experimenting with something or probing an API. Added: I sometimes used Idle in places where Emacs isn't available, e.g. client machines running Windows. It's

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Laura Creighton
In a message of Wed, 05 Aug 2015 21:06:31 -0400, Terry Reedy writes: 0. Classes where Idle is used: Where -- my house or sometimes at the board game society Level -- beginners and there are 8 children right now. Idle users: 1. Are you I am post graduate, but the kids are all grade school. 2.

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Miki Tebeka
Greetings, 0. Classes where Idle is used: Where? At client site. Mostly big companies. Level? From beginner to advanced. Idle users: 1. Are you grade school (1=12)? undergraduate (Freshman-Senior)? post-graduate (from whatever)? post-graduate 2. Are you beginner (1st class, maybe 2nd

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Ben Finney
Terry Reedy tjre...@udel.edu writes: Private answers are welcome. They will be deleted as soon as they are tallied (without names). Are you also expecting questionnaire answers in this forum? I suspect it will become a free-ranging discussion; hopefully you're prepared to pick through and

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Chris Angelico
On Thu, Aug 6, 2015 at 11:06 AM, Terry Reedy tjre...@udel.edu wrote: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions below

Re: Who uses IDLE -- please answer if you ever do, know, or teach

2015-08-05 Thread Rustom Mody
On Thursday, August 6, 2015 at 6:36:56 AM UTC+5:30, Terry Reedy wrote: There have been discussions, such as today on Idle-sig , about who uses Idle and who we should design it for. If you use Idle in any way, or know of or teach classes using Idle, please answer as many of the questions

Re: I'm a newbie and you helped me find the answer...

2015-08-03 Thread Dwight Hotmail
Thank you, Jussi. Problem finally solved. I am using Coderunner 2 as my editor. It has a language setting. I had set it as Python instead of Python 3. Duh! Thank you again, everyone! With appreciation, Dwight dwi...@goldwinde.com www.goldwinde.com Author of the book, Courage: the Choice

Subscribe to get an answer vs automatic CC Was: Fwd: Lossless bulletproof conversion to unicode (backslashing) (fwd)

2015-05-29 Thread anatoly techtonik
On Wed, May 27, 2015 at 3:57 PM, Laura Creighton l...@openend.se wrote: Chris Angelico apparantly has a problem with cc'd people who aren't on the list. I thought that CC in this case works automatically? If that's not the case, then I'll be annoyed by this too. So, thanks for CCing. =) Also,

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-17 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23757 ___

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset c79530e08985 by Raymond Hettinger in branch '3.4': Issue #23757: Only call the concrete list API for exact lists. https://hg.python.org/cpython/rev/c79530e08985 -- ___ Python tracker

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset b6121a4afad7 by Raymond Hettinger in branch '2.7': Issue #23757: Only call the concrete list API for exact lists. https://hg.python.org/cpython/rev/b6121a4afad7 -- nosy: +python-dev ___ Python tracker

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Raymond's patch LGTM. Here is updated patch with tests. -- assignee: - rhettinger keywords: +patch stage: needs patch - commit review Added file: http://bugs.python.org/file39404/fix_list_to_tuple_2.diff ___

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: Added a patch. Needs to have the OP's test case added. -- nosy: +rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23757 ___

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: And it would be nice to add the same test for list, set, etc (if they don't exist). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23757 ___

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-13 Thread Stuart Bishop
Stuart Bishop added the comment: Can we get this reopened? As David MacIver points out, this seems entirely a wart in tuple's constructor (compared to all the other builtin types), whereas 10977 is worrying about how 3rd party code using the C API can corrupt subclasses of builtin types (a

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: duplicate - stage: resolved - needs patch status: closed - open type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23757

[issue23757] tuple function gives wrong answer when called on list subclass with custom __iter__

2015-05-13 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file39365/fix_list_to_tuple.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23757

  1   2   3   4   >