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

  • Home
  • SEARCH
  • 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 3599266
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:20:48+00:00 2026-05-18T20:20:48+00:00

I have a project in Python 2.6 and I’d like to write a utf-8

  • 0

I have a project in Python 2.6 and I’d like to write a utf-8 message to stdout using the system encoding. However it appears that such a function does not exist until Python 3.2:

PySys_FormatStdout

http://docs.python.org/dev/c-api/sys.html

Is there a way to do this from Python 2.6?

To clarify I have a banner that needs to print after Py_Initialize() and before the main interpreter is run. The string is a c-literal containing:
“\n and Copyright \xC2\xA9”

where \xC2\xA9 is the utf-8 copyright symbol. I verified in gdb that the copyright symbol is encoded correctly.

Update:
I just decided all this grief isn’t necessary and I’m going to remove the offending character from the startup banner. There are just too many issues with this, and the documentation is lacking. My expectations were that this would be like Tcl, where:

  1. The embedded interpreter’s C-API would make writing stdout out in unicode easy in the system’s encoding, and not some default ascii encoding
  2. An exception wouldn’t be thrown, if an offending character does not exist in the current encoding. Instead some default replacement character would be displayed.
  3. Additional modules, (e.g. sys), would not be necessary to import just to find out what the system encoding is.
  • 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-18T20:20:49+00:00Added an answer on May 18, 2026 at 8:20 pm

    You could use PyFile_WriteObject():

    f_stdout = PySys_GetObject("stdout");
    text = PyUnicode_DecodeUTF8((char*)str, strlen(str), "strict");
    PyFile_WriteObject(text, f_stdout, Py_PRINT_RAW);
    

    If you know the final encoding then you could use PyUnicode_AsEncodedString().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a python project that we want to start testing using buildbot. Its
I have a small project that basically a Python wrapper to a websites API.
I have a small project I am doing in Python using web.py. It's a
I'm using the SQLAlchemy Python ORM in a Pylons project. I have a class
I have a project that I would like to start beta testing soon, it
I have a python project that calls a c++ wrapper dll that calls a
I have a python project that calls a c++ dll that calls a c#
I'm starting a Python project and expect to have 20 or more classes in
I have a small project I want to try porting to Python 3 -
I have project that I'm working on that is going to require a webserver.

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.