Re: xor operator

2023-11-13 Thread Axel Reichert via Python-list
be short circuited. Me neither, but that could be related to the meaning of n (which I did not get) in the OP's question. Maybe he can clarify. Best regards Axel -- https://mail.python.org/mailman/listinfo/python-list

Re: To clarify how Python handles two equal objects

2023-01-13 Thread Axel Reichert
mind the behaviour to me seems to be completely as expected. No surprises here, or do I miss something? Best regards Axel -- https://mail.python.org/mailman/listinfo/python-list

[issue43668] Segfault with for fresh ubuntu 20.04 install

2021-03-30 Thread axel
axel added the comment: Thanks for the reply, I don't know exactly what you mean by making a simpler reproducer, but as I wrote in the original post, just using pip will cause this issue to happen from time to time, which is why I find it unlikely to be caused by third party libs. I

[issue43668] Segfault with for fresh ubuntu 20.04 install

2021-03-30 Thread axel
New submission from axel : The python interpreter segfaults when running in a miniconda environment on a fresh install of ubuntu 20.04.2. This seems to happen intermittently, both while running "pip" during the conda setup of an environment and during the execution of code

[issue42267] Python 3.9 broken installer

2020-11-04 Thread Axel Grullón
New submission from Axel Grullón : Initially the Python 3.9 installer worked perfectly, I had every tool at my disposal and every component installed. After I tried installing discord.py an error was shown and it was about certain components that were missing. To my ignorance I uninstalled

[issue36078] argparse: positional with type=int, default=SUPPRESS raise ValueError

2019-02-25 Thread Axel
Axel added the comment: Thanks for so fast looking into this. Good idea to use the workaround with a own conversion function. I'll use this for now. To see what's happening, I tried a own Action with print in __call__ and a own conversion function with printing. I found following workflow

[issue36078] argparse: positional with type=int, default=SUPPRESS raise ValueError

2019-02-22 Thread Axel
Change by Axel : -- nosy: +paul.j3 ___ Python tracker <https://bugs.python.org/issue36078> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue36078] argparse: positional with type=int, default=SUPPRESS raise ValueError

2019-02-22 Thread Axel
Axel added the comment: Some more details: The problem is not the order of assignment in take_action: Defaults have been set by: def parse_known_args(self, args=None, namespace=None): ... # add any action defaults that aren't present for action in self._actions

[issue36078] argparse: positional with type=int, default=SUPPRESS raise ValueError

2019-02-22 Thread Axel
New submission from Axel : Example source: from argparse import ArgumentParser, SUPPRESS == parser = ArgumentParser() parser.add_argument('i', nargs='?', type=int, default=SUPPRESS) args = parser.parse_args([]) == results in: error: argument integer: invalid int value

[issue35404] Document how to import _structure in email.message

2018-12-04 Thread Charles-Axel Dein
New submission from Charles-Axel Dein : The example for `walk()` in `email.message.EmailMessage` makes use of the `_structure` function but does not clarify how to import it. I can make a patch adding a line: from email.iterators import _structure -- assignee: docs@python

[issue20754] Distribution.parse_config_files uses interpolation since Python 3

2016-12-12 Thread Axel Haustant
Axel Haustant added the comment: I just attached the patch submitted on issue28935. The fix is to simply give interpolation=None as ConfigParser parameter (as documented in the official Python 3.x ConfigParser documentation) -- keywords: +patch nosy: +noirbizarre Added file: http

[issue28935] distutils use ConfigParser in Python 3.x and fails to parse setup.cfg with percent sign

2016-12-12 Thread Axel Haustant
Axel Haustant added the comment: Sorry, it is effectively a duplicate of the second one. But I submitted a patch which is not present in the other. What should I do ? (I'll attach the patch to the other one instead) -- ___ Python tracker <

[issue28935] distutils use ConfigParser in Python 3.x and fails to parse setup.cfg with percent sign

2016-12-12 Thread Axel Haustant
Axel Haustant added the comment: No it's not. Same problem but on a different part: the two cited issues are about the .pypirc file not the setup.cfg. The parsing does not occurs at the same place and the fix does not works for setup.cfg (I tried before submitting this issue

[issue28935] distutils use ConfigParser in Python 3.x and fails to parse setup.cfg with percent sign

2016-12-12 Thread Axel Haustant
Axel Haustant added the comment: You're welcome. I understand the backward compatibility point. But I think that the current state is breaking existing code as it's not documented anywhere and it's a side-effect of another change, not something intentionnal. (this is why I submitted

[issue28935] distutils use ConfigParser in Python 3.x and fails to parse setup.cfg with percent sign

2016-12-10 Thread Axel Haustant
New submission from Axel Haustant: Because of the Python 3.2 configparser renaming/refactoring, string interpolation has been enabled into distutils config parsing and so fails to read any setup.cfg with percent signs (try to perform string interpolation and fails). To reproduce: create

[issue26672] regrtest missing in the module name

2016-03-30 Thread Axel Luttgens
New submission from Axel Luttgens: Relevant page: https://docs.python.org/2/library/test.html One may read (section 25.5.2): Specifying all as the value for the -u option enables all possible resources: python -m test -uall. I guess this should be: Specifying all

[issue26665] pip is not bootstrapped by default

2016-03-29 Thread Axel Luttgens
New submission from Axel Luttgens: Relevant page: https://docs.python.org/2/library/ensurepip.html One may read: In most cases, end users of Python shouldn’t need to invoke this module directly (as pip should be bootstrapped by default), but it may be needed if installing pip

[issue23586] Add classproperty to the builtin functions

2015-03-04 Thread Charles-Axel Dein
New submission from Charles-Axel Dein: Similar to http://bugs.python.org/issue20659 Having a behavior that is similar to a property on a class seems intuitive enough. Is there any specific reason why it does not exist? -- messages: 237227 nosy: charlax priority: normal severity

[issue20351] Add doc examples for DictReader and DictWriter

2014-11-02 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Sounds good. Do you know when this will get merged? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20351

[issue20351] Add doc examples for DictReader and DictWriter

2014-07-28 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Anything else I need to do? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20351 ___ ___ Python-bugs-list

[issue20351] Add doc examples for DictReader and DictWriter

2014-06-26 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Updated patch following review. -- Added file: http://bugs.python.org/file35790/add_csvdict_examples.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20351

[issue20351] Add doc examples for DictReader and DictWriter

2014-04-18 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: New version of the patch. -- Added file: http://bugs.python.org/file34969/add_csvdict_examples.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20351

[issue20351] Add doc examples for DictReader and DictWriter

2014-04-10 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Hey - is there anything else I need to do here? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20351

[issue20351] Add doc examples for DictReader and DictWriter

2014-03-04 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Any update? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20351 ___ ___ Python-bugs-list mailing list

[issue20351] Add doc examples for DictReader and DictWriter

2014-02-16 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Updated patch following review. -- Added file: http://bugs.python.org/file34110/add_csvdict_examples.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20351

[issue20351] Add doc examples for DictReader and DictWriter

2014-01-22 Thread Charles-Axel Dein
New submission from Charles-Axel Dein: IMO csv.DictWriter and csv.DictReader provides a nicer interface for complex CSV file. I see some people reinventing the DictReader and DictWriter pretty frequently, because when they rapidly scan the documentation all examples are about csv.reader

[issue20310] Recommend using pprint for deterministic doctest

2014-01-19 Thread Charles-Axel Dein
New submission from Charles-Axel Dein: I just thought that using pprint.pprint was an elegant solution to the non-deterministic order of repr(dict) in doctest. See for instance http://bugs.python.org/issue3332 Contrary to sorted(foo().items()): - It provides a nice output that is exactly

[issue13498] os.makedirs exist_ok documentation is incorrect, as is some of the behavior

2012-07-02 Thread Axel Wegen
Changes by Axel Wegen axel.we...@googlemail.com: -- nosy: +Axel.Wegen ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13498 ___ ___ Python-bugs-list

[issue12716] Reorganize os docs for files/dirs/fds

2012-07-02 Thread Axel Wegen
Changes by Axel Wegen axel.we...@googlemail.com: -- nosy: +Axel.Wegen ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12716 ___ ___ Python-bugs-list

[issue11837] smtplib._quote_periods triggers spurious type error in re.sub

2011-04-19 Thread Axel Rau
Axel Rau axel@chaos1.de added the comment: One more hint: The bug does not happen with plain text mails, but can easily be reproduced with MIME attachments. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11837

Re: 3.2: email.message.get_payload() delivers str, but send_message expect bytes

2011-04-12 Thread Axel Rau
On 08.04.11 13:43, Axel Rau wrote: line 167, in sub return _compile(pattern, flags).sub(repl, string, count) TypeError: sequence item 1: expected bytes, str found I just filed issue 11837. Axel -- http://mail.python.org/mailman/listinfo/python-list

[issue11837] smtplib._quote_periods triggers spurious type error in re.sub

2011-04-12 Thread Axel Rau
New submission from Axel Rau axel@chaos1.de: While debugging this http://article.gmane.org/gmane.comp.python.general/687767 email problem, I'm getting: --- File /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/smtplib.py, line 794, in send_message rcpt_options) File

[issue11837] smtplib._quote_periods triggers spurious type error in re.sub

2011-04-12 Thread Axel Rau
Changes by Axel Rau axel@chaos1.de: -- type: behavior - crash ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11837 ___ ___ Python-bugs-list

3.2: email.message.get_payload() delivers str, but send_message expect bytes

2011-04-08 Thread Axel Rau
TypeError(expected bytes, not %s % s.__class__.__name__) TypeError: expected bytes, not list --- What am I doing wrong? Axel -- http://mail.python.org/mailman/listinfo/python-list

[issue3722] print followed by exception eats print with doctest

2008-12-05 Thread Charles-Axel Dein
Charles-Axel Dein [EMAIL PROTECTED] added the comment: This is a bug. This is not a good behavior. If I would like to temporarily print a variable to see its content, in order to debug my code, doctest will eat its output. Thus I will be make to use pdb or to use logging, or to get rid

Jython: PyException toString() is empty

2006-09-01 Thread axel
the error? Thanks, axel -- http://mail.python.org/mailman/listinfo/python-list

Jython: single step / pause / debug ...

2006-09-01 Thread axel
if there is an error in the script and (3) what I have to do to pause/stop the script? Thanks, Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: COM object pointer cast

2006-04-20 Thread Axel Bock
late but still - thanks a lot :) . works like a charm. cheers, Axel. -- http://mail.python.org/mailman/listinfo/python-list

COM object pointer cast

2006-03-27 Thread Axel Bock
return the IEntry interface pointer. Now I would like to cast that one to the one I need :) . Is there an easy way to do it, or do I have to use the QueryInterface-method to get what I want? Greetings thanks in advance, Axel. -- http://mail.python.org/mailman/listinfo/python-list

Re: Xah's Edu Corner: The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations

2006-03-17 Thread axel
the character set/font being used is capable of displaying the characters concerned. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Microsoft's JavaScript doc's newfangled problem

2005-12-28 Thread axel
In comp.lang.perl.misc Xah Lee [EMAIL PROTECTED] wrote: If (1), then it would be a fucking incompetence of inordinate order. If Have you ever thought that your cross-postings are incompetence of inordinate order? Of course not since you are a troll. Axel -- http://mail.python.org/mailman

Re: Microsoft Hatred FAQ

2005-10-24 Thread axel
talking about the United States. Then you are sadly deluded if you think that the US government does not make decisions on the economy. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Microsoft Hatred FAQ

2005-10-24 Thread axel
argument against the fact that property in the form of houses is taxed in America. Also may I remind you that these newsgroups are international. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Microsoft Hatred FAQ

2005-10-24 Thread axel
. And what has his inability to do that to your satisfaction got to do with the price of eggs? Not that I care much since eggs bring on a rather strong reaction within me, but his arguments were totally false. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Microsoft Hatred FAQ

2005-10-23 Thread axel
no answer. Or do you deny that his comments on this matter of property are true? Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Microsoft Hatred FAQ

2005-10-20 Thread axel
is a separate legal entity. It is a different matter for the board of directors of a company. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Microsoft Hatred FAQ

2005-10-16 Thread axel
that Microsoft was making noises about setting up a 'commercial Internet' through which they hoped to control all online trading (with a percentage of each transaction going to themselves of course). I forget the exact details but it seemed a very real suggestion at the time. Axel -- http

Re: Jargons of Info Tech industry

2005-10-13 Thread axel
digital signatures. How? I keep my address book on my Palm as I send mail from different computers? I suspect many other people do as well. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Jargons of Info Tech industry

2005-10-11 Thread axel
but on one account I hardly receive any as I reserve it for friends and business. On another I had about 40 spam messages which took all of ten seconds to delete. Hardly a serious matter. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Jargons of Info Tech industry

2005-10-10 Thread axel
... and while some forms of HTML may be rendered, nothing is automatically pulled down. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Jargons of Info Tech industry

2005-10-10 Thread axel
people without wasting bandwith. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: A Moronicity of Guido van Rossum

2005-09-30 Thread axel
to the phases of the moon? It might explain a lot. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Jargons of Info Tech industry

2005-09-02 Thread axel
length which was 80 characters (ok, with some options to switch to 132 characters if I remember correctly)... and that is the first machine through which I access Usenet. And the version of vi which I used at the time was not very good with dealing with long lines. But it worked. Axel -- http

Re: Jargons of Info Tech industry

2005-08-30 Thread axel
didn't get the message. Moreover you think that the Usenet /needs/ a public ploink message. Get a clue. People like you add more noise to Usenet compared to a thread which runs a bit wide. Why do I think of a Dutch expression 'mieren neuker' with regards to Balmer's posts? Axel -- http

Re: Jargons of Info Tech industry

2005-08-29 Thread axel
without involving any additional software installations on other machines. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Jargons of Info Tech industry

2005-08-27 Thread axel
open in different screens and then when I need to move to a different machine, I can simply detach and reattach screen without disturbing anything that might be running. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Jargons of Info Tech industry

2005-08-26 Thread axel
telnet'd to the news server and made your transactions manually. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Jargons of Info Tech industry

2005-08-23 Thread axel
... not everyone uses a fixed-width font for his newsreader... I thought usenet specified fixed font. If you use something else don't complain. The Troll don't look pretty in fixed font either:-) I don't think trolls are supposed to look pretty, but rather ugly. Axel -- http

Re: Jargons of Info Tech industry

2005-08-12 Thread axel
of Multics and hints on the offensive and tasteless term eunuchs. Now that connexion is a product of a truely warped mind. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Python documentation problem

2005-06-18 Thread axel
and topics. Follow-ups set. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: How to get/set class attributes in Python

2005-06-12 Thread Axel Straschil
, a2.p So, property is instance-level super() tool ;-) Lg, AXEL. -- Gentoo? Debian? RedHat? SuSE? *BSD? Stop the distri-war, make little user! -- http://mail.python.org/mailman/listinfo/python-list

Re: New Python regex Doc

2005-05-07 Thread axel
. “never greedy”? What is greedy anyway? “Greedy”, when used in the context of computing, describes a When used in terms of Usenet, I think it can be applied in the sense of 'a troll who is greedy for attention'. Hence the saying 'do not feed the troll'. Axel -- http://mail.python.org/mailman

Re: Reusing object methods?

2005-04-30 Thread Axel Straschil
Hello! Why not: class A: def a_lengthy_method(self, params): # do some work depending only on data in self and params class B(A): pass ? Lg, AXEL. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python or PHP?

2005-04-26 Thread Axel
Jeremy Bowers [EMAIL PROTECTED] wrote: Nobody ever changed their mind as a result of a 20-thread endless reply-fest. As usual, the posters aren't about to admit anything, and none of the bystanders are reading any more. Well I am reading... always interested to learn. Axel -- http

Re: [perl-python] Python documentation moronicities (continued)

2005-04-12 Thread axel
coherent and detailed analysis of the stupidities of the re doc. Don't worry! Very soon, some nice men in white coats will show you a comfortable room with soft walls in which you can write such documentation to your hearts content. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Multiple inheritance: Interface problem workaround, please comment this

2005-04-11 Thread Axel Straschil
Hallo! Look at the comment in the code! I have posted the decorate module in Uuups, sorry, I'll RTFM myselfe *g* Lg, AXEL. -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's outing in http://www.informatik-forum.at/showpost.php?p=206342postcount=10 -- http://mail.python.org/mailman

Re: Multiple inheritance: Interface problem workaround, please comment this

2005-04-09 Thread Axel Straschil
Hello! from decorate import decorate # see today thread on decorators for this Gives me an ImportError: No module named decorate. I've got to donwload that? (python 2.4) Thanks, AXEL. -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's outing in http://www.informatik-forum.at/showpost.php

Re: Multiple inheritance: Interface problem workaround, please comment this

2005-04-08 Thread Axel Straschil
, maby I shoud see pythons multiple inheritance as a nice to have and not to use thing ;-) Thanks, AXEL. -- http://mail.python.org/mailman/listinfo/python-list

Re: Can dictionary values access their keys?

2005-04-08 Thread Axel Straschil
.__reverse[v] Lg, AXEL -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's outing in http://www.informatik-forum.at/showpost.php?p=206342postcount=10 -- http://mail.python.org/mailman/listinfo/python-list

Re: Can dictionary values access their keys?

2005-04-08 Thread Axel Straschil
Hello! thousands more entries. So we're talking about maybe a million+ total nested key:values. I don't know if that counts as large or not. I can't even guess how much k memory that is. Mhh, maybe you should use a SQL-Database ;-) Lg, AXEL. -- Aber naja, ich bin eher der Forentyp

Multiple inheritance: Interface problem workaround, please comment this

2005-04-07 Thread Axel Straschil
(a=a, b=b, _do_eat=True) ab = AB() Thanks, AXEL. -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's outing in http://www.informatik-forum.at/showpost.php?p=206342postcount=10 -- http://mail.python.org/mailman/listinfo/python-list

Re: Python IDE like NetBeans/Delphi IDE

2005-04-06 Thread Axel Straschil
Hello! WingIDE (commercial, slower than PythonWin but has many features) You can use and reactivate a trial licence for WingIDE for a realy long term, give it a try, i bought a licence last week and realy love it! Lg, AXEL. -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's outing in http

Re: Generating RTF with Python

2005-03-31 Thread Axel Straschil
linux, linux support for generating rtf is none, and so is python's. My workaround was: http://www.research.att.com/sw/download/ This includes an html2rtf converter, which I access from python via popen and temporary files. Not high-level, not very sexy ... ;-( Lg, AXEL. -- Aber naja, ich bin eher

Re: Generating RTF with Python

2005-03-31 Thread Axel Straschil
Hello! I looked at this a while ago, which might be a starter. http://pyrtf.sourceforge.net/ Don't remember why I didn't spent much time on that. Sombody has experience with pyrtf on an production project (is it stable ;-)) Lg, AXEL. -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's

Re: Calling __init__ with multiple inheritance

2005-03-29 Thread Axel Straschil
, the last thing a *realy* don't like ist the __init__(self, param, **ignore_the_rest) thing. Anyone had troubles with that, or should I cust take this as a python way of thinking ... ;-), and getting used to that? Thanks, AXEL. -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's outing in http

Calling __init__ with multiple inheritance

2005-03-28 Thread Axel Straschil
(1, 2) Thanks, AXEL. -- http://mail.python.org/mailman/listinfo/python-list

Re: Calling __init__ with multiple inheritance

2005-03-28 Thread Axel Straschil
=1, param_father=1) Father's init will not be called. Thanks, AXEL. -- Aber naja, ich bin eher der Forentyp. Wolfibolfi's outing in http://www.informatik-forum.at/showpost.php?p=206342postcount=10 -- http://mail.python.org/mailman/listinfo/python-list

Re: Python docs [was: function with a state]

2005-03-25 Thread axel
a damn and delight in drivel thinking of it as literary. I think that this is an excellent description of your own writing. Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: [perl-python] combinatorics fun

2005-02-10 Thread axel
$j ( $i + 1 .. $max ) { $hh{$i,$j} = [$i, $j]; } } return \%hh; } Axel -- http://mail.python.org/mailman/listinfo/python-list

Re: Generating modul classes with eval

2005-02-03 Thread Axel Straschil
.__init__(self, name=name, **props) I get: TypeError: super(type, obj): obj must be an instance or subtype of type for print table, print br ist processed OK. Thanks for help and your perfekt examples, AXEL. -- http://mail.python.org/mailman/listinfo/python-list

Re: Generating modul classes with eval

2005-02-03 Thread Axel Straschil
Thanks, AXEL. -- http://mail.python.org/mailman/listinfo/python-list

Generating modul classes with eval

2005-02-02 Thread Axel Straschil
in? Thanks, AXEL. -- http://mail.python.org/mailman/listinfo/python-list

Re: how to write a tutorial

2005-01-28 Thread axel
slightly and edited, it can supplant sections 9.0 to 9.4 of the Python tutorial. Languages Tutorials should follow this style. It is crap, not a tutorial, but just an aide-memoire for someone who presumably knows the stuff anyway. And keep it where it belongs please. Axel -- http

Re: Html or Pdf to Rtf (Linux) with Python

2004-12-17 Thread Axel Straschil
Hello! You might take a look at PyRTF in PyPI. It's still in beta, I think PyRTF would be the right choice, thanks. Yust had a short look at it. Lg, AXEL. -- The key words MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL in this document

Re: Html or Pdf to Rtf (Linux) with Python

2004-12-16 Thread Axel Straschil
Hello! I've been able to successfully get konqueror to generate a pdf from a html file via dcop. It's something along the lines of: For that stuff, I'm using htmloc (http://www.htmldoc.org/). Lg, AXEL. -- The key words MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, SHOULD

Re: Html or Pdf to Rtf (Linux) with Python

2004-12-15 Thread Axel Straschil
. Please give me a hint where the tons of packages are. Thanks, AXEL. -- The key words MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL in this document are to be interpreted as described in RFC 2119 [http://ietf.org/rfc/rfc2119.txt] -- http

Re: Html or Pdf to Rtf (Linux) with Python

2004-12-14 Thread Axel Straschil
behind generating the HTML-Code is written in Python. Thanks, AXEL. -- http://mail.python.org/mailman/listinfo/python-list