###################################################################### # Automatically generated by qmake (2.01a) Thu Aug 23 18:02:14 2007 ###################################################################### TEMPLATE = app TARGET = DEPENDPATH += . build src ui QT += phonon FORMS += settings.ui RESOURCES += mediaplayer.qrc !win32:CONFIG += CONSOLE SOURCES += main.cpp mediaplayer.cpp HEADERS += mediaplayer.h target.path = $$[QT_INSTALL_DEMOS]/mediaplayer sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES *.pro *.html *.doc images sources.path = $$[QT_INSTALL_DEMOS]/mediaplayer INSTALLS += target sources wince*{ DEPLOYMENT_PLUGIN += phonon_ds9 phonon_waveout } get' action=''> https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
path: root/Python/thread.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)Raymond Hettinger2019-09-111-1/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-1/+1
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-1/+1
* bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)Victor Stinner2018-08-031-1/+1
* bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...Serhiy Storchaka2017-12-121-1/+1
* bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto2017-10-061-32/+28
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-6/+2
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-061-1/+6
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-061-6/+1
* bpo-30832: Remove own implementation for thread-local storage (#2537)Masayuki Yamamoto2017-07-031-213/+8
* Doc nits for bpo-16500 (#1841)Antoine Pitrou2017-05-281-1/+1
* bpo-30279: Remove unused Python/thread_foobar.h (#1473)Masayuki Yamamoto2017-05-051-6/+0
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-4/+4
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-1/+1
|\
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* | Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
|\ \ | |/
| * Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
* | Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-151-1/+1
|/
* Issue #19787: PyThread_set_key_value() now always set the valueVictor Stinner2013-12-131-12/+8
* Backout changeset 46393019b650Victor Stinner2013-12-131-8/+12
* Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3,Victor Stinner2013-12-131-12/+8
* Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-221-2/+4
* Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initializationVictor Stinner2013-07-071-4/+4
* #16135: Removal of OS/2 support (I)Jesus Cea2012-10-041-4/+0
* Issue #11863: Remove support for legacy systems deprecated in Python 3.2Antoine Pitrou2011-07-081-43/+0
* Issue #11223: Replace threading._info() by sys.thread_infoVictor Stinner2011-04-301-29/+54
* Issue #11223: fix compiler warningsVictor Stinner2011-04-201-0/+3
* Issue #11223: Add threading._info() function providing informations about theVictor Stinner2011-04-191-0/+57
* #11565: Merge with 3.1.Ezio Melotti2011-03-16