Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6329047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:34:31+00:00 2026-05-24T17:34:31+00:00

Well, I have a python script running on Mac OS X. Now I need

  • 0

Well, I have a python script running on Mac OS X. Now I need to modify it to support updating my SVN working copy into a specified time. However, after learning I’ve found that SVN commands only support updating the working copy into a specified version.

So I write a function to grub the information from the command: svn log XXX, to find the corresponding version to the specified time. Here is my solution:

process=os.popen('svn log XXX')
print process.readline()
print process.readline()
process.close()

To make the problem simple, I just print the first 2 lines in the output. However, when I was executing the script, I got the error message: svn: Write error: Broken pipe

I think that the reason why I got the message is that the svn command kept executing when I was closing the Popen. So the error message arise.

Is there any one who can help me slove the problem? Or give me a alternative solution to reach the goal. Thx!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T17:34:34+00:00Added an answer on May 24, 2026 at 5:34 pm

    I get that error whenever I use svn log | head, too, it’s not Python specific. Try something like:

    from subprocess import PIPE, Popen
    
    process = Popen('svn log XXX', stdout=PIPE, stderr=PIPE)
    print process.stdout.readline()
    print process.stdout.readline()
    

    to suppress the stderr. You could also just use

    stdout, stderr = Popen('svn log XXX | head -n2', stdout=PIPE, stderr=PIPE, shell=True).communicate()
    print stdout
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Python script that processes some data and then inserts it into
I have a python script start.py that executes well from the command line. There
Well I have a series of sps that are running a data warehousing solution
I have a python script which should parse a file and produce some output
I have a Python script that we're using to parse CSV files with user-entered
I have a python script that receives text messages from users, and processes them
The title explains it well. I have set up Notepad++ to open the Python
I have a python script that reads from a config file. The config file
I have a script that uses the cmd Python module. The cmd module uses
I have a Python function registered as a View in Plone. I need to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.