Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #87743

Re: Windows service in production?

Path csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <motoom@xs4all.nl>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.049
X-Spam-Evidence '*H*': 0.90; '*S*': 0.00; 'subject:Windows': 0.02; 'cc:addr:python-list': 0.11; 'from:addr:xs4all.nl': 0.16; 'received:194.109': 0.16; 'received:194.109.24': 0.16; 'received:xs4all.nl': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; '"you': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'skip:" 30': 0.26; 'skip:" 20': 0.27; 'header:In-Reply-To:1': 0.27; 'faster,': 0.31; 'run': 0.32; 'raw': 0.33; "can't": 0.35; 'subject:service': 0.36; 'charset:us-ascii': 0.36; 'subject:?': 0.36; 'either': 0.39; 'header:Message-Id:1': 0.63; 'email addr:gmail.com': 0.63; 'received:194': 0.64; 'to:addr:gmail.com': 0.65; 'mar': 0.68; 'computers': 0.72; 'received:nl': 0.74
Subject Re: Windows service in production?
Mime-Version 1.0 (Apple Message framework v1085)
Content-Type text/plain; charset=us-ascii
From Michiel Overtoom <motoom@xs4all.nl>
In-Reply-To <6e1d77bd-8289-478f-a44a-35b2be3dac0d@googlegroups.com>
Date Thu, 19 Mar 2015 19:20:47 +0100
Cc python-list@python.org
Content-Transfer-Encoding quoted-printable
References <90342eaa-28e2-4a86-9e5c-07299de10435@g9g2000yqb.googlegroups.com> <mailman.44.1313481167.27778.python-list@python.org> <6e1d77bd-8289-478f-a44a-35b2be3dac0d@googlegroups.com>
To jyothi.nadu@gmail.com
X-Mailer Apple Mail (2.1085)
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.19
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.26.1426789317.10327.python-list@python.org> (permalink)
Lines 15
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1426789317 news.xs4all.nl 2968 [2001:888:2000:d::a6]:60356
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:87743

Show key headers only | View raw


On Mar 19, 2015, at 08:00, jyothi.nadu@gmail.com wrote:

>  file_path = "D:\Tarang\Project\form1.py"

Use either slashes (/), raw strings, or double backslashes:

                    file_path = "D:/Tarang/Project/form1.py"
                    file_path = r"D:\Tarang\Project\form1.py"
                    file_path = "D:\\Tarang\\Project\\form1.py"

-- 
"You can't actually make computers run faster, you can only make them do less." - RiderOfGiraffes

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Re: Windows service in production? jyothi.nadu@gmail.com - 2015-03-19 00:00 -0700
  Re: Windows service in production? Michiel Overtoom <motoom@xs4all.nl> - 2015-03-19 19:20 +0100

csiph-web