ADVERTISEMENT

Macron meets opposition chiefs to break French political deadlock

Published Aug 30, 2023 12:54 pm

PARIS, France - President Emmanuel Macron will meet leaders of all of France's political parties Wednesday, including his most bitter opponents, outside Paris in a bid to break the deadlock of a hung parliament.

Deprived of an absolute majority in the National Assembly lower house since last year's parliamentary elections, Macron said he wanted a "frank, honest and direct discussion" aimed at "acting together" for the benefit of voters.

In a letter inviting party bosses from the hard left to far right, Macron vowed to work together on writing new laws and "if need be" organising referendums -- a rare political tool that has previously backfired.

One idea under discussion is the government organising what has been dubbed a "preferendum" -- a non-binding public consultation that would offer voters multiple choice questions on issues such as immigration or education.

Traditional one-question, yes-or-no referendums have in the past seen voters seek to censure the president himself, tripping up Francois Mitterrand and Jacques Chirac on European issues in 1992 and 2005.

"By asking several questions, people may vent on one of them and respond on the issues on all the others," government spokesman Olivier Veran told broadcaster BFMTV on Monday.


 

Legitimacy


 

Conservatives and the far right have already called for referendums on immigration while the NUPES alliance of left parties wants voters to have a direct say on Macron's already-passed controversial pension changes.

For its part, Macron's Renaissance party would prefer a referendum with "between three and five questions", including on institutional reform.

"It's a way to regain legitimacy if people vote yes," one senior Renaissance MP said.

On the other hand, "if this new 'democratic innovation' is a damp squib, Emmanuel Macron will have no levers available to save his second term from getting bogged down," the daily Le Monde commented.

Constitutional lawyers have also raised doubts, with expert Bertrand Mathieu telling Le Monde the idea amounts to "a never-before-seen procedure, a kind of life-size poll organised by the state".

"Nothing would bind the legislative and executive branches afterwards, and no-one would be able to call on the Constitutional Council to insist the ballot box is respected," he added.


 

'Avoid blockage by any means'


 

The political leaders will gather in Saint-Denis just outside Paris, a poor suburb hit by riots in late June and early July over the police shooting of a teenager during a traffic stop.

Two roundtables will cover international affairs and possible institutional reforms, with a later dinner covering the problems highlighted by the riots: education, integration, inequality and "authority", the president's Elysee Palace office said.

Macron's centrist minority government appears to have run out of road with its strategy of bill by bill alliances and use of an unpopular mechanism to ram laws through without a vote, especially to pass contested pension changes earlier this year.

Now the president "wants to avoid blockages by any means available", a senior member of his entourage told AFP.

Macron "wants to see where there are disagreements, and if they cannot be overcome, see what subjects French voters could decide on" in a referendum.

Related Tags

MACRON world news
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.