As mentioned, there isn't a whole lot. I've beta tested Komodo, and it
looks promising. SPE might start working now that stani has a mac.
For now I use TextWrangler - a free text editor with good python
support. http://www.barebones.com/products/textwrangler/index.shtml
For interactive python,
structure since
I don't have the experience to decide the merits of each in advance. I
get way too frustrated about these things :)
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
Thanks for the vote FB. The reason I'm using that method for assigning
instance attributes is that the argument list for __init__ is LOOONG.
(There are many constants, I only gave two for the examples). I wanted
to avoid typing them out twice.
--
http://mail.python.org/mailman/listinfo/python-l
This is probably a question better suited for a wxPython or MSDN
newsgroup. What OS are you referring to? What GUI toolkit are you
using?
Microsoft's office on Windows has moved to a model where every document
has its own toolbar, menubar, and taskbar entry. Windows developers
tend to mimic MS
type=3, z=8)
]
)
which I'm not sure the .ini format can easily support. I could use
(key buzzword voice) XML, but I fear that might send me down the
'overcomplicating things' path. Your suggestion has given me some new
places to search Google (configparser, python config files), so I'll
look around for better ideas.
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
zone/element-index.htm)
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
ted. Otherwise,
this might be a reasonable avenue for standardizing Python. (I hope
that doesn't draw to many flames :)
Brendan.
--
http://mail.python.org/mailman/listinfo/python-list
SPE doesn't yet integrate with CVS, but it's in active development.
CVS support may come sooner than later.
I have been demoing Komodo which integrates with CVS, SVN and perforce.
I've been very impressed.
http://aspn.activestate.com/ASPN/docs/Komodo/3.1/komodo-doc-scc.html
On my pc I just use t
way to check that either all arguments are scalars,
or all are lists of the same length? Is this a poor way to structure
things? Your advice is appreciated
Brendan
--
Brendan Simons
--
http://mail.python.org/mailman/listinfo/python-list
I am coming at this with a "C++ mindset) but at least I have
tools to do it efficiently :)
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
#finally, call the third party function and return its result
return F(AW, BW)
# end code -
OK, here's my problem: How do I best store and change lastX, A(lastX)
and B(lastX) in FW's scope? This seems like it should be easy, but I'm
stuck. Any help would
Thanks for the tips. Making FW a callable class (choice 5) seems to be
a good (if verbose) solution. I might just wrap my temporary values in
a list [lastX, lastA, lastB] and mutate them as Michael suggests.
Thanks to Michael especially for the explanation of the name-binding
process that's at th
F -is- in fact an iterative optimizer that minimizes A on x (B is the
derivative of A). So yes, F will call A and B on mulitple 'x's. In
that case, it seems the mutable object trick is the way to go. Thanks.
I didn't follow your last sentence. What about the Python Cookbook?
--
http://mail.
>James Stroud Apr 3, 3:18 pm:
>I think you might want to look at "python generators".
I've seen discussion of generators before, but haven't invested the
time to understand them yet. This might be a good excuse.
--
http://mail.python.org/mailman/listinfo/python-list
I use Komodo now, and love it. It has all the features you'd expect:
code completion, object browsing, folding, docstring previews etc. Of
course it's the only full-featured, native and stable Python IDE
currently available for the mac (SPE is close), so my choice is
limited.
Brenda
ac.org/packages/
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
Thanks John. I've discovered that datetime.strptime will be available
in 2.5, (http://docs.python.org/dev/whatsnew/modules.html) but your
example will work in the meantime.
BJ
--
http://mail.python.org/mailman/listinfo/python-list
Hello,
I just tried to use the Windows XP installer for Python 2.5 AMD64 but I
get the error message: "Installation package not supported by processor
type"
I am running Windows XP Pro on an AMD Athon 64 Processor.
Do I need to have a 64-bit OS to use this version?
--
http://mail.python.org/mai
Thanks.
Christophe wrote:
> Brendan a écrit :
> > Hello,
> > I just tried to use the Windows XP installer for Python 2.5 AMD64 but I
> > get the error message: "Installation package not supported by processor
> > type"
> >
> > I am running Windows
1)Why are the topic and keyword documentation not included in the
Windows installation chm? I have to have both the html(with the env var
PYTHONDOCS set) and the chm installed? What is the point of that?
2)Is there no simple way to open the chm docs in a browser from within
python?
3)How do I op
As of version 0.4.x, Scipy exclusively uses the newer NumPy module
instead of the older Numeric module. The confusion is inevitable in
this time of transition, but their intent is to standardize on one
array package.
Brendan
--
Brendan Simons
mclaugb wrote:
> This page documents
ine how useful this is. Now that I've
switched to Solidworks, my
drafting speed has doubled.
I haven't seen anyone make a 2D cad package with this behaviour. I'm
sure there's a market for one if you go that route.
-Brendan
--
http://mail.python.org/mailman/listinfo/python-list
y
there don't seem to be "fromstring" equivalents for datetime.ctime or
datetime.isoformat.
Ideally the serialized datetime should be human readable, and
potentially parseable from other languages. Any suggestions?
Brendan
--
Brendan Simons
--
http://mail.python.org/mailman/listinfo/python-list
I am fooling around with accessing contents of zip files online. I
download the tail end of the zip and use zipfile to get the zip
central directory structure. I download the section of the zip file I
need, directly read the zip file headers and use that information with
zlib to uncompress the data
On Dec 12, 10:25 am, Brendan wrote:
> I am fooling around with accessing contents of zip files online. I
> download the tail end of the zip and use zipfile to get the zip
> central directory structure. I download the section of the zip file I
> need, directly read the zip file hea
On Dec 12, 10:46 am, Brendan wrote:
> On Dec 12, 10:25 am, Brendan wrote:
>
> > I am fooling around with accessing contents of zip files online. I
> > download the tail end of the zip and use zipfile to get the zip
> > central directory structure. I download the s
On Dec 12, 11:36 am, Brendan wrote:
> On Dec 12, 10:46 am, Brendan wrote:
>
>
>
>
>
> > On Dec 12, 10:25 am, Brendan wrote:
>
> > > I am fooling around with accessing contents of zip files online. I
> > > download the tail end of the zip and use z
I would like zipfile.is_zipfile(), to operate on a cStringIO.StringIO
string buffer, but is seems only to accept file names as arguments.
Should it not be able to handle string buffers too?
--
http://mail.python.org/mailman/listinfo/python-list
I am trying to download a file within a very large zipfile. I need two
partial downloads of the zipfile. The first to get the file byte
offset, the second to get the file itself which I then inflate.
I am implementing the partial downloads as follows:
con = ftp.transfercmd('RETR ' + filename, res
Okay, found it on my own. ftp.voidresp() is what is needed, and it
does _not_ seem to be in the Python documentation for ftplib.
On Jan 8, 1:58 pm, Brendan wrote:
> I am trying to download a file within a very large zipfile. I need two
> partial downloads of the zipfile. The first to g
The current CentOs Linux distro includes python 2.4.3. I need to
install a more recent version but I am worried about breaking CentOs
python dependencies. Is it safe to install python 2.6 using pup?
--
http://mail.python.org/mailman/listinfo/python-list
> If you install from sources, the safest path is to run
>
> $ sudo make altinstall (will add the version number to the executable)
>
> and NOT
>
> $ sudo make install
Ah, that is perfect. Thank-you!
--
http://mail.python.org/mailman/listinfo/python-list
Hi there,
I have the following using Beautiful Soup:
soup = BeautifulSoup(data)
tags = soup.findAll(href=re.compile("/MER_FRS_L2_Canada/MER_FRS_\S
+gz"))
for tag in tags:
print tag['href']
print tag.parent.nextSibling.string
print tag.parent.nextSibling.nextSibling.string
print tag
Is there any way to resume an https file download using urllib2 and an
HTTPBasicAuthHandler?
--
http://mail.python.org/mailman/listinfo/python-list
On Aug 21, 3:57 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Thu, 21 Aug 2008 15:37:41 -0300, Brendan <[EMAIL PROTECTED]>
> escribi :
>
> > Is there any way to resume an https file download using urllib2 and an
> > HTTPBasicAuthHandler?
&
On Aug 22, 1:59 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Fri, 22 Aug 2008 08:55:57 -0300, Brendan <[EMAIL PROTECTED]>
> escribi :
>
>
>
>
>
> > On Aug 21, 3:57 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
> > wr
I was quite happy to see that ftplib in Python 2.6 now has a timeout
parameter. With large file downloads my script would often hang,
presumably from timing out. Now that there is a timeout parameter, how
would I detect when a timeout occurs?
--
http://mail.python.org/mailman/listinfo/python-list
On Dec 15, 6:17 pm, Jennifer wrote:
> I am writing a program that has a requirement for a timeout of
> retrlines after the connection established. I just wonder if timeout
> of ftplib.FTP('.xxx.com',username,password,timeout) will work for
> retrlines method after the connection established.
In KirbyBase there is a method that uses string exceptions for
control, even though it has a defined exception. Is there any reason
the string exceptions below could not be replaced?
i.e. in code below replace:
raise "No Match"
with:
raise KBError()
and
except 'No Match':
with:
except KBError:
I h
On Nov 23, 12:21 pm, Steve Howell wrote:
> On Nov 23, 7:22 am, Brendan wrote:
>
> > In KirbyBase there is a method that uses string exceptions for
> > control, even though it has a defined exception. Is there any reason
> > the string exceptions below could not be re
I was hoping to use pywin32 to automate some rather tedious filling in
of Word forms. I thought
--
http://mail.python.org/mailman/listinfo/python-list
I was hoping to use pywin32 to automate some rather tedious filling in
of Word forms. I thought
--
http://mail.python.org/mailman/listinfo/python-list
I was hoping to use pywin32 to automate some rather tedious filling in
of Word forms. I thought the process would be analogous to dealing
with xml documents or DOM but find myself somewhat lost in the word
object reference manual (http://msdn.microsoft.com/en-us/library/
bb244515.aspx) . I was hop
On Jun 9, 9:54 am, Brendan wrote:
> I was hoping to use pywin32 to automate some rather tedious filling in
> of Word forms. I thought the process would be analogous to dealing
> with xml documents or DOM but find myself somewhat lost in the word
> object reference
Can someone please explain what is happening in the output below? The
number 3 never gets printed. Does Python make a copy of a list before
it iterates through it?:
>>> e = range(1,5)
>>> for i in e:
print i
if i == 2 :
e.remove(i)
1
2
4
>>> e
[1, 3, 4]
--
http://
What is the difference on exit() and sys.exit() when called in the
main body of a script? From the command line they seem to have the
same effect.
Aside: Just used a python dictionary in which the keys were compiled
regular expressions. Provided a very elegant solution. Have to love it.
--
http:/
On Jun 17, 1:33 pm, Tim Chase wrote:
> Brendan wrote:
> > What is the difference on exit() and sys.exit() when called in the
> > main body of a script? From the command line they seem to have the
> > same effect.
>
> In Python <=2.4 you had to use sys.exit() becaus
Two modules:
x.py:
class x(object):
pass
y.py:
from x import x
class y(x):
pass
Now from the python command line:
>>> import y
>>> dir(y)
['__builtins__', '__doc__', '__file__', '__name__', '__package__',
'x', 'y']
I do not understand why class 'x' shows up here.
--
http://mail.python.o
On Oct 21, 3:47 pm, Carl Banks wrote:
> On Oct 21, 11:09 am, Brendan wrote:
>
>
>
>
>
> > Two modules:
> > x.py:
> > class x(object):
> > pass
>
> > y.py:
> > from x import x
> > class y(x):
> > pass
>
> > Now
On Oct 21, 3:56 pm, Ethan Furman wrote:
> Jonas H. wrote:
> > On 10/21/2010 08:09 PM, Brendan wrote:
> >> Two modules:
> >> x.py:
> >> class x(object):
> >> pass
>
> >> y.py:
> >> from x import x
> >> class y(x
On Oct 22, 5:02 am, Steven D'Aprano wrote:
> On Thu, 21 Oct 2010 12:12:34 -0700, Brendan wrote:
> >> Because y.py has "from x import x" the x class from x.py is added to
> >> the y.py namespace.
>
> >> ~Ethan~- Hide quoted text -
>
> &g
On Oct 22, 9:16 am, Dave Angel wrote:
> On 2:59 PM, Brendan wrote:> On Oct 21, 3:56 pm, Ethan
> Furman wrote:
> >>
> >> Because y.py has "from x import x" the x class from x.py is added to the
> >> y.py namespace.
>
> >> ~Ethan~- Hid
On Oct 23, 1:03 pm, Sean DiZazzo wrote:
> On Oct 22, 10:48 pm, Steven D'Aprano
> cybersource.com.au> wrote:
> > On Fri, 22 Oct 2010 22:03:38 -0700, Sean DiZazzo wrote:
> > > How can I assure him (and the client) that the transfer completed
> > > successfully like my log shows?
>
> > "It has worke
On Oct 22, 2:21 pm, Peter Pearson wrote:
> On Fri, 22 Oct 2010 07:49:39 -0700 (PDT), Brendan wrote:
>
> [snip]
>
>
>
>
>
> > x.py
> > class X(object):
> > pass
>
> > y.py
> > import x
> > class Y(x.X):
> > pass
>
>
I am posting here in the hopes the author of java2python will see it.
Does j2py handle overloading of the __init__ constructor? For me it
is calling __init__ and not calling the decorator overloaded __init__0.
--
http://mail.python.org/mailman/listinfo/python-list
On Oct 25, 12:57 pm, Brendan wrote:
> I am posting here in the hopes the author of java2python will see it.
> Does j2py handle overloading of the __init__ constructor? For me it
> is calling __init__ and not calling the decorator overloaded __init__0.
Never mind. Moronic type mistake.
> On 05-Apr-11 06:22 AM, Brendan Simon (eTRIX) wrote:
>>
>> Any other arguments where Python has benefits over Cobra ??
>>
>> Cheers, Brendan.
>>
> Two questions:
> 1. Is Cobra Open Source?
> 2. The blog ended on October, did he run out o
This looks like a decorator function that optionally accepts arguments to
change the behavior.
You can safely ignore the warning form PyCharm. the variable won't be
shadowed it's included in the function signature of the inner function.
A lot of times, the outside decorator will just use the *ar
unction is concerned.)
On Tue, Sep 13, 2016 at 11:31 AM, Chris Angelico wrote:
> On Wed, Sep 14, 2016 at 4:28 AM, Brendan Abel <007bren...@gmail.com>
> wrote:
> > This looks like a decorator function that optionally accepts arguments to
> > change the behavior.
>
&g
Unless you're actually distributing python (as in, the interpreter or it's
source code), you don't need to include the python license or the copyright
notice. You also don't need a Contributor agreement just to distribute a
python library. That is more for people who are contributing to core
Pyth
> Splitting it up would make it slower to load.
It's usually the opposite. When packages are split up, you only have to
load the specific portions you need. Putting it all in a single module
forces you to always load everything.
On Fri, Sep 23, 2016 at 11:59 PM, Lawrence D’Oliveiro <
lawrenced.
Yes, loops don't have their own scope. Indeed, very few flow elements in
python -- if, with, try/except -- create a new scope. In that sense, it's
fairly consistent, but can be unexpected for people that have used
languages with many nested scopes.
The lambda behavior is a common gotcha - there
> a = 1
if condition:
print(a) # UnboundLocalError: local 'a' referenced before assignment
a += 1
For-loops are no different. Making them their own namespace is a very
strange thing to do, it would mean you couldn't re-bind a value inside a
for-loop:
count = 0
for x in sequence:
cou
Define your colors as actual number variables instead of a string
color = (255,0,0)
color2 = (0,0,255)
Then use argument expansion to pass them in as separate arguments to the
function
colorFunction(*color)
Brendan
On Wed, Oct 5, 2016 at 12:17 PM, John McKenzie
wrote:
>
> Hell
You should look into using PyQt or PySide. They are python bindings for
the very popular Qt GUI framework.
On Wed, Oct 5, 2016 at 2:33 PM, Beverly Howard wrote:
> >> if it is a pi controlling the system I would tend towards controlling it
> from a web page via the network. to keep it updating
t least the "from x.y.z import a" forms of imports,
yet they don't work the same as "import x.y.z.a".
//Brendan
--
https://mail.python.org/mailman/listinfo/python-list
A lot of these arguments and points have already been made and hashed out
on the python-dev list. There's a very good article that one of the python
core developers wrote about the decision to move to github
http://www.snarky.ca/the-history-behind-the-decision-to-move-python-to-github
Basically,
You could create your own generator that wraps enumerate
def reverse_enumerate(iterable):
for i, val in enumerate(reversed(iterable)):
yield len(iterable) - 1 - i, val
for i, val in reverse_enumerate(x):
...
On Wed, Jul 20, 2016 at 10:42 AM, Ian Kelly wrote:
> I had occasion to
Generally, all your unittests will be inside a "tests" directory that lives
outside your package directory. That directory will be excluded when you
build or install your project using your setup.py script. Take a look at
some popular 3rd party python packages to see how they structure their
proj
Roedy Green wrote in news:[EMAIL PROTECTED]:
> On Tue, 11 Oct 2005 11:45:03 -0400, Mike Meyer <[EMAIL PROTECTED]> wrote
> or quoted :
>
>>Jeff Poskanzer, now *he* has a spam problem. He gets a few million
>>spams a day: http://www.acme.com/mail_filtering/ >.
>
> It is a bit like termites. If we
Gordon Burditt wrote in
news:[EMAIL PROTECTED]:
> Does the language allow Javascript to open a new window? Does the
> language allow Javascript to trigger a function when a window is
> closed? I believe the answer to both questions is YES. Then it
> is possible to have a page that pops up two
Hi Tim,
On Tuesday 13 September 2005 17:31, Tim G. wrote:
> I cannot get the script to switch from native to IFS.
Yes you can...
> Traceback (most recent call last):
> File "C:\Python24\Tools\scripts\ftp400.py", line 9, in ?
> ftp.cwd(path)
It's the cwd which is having a problem
> here
"mike kreiner" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Are there any plans for developing a standard IDE for python that's
> included with the python installation? I found information about other
> IDE's elsewhere online, but couldn't even find any mention of this
> possibilit
I have a relatively large python package that has several cyclical
dependencies. The cyclical dependencies typically aren't a problem so long as
I'm just importing modules, and not named attributes (ie. function, class,
globals), which may not be defined at a given point in the import routine
[counter + 1:] + searchhelper(initwords,
11 + counter,
1) # (I'm
searchhelper2(initwords, urllist, counter + 1)#
assuming this is
where I have #
erred; however, I'm not sure)
def search(initwords):
urllist = searchhelper(initwords)
search
I figured it out. Is there any way to delete your own posts?
Brendan Fay wrote:
> Dear Someone:
>
> I have written a script that accesses the googleAPI through
> pygoogle and saves each of the ten documents as a .txt file by using a
> specific function for each respective
ythonic code... so I thought I'd see what the consensus is.
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
> FOO = 1
>
> def f(x=FOO):
> ...
>
>
> Use this instead:
>
> def f(x=1):
> ...
I tend to use constants as a means of avoiding the proliferation of
magic literals for maintenance reasons... Like say if your example of
FOO would have been used in 10 places. Maybe it is more pythonic to
simply
xplained *why* they are doing
the things they are doing.
Anyway, I can tell this is the sort of question that some people will
interpret as rude. Asking hard questions is never polite, but it is
always necessary :)
Thanks,
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
>> The goals of the pypy project seems to be to create a fast python
>> implementation. I may be wrong about this, as the goals seem a little
>> amorphous if you look at their home page.
>
> The home page itself is ambiguous, and does oversell the performance
> aspect. The *actual* goal as outlined
On Sat, Jan 17, 2009 at 7:57 PM, Paul Rubin
<"http://phr.cx"@nospam.invalid> wrote:
> alex23 writes:
>> Here's an article by Guido talking about the last attempt to remove
>> the GIL and the performance issues that arose:
>>
>> "I'd welcome a set of patches into Py3k *only if* the performance for
Yes, I also recently noticed the bug in python's parser that doesn't
let it handle squigly braces and the bug in the lexer that makes white
space significant. I'm surprised the dev's haven't noticed this yet.
On Sat, Jan 17, 2009 at 2:09 AM, v4vijayakumar
wrote:
> I saw some code where someone is
> Constants would be a nice addition in python, sure enough.
My original question was about PEP-8 and whether it is pythonic to use
all caps to denote a variable that shouldn't be changed. More of a
style question than a language question.
I actually think *enforcing* constantness seems to go aga
Maybe I'm missing something here but a lock free algorithm for
reference counting seems pretty trivial. As long as you can atomically
increment and decrement an integer without locking you are pretty much
done.
For a reference implementation of lock free reference counting on all
common platforms
On Tue, Jan 20, 2009 at 3:46 AM, Paul Rubin
<"http://phr.cx"@nospam.invalid> wrote:
> s...@pobox.com writes:
>> Carl, I'm quite unfamiliar with Boost and am not a C++ person, so may have
>> read what you saw but not recognized it in the C++ punctuation soup. I
>> couldn't find what you referred to
On Tue, Jan 20, 2009 at 6:29 PM, Paul Rubin
<"http://phr.cx"@nospam.invalid> wrote:
> "Rhodri James" writes:
>> > What cpu's do you know of that can atomically increment and decrement
>> > integers without locking?
>>
>> x86 (and pretty much any 8080 derivative, come to think of it).
>
> It would
On Tue, Jan 20, 2009 at 10:03 PM, Paul Rubin
<"http://phr.cx"@nospam.invalid> wrote:
> "Rhodri James" writes:
>> You asked a question about CPUs with atomic update, strongly implying
>> there were none. All I did was supply a counter-example,
>
> Well, more specifically, atomic update without loc
On Wed, Jan 21, 2009 at 8:19 AM, Scott David Daniels
wrote:
> Brendan Miller wrote:
>>
>> On Tue, Jan 20, 2009 at 10:03 PM, Paul Rubin
>> <"http://phr.cx"@nospam.invalid> wrote:
>>>
>>> Of course I'm aware of the LOCK prefix but
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
If I:
import sys
sys = sys.version
This executes find but:
import sys
def f():
sys = sys.version
This gives an error indicating that the sys on the right hand side of =
is undefined. What gives?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I have several version of python running side by side on my ubuntu
install (2.5,2.6,3.0).
I'm installing a module with a setup.py script, in this case
logilab-common, so that I can get pylint going. However, I need to
install into python 2.6, but by d
Like the title says.
--
http://mail.python.org/mailman/listinfo/python-list
I'm just curious whether PyYaml is likely to end up in the standard
library at some point?
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, Feb 18, 2009 at 1:34 AM, Chris Rebert wrote:
> On Wed, Feb 18, 2009 at 1:11 AM, Brendan Miller wrote:
>> I'm just curious whether PyYaml is likely to end up in the standard
>> library at some point?
>
> I don't personally have a direct answer to your quest
nts to see? Or is the best practice just to name the module you don't
want clients to use _utility_module and have it private by convention?
Thanks,
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
or at least how they stack up to each other?
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
On Thu, Nov 13, 2008 at 3:54 AM, James Harris
<[EMAIL PROTECTED]> wrote:
> On 11 Nov, 22:59, Brendan Miller <[EMAIL PROTECTED]> wrote:
>> What would heavy python unit testers say is the best framework?
>>
>> I've seen a few mentions that maybe the built in
esults and
hand them off in a convenient way.
Thanks,
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
> platform. AFAICT there are RHEL4 rpms for these, and RHEL4 already comes
> with its own version of Python so it seems you are attempting to make
> things much more difficult than need be.
There are no rpm's in our repository for the third party modules I
need... If it was that easy I wouldn't be
So it sounds like the options are PyInstaller, cx_freeze, and
bbfreeze. Has anyone used any of these, and knows which one works best
on linux?
--
http://mail.python.org/mailman/listinfo/python-list
What's the point of PyHeapTypeObject in Include/object.h? Why does the
layout of object types need to be different on the heap vs statically
allocated?
Thanks,
Brendan
--
http://mail.python.org/mailman/listinfo/python-list
1 - 100 of 146 matches
Mail list logo