Where to suggest improvements in the official Python documentation?

2013-08-03 Thread Aseem Bansal
I have a suggestion about the Python tutorial for improvement. Specifically about in Python tutorial 4.7.5 lambda forms. http://docs.python.org/3/tutorial/controlflow.html#lambda-forms It is not very clear from the tutorial what lambda forms are for someone who doesn't know functional

Can someone suggest better resources for learning sqlite3? I wanted to use the Python library but I don't know sql.

2013-08-03 Thread Aseem Bansal
I was writing a Python script for getting the user stats of a website(Specifically codereview.stackexchange). I wanted to store the stats in a database. I found Python3's sqlite3 library. I found that I needed sql commands for using it. I have tried sql.learncodethehardway but it isn't

Re: Where to suggest improvements in the official Python documentation?

2013-08-04 Thread Aseem Bansal
@ Terry Jan Reedy If there is an issue in place for improving the lambda forms then that's good. I wanted a link about functional programming because it is mentioned as if it were a household word. -- http://mail.python.org/mailman/listinfo/python-list

Re: Where to suggest improvements in the official Python documentation?

2013-08-20 Thread Aseem Bansal
@Joel Goldstick Joel Goldstick http://joelgoldstick.com My specific question was that the Python documentation's tutorial isn't clear when it comes to lambda forms. I just wanted something to be done so it becomes clear for future readers who are not familiar with functional paradigm. I

Found a grammar error in PEP 5. How to suggest correction?

2013-08-20 Thread Aseem Bansal
In PEP 5 it is 4. Add an an optional warning mode to the parser that will inform There are 2 `an`s here. How to suggest a correction for this? -- http://mail.python.org/mailman/listinfo/python-list

Re: Found a grammar error in PEP 5. How to suggest correction?

2013-08-20 Thread Aseem Bansal
@Joel Goldstick That is the documentation and this is about the PEP. I didn't realize that the same works for both. I'll do that. -- http://mail.python.org/mailman/listinfo/python-list

Re: Found a grammar error in PEP 5. How to suggest correction?

2013-08-20 Thread Aseem Bansal
@ Terry Jan Reedy, @Joel Goldstick The problem with that documentation link is that it says the bugs in that documentation should be mailed at that e-mail address. But the PEPs are not the part of the documentation. I am saying that PEPs are not its part because when I downloaded the

PEPs should be included with the documentation download

2013-08-20 Thread Aseem Bansal
Currently the documentation download includes a lot of things but PEPs are not its part. I wanted to suggest that PEPs should be included in the download. They are very much relevant to Python. -- http://mail.python.org/mailman/listinfo/python-list

Re: PEPs should be included with the documentation download

2013-08-22 Thread Aseem Bansal
I do depend on offline documentation. I have both Python2 and 3's documentation offline. A lot of people have 24-hour access to internet but a lot of people don't have. And while moving around it isn't always possible to have internet then offline documentation is really helpful. --

Re: PEPs should be included with the documentation download

2013-08-22 Thread Aseem Bansal
On Wednesday, August 21, 2013 11:25:44 PM UTC+5:30, rand...@fastmail.us wrote: I think, though, that if there's any useful information that can be obtained by reading accepted PEPs but not the documentation, or if things are explained less clearly than in the PEPs, that's a bug in the

Is this a bug in Python 3.3?

2013-09-17 Thread Aseem Bansal
While using IDLE I used the license() function to see the license information. In it there was a list of all the versions and from which version they are derived is written. The list goes upto 3.3.1 but doesn't include 3.3.2. Is that a minor bug or is the current version not mentioned in that

A question about semantics from the standard library's documentation

2013-09-19 Thread Aseem Bansal
In Python 3.3.2 documentation on the Python Standard library's introduction these sentences are given For these types, the Python language core defines the form of literals and places some constraints on their semantics, but does not fully define the semantics. (On the other hand, the language

What minimum should a person know before saying I know Python

2013-09-20 Thread Aseem Bansal
I started Python 4 months ago. Largely self-study with use of Python documentation, stackoverflow and google. I was thinking what is the minimum that I must know before I can say that I know Python? I come from a C background which is comparatively smaller. But as Python is comparatively much

Re: What minimum should a person know before saying I know Python

2013-09-20 Thread Aseem Bansal
By C being smaller than Python I did not mean the scope of C is lesser than Python. I simply meant that the standard libraries are less in number compared to Python. By knowing Python I didn't imply an expert-level understanding. Minimum that so someone cannot say Hey, you said you knew Python

Re: What minimum should a person know before saying I know Python

2013-09-20 Thread Aseem Bansal
On Friday, September 20, 2013 10:04:32 PM UTC+5:30, Chris Angelico wrote: On Sat, Sep 21, 2013 at 2:28 AM, Aseem Bansal asmbans...@gmail.com wrote: I hope that cleared some confusion about what I wanted to ask. I wanted to gauge myself to find if I am progressing or not. Well, based on my

Re: What minimum should a person know before saying I know Python

2013-09-20 Thread Aseem Bansal
I understand that being able to solve problems and knowing when to use something is the final measure of knowing something properly. But I wanted to find something quantitative that I can use to measure myself. Like the interview questions that Tim Chase posted. Measuring myself based on the

Re: building an online judge to evaluate Python programs

2013-09-20 Thread Aseem Bansal
However, it can only be used with programs that produce an output Just interested, what else are you thinking of checking? -- https://mail.python.org/mailman/listinfo/python-list

Re: Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-09-21 Thread Aseem Bansal
You need to install PySide for GUI development. You don't need Qt Creator. When you have PySide installed there is a Qt Designer in your python installation directory. You use that for drag and drop GUI development. Search google for PySide and you'll find tutorials for that. --

Confusion about python versions

2013-10-27 Thread Aseem Bansal
Python 2.7.6 release candidate 1 and 3.3.3 release candidate 1 was released yesterday. Also Python 3.4.0 alpha 4 was released a week ago. I thought as Python 3.4.0 alpha was released 3.3 branch was done. The 3.3.3 release candidate fixes many bugs as per the changelog so would they be included

Advice for choosing correct architecture/tech for a hobby project

2014-05-22 Thread Aseem Bansal
I am working on a hobby project - a Bookmarker https://github.com/anshbansal/Bookmarker. Basically bookmarks like in webbrowser stored in a app. The twist is storage by categories. I have spent some time on choosing the correct tech for making this project but it seems it would be better to

Re: Advice for choosing correct architecture/tech for a hobby project

2014-05-23 Thread Aseem Bansal
. On Friday, May 23, 2014 1:19:22 AM UTC+5:30, Mark H. Harris wrote: On 5/22/14 1:54 PM, Aseem Bansal wrote: I am working on a hobby project - a Bookmarker{snip} hi, no django is not really the correct tool-set. Django is for server-side content management, but who knows, you might come up

Re: Advice for choosing correct architecture/tech for a hobby project

2014-05-23 Thread Aseem Bansal
framework present. On Friday, May 23, 2014 2:58:51 AM UTC+5:30, Ethan Furman wrote: On 05/22/2014 11:54 AM, Aseem Bansal wrote: I am working on a hobby project - a Bookmarker https://github.com/anshbansal/Bookmarker. Take a look at delicio.us -- it seems to be a similar type

Benefits of asyncio

2014-06-02 Thread Aseem Bansal
I read in these groups that asyncio is a great addition to Python 3. I have looked around and saw the related PEP which is quite big BTW but couldn't find a simple explanation for why this is such a great addition. Any simple example where it can be used? It can be used to have a queue of

Re: Benefits of asyncio

2014-06-02 Thread Aseem Bansal
I haven't worked with asynchronous tasks or concurrent programming so far. Used VB2010 and have used some jQuery in a recent project but nothing low level. As per the explanation it seems that programming using asyncio would require identifying blocks of code which are not dependent on the IO.

Regarding Python official website

2014-06-06 Thread Aseem Bansal
The Python website is undergoing an overhaul for better looks. Is there anything like a forum where it is being discussed. I mean where the schedule for this is being maintained or the same is being discussed? -- https://mail.python.org/mailman/listinfo/python-list

Re: Regarding Python official website

2014-06-07 Thread Aseem Bansal
The Job board. It has been on hold for quite some time. -- https://mail.python.org/mailman/listinfo/python-list

Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-07-04 Thread Aseem Bansal
I want to start GUI development using Tkinter in Python 2.7.5. I have been searching all over google but couldn't find any IDE that has drag-and-drop feature for Python GUI development. Tried to ask on stackoverflow

Re: Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-07-09 Thread Aseem Bansal
Thanks @Dave Cook. I'll try wxPython. -- http://mail.python.org/mailman/listinfo/python-list

Re: Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-07-15 Thread Aseem Bansal
@CM Thanks for the suggestion. I'll take a look. -- http://mail.python.org/mailman/listinfo/python-list

What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-17 Thread Aseem Bansal
I wanted to do a little project for learning Python. I thought a chat system will be good as it isn't something that I have ever done. I wanted to know what will I need? I think that would require me these 1 learn network/socket programming 2 find a free server to host my chat server 3 GUI

Re: Homework help requested (not what you think!)

2013-07-17 Thread Aseem Bansal
On Wednesday, July 17, 2013 4:13:45 AM UTC+5:30, John Ladasky wrote: Hi folks, No, I'm not asking for YOU to help ME with a Python homework assignment! Previously, I mentioned that I was starting to teach my son Python.

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-17 Thread Aseem Bansal
@Eric S. Johansson I am a novice who hasn't done any big project in programming. I haven't done anything I can even call a moderate project. I haven't touched web frameworks ever. I have little or no knowledge of network/socket programming. I have never used databases before. I understand

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-18 Thread Aseem Bansal
@vikash agrawal About GUI I discussed it at https://groups.google.com/forum/#!starred/comp.lang.python/M-Dy2pyWRfM and I am thinking about using PySide 1.2 for clients of chat system. I think I'll need downloadable clients if I want to make something like google talk. Then I'll need to

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-18 Thread Aseem Bansal
@Chris Angelico Thanks. That cleared many doubts and your suggestions would definitely be useful. I am asking the next paragraph because you said about Python 3 helping with things. I am not looking for a debate or anything just a opinion. I learnt Python myself and everyone told me that

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-18 Thread Aseem Bansal
@Andrew Berg @Chris Angelico Is there a way to have both Python 2 and 3 installed on my computer till I can update the little codebase that I have built? Can I make different commands for invoking python 2 and Python 3? I am using Windows 7 and use Windows Powershell as an alternative to the

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-18 Thread Aseem Bansal
@ChrisA Thanks. That's great. That solved the whole thing easily. I'll install Python 3 and start updating today. About reading comp.lang.python can you suggest how to read it and reply? I have never read a newsgroup leave alone participated in one. I am used to forums like stackoverflow. Any

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-18 Thread Aseem Bansal
@ChrisA I subscribed to it. How do I reply to a message that has already been posted before my subscription? -- http://mail.python.org/mailman/listinfo/python-list

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-18 Thread Aseem Bansal
I tried replying to your message by mail. I used the reply button and send it to python-list@python.org? Or do I need to use pytho...@python.org as you wrote in your post? -- http://mail.python.org/mailman/listinfo/python-list

Re: What does it take to implement a chat system in Python (Not asking for code just advice before I start my little project)

2013-07-18 Thread aseem bansal
Ok I'll mail by e-mail now. Hope that it reaches the place correctly.-- http://mail.python.org/mailman/listinfo/python-list

Re: Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-07-20 Thread Aseem Bansal
After considering all the options suggested here I decided to use PySide/QtCreator as was suggested by Dave Cook. I created a simple GUI with QtCreator and found a way to convert .ui files to .py files. So far so good. But now I am having some confusion about the correct tools to use for PySide

Re: Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-07-22 Thread Aseem Bansal
@Chris “Kwpolska” Warrick Yeah, as I mentioned I was able to use it to create .py files and the GUI ran. But when I made the .exe from the .py using cxfreeze it created exe but the GUI did not run. -- http://mail.python.org/mailman/listinfo/python-list

Is Python installer/un-installer buggy on Windows?

2014-12-03 Thread Aseem Bansal
I am using 32-bit Python on a 64-bit Windows. Edit with IDLE is missing from the context menu. I am working on Windows 7. I have searched on google a lot and have tried everything said in superuser, stackoverflow etc. I have even tried re-installing Python. I am now only left with

Re: Is Python installer/un-installer buggy on Windows?

2014-12-04 Thread Aseem Bansal
Yeah, the problem seems to be with registry as every solution seems to be fiddling with registry. I know that reinstalling OS is a really bad idea. But I have tried to find a way to solve this for months now. I have started a bounty on superuser also for the same in the question Python IDLE