Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread matt . doolittle33
On Friday, December 27, 2013 7:25:42 PM UTC-5, Cameron Simpson wrote: On 27Dec2013 07:40, matt.doolittl...@gmail.com matt.doolittl...@gmail.com wrote: I am on Ubuntu 12.10. I am still working with the 2 decimal places. Sometime ago i had this issue and I forget how i solved it.

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread matt . doolittle33
On Friday, December 27, 2013 1:49:54 PM UTC-5, Ned Batchelder wrote: On 12/27/13 1:09 PM, matt.doolittl...@gmail.com wrote: On Friday, December 27, 2013 11:27:58 AM UTC-5, Roy Smith wrote: In article 0c33b7e4-edc9-4e1e-b919-fec210c92...@googlegroups.com,

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Ned Batchelder
On 12/29/13 9:44 PM, matt.doolittl...@gmail.com wrote: On Friday, December 27, 2013 7:25:42 PM UTC-5, Cameron Simpson wrote: On 27Dec2013 07:40, matt.doolittl...@gmail.com matt.doolittl...@gmail.com wrote: I am on Ubuntu 12.10. I am still working with the 2 decimal places. Sometime ago

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Ned Batchelder
On 12/30/13 7:50 AM, Ned Batchelder wrote: BTW, I said something very similar in this thread 2.5 days ago: https://mail.python.org/pipermail/python-list/2013-December/663454.html I get the feeling not all messages are flowing to all places. Oops, and now Matt's reply to that message has just

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread matt . doolittle33
On Monday, December 30, 2013 8:01:21 AM UTC-5, Ned Batchelder wrote: On 12/30/13 7:50 AM, Ned Batchelder wrote: BTW, I said something very similar in this thread 2.5 days ago: https://mail.python.org/pipermail/python-list/2013-December/663454.html I get the feeling not all messages

فيس بوك - facebook

2013-12-30 Thread essd
فيس بوك - facebook https://www.facebook.com/pages/%D9%86%D8%AA%D8%A7%D8%A6%D8%AC-%D8%A7%D9%84%D8%A7%D9%85%D8%AA%D8%AD%D8%A7%D9%86%D8%A7%D8%AA-%D9%88%D8%A7%D9%84%D8%AC%D8%A7%D9%85%D8%B9%D8%A7%D8%AA-%D9%88%D8%A7%D8%AC%D8%AA%D9%85%D8%A7%D8%B9%D9%8A%D8%A7%D8%AA/299719160065550?ref=hl# --

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Mark Lawrence
On 30/12/2013 12:16, matt.doolittl...@gmail.com wrote: On Friday, December 27, 2013 1:49:54 PM UTC-5, Ned Batchelder wrote: On 12/27/13 1:09 PM, matt.doolittl...@gmail.com wrote: On Friday, December 27, 2013 11:27:58 AM UTC-5, Roy Smith wrote: In article

PyDev 3.2.0 Released

2013-12-30 Thread Fabio Zadrozny
Hi All, PyDev 3.2.0 has been released Details on PyDev: http://pydev.org Details on its development: http://pydev.blogspot.com LiClipse (PyDev standalone with goodies such as support for Django Templates, Mako Templates, Html, Javascript, etc): http://brainwy.github.io/liclipse/ Release

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Roy Smith
In article mailman.4714.1388407860.18130.python-l...@python.org, Ned Batchelder n...@nedbatchelder.com wrote: A float's str() includes two decimal points of precision It's actually weirder than that. What str() appears to do is print some variable number of digits after the decimal place,

Re: PyDev 3.2.0 Released

2013-12-30 Thread Roy Smith
On Monday, December 30, 2013 8:16:03 AM UTC-5, Fabio Zadrozny wrote: [lots of stuff] What is PyDev? --- PyDev is a plugin that enables users to use Eclipse for Python... A suggestion for announcements of this type. Put the What is X part up front, so people can

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Cousin Stanley
On 30/12/2013 12:16, matt.doolittl...@gmail.com wrote: thanks a bunch. the %.6f was the cure. can you please point me to the doc for formatting time? Thanks! Would you please read and action this https://wiki.python.org/moin/GoogleGroupsPython to prevent us seeing the

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Mark Lawrence
On 30/12/2013 17:07, Cousin Stanley wrote: On 30/12/2013 12:16, matt.doolittl...@gmail.com wrote: thanks a bunch. the %.6f was the cure. can you please point me to the doc for formatting time? Thanks! Would you please read and action this

Re: cascading python executions only if return code is 0

2013-12-30 Thread Grant Edwards
On 2013-12-27, Roy Smith r...@panix.com wrote: In article mailman.4567.1387819120.18130.python-l...@python.org, Ethan Furman et...@stoneleaf.us wrote: Mostly I don't want newbies thinking Hey! I can use assertions for all my confidence testing! How about this one, that I wrote yesterday;

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Cousin Stanley
You might consider either turning off an option in your news client for including message in reply and/or snipping all but a few lines for context to prevent us from seeing the double line spacing all over again :-) Great idea, but one slight snag is the poster then doesn't see how

Dictionary

2013-12-30 Thread Bischoop
I have a txt file with some words, and need simply program that will print me words containing provided letters. For example: Type the letters: (I type: g,m,o) open the dictionary.txt check words containing:g,m,o in dictionary.txt if there are words containing: [g, m, o ] print

Re: Dictionary

2013-12-30 Thread Walter Hurry
On Mon, 30 Dec 2013 18:38:20 +, Bischoop wrote: I have a txt file with some words, and need simply program that will print me words containing provided letters. For example: Type the letters: (I type: g,m,o) open the dictionary.txt check words containing:g,m,o in

Re: need to print seconds from the epoch including the millisecond

2013-12-30 Thread Steven D'Aprano
Mark Lawrence wrote: On 30/12/2013 17:07, Cousin Stanley wrote: [...] Would you please read and action this https://wiki.python.org/moin/GoogleGroupsPython to prevent us seeing the double line spacing above, thanks. You might consider either turning off an option in your news client for

Spam trash sent to python-list from google-groups

2013-12-30 Thread Terry Reedy
In the last week, python list received the following from google-groups. vbf...@gmail.com via google-groups NOW Watch Hot Sexy Star Aishwarya rai Bathing Videos In All Angles http://permalink.gmane.org/gmane.comp.python.general/749545 hussainc1...@gmail.com via gg Sania Mirza Naked Pics at

Re: Spam trash sent to python-list from google-groups

2013-12-30 Thread Mark Lawrence
On 30/12/2013 19:12, Terry Reedy wrote: In the last week, python list received the following from google-groups. vbf...@gmail.com via google-groups NOW Watch Hot Sexy Star Aishwarya rai Bathing Videos In All Angles http://permalink.gmane.org/gmane.comp.python.general/749545

Blog about python 3

2013-12-30 Thread Mark Lawrence
http://alexgaynor.net/2013/dec/30/about-python-3/ may be of interest to some of you. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Idle Problems

2013-12-30 Thread rpucci2
Hi I just joined this list and have a question.I have python 3.3.3 and running it on a windows 7 computer.Python has been running good until recently.I can bring up python shell,but when I go to run a recently loaded program,the code comes up briefly on the screen and then disappears.Python

Re: Blog about python 3

2013-12-30 Thread Steven D'Aprano
On Mon, 30 Dec 2013 19:41:44 +, Mark Lawrence wrote: http://alexgaynor.net/2013/dec/30/about-python-3/ may be of interest to some of you. I don't know whether to thank you for the link, or shout at you for sending eyeballs to look at such a pile of steaming bullshit. I'd like to know

Re: Idle Problems

2013-12-30 Thread Tim Golden
On 30/12/2013 18:43, rpuc...@cox.net wrote: Hi I just joined this list and have a question.I have python 3.3.3 and running it on a windows 7 computer.Python has been running good until recently.I can bring up python shell,but when I go to run a recently loaded program,the code comes up briefly

Re: Idle Problems

2013-12-30 Thread bob gailer
On 12/30/2013 1:43 PM, rpuc...@cox.net wrote: Hi I just joined this list and have a question.I have python 3.3.3 and running it on a windows 7 computer.Python has been running good until recently.I can bring up python shell,but when I go to run a recently loaded program,the code comes up

Re: Blog about python 3

2013-12-30 Thread Mark Lawrence
On 30/12/2013 20:49, Steven D'Aprano wrote: On Mon, 30 Dec 2013 19:41:44 +, Mark Lawrence wrote: http://alexgaynor.net/2013/dec/30/about-python-3/ may be of interest to some of you. I don't know whether to thank you for the link, or shout at you for sending eyeballs to look at such a

Python 2.x and 3.x usage survey

2013-12-30 Thread Dan Stromberg
I keep hearing naysayers, nay saying about Python 3.x. Here's a 9 question, multiple choice survey I put together about Python 2.x use vs Python 3.x use. I'd be very pleased if you could take 5 or 10 minutes to fill it out. Here's the URL: https://www.surveymonkey.com/s/N5N5PG2 --

Re: Python 2.x and 3.x usage survey

2013-12-30 Thread Andrew Berg
On 2013.12.30 15:56, Dan Stromberg wrote: I keep hearing naysayers, nay saying about Python 3.x. Here's a 9 question, multiple choice survey I put together about Python 2.x use vs Python 3.x use. I'd be very pleased if you could take 5 or 10 minutes to fill it out. Here's the URL:

Re: Blog about python 3

2013-12-30 Thread Ethan Furman
On 12/30/2013 01:29 PM, Mark Lawrence wrote: On 30/12/2013 20:49, Steven D'Aprano wrote: On Mon, 30 Dec 2013 19:41:44 +, Mark Lawrence wrote: http://alexgaynor.net/2013/dec/30/about-python-3/ may be of interest to some of you. I don't know whether to thank you for the link, or shout at

Re: Python 2.x and 3.x usage survey

2013-12-30 Thread Chris Angelico
On Tue, Dec 31, 2013 at 8:56 AM, Dan Stromberg drsali...@gmail.com wrote: I keep hearing naysayers, nay saying about Python 3.x. Here's a 9 question, multiple choice survey I put together about Python 2.x use vs Python 3.x use. I'd be very pleased if you could take 5 or 10 minutes to fill it

Re: Blog about python 3

2013-12-30 Thread Chris Angelico
On Tue, Dec 31, 2013 at 9:38 AM, Ethan Furman et...@stoneleaf.us wrote: On 12/30/2013 01:29 PM, Mark Lawrence wrote: On 30/12/2013 20:49, Steven D'Aprano wrote: On Mon, 30 Dec 2013 19:41:44 +, Mark Lawrence wrote: http://alexgaynor.net/2013/dec/30/about-python-3/ may be of interest to

Re: Python 2.x and 3.x usage survey

2013-12-30 Thread Cameron Simpson
On 30Dec2013 19:16, Dennis Lee Bieber wlfr...@ix.netcom.com wrote: On Mon, 30 Dec 2013 16:14:53 -0600, Andrew Berg robotsondr...@gmail.com declaimed the following: On 2013.12.30 15:56, Dan Stromberg wrote: I keep hearing naysayers, nay saying about Python 3.x. Here's a 9 question,

Re: Python 3.3.2 Shell Message

2013-12-30 Thread Stan Ward
Thanks Ned. That did the trick! Jason Briggs, author of Python of Kids, gave me the same answer. Happy to be over this hurdle. Thanks! Happy New Year!! -- https://mail.python.org/mailman/listinfo/python-list

Re: Blog about python 3

2013-12-30 Thread Mark Lawrence
On 30/12/2013 22:38, Ethan Furman wrote: On 12/30/2013 01:29 PM, Mark Lawrence wrote: On 30/12/2013 20:49, Steven D'Aprano wrote: On Mon, 30 Dec 2013 19:41:44 +, Mark Lawrence wrote: http://alexgaynor.net/2013/dec/30/about-python-3/ may be of interest to some of you. I don't know

Re: Blog about python 3

2013-12-30 Thread Chris Angelico
On Tue, Dec 31, 2013 at 3:38 PM, Mark Lawrence breamore...@yahoo.co.uk wrote: You never know, we might even end up with a thread whereby the discussion is Python, the whole Python and nothing but the Python. What, on python-list??! [1] That would be a silly idea. We should avoid such theories

Re: Blog about python 3

2013-12-30 Thread Ethan Furman
On 12/30/2013 08:25 PM, Devin Jeanpierre wrote: On Mon, Dec 30, 2013 at 2:38 PM, Ethan Furman et...@stoneleaf.us wrote: Wow -- another steaming pile! Mark, are you going for a record? ;) Indeed. Every post that disagrees with my opinion and understanding of the situation is complete BS and

Re: Blog about python 3

2013-12-30 Thread Mark Lawrence
On 31/12/2013 01:09, Chris Angelico wrote: On Tue, Dec 31, 2013 at 9:38 AM, Ethan Furman et...@stoneleaf.us wrote: On 12/30/2013 01:29 PM, Mark Lawrence wrote: On 30/12/2013 20:49, Steven D'Aprano wrote: On Mon, 30 Dec 2013 19:41:44 +, Mark Lawrence wrote:

Fwd: Mailing list erraticness

2013-12-30 Thread Ethan Furman
Accidental off-list reply. :) On Tue, Dec 31, 2013 at 10:03 AM, Ethan Furman wrote: On 12/30/2013 08:25 PM, Devin Jeanpierre wrote: On Mon, Dec 30, 2013 at 2:38 PM, Ethan Furman wrote: Wow -- another steaming pile! Mark, are you going for a record? ;) Indeed. Every post that

[issue20095] what is that result!?

2013-12-30 Thread Liam Marsh
New submission from Liam Marsh: when does 3*0.1 make 0.30004 ? YES it is the same program! -- components: Regular Expressions messages: 207092 nosy: Liam.Marsh, ezio.melotti, mrabarnett priority: normal severity: normal status: open title: what is that result!? versions:

[issue7464] circular reference in HTTPResponse by urllib2

2013-12-30 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: No, the socket is actually closed when response's close() method is called. The problem is that the HTTPResponse object, buried deep within the nested classes returned from do_open(), has a circular reference, and _it_ will not go away. No one is

[issue20095] what is that result!?

2013-12-30 Thread Mark Dickinson
Mark Dickinson added the comment: This is how binary floating-point arithmetic works. See http://docs.python.org/3/tutorial/floatingpoint.html for some explanations. -- nosy: +mark.dickinson resolution: - invalid status: open - closed ___ Python

[issue20095] what is that result!?

2013-12-30 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- components: +Interpreter Core -Regular Expressions ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20095 ___

[issue19732] python fails to build when configured with --with-system-libmpdec

2013-12-30 Thread Stefan Krah
Stefan Krah added the comment: I wanted to force people to link explicitly with -l:libmpdec.so.2 in order to avoid picking up a wrong version. But indeed that won't work since the GNU linker happily picks up the static lib with -lmpdec if libmpdec.so is missing. The docs are part of my website

[issue20095] what is that result!?

2013-12-30 Thread Liam Marsh
Liam Marsh added the comment: can you add an approximation of the result in the command? (ex: the biggest precision in the values is 0.1, so it won't show after 4.0) meen while, thank you. -- ___ Python tracker rep...@bugs.python.org

[issue18314] Have os.unlink remove junction points

2013-12-30 Thread Kim Gräsman
Kim Gräsman added the comment: I really needed the well-wishing with regard to buffer sizing :-) Here's a patch for a couple of fronts: - Teach os.unlink about junction points - Introduce _winapi.CreateJunction - Introduce a new test suite in test_os.py for junction points I pulled the

[issue20047] bytearray partition bug

2013-12-30 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- nosy: +brett.cannon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20047 ___ ___ Python-bugs-list

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread Ethan Furman
Ethan Furman added the comment: Better doc enhancement thanks to R. David Murray (thanks!). -- Added file: http://bugs.python.org/file33289/issue19995.stoneleaf.03.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19995

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19995 ___ ___

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread Eric V. Smith
Eric V. Smith added the comment: While I think this is an improvement, I don't think we can make this change in behavior at this stage in 3.4. Won't it have to go in 3.5? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19995

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread Ethan Furman
Ethan Furman added the comment: I can see why we wouldn't want to make this change in a point release, but this is a feature release we're talking about and this seems like buggy behavior: -- hex(3.14) Traceback (most recent call last): File stdin, line 1, in module TypeError: 'float' object

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread Eric V. Smith
Eric V. Smith added the comment: I agree the behavior is bad and should be fixed. But it's a new feature that will break existing code, and 3.4 is in beta, and therefore feature freeze. Unfortunately, I think this has to go into 3.5, unless you can get Larry to grant you an exception.

[issue18310] itertools.tee() can't accept keyword arguments

2013-12-30 Thread py.user
Changes by py.user bugzilla-mail-...@yandex.ru: -- status: closed - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18310 ___ ___

[issue18310] itertools.tee() can't accept keyword arguments

2013-12-30 Thread py.user
py.user added the comment: for example http://docs.python.org/3/library/itertools.html#itertools.permutations has same description and it's a keyword compare itertools.tee(iterable, n=2) itertools.permutations(iterable, r=None) itertools.permutations('abc') itertools.permutations object at

[issue18310] itertools.tee() can't accept keyword arguments

2013-12-30 Thread py.user
Changes by py.user bugzilla-mail-...@yandex.ru: -- status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18310 ___ ___

[issue20096] Mention modernize and future in Python 2/3 porting HOWTO

2013-12-30 Thread Brett Cannon
New submission from Brett Cannon: https://github.com/mitsuhiko/python-modernize http://python-future.org/ Should also restructure to de-emphasize 2to3 and other approaches. In all honesty it should probably be nearly gutted to just here are examples of how to write Python 2/3 compatible code,

[issue20096] Mention modernize and future in Python 2/3 porting HOWTO

2013-12-30 Thread Barry A. Warsaw
Changes by Barry A. Warsaw ba...@python.org: -- nosy: +barry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20096 ___ ___ Python-bugs-list mailing

[issue18604] Consolidate gui available checks in test.support

2013-12-30 Thread Zachary Ware
Zachary Ware added the comment: Here's a patch for 3.4, and some sample verbose output[1] from the AMD64 Win7 buildbot (which runs buildbot as a service, and thus has no gui available). [1] http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%20custom/builds/40/steps/test/logs/stdio

[issue20097] Bad use of `self` in importlib

2013-12-30 Thread Ram Rachum
New submission from Ram Rachum: There's a bad usage of `self` here: http://hg.python.org/cpython/file/fd846837492d/Lib/importlib/_bootstrap.py#l1431 `self` isn't defined because it's a class method. -- components: Library (Lib) messages: 207105 nosy: cool-RR priority: normal

[issue20097] Bad use of `self` in importlib

2013-12-30 Thread Christian Heimes
Christian Heimes added the comment: I don't see a class method at line 1431. -- nosy: +christian.heimes ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20097 ___

[issue20097] Bad use of `self` in importlib

2013-12-30 Thread Ram Rachum
Ram Rachum added the comment: Sorry, bad link, this is the right link: http://hg.python.org/cpython/file/fd846837492d/Lib/importlib/_bootstrap.py#l1409 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20097

[issue6516] reset owner/group to root for distutils tarballs

2013-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 83f12a9593db by Zachary Ware in branch 'default': Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) http://hg.python.org/cpython/rev/83f12a9593db -- ___ Python tracker

[issue19544] Port distutils as found in Python 2.7 to Python 3.x.

2013-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 83f12a9593db by Zachary Ware in branch 'default': Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) http://hg.python.org/cpython/rev/83f12a9593db -- ___ Python tracker

[issue20097] Bad use of `self` in importlib

2013-12-30 Thread Christian Heimes
Christian Heimes added the comment: Thanks! :) -- assignee: - brett.cannon nosy: +brett.cannon stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20097 ___

[issue19619] Blacklist base64, hex, ... codecs from bytes.decode() and str.encode()

2013-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e10367c88ce by Zachary Ware in branch 'default': Issue19619: skip zlib error test when zlib not available http://hg.python.org/cpython/rev/0e10367c88ce -- ___ Python tracker rep...@bugs.python.org

[issue6516] reset owner/group to root for distutils tarballs

2013-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2a872126f4a1 by Zachary Ware in branch 'default': Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) http://hg.python.org/cpython/rev/2a872126f4a1 -- ___ Python tracker

[issue19544] Port distutils as found in Python 2.7 to Python 3.x.

2013-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2a872126f4a1 by Zachary Ware in branch 'default': Issue #19544, #6516: check ZLIB_SUPPORT, not zlib (which might not be bound) http://hg.python.org/cpython/rev/2a872126f4a1 -- ___ Python tracker

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread R. David Murray
R. David Murray added the comment: We don't usually *break* existing working code even if the output is wrong. If you want to make '%x' % 3.14, etc, raise an error, I think you we should go through a deprecation period first. The deprecation messages should, of course, be added now. In

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread Ethan Furman
Ethan Furman added the comment: I can live with the deprecation route. I'll create a patch today or tomorrow for that. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19995 ___

[issue20097] Bad use of `self` in importlib

2013-12-30 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- stage: needs patch - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20097 ___ ___

[issue20097] Bad use of `self` in importlib

2013-12-30 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- dependencies: +Add tests for importlib.machinery.WindowsRegistryFinder ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20097 ___

[issue20098] email policy needs a mangle_from setting

2013-12-30 Thread R. David Murray
New submission from R. David Murray: I missed this. It still defaults to True in Generator. It should default to False in the new policies (but True in compat32). -- components: email keywords: easy messages: 207116 nosy: barry, r.david.murray priority: normal severity: normal stage:

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2013-12-30 Thread Larry Hastings
Larry Hastings added the comment: I wouldn't call this a new feature--it's definitely a bug fix. So the feature freeze rule does not automatically apply. I definitely wouldn't permit this once we reach release candidates, but we aren't there yet. I get the impression that it will break