From mahmood.saghaei at gmail.com Sun Jul 24 18:52:43 2011 From: mahmood.saghaei at gmail.com (Mahmoud saghaei) Date: Sun, 24 Jul 2011 21:22:43 +0430 Subject: [Python-ir] File system structure in a django app Message-ID: Any comment on configuration of different files and folder in a Django application? Best place for templates and models? how we distribute our views across modules? I know this depends on many factors, but there may be some general tips and tricks. Mahmoud P Please consider the environment before printing this e-mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pyaam.pyeezan at gmail.com Fri Jul 29 13:03:32 2011 From: pyaam.pyeezan at gmail.com (Pyaam Pyeezan) Date: Fri, 29 Jul 2011 15:33:32 +0430 Subject: [Python-ir] Default ordering in Django tables Message-ID: ???? ?? ???? ???? ??????? ?? ?? ?? ??? ??????? ?? ???? ??? ????? ???? ????? ???? ???? ??? ?? ?????? ???? ??? ??????? ??????? ?? ?????? ?? ?? ???? ????? ??? ??? ??????? ???? ??? ???? ??? ?? order_by ??????? ????? ????? ???? P Please consider the environment before printing this e-mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: From miladmovie at gmail.com Fri Jul 29 16:54:44 2011 From: miladmovie at gmail.com (Milad Rastian) Date: Fri, 29 Jul 2011 22:54:44 +0800 Subject: [Python-ir] Default ordering in Django tables In-Reply-To: References: Message-ID: *http://tinyurl.com/3cfplcd* ??? SQL ?? ??? oder by ?? ?? ???? ??? ??? ?? ???? primary key ????? ?? ??? 2011/7/29 Pyaam Pyeezan > ???? > ?? ???? ???? ??????? ?? ?? ?? ??? ??????? ?? ???? ??? ????? ???? ????? ???? > ???? ??? ?? ?????? ???? ??? ??????? ??????? ?? ?????? ?? ?? ???? ????? ??? > ??? ??????? ???? ??? ???? ??? ?? > order_by > ??????? ????? > > ????? > ???? > P Please consider the environment before printing this e-mail. > > > _______________________________________________ > Python-ir mailing list > Python-ir at python.org > http://mail.python.org/mailman/listinfo/python-ir > > -- /-------------------- Milad Rastian -------------- next part -------------- An HTML attachment was scrubbed... URL: From mahmood.saghaei at gmail.com Fri Jul 29 18:57:50 2011 From: mahmood.saghaei at gmail.com (Mahmoud saghaei) Date: Fri, 29 Jul 2011 21:27:50 +0430 Subject: [Python-ir] Default ordering in Django tables In-Reply-To: References: Message-ID: ????? ?? ???? ???? ? ???? ??? ?? ???? ??? ?????? ??? ?? ?????? ??? ?? ???? ???? ??? ???????? ????? ??? ??? ???? ??? ????? ???? ?? ?? primary key ????? ??? ??? ????. ??? ?? ?? ?????? ?? ????. ??? ??? ????? ?? ?? ????? ????? ???? ?????? ????? ????? ??????? ???? ????? ?????? ??????? ?? ???? ???. ??? ?? ?????? ??? ??. ????? ?????? ???? id ?? ????? ??? ???? ??? ?? ??? ??? ???? ????? ???? ?? ????? ??????? ?? ?? ??? >>> from django.contrib.auth.models import User > >>> import random > >>> IDs = range(2, 10) > >>> random.shuffle(IDs) > >>> for i in IDs: > ... u = User(id=i, username='user{0}'.format(i), email='user{0}@gm.com'.format(i), > password='pppppp') > ... u.save() > ... > >>> User._meta.ordering > [ ] > >>> user = User.objects.all() > >>> [u.pk for u in user] > [1L, 4L, 3L, 2L, 8L, 9L, 5L, 6L, 7L] > >>> User._meta.ordering = ['id'] > >>> user = User.objects.all() > >>> [u.pk for u in user] > [1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L] > 2011/7/29 mohammad Efazati > ?? ???? ??? ??? ?? ???? pk ??? ? ?? ?????? ??????? ???? ?? order_by > ??????? ???? > > ?? ???? ????? ??? ???? ???? ???? ??? ????. > ???? ?? ??? ?? ?????? ??? ?? ?? ????? ?????? ????? ???? > ?? ???? > > 2011/7/29 Pyaam Pyeezan > >> ???? >> ?? ???? ???? ??????? ?? ?? ?? ??? ??????? ?? ???? ??? ????? ???? ????? >> ???? ???? ??? ?? ?????? ???? ??? ??????? ??????? ?? ?????? ?? ?? ???? ????? >> ??? ??? ??????? ???? ??? ???? ??? ?? >> order_by >> ??????? ????? >> >> ????? >> ???? >> P Please consider the environment before printing this e-mail. >> >> >> _______________________________________________ >> Python-ir mailing list >> Python-ir at python.org >> http://mail.python.org/mailman/listinfo/python-ir >> >> > > > -- > -------------- > ?? ???? > ??????? > http://www.efazati.org > > -- Mahmoud Saghaei, M.D. (http://www.saghaei.net/) Professor, Department of Anesthesia, Isfahan University of Medical Sciences (http://www.mui.ac.ir), Isfahan, Iran. P Please consider the environment before printing this e-mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: From omidraha.com at gmail.com Fri Jul 29 21:08:17 2011 From: omidraha.com at gmail.com (Omid Raha) Date: Fri, 29 Jul 2011 23:38:17 +0430 Subject: [Python-ir] Default ordering in Django tables In-Reply-To: References: Message-ID: ????? ???????? ???? ??? ???? ?? ??? ?????? ?????? db ???? ????? ????? ???? query ???? ???? ? ?? ???? ??? ?? ??? ?? ??? ordering ?? ???? ????? ?? ?? ????? ???? ?? ????? ???? ?????? ??. *Ordering Data * As you play around with the previous examples, you might discover that the objects are being returned in a seemingly random order. You aren?t imagining things; so far we haven?t told the database how to order its results, so we?re simply getting back data in some arbitrary order chosen by the database. ????? ??????? ?? ???? ??? ???? ????? ??? ?? ???? ? ???? ??? ??? ???? ?? ???? ???? ??????? ??? ? ?????? ???? ???? ??? ? ????? ?? ????? ????? ????? ? ???? ??? ???? ???? ????? ??? ???? ???? ??????? ??? ??????? ????? ? ????? ?? ????? ?? ???? ? ???? ??? ??? ??????? ?? ????? ?????? ?????? ??? ? ????? ???????? ?? ?????? ????? ?????? ???? ? ???? ?? ?? ?? ???? ????? ?????? ???? ?? ????? (send ? reply) ???? . ?? ???? ???? ???? ?????? ?? ?????? ??? ?? ?? ?? ?????? ?? ????? python-ir ?? ????? ?? ??? ???? ??? ? ??? ???? ?? ??? ??? ??? ????? ??? ??????? ???? ??? ?????? ???? ?? ????? python-ir ????? ???? ???? ? ? ?? ??? ???? ?? ??? ??? ?????? ????? ?? ????? ?? ???? ??????? ??????? ???? ????? ??????. -- Omid Raha -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramin.najarbashi at gmail.com Fri Jul 29 21:52:56 2011 From: ramin.najarbashi at gmail.com (Ramin Najjarbashi) Date: Sat, 30 Jul 2011 00:22:56 +0430 Subject: [Python-ir] Default ordering in Django tables In-Reply-To: References: Message-ID: ???? ???? ?? ???? ??? query ???????? ???? ?? ??? ?? ???????? ?????? ??????? ?? ?? ????? ????? ???? ?? ?? ?? ??????. ?? ????? ??? order by ?????? ???? ??? ??? ?? ????? ???? ?????? ???? ?? ??? ?? ???? ???? ??. ???? ?? ???? ????? ???? ????? ?? ???? ??? ????? ?? ?? ????????. ??? ????? ?? ?? ??? ?? ???? ???? ???? ?? ?? ?????? ???? ?? ???? ??? ???? ?? ??????? ?? ?? ?? ??? ID ?? ??? Auto increment ?????? ????. ??? ???? ??? ?? ?? ?? ??? ????? ??? ????? ??? ?? ???? ??? ?? ?? ?????? ?? ??? ?? ?????? ????? ?? ???? ??? ???? ??? ??? ?????? ???? ????: http://tinyurl.ir/6810/ 2011/7/29 Omid Raha ????? ???????? ???? ??? ???? ?? ??? ?????? ?????? db ???? ????? ????? ???? query ???? ???? ? ?? ???? ??? ?? ??? ?? ??? ordering ?? ???? ????? ?? ?? ????? ???? ?? ????? ???? ?????? ??. *Ordering Data * As you play around with the previous examples, you might discover that the objects are being returned in a seemingly random order. You aren?t imagining things; so far we haven?t told the database how to order its results, so we?re simply getting back data in some arbitrary order chosen by the database. ????? ??????? ?? ???? ??? ???? ????? ??? ?? ???? ? ???? ??? ??? ???? ?? ???? ???? ??????? ??? ? ?????? ???? ???? ??? ? ????? ?? ????? ????? ????? ? ???? ??? ???? ???? ????? ??? ???? ???? ??????? ??? ??????? ????? ? ????? ?? ????? ?? ???? ? ???? ??? ??? ??????? ?? ????? ?????? ?????? ??? ? ????? ???????? ?? ?????? ????? ?????? ???? ? ???? ?? ?? ?? ???? ????? ?????? ???? ?? ????? (send ? reply) ???? . ?? ???? ???? ???? ?????? ?? ?????? ??? ?? ?? ?? ?????? ?? ????? python-ir ?? ????? ?? ??? ???? ??? ? ??? ???? ?? ??? ??? ??? ????? ??? ??????? ???? ??? ?????? ???? ?? ????? python-ir ????? ???? ???? ? ? ?? ??? ???? ?? ??? ??? ?????? ????? ?? ????? ?? ???? ??????? ??????? ???? ????? ??????. -- Omid Raha _______________________________________________ Python-ir mailing list Python-ir at python.org http://mail.python.org/mailman/listinfo/python-ir -------------- next part -------------- An HTML attachment was scrubbed... URL: From miladmovie at gmail.com Sat Jul 30 07:48:56 2011 From: miladmovie at gmail.com (Milad Rastian) Date: Sat, 30 Jul 2011 13:48:56 +0800 Subject: [Python-ir] Default ordering in Django tables In-Reply-To: References: Message-ID: ????? ?? ????? ??? ??? ????? ???? ?? ?? ????? ???? ??????? 2011/7/30 Ramin Najjarbashi > > ?? ????? ??? order by ?????? ???? ??? ??? ?? ????? ???? ?????? ???? ?? ??? > ?? ???? ???? ??. ???? ?? ???? ????? ???? ????? ?? ???? ??? ????? ?? ?? > ???????? . ??? ????? ?? ?? ??? ?? ???? ???? ???? ?? ?? ?????? ???? ?? ???? > ??? ???? ?? ??????? ?? ?? ?? ??? ID ?? ??? Auto increment ?????? ????. > > 2011/7/29 Omid Raha > >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From mahdieh.saeed at gmail.com Sat Jul 30 14:35:54 2011 From: mahdieh.saeed at gmail.com (mahdieh saeed) Date: Sat, 30 Jul 2011 17:05:54 +0430 Subject: [Python-ir] Default ordering in Django tables In-Reply-To: References: Message-ID: ?? ???? ???????? ?? ???? ??? ?? ??? ????? ??? ??????? ?? ?????? ????? ??? ?? SELECT ?? ORDER By ?????? ?? ???? ??? ??? ?? ????? ???? ????? ???? ?? ??? ?? ???? ???? ?? . ??? ???? ?? ?? ?? ???? ????? ??? ??? ??? ???? ?? ???? ORDER By ??? ??? ????? ??? ??? ?? ?????? ???? ? ?? ?? SELECT ???? ???? ?????? ????? ??? Performance query ??? ????? ???? ?????? ?? ???? ??? query ?? LIMIT ????? ???? ???? ??? ?????? ?? Primary key ???? ?? ???? ?????? ??? ???? ???????? ??? ??? ????? ?? SELECT ???? ??? ?? Order By ?? ???? ???? ????? Performance ??? ??????. ????? ??????? ?????? ?? ?????? ??? ???? ?? ?? ?????? ?? ??? ??? ??????? ????. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammad at efazati.org Sat Jul 30 13:58:33 2011 From: mohammad at efazati.org (mohammad Efazati) Date: Sat, 30 Jul 2011 16:28:33 +0430 Subject: [Python-ir] =?utf-8?b?2KzZhNiz2Ycg2K/ZiNmFINm+2KfaryDYqtmH2LE=?= =?utf-8?b?2KfZhg==?= Message-ID: ???? ??? ??? ????? ( ???????? ?? ????? ???) ?? ???? ?????? ????? ?? ?? ?? ???? ????? ????? ?????? ??? ?????? ??? ???? ??? ???? ????? ?? ? ?????? ????? ?- ???? ? ?? ? ?- ???? ?:?? ?? ?:?? ?? ??? ????? ????? ??????? ?? ?? ??? ???? ???? ?? ???? ???? ??? ???? ????? ?? ????? ????? ???? -------------- ?? ???? ??????? http://www.efazati.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From mahdieh.saeed at gmail.com Sat Jul 30 15:05:05 2011 From: mahdieh.saeed at gmail.com (mahdieh saeed) Date: Sat, 30 Jul 2011 17:35:05 +0430 Subject: [Python-ir] =?utf-8?b?RndkOiAg2KzZhNiz2Ycg2K/ZiNmFINm+2KfaryA=?= =?utf-8?b?2KrZh9ix2KfZhg==?= In-Reply-To: References: Message-ID: ?? ??? ?? ??? ??? ???? ?????? ???? ????? ? ?? ? ?? ??? ?-? ???? ?????? ???? -------------- next part -------------- An HTML attachment was scrubbed... URL: From aa_eng02 at yahoo.com Sat Jul 30 19:09:59 2011 From: aa_eng02 at yahoo.com (amir abouhamze) Date: Sat, 30 Jul 2011 10:09:59 -0700 (PDT) Subject: [Python-ir] =?utf-8?b?IEZ3ZDogINis2YTYs9mHINiv2YjZhSDZvtin2q8g?= =?utf-8?b?2KrZh9ix2KfZhg==?= In-Reply-To: <1312045739.90926.YahooMailNeo@web59906.mail.ac4.yahoo.com> References: <1312045739.90926.YahooMailNeo@web59906.mail.ac4.yahoo.com> Message-ID: <1312045799.44934.YahooMailNeo@web59901.mail.ac4.yahoo.com> !!??? ????? ????? ????? ???? ?????? ????? ?????? ?? ????? ??? ????? ?? ???? ????? From: mahdieh saeed To: python-ir at python.org Sent: Saturday, July 30, 2011 5:35 PM Subject: [Python-ir] Fwd: ???? ??? ??? ????? ?? ??? ?? ??? ??? ???? ?????? ???? ????? ? ?? ? ?? ??? ?-? ???? ?????? ???? _______________________________________________ Python-ir mailing list Python-ir at python.org http://mail.python.org/mailman/listinfo/python-ir -------------- next part -------------- An HTML attachment was scrubbed... URL: From mostafa.rokooie at gmail.com Sat Jul 30 14:35:27 2011 From: mostafa.rokooie at gmail.com (Mostafa Rokooie) Date: Sat, 30 Jul 2011 17:05:27 +0430 Subject: [Python-ir] (no subject) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From ehsan.khoddam at gmail.com Sat Jul 30 14:35:50 2011 From: ehsan.khoddam at gmail.com (Ehsan Khoddam Mohammadi) Date: Sat, 30 Jul 2011 17:05:50 +0430 Subject: [Python-ir] (no subject) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From ramin.najarbashi at gmail.com Sat Jul 30 21:00:01 2011 From: ramin.najarbashi at gmail.com (Ramin Najjarbashi) Date: Sat, 30 Jul 2011 14:00:01 -0500 Subject: [Python-ir] eshkal Message-ID: chera matne email ha nemid? to0 khode Archive Mailing List ham nist! On Sat, Jul 30, 2011 at 7:35 AM, Ehsan Khoddam Mohammadi < ehsan.khoddam at gmail.com> wrote: > > > > _______________________________________________ > Python-ir mailing list > Python-ir at python.org > http://mail.python.org/mailman/listinfo/python-ir > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bayazee at gmail.com Sun Jul 31 08:50:47 2011 From: bayazee at gmail.com (.:: Mehdi Bayazee ::.) Date: Sun, 31 Jul 2011 11:20:47 +0430 Subject: [Python-ir] emaile testi ! Message-ID: email test ! sorry -- Regards, Mehdi Bayazee -------------- next part -------------- An HTML attachment was scrubbed... URL: From bayazee at gmail.com Sun Jul 31 08:52:52 2011 From: bayazee at gmail.com (.:: Mehdi Bayazee ::.) Date: Sun, 31 Jul 2011 11:22:52 +0430 Subject: [Python-ir] =?utf-8?b?RndkOiDYrNmE2LPZhyDYr9mI2YUg2b7Yp9qvINiq?= =?utf-8?b?2YfYsdin2YY=?= In-Reply-To: <1312045799.44934.YahooMailNeo@web59901.mail.ac4.yahoo.com> References: <1312045739.90926.YahooMailNeo@web59906.mail.ac4.yahoo.com> <1312045799.44934.YahooMailNeo@web59901.mail.ac4.yahoo.com> Message-ID: ???? ????? ???? ????. ??? ?????? ?????? ????? ??? ????? ????? ?? ?? ??? ???? ????? ?? ??. 2011/7/30 amir abouhamze > !!??? ????? ????? ????? ???? ?????? > ????? ?????? ?? ????? ??? ????? ?? ???? ????? > > *From:* mahdieh saeed > *To:* python-ir at python.org > *Sent:* Saturday, July 30, 2011 5:35 PM > *Subject:* [Python-ir] Fwd: ???? ??? ??? ????? > > ?? ??? ?? ??? ??? ???? ?????? ???? ????? ? ?? ? ?? ??? ?-? ???? ?????? > ???? > > _______________________________________________ > Python-ir mailing list > Python-ir at python.org > http://mail.python.org/mailman/listinfo/python-ir > > > > > > _______________________________________________ > Python-ir mailing list > Python-ir at python.org > http://mail.python.org/mailman/listinfo/python-ir > > -- Regards, Mehdi Bayazee -------------- next part -------------- An HTML attachment was scrubbed... URL: From bayazee at gmail.com Sun Jul 31 08:55:48 2011 From: bayazee at gmail.com (.:: Mehdi Bayazee ::.) Date: Sun, 31 Jul 2011 11:25:48 +0430 Subject: [Python-ir] =?utf-8?b?RndkOiDYrNmE2LPZhyDYr9mI2YUg2b7Yp9qvINiq?= =?utf-8?b?2YfYsdin2YY=?= In-Reply-To: References: Message-ID: ?????? ???? ?????? ???? ???? ?? ????? ????? ???? 2011/7/30 mahdieh saeed ?? ??? ?? ??? ??? ???? ?????? ???? ????? ? ?? ? ?? ??? ?-? ???? ?????? ???? _______________________________________________ Python-ir mailing list Python-ir at python.org http://mail.python.org/mailman/listinfo/python-ir -- Regards, Mehdi Bayazee -------------- next part -------------- An HTML attachment was scrubbed... URL: From bayazee at gmail.com Sun Jul 31 08:57:19 2011 From: bayazee at gmail.com (.:: Mehdi Bayazee ::.) Date: Sun, 31 Jul 2011 11:27:19 +0430 Subject: [Python-ir] =?utf-8?b?2K3ZhCDZhdi02qnZhCDZhduM2YQg2YTbjNiz2Ko=?= Message-ID: ???? ???????? ??? ??????? ??? ???? ?? ????? ???? ???? ? ???? ?? ?? ?? ????? ??? ??? ???? ???? ???? ?? ???? ????? ??? ????? ????? ???? ???? ???. ??? ???? ????? ??. -- Regards, Mehdi Bayazee -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohammad at efazati.org Sun Jul 31 08:59:58 2011 From: mohammad at efazati.org (mohammad Efazati) Date: Sun, 31 Jul 2011 11:29:58 +0430 Subject: [Python-ir] =?utf-8?b?RndkOiDYrNmE2LPZhyDYr9mI2YUg2b7Yp9qvINiq?= =?utf-8?b?2YfYsdin2YY=?= In-Reply-To: References: Message-ID: ????? ?? ???? ? ?? ? ???? ???? ??? ???? ???? ??? ?? ????????? :D ????? ???. 2011/7/31 .:: Mehdi Bayazee ::. ?????? ???? ?????? ???? ???? ?? ????? ????? ???? 2011/7/30 mahdieh saeed ?? ??? ?? ??? ??? ???? ?????? ???? ????? ? ?? ? ?? ??? ?-? ???? ?????? ???? _______________________________________________ Python-ir mailing list Python-ir at python.org http://mail.python.org/mailman/listinfo/python-ir -- Regards, Mehdi Bayazee _______________________________________________ Python-ir mailing list Python-ir at python.org http://mail.python.org/mailman/listinfo/python-ir -- -------------- ?? ???? ??????? http://www.efazati.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohsen at pahlevanzadeh.org Sun Jul 31 09:09:57 2011 From: mohsen at pahlevanzadeh.org (Mohsen Pahlevanzadeh) Date: Sun, 31 Jul 2011 11:39:57 +0430 Subject: [Python-ir] =?utf-8?b?W1NQQU1dICAgINis2YTYs9mHINiv2YjZhSDZvtin?= =?utf-8?b?2q8g2KrZh9ix2KfZhg==?= In-Reply-To: References: Message-ID: <1312096197.2318.3.camel@debian> ????? ? ?????. On Sat, 2011-07-30 at 16:28 +0430, mohammad Efazati wrote: > > > -------------- http://www.efazati.org > > > > _______________________________________________ > Python-ir mailing list > Python-ir at python.org > http://mail.python.org/mailman/listinfo/python-ir -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 316 bytes Desc: This is a digitally signed message part URL: From bayazee at gmail.com Sun Jul 31 13:11:06 2011 From: bayazee at gmail.com (.:: Mehdi Bayazee ::.) Date: Sun, 31 Jul 2011 15:41:06 +0430 Subject: [Python-ir] Tehran PUG #2 Message-ID: ???? ??? ?? ??????? ????? ??? ???? ?? ???? ??? ???? ??????? ?????? ??? ???? ? ???? ?? ???? ? ?? ? ?? ???? ??? ???? ????? ???. ?????? ??? ?? ???? ?? ?? ????? ????? ?? ?????? ???? ?? ???? ??????? ?? ??. ???? ?? ???? ??? ?? ???? ??????? ?????? ???? ??? ???????? ???? ? ?????? ???. ????: ??? ??????? ????? ??????? ???? - ???? ???? - ???? ? ???? ??????? ???? ? ???? ??? ???????: http://bayan.tel ?? ??? ???? ????? ??? ??? ????? ?? ?????: ???? ????? - ????? - ?????:? ?????? ?? ???? ??? ???? ???? ??????? - ?????: ??????? ? ??? ?????? ?? ?????? ? ?????? ?? ???? Workshop. ???? ?????: Object Oriented Programming ?????? ???? ??? ?? ???? ?? ??????? ??? ???? ??? ??? ???? ? ... ?? ????? ?????. -- Regards, Mehdi Bayazee -------------- next part -------------- An HTML attachment was scrubbed... URL: From alireza.mashayekhi at gmail.com Sun Jul 31 13:26:05 2011 From: alireza.mashayekhi at gmail.com (ALIREZA MASHAYEKHI) Date: Sun, 31 Jul 2011 03:26:05 -0800 Subject: [Python-ir] Python-ir Digest, Vol 5, Issue 6 In-Reply-To: References: Message-ID: ???? ?? ????? ????? ???? ???? ?? ???? ???? ??? ????? ???? ???? ?? ??? ????? ?????? ???? ???? ?? ???? ???? ?????? ???? ? ?? ??? ?? ?? ???? ???? ?? ??? ???? ????? ?? ???? ???? ?? ???? ???? ? ?? ?? ???? ???? ????? ???? ????? ??? ?????? ??? ?? ?? ??? ?? ???? ????? ???? ???? ???? ?? ????? ????? ??? ??? ????? ?? ?? ?? ??? ???? On 7/30/11, python-ir-request at python.org wrote: > Send Python-ir mailing list submissions to > python-ir at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/python-ir > or, via email, send a message with subject or body 'help' to > python-ir-request at python.org > > You can reach the person managing the list at > python-ir-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Python-ir digest..." >