I write path for compile kinterbasdb with mingw32 and python 2.6 for rev
1038
See
http://sourceforge.net/tracker/?func=detail&aid=2872794&group_id=9913&atid=309913
--
http://mail.python.org/mailman/listinfo/python-list
Simple example:
[code]
Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit
(Intel)] on win32
>>> import datetime as dt
>>> dt.date(2009, 10, 15)
datetime.date(2009, 10, 15)
>>> d = dt.date(2009, 10, 15)
>>> dt.date(d)
Traceback (most recent call last):
File "", line 1, in
Type
Mike Hjorleifsson wrote:
Has anyone gotten python working with Interbase database platform ? I
See KInterbasDB: http://kinterbasdb.sourceforge.net/
--
http://mail.python.org/mailman/listinfo/python-list
>>> list4 = [['1', 'a'],['4', 'd'],['8', 'g']]
>>> list5 = [1, 2, 3]
>>> set5 = set(list5)
>>> [x for n, x in list4 if int(n) in set5]
['a']
--
http://mail.python.org/mailman/listinfo/python-list
Alexnb wrote:
s = '--a href="/browse/brick"--brick--/a--'
s
'--a href="/browse/brick"--brick--/a--'
''.join('<%s>' % l if i % 2 == 1 else l for i, l in
enumerate(s.split('--')))
' /browse/brick brick '
I'm sorry, I don't think I was being clear. I replaced the <'s with -- so it
would post on
s = '--a href="/browse/brick"--brick--/a--'
s
'--a href="/browse/brick"--brick--/a--'
''.join('<%s>' % l if i % 2 == 1 else l for i, l in
enumerate(s.split('--')))
'brick'
--
http://mail.python.org/mailman/listinfo/python-list
header_sizes = (36, 26, 22, 18, 14, 12)
if x not in header_sizes:
raise Exception()
else:
h36, h26, h22, h18, h14, h12 = tuple(
line if x == size else '' for x in header_sizes)
--
http://mail.python.org/mailman/listinfo/python-list
urikaluzhny wrote:
| It seems that I rather frequently need a list or iterator of the form
| [x for x in <> while <>]
I can think of two ways to interpret that.
I mean like [x for x in if ], only that it breaks the loop when
the expression is false.
How do you plan to modify B during iteratio
Tim Roberts wrote:
> I think that's a perfectly reasonable thing to expect. At the risk of
> over-generalization, there is no good reason why, by this point in time,
> all of the standard library routines that accept strings shouldn't also
> accept Unicode strings.
However, file(fname), open(fnam
Subj is bag?
Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import datetime
>>> datetime.today().strftime('%Y_%m_%d %H_%M_%S.csv')
'2008_05_07 12_30_22.csv'
>>> dateti
OS: WinXP Home Ru + sp2
Python: 2.5.2
py2exe: latest CSV source
gcc (GCC) 3.4.5 (mingw-vista special r2)
GNU ld (GNU Binutils) 2.18.50.20080109
OS: WinXP Home Ru + sp2
Python: 2.5.2
py2exe: latest CSV source
gcc (GCC) 3.4.5 (mingw-vista special r2)
GNU ld (GNU Binutils) 2.18.50.20080109
I have p
I use Bentley MicroStation through Automation interface.
But I do not known how translate some VBA code to Python.
For example ("Copy Element Example" from documentation):
'The following code starts the command
Sub RunCopyElement()
CommandState.StartLocate New clsCopyElementCommand
End Sub
12 matches
Mail list logo