Unpickle patch: cannot instantiate 'WindowsPath' on your system

2019-10-23 Thread edgar
Hello, I hope that I am writing to the right list. Python 3.7.4 on GNU/Linux Parabola 5.3.1-gnu-1 x86_64 AMD Issue: I got a .pickle which had some WindowsPath inside. I was unable to unpickle like this: ┌ │ import pickle as pkl │ from pathlib import Path, PureWindowsPath, PurePath, PurePo

Re: overlooked patch?

2018-06-28 Thread Terry Reedy
Yep. We do not have enough people reviewing patches. Perhaps you could do so with this one. On 6/28/2018 12:02 PM, Marco Prosperi wrote: hello, just to give evidence that there is a bug in python 3.6/3.7 for which there is a patch prepared a long time ago but probably it has never been

overlooked patch?

2018-06-28 Thread Marco Prosperi
hello, just to give evidence that there is a bug in python 3.6/3.7 for which there is a patch prepared a long time ago but probably it has never been applied because the status/stage of the bug is 'needs patch'. https://bugs.python.org/issue29097 Marco -- https://mail.python.o

To mock/patch or not to, was Re: doctest random output?

2017-08-29 Thread Peter Otten
Steven D'Aprano wrote: > Wait... are you saying that importing test_mymodule monkey-patches the > current library? And doesn't un-patch it afterwards? That's horrible. There's something in the library, unittest.mock that makes this relatively safe -- if not

Re: Monkey patch an entire file in a python package

2015-03-24 Thread enjoyaol
Le mardi 24 mars 2015 13:11:33 UTC+1, Chris Angelico a écrit : > On Tue, Mar 24, 2015 at 10:50 PM, wrote: > > I am trying to use multiprocessing with freeze. It appears there is some > > bug when using multiprocessing on freezed python code on windows platforms. > > Ther

Re: Monkey patch an entire file in a python package

2015-03-24 Thread Chris Angelico
On Tue, Mar 24, 2015 at 10:50 PM, wrote: > I am trying to use multiprocessing with freeze. It appears there is some bug > when using multiprocessing on freezed python code on windows platforms. There > is this patch which made its way to python 3.2, and works in 2.7: > > http://

Monkey patch an entire file in a python package

2015-03-24 Thread enjoyaol
This question is about python 2.7 on Windows 7 I am trying to use multiprocessing with freeze. It appears there is some bug when using multiprocessing on freezed python code on windows platforms. There is this patch which made its way to python 3.2, and works in 2.7: http://bugs.python.org

Re: no patch for Python 3.4.2 ?

2015-02-25 Thread Chris Angelico
On Thu, Feb 26, 2015 at 5:19 AM, Blaxton wrote: > I don't see any file named patch* in Python 3.4.2 source file. > does this mean there is no patch available for this release ? Not sure what you mean. Are you looking for a single massive patch which updates your 3.4.1 source code t

no patch for Python 3.4.2 ?

2015-02-25 Thread Blaxton
Hi I don't see any file named patch* in Python 3.4.2 source file.does this mean there is no patch available for this release ? Thanks DB-- https://mail.python.org/mailman/listinfo/python-list

Re: How to apply python patch for issue9729

2015-02-24 Thread Grant Edwards
On 2015-02-24, Chris Angelico wrote: > On Tue, Feb 24, 2015 at 8:09 AM, Sada Shirol wrote: >> Upon some research found that I need to apply below patch: >> >> http://bugs.python.org/issue9729 >> >> How do I apply a patch to python 2.6.6 on Linux? > > Hmm.

Re: i have to create this patch in python but wasnt having any luck i was wondering if anyone had a solution?

2014-12-02 Thread Joel Goldstick
On Mon, Dec 1, 2014 at 2:28 PM, python help required <19aada...@gmail.com> wrote: > def penultimatePatch(): > > win = GraphWin("Patch1",(100), 100) > amountOfCircles = 5 > > #Filled Red Circles > fillCircle = Circle(Point(20,20)+100/amountOfCircles) > fillCircle.draw(win) >

i have to create this patch in python but wasnt having any luck i was wondering if anyone had a solution?

2014-12-01 Thread python help required
def penultimatePatch(): win = GraphWin("Patch1",(100), 100) amountOfCircles = 5 #Filled Red Circles fillCircle = Circle(Point(20,20)+100/amountOfCircles) fillCircle.draw(win) fillCircle.setFill("red") #Verticle white rectangles rectangleVerticle1 = Rectangle(Point

Re: Trouble getting full response content from PATCH request

2014-11-20 Thread Cameron Simpson
On 19Nov2014 17:17, John Gordon wrote: In Cameron Simpson writes: >The API uses the HTTP PATCH operation to set user passwords, and in >case of unacceptable passwords, the response is supposed to be an HTML >document containing a diagnostic message in the tag. > >When I subm

Re: Trouble getting full response content from PATCH request

2014-11-19 Thread John Gordon
In Cameron Simpson writes: > >The API uses the HTTP PATCH operation to set user passwords, and in > >case of unacceptable passwords, the response is supposed to be an HTML > >document containing a diagnostic message in the tag. > > > >When I submit my test data

Re: Trouble getting full response content from PATCH request

2014-11-18 Thread Cameron Simpson
On 17Nov2014 20:26, John Gordon wrote: I'm working with a third-party API and I'm seeing some behavior that I can't explain. The API uses the HTTP PATCH operation to set user passwords, and in case of unacceptable passwords, the response is supposed to be an HTML docume

Trouble getting full response content from PATCH request

2014-11-17 Thread John Gordon
I'm working with a third-party API and I'm seeing some behavior that I can't explain. The API uses the HTTP PATCH operation to set user passwords, and in case of unacceptable passwords, the response is supposed to be an HTML document containing a diagnostic message in the tag. W

Re: XML Patch

2014-10-27 Thread Nicholas Cole
On Mon, Oct 27, 2014 at 7:28 AM, Stefan Behnel wrote: > Hi, > > please keep this on-list. Sorry about that. Wrong button! [snip] >> Yes - I want to store a series of XML diffs/patches and be able to >> generate documents by applying them. > > Could you be a little more specific? There are lots

Re: XML Patch

2014-10-27 Thread Stefan Behnel
xml-aware "diff" files, and then use those to patch >>> documents. In other words, I'd like something similar to the Google >>> diff-match-patch tools, but something which is XML aware. >>> >>> I can see several projects on Pypi that can genera

Re: XML Patch

2014-10-26 Thread Stefan Behnel
Nicholas Cole schrieb am 26.10.2014 um 18:00: > I'm looking for a python library that can parse XML Documents and > create xml-aware "diff" files, and then use those to patch documents. > In other words, I'd like something similar to the Google > diff-match-patch t

Re: XML Patch

2014-10-26 Thread Joel Goldstick
On Sun, Oct 26, 2014 at 1:00 PM, Nicholas Cole wrote: > Hi All, > > I'm looking for a python library that can parse XML Documents and > create xml-aware "diff" files, and then use those to patch documents. > In other words, I'd like something similar to the G

XML Patch

2014-10-26 Thread Nicholas Cole
Hi All, I'm looking for a python library that can parse XML Documents and create xml-aware "diff" files, and then use those to patch documents. In other words, I'd like something similar to the Google diff-match-patch tools, but something which is XML aware. I can see seve

Re: patch request for os.urandom()

2014-07-17 Thread Christian Heimes
On 17.07.2014 20:34, Paul Rubin wrote: > Could os.urandom() be patched to use the new Linux getrandom() system > call on systems where it is available? Further info: > > http://lists.openwall.net/linux-kernel/2014/07/17/235 > > I've stopped posting to the Python bug tracker because the password

Re: patch request for os.urandom()

2014-07-17 Thread Sturla Molden
On 17/07/14 20:34, Paul Rubin wrote: Could os.urandom() be patched to use the new Linux getrandom() system call on systems where it is available? /dev/urandom exists on other Unix-like systems as well. Right now os.urandom only uses special system calls on Windows. Sturla -- https://mail.

Re: patch request for os.urandom()

2014-07-17 Thread Ned Deily
In article <7xlhrrkf6h@ruckus.brouhaha.com>, Paul Rubin wrote: > I've stopped posting to the Python bug tracker because the password > management issues became too annoying. Can you elaborate on the problems you are having? -- Ned Deily, n...@acm.org -- https://mail.python.org/mailman/

Re: patch request for os.urandom()

2014-07-17 Thread Chris Angelico
hen you can take it to python-dev with "This is supported by Linux 3.x.y" (or probably "Linux 3.x"), and preferably a patch that includes something in ./configure to probe for availability. Patches speak louder than words :) ChrisA -- https://mail.python.org/mailman/listinfo/python-list

patch request for os.urandom()

2014-07-17 Thread Paul Rubin
Could os.urandom() be patched to use the new Linux getrandom() system call on systems where it is available? Further info: http://lists.openwall.net/linux-kernel/2014/07/17/235 I've stopped posting to the Python bug tracker because the password management issues became too annoying. -- https://

patch for making distutils cross compile on win32

2013-12-17 Thread Robin Becker
I have struggled to get Python-3.3.3 distutils to cross compile win-amd64 on win32. For the specific command (bdist_wininst) I am using the patch below seems to fix things so I can build amd64 binaries on win32. The code seems a bit schizophrenic about whether this is supposed to work, but

Re: Script for new contributors to check the patch

2013-12-16 Thread Mark Lawrence
On 17/12/2013 02:46, shankha wrote: Hi, For people who wish to contribute is there a script which checks if the patch is good and the test results are matching with the baseline and basically says yes or no about good or not good to merge. -- Thanks Gudge I think you'd be better off a

Script for new contributors to check the patch

2013-12-16 Thread shankha
Hi, For people who wish to contribute is there a script which checks if the patch is good and the test results are matching with the baseline and basically says yes or no about good or not good to merge. -- Thanks Gudge On Tue, Dec 17, 2013 at 8:11 AM, shankha wrote: > Hi, > For peop

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread rurpy
On 12/10/2013 10:36 AM, David Robinow wrote: > On Tue, Dec 10, 2013 at 11:59 AM, wrote: >> On 12/10/2013 09:22 AM, Mark Lawrence wrote: > ... >> Mark is one of the resident trolls here. Among his other traits >> is his delusion that he is Lord High Commander of this list. >> Like with other trol

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread David Robinow
On Tue, Dec 10, 2013 at 11:59 AM, wrote: > On 12/10/2013 09:22 AM, Mark Lawrence wrote: ... > Mark is one of the resident trolls here. Among his other traits > is his delusion that he is Lord High Commander of this list. > Like with other trolls, the best advice is to ignore him (which > I'm not

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Grant Edwards
On 2013-12-10, Chris Angelico wrote: > On Wed, Dec 11, 2013 at 3:49 AM, rusi wrote: >> There are 10 kinds of people in the world: those who understand >> binary and those who dont. > > There are 10 kinds of people in the world: those who understand Gray > Code, those who don't, and those who conf

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Mark Lawrence
On 10/12/2013 16:59, ru...@yahoo.com wrote: On 12/10/2013 09:22 AM, Mark Lawrence wrote: On 10/12/2013 15:48, ru...@yahoo.com wrote: [...] There is no "you might want to" about it. There are two options here, either read and action the page so we don't see double spaced crap amongst other thing

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread rurpy
On 12/10/2013 09:22 AM, Mark Lawrence wrote: > On 10/12/2013 15:48, ru...@yahoo.com wrote: > [...] > There is no "you might want to" about it. There are two options here, > either read and action the page so we don't see double spaced crap > amongst other things, use another tool, or don't post.

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Mark Lawrence
On 10/12/2013 16:49, rusi wrote: On Tuesday, December 10, 2013 9:52:47 PM UTC+5:30, Mark Lawrence wrote: On 10/12/2013 15:48, rurpy wrote: On 12/10/2013 06:47 AM, Chris Angelico wrote: On Wed, Dec 11, 2013 at 12:35 AM, harish.barvekar wrote: Also: You appear to be using Google Groups, which i

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Chris Angelico
On Wed, Dec 11, 2013 at 3:49 AM, rusi wrote: > There are 10 kinds of people in the world: those who understand > binary and those who dont. There are 10 kinds of people in the world: those who understand Gray Code, those who don't, and those who confuse it with binary. ChrisA -- https://mail.py

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread rusi
On Tuesday, December 10, 2013 9:52:47 PM UTC+5:30, Mark Lawrence wrote: > On 10/12/2013 15:48, rurpy wrote: > > On 12/10/2013 06:47 AM, Chris Angelico wrote: > >> On Wed, Dec 11, 2013 at 12:35 AM, harish.barvekar wrote: > >> Also: You appear to be using Google Groups, which is the Mos Eisley of >

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Mark Lawrence
On 10/12/2013 15:48, ru...@yahoo.com wrote: On 12/10/2013 06:47 AM, Chris Angelico wrote: On Wed, Dec 11, 2013 at 12:35 AM, wrote: Also: You appear to be using Google Groups, which is the Mos Eisley of the newsgroup posting universe. You'll do far better to instead use some other means of post

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread rurpy
On 12/10/2013 06:47 AM, Chris Angelico wrote: > On Wed, Dec 11, 2013 at 12:35 AM, wrote: > Also: You appear to be using Google Groups, which is the Mos Eisley of > the newsgroup posting universe. You'll do far better to instead use > some other means of posting, such as the mailing list: Using

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Mark Lawrence
On 10/12/2013 14:14, Chris Angelico wrote: On Wed, Dec 11, 2013 at 1:06 AM, Mark Lawrence wrote: On 10/12/2013 13:47, Chris Angelico wrote: On Wed, Dec 11, 2013 at 12:35 AM, wrote: Is this issue fixed. I am also facing the same issue of tunneling in https request. Please suggest how to pr

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Chris Angelico
On Wed, Dec 11, 2013 at 1:06 AM, Mark Lawrence wrote: > On 10/12/2013 13:47, Chris Angelico wrote: >> >> On Wed, Dec 11, 2013 at 12:35 AM, wrote: >>> >>> Is this issue fixed. I am also facing the same issue of tunneling in >>> https request. Please suggest how to proceed further >> >> >> You're

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Mark Lawrence
On 10/12/2013 13:47, Chris Angelico wrote: On Wed, Dec 11, 2013 at 12:35 AM, wrote: Is this issue fixed. I am also facing the same issue of tunneling in https request. Please suggest how to proceed further You're responding to something from 2009. It's highly likely things have changed.

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Mark Lawrence
On 10/12/2013 13:35, harish.barve...@gmail.com wrote: On Monday, July 20, 2009 11:28:53 PM UTC+5:30, tvashtar wrote: On Jul 20, 4:42 pm, Nike wrote: hi! It's looks like a ssl error . Under the following step to help u : 1. takes a simple code to confirm your pupose without ssl protocol.

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread Chris Angelico
On Wed, Dec 11, 2013 at 12:35 AM, wrote: > Is this issue fixed. I am also facing the same issue of tunneling in https > request. Please suggest how to proceed further You're responding to something from 2009. It's highly likely things have changed. Does the same code cause an error in Python 2

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2013-12-10 Thread harish . barvekar
On Monday, July 20, 2009 11:28:53 PM UTC+5:30, tvashtar wrote: > On Jul 20, 4:42 pm, Nike wrote: > > hi! > >  It's looks like a ssl error . Under the following step to help u : > >   1. takes a simple code to confirm your pupose without ssl protocol. > >   2. to confirm python version and extended

Re: Is it possible monkey patch like this?

2012-12-18 Thread Steven D'Aprano
On Tue, 18 Dec 2012 02:26:42 -0800, Marc Aymerich wrote: > Dear all, > I want to monkey patch a method that has lots of code so I want to avoid > copying all the original method for changing just two lines. The thing > is that I don't know how to do this kind of monkey patching

Re: Is it possible monkey patch like this?

2012-12-18 Thread Terry Reedy
On 12/18/2012 5:26 AM, Marc Aymerich wrote: I want to monkey patch a method that has lots of code so I want to avoid copying all the original method for changing just two lines. You omitted the most important piece of information. Can you modify the original code (or get someone else to do

Re: Is it possible monkey patch like this?

2012-12-18 Thread Peter Otten
Marc Aymerich wrote: > Dear all, > I want to monkey patch a method that has lots of code so I want to avoid > copying all the original method for changing just two lines. The thing is > that I don't know how to do this kind of monkey patching. > > Consider the fol

Re: Is it possible monkey patch like this?

2012-12-18 Thread Chris Angelico
On Tue, Dec 18, 2012 at 9:26 PM, Marc Aymerich wrote: > Any other idea on how to monkey patch those two conditionals ? Would it be plausible to simply add a parameter to the function that controls its behaviour? It'd be a lot more readable than fiddling from the outside ever would.

Is it possible monkey patch like this?

2012-12-18 Thread Marc Aymerich
Dear all, I want to monkey patch a method that has lots of code so I want to avoid copying all the original method for changing just two lines. The thing is that I don't know how to do this kind of monkey patching. Consider the following code: class OringinalClass(object):

Re: Applying a patch from a diff in python (if possible)

2012-05-23 Thread Astan
On May 24, 1:24 pm, Astan wrote: > Hi, > I'm trying to synch up two databases that are very far from each other > using diff and patch. Currently, what happens is a mysqldump on > database A (which is linux) which is sent over to database B and over > time the diff of this m

Applying a patch from a diff in python (if possible)

2012-05-23 Thread Astan
Hi, I'm trying to synch up two databases that are very far from each other using diff and patch. Currently, what happens is a mysqldump on database A (which is linux) which is sent over to database B and over time the diff of this mysql is sent over to database B. The database B lives on

Re: Getting a patch accepted

2011-12-19 Thread Andrew Berg
On 12/19/2011 3:24 PM, Rick Johnson wrote: > ... > I want to see him mingling with > the masses and manning the trenches. I want to see him shaking hands > and kissing babies! I prefer these over-the-top responses over the more subtle ones. Much more entertaining IMO. -- CPython 3.2.2 | Windows N

Re: Getting a patch accepted

2011-12-19 Thread Brian Curtin
he shuffle. (There is even previous mention of this bug elsewhere on > the tracker, and on stackoverflow, so it does affect some small number > of people.) > > Is there anyone else I can bother to get this patch applied? Part of the issue with this taking a while is that there's no on

Re: Getting a patch accepted

2011-12-19 Thread Rick Johnson
shuffle. (There is even previous mention of this bug elsewhere on > the tracker, and on stackoverflow, so it does affect some small number > of people.) > > Is there anyone else I can bother to get this patch applied? My friend, it seems as though you've exhausted all avenues and ex

Re: Getting a patch accepted

2011-12-19 Thread Irmen de Jong
mention of this bug elsewhere on the tracker, and on stackoverflow, so it does affect some small number of people.) Is there anyone else I can bother to get this patch applied? Maybe the folks over at #python-dev on freenode can help you out? Also the dev guide has some hints on the 'life

Getting a patch accepted

2011-12-19 Thread Tycho Andersen
tracker, and on stackoverflow, so it does affect some small number of people.) Is there anyone else I can bother to get this patch applied? Thanks! \t -- http://mail.python.org/mailman/listinfo/python-list

Re: how to add patch

2010-10-13 Thread Steve Howell
On Oct 13, 12:36 pm, jimgardener wrote: > hi > I have some demo python  code hosted on a public host that uses > subversion..and I want to modify one of the files using a patch file > handed to me by another person..How do I do this?Generally I checkout > the code and make the

Re: how to add patch

2010-10-13 Thread Lawrence D'Oliveiro
In message , Diez B. Roggisch wrote: > My first attempt would be > > cd my_project > patch -p0 < the.patch > > But it might not work, depending on how the patch was created. If the OP can post some initial part of the patch (probably the first dozen lines should be

Re: how to add patch

2010-10-13 Thread Diez B. Roggisch
jimgardener writes: > hi > I have some demo python code hosted on a public host that uses > subversion..and I want to modify one of the files using a patch file > handed to me by another person..How do I do this?Generally I checkout > the code and make the change and then commi

Re: how to add patch

2010-10-13 Thread Jason Swails
On Wed, Oct 13, 2010 at 3:36 PM, jimgardener wrote: > hi > I have some demo python code hosted on a public host that uses > subversion..and I want to modify one of the files using a patch file > handed to me by another person..How do I do this?Generally I checkout > the code and

how to add patch

2010-10-13 Thread jimgardener
hi I have some demo python code hosted on a public host that uses subversion..and I want to modify one of the files using a patch file handed to me by another person..How do I do this?Generally I checkout the code and make the change and then commit again..I have never done through patch..Can

[PATCH] Re: ConfigParser.get() defaults?

2010-05-08 Thread Tim Chase
o be any way to do a similar Sounds like a nice feature to have. When you submit a patch (*grin*), I'm game to create and provide a patch, Attached is my initial patch against 2.6's ConfigParser.py to work in some defaults (though it should also apply fairly cleanly against 2.5).

[PATCH] add functional matrix-returning methods to Pycairo

2010-05-04 Thread Lawrence D'Oliveiro
(10, 10). Herewith a patch to add such methods to the cairo.Matrix class. Note that the names (inverse, rotation, scaling, translation) are nouns, to reflect the fact that they don't perform the actions, but they return Matrix objects that do. --- src/matrix.c |

Re: To (monkey)patch or not to (monkey)patch, that is the question

2010-02-13 Thread Aahz
orkaround) on our end without any apparent >side effect, he strongly suggested extending the relevant code by hard >patching it and posting the patch upstream, hopefully to be accepted >at some point in the future. In fact we maintain patches against >specific versions of several packages t

Re: To (monkey)patch or not to (monkey)patch, that is the question

2010-02-09 Thread sjdevn...@yahoo.com
ly suggested extending the relevant code by hard > patching it and posting the patch upstream, hopefully to be accepted > at some point in the future. In fact we maintain patches against > specific versions of several packages that are applied automatically > on each new build. The main argu

Re: To (monkey)patch or not to (monkey)patch, that is the question

2010-02-09 Thread Raymond Hettinger
On Feb 9, 12:54 am, George Sakkis wrote: > So I'm wondering if there is a consensus on when it's better to (hard) > patch, monkey patch or just try to work around a third party package > that doesn't do exactly what one would like. Does it have mainly to do > with th

Re: To (monkey)patch or not to (monkey)patch, that is the question

2010-02-09 Thread Stephen Hansen
On Tue, Feb 9, 2010 at 12:54 AM, George Sakkis wrote: > So I'm wondering if there is a consensus on when it's better to (hard) > patch, monkey patch or just try to work around a third party package > that doesn't do exactly what one would like. Does it have mainly to do &

To (monkey)patch or not to (monkey)patch, that is the question

2010-02-09 Thread George Sakkis
posting the patch upstream, hopefully to be accepted at some point in the future. In fact we maintain patches against specific versions of several packages that are applied automatically on each new build. The main argument is that this is the right thing to do, as opposed to an "ugly" worka

Re: Patch for IDLE/OS X to work with Tk-Cocoa

2010-01-22 Thread Kevin Walzer
On 1/22/10 5:47 PM, G73 wrote: im trying to update a patch. here is link to various patches http://bugs.python.org/issue6075 how do i update the patch, say for EditorWindow.patch. i have located my python installation the EditorWindow.py, and i can see some differences (which lines from the

Patch for IDLE/OS X to work with Tk-Cocoa

2010-01-22 Thread G73
im trying to update a patch. here is link to various patches http://bugs.python.org/issue6075 how do i update the patch, say for EditorWindow.patch. i have located my python installation the EditorWindow.py, and i can see some differences (which lines from the patch actually go into the

Re: incorrect DeprecationWarning (patch needed)

2009-09-08 Thread Alan G Isaac
On 9/5/2009 5:50 PM, Alan G Isaac wrote: I've filed a bug report: http://bugs.python.org/issue6844 This is now an accepted bug with a patch request. Can someone on this list please assist with a patch? Thanks, Alan Isaac -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2009-07-20 Thread tvashtar
On Jul 20, 4:42 pm, Nike wrote: > hi! >  It's looks like a ssl error . Under the following step to help u : >   1. takes a simple code to confirm your pupose without ssl protocol. >   2. to confirm python version and extended libs work well >   3. to confirm ssl work well. > > goog luck! > > nikek

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2009-07-20 Thread Nike
On Jul 20, 11:11 pm, tvashtar wrote: > Hi, > I'm trying to get https requests working through an authenticating > proxy with urllib2 in Python 2.5, I'm aware that this isn't supported > "out of the box", so applied the > patchhttp://bugs.python.org/file9753/http-tunnel-urllib > linked fromhttp://

Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

2009-07-20 Thread tvashtar
Hi, I'm trying to get https requests working through an authenticating proxy with urllib2 in Python 2.5, I'm aware that this isn't supported "out of the box", so applied the patch http://bugs.python.org/file9753/http-tunnel-urllib linked from http://bugs.python.org/issue1

Re: [ANN] vim patch to support python3 interface

2009-05-25 Thread Roland Puntaier
vim_...@googlegroups.com schrieb am 21.05.2009 14:27:13: > > On 12/05/09 18:35, Roland Puntaier wrote: > > Hello, > > > > I have ported vim's python interface (if_python.c) to the python3 C-API. > > > > The changed files are: > > - Makefile (for linux) > > - Make_mvc.mak (for windows) > > - if_p

Re: [ANN] vim patch to support python3 interface

2009-05-21 Thread Tony Mechelynck
On 12/05/09 18:35, Roland Puntaier wrote: Hello, I have ported vim's python interface (if_python.c) to the python3 C-API. The changed files are: - Makefile (for linux) - Make_mvc.mak (for windows) - if_python3.c is a new file for the python3 related sources. it is based on if_python.c. All of

Re: Python patch module

2009-02-02 Thread Robert Kern
On 2009-02-02 16:39, Minesh Patel wrote: Hi, I was wondering if there is any patch management module for Python. Basically I am looking to only apply a hunk from a patch if the file exists. Google's diff-match-patch library might be up your alley. http://code.google.com/p/google-diff-

Python patch module

2009-02-02 Thread Minesh Patel
Hi, I was wondering if there is any patch management module for Python. Basically I am looking to only apply a hunk from a patch if the file exists. -- Thanks, Minesh -- http://mail.python.org/mailman/listinfo/python-list

Re: patch

2009-01-06 Thread geon
sorry, pls forget :-( -- http://mail.python.org/mailman/listinfo/python-list

patch

2009-01-06 Thread Pavel Kosina
sorry, pls forget ... -- geon Pavel Kosina -- http://mail.python.org/mailman/listinfo/python-list

patch

2009-01-03 Thread Pavel Kosina
/ nainstaloval pod amin, přidal cestu do ..bin .. do PATH 3/ stáhl http://bugs.python.org/file12561/conv.diff a uložil do Lib/idlelib 4/ cmd: patch < conf.diff hází chybu: C:\prg\Python30\Lib\idlelib>patch < conv.diff patching file IOBinding.py Assertion failed: hunk, file ../patch-2.5.9-src/patc

Re: xcompile patch for python 2.5.2?

2008-08-13 Thread Paul Boddie
On 12 Aug, 19:30, "Stephen Cattaneo" <[EMAIL PROTECTED]> wrote: > > A friend of mine is attempting to cross compile python 2.5.2 onto a > MIPS64 box. He is asking if there is a cross compile patch for 2.5.2. > Do any of you know where He might find such a thing? Try h

xcompile patch for python 2.5.2?

2008-08-12 Thread Stephen Cattaneo
Hi all, Personally I know nothing of cross compiling so please excuse my ignorance, if this question is silly. A friend of mine is attempting to cross compile python 2.5.2 onto a MIPS64 box. He is asking if there is a cross compile patch for 2.5.2. Do any of you know where He might find such

Could someone please review patch 799428: fix Tkinter tk_focusNext?

2008-08-01 Thread Russell E. Owen
Patch <http://bugs.python.org/issue799428> is a trivial (one word) fix to a long-standing issue with Tkinter: calls to the widget method tk_focusNext() fail with "unsubscriptable object" error. Admittedly we've lived a long time with this bug. But the fix is so simple

Re: Trying out safethread patch

2008-06-09 Thread Rhamphoryncus
thon 3.0 from the bzr mirror, then ran patch in the typical > way. That doesn't apply cleanly at all (too much water under the bridge > since this the patch was made). I was thinking if I back up my bzr > repository to r36020, apply the patch then sync with the latest bzr rev

Trying out safethread patch

2008-06-08 Thread skip
I'd like to take the python-safethread code out for a spin, but I'm not sure where to start. I downloaded the latest diff: http://python-safethread.googlecode.com/files/safethread-bzr-36020.diff checked out Python 3.0 from the bzr mirror, then ran patch in the typical way. Th

daylight savings time patch

2008-04-30 Thread soray6034rao
daylight savings time patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

soul patch

2008-04-30 Thread meisnernel73884
soul patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

soul patch

2008-04-30 Thread meisnernel73884
soul patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

patch management

2008-04-30 Thread urquhart . nak
patch management http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

sims patch

2008-04-29 Thread jean11821cleme
sims patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

patch barracks

2008-04-29 Thread ivory91044
patch barracks http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

the pink patch

2008-04-28 Thread landerdebraznpc
the pink patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

4502 cams patch

2008-04-28 Thread fennelllindy8241
4502 cams patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

strawberry patch

2008-04-28 Thread fennelllindy8241
strawberry patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

risk2 no disk patch

2008-04-28 Thread fennelllindy8241
risk2 no disk patch http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

fostex ds-8 digital patch bay

2008-04-27 Thread ellingt8877
fostex ds-8 digital patch bay http://crack.cracksofts.com -- http://mail.python.org/mailman/listinfo/python-list

area council patch news

2008-04-26 Thread marli305nugent
area council patch news http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

perfect patch

2008-04-26 Thread carlwuhwdmckay
perfect patch http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   >